diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000000..4e5a9d0127 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,25 @@ +on: + pull_request: + types: [opened, synchronize, reopened] + workflow_dispatch: + +name: Lint PR + +jobs: + lint-json: + name: Lint JSON files + runs-on: ubuntu-latest + steps: + - name: Checkout Repository πŸ“₯ + uses: actions/checkout@v4 + + - name: Setup Node.js 🌐 + uses: actions/setup-node@v4 + with: + node-version: '20.x' + + - name: Install ESLint + run: npm install + + - name: Lint JSON files + run: npx eslint ./ diff --git a/.github/workflows/update_chainjson.yml b/.github/workflows/update_chainjson.yml deleted file mode 100644 index b37c81863b..0000000000 --- a/.github/workflows/update_chainjson.yml +++ /dev/null @@ -1,54 +0,0 @@ -on: - workflow_dispatch: - schedule: - - cron: "0 0 * * *" -name: Update chain.json -jobs: - update_chainjson: - name: Update chains' chain.json - runs-on: ubuntu-latest - steps: - - name: checkout registry - uses: actions/checkout@v3 - - - name: Set up Python - uses: actions/setup-python@v3 - with: - python-version: 3.9 - - - name: Install Python dependencies - run: | - python -m pip install --upgrade pip - cd .github/workflows/utility - python -m pip install requests - - - name: Check chain JSON Update - shell: python - run: | - import sys - sys.path.insert(1, '.github/workflows/utility') - import update_chaindata - update_chaindata.checkUpdate() - - - name: Add Commit Push - uses: devops-infra/action-commit-push@master - with: - github_token: "${{ secrets.GITHUB_TOKEN }}" - add_timestamp: false - commit_prefix: "[AUTO]" - commit_message: "Chain.json automatic update" - force: false - target_branch: update/chainjsonv2 - - - name: Create A PR - uses: devops-infra/action-pull-request@v0.4.2 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - source_branch: update/chainjsonv2 - target_branch: master - title: Chain.json automatic update - body: "**Automated pull request**" - old_string: "**THIS IS AN AUTOMATED UPDATE OF CHAIN.JSON**" - new_string: "** Automatic pull request**" - get_diff: true - ignore_users: "dependabot" diff --git a/.github/workflows/utility/chain_registry.mjs b/.github/workflows/utility/chain_registry.mjs index b446d45063..cafd107d51 100644 --- a/.github/workflows/utility/chain_registry.mjs +++ b/.github/workflows/utility/chain_registry.mjs @@ -13,19 +13,20 @@ export let chainNameToDirectoryMap = new Map(); export const chainRegistryRoot = "../../../chain-registry"; -const networkTypeToDirectoryNameMap = new Map(); +export const networkTypeToDirectoryNameMap = new Map(); networkTypeToDirectoryNameMap.set("mainnet", ""); networkTypeToDirectoryNameMap.set("testnet", "testnets"); const networkTypes = Array.from(networkTypeToDirectoryNameMap.keys()); -const domainToDirectoryNameMap = new Map(); +export const domainToDirectoryNameMap = new Map(); domainToDirectoryNameMap.set("cosmos", ""); domainToDirectoryNameMap.set("non-cosmos", "_non-cosmos"); const domains = Array.from(domainToDirectoryNameMap.keys()); -const fileToFileNameMap = new Map(); +export const fileToFileNameMap = new Map(); fileToFileNameMap.set("chain", "chain.json"); fileToFileNameMap.set("assetlist", "assetlist.json"); +fileToFileNameMap.set("versions", "versions.json"); const files = Array.from(domainToDirectoryNameMap.keys()); export const nonChainDirectories = [ @@ -46,7 +47,10 @@ export const nonChainDirectories = [ "versions.schema.json", "README.md", "LICENSE", - "package.json" + "package.json", + "package-lock.json", + "eslint.config.mjs", + "primary_colors.py" ] export const assetSchema = { @@ -67,6 +71,13 @@ export const assetSchema = { keywords: [] } +export const schemas = new Map([ + ["ibc", "ibc_data.schema.json"], + ["chain", "chain.schema.json"], + ["assetlist", "assetlist.schema.json"], + ["versions", "versions.schema.json"], +]); + export const bech32ConfigSuffixMap = new Map([ ["bech32PrefixAccAddr", ""], ["bech32PrefixAccPub", "pub"], @@ -77,7 +88,7 @@ export const bech32ConfigSuffixMap = new Map([ ]); -const networkTypeToDirectoryMap = new Map(); +export const networkTypeToDirectoryMap = new Map(); networkTypeToDirectoryMap.set("mainnet", ""); networkTypeToDirectoryMap.set("testnet", "testnets"); for (const [networkType, directory] of networkTypeToDirectoryMap.entries()) { @@ -86,7 +97,7 @@ for (const [networkType, directory] of networkTypeToDirectoryMap.entries()) { const fileNames = { chain: "chain.json", - assetlist: "assetlist.json", + assetlist: "assetlist.json" }; let paths = {}; diff --git a/.github/workflows/utility/chain_registry_local.mjs b/.github/workflows/utility/chain_registry_local.mjs index 95a95c2574..307a199f1d 100644 --- a/.github/workflows/utility/chain_registry_local.mjs +++ b/.github/workflows/utility/chain_registry_local.mjs @@ -13,19 +13,20 @@ export let chainNameToDirectoryMap = new Map(); export const chainRegistryRoot = "../../.."; -const networkTypeToDirectoryNameMap = new Map(); +export const networkTypeToDirectoryNameMap = new Map(); networkTypeToDirectoryNameMap.set("mainnet", ""); networkTypeToDirectoryNameMap.set("testnet", "testnets"); const networkTypes = Array.from(networkTypeToDirectoryNameMap.keys()); -const domainToDirectoryNameMap = new Map(); +export const domainToDirectoryNameMap = new Map(); domainToDirectoryNameMap.set("cosmos", ""); domainToDirectoryNameMap.set("non-cosmos", "_non-cosmos"); const domains = Array.from(domainToDirectoryNameMap.keys()); -const fileToFileNameMap = new Map(); +export const fileToFileNameMap = new Map(); fileToFileNameMap.set("chain", "chain.json"); fileToFileNameMap.set("assetlist", "assetlist.json"); +fileToFileNameMap.set("versions", "versions.json"); const files = Array.from(domainToDirectoryNameMap.keys()); export const nonChainDirectories = [ @@ -46,7 +47,10 @@ export const nonChainDirectories = [ "versions.schema.json", "README.md", "LICENSE", - "package.json" + "package.json", + "package-lock.json", + "eslint.config.mjs", + "primary_colors.py" ] export const assetSchema = { @@ -67,6 +71,13 @@ export const assetSchema = { keywords: [] } +export const schemas = new Map([ + ["ibc", "ibc_data.schema.json"], + ["chain", "chain.schema.json"], + ["assetlist", "assetlist.schema.json"], + ["versions", "versions.schema.json"], +]); + export const bech32ConfigSuffixMap = new Map([ ["bech32PrefixAccAddr", ""], ["bech32PrefixAccPub", "pub"], @@ -77,7 +88,7 @@ export const bech32ConfigSuffixMap = new Map([ ]); -const networkTypeToDirectoryMap = new Map(); +export const networkTypeToDirectoryMap = new Map(); networkTypeToDirectoryMap.set("mainnet", ""); networkTypeToDirectoryMap.set("testnet", "testnets"); for (const [networkType, directory] of networkTypeToDirectoryMap.entries()) { diff --git a/.github/workflows/utility/update_chaindata.py b/.github/workflows/utility/update_chaindata.py deleted file mode 100644 index 108eb4284e..0000000000 --- a/.github/workflows/utility/update_chaindata.py +++ /dev/null @@ -1,32 +0,0 @@ -import requests, json -import os -from os import getcwd - -rootdir = getcwd() - -def checkUpdate(): - for chainfolder in os.listdir(rootdir): - chainjson = os.path.join(chainfolder, "chain.json") - # The following line is commented out: it will be used when everyone adopts the chainjson on their chain repo. - # if os.path.isfile(chainjson): - if chainjson == "osmosis/chain.json": - current = json.load(open(os.path.join(rootdir, chainjson))) - - #Safeguard for updatelink being 0 - if current['update_link'] == None: - continue - - URL = current["update_link"] - chain_data_holder = requests.get("" + URL + "") - response = json.loads(chain_data_holder.text) - chaindata = response["codebase"] - - #If what's on the chain repo doesn't match what's here - if chaindata != current["codebase"]: - #Add conditional checkers for if various fields that are non-modifiable have been modified. - current["codebase"] = chaindata - with open(os.path.join(rootdir, chainjson), 'w', encoding='utf-8') as f: - json.dump(current, f, ensure_ascii=False, indent=2) - return True - else: - print("No update needed for " + chainjson) diff --git a/.github/workflows/utility/validate_data.mjs b/.github/workflows/utility/validate_data.mjs index 137d0a9c93..a6594c1e77 100644 --- a/.github/workflows/utility/validate_data.mjs +++ b/.github/workflows/utility/validate_data.mjs @@ -133,6 +133,28 @@ function checkTraceCounterpartyIsValid(chain_name, asset) { } + +async function checkIbcDenomAccuracy(chain_name, asset) { + + if (!asset.base) { return; } + if (asset.type_asset === "ics20") { + + if (!asset.traces) { + throw new Error(`Trace of ${chain_name}, ${asset.base} not found for ics20 asset (where it is required).`); + } + const path = asset.traces[asset.traces.length - 1]?.chain?.path; + if (!path) { + throw new Error(`Path not defined for ${chain_name}, ${asset.base}.`); + } + const ibcHash = await chain_reg.calculateIbcHash(path); + if (ibcHash !== asset.base) { + throw new Error(`IBC Denom (SHA256 Hash) of ${path} does not match ${chain_name}, ${asset.base}.`); + } + } + +} + + function checkImageSyncIsValid(chain_name, asset) { if (!asset.base) { return; } @@ -150,6 +172,269 @@ function checkImageSyncIsValid(chain_name, asset) { } +function checkVersionsFileAndVersionsArray(chain_name) { + + const versionsFile = chain_reg.getFileProperty(chain_name, "versions", "versions"); + const versionsArray = chain_reg.getFileProperty(chain_name, "chain", "codebase")?.versions; + + if (versionsFile && versionsArray) { + throw new Error(`Invalid versions array detected in chain.json for ${chain_name}. versions.json already used.`); + } + +} + + +function checkReplacementVersionProperties(chain_name) { + + const codebase = chain_reg.getFileProperty(chain_name, "chain", "codebase"); + const versions = codebase?.versions; + + if (codebase) { + versions?.forEach((version) => { + checkVersionForReplacementProperties(chain_name, version); + }); + checkVersionForReplacementProperties(chain_name, codebase); + } + +} + +function checkVersionForReplacementProperties(chain_name, versionObject) { + + const replacementPropertiesMap = new Map([ + ["cosmos_sdk_version", "sdk"], + ["ibc_go_version", "ibc"], + ["go_version", "language"], + ["cosmwasm_version", "cosmwasm"] + ]); + + const splitRegexPattern = /^(?:([^ \@]*)[ \@])?(.*)$/; + const repoRegexPattern = /(?:.*\/)?([^\/]+\/[^\/]+)$/; + const tagRegexPattern = /^(?=.*-).+$/; + const versionRegexPattern = /^([^ -]+)/; + + const name = versionObject.name; + + for (const [deprecated, replacement] of replacementPropertiesMap) { + + const deprecatedValue = versionObject[deprecated]; + const replacementValue = versionObject[replacement]; + + + if (deprecatedValue) { + + //replacement must exist + if (!replacementValue) { + throw new Error(`Missing replacement property (${replacement}) for deprecated proerty (${deprecated}) for: ${chain_name}::${name}`); + } + + //split the value into repo, version, and tag, then check that they match + let repo = deprecatedValue; + repo = repo.match(splitRegexPattern)?.[1]; + repo = repo?.match(repoRegexPattern)?.[1]; + if (repo) { + repo = "https://github.com/" + repo; + if (repo != replacementValue.repo) { + throw new Error(`Replacement property (${replacement}.repo) value (${replacementValue.repo}) does not match computed value (${repo}) in deprecated property (${deprecatedValue}) for: ${chain_name}::${name}`); + } + } + + let tag = deprecatedValue; + tag = tag.match(splitRegexPattern)?.[2]; + let version = tag; + tag = tag?.match(tagRegexPattern)?.[1]; + if (tag) { + //console.log(tag); + if (repo != replacementValue.tag) { + throw new Error(`Replacement property (${replacement}.tag) value (${replacementValue.tag}) does not match computed value (${tag}) in deprecated property (${deprecatedValue}) for: ${chain_name}::${name}`); + } + } + + version = version?.match(versionRegexPattern)?.[1]; + if (version) { + //console.log(version); + if (version != replacementValue.version) { + throw new Error(`Replacement property (${replacement}.version) value (${replacementValue.version}) does not match computed value (${version}) in deprecated property (${deprecatedValue}) for: ${chain_name}::${name}`); + } + } + + if (deprecated === "ibc_go_version") { + const expectedValue = "go"; + if (!replacementValue.type || (replacementValue.type !== expectedValue)) { + throw new Error(`Replacement property (${replacement}.type) value (${replacementValue.type}) does not match expected value (${expectedValue}) in deprecated property (${deprecatedValue}) for: ${chain_name}::${name}`); + } + } + + if (deprecated === "go_version") { + const expectedValue = "go"; + if (!replacementValue.type || (replacementValue.type !== expectedValue)) { + throw new Error(`Replacement property (${replacement}.type) value (${replacementValue.type}) does not match expected value (${expectedValue}) in deprecated property (${deprecatedValue}) for: ${chain_name}::${name}`); + } + } + + if (deprecated === "cosmos_sdk_version") { + const expectedValue = "cosmos"; + if (!replacementValue.type || (replacementValue.type !== expectedValue)) { + throw new Error(`Replacement property (${replacement}.type) value (${replacementValue.type}) does not match expected value (${expectedValue}) in deprecated property (${deprecatedValue}) for: ${chain_name}::${name}`); + } + } + + } + + } + + if (versionObject.cosmwasm_enabled) { + if (versionObject.cosmwasm_enabled != versionObject.cosmwasm.enabled) { + throw new Error(`Replacement property (versionObject.cosmwasm.enabled) value (${versionObject.cosmwasm.enabled}) does not match deprecated property (versionObject.cosmwasm_enabled) value (${versionObject.cosmwasm_enabled}) for: ${chain_name}::${name}`); + } + } + + if (versionObject.cosmwasm_path) { + if (versionObject.cosmwasm_path != versionObject.cosmwasm.path) { + throw new Error(`Replacement property (versionObject.cosmwasm.path) value (${versionObject.cosmwasm.path}) does not match deprecated proerty (versionObject.cosmwasm_path) value (${versionObject.cosmwasm_path}) for: ${chain_name}::${name}`); + } + } + + if (versionObject.ics_enabled) { + if (!(arraysEqual(versionObject.ics_enabled, versionObject.ibc.ics_enabled))) { + throw new Error(`Replacement property (versionObject.ibc.ics_enabled) value (${versionObject.ibc.ics_enabled}) does not match deprecated property (versionObject.ics_enabled) value (${versionObject.ics_enabled}) for: ${chain_name}::${name}`); + } + } + +} + +function checkFileSchemaReference(fileLocation, fileName, extraParentDirectories, schema) { + + let calculatedSchemaLocation = path.join( + extraParentDirectories, + chain_reg.schemas.get(schema) + ); + + const file = path.join(fileLocation, fileName); + const jsonFileContents = chain_reg.readJsonFile(file); + + if (!jsonFileContents) { + console.log("Err: No JSON Contents"); + console.log(`${jsonFileContents}`); + console.log(`${fileLocation}`); + console.log(`${fileName}`); + } + + if (jsonFileContents?.$schema !== calculatedSchemaLocation) { + throw new Error(`Schema Value: ${jsonFileContents?.$schema} does not match calculated Schema Location: ${calculatedSchemaLocation} for file: ${file}.`); + } + +} + +function checkFileSchemaReferences() { + + const root = chain_reg.chainRegistryRoot; + //Directories (from Root--will join later) + const ibcDirectory = "_IBC"; + const networkTypes = [...chain_reg.networkTypeToDirectoryNameMap.values()]; + const chainTypes = [...chain_reg.domainToDirectoryNameMap.values()]; + const chainFiles = [...chain_reg.fileToFileNameMap.keys()]; + let extraParentDirectories = ""; + + //mainnets vs testnets/devnets + networkTypes.forEach((networkType) => { + + if (networkType !== "") { + extraParentDirectories += "../"; + } + + //remember to look at IBC + let fileLocation = path.join(root, networkType, ibcDirectory); + let files = chain_reg.getDirectoryContents(fileLocation); + extraParentDirectories += "../"; + files.forEach((file) => { + checkFileSchemaReference(fileLocation, file, extraParentDirectories, "ibc"); + }); + extraParentDirectories = extraParentDirectories.slice(0,-3); + + //cosmos vs non_cosmos + chainTypes.forEach((chainType) => { + if (chainType !== "") { + extraParentDirectories += "../"; + } + + //look at each chain + let chains = chain_reg.getDirectoryContents(path.join(root, networkType, chainType)); + chains.forEach((chain) => { + if (chain_reg.nonChainDirectories.includes(chain)) { return; } + extraParentDirectories += "../"; + let fileLocation = path.join(root, networkType, chainType, chain); + let files = chain_reg.getDirectoryContents(fileLocation); + + //chain.json vs assetlist.json vs ... + chainFiles.forEach((chainFile) => { + let fileName = chain_reg.fileToFileNameMap.get(chainFile); + if (files.includes(fileName)) { + checkFileSchemaReference(fileLocation, fileName, extraParentDirectories, chainFile); + } + }); + extraParentDirectories = extraParentDirectories.slice(0, -3); + }); + if (chainType !== "") { + extraParentDirectories = extraParentDirectories.slice(0, -3); + } + }); + if (networkType !== "") { + extraParentDirectories = extraParentDirectories.slice(0, -3); + } + }); + +} + +function arraysEqual(arr1, arr2) { + if (arr1.length !== arr2.length) return false; + + for (let i = 0; i < arr1.length; i++) { + if (arr1[i] !== arr2[i]) return false; + } + + return true; +} + +function checkTypeAsset(chain_name, asset) { + + let type_asset = "ics20"; + if (asset.base.startsWith("ibc/") && asset.type_asset !== type_asset) { + throw new Error(`Type_asset not specified as ${type_asset}: ${chain_name}, ${asset.base}, ${asset.symbol}.`); + } + + if ( + asset.base.startsWith("cw20") + ) { + if (chain_name.startsWith("secret")) { + type_asset = "snip20"; + if (asset.type_asset !== type_asset && asset.type_asset !== "snip25") { + throw new Error(`Type_asset not specified as ${type_asset}: ${chain_name}, ${asset.base}, ${asset.symbol}.`); + } + } else { + type_asset = "cw20"; + if (asset.type_asset !== "cw20") { + throw new Error(`Type_asset not specified as ${type_asset}: ${chain_name}, ${asset.base}, ${asset.symbol}.`); + } + } + } + + type_asset = "erc20"; + if ( + asset.base.startsWith("0x") && + !asset.base.includes("::") && + !asset.base.includes("00000") && + asset.type_asset !== type_asset + ) { + throw new Error(`Type_asset not specified as ${type_asset}: ${chain_name}, ${asset.base}, ${asset.symbol}.`); + } + + if (!asset.type_asset) { + throw new Error(`Type_asset not specified: ${chain_name}, ${asset.base}, ${asset.symbol}.`); + } + +} + + export function validate_chain_files() { //get Chain Names @@ -169,11 +454,20 @@ export function validate_chain_files() { //check if all staking tokens are registered checkStakingTokensAreRegistered(chain_name); + //check if all old version properties' data are added into the new replacement version properties + checkReplacementVersionProperties(chain_name); + + //check that versions[] cannot be defined in chain.json when versions.json exists + checkVersionsFileAndVersionsArray(chain_name); + //get chain's assets const chainAssets = chain_reg.getFileProperty(chain_name, "assetlist", "assets"); //iterate each asset chainAssets?.forEach((asset) => { + + //require type_asset + checkTypeAsset(chain_name, asset); //check denom units checkDenomUnits(asset); @@ -181,6 +475,9 @@ export function validate_chain_files() { //check counterparty pointers of traces checkTraceCounterpartyIsValid(chain_name, asset); + //check ibc denom accuracy + checkIbcDenomAccuracy(chain_name, asset); + //check image_sync pointers of images checkImageSyncIsValid(chain_name, asset); @@ -191,8 +488,79 @@ export function validate_chain_files() { } +function validate_ibc_files() { + + //IBC directory name + const ibcDirectoryName = "_IBC"; + + //create maps of chains and channels + const chainNameToIbcChannelsMap = new Map(); + + Array.from(chain_reg.networkTypeToDirectoryMap.keys()).forEach((networkType) => { + + //Get all IBC Files (Mainnet and Testnet) + const networkTypeDirectory = chain_reg.networkTypeToDirectoryMap.get(networkType); + const directory = path.join( + networkTypeDirectory, + ibcDirectoryName + ); + const ibcFiles = chain_reg.getDirectoryContents(directory); + + ibcFiles.forEach((ibcFile) => { + + //check for ibc channel duplicates + const ibcFileContents = chain_reg.readJsonFile(path.join(directory, ibcFile)); + const chain1 = ibcFileContents.chain_1.chain_name; + const chain2 = ibcFileContents.chain_2.chain_name; + const channels = ibcFileContents.channels; + channels.forEach((channel) => { + + //check for duplicate channel-ids + checkDuplicateChannels(channel.chain_1.channel_id, chain1, chain2, chainNameToIbcChannelsMap); + checkDuplicateChannels(channel.chain_2.channel_id, chain2, chain1, chainNameToIbcChannelsMap); + + }); + + }); + + }); + +} + +function checkDuplicateChannels(channel_id, chain, counterparty, chainNameToIbcChannelsMap) { + + if (channel_id === "*") { return; } + let duplicateChannel = undefined; + let chainChannels = chainNameToIbcChannelsMap.get(chain); + if (!chainChannels) { + chainChannels = []; + } else { + duplicateChannel = chainChannels.find(obj => obj.channel_id === channel_id); + } + if (duplicateChannel) { + //report duplicate + throw new Error(`For chain: ${chain}, channel_id: ${channel_id} is registered for both: ${duplicateChannel.chain_name} and ${counterparty}.`); + } else { + const obj = { + channel_id: channel_id, + chain_name: counterparty + }; + chainChannels.push(obj); + chainNameToIbcChannelsMap.set(chain, chainChannels); + } + +} + function main() { + + //check all chains validate_chain_files(); + + //check all IBC channels + validate_ibc_files(); + + //check file schema references + checkFileSchemaReferences(); } main(); \ No newline at end of file diff --git a/8ball/assetlist.json b/8ball/assetlist.json index 6df906b162..05337fedea 100644 --- a/8ball/assetlist.json +++ b/8ball/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#dbdbdb" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/8ball/chain.json b/8ball/chain.json index 8c07160eda..6cc251122e 100644 --- a/8ball/chain.json +++ b/8ball/chain.json @@ -1,10 +1,11 @@ { "$schema": "../chain.schema.json", "chain_name": "8ball", - "status": "live", + "status": "killed", "website": "https://8ball.info/", "network_type": "mainnet", "pretty_name": "8ball", + "chain_type": "cosmos", "chain_id": "eightball-1", "bech32_prefix": "8ball", "daemon_name": "8ball", @@ -56,9 +57,23 @@ "cosmwasm_enabled": true, "binaries": { "linux/amd64": "https://8ball.info/8ball.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "0.46.7" + }, + "cosmwasm": { + "enabled": true } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.46.7" + }, + "cosmwasm": { + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png", diff --git a/README.md b/README.md index c832de87cd..a18fb5da83 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,7 @@ A sample `chain.json` includes the following information. "status": "live", "website": "https://osmosis.zone/", "network_type": "mainnet", + "chain_type": "cosmos" "pretty_name": "Osmosis", "chain_id": "osmosis-1", "bech32_prefix": "osmo", @@ -83,26 +84,45 @@ A sample `chain.json` includes the following information. }, "codebase": { "git_repo": "https://github.com/osmosis-labs/osmosis", - "recommended_version": "v12.2.0", + "genesis": { + "name": "v3", + "genesis_url": "https://github.com/osmosis-labs/networks/raw/main/osmosis-1/genesis.json" + }, + "recommended_version": "v25.0.0", "compatible_versions": [ - "v12.1.0" - "v12.2.0" + "v25.0.0" ], - "cosmos_sdk_version": "0.46", + "binaries": { + "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v25.0.0/osmosisd-25.0.0-linux-amd64", + "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v25.0.0/osmosisd-25.0.0-linux-arm64" + }, "consensus": { - "type": "tendermint", - "version": "0.34" + "type": "cometbft", + "version": "osmosis-labs/cometbft v0.37.4-v25-osmo-2" }, - "cosmwasm_version": "0.28", - "cosmwasm_enabled": true, - "ibc_go_version": "3.0.0", - "ics_enabled": [ - "ics20-1" - ], - "genesis": { - "name": "v3", - "genesis_url": "https://github.com/osmosis-labs/networks/raw/main/osmosis-1/genesis.json" + "language": { + "type": "go", + "version": "1.21.4" + }, + "sdk": { + "type": "cosmos", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-v25-osmo-1" + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1" + ] }, + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/osmosis-labs/wasmd", + "tag": "v0.45.0-osmo", + "enabled": true + } "versions": [ { "name": "v3", @@ -112,34 +132,56 @@ A sample `chain.json` includes the following information. }, ...//version history can alternatively go into 'versions.json' { - "name": "v12", - "tag": "v12.1.0", - "height": 6246000, - "proposal": 335, - "recommended_version": "v12.2.0", + "name": "v25", + "tag": "v25.0.0", + "proposal": 782, + "height": 15753500, + "recommended_version": "v25.0.0", "compatible_versions": [ - "v12.1.0" - "v12.2.0" + "v25.0.0" ], - "cosmos_sdk_version": "0.46", + "binaries": { + "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v25.0.0/osmosisd-25.0.0-linux-amd64", + "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v25.0.0/osmosisd-25.0.0-linux-arm64" + }, + "previous_version_name": "v24", + "next_version_name": "v26", "consensus": { - "type": "tendermint", - "version": "0.34" + "type": "cometbft", + "version": "osmosis-labs/cometbft v0.37.4-v25-osmo-2" }, - "cosmwasm_version": "0.28", - "cosmwasm_enabled": true, - "ibc_go_version": "3.0.0", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v13" + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/osmosis-labs/wasmd", + "tag": "v0.45.0-osmo", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.5", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "tag": "v0.47.5-v25-osmo-1" + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "language": { + "type": "go", + "version": "1.21.4" + } } ] }, "images": [ { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.svg", "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png", "theme": { + "circle": true, "primary_color_hex": "#231D4B" } } @@ -151,10 +193,9 @@ A sample `chain.json` includes the following information. "address": "ec2-44-234-84-104.us-west-2.compute.amazonaws.com:26656", "provider": "notional" }, + ... { - "id": "f515a8599b40f0e84dfad935ba414674ab11a668", - "address": "osmosis.blockpane.com:26656", - "provider": "blockpane" + //another peer } ], "persistent_peers": [ @@ -163,22 +204,9 @@ A sample `chain.json` includes the following information. "address": "52.79.199.137:26656", "provider": "cosmostation" }, - { - "id": "8d9967d5f865c68f6fe2630c0f725b0363554e77", - "address": "134.255.252.173:26656", - "provider": "divecrypto" - }, ... - ... - { - "id": "64d36f3a186a113c02db0cf7c588c7c85d946b5b", - "address": "209.97.132.170:26656", - "provider": "solidstake" - }, { - "id": "4d9ac3510d9f5cfc975a28eb2a7b8da866f7bc47", - "address": "37.187.38.191:26656", - "provider": "stakelab" + //another peer } ] }, @@ -188,15 +216,19 @@ A sample `chain.json` includes the following information. "address": "https://osmosis.validator.network/", "provider": "validatornetwork" }, + ... { - "address": "https://rpc-osmosis.blockapsis.com", - "provider": "chainapsis" + //another rpc } ], "rest": [ { "address": "https://lcd-osmosis.blockapsis.com", "provider": "chainapsis" + }, + ... + { + //another rest } ] }, @@ -206,6 +238,10 @@ A sample `chain.json` includes the following information. "url": "https://www.mintscan.io/osmosis", "tx_page": "https://www.mintscan.io/osmosis/txs/${txHash}", "account_page": "https://www.mintscan.io/osmosis/account/${accountAddress}" + }, + ... + { + //another explorer } ], "keywords": [ @@ -243,6 +279,7 @@ An example assetlist json contains the following structure: "exponent": 6 } ], + "type_asset": "sdk.coin", "base": "uosmo", "name": "Osmosis", "display": "osmo", @@ -252,6 +289,7 @@ An example assetlist json contains the following structure: "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg", "theme": { + "circle": false, "primary_color_hex": "#5c09a0" } } @@ -266,39 +304,54 @@ An example assetlist json contains the following structure: "twitter": "https://twitter.com/osmosiszone" } }, + .. { + "description": "The native staking and governance token of the Cosmos Hub.", "denom_units": [ { - "denom": "uion", - "exponent": 0 + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "exponent": 0, + "aliases": [ + "uatom" + ] }, { - "denom": "ion", + "denom": "atom", "exponent": 6 } ], - "base": "uion", - "name": "Ion", - "display": "ion", - "symbol": "ION", + "type_asset": "ics20", + "base": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "name": "Cosmos Hub", + "display": "atom", + "symbol": "ATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom", + "channel_id": "channel-141" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/uatom" + } + } + ], "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg", + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg", "theme": { - "primary_color_hex": "#3f97fc" + "primary_color_hex": "#272d45" } } - ], - "coingecko_id": "ion", - "keywords": [ - "memecoin", - "defi" - ], - "socials": { - "website": "https://ion.wtf", - "twitter": "https://twitter.com/_IONDAO" - } + ] } ] } diff --git a/_IBC/agoric-kava.json b/_IBC/agoric-kava.json new file mode 100644 index 0000000000..49ffef9512 --- /dev/null +++ b/_IBC/agoric-kava.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "agoric", + "client_id": "07-tendermint-78", + "connection_id": "connection-73" + }, + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-147", + "connection_id": "connection-182" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-63", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-133", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/akash-doravota.json b/_IBC/akash-doravota.json index 280cdde0d1..2f3a7e6621 100644 --- a/_IBC/akash-doravota.json +++ b/_IBC/akash-doravota.json @@ -23,7 +23,7 @@ "ordering": "unordered", "version": "ics20-1", "tags": { - "status": "live", + "status": "killed", "preferred": true, "dex": "osmosis" } diff --git a/_IBC/andromeda-kyve.json b/_IBC/andromeda-kyve.json new file mode 100644 index 0000000000..72f8543899 --- /dev/null +++ b/_IBC/andromeda-kyve.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "andromeda", + "client_id": "07-tendermint-17", + "connection_id": "connection-13" + }, + "chain_2": { + "chain_name": "kyve", + "client_id": "07-tendermint-2", + "connection_id": "connection-3" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "fee_version": "ics29-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } \ No newline at end of file diff --git a/_IBC/andromeda-osmosis.json b/_IBC/andromeda-osmosis.json new file mode 100644 index 0000000000..bf8b5dbb5a --- /dev/null +++ b/_IBC/andromeda-osmosis.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "andromeda", + "client_id": "07-tendermint-19", + "connection_id": "connection-15" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3250", + "connection_id": "connection-2735" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-17", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-81924", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/archway-beezee.json b/_IBC/archway-beezee.json new file mode 100644 index 0000000000..b654d3273a --- /dev/null +++ b/_IBC/archway-beezee.json @@ -0,0 +1,30 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-114", + "connection_id": "connection-107" + }, + "chain_2": { + "chain_name": "beezee", + "client_id": "07-tendermint-8", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-147", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] + } \ No newline at end of file diff --git a/_IBC/archway-osmosis.json b/_IBC/archway-osmosis.json index 1d86b3ffce..7b1a8ecef7 100644 --- a/_IBC/archway-osmosis.json +++ b/_IBC/archway-osmosis.json @@ -25,6 +25,36 @@ "tags": { "status": "live" } + }, + { + "chain_1": { + "channel_id": "*", + "port_id": "wasm.*" + }, + "chain_2": { + "channel_id": "*", + "port_id": "icahost" + }, + "ordering": "ordered", + "version": "ics27-1", + "tags": { + "status": "live" + } + }, + { + "chain_1": { + "channel_id": "*", + "port_id": "wasm.*" + }, + "chain_2": { + "channel_id": "*", + "port_id": "icqhost" + }, + "ordering": "unordered", + "version": "icq-1", + "tags": { + "status": "live" + } } ] -} +} \ No newline at end of file diff --git a/_IBC/axelar-lava.json b/_IBC/axelar-lava.json new file mode 100644 index 0000000000..990ae31bc8 --- /dev/null +++ b/_IBC/axelar-lava.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-225", + "connection_id": "connection-210" + }, + "chain_2": { + "chain_name": "lava", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-156", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } + \ No newline at end of file diff --git a/_IBC/axelar-nolus.json b/_IBC/axelar-nolus.json new file mode 100644 index 0000000000..a19745773f --- /dev/null +++ b/_IBC/axelar-nolus.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-205", + "connection_id": "connection-186" + }, + "chain_2": { + "chain_name": "nolus", + "client_id": "07-tendermint-17", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-143", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10177", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } \ No newline at end of file diff --git a/_IBC/axelar-self.json b/_IBC/axelar-self.json index 3a0153cfd0..da3c22e42a 100644 --- a/_IBC/axelar-self.json +++ b/_IBC/axelar-self.json @@ -17,7 +17,7 @@ "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-1", + "channel_id": "channel-2", "port_id": "transfer" }, "ordering": "unordered", diff --git a/_IBC/bandchain-stride.json b/_IBC/bandchain-stride.json new file mode 100644 index 0000000000..770f1e927c --- /dev/null +++ b/_IBC/bandchain-stride.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "bandchain", + "client_id": "07-tendermint-169", + "connection_id": "connection-150" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-146", + "connection_id": "connection-146" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-161", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-258", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/beezee-noble.json b/_IBC/beezee-noble.json new file mode 100644 index 0000000000..b2cf63b13f --- /dev/null +++ b/_IBC/beezee-noble.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "beezee", + "client_id": "07-tendermint-9", + "connection_id": "connection-3" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-112", + "connection_id": "connection-107" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-95", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } \ No newline at end of file diff --git a/_IBC/bostrom-cosmoshub.json b/_IBC/bostrom-cosmoshub.json new file mode 100644 index 0000000000..3526552cc6 --- /dev/null +++ b/_IBC/bostrom-cosmoshub.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "bostrom", + "client_id": "07-tendermint-15", + "connection_id": "connection-10" + }, + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-764", + "connection_id": "connection-553" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-341", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/canto-gravitybridge.json b/_IBC/canto-gravitybridge.json new file mode 100644 index 0000000000..b4a932fc7f --- /dev/null +++ b/_IBC/canto-gravitybridge.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "canto", + "client_id": "07-tendermint-0", + "connection_id": "07-tendermint-0" + }, + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-156", + "connection_id": "connection-150" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-88", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/canto-sommelier.json b/_IBC/canto-sommelier.json new file mode 100644 index 0000000000..973246f72d --- /dev/null +++ b/_IBC/canto-sommelier.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "canto", + "client_id": "07-tendermint-24", + "connection_id": "connection-16" + }, + "chain_2": { + "chain_name": "sommelier", + "client_id": "07-tendermint-10", + "connection_id": "connection-6" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/coreum-doravota.json b/_IBC/coreum-doravota.json index 1c0cbf9931..6c13431c19 100644 --- a/_IBC/coreum-doravota.json +++ b/_IBC/coreum-doravota.json @@ -23,7 +23,7 @@ "ordering": "unordered", "version": "ics20-1", "tags": { - "status": "live", + "status": "killed", "preferred": true, "dex": "osmosis" } diff --git a/_IBC/cosmoshub-lava.json b/_IBC/cosmoshub-lava.json new file mode 100644 index 0000000000..a8392c3fe3 --- /dev/null +++ b/_IBC/cosmoshub-lava.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1318", + "connection_id": "connection-1050" + }, + "chain_2": { + "chain_name": "lava", + "client_id": "07-tendermint-7", + "connection_id": "connection-12" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-969", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } + \ No newline at end of file diff --git a/_IBC/cosmoshubtestnet-symphonytestnet.json b/_IBC/cosmoshubtestnet-symphonytestnet.json new file mode 100644 index 0000000000..d370dab959 --- /dev/null +++ b/_IBC/cosmoshubtestnet-symphonytestnet.json @@ -0,0 +1,30 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshubtestnet", + "client_id": "07-tendermint-3748", + "connection_id": "connection-3798" + }, + "chain_2": { + "chain_name": "symphonytestnet", + "client_id": "07-tendermint-29", + "connection_id": "connection-14" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4320", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] +} diff --git a/_IBC/doravota-dydx.json b/_IBC/doravota-dydx.json index 9e1ed0aff2..11d5817656 100644 --- a/_IBC/doravota-dydx.json +++ b/_IBC/doravota-dydx.json @@ -23,7 +23,7 @@ "ordering": "unordered", "version": "ics20-1", "tags": { - "status": "live", + "status": "killed", "preferred": true, "dex": "osmosis" } diff --git a/_IBC/doravota-injective.json b/_IBC/doravota-injective.json index a6d280d6ca..d9aadd5387 100644 --- a/_IBC/doravota-injective.json +++ b/_IBC/doravota-injective.json @@ -23,7 +23,7 @@ "ordering": "unordered", "version": "ics20-1", "tags": { - "status": "live", + "status": "killed", "preferred": true, "dex": "osmosis" } diff --git a/_IBC/doravota-noble.json b/_IBC/doravota-noble.json new file mode 100644 index 0000000000..587a3d0c16 --- /dev/null +++ b/_IBC/doravota-noble.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "doravota", + "client_id": "07-tendermint-23", + "connection_id": "connection-29" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-111", + "connection_id": "connection-106" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-14", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-94", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/doravota-nolus.json b/_IBC/doravota-nolus.json index 8c89aec10a..e3888d351b 100644 --- a/_IBC/doravota-nolus.json +++ b/_IBC/doravota-nolus.json @@ -23,7 +23,7 @@ "ordering": "unordered", "version": "ics20-1", "tags": { - "status": "live", + "status": "killed", "preferred": true, "dex": "osmosis" } diff --git a/_IBC/doravota-sei.json b/_IBC/doravota-sei.json index 8b1163640e..d9a58eb5a4 100644 --- a/_IBC/doravota-sei.json +++ b/_IBC/doravota-sei.json @@ -23,7 +23,7 @@ "ordering": "unordered", "version": "ics20-1", "tags": { - "status": "live", + "status": "killed", "preferred": true } } diff --git a/_IBC/dydx-pryzm.json b/_IBC/dydx-pryzm.json new file mode 100644 index 0000000000..14e78e096b --- /dev/null +++ b/_IBC/dydx-pryzm.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dydx", + "client_id": "07-tendermint-29", + "connection_id": "connection-34" + }, + "chain_2": { + "chain_name": "pryzm", + "client_id": "07-tendermint-9", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-71", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-24", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/injective-secretnetwork.json b/_IBC/injective-secretnetwork.json index b96fa6b850..98462307a1 100644 --- a/_IBC/injective-secretnetwork.json +++ b/_IBC/injective-secretnetwork.json @@ -2,13 +2,13 @@ "$schema": "../ibc_data.schema.json", "chain_1": { "chain_name": "injective", - "client_id": "07-tendermint-97", - "connection_id": "connection-83" + "client_id": "07-tendermint-126", + "connection_id": "connection-101" }, "chain_2": { "chain_name": "secretnetwork", - "client_id": "07-tendermint-22", - "connection_id": "connection-8" + "client_id": "07-tendermint-49", + "connection_id": "connection-30" }, "channels": [ { diff --git a/_IBC/kava-noble.json b/_IBC/kava-noble.json new file mode 100644 index 0000000000..5dee842f46 --- /dev/null +++ b/_IBC/kava-noble.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kava", + "client_id": "07-tendermint-172", + "connection_id": "connection-214" + }, + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-107", + "connection_id": "connection-102" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-151", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-88", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } diff --git a/_IBC/kimanetwork-osmosis.json b/_IBC/kimanetwork-osmosis.json new file mode 100644 index 0000000000..a4a7623be1 --- /dev/null +++ b/_IBC/kimanetwork-osmosis.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kimanetwork", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3275", + "connection_id": "channel-83350" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-83350", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] +} diff --git a/_IBC/kyve-source.json b/_IBC/kyve-source.json new file mode 100644 index 0000000000..867a501512 --- /dev/null +++ b/_IBC/kyve-source.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kyve", + "client_id": "07-tendermint-3", + "connection_id": "connection-5" + }, + "chain_2": { + "chain_name": "source", + "client_id": "07-tendermint-15", + "connection_id": "connection-16" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-3", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-2", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "fee_version": "ics29-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } \ No newline at end of file diff --git a/_IBC/lava-osmosis.json b/_IBC/lava-osmosis.json new file mode 100644 index 0000000000..9f0747d339 --- /dev/null +++ b/_IBC/lava-osmosis.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "lava", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3210", + "connection_id": "connection-2668" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-76971", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] +} diff --git a/_IBC/lava-stargaze.json b/_IBC/lava-stargaze.json new file mode 100644 index 0000000000..b244c90265 --- /dev/null +++ b/_IBC/lava-stargaze.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "lava", + "client_id": "07-tendermint-8", + "connection_id": "connection-13" + }, + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-366", + "connection_id": "connection-307" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-391", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } + \ No newline at end of file diff --git a/testnets/_IBC/celestiatestnet3-neutrontestnet.json b/_IBC/lorenzo-osmosis.json similarity index 71% rename from testnets/_IBC/celestiatestnet3-neutrontestnet.json rename to _IBC/lorenzo-osmosis.json index 489be7c692..dee6be5686 100644 --- a/testnets/_IBC/celestiatestnet3-neutrontestnet.json +++ b/_IBC/lorenzo-osmosis.json @@ -1,14 +1,14 @@ { "$schema": "../ibc_data.schema.json", "chain_1": { - "chain_name": "celestiatestnet3", + "chain_name": "lorenzo", "client_id": "07-tendermint-0", "connection_id": "connection-0" }, "chain_2": { - "chain_name": "neutrontestnet", - "client_id": "07-tendermint-113", - "connection_id": "connection-101" + "chain_name": "osmosis", + "client_id": "07-tendermint-3243", + "connection_id": "connection-2731" }, "channels": [ { @@ -17,7 +17,7 @@ "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-160", + "channel_id": "channel-79840", "port_id": "transfer" }, "ordering": "unordered", @@ -28,4 +28,4 @@ } } ] -} \ No newline at end of file +} diff --git a/_IBC/medasdigital-sentinel.json b/_IBC/medasdigital-sentinel.json index ffb90009d6..af8cb0f301 100644 --- a/_IBC/medasdigital-sentinel.json +++ b/_IBC/medasdigital-sentinel.json @@ -13,7 +13,7 @@ "channels": [ { "chain_1": { - "channel_id": "channel-0", + "channel_id": "channel-4", "port_id": "transfer" }, "chain_2": { diff --git a/_IBC/neutron-penumbra.json b/_IBC/neutron-penumbra.json new file mode 100644 index 0000000000..0702ab3bdc --- /dev/null +++ b/_IBC/neutron-penumbra.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-137", + "connection_id": "connection-98" + }, + "chain_2": { + "chain_name": "penumbra", + "client_id": "07-tendermint-9", + "connection_id": "connection-7" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4886", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} \ No newline at end of file diff --git a/_IBC/noble-titan.json b/_IBC/noble-titan.json new file mode 100644 index 0000000000..917a297475 --- /dev/null +++ b/_IBC/noble-titan.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "noble", + "client_id": "07-tendermint-114", + "connection_id": "connection-109" + }, + "chain_2": { + "chain_name": "titan", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-99", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/osmosis-penumbra.json b/_IBC/osmosis-penumbra.json new file mode 100644 index 0000000000..55e6d69d3a --- /dev/null +++ b/_IBC/osmosis-penumbra.json @@ -0,0 +1,32 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3242", + "connection_id": "connection-2730" + }, + "chain_2": { + "chain_name": "penumbra", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-79703", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] +} diff --git a/_IBC/osmosis-routerchain.json b/_IBC/osmosis-routerchain.json new file mode 100644 index 0000000000..fea1d816f9 --- /dev/null +++ b/_IBC/osmosis-routerchain.json @@ -0,0 +1,47 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3235", + "connection_id": "connection-2722" + }, + "chain_2": { + "chain_name": "routerchain", + "client_id": "07-tendermint-7", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-79180", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + }, + { + "chain_1": { + "channel_id": "channel-79179", + "port_id": "wasm.osmo145vur8faym70dt7a4h60jz348vxxxqwpnezdz6ee9r88a4cftsvq85dtxr" + }, + "chain_2": { + "channel_id": "channel-6", + "port_id": "crosschain" + }, + "ordering": "unordered", + "version": "router-ibc-v1", + "tags": { + "status": "live", + "preferred": true + } + } + ] + } \ No newline at end of file diff --git a/_IBC/osmosis-stratos.json b/_IBC/osmosis-stratos.json new file mode 100644 index 0000000000..b49ced6c6a --- /dev/null +++ b/_IBC/osmosis-stratos.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3248", + "connection_id": "connection-2734" + }, + "chain_2": { + "chain_name": "stratos", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-81016", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/pryzm-stride.json b/_IBC/pryzm-stride.json new file mode 100644 index 0000000000..8c63371f96 --- /dev/null +++ b/_IBC/pryzm-stride.json @@ -0,0 +1,31 @@ +{ + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "pryzm", + "client_id": "07-tendermint-8", + "connection_id": "connection-8" + }, + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-145", + "connection_id": "connection-145" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-257", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/_IBC/pryzm-terra2.json b/_IBC/pryzm-terra2.json index b3e6c44ffd..a1ddb82146 100644 --- a/_IBC/pryzm-terra2.json +++ b/_IBC/pryzm-terra2.json @@ -39,8 +39,8 @@ "ordering": "ordered", "version": "ics27-1", "tags": { - "status": "live", - "preferred": true + "status": "killed", + "preferred": false } }, { @@ -74,6 +74,22 @@ "status": "live", "preferred": true } + }, + { + "chain_1": { + "channel_id": "channel-25", + "port_id": "icacontroller-delegation-uluna" + }, + "chain_2": { + "channel_id": "channel-526", + "port_id": "icahost" + }, + "ordering": "ordered", + "version": "ics27-1", + "tags": { + "status": "live", + "preferred": true + } } ] } diff --git a/_non-cosmos/0l/assetlist.json b/_non-cosmos/0l/assetlist.json index 1b72758b38..a6a16b940f 100644 --- a/_non-cosmos/0l/assetlist.json +++ b/_non-cosmos/0l/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "0l", "assets": [ { diff --git a/_non-cosmos/aptos/assetlist.json b/_non-cosmos/aptos/assetlist.json index 32b2d562f8..ecb3e1401b 100644 --- a/_non-cosmos/aptos/assetlist.json +++ b/_non-cosmos/aptos/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "aptos", "assets": [ { diff --git a/_non-cosmos/arbitrum/assetlist.json b/_non-cosmos/arbitrum/assetlist.json index 7c2ab2d2c6..afbd02fd1e 100644 --- a/_non-cosmos/arbitrum/assetlist.json +++ b/_non-cosmos/arbitrum/assetlist.json @@ -73,7 +73,10 @@ "base_denom": "wei" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "theme": { + "primary_color_hex": "#303030" + } } ] }, @@ -119,7 +122,10 @@ "base_denom": "wei" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "theme": { + "primary_color_hex": "#303030" + } } ] }, @@ -177,8 +183,10 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "circle": true - } + "circle": true, + "primary_color_hex": "#2775CA" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png" } ] }, @@ -222,10 +230,57 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "circle": true + "circle": true, + "primary_color_hex": "#2775CA" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png" + } + ] + }, + { + "description": "USDT from Ethereum bridged to Arbitrum via Arbitrum Bridge.", + "type_asset": "erc20", + "address": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", + "denom_units": [ + { + "denom": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "base": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", + "name": "Arbitrum Bridged USDT", + "display": "usdt", + "symbol": "USDT", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "provider": "Arbitrum Bridge" + } + ], + "coingecko_id": "arbitrum-bridged-usdt-arbitrum", + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "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", + "theme": { + "circle": true, + "primary_color_hex": "#009393", + "background_color_hex": "#009393" } } ] } ] -} +} \ No newline at end of file diff --git a/_non-cosmos/avail/assetlist.json b/_non-cosmos/avail/assetlist.json new file mode 100644 index 0000000000..d25d221617 --- /dev/null +++ b/_non-cosmos/avail/assetlist.json @@ -0,0 +1,36 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "avail", + "assets": [ + { + "description": "Avail is a web3 infrastructure layer that allows modular execution layers to scale and interoperate in a trust minimized way.", + "extended_description": "Avail is a unification layer for Web3 that decouples the data availability layer, making it easier for developers to focus on execution and settlement. It's built to make applications fast, efficient, and scalable. Avail works with any execution environment designed to scale blockchains. ", + "type_asset": "unknown", + "denom_units": [ + { + "denom": "avail", + "exponent": 0 + }, + { + "denom": "AVAIL", + "exponent": 18 + } + ], + "base": "avail", + "name": "Avail", + "display": "AVAIL", + "symbol": "AVAIL", + "coingecko_id": "avail", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avail/images/avail.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avail/images/avail.png", + "theme": { + "circle": false, + "primary_color_hex": "#2B80D7" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/avail/images/avail.png b/_non-cosmos/avail/images/avail.png new file mode 100644 index 0000000000..cd1a576ef2 Binary files /dev/null and b/_non-cosmos/avail/images/avail.png differ diff --git a/_non-cosmos/avail/images/avail.svg b/_non-cosmos/avail/images/avail.svg new file mode 100644 index 0000000000..badbd21660 --- /dev/null +++ b/_non-cosmos/avail/images/avail.svg @@ -0,0 +1,194 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_non-cosmos/avalanche/assetlist.json b/_non-cosmos/avalanche/assetlist.json index 5b4eee544c..5bf5db4314 100644 --- a/_non-cosmos/avalanche/assetlist.json +++ b/_non-cosmos/avalanche/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "avalanche", "assets": [ { @@ -108,6 +108,7 @@ } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "coingecko_id": "usd-coin", @@ -119,8 +120,10 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "circle": true - } + "circle": true, + "primary_color_hex": "#2775CA" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png" } ] }, @@ -164,8 +167,10 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "circle": true - } + "circle": true, + "primary_color_hex": "#2775CA" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png" } ] }, @@ -332,6 +337,51 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ] + }, + { + "description": "USDT issued on Avalanche.", + "type_asset": "erc20", + "address": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", + "denom_units": [ + { + "denom": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "base": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", + "name": "Tether USD", + "display": "usdt", + "symbol": "USDT", + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "provider": "Tether" + } + ], + "coingecko_id": "tether", + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "theme": { + "circle": true, + "primary_color_hex": "#009393", + "background_color_hex": "#009393" + } + } + ] } ] -} +} \ No newline at end of file diff --git a/_non-cosmos/base/assetlist.json b/_non-cosmos/base/assetlist.json index 66f08d3f3d..8b7742ff24 100644 --- a/_non-cosmos/base/assetlist.json +++ b/_non-cosmos/base/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "base", "assets": [ { @@ -36,7 +36,10 @@ "base_denom": "wei" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "theme": { + "primary_color_hex": "#303030" + } } ] }, @@ -82,7 +85,10 @@ "base_denom": "wei" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "theme": { + "primary_color_hex": "#303030" + } } ] }, @@ -118,6 +124,7 @@ } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "coingecko_id": "usd-coin", @@ -129,8 +136,10 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "circle": true - } + "circle": true, + "primary_color_hex": "#2775CA" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png" } ] }, @@ -174,7 +183,49 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "circle": true + "circle": true, + "primary_color_hex": "#2775CA" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png" + } + ] + }, + { + "description": "Coinbase Wrapped BTC ('cbBTC') is an ERC20 token that is backed 1:1 by Bitcoin (BTC) held by Coinbase. cbBTC is built to be seamlessly compatible with DeFi applications, giving customers the option to tap into DeFi and unlock financial utility.", + "type_asset": "erc20", + "address": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf", + "denom_units": [ + { + "denom": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf", + "exponent": 0 + }, + { + "denom": "cbbtc", + "exponent": 8 + } + ], + "base": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf", + "name": "Coinbase Wrapped BTC", + "display": "cbbtc", + "symbol": "cbBTC", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "bitcoin", + "base_denom": "sat" + }, + "provider": "Base Bridge" + } + ], + "coingecko_id": "coinbase-wrapped-btc", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/base/images/cbbtc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/base/images/cbbtc.png", + "theme": { + "circle": true, + "primary_color_hex": "#0052FF" } } ] diff --git a/_non-cosmos/base/images/cbbtc.png b/_non-cosmos/base/images/cbbtc.png new file mode 100644 index 0000000000..07ce743e8c Binary files /dev/null and b/_non-cosmos/base/images/cbbtc.png differ diff --git a/_non-cosmos/base/images/cbbtc.svg b/_non-cosmos/base/images/cbbtc.svg new file mode 100644 index 0000000000..0bba3dea14 --- /dev/null +++ b/_non-cosmos/base/images/cbbtc.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/_non-cosmos/base/images/temp.txt b/_non-cosmos/base/images/temp.txt new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/_non-cosmos/base/images/temp.txt @@ -0,0 +1 @@ + diff --git a/_non-cosmos/binancesmartchain/assetlist.json b/_non-cosmos/binancesmartchain/assetlist.json index 6a00cd0e38..54226cc9ab 100644 --- a/_non-cosmos/binancesmartchain/assetlist.json +++ b/_non-cosmos/binancesmartchain/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "binancesmartchain", "assets": [ { @@ -221,6 +221,51 @@ } } ] + }, + { + "description": "BUSD-T gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "type_asset": "erc20", + "address": "0x55d398326f99059fF775485246999027B3197955", + "denom_units": [ + { + "denom": "0x55d398326f99059fF775485246999027B3197955", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "base": "0x55d398326f99059fF775485246999027B3197955", + "name": "Binance Bridged USDT", + "display": "usdt", + "symbol": "USDT", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "provider": "Binance Bridge" + } + ], + "coingecko_id": "binance-bridged-usdt-bnb-smart-chain", + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "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", + "theme": { + "circle": true, + "primary_color_hex": "#009393", + "background_color_hex": "#009393" + } + } + ] } ] } \ No newline at end of file diff --git a/_non-cosmos/bitcoin/assetlist.json b/_non-cosmos/bitcoin/assetlist.json index 12ae466188..38a4378aa4 100644 --- a/_non-cosmos/bitcoin/assetlist.json +++ b/_non-cosmos/bitcoin/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "bitcoin", "assets": [ { @@ -21,14 +21,18 @@ "display": "btc", "symbol": "BTC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg" }, "coingecko_id": "bitcoin", "images": [ { + "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 } } ] diff --git a/_non-cosmos/bitcoin/images/btc.svg b/_non-cosmos/bitcoin/images/btc.svg new file mode 100644 index 0000000000..04079be30b --- /dev/null +++ b/_non-cosmos/bitcoin/images/btc.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/_non-cosmos/comex/assetlist.json b/_non-cosmos/comex/assetlist.json index 2f4b7ac923..069284d7c3 100644 --- a/_non-cosmos/comex/assetlist.json +++ b/_non-cosmos/comex/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "comex", "assets": [ { diff --git a/_non-cosmos/composablepolkadot/assetlist.json b/_non-cosmos/composablepolkadot/assetlist.json index 855136a622..3206aeeb10 100644 --- a/_non-cosmos/composablepolkadot/assetlist.json +++ b/_non-cosmos/composablepolkadot/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "composablepolkadot", "assets": [ { diff --git a/_non-cosmos/ethereum/assetlist.json b/_non-cosmos/ethereum/assetlist.json index f1eb2a273a..5cf3304c4d 100644 --- a/_non-cosmos/ethereum/assetlist.json +++ b/_non-cosmos/ethereum/assetlist.json @@ -399,7 +399,11 @@ "coingecko_id": "shiba-inu", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "theme": { + "primary_color_hex": "#FFA409", + "background_color_hex": "#00000000" + } } ] }, @@ -724,14 +728,17 @@ } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "coingecko_id": "usd-coin", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", "theme": { - "circle": true + "circle": true, + "primary_color_hex": "#2775CA" } } ] @@ -1807,6 +1814,148 @@ "website": "https://cacaoswap.app", "twitter": "https://x.com/CacaoSwap" } + }, + { + "description": "Avail is a web3 infrastructure layer that allows modular execution layers to scale and interoperate in a trust minimized way.", + "type_asset": "erc20", + "address": "0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8", + "denom_units": [ + { + "denom": "0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8", + "exponent": 0, + "aliases": [ + "avail-wei", + "avail" + ] + }, + { + "denom": "AVAIL", + "exponent": 18 + } + ], + "base": "0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8", + "name": "Avail", + "display": "AVAIL", + "symbol": "AVAIL", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "avail", + "base_denom": "avail" + }, + "provider": "Avail Bridge" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "avail", + "base_denom": "avail" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avail/images/avail.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avail/images/avail.png", + "theme": { + "circle": false, + "primary_color_hex": "#2B80D7" + } + } + ] + }, + { + "description": "EURe is a Euro-backed stablecoin issued by Monerium.", + "extended_description": "EURe is the first authorized and regulated stablecoin in Europe. It is collateralized by Euro-denominated deposits held in segregated accounts. EURe is issued by Monerium, the first Electronic Money Institution (EMI) to become compliant under the EU's MiCA regulations.", + "type_asset": "erc20", + "address": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f", + "denom_units": [ + { + "denom": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f", + "exponent": 0, + "aliases": [ + "eure-wei", + "ueure" + ] + }, + { + "denom": "eure", + "exponent": 18 + } + ], + "base": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f", + "name": "Monerium EUR emoney", + "display": "eure", + "symbol": "EURe", + "coingecko_id": "monerium-eur-money", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "EUR" + }, + "provider": "Monerium" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.svg", + "theme": { + "circle": true, + "primary_color_hex": "#0095D7", + "background_color_hex": "#FFFFFF" + } + } + ], + "socials": { + "website": "https://monerium.com/", + "twitter": "https://x.com/monerium" + } + }, + { + "description": "LBTC is liquid, yield-bearing, natively cross-chain, and 1:1 backed by bitcoin.", + "extended_description": "Lombard is dedicated to expanding the digital economy by transforming Bitcoin’s utility from a mere store of value into a productive financial tool. While Bitcoin remains the world’s largest crypto asset, with over $1 trillion worth of Bitcoin often sitting idle, its utility is limited compared to other digital assets. Lombard sees a significant opportunity to change this by connecting Bitcoin to decentralized finance (DeFi).\n\nLombard is driven by the fact that if just 10% of Bitcoin's $1.5 trillion market cap flows into DeFi, the total value locked (TVL) in the ecosystem could more than double, catalyzing unprecedented growth and enabling sustainable market dynamics over time. Lombard believes this potential can be unlocked through a security-first liquid Bitcoin primitiveβ€”LBTC.\n\nOur flagship product, LBTC, is a secure Bitcoin liquid staked token (LST), designed to empower anyoneβ€”from individual holders to large institutionsβ€”to amplify the utility of their Bitcoin. It allows users to earn a native yield from providing economic security to networks via Babylon and participate in DeFi, all while maintaining the value of the original asset.\n\nBy building LBTC on top of Babylon, Lombard’s LBTC bridges the gap between Bitcoin’s immense economic value, security capabilities, and the dynamic opportunities within PoS and DeFi ecosystems, marking a transformative phase for Bitcoin in the decentralized economy.", + "type_asset": "erc20", + "address": "0x8236a87084f8B84306f72007F36F2618A5634494", + "denom_units": [ + { + "denom": "0x8236a87084f8B84306f72007F36F2618A5634494", + "exponent": 0 + }, + { + "denom": "lbtc", + "exponent": 8 + } + ], + "base": "0x8236a87084f8B84306f72007F36F2618A5634494", + "name": "Lombard Staked Bitcoin", + "display": "lbtc", + "symbol": "LBTC", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "bitcoin", + "base_denom": "sat" + }, + "provider": "Lombard" + } + ], + "coingecko_id": "lombard-staked-btc", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lbtc.svg", + "theme": { + "circle": true, + "primary_color_hex": "#162E2F" + } + } + ], + "socials": { + "website": "https://lombard.finance", + "twitter": "https://x.com/Lombard_Finance" + } } ] } diff --git a/_non-cosmos/ethereum/chain.json b/_non-cosmos/ethereum/chain.json new file mode 100644 index 0000000000..87945943ea --- /dev/null +++ b/_non-cosmos/ethereum/chain.json @@ -0,0 +1,46 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "ethereum", + "status": "live", + "website": "https://ethereum.org/", + "network_type": "mainnet", + "pretty_name": "Ethereum Mainnet", + "chain_type": "eip155", + "chain_id": "1", + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "wei", + "fixed_min_gas_price": 0 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "wei" + } + ] + }, + "explorers": [ + { + "kind": "Etherscan", + "url": "https://etherscan.io/", + "tx_page": "https://etherscan.io/tx/${txHash}" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg", + "theme": { + "primary_color_hex": "#303030" + } + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/ethereum/images/eure.png b/_non-cosmos/ethereum/images/eure.png new file mode 100644 index 0000000000..ee480aed2d Binary files /dev/null and b/_non-cosmos/ethereum/images/eure.png differ diff --git a/_non-cosmos/ethereum/images/eure.svg b/_non-cosmos/ethereum/images/eure.svg new file mode 100644 index 0000000000..14f8618f4e --- /dev/null +++ b/_non-cosmos/ethereum/images/eure.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_non-cosmos/ethereum/images/lbtc.png b/_non-cosmos/ethereum/images/lbtc.png new file mode 100644 index 0000000000..acf74a8e51 Binary files /dev/null and b/_non-cosmos/ethereum/images/lbtc.png differ diff --git a/_non-cosmos/ethereum/images/lbtc.svg b/_non-cosmos/ethereum/images/lbtc.svg new file mode 100644 index 0000000000..1fed0b11ac --- /dev/null +++ b/_non-cosmos/ethereum/images/lbtc.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_non-cosmos/ethereum/images/usdc.png b/_non-cosmos/ethereum/images/usdc.png new file mode 100644 index 0000000000..8c0ffa7b84 Binary files /dev/null and b/_non-cosmos/ethereum/images/usdc.png differ diff --git a/_non-cosmos/ethereum/images/usdc.svg b/_non-cosmos/ethereum/images/usdc.svg index 5dfea926e6..bcec782106 100644 --- a/_non-cosmos/ethereum/images/usdc.svg +++ b/_non-cosmos/ethereum/images/usdc.svg @@ -1,5 +1,20 @@ - - - - + + + + + + + + diff --git a/_non-cosmos/fantom/assetlist.json b/_non-cosmos/fantom/assetlist.json index ce4e277ae9..efe960e747 100644 --- a/_non-cosmos/fantom/assetlist.json +++ b/_non-cosmos/fantom/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "fantom", "assets": [ { diff --git a/_non-cosmos/filecoin/assetlist.json b/_non-cosmos/filecoin/assetlist.json index d9455c192e..e6778abd4c 100644 --- a/_non-cosmos/filecoin/assetlist.json +++ b/_non-cosmos/filecoin/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "filecoin", "assets": [ { diff --git a/_non-cosmos/forex/assetlist.json b/_non-cosmos/forex/assetlist.json index 54a7114045..6726ede72f 100644 --- a/_non-cosmos/forex/assetlist.json +++ b/_non-cosmos/forex/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "forex", "assets": [ { @@ -14,6 +14,19 @@ "display": "USD", "name": "United States Dollar", "symbol": "USD" + }, + { + "type_asset": "unknown", + "denom_units": [ + { + "denom": "EUR", + "exponent": 0 + } + ], + "base": "EUR", + "display": "EUR", + "name": "Euro", + "symbol": "EUR" } ] -} \ No newline at end of file +} diff --git a/_non-cosmos/internetcomputer/assetlist.json b/_non-cosmos/internetcomputer/assetlist.json new file mode 100644 index 0000000000..e6c7262c72 --- /dev/null +++ b/_non-cosmos/internetcomputer/assetlist.json @@ -0,0 +1,89 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "internetcomputer", + "assets": [ + { + "description": "The native token of Internet Computer", + "extended_description": "The Internet Computer blockchain incorporates a radical rethink of blockchain design, powered by innovations in cryptography. It provides the first β€œWorld Computer” blockchain that can be used to build almost any Web 2.0 online system or service, and web3 services, including web3 social media services, without any need for centralized traditional IT such as cloud computing services. It also enables smart contracts it hosts to directly create transactions on other blockchains, which in turn enables the full end-to-end decentralization of online services and web3 for the first time.", + "denom_units": [ + { + "denom": "e8s", + "exponent": 0 + }, + { + "denom": "ICP", + "exponent": 8 + } + ], + "type_asset": "unknown", + "base": "e8s", + "name": "Internet Computer", + "display": "ICP", + "symbol": "ICP", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/icp.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/icp.png", + "theme": { + "circle": true, + "primary_color_hex": "#29ABE2", + "background_color_hex": "#E3E3E3" + } + } + ], + "coingecko_id": "internet-computer", + "socials": { + "website": "https://internetcomputer.org/", + "twitter": "https://x.com/dfinity" + } + }, + { + "description": "A multi-chain bitcoin twin, trustlessly created by chain-key cryptography and Internet Computer smart contracts that directly hold raw bitcoin.", + "extended_description": "Chain-key Bitcoin (ckBTC) is an ICRC-2-compliant token that is backed 1:1 by BTC held 100% on the mainnet. ckBTC does not rely on a centralized bridge to facilitate the conversion between BTC and ckBTC, which makes it substantially more secure when compared to other traditional 'wrapped' tokens.", + "denom_units": [ + { + "denom": "uckBTC", + "exponent": 0, + "aliases": [ + "sat" + ] + }, + { + "denom": "ckBTC", + "exponent": 8 + } + ], + "type_asset": "unknown", + "base": "uckBTC", + "name": "Chain-key Bitcoin", + "display": "ckBTC", + "symbol": "ckBTC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "bitcoin", + "base_denom": "sat" + }, + "provider": "Omnity Network" + } + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.png", + "theme": { + "circle": true, + "primary_color_hex": "#3B00B9", + "background_color_hex": "#3B00B9" + } + } + ], + "coingecko_id": "chain-key-bitcoin", + "socials": { + "website": "https://internetcomputer.org/ckbtc", + "twitter": "https://x.com/dfinity" + } + } + ] +} diff --git a/_non-cosmos/internetcomputer/images/ckbtc.png b/_non-cosmos/internetcomputer/images/ckbtc.png new file mode 100644 index 0000000000..2d7e556c45 Binary files /dev/null and b/_non-cosmos/internetcomputer/images/ckbtc.png differ diff --git a/_non-cosmos/internetcomputer/images/ckbtc.svg b/_non-cosmos/internetcomputer/images/ckbtc.svg new file mode 100644 index 0000000000..fda8707992 --- /dev/null +++ b/_non-cosmos/internetcomputer/images/ckbtc.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/_non-cosmos/internetcomputer/images/icp.png b/_non-cosmos/internetcomputer/images/icp.png new file mode 100644 index 0000000000..ae5e0b2369 Binary files /dev/null and b/_non-cosmos/internetcomputer/images/icp.png differ diff --git a/_non-cosmos/internetcomputer/images/icp.svg b/_non-cosmos/internetcomputer/images/icp.svg new file mode 100644 index 0000000000..969434dd62 --- /dev/null +++ b/_non-cosmos/internetcomputer/images/icp.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/_non-cosmos/kusama/assetlist.json b/_non-cosmos/kusama/assetlist.json index 40e0c88377..ff20041d93 100644 --- a/_non-cosmos/kusama/assetlist.json +++ b/_non-cosmos/kusama/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "kusama", "assets": [ { diff --git a/_non-cosmos/mantle/assetlist.json b/_non-cosmos/mantle/assetlist.json new file mode 100644 index 0000000000..b22fd9f219 --- /dev/null +++ b/_non-cosmos/mantle/assetlist.json @@ -0,0 +1,52 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "mantle", + "assets": [ + { + "description": "Ignition introduces $FBTC, an omnichain Bitcoin asset pegged 1:1 to BTC, aimed at elevating Bitcoin’s accessibility and utility, paving the way for a low-friction and interoperable future.", + "extended_description": "FBTC enhances Bitcoin utility beyond just a store of value, and elevates its power with an asset that commands ultimate liquidity across many chains and various yield enhancement options.\n\n\n\nFBTC uses reputable and trusted multisignature custody solutions, and employs Threshold Signature Scheme (TSS) Network to conduct minting and bridging.\n\nFBTC is seamlessly interoperable to enable a wide range of use cases on L1s and L2s.\n\nFBTC brings an impressive slate of prominent strategic partnerships with industry leading institutions, blockchain ecosystems and infrastructure providers. FBTC will also be supported by many DeFi applications, CEXs and wallets.", + "type_asset": "erc20", + "address": "0xC96dE26018A54D51c097160568752c4E3BD6C364", + "denom_units": [ + { + "denom": "0xC96dE26018A54D51c097160568752c4E3BD6C364", + "exponent": 0 + }, + { + "denom": "fbtc", + "exponent": 8 + } + ], + "base": "0xC96dE26018A54D51c097160568752c4E3BD6C364", + "name": "Fire Bitcoin", + "display": "fbtc", + "symbol": "FBTC", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "bitcoin", + "base_denom": "sat" + }, + "provider": "Ignition" + } + ], + "coingecko_id": "ignition-fbtc", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/mantle/images/fbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/mantle/images/fbtc.svg", + "theme": { + "circle": false, + "primary_color_hex": "#8F00FF", + "background_color_hex": "#00000000" + } + } + ], + "socials": { + "website": "https://fbtc.com/", + "twitter": "https://twitter.com/fbtc_official" + } + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/mantle/images/fbtc.png b/_non-cosmos/mantle/images/fbtc.png new file mode 100644 index 0000000000..c27db5a6b5 Binary files /dev/null and b/_non-cosmos/mantle/images/fbtc.png differ diff --git a/_non-cosmos/mantle/images/fbtc.svg b/_non-cosmos/mantle/images/fbtc.svg new file mode 100644 index 0000000000..761142c793 --- /dev/null +++ b/_non-cosmos/mantle/images/fbtc.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_non-cosmos/moonbeam/assetlist.json b/_non-cosmos/moonbeam/assetlist.json index 7fde8cadc0..6acdbb072e 100644 --- a/_non-cosmos/moonbeam/assetlist.json +++ b/_non-cosmos/moonbeam/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "moonbeam", "assets": [ { diff --git a/_non-cosmos/neo/assetlist.json b/_non-cosmos/neo/assetlist.json index 41b18de124..2659f1999e 100644 --- a/_non-cosmos/neo/assetlist.json +++ b/_non-cosmos/neo/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "neo", "assets": [ { diff --git a/_non-cosmos/optimism/assetlist.json b/_non-cosmos/optimism/assetlist.json index 4df5c6d270..a1a546e92b 100644 --- a/_non-cosmos/optimism/assetlist.json +++ b/_non-cosmos/optimism/assetlist.json @@ -65,7 +65,10 @@ "base_denom": "wei" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "theme": { + "primary_color_hex": "#303030" + } } ] }, @@ -111,7 +114,10 @@ "base_denom": "wei" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "theme": { + "primary_color_hex": "#303030" + } } ] }, @@ -155,8 +161,10 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "circle": true - } + "circle": true, + "primary_color_hex": "#2775CA" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png" } ] }, @@ -200,7 +208,65 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "circle": true + "circle": true, + "primary_color_hex": "#2775CA" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png" + } + ] + }, + { + "description": "USDT Bridged from Ethereum via Optimism Bridge.", + "type_asset": "erc20", + "address": "0x94b008aA00579c1307B0EF2c499aD98a8ce58e58", + "denom_units": [ + { + "denom": "0x94b008aA00579c1307B0EF2c499aD98a8ce58e58", + "exponent": 0, + "aliases": [ + "uusdt" + ] + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "base": "0x94b008aA00579c1307B0EF2c499aD98a8ce58e58", + "name": "Tether USD", + "display": "usdt", + "symbol": "USDT", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "provider": "Optimism Bridge" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "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", + "theme": { + "circle": true, + "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" } } ] diff --git a/_non-cosmos/picasso/assetlist.json b/_non-cosmos/picasso/assetlist.json index 1eefbed41e..6315065e00 100644 --- a/_non-cosmos/picasso/assetlist.json +++ b/_non-cosmos/picasso/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "picasso", "assets": [ { @@ -162,6 +162,7 @@ "exponent": 12 } ], + "type_asset": "substrate", "base": "2125", "name": "Tinkernet", "display": "TNKR", diff --git a/_non-cosmos/polkadot/assetlist.json b/_non-cosmos/polkadot/assetlist.json index ce570d063c..b9ff3be102 100644 --- a/_non-cosmos/polkadot/assetlist.json +++ b/_non-cosmos/polkadot/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "polkadot", "assets": [ { diff --git a/_non-cosmos/polygon/assetlist.json b/_non-cosmos/polygon/assetlist.json index 1109348d64..fd3e4dc1dd 100644 --- a/_non-cosmos/polygon/assetlist.json +++ b/_non-cosmos/polygon/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "polygon", "assets": [ { @@ -11,18 +11,19 @@ "exponent": 0 }, { - "denom": "matic", + "denom": "pol", "exponent": 18, "aliases": [ - "polygon" + "polygon", + "matic" ] } ], "type_asset": "evm-base", "base": "wei", - "name": "Matic", - "display": "matic", - "symbol": "MATIC", + "name": "Polygon", + "display": "pol", + "symbol": "POL", "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.svg" @@ -127,8 +128,10 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "circle": true - } + "circle": true, + "primary_color_hex": "#2775CA" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png" } ] }, @@ -172,8 +175,10 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "circle": true - } + "circle": true, + "primary_color_hex": "#2775CA" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png" } ] }, @@ -425,6 +430,51 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" } ] + }, + { + "description": "USDT from Ethereum bridged to Polygon via Polygon PoS Bridge.", + "type_asset": "erc20", + "address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "denom_units": [ + { + "denom": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "base": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "name": "Polygon Bridged USDT", + "display": "usdt", + "symbol": "USDT", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "provider": "Polygon PoS Bridge" + } + ], + "coingecko_id": "polygon-bridged-usdt-polygon", + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "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", + "theme": { + "circle": true, + "primary_color_hex": "#009393", + "background_color_hex": "#009393" + } + } + ] } ] } \ No newline at end of file diff --git a/_non-cosmos/rootstock/assetlist.json b/_non-cosmos/rootstock/assetlist.json new file mode 100644 index 0000000000..9f27b3373d --- /dev/null +++ b/_non-cosmos/rootstock/assetlist.json @@ -0,0 +1,80 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "rootstock", + "assets": [ + { + "description": "Pegged 1:1 to Bitcoin, RBTC allows you to interact with DeFi protocols and dApps on the Rootstock network. Use RBTC for minting, swaps, gas fees, and more.", + "extended_description": "The longest running and leading Bitcoin sidechain. Deploy dApps and EVM-compatible smart contracts secured by the world’s most accessible, decentralized and secure blockchain.", + "denom_units": [ + { + "denom": "sat", + "exponent": 0 + }, + { + "denom": "rbtc", + "exponent": 18 + } + ], + "type_asset": "evm-base", + "base": "sat", + "display": "rbtc", + "symbol": "RBTC", + "name": "Rootstock Smart Bitcoin", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "bitcoin", + "base_denom": "sat" + }, + "provider": "Rootstock" + } + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.png", + "theme": { + "circle": false, + "primary_color_hex": "#FF9931", + "background_color_hex": "#00000000" + } + } + ], + "coingecko_id": "rootstock", + "socials": { + "website": "https://rootstock.io/", + "twitter": "https://twitter.com/rootstock_io" + } + }, + { + "description": "The wrapped version of RBTC.", + "denom_units": [ + { + "denom": "0x542FDA317318eBf1d3DeAF76E0B632741a7e677d", + "exponent": 0 + }, + { + "denom": "wrbtc", + "exponent": 18 + } + ], + "type_asset": "erc20", + "name": "Wrapped BTC", + "symbol": "WRBTC", + "display": "wrbtc", + "base": "0x542FDA317318eBf1d3DeAF76E0B632741a7e677d", + "address": "0x542FDA317318eBf1d3DeAF76E0B632741a7e677d", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "rootstock", + "base_denom": "sat" + }, + "provider": "Rootstock" + } + ] + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/rootstock/chain.json b/_non-cosmos/rootstock/chain.json new file mode 100644 index 0000000000..a246b11488 --- /dev/null +++ b/_non-cosmos/rootstock/chain.json @@ -0,0 +1,48 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "rootstock", + "status": "live", + "website": "https://rootstock.io/", + "network_type": "mainnet", + "pretty_name": "Rootstock", + "chain_type": "eip155", + "chain_id": "30", + "slip44": 137, + "fees": { + "fee_tokens": [ + { + "denom": "sat" + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "sat" + } + ] + }, + "description": "The longest running and leading Bitcoin sidechain. Deploy dApps and EVM-compatible smart contracts secured by the world’s most accessible, decentralized and secure blockchain.", + "explorers": [ + { + "kind": "Rootstock Explorer", + "url": "https://explorer.rootstock.io/", + "tx_page": "https://explorer.rootstock.io/tx/${txHash}" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "rootstock", + "base_denom": "sat" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.png", + "theme": { + "circle": false, + "primary_color_hex": "#FF9931", + "background_color_hex": "#00000000" + } + } + ] +} diff --git a/_non-cosmos/rootstock/images/rbtc.png b/_non-cosmos/rootstock/images/rbtc.png new file mode 100644 index 0000000000..ad6f679e85 Binary files /dev/null and b/_non-cosmos/rootstock/images/rbtc.png differ diff --git a/_non-cosmos/rootstock/images/rbtc.svg b/_non-cosmos/rootstock/images/rbtc.svg new file mode 100644 index 0000000000..8412fec1c9 --- /dev/null +++ b/_non-cosmos/rootstock/images/rbtc.svg @@ -0,0 +1,28 @@ + + + + + + + \ No newline at end of file diff --git a/_non-cosmos/solana/assetlist.json b/_non-cosmos/solana/assetlist.json index fd3d978585..2fdf3bae4b 100644 --- a/_non-cosmos/solana/assetlist.json +++ b/_non-cosmos/solana/assetlist.json @@ -21,12 +21,25 @@ "display": "SOL", "symbol": "SOL", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg" }, "coingecko_id": "solana", "images": [ { - "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" + } } ] }, @@ -58,7 +71,8 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg" }, "coingecko_id": "wrapped-solana", "images": [ @@ -67,7 +81,12 @@ "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" + } } ] }, @@ -160,6 +179,7 @@ } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "images": [ @@ -168,7 +188,12 @@ "chain_name": "ethereum", "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } } ] }, @@ -700,6 +725,54 @@ "pumpdotfun", "pepe" ] + }, + { + "description": "Unicorn", + "type_asset": "erc20", + "address": "UwU8RVXB69Y6Dcju6cN2Qef6fykkq6UUNpB15rZku6Z", + "denom_units": [ + { + "denom": "UwU8RVXB69Y6Dcju6cN2Qef6fykkq6UUNpB15rZku6Z", + "exponent": 0 + }, + { + "denom": "unicorn", + "exponent": 6 + } + ], + "base": "UwU8RVXB69Y6Dcju6cN2Qef6fykkq6UUNpB15rZku6Z", + "name": "Unicorn", + "display": "unicorn", + "symbol": "UWU", + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "unicorn", + "base_denom": "uwunicorn" + }, + "provider": "Unicorn" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "unicorn", + "base_denom": "uwunicorn" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unicorn/images/uwu.png", + "theme": { + "primary_color_hex": "#D44CE6" + } + } + ], + "socials": { + "website": "https://unicorn.meme/", + "twitter": "https://x.com/unicornandmemes" + }, + "keywords": [ + "meme" + ] } ] } \ No newline at end of file diff --git a/_non-cosmos/solana/chain.json b/_non-cosmos/solana/chain.json new file mode 100644 index 0000000000..f97b178dc4 --- /dev/null +++ b/_non-cosmos/solana/chain.json @@ -0,0 +1,41 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "solana", + "chain_type": "solana", + "status": "live", + "website": "https://solana.com/", + "network_type": "mainnet", + "pretty_name": "Solana Mainnet Beta", + "slip44": 501, + "fees": { + "fee_tokens": [ + { + "denom": "Lamport", + "fixed_min_gas_price": 0 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "Lamport" + } + ] + }, + "explorers": [ + { + "kind": "Solana Explorer", + "url": "https://explorer.solana.com/", + "tx_page": "https://explorer.solana.com/tx/${txHash}" + } + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg", + "theme": { + "circle": false, + "background_color_hex": "#00000000" + } + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/solana/images/sol_circle.png b/_non-cosmos/solana/images/sol_circle.png new file mode 100644 index 0000000000..fb19db01ef Binary files /dev/null and b/_non-cosmos/solana/images/sol_circle.png differ diff --git a/_non-cosmos/solana/images/sol_circle.svg b/_non-cosmos/solana/images/sol_circle.svg new file mode 100644 index 0000000000..f6b74321d3 --- /dev/null +++ b/_non-cosmos/solana/images/sol_circle.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/_non-cosmos/statemine/assetlist.json b/_non-cosmos/statemine/assetlist.json index 68784c3867..0f69abc83f 100644 --- a/_non-cosmos/statemine/assetlist.json +++ b/_non-cosmos/statemine/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "statemine", "assets": [ { diff --git a/_non-cosmos/stellar/assetlist.json b/_non-cosmos/stellar/assetlist.json index 5aaca02a77..ae2fd4f9ce 100644 --- a/_non-cosmos/stellar/assetlist.json +++ b/_non-cosmos/stellar/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "stellar", "assets": [ { diff --git a/_non-cosmos/sui/assetlist.json b/_non-cosmos/sui/assetlist.json index 3a30946562..e802bfe240 100644 --- a/_non-cosmos/sui/assetlist.json +++ b/_non-cosmos/sui/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "sui", "assets": [ { diff --git a/_non-cosmos/tinkernet/assetlist.json b/_non-cosmos/tinkernet/assetlist.json index 6c6a05325c..20b6a2e40e 100644 --- a/_non-cosmos/tinkernet/assetlist.json +++ b/_non-cosmos/tinkernet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "tinkernet", "assets": [ { @@ -19,6 +19,7 @@ "exponent": 12 } ], + "type_asset": "substrate", "base": "Planck", "name": "Tinkernet", "display": "TNKR", diff --git a/_non-cosmos/ton/assetlist.json b/_non-cosmos/ton/assetlist.json new file mode 100644 index 0000000000..3522e41a1d --- /dev/null +++ b/_non-cosmos/ton/assetlist.json @@ -0,0 +1,44 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "ton", + "assets": [ + { + "description": "Toncoin ($TON) is the native cryptocurrency of the TON (The Open Network) blockchain.", + "extended_description": "TON (The Open Network) is a decentralized layer-1 blockchain designed for scalability, speed, and efficiency. It was originally conceived by the creators of Telegram but was later handed over to an open-source community to maintain and expand.", + "denom_units": [ + { + "denom": "nanoton", + "exponent": 0, + "aliases": [ + "nanoTon" + ] + }, + { + "denom": "ton", + "exponent": 9 + } + ], + "type_asset": "unknown", + "base": "nanoton", + "name": "Toncoin", + "display": "ton", + "symbol": "TON", + "coingecko_id": "the-open-network", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png", + "theme": { + "circle": true, + "primary_color_hex": "#0088CC", + "background_color_hex": "#0088CC" + } + } + ], + "socials": { + "website": "https://ton.tg/", + "twitter": "https://x.com/ton_blockchain" + } + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/ton/chain.json b/_non-cosmos/ton/chain.json new file mode 100644 index 0000000000..9feb3df02b --- /dev/null +++ b/_non-cosmos/ton/chain.json @@ -0,0 +1,47 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "ton", + "chain_type": "unknown", + "status": "live", + "website": "https://ton.tg/", + "network_type": "mainnet", + "pretty_name": "TON (The Open Network)", + "slip44": 607, + "fees": { + "fee_tokens": [ + { + "denom": "nanoton", + "fixed_min_gas_price": 0 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "nanoton" + } + ] + }, + "explorers": [ + { + "kind": "Tonscan", + "url": "https://tonscan.org/", + "tx_page": "https://tonscan.org/tx/${txHash}" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ton", + "base_denom": "nanoton" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png", + "theme": { + "circle": true, + "primary_color_hex": "#0088CC", + "background_color_hex": "#0088CC" + } + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/ton/images/ton.png b/_non-cosmos/ton/images/ton.png new file mode 100644 index 0000000000..5efcc0a3af Binary files /dev/null and b/_non-cosmos/ton/images/ton.png differ diff --git a/_non-cosmos/ton/images/ton.svg b/_non-cosmos/ton/images/ton.svg new file mode 100644 index 0000000000..b90a77b874 --- /dev/null +++ b/_non-cosmos/ton/images/ton.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/_non-cosmos/tron/assetlist.json b/_non-cosmos/tron/assetlist.json new file mode 100644 index 0000000000..86ebcc24cd --- /dev/null +++ b/_non-cosmos/tron/assetlist.json @@ -0,0 +1,99 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "tron", + "assets": [ + { + "description": "TRONIX is the mainnet native token of the TRON Protocol issued by TRON DAO, known as TRX.", + "extended_description": "Tron is a blockchain-based decentralized operating system much like Ethereum that aims to advance the decentralization of the Internet and its infrastructure. At its core, Tron is a smart contract platform that offers high throughput, high scalability, and high availability for all Decentralized Applications (DApps) in the TRON ecosystem. The Tron blockchain is built around the usability of its native token, Tronix (TRX).", + "denom_units": [ + { + "denom": "sun", + "exponent": 0 + }, + { + "denom": "trx", + "exponent": 6 + } + ], + "type_asset": "unknown", + "base": "sun", + "name": "Tronix", + "display": "trx", + "symbol": "TRX", + "coingecko_id": "tron", + "images": [ + { + "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", + "background_color_hex": "#FF060A" + } + } + ], + "socials": { + "website": "https://tron.network/", + "twitter": "https://x.com/trondao" + } + }, + { + "description": "USDT is the official stablecoin issued by Tether on the TRON network.", + "address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t", + "denom_units": [ + { + "denom": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "type_asset": "erc20", + "base": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t", + "name": "Tether USD", + "display": "usdt", + "symbol": "USDT", + "coingecko_id": "tether", + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "provider": "Tether" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "theme": { + "circle": true, + "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" + } + } + ], + "socials": { + "website": "https://tether.to/", + "twitter": "https://x.com/Tether_to" + } + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/tron/chain.json b/_non-cosmos/tron/chain.json new file mode 100644 index 0000000000..42738d7dfb --- /dev/null +++ b/_non-cosmos/tron/chain.json @@ -0,0 +1,47 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "tron", + "chain_type": "unknown", + "status": "live", + "website": "https://tron.network/", + "network_type": "mainnet", + "pretty_name": "Tron", + "slip44": 195, + "fees": { + "fee_tokens": [ + { + "denom": "sun", + "fixed_min_gas_price": 0 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "sun" + } + ] + }, + "explorers": [ + { + "kind": "TRONSCAN", + "url": "https://tronscan.org/", + "tx_page": "https://tronscan.org/#/transaction//${txHash}" + } + ], + "images": [ + { + "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", + "background_color_hex": "#FF060A" + } + } + ] +} \ No newline at end of file diff --git a/_non-cosmos/tron/images/trx.png b/_non-cosmos/tron/images/trx.png new file mode 100644 index 0000000000..132d2baa32 Binary files /dev/null and b/_non-cosmos/tron/images/trx.png differ diff --git a/_non-cosmos/tron/images/trx.svg b/_non-cosmos/tron/images/trx.svg new file mode 100644 index 0000000000..c6a5c21b50 --- /dev/null +++ b/_non-cosmos/tron/images/trx.svg @@ -0,0 +1,4 @@ + + + + diff --git a/_non-cosmos/xrpl/assetlist.json b/_non-cosmos/xrpl/assetlist.json index c3c730cd57..e8dcf6521a 100644 --- a/_non-cosmos/xrpl/assetlist.json +++ b/_non-cosmos/xrpl/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "xrpl", "assets": [ { diff --git a/_non-cosmos/zilliqa/assetlist.json b/_non-cosmos/zilliqa/assetlist.json index a07798b036..65b5efeac5 100644 --- a/_non-cosmos/zilliqa/assetlist.json +++ b/_non-cosmos/zilliqa/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "zilliqa", "assets": [ { diff --git a/_scripts/remove-stale-endpoints.py b/_scripts/remove-stale-endpoints.py index e1c2db2b74..1153e751d8 100755 --- a/_scripts/remove-stale-endpoints.py +++ b/_scripts/remove-stale-endpoints.py @@ -32,7 +32,7 @@ thirty_days_ago = epoch_time - (60 * 60 * 24 * 10 * 1_000) TIMEOUT_SECONDS = 10 - + # endpoint_type == 'rpc' or 'rest' def remove_endpoint(folder: str, endpoint_url, endpoint_type: str, iter_num: int = 0): diff --git a/_template/assetlist.json b/_template/assetlist.json index 4aa6fd2aec..a6db4f6c4b 100644 --- a/_template/assetlist.json +++ b/_template/assetlist.json @@ -14,6 +14,7 @@ "exponent": 6 } ], + "type_asset": "sdk.coin", "base": "uexample", "name": "Example", "display": "example/6", diff --git a/_template/chain.json b/_template/chain.json index e7913d34e7..9e08308082 100644 --- a/_template/chain.json +++ b/_template/chain.json @@ -5,6 +5,7 @@ "website": "https://examplechain.io/", "network_type": "mainnet", "pretty_name": "Example Chain", + "chain_type": "cosmos", "chain_id": "example-1", "bech32_prefix": "xmpl", "daemon_name": "exampled", @@ -36,9 +37,34 @@ "v2.0.2", "v2.0.0" ], - "cosmos_sdk_version": "0.50", - "cosmwasm_enabled": true, - "cosmwasm_path": "$HOME/.example/data/wasm", + "consensus": { + "type": "cometbft", + "version": "osmosis-labs/cometbft v0.37.4-v25-osmo-2" + }, + "language": { + "type": "go", + "version": "1.21.4" + }, + "sdk": { + "type": "cosmos", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-v25-osmo-1" + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/osmosis-labs/wasmd", + "tag": "v0.45.0-osmo", + "path": "$HOME/.example/data/wasm", + "enabled": true + }, "binaries": { "linux/amd64": "OPTIONAL, REMOVE IF NOT NEEDED" }, @@ -52,9 +78,6 @@ "compatible_versions": [ "v1.0.0" ], - "cosmos_sdk_version": "0.50", - "cosmwasm_enabled": true, - "cosmwasm_path": "$HOME/.example/data/wasm", "binaries": { "linux/amd64": "OPTIONAL, REMOVE IF NOT NEEDED" }, @@ -67,9 +90,34 @@ "v2.0.2", "v2.0.0" ], - "cosmos_sdk_version": "0.50", - "cosmwasm_enabled": true, - "cosmwasm_path": "$HOME/.example/data/wasm", + "consensus": { + "type": "cometbft", + "version": "osmosis-labs/cometbft v0.37.4-v25-osmo-2" + }, + "language": { + "type": "go", + "version": "1.21.4" + }, + "sdk": { + "type": "cosmos", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-v25-osmo-1" + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/osmosis-labs/wasmd", + "tag": "v0.45.0-osmo", + "path": "$HOME/.example/data/wasm", + "enabled": true + }, "binaries": { "linux/amd64": "OPTIONAL, REMOVE IF NOT NEEDED" }, diff --git a/acrechain/assetlist.json b/acrechain/assetlist.json index 9a14cce604..3b79e62934 100644 --- a/acrechain/assetlist.json +++ b/acrechain/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://arable.finance/", "twitter": "https://twitter.com/ArableProtocol" - } + }, + "type_asset": "sdk.coin" }, { "description": "Overcollateralized stable coin for Arable derivatives v1", @@ -70,7 +71,8 @@ "socials": { "website": "https://arable.finance/", "twitter": "https://twitter.com/ArableProtocol" - } + }, + "type_asset": "sdk.coin" }, { "description": "Ciento Exchange Token", @@ -100,7 +102,8 @@ "primary_color_hex": "#ecc53b" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/acrechain/chain.json b/acrechain/chain.json index 9e6710c407..9948aae506 100644 --- a/acrechain/chain.json +++ b/acrechain/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://arable.finance/", "pretty_name": "Acrechain", + "chain_type": "cosmos", "chain_id": "acre_9052-1", "bech32_prefix": "acre", "node_home": "$HOME/.acred", @@ -37,7 +38,6 @@ "compatible_versions": [ "v1.1.1" ], - "binaries": {}, "genesis": { "genesis_url": "https://raw.githubusercontent.com/ArableProtocol/acrechain/main/networks/mainnet/acre_9052-1/genesis.json" }, @@ -47,8 +47,7 @@ "recommended_version": "v1.1.1", "compatible_versions": [ "v1.1.1" - ], - "binaries": {} + ] } ] }, diff --git a/agoric/assetlist.json b/agoric/assetlist.json index f15d4c08a9..54c53250aa 100644 --- a/agoric/assetlist.json +++ b/agoric/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://agoric.com/", "twitter": "https://twitter.com/agoric" - } + }, + "type_asset": "sdk.coin" }, { "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", @@ -67,7 +68,8 @@ "primary_color_hex": "#d485e2" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/agoric/chain.json b/agoric/chain.json index d83c804fa7..baa1c64e12 100644 --- a/agoric/chain.json +++ b/agoric/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://agoric.com/", "pretty_name": "Agoric", + "chain_type": "cosmos", "chain_id": "agoric-3", "bech32_prefix": "agoric", "daemon_name": "agd", @@ -38,13 +39,40 @@ }, "codebase": { "git_repo": "https://github.com/Agoric/agoric-sdk/", - "recommended_version": "agoric-upgrade-15", - "go_version": "1.20.2", - "compatible_versions": [ - "agoric-upgrade-15" - ], "genesis": { "genesis_url": "https://main.agoric.net/genesis.json" + }, + "recommended_version": "agoric-upgrade-16", + "compatible_versions": [ + "agoric-upgrade-16" + ], + "cosmos_sdk_version": "agoric-labs/cosmos-sdk v0.46.16-alpha.agoric.2.4", + "consensus": { + "type": "cometbft", + "version": "v0.34.30", + "repo": "https://github.com/agoric-labs/cometbft", + "tag": "v0.34.30-alpha.agoric.1" + }, + "cosmwasm_enabled": false, + "language": { + "type": "go", + "version": "1.20.2" + }, + "sdk": { + "type": "cosmos", + "repo": "https://github.com/agoric-labs/cosmos-sdk", + "version": "v0.46.16", + "tag": "v0.46.16-alpha.agoric.2.4" + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "enabled": false } }, "logo_URIs": { diff --git a/agoric/versions.json b/agoric/versions.json index b39b201dac..a8148f0771 100644 --- a/agoric/versions.json +++ b/agoric/versions.json @@ -14,7 +14,47 @@ "tag": "agoric-upgrade-15", "height": 15008615, "proposal": 74, - "go_version": "1.20.2" + "next_version_name": "agoric-upgrade-16", + "language": { + "type": "go", + "version": "1.20.2" + } + }, + { + "name": "agoric-upgrade-16", + "tag": "agoric-upgrade-16", + "proposal": 75, + "height": 15959899, + "recommended_version": "agoric-upgrade-16", + "compatible_versions": [ + "agoric-upgrade-16" + ], + "cosmos_sdk_version": "agoric-labs/cosmos-sdk v0.46.16-alpha.agoric.2.4", + "consensus": { + "type": "cometbft", + "version": "v0.34.30", + "repo": "https://github.com/agoric-labs/cometbft", + "tag": "v0.34.30-alpha.agoric.1" + }, + "cosmwasm_enabled": false, + "previous_version_name": "agoric-upgrade-15", + "sdk": { + "type": "cosmos", + "version": "v0.46.16", + "repo": "https://github.com/agoric-labs/cosmos-sdk", + "tag": "v0.46.16-alpha.agoric.2.4" + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "language": { + "type": "go", + "version": "1.20.2" + } } ] -} +} \ No newline at end of file diff --git a/aioz/assetlist.json b/aioz/assetlist.json index 8039297752..87176f8c2f 100644 --- a/aioz/assetlist.json +++ b/aioz/assetlist.json @@ -39,7 +39,8 @@ "socials": { "website": "https://aioz.network/", "twitter": "https://twitter.com/AIOZNetwork" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/aioz/chain.json b/aioz/chain.json index 8b07ce7fb9..6fe76b9d6e 100644 --- a/aioz/chain.json +++ b/aioz/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://aioz.network/", "pretty_name": "AIOZ Network", + "chain_type": "cosmos", "chain_id": "aioz_168-1", "bech32_prefix": "aioz", "daemon_name": "aiozd", diff --git a/akash/assetlist.json b/akash/assetlist.json index 74511626c5..7f6229c871 100644 --- a/akash/assetlist.json +++ b/akash/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://akash.network/", "twitter": "https://twitter.com/akashnet_" - } + }, + "type_asset": "sdk.coin" }, { "description": "Tether USDt on Akash", @@ -61,11 +62,11 @@ "counterparty": { "chain_name": "kava", "base_denom": "erc20/tether/usdt", - "channel_id": "channel-130" + "channel_id": "channel-5" }, "chain": { - "channel_id": "channel-2", - "path": "transfer/channel-2/erc20/tether/usdt" + "channel_id": "channel-37", + "path": "transfer/channel-37/erc20/tether/usdt" } } ], diff --git a/akash/chain.json b/akash/chain.json index 3d4580aab4..497b4050ef 100644 --- a/akash/chain.json +++ b/akash/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://akash.network/", "pretty_name": "Akash", + "chain_type": "cosmos", "chain_id": "akashnet-2", "bech32_prefix": "akash", "daemon_name": "akash", @@ -39,10 +40,11 @@ "linux/arm64": "https://github.com/akash-network/node/releases/download/v0.36.0/akash_linux_arm64.zip" }, "cosmos_sdk_version": "v0.45.16", - "ibc_go_version": "v4.6.0", "consensus": { "type": "cometbft", - "version": "akash-network/cometbft v0.34.27-akash" + "version": "v0.34.27", + "repo": "https://github.com/akash-network/cometbft", + "tag": "v0.34.27-akash" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/akash-network/net/master/mainnet/genesis.json" @@ -128,12 +130,21 @@ "linux/arm64": "https://github.com/akash-network/node/releases/download/v0.32.1238/akash_linux_arm64.zip" }, "cosmos_sdk_version": "v0.45.16", - "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", - "version": "akash-network/cometbft v0.34.27-akash" + "version": "v0.34.27", + "repo": "https://github.com/akash-network/cometbft", + "tag": "v0.34.27-akash" }, - "next_version_name": "v0.34.0" + "next_version_name": "v0.34.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + } }, { "name": "v0.34.0", @@ -148,12 +159,21 @@ "linux/arm64": "https://github.com/akash-network/node/releases/download/v0.34.1/akash_linux_arm64.zip" }, "cosmos_sdk_version": "v0.45.16", - "ibc_go_version": "v4.6.0", "consensus": { "type": "cometbft", - "version": "akash-network/cometbft v0.34.27-akash" + "version": "v0.34.27", + "repo": "https://github.com/akash-network/cometbft", + "tag": "v0.34.27-akash" + }, + "next_version_name": "v0.36.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" }, - "next_version_name": "v0.36.0" + "ibc": { + "type": "go", + "version": "v4.6.0" + } }, { "name": "v0.36.0", @@ -168,13 +188,30 @@ "linux/arm64": "https://github.com/akash-network/node/releases/download/v0.36.0/akash_linux_arm64.zip" }, "cosmos_sdk_version": "v0.45.16", - "ibc_go_version": "v4.6.0", "consensus": { "type": "cometbft", - "version": "akash-network/cometbft v0.34.27-akash" + "version": "v0.34.27", + "repo": "https://github.com/akash-network/cometbft", + "tag": "v0.34.27-akash" + }, + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.6.0" } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.6.0" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", @@ -279,7 +316,7 @@ "provider": "ecostake" }, { - "address": "https://akash-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/akash", "provider": "Lavender.Five Nodes" }, { @@ -349,7 +386,7 @@ "provider": "ecostake" }, { - "address": "https://akash-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/akash", "provider": "Lavender.Five Nodes" }, { @@ -415,7 +452,7 @@ "provider": "Notional" }, { - "address": "akash-grpc.lavenderfive.com:443", + "address": "akash.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/akiro/assetlist.json b/akiro/assetlist.json index 7baeae25a1..2478889de9 100644 --- a/akiro/assetlist.json +++ b/akiro/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#f7f0e1" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/akiro/chain.json b/akiro/chain.json index 6ab03f5e23..4145817f04 100644 --- a/akiro/chain.json +++ b/akiro/chain.json @@ -4,6 +4,7 @@ "status": "killed", "network_type": "mainnet", "pretty_name": "Akiro", + "chain_type": "cosmos", "chain_id": "akiro-1", "bech32_prefix": "akiro", "daemon_name": "akirod", @@ -47,10 +48,17 @@ "v0.2" ], "cosmos_sdk_version": "v0.45.4", - "ibc_go_version": "v3.0.0", "consensus": { "type": "tendermint", "version": "v0.34.19" + }, + "sdk": { + "type": "cosmos", + "version": "v0.45.4" + }, + "ibc": { + "type": "go", + "version": "v3.0.0" } } ] diff --git a/althea/assetlist.json b/althea/assetlist.json index 70e839c2f4..6bf88415d6 100644 --- a/althea/assetlist.json +++ b/althea/assetlist.json @@ -28,7 +28,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/althea/images/althea.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/althea/chain.json b/althea/chain.json index 43c990e0d2..21364d13a1 100644 --- a/althea/chain.json +++ b/althea/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://althea.net/", "pretty_name": "Althea", + "chain_type": "cosmos", "chain_id": "althea_258432-1", "bech32_prefix": "althea", "daemon_name": "althea", @@ -75,7 +76,7 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "https://althea-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/althea", "provider": "Lavender.Five Nodes 🐝" } ], @@ -89,13 +90,13 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "https://althea-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/althea", "provider": "Lavender.Five Nodes 🐝" } ], "grpc": [ { - "address": "https://althea-grpc.lavenderfive.com:443", + "address": "althea.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" } ] diff --git a/andromeda/assetlist.json b/andromeda/assetlist.json index 54eade1571..f880669f95 100644 --- a/andromeda/assetlist.json +++ b/andromeda/assetlist.json @@ -29,7 +29,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/andromeda/chain.json b/andromeda/chain.json index 70c8140b13..b2d236a069 100644 --- a/andromeda/chain.json +++ b/andromeda/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "andromeda", + "chain_type": "cosmos", "chain_id": "andromeda-1", "pre_fork_chain_name": "andromeda1", "pretty_name": "Andromeda", @@ -40,7 +41,6 @@ "v0.1.1-patch" ], "cosmos_sdk_version": "v0.47.8", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.4" @@ -60,14 +60,25 @@ "andromeda-1-v0.1.0" ], "cosmos_sdk_version": "v0.47.5", - "ibc_go_version": "v7.3.0", "consensus": { "type": "cometbft", "version": "v0.37.2" }, "cosmwasm_version": "v0.41.0", "cosmwasm_enabled": true, - "next_version_name": "v0.1.1" + "next_version_name": "v0.1.1", + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "cosmwasm": { + "version": "v0.41.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } }, { "name": "v0.1.1", @@ -79,15 +90,38 @@ "v0.1.1-patch" ], "cosmos_sdk_version": "v0.47.8", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.4" }, "cosmwasm_version": "v0.41.0", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "v0.47.8" + }, + "cosmwasm": { + "version": "v0.41.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.8" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + }, + "cosmwasm": { + "version": "v0.41.0", + "enabled": true + } }, "peers": { "seeds": [ @@ -105,6 +139,11 @@ "id": "400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc", "address": "andromeda.rpc.kjnodes.com:14759", "provider": "kjnodes.com πŸ¦„" + }, + { + "id": "258f523c96efde50d5fe0a9faeea8a3e83be22ca", + "address": "seed.andromeda-1.andromeda.aviaone.com:10280", + "provider": "AviaOne 🟒" } ], "persistent_peers": [ @@ -143,15 +182,10 @@ "address": "andromeda-mainnet-seed.autostake.com:27126", "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, - { - "id": "28876b3094518bef97a1250ef641c26b7d4a658d", - "address": "138.201.21.197:39656", - "provider": "StakeTown" - }, { "id": "1652b0e25ac00834292624db10fef408155686e5", "address": "peer-comdex.blockval.io:39656", - "provider": "StakeTown" + "provider": "blockval" } ] }, @@ -159,7 +193,7 @@ "rpc": [ { "address": "https://rpc.andromeda-1.andromeda.aviaone.com", - "provider": "AVIAONE" + "provider": "AviaOne 🟒" }, { "address": "https://andromeda.rpc.kjnodes.com", @@ -174,17 +208,13 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "https://andromeda-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/andromeda", "provider": "Lavender.Five Nodes 🐝" }, { "address": "https://andromeda-mainnet-rpc.autostake.com:443", "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, - { - "address": "https://andromeda-rpc.stake-town.com:443", - "provider": "StakeTown" - }, { "address": "https://andromeda-rpc.stakerhouse.com:443", "provider": "StakerHouse" @@ -216,8 +246,8 @@ ], "rest": [ { - "address": "https://api.andromeda-1.andromeda.aviaone.com/", - "provider": "AVIAONE" + "address": "https://api.andromeda-1.andromeda.aviaone.com", + "provider": "AviaOne 🟒" }, { "address": "https://andromeda.api.kjnodes.com", @@ -232,17 +262,13 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "https://andromeda-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/andromeda", "provider": "Lavender.Five Nodes 🐝" }, { "address": "https://andromeda-mainnet-lcd.autostake.com:443", "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, - { - "address": "https://andromeda-api.stake-town.com:443", - "provider": "StakeTown" - }, { "address": "https://andromeda-rest.stakerhouse.com:443", "provider": "StakerHouse" @@ -274,12 +300,12 @@ ], "grpc": [ { - "address": "andromeda-grpc.lavenderfive.com:443", + "address": "andromeda.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { - "address": "https://grpc.andromeda-1.andromeda.aviaone.com:9094", - "provider": "AVIAONE" + "address": "https://grpc.andromeda-1.andromeda.aviaone.com:9108", + "provider": "AviaOne 🟒" }, { "address": "andromeda.grpc.kjnodes.com:443", @@ -297,10 +323,6 @@ "address": "http://andromedad.grpc.t.stavr.tech:132", "provider": "πŸ”₯STAVRπŸ”₯" }, - { - "address": "andromeda-grpc.stake-town.com:443", - "provider": "StakeTown" - }, { "address": "andromeda-grpc.stakerhouse.com:443", "provider": "StakerHouse" @@ -350,6 +372,11 @@ "kind": "ping.pub", "url": "https://ping.pub/andromeda", "tx_page": "https://ping.pub/andromeda/tx/${txHash}" + }, + { + "kind": "AviaOne Explorer 🟒", + "url": "https://mainnet.explorer.aviaone.com/andromeda", + "tx_page": "https://mainnet.explorer.aviaone.com/andromeda/tx/${txHash}" } ], "logo_URIs": { diff --git a/andromeda1/assetlist.json b/andromeda1/assetlist.json index 54eade1571..f880669f95 100644 --- a/andromeda1/assetlist.json +++ b/andromeda1/assetlist.json @@ -29,7 +29,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/andromeda1/chain.json b/andromeda1/chain.json index a354537166..27d736812d 100644 --- a/andromeda1/chain.json +++ b/andromeda1/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "andromeda1", + "chain_type": "cosmos", "chain_id": "andromeda-1", "pretty_name": "Andromeda", "status": "killed", @@ -115,7 +116,7 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "https://andromeda-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/andromeda", "provider": "Lavender.Five Nodes 🐝" }, { @@ -161,7 +162,7 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "https://andromeda-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/andromeda", "provider": "Lavender.Five Nodes 🐝" }, { @@ -191,7 +192,7 @@ ], "grpc": [ { - "address": "andromeda-grpc.lavenderfive.com:443", + "address": "andromeda.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/archway/assetlist.json b/archway/assetlist.json index 29e9af988e..d7d08cd07b 100644 --- a/archway/assetlist.json +++ b/archway/assetlist.json @@ -24,14 +24,14 @@ "display": "arch", "symbol": "ARCH", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg" }, "coingecko_id": "archway", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg", "theme": { "primary_color_hex": "#fc4c04" } @@ -40,7 +40,78 @@ "socials": { "website": "https://archway.io/", "twitter": "https://twitter.com/archwayHQ" - } + }, + "type_asset": "sdk.coin" + }, + { + "description": "BackBone Labs Liquid Staked Archway", + "type_asset": "cw20", + "address": "archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg", + "denom_units": [ + { + "denom": "archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg", + "exponent": 0 + }, + { + "denom": "bARCH", + "exponent": 18 + } + ], + "base": "archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg", + "name": "BackBone Labs Liquid Staked Archway", + "display": "bARCH", + "symbol": "bARCH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/barch.png" + }, + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "archway", + "base_denom": "aarch" + }, + "provider": "BackBoneLabs" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/barch.png", + "theme": { + "primary_color_hex": "#040404" + } + } + ] + }, + { + "description": "Architects Token", + "type_asset": "cw20", + "address": "archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu", + "denom_units": [ + { + "denom": "archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu", + "exponent": 0 + }, + { + "denom": "TOKN", + "exponent": 18 + } + ], + "base": "archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu", + "name": "Architects Token", + "display": "TOKN", + "symbol": "TOKN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/tokn.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/tokn.png", + "theme": { + "primary_color_hex": "#5c84cc" + } + } + ] }, { "description": "ERIS liquid staked ARCH", @@ -76,7 +147,7 @@ "description": "The first memecoin on osmosis.", "denom_units": [ { - "denom": "ibc/7CB33A66F90533ED1E168CB3251253C719CF4B04FF1290AFD795F14CA1D67278", + "denom": "ibc/D2BCFE34F35AF2968C8E1F84557D8A2058BB56F739EB553206EFC2AD8C6EDAF0", "exponent": 0 }, { @@ -85,7 +156,7 @@ } ], "type_asset": "ics20", - "base": "ibc/7CB33A66F90533ED1E168CB3251253C719CF4B04FF1290AFD795F14CA1D67278", + "base": "ibc/D2BCFE34F35AF2968C8E1F84557D8A2058BB56F739EB553206EFC2AD8C6EDAF0", "name": "Wosmo", "display": "WOSMO", "symbol": "WOSMO", @@ -154,8 +225,8 @@ } ], "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": [ { @@ -163,8 +234,8 @@ "chain_name": "vidulum", "base_denom": "uvdl" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg", + "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" } @@ -203,6 +274,143 @@ } ], "coingecko_id": "astrovault" + }, + { + "description": "Wrapped ARCH", + "type_asset": "cw20", + "address": "archway1msc3fa4e2mh73y760qmjd3wfkzr98nl26f36xgt2xnhuw6ay3scs42zeue", + "denom_units": [ + { + "denom": "cw20:archway1msc3fa4e2mh73y760qmjd3wfkzr98nl26f36xgt2xnhuw6ay3scs42zeue", + "exponent": 0 + }, + { + "denom": "wARCH", + "exponent": 18 + } + ], + "base": "cw20:archway1msc3fa4e2mh73y760qmjd3wfkzr98nl26f36xgt2xnhuw6ay3scs42zeue", + "name": "Wrapped ARCH", + "display": "wARCH", + "symbol": "wARCH", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "archway", + "base_denom": "aarch" + }, + "provider": "Archway" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wArch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wArch.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wArch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wArch.svg", + "theme": { + "primary_color_hex": "#000000" + } + } + ] + }, + { + "description": "Circle's USDC Noble on Archway ", + "denom_units": [ + { + "denom": "ibc/43897B9739BD63E3A08A88191999C632E052724AB96BD4C74AE31375C991F48D", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/43897B9739BD63E3A08A88191999C632E052724AB96BD4C74AE31375C991F48D", + "name": "USDC (Noble)", + "display": "usdc", + "symbol": "USDC", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "noble", + "base_denom": "uusdc", + "channel_id": "channel-12" + }, + "chain": { + "channel_id": "channel-29", + "path": "transfer/channel-29/uusdc" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } + } + ] + }, + { + "description": "Wrapped USDC (Noble)", + "type_asset": "cw20", + "address": "archway1gaf9nw7n8v5lpjz9caxjpps006kxfcrzcuc8y5qp4clslhven2ns2g0ule", + "denom_units": [ + { + "denom": "cw20:archway1gaf9nw7n8v5lpjz9caxjpps006kxfcrzcuc8y5qp4clslhven2ns2g0ule", + "exponent": 0 + }, + { + "denom": "wUSDC", + "exponent": 6 + } + ], + "base": "cw20:archway1gaf9nw7n8v5lpjz9caxjpps006kxfcrzcuc8y5qp4clslhven2ns2g0ule", + "name": "Wrapped USDC", + "display": "wUSDC", + "symbol": "wUSDC", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "archway", + "base_denom": "ibc/43897B9739BD63E3A08A88191999C632E052724AB96BD4C74AE31375C991F48D" + }, + "provider": "Archway" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wUsdc-noble.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wUsdc-noble.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wUsdc-noble.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wUsdc-noble.svg", + "theme": { + "primary_color_hex": "#000000" + } + } + ] } ] } \ No newline at end of file diff --git a/archway/chain.json b/archway/chain.json index c0f703cda5..c901621f32 100644 --- a/archway/chain.json +++ b/archway/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://archway.io/", "pretty_name": "Archway", + "chain_type": "cosmos", "chain_id": "archway-1", "bech32_prefix": "archway", "daemon_name": "archwayd", @@ -36,19 +37,17 @@ }, "codebase": { "git_repo": "https://github.com/archway-network/archway", - "recommended_version": "v7.0.1", + "recommended_version": "v8.0.0", "compatible_versions": [ - "v7.0.0", - "v7.0.1" + "v8.0.0" ], "binaries": { - "linux/amd64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_linux_amd64", - "linux/arm64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_linux_arm64", - "darwin/amd64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_darwin_amd64", - "darwin/arm64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_darwin_arm64" + "linux/amd64": "https://github.com/archway-network/archway/releases/download/v8.0.0/archwayd_linux_amd64", + "linux/arm64": "https://github.com/archway-network/archway/releases/download/v8.0.0/archwayd_linux_arm64", + "darwin/amd64": "https://github.com/archway-network/archway/releases/download/v8.0.0/archwayd_darwin_amd64", + "darwin/arm64": "https://github.com/archway-network/archway/releases/download/v8.0.0/archwayd_darwin_arm64" }, "cosmos_sdk_version": "v0.47.11", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.5" @@ -75,13 +74,25 @@ "cosmos_sdk_version": "v0.45.16", "cosmwasm_version": "v0.32.0", "cosmwasm_enabled": true, - "ibc_go_version": "v4.3.1", "cosmwasm_path": "$HOME/.archway/data/wasm", "binaries": { "linux/amd64": "https://github.com/archway-network/archway/releases/download/v1.0.1/archwayd_linux_amd64", "linux/arm64": "https://github.com/archway-network/archway/releases/download/v1.0.1/archwayd_linux_arm64" }, - "next_version_name": "v2.0.0" + "next_version_name": "v2.0.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "cosmwasm": { + "version": "v0.32.0", + "path": "$HOME/.archway/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v4.3.1" + } }, { "name": "v2.0.0", @@ -99,13 +110,25 @@ "cosmos_sdk_version": "v0.45.16", "cosmwasm_version": "v0.32.0", "cosmwasm_enabled": true, - "ibc_go_version": "v4.3.1", "cosmwasm_path": "$HOME/.archway/data/wasm", "binaries": { "linux/amd64": "https://github.com/archway-network/archway/releases/download/v2.0.0/archwayd_linux_amd64", "linux/arm64": "https://github.com/archway-network/archway/releases/download/v2.0.0/archwayd_linux_arm64" }, - "next_version_name": "v4.0.2" + "next_version_name": "v4.0.2", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "cosmwasm": { + "version": "v0.32.0", + "path": "$HOME/.archway/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v4.3.1" + } }, { "name": "v4.0.2", @@ -122,7 +145,6 @@ "cosmos_sdk_version": "v0.45.16", "cosmwasm_version": "v0.33.0", "cosmwasm_enabled": true, - "ibc_go_version": "v4.3.1", "cosmwasm_path": "$HOME/.archway/data/wasm", "binaries": { "linux/amd64": "https://github.com/archway-network/archway/releases/download/v4.0.3/archwayd_linux_amd64", @@ -130,7 +152,20 @@ "darwin/amd64": "https://github.com/archway-network/archway/releases/download/v4.0.3/archwayd_darwin_amd64", "darwin/arm64": "https://github.com/archway-network/archway/releases/download/v4.0.3/archwayd_darwin_arm64" }, - "next_version_name": "v6.0.0" + "next_version_name": "v6.0.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "cosmwasm": { + "version": "v0.33.0", + "path": "$HOME/.archway/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v4.3.1" + } }, { "name": "v6.0.0", @@ -147,7 +182,6 @@ "cosmos_sdk_version": "v0.47.10", "cosmwasm_version": "archway-network/archway-wasmd v0.45.0-archway", "cosmwasm_enabled": true, - "ibc_go_version": "v7.4.0", "cosmwasm_path": "$HOME/.archway/data/wasm", "binaries": { "linux/amd64": "https://github.com/archway-network/archway/releases/download/v6.0.3/archwayd_linux_amd64", @@ -155,33 +189,70 @@ "darwin/amd64": "https://github.com/archway-network/archway/releases/download/v6.0.3/archwayd_darwin_amd64", "darwin/arm64": "https://github.com/archway-network/archway/releases/download/v6.0.3/archwayd_darwin_arm64" }, - "next_version_name": "v7.0.0" + "next_version_name": "v7.0.0", + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/archway-network/archway-wasmd", + "tag": "v0.45.0-archway", + "path": "$HOME/.archway/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } }, { "name": "v7.0.0", "proposal": 43, "height": 4473000, - "recommended_version": "v7.0.1", + "recommended_version": "v8.0.0", "compatible_versions": [ - "v7.0.0", - "v7.0.1" + "v8.0.0" ], "binaries": { - "linux/amd64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_linux_amd64", - "linux/arm64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_linux_arm64", - "darwin/amd64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_darwin_amd64", - "darwin/arm64": "https://github.com/archway-network/archway/releases/download/v7.0.1/archwayd_darwin_arm64" + "linux/amd64": "https://github.com/archway-network/archway/releases/download/v8.0.0/archwayd_linux_amd64", + "linux/arm64": "https://github.com/archway-network/archway/releases/download/v8.0.0/archwayd_linux_arm64", + "darwin/amd64": "https://github.com/archway-network/archway/releases/download/v8.0.0/archwayd_darwin_amd64", + "darwin/arm64": "https://github.com/archway-network/archway/releases/download/v8.0.0/archwayd_darwin_arm64" }, "cosmos_sdk_version": "v0.47.11", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.5" }, "cosmwasm_version": "v0.45.0", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "v0.47.11" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.11" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", @@ -200,11 +271,6 @@ "address": "161.97.96.91:46656", "provider": "AM Solutions" }, - { - "id": "c28827cb96c14c905b127b92065a3fb4cd77d7f6", - "address": "seeds.whispernode.com:11556", - "provider": "WhisperNode 🀐" - }, { "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", "address": "archway-mainnet-seed.autostake.com:26946", @@ -317,10 +383,6 @@ "address": "https://rpc-archway.theamsolutions.info", "provider": "AM Solutions" }, - { - "address": "https://rpc-archway.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://archway-rpc.w3coins.io", "provider": "w3coins" @@ -330,7 +392,7 @@ "provider": "π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀" }, { - "address": "https://archway-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/archway", "provider": "Lavender.Five Nodes 🐝" }, { @@ -373,10 +435,6 @@ "address": "https://rpc.archway.stakeup.tech", "provider": "StakeUp" }, - { - "address": "https://archway.api.trivium.network:26657", - "provider": "TriviumX | Architech" - }, { "address": "https://archway-rpc.stakeandrelax.net", "provider": "Stake&Relax πŸ¦₯" @@ -432,11 +490,7 @@ "provider": "AM Solutions" }, { - "address": "https://lcd-archway.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, - { - "address": "https://archway-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/archway", "provider": "Lavender.Five Nodes 🐝" }, { @@ -475,10 +529,6 @@ "address": "https://api.archway.stakeup.tech", "provider": "StakeUp" }, - { - "address": "https://archway.api.trivium.network:1317", - "provider": "TriviumX | Architech" - }, { "address": "https://archway-mainnet-archive.allthatnode.com:1317", "provider": "All That Node" @@ -526,7 +576,7 @@ "provider": "AM Solutions" }, { - "address": "archway-grpc.lavenderfive.com:443", + "address": "archway.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -573,10 +623,6 @@ "address": "grpc-archway-mainnet.testnet-pride.com:9096", "provider": "TestnetPride" }, - { - "address": "archway.api.trivium.network:9090", - "provider": "TriviumX | Architech" - }, { "address": "archway-grpc.tienthuattoan.ventures:9290", "provider": "TienThuatToan" @@ -659,4 +705,4 @@ } } ] -} +} \ No newline at end of file diff --git a/archway/images/ArchwayCircled-Orange.png b/archway/images/ArchwayCircled-Orange.png deleted file mode 100644 index 0c816e6fd4..0000000000 Binary files a/archway/images/ArchwayCircled-Orange.png and /dev/null differ diff --git a/archway/images/ArchwayCircled-Orange.svg b/archway/images/ArchwayCircled-Orange.svg deleted file mode 100644 index 2e1a1848dd..0000000000 --- a/archway/images/ArchwayCircled-Orange.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/archway/images/arch.png b/archway/images/arch.png new file mode 100644 index 0000000000..d90d7cf209 Binary files /dev/null and b/archway/images/arch.png differ diff --git a/archway/images/arch.svg b/archway/images/arch.svg new file mode 100644 index 0000000000..1e95f3f272 --- /dev/null +++ b/archway/images/arch.svg @@ -0,0 +1,4 @@ + + + + diff --git a/archway/images/barch.png b/archway/images/barch.png new file mode 100644 index 0000000000..8a62092d12 Binary files /dev/null and b/archway/images/barch.png differ diff --git a/archway/images/tokn.png b/archway/images/tokn.png new file mode 100644 index 0000000000..1f36da0b5f Binary files /dev/null and b/archway/images/tokn.png differ diff --git a/archway/images/wArch.png b/archway/images/wArch.png new file mode 100644 index 0000000000..e3d7fc873a Binary files /dev/null and b/archway/images/wArch.png differ diff --git a/archway/images/wArch.svg b/archway/images/wArch.svg new file mode 100644 index 0000000000..f46af6dea0 --- /dev/null +++ b/archway/images/wArch.svg @@ -0,0 +1,4 @@ + + + + diff --git a/archway/images/wUsdc-noble.png b/archway/images/wUsdc-noble.png new file mode 100644 index 0000000000..52d9b646c5 Binary files /dev/null and b/archway/images/wUsdc-noble.png differ diff --git a/archway/images/wUsdc-noble.svg b/archway/images/wUsdc-noble.svg new file mode 100644 index 0000000000..4cbbf1150e --- /dev/null +++ b/archway/images/wUsdc-noble.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/arkh/assetlist.json b/arkh/assetlist.json index 00fa7b108d..6070037be3 100644 --- a/arkh/assetlist.json +++ b/arkh/assetlist.json @@ -34,7 +34,8 @@ "socials": { "website": "https://arkhadian.io/", "twitter": "https://twitter.com/ArkhadianSas" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/arkh/chain.json b/arkh/chain.json index d11452c4b9..f3a75d19da 100644 --- a/arkh/chain.json +++ b/arkh/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://arkhadian.com/", "pretty_name": "Arkhadian", + "chain_type": "cosmos", "chain_id": "arkh", "bech32_prefix": "arkh", "daemon_name": "arkhd", diff --git a/assetlist.schema.json b/assetlist.schema.json index bea0f40e73..a519cb68e2 100644 --- a/assetlist.schema.json +++ b/assetlist.schema.json @@ -32,11 +32,13 @@ "type": "object", "required": [ "denom_units", + "type_asset", "base", "display", "name", "symbol" ], + "additionalProperties": false, "properties": { "deprecated": { "type": "boolean", @@ -103,6 +105,9 @@ { "$ref": "#/$defs/ibc_cw20_transition" }, + { + "$ref": "#/$defs/ibc_bridge_transition" + }, { "$ref": "#/$defs/non_ibc_transition" } @@ -217,6 +222,7 @@ "socials": { "type": "object", "minProperties": 1, + "additionalProperties": false, "properties": { "website": { "type": "string", @@ -227,11 +233,35 @@ "type": "string", "minLength": 1, "format": "uri" + }, + "telegram": { + "type": "string", + "minLength": 1, + "format": "uri" + }, + "discord": { + "type": "string", + "minLength": 1, + "format": "uri" + }, + "github": { + "type": "string", + "minLength": 1, + "format": "uri" + }, + "medium": { + "type": "string", + "minLength": 1, + "format": "uri" + }, + "reddit": { + "type": "string", + "minLength": 1, + "format": "uri" } } } }, - "additionalProperties": false, "if": { "required": [ "type_asset" @@ -258,6 +288,7 @@ "denom", "exponent" ], + "additionalProperties": false, "properties": { "denom": { "type": "string", @@ -274,8 +305,7 @@ }, "minContains": 1 } - }, - "additionalProperties": false + } }, "pointer": { "type": "object", @@ -283,6 +313,7 @@ "required": [ "chain_name" ], + "additionalProperties": false, "properties": { "chain_name": { "type": "string", @@ -294,8 +325,7 @@ "minLength": 1, "description": "The base denom of the asset from which the object originates. E.g., when describing ATOM from Cosmos Hub, specify 'uatom', NOT 'atom' nor 'ATOM'; base units are unique per platform." } - }, - "additionalProperties": false + } }, "ibc_transition": { "type": "object", @@ -304,6 +334,7 @@ "counterparty", "chain" ], + "additionalProperties": false, "properties": { "type": { "type": "string", @@ -313,31 +344,31 @@ ] }, "counterparty": { - "type": "object", - "required": [ - "chain_name", - "base_denom", - "channel_id" - ], - "properties": { - "chain_name": { - "type": "string", - "minLength": 1, - "description": "The name of the counterparty chain. (must match exactly the chain name used in the Chain Registry)" - }, - "base_denom": { - "type": "string", - "minLength": 1, - "description": "The base unit of the asset on its source platform. E.g., when describing ATOM from Cosmos Hub, specify 'uatom', NOT 'atom' nor 'ATOM'; base units are unique per platform." - }, - "channel_id": { - "type": "string", - "minLength": 1, - "pattern": "^channel-(JEnb|\\d+)$", - "description": "The counterparty IBC transfer channel(, e.g., 'channel-1')." - } + "type": "object", + "required": [ + "chain_name", + "base_denom", + "channel_id" + ], + "additionalProperties": false, + "properties": { + "chain_name": { + "type": "string", + "minLength": 1, + "description": "The name of the counterparty chain. (must match exactly the chain name used in the Chain Registry)" }, - "additionalProperties": false + "base_denom": { + "type": "string", + "minLength": 1, + "description": "The base unit of the asset on its source platform. E.g., when describing ATOM from Cosmos Hub, specify 'uatom', NOT 'atom' nor 'ATOM'; base units are unique per platform." + }, + "channel_id": { + "type": "string", + "minLength": 1, + "pattern": "^channel-(JEnb|\\d+)$", + "description": "The counterparty IBC transfer channel(, e.g., 'channel-1')." + } + } }, "chain": { "type": "object", @@ -345,6 +376,7 @@ "channel_id", "path" ], + "additionalProperties": false, "properties": { "channel_id": { "type": "string", @@ -357,11 +389,9 @@ "minLength": 1, "description": "The port/channel/denom input string that generates the 'ibc/...' denom." } - }, - "additionalProperties": false + } } - }, - "additionalProperties": false + } }, "ibc_cw20_transition": { "type": "object", @@ -370,6 +400,7 @@ "counterparty", "chain" ], + "additionalProperties": false, "properties": { "type": { "type": "string", @@ -386,6 +417,7 @@ "port", "channel_id" ], + "additionalProperties": false, "properties": { "chain_name": { "type": "string", @@ -408,8 +440,7 @@ "pattern": "^channel-\\d+$", "description": "The counterparty IBC transfer channel(, e.g., 'channel-1')." } - }, - "additionalProperties": false + } }, "chain": { "type": "object", @@ -418,6 +449,7 @@ "channel_id", "path" ], + "additionalProperties": false, "properties": { "port": { "type": "string", @@ -435,11 +467,91 @@ "minLength": 1, "description": "The port/channel/denom input string that generates the 'ibc/...' denom." } - }, - "additionalProperties": false + } } - }, - "additionalProperties": false + } + }, + "ibc_bridge_transition": { + "type": "object", + "required": [ + "type", + "counterparty", + "chain", + "provider" + ], + "additionalProperties": false, + "properties": { + "type": { + "type": "string", + "minLength": 1, + "enum": [ + "ibc-bridge" + ] + }, + "counterparty": { + "type": "object", + "required": [ + "chain_name", + "base_denom", + "channel_id" + ], + "additionalProperties": false, + "properties": { + "chain_name": { + "type": "string", + "minLength": 1, + "description": "The name of the counterparty chain. (must match exactly the chain name used in the Chain Registry)" + }, + "base_denom": { + "type": "string", + "minLength": 1, + "description": "The base unit of the asset on its source platform. E.g., when describing ATOM from Cosmos Hub, specify 'uatom', NOT 'atom' nor 'ATOM'; base units are unique per platform." + }, + "port": { + "type": "string", + "minLength": 1, + "description": "The port used to transfer IBC assets; often 'transfer', but sometimes varies, e.g., for outgoing cw20 transfers." + }, + "channel_id": { + "type": "string", + "minLength": 1, + "pattern": "^channel-\\d+$", + "description": "The counterparty IBC transfer channel(, e.g., 'channel-1')." + } + } + }, + "chain": { + "type": "object", + "required": [ + "channel_id", + "path" + ], + "additionalProperties": false, + "properties": { + "port": { + "type": "string", + "minLength": 1, + "description": "The port used to transfer IBC assets; often 'transfer', but sometimes varies, e.g., for outgoing cw20 transfers." + }, + "channel_id": { + "type": "string", + "minLength": 1, + "pattern": "^channel-\\d+$", + "description": "The chain's IBC transfer channel(, e.g., 'channel-1')." + }, + "path": { + "type": "string", + "minLength": 1, + "description": "The port/channel/denom input string that generates the 'ibc/...' denom." + } + } + }, + "provider": { + "type": "string", + "minLength": 1, + "description": "The entity offering the service. E.g., 'Gravity Bridge' [Network] or 'Tether' [Company]." + } + } }, "non_ibc_transition": { "type": "object", @@ -448,6 +560,7 @@ "counterparty", "provider" ], + "additionalProperties": false, "properties": { "type": { "type": "string", @@ -468,6 +581,7 @@ "chain_name", "base_denom" ], + "additionalProperties": false, "properties": { "chain_name": { "type": "string", @@ -483,30 +597,28 @@ "minLength": 1, "description": "The contract address where the transition takes place, where applicable. E.g., The Ethereum contract that locks up the asset while it's minted on another chain." } - }, - "additionalProperties": false + } }, "chain": { "type": "object", "required": [ "contract" ], + "additionalProperties": false, "properties": { "contract": { "type": "string", "minLength": 1, "description": "The contract address where the transition takes place, where applicable. E.g., The Ethereum contract that locks up the asset while it's minted on another chain." } - }, - "additionalProperties": false + } }, "provider": { "type": "string", "minLength": 1, "description": "The entity offering the service. E.g., 'Gravity Bridge' [Network] or 'Tether' [Company]." } - }, - "additionalProperties": false + } } } } diff --git a/assetmantle/assetlist.json b/assetmantle/assetlist.json index 51177f7d60..92dd47e128 100644 --- a/assetmantle/assetlist.json +++ b/assetmantle/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://www.assetmantle.one/", "twitter": "https://twitter.com/AssetMantle" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/assetmantle/chain.json b/assetmantle/chain.json index 59b3f47db9..a7d05f98b6 100644 --- a/assetmantle/chain.json +++ b/assetmantle/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://assetmantle.one/", "pretty_name": "AssetMantle", + "chain_type": "cosmos", "chain_id": "mantle-1", "bech32_prefix": "mantle", "daemon_name": "mantleNode", @@ -63,11 +64,6 @@ "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚑️ Nodes & Staking" }, - { - "id": "c28827cb96c14c905b127b92065a3fb4cd77d7f6", - "address": "seeds.whispernode.com:14656", - "provider": "WhisperNode 🀐" - }, { "id": "df949a46ae6529ae1e09b034b49716468d5cc7e9", "address": "seeds.stakerhouse.com:10156", @@ -147,10 +143,6 @@ "address": "https://rpc-assetmantle-ia.cosmosia.notional.ventures/", "provider": "Notional" }, - { - "address": "https://rpc-assetmantle.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://rpc.mantle.paranorm.pro:443", "provider": "paranorm" @@ -185,10 +177,6 @@ "address": "https://assetmantle-api.polkachu.com", "provider": "Polkachu" }, - { - "address": "https://lcd-assetmantle.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://api.mantle.paranorm.pro:443", "provider": "paranorm" diff --git a/aura/assetlist.json b/aura/assetlist.json index 401fce6e03..9d57f77dc4 100644 --- a/aura/assetlist.json +++ b/aura/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#a7c8d4" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/aura/chain.json b/aura/chain.json index eb5b447c82..445083091e 100644 --- a/aura/chain.json +++ b/aura/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://aura.network/", "pretty_name": "Aura Network", + "chain_type": "cosmos", "chain_id": "aura_6322-2", "bech32_prefix": "aura", "daemon_name": "aurad", @@ -37,15 +38,16 @@ }, "codebase": { "git_repo": "https://github.com/aura-nw/aura", - "recommended_version": "v0.8.3", + "recommended_version": "v0.9.3", "compatible_versions": [ - "v0.8.3" + "v0.9.3" ], - "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.8-evmos", - "ibc_go_version": "v7.3.1", + "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.12-evmos", "consensus": { "type": "cometbft", - "version": "aura-nw/cometbft v0.37.4-aura.2" + "version": "v0.37.4", + "repo": "https://github.com/aura-nw/cometbft", + "tag": "v0.37.4-aura.2" }, "cosmwasm_version": "v0.42.0", "cosmwasm_enabled": true, @@ -60,14 +62,25 @@ "v0.8.2" ], "cosmos_sdk_version": "v0.47.8", - "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", "version": "0.37.4" }, "cosmwasm_version": "0.42.0", "cosmwasm_enabled": true, - "next_version_name": "ibcupgrade" + "next_version_name": "ibcupgrade", + "sdk": { + "type": "cosmos", + "version": "v0.47.8" + }, + "cosmwasm": { + "version": "0.42.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "ibcupgrade", @@ -76,15 +89,76 @@ "v0.8.3" ], "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.8-evmos", - "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", - "version": "aura-nw/cometbft v0.37.4-aura.2" + "version": "v0.37.4", + "repo": "https://github.com/aura-nw/cometbft", + "tag": "v0.37.4-aura.2" }, "cosmwasm_version": "v0.42.0", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "next_version_name": "v0.9.3", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.8", + "tag": "v0.47.8-evmos" + }, + "cosmwasm": { + "version": "v0.42.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } + }, + { + "name": "v0.9.3", + "recommended_version": "v0.9.3", + "compatible_versions": [ + "v0.9.3" + ], + "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.12-evmos", + "consensus": { + "type": "cometbft", + "version": "v0.37.4", + "repo": "https://github.com/aura-nw/cometbft", + "tag": "v0.37.4-aura.2" + }, + "cosmwasm_version": "v0.42.0", + "cosmwasm_enabled": true, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.12", + "tag": "v0.47.12-evmos" + }, + "cosmwasm": { + "version": "v0.42.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.6.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.12", + "tag": "v0.47.12-evmos" + }, + "ibc": { + "type": "go", + "version": "v7.6.0" + }, + "cosmwasm": { + "version": "v0.42.0", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", @@ -206,7 +280,7 @@ "provider": "KonsorTech" }, { - "address": "https://aura-rpc.lavenderfive.com", + "address": "https://rpc.lavenderfive.com:443/aura", "provider": "Lavender.Five Nodes 🐝" }, { @@ -276,7 +350,7 @@ "provider": "TienThuatToan" }, { - "address": "https://aura-api.lavenderfive.com", + "address": "https://rest.lavenderfive.com:443/aura", "provider": "Lavender.Five Nodes 🐝" }, { @@ -350,7 +424,7 @@ "provider": "TienThuatToan" }, { - "address": "aura-grpc.lavenderfive.com:443", + "address": "aura.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -446,4 +520,4 @@ } } ] -} +} \ No newline at end of file diff --git a/aura1/assetlist.json b/aura1/assetlist.json index 5a7f62d114..ae0408f3fd 100644 --- a/aura1/assetlist.json +++ b/aura1/assetlist.json @@ -41,7 +41,8 @@ "primary_color_hex": "#a7c8d4" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/aura1/chain.json b/aura1/chain.json index 50d6d4d137..1983c02cfc 100644 --- a/aura1/chain.json +++ b/aura1/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://aura.network/", "pretty_name": "Aura Network", + "chain_type": "cosmos", "chain_id": "xstaxy-1", "bech32_prefix": "aura", "daemon_name": "aurad", @@ -41,7 +42,6 @@ "v0.7.3" ], "cosmos_sdk_version": "0.47.5", - "ibc_go_version": "v7.3.0", "consensus": { "type": "cometbft", "version": "0.37.2" @@ -85,7 +85,15 @@ }, "cosmwasm_version": "0.41.0", "cosmwasm_enabled": true, - "next_version_name": "v0.7.2" + "next_version_name": "v0.7.2", + "sdk": { + "type": "cosmos", + "version": "0.47.4" + }, + "cosmwasm": { + "version": "0.41.0", + "enabled": true + } }, { "name": "v0.7.2", @@ -96,14 +104,25 @@ "v0.7.2" ], "cosmos_sdk_version": "0.47.4", - "ibc_go_version": "v7.2.0", "consensus": { "type": "cometbft", "version": "0.37.2" }, "cosmwasm_version": "0.41.0", "cosmwasm_enabled": true, - "next_version_name": "v0.7.3" + "next_version_name": "v0.7.3", + "sdk": { + "type": "cosmos", + "version": "0.47.4" + }, + "cosmwasm": { + "version": "0.41.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.2.0" + } }, { "name": "v0.7.3", @@ -114,15 +133,38 @@ "v0.7.3" ], "cosmos_sdk_version": "0.47.5", - "ibc_go_version": "v7.3.0", "consensus": { "type": "cometbft", "version": "0.37.2" }, "cosmwasm_version": "0.42.0", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.47.5" + }, + "cosmwasm": { + "version": "0.42.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47.5" + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + }, + "cosmwasm": { + "version": "0.42.0", + "enabled": true + } }, "peers": { "seeds": [ @@ -244,7 +286,7 @@ "provider": "TienThuatToan" }, { - "address": "https://aura-rpc.lavenderfive.com", + "address": "https://rpc.lavenderfive.com:443/aura", "provider": "Lavender.Five Nodes 🐝" }, { @@ -314,7 +356,7 @@ "provider": "TienThuatToan" }, { - "address": "https://aura-api.lavenderfive.com", + "address": "https://rest.lavenderfive.com:443/aura", "provider": "Lavender.Five Nodes 🐝" }, { @@ -388,7 +430,7 @@ "provider": "TienThuatToan" }, { - "address": "aura-grpc.lavenderfive.com:443", + "address": "aura.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/axelar/assetlist.json b/axelar/assetlist.json index e59f0863ee..fa47c18a14 100644 --- a/axelar/assetlist.json +++ b/axelar/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://axelar.network/", "twitter": "https://twitter.com/axelarnetwork" - } + }, + "type_asset": "sdk.coin" }, { "description": "Circle's stablecoin on Axelar", @@ -77,7 +78,8 @@ "primary_color_hex": "#2474cc" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Frax's fractional-algorithmic stablecoin on Axelar", @@ -116,7 +118,8 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Dai stablecoin on Axelar", @@ -156,7 +159,8 @@ "primary_color_hex": "#f4ac34" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Tether's USD stablecoin on Axelar", @@ -197,7 +201,8 @@ "primary_color_hex": "#54ac94" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Wrapped Ether on Axelar", @@ -235,7 +240,8 @@ "primary_color_hex": "#3a3444" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Wrapped Bitcoin on Axelar", @@ -274,7 +280,8 @@ "primary_color_hex": "#41394d" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Aave on Axelar", @@ -313,7 +320,8 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "ApeCoin on Axelar", @@ -352,7 +360,8 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Axie Infinity Shard on Axelar", @@ -391,7 +400,8 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Chainlink on Axelar", @@ -435,7 +445,8 @@ "primary_color_hex": "#2c5cdc" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Maker on Axelar", @@ -474,7 +485,8 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Rai Reflex Index on Axelar", @@ -513,7 +525,8 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Shiba Inu on Axelar", @@ -550,9 +563,14 @@ "chain_name": "ethereum", "base_denom": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "theme": { + "primary_color_hex": "#FFA409", + "background_color_hex": "#00000000" + } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Lido Staked Ether on Axelar", @@ -591,7 +609,8 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Uniswap on Axelar", @@ -630,7 +649,8 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Chain on Axelar", @@ -669,7 +689,8 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Wrapped Polkadot on Axelar", @@ -713,7 +734,8 @@ "primary_color_hex": "#e4047c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Wrapped Moonbeam on Axelar", @@ -757,7 +779,8 @@ "primary_color_hex": "#e4147c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Wrapped Matic on Axelar", @@ -801,7 +824,8 @@ "primary_color_hex": "#2b93fb" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Wrapped BNB on Axelar", @@ -845,7 +869,8 @@ "primary_color_hex": "#f3bb0c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Binance USD on Axelar.", @@ -889,7 +914,8 @@ "primary_color_hex": "#f3bb0c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Wrapped AVAX on Axelar.", @@ -928,7 +954,8 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Wrapped FTM on Axelar.", @@ -972,7 +999,8 @@ "primary_color_hex": "#1c6cfc" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Circle's stablecoin from Polygon on Axelar", @@ -1012,7 +1040,8 @@ "primary_color_hex": "#2474cc" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Circle's stablecoin from Avalanche on Axelar", @@ -1052,7 +1081,8 @@ "primary_color_hex": "#2474cc" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Wrapped FIL on Axelar", @@ -1096,7 +1126,8 @@ "primary_color_hex": "#0694fc" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Arbitrum on Axelar", @@ -1140,7 +1171,8 @@ "primary_color_hex": "#253545" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -1186,7 +1218,8 @@ "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" - } + }, + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -1230,7 +1263,8 @@ ], "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png" - } + }, + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -1274,7 +1308,8 @@ ], "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png" - } + }, + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -1315,7 +1350,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" - } + }, + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -1356,7 +1392,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" - } + }, + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -1402,7 +1439,8 @@ "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg" - } + }, + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -1443,9 +1481,11 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg" - } + }, + "type_asset": "sdk.coin" }, { + "type_asset": "sdk.coin", "denom_units": [ { "denom": "yum-wei", @@ -1490,6 +1530,7 @@ } }, { + "type_asset": "sdk.coin", "denom_units": [ { "denom": "arbitrum-weth-wei", @@ -1525,6 +1566,7 @@ ] }, { + "type_asset": "sdk.coin", "denom_units": [ { "denom": "base-weth-wei", @@ -1560,6 +1602,7 @@ ] }, { + "type_asset": "sdk.coin", "denom_units": [ { "denom": "polygon-weth-wei", @@ -1593,6 +1636,49 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" } ] + }, + { + "type_asset": "sdk.coin", + "denom_units": [ + { + "denom": "op-wei", + "exponent": 0, + "aliases": [ + "0x4200000000000000000000000000000000000042" + ] + }, + { + "denom": "op", + "exponent": 18 + } + ], + "base": "op-wei", + "name": "Optimism", + "display": "op", + "symbol": "OP", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "optimism", + "base_denom": "0x4200000000000000000000000000000000000042" + }, + "provider": "Axelar" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "optimism", + "base_denom": "0x4200000000000000000000000000000000000042" + }, + "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": { + "primary_color_hex": "#fc0424" + } + } + ] } ] } \ No newline at end of file diff --git a/axelar/chain.json b/axelar/chain.json index 1fdec763f8..086280692b 100644 --- a/axelar/chain.json +++ b/axelar/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "axelar", + "chain_type": "cosmos", "chain_id": "axelar-dojo-1", "pretty_name": "Axelar", "status": "live", @@ -33,20 +34,20 @@ }, "codebase": { "git_repo": "https://github.com/axelarnetwork/axelar-core", - "recommended_version": "v0.35.5", + "recommended_version": "v1.0.2", "compatible_versions": [ - "v0.35.5" + "v1.0.2" ], "binaries": { - "linux/amd64": "https://github.com/axelarnetwork/axelar-core/releases/download/v0.35.5/axelard-linux-amd64-v0.35.5", - "darwin/amd64": "https://github.com/axelarnetwork/axelar-core/releases/download/v0.35.5/axelard-darwin-amd64-v0.35.5" + "linux/amd64": "https://github.com/axelarnetwork/axelar-core/releases/download/v1.0.2/axelard-linux-amd64-v1.0.2", + "darwin/amd64": "https://github.com/axelarnetwork/axelar-core/releases/download/v1.0.2/axelard-darwin-amd64-v1.0.2", + "darwin/arm64": "https://github.com/axelarnetwork/axelar-core/releases/download/v1.0.2/axelard-darwin-arm64-v1.0.2" }, - "cosmos_sdk_version": "axelarnetwork/cosmos-sdk v0.45.17-0.20230904150332-37fb903a6c62", + "cosmos_sdk_version": "axelarnetwork/cosmos-sdk v0.45.17-0.20240321205000-47c0c80e20ca", "consensus": { "type": "cometbft", "version": "v0.34.31" }, - "ibc_go_version": "v4.5.1", "cosmwasm_version": "v0.33.0", "cosmwasm_enabled": true, "genesis": { @@ -92,16 +93,77 @@ "type": "cometbft", "version": "v0.34.31" }, - "ibc_go_version": "v4.5.1", "cosmwasm_version": "v0.33.0", "cosmwasm_enabled": true, - "next_version_name": "" + "next_version_name": "v1.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/axelarnetwork/cosmos-sdk", + "version": "v0.45.17", + "tag": "v0.45.17-0.20230904150332-37fb903a6c62" + }, + "cosmwasm": { + "version": "v0.33.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v4.5.1" + } + }, + { + "name": "v1.0", + "recommended_version": "v1.0.2", + "compatible_versions": [ + "v1.0.2" + ], + "binaries": { + "linux/amd64": "https://github.com/axelarnetwork/axelar-core/releases/download/v1.0.2/axelard-linux-amd64-v1.0.2", + "darwin/amd64": "https://github.com/axelarnetwork/axelar-core/releases/download/v1.0.2/axelard-darwin-amd64-v1.0.2", + "darwin/arm64": "https://github.com/axelarnetwork/axelar-core/releases/download/v1.0.2/axelard-darwin-arm64-v1.0.2" + }, + "cosmos_sdk_version": "axelarnetwork/cosmos-sdk v0.45.17-0.20240321205000-47c0c80e20ca", + "consensus": { + "type": "cometbft", + "version": "v0.34.31" + }, + "cosmwasm_version": "v0.33.0", + "cosmwasm_enabled": true, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/axelarnetwork/cosmos-sdk", + "version": "v0.45.17", + "tag": "v0.45.17-0.20240321205000-47c0c80e20ca" + }, + "cosmwasm": { + "version": "v0.33.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v4.6.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/axelarnetwork/cosmos-sdk", + "version": "v0.45.17", + "tag": "v0.45.17-0.20240321205000-47c0c80e20ca" + }, + "ibc": { + "type": "go", + "version": "v4.6.0" + }, + "cosmwasm": { + "version": "v0.33.0", + "enabled": true + } }, "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" }, "description": "Axelar delivers secure cross-chain communication for Web3. Our infrastructure enables dApp users to interact with any asset or application, on any chain, with one click.", "peers": { @@ -260,6 +322,10 @@ { "address": "https://axelar-rpc.publicnode.com:443", "provider": "Allnodes ⚑️ Nodes & Staking" + }, + { + "address": "https://axelar.drpc.org", + "provider": "dRPC" } ], "rest": [ @@ -437,8 +503,7 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg", "theme": { - "primary_color_hex": "#040404", - "circle": true + "primary_color_hex": "#040404" } }, { @@ -450,4 +515,4 @@ } } ] -} +} \ No newline at end of file diff --git a/bandchain/assetlist.json b/bandchain/assetlist.json index 202772d943..8bf1a751cf 100644 --- a/bandchain/assetlist.json +++ b/bandchain/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://www.bandprotocol.com/", "twitter": "https://twitter.com/BandProtocol" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/bandchain/chain.json b/bandchain/chain.json index 1d2543d0f5..dd02e13825 100644 --- a/bandchain/chain.json +++ b/bandchain/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://bandprotocol.com/", "pretty_name": "Band Protocol", + "chain_type": "cosmos", "chain_id": "laozi-mainnet", "daemon_name": "bandd", "node_home": "$HOME/.band", @@ -43,7 +44,6 @@ "v2.5.4" ], "cosmos_sdk_version": "0.45.16", - "ibc_go_version": "v4.3.1", "consensus": { "type": "cometbft", "version": "v0.34.29" @@ -63,12 +63,19 @@ "v2.4.1" ], "cosmos_sdk_version": "v0.45.10", - "ibc_go_version": "v3.3.1", "consensus": { "type": "tendermint", "version": "v0.34.22" }, - "next_version_name": "v2_5" + "next_version_name": "v2_5", + "sdk": { + "type": "cosmos", + "version": "v0.45.10" + }, + "ibc": { + "type": "go", + "version": "v3.3.1" + } }, { "name": "v2_5", @@ -82,14 +89,29 @@ "v2.5.4" ], "cosmos_sdk_version": "0.45.16", - "ibc_go_version": "v4.3.1", "consensus": { "type": "cometbft", "version": "v0.34.29" }, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.3.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.3.1" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png", @@ -106,6 +128,10 @@ "id": "543e0cab9c3016a0e99775443a17bcf163038912", "address": "34.150.156.78:26656" }, + { + "id": "2c884e60a0944958a2a9389f07f2f66dcfc3add0", + "address": "seeds-bandprotocol.activenodes.io:36656" + }, { "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", "address": "bandchain-mainnet-seed.autostake.com:26666", @@ -170,11 +196,6 @@ "id": "d3fe7586b604196461db92c2c7cf72eb354af1fc", "address": "rpc.band.indonode.net:12656", "provider": "Indonode" - }, - { - "id": "c6f9e1309055eedbcd58d018b54247f13e9f878b", - "address": "65.108.195.213:44656", - "provider": "StakeTown" } ] }, @@ -216,10 +237,6 @@ "address": "https://bandprotocol-rpc.highstakes.ch", "provider": "High Stakes πŸ‡¨πŸ‡­" }, - { - "address": "https://band-rpc.stake-town.com", - "provider": "StakeTown" - }, { "address": "https://public.stakewolle.com/cosmos/bandchain/rpc", "provider": "Stakewolle" @@ -274,10 +291,6 @@ "address": "https://bandprotocol-api.highstakes.ch", "provider": "High Stakes πŸ‡¨πŸ‡­" }, - { - "address": "https://band-api.stake-town.com", - "provider": "StakeTown" - }, { "address": "https://public.stakewolle.com/cosmos/bandchain/rest", "provider": "Stakewolle" @@ -328,10 +341,6 @@ "address": "band.grpc.kjnodes.com:443", "provider": "kjnodes" }, - { - "address": "band-grpc.stake-town.com:443", - "provider": "StakeTown" - }, { "address": "grpc.band.bronbro.io:443", "provider": "Bro_n_Bro" diff --git a/beezee/assetlist.json b/beezee/assetlist.json index f2e98c9a78..de18b19273 100644 --- a/beezee/assetlist.json +++ b/beezee/assetlist.json @@ -31,7 +31,232 @@ "primary_color_hex": "#079fd7" } } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Vidulum App Token", + "denom_units": [ + { + "denom": "factory/bze13gzq40che93tgfm9kzmkpjamah5nj0j73pyhqk/uvdl", + "exponent": 0 + }, + { + "denom": "vdl", + "exponent": 6 + } + ], + "base": "factory/bze13gzq40che93tgfm9kzmkpjamah5nj0j73pyhqk/uvdl", + "name": "Vidulum", + "display": "vdl", + "symbol": "VDL", + "logo_URIs": { + "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" + }, + "coingecko_id": "vidulum", + "images": [ + { + "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" + } + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "OSMO from Osmosis", + "denom_units": [ + { + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "exponent": 0, + "aliases": [ + "uosmo" + ] + }, + { + "denom": "osmo", + "exponent": 6, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo", + "channel_id": "channel-340" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/uosmo" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "uosmo" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg", + "theme": { + "primary_color_hex": "#760dbb" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + } + }, + { + "description": "Crypto2Mars Community Token", + "denom_units": [ + { + "denom": "factory/bze15pqjgk4la0mfphwddce00d05n3th3u66n3ptcv/2MARS", + "exponent": 0 + }, + { + "denom": "C2M", + "exponent": 6 + } + ], + "base": "factory/bze15pqjgk4la0mfphwddce00d05n3th3u66n3ptcv/2MARS", + "name": "Crypto2Mars", + "display": "C2M", + "symbol": "C2M", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/c2m.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/c2m.png", + "theme": { + "primary_color_hex": "#FEFEFE" + } + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "The native token of Archway network", + "denom_units": [ + { + "denom": "ibc/C00D101A3572A5374E23F11944463D1325319E255D7C824B33AF2F927F532348", + "exponent": 0, + "aliases": [ + "aarch" + ] + }, + { + "denom": "uarch", + "exponent": 12 + }, + { + "denom": "arch", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/C00D101A3572A5374E23F11944463D1325319E255D7C824B33AF2F927F532348", + "name": "Archway", + "display": "arch", + "symbol": "ARCH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "archway", + "base_denom": "aarch", + "channel_id": "channel-147" + }, + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/aarch" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "archway", + "base_denom": "aarch" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg", + "theme": { + "primary_color_hex": "#fc4c04" + } + } ] + }, + { + "description": "USDC from Noble", + "denom_units": [ + { + "denom": "ibc/6490A7EAB61059BFC1CDDEB05917DD70BDF3A611654162A1A47DB930D40D8AF4", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/6490A7EAB61059BFC1CDDEB05917DD70BDF3A611654162A1A47DB930D40D8AF4", + "name": "USDC", + "display": "usdc", + "symbol": "USDC", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "noble", + "base_denom": "uusdc", + "channel_id": "channel-95" + }, + "chain": { + "channel_id": "channel-3", + "path": "transfer/channel-3/uusdc" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } } ] } \ No newline at end of file diff --git a/beezee/chain.json b/beezee/chain.json index 01064c7616..5467258c6d 100644 --- a/beezee/chain.json +++ b/beezee/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "BeeZee", + "chain_type": "cosmos", "chain_id": "beezee-1", "bech32_prefix": "bze", "daemon_name": "bzed", @@ -32,16 +33,16 @@ }, "codebase": { "git_repo": "https://github.com/bze-alphateam/bze", - "recommended_version": "v6.1.0", + "recommended_version": "v7.0.0", "compatible_versions": [ - "v6.1.0" + "v7.0.0" ], "binaries": { - "darwin/amd64": "https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-darwin-amd64.tar.gz", - "darwin/arm64": "https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-darwin-arm64.tar.gz", - "linux/amd64": "https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-linux-amd64.tar.gz", - "linux/arm64": "https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-linux-arm64.tar.gz", - "windows/amd64": "https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-win64.zip" + "darwin/amd64": "https://github.com/bze-alphateam/bze/releases/download/v7.0.0/bze-7.0.0-darwin-amd64.tar.gz", + "darwin/arm64": "https://github.com/bze-alphateam/bze/releases/download/v7.0.0/bze-7.0.0-darwin-arm64.tar.gz", + "linux/amd64": "https://github.com/bze-alphateam/bze/releases/download/v7.0.0/bze-7.0.0-linux-amd64.tar.gz", + "linux/arm64": "https://github.com/bze-alphateam/bze/releases/download/v7.0.0/bze-7.0.0-linux-arm64.tar.gz", + "windows/amd64": "https://github.com/bze-alphateam/bze/releases/download/v7.0.0/bze-7.0.0-win64.zip" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/bze-alphateam/bze/main/genesis.json" @@ -55,7 +56,6 @@ "v5.0.1" ], "cosmos_sdk_version": "v0.44.3", - "ibc_go_version": "v1.2.2", "consensus": { "type": "tendermint", "version": "v0.34.14" @@ -68,7 +68,15 @@ "linux/arm64": "https://github.com/bze-alphateam/bze/releases/download/v5.0.1/bze-5.0.1-linux-arm64.tar.gz", "windows/amd64": "https://github.com/bze-alphateam/bze/releases/download/v5.0.1/bze-5.0.1-win64.zip" }, - "next_version_name": "v5.1.1" + "next_version_name": "v5.1.1", + "sdk": { + "type": "cosmos", + "version": "v0.44.3" + }, + "ibc": { + "type": "go", + "version": "v1.2.2" + } }, { "name": "v5.1.1", @@ -78,7 +86,6 @@ "v5.1.1" ], "cosmos_sdk_version": "v0.45.9", - "ibc_go_version": "v1.2.2", "consensus": { "type": "tendermint", "version": "v0.34.22" @@ -91,7 +98,15 @@ "linux/arm64": "https://github.com/bze-alphateam/bze/releases/download/v5.1.1/bze-5.1.1-linux-arm64.tar.gz", "windows/amd64": "https://github.com/bze-alphateam/bze/releases/download/v5.1.1/bze-5.1.1-win64.zip" }, - "next_version_name": "v5.1.2" + "next_version_name": "v5.1.2", + "sdk": { + "type": "cosmos", + "version": "v0.45.9" + }, + "ibc": { + "type": "go", + "version": "v1.2.2" + } }, { "name": "v5.1.2", @@ -101,7 +116,6 @@ "v5.1.2" ], "cosmos_sdk_version": "v0.45.9", - "ibc_go_version": "v1.2.2", "consensus": { "type": "tendermint", "version": "v0.34.22" @@ -114,7 +128,15 @@ "linux/arm64": "https://github.com/bze-alphateam/bze/releases/download/v5.1.2/bze-5.1.2-linux-arm64.tar.gz", "windows/amd64": "https://github.com/bze-alphateam/bze/releases/download/v5.1.2/bze-5.1.2-win64.zip" }, - "next_version_name": "v6.0.0" + "next_version_name": "v6.0.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.9" + }, + "ibc": { + "type": "go", + "version": "v1.2.2" + } }, { "name": "v6.0.0", @@ -124,7 +146,6 @@ "v6.0.0" ], "cosmos_sdk_version": "v0.45.10", - "ibc_go_version": "v2.4.2", "consensus": { "type": "tendermint", "version": "v0.34.22" @@ -137,7 +158,15 @@ "linux/arm64": "https://github.com/bze-alphateam/bze/releases/download/v6.0.0/bze-6.0.0-linux-arm64.tar.gz", "windows/amd64": "https://github.com/bze-alphateam/bze/releases/download/v6.0.0/bze-6.0.0-win64.zip" }, - "next_version_name": "v6.1.0" + "next_version_name": "v6.1.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.10" + }, + "ibc": { + "type": "go", + "version": "v2.4.2" + } }, { "name": "v6.1.0", @@ -147,7 +176,6 @@ "v6.1.0" ], "cosmos_sdk_version": "v0.45.16", - "ibc_go_version": "v4.5.1", "consensus": { "type": "cometbft", "version": "v0.34.27" @@ -160,7 +188,45 @@ "linux/arm64": "https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-linux-arm64.tar.gz", "windows/amd64": "https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-win64.zip" }, - "next_version_name": "v7.0.0" + "next_version_name": "v7.0.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.5.1" + } + }, + { + "name": "v7.0.0", + "recommended_version": "v7.0.0", + "tag": "v7.0.0", + "compatible_versions": [ + "v7.0.0" + ], + "cosmos_sdk_version": "v0.45.16", + "consensus": { + "type": "cometbft", + "version": "v0.34.27" + }, + "height": 12723000, + "binaries": { + "darwin/amd64": "https://github.com/bze-alphateam/bze/releases/download/v7.0.0/bze-7.0.0-darwin-amd64.tar.gz", + "darwin/arm64": "https://github.com/bze-alphateam/bze/releases/download/v7.0.0/bze-7.0.0-darwin-arm64.tar.gz", + "linux/amd64": "https://github.com/bze-alphateam/bze/releases/download/v7.0.0/bze-7.0.0-linux-amd64.tar.gz", + "linux/arm64": "https://github.com/bze-alphateam/bze/releases/download/v7.0.0/bze-7.0.0-linux-arm64.tar.gz", + "windows/amd64": "https://github.com/bze-alphateam/bze/releases/download/v7.0.0/bze-7.0.0-win64.zip" + }, + "next_version_name": "v7.1.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.5.1" + } } ] }, diff --git a/beezee/images/c2m.png b/beezee/images/c2m.png new file mode 100644 index 0000000000..92d7d460bb Binary files /dev/null and b/beezee/images/c2m.png differ diff --git a/beezee/images/vdl.png b/beezee/images/vdl.png new file mode 100644 index 0000000000..a81b48b460 Binary files /dev/null and b/beezee/images/vdl.png differ diff --git a/beezee/images/vdl.svg b/beezee/images/vdl.svg new file mode 100644 index 0000000000..f02a9c2559 --- /dev/null +++ b/beezee/images/vdl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/berachain/assetlist.json b/berachain/assetlist.json index bf56910a83..912b5e2afb 100644 --- a/berachain/assetlist.json +++ b/berachain/assetlist.json @@ -27,7 +27,8 @@ } } ], - "coingecko_id": "berachain-bera" + "coingecko_id": "berachain-bera", + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/bitbadges/assetlist.json b/bitbadges/assetlist.json new file mode 100644 index 0000000000..680419734a --- /dev/null +++ b/bitbadges/assetlist.json @@ -0,0 +1,66 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "bitbadges", + "assets": [ + { + "description": "$BADGE is the native in-app credits token for BitBadges, a platform for creating and sharing digital badges.", + "denom_units": [ + { + "denom": "ubadge", + "exponent": 0 + }, + { + "denom": "badge", + "exponent": 9 + } + ], + "base": "ubadge", + "name": "BitBadges Credits", + "display": "badge", + "symbol": "BADGE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/bitbadgeslogo.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/bitbadgeslogo.png" + } + ], + "socials": { + "website": "https://bitbadges.io/", + "twitter": "https://twitter.com/bitbadges_io" + }, + "type_asset": "sdk.coin" + }, + { + "description": "The native staking denom for the BitBadges blockchain.", + "denom_units": [ + { + "denom": "ustake", + "exponent": 0 + }, + { + "denom": "stake", + "exponent": 9 + } + ], + "base": "ustake", + "name": "BitBadges Staking", + "display": "stake", + "symbol": "STAKE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/bitbadgeslogo.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/bitbadgeslogo.png" + } + ], + "socials": { + "website": "https://bitbadges.io/", + "twitter": "https://twitter.com/bitbadges_io" + }, + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/bitbadges/chain.json b/bitbadges/chain.json new file mode 100644 index 0000000000..58b8bef51d --- /dev/null +++ b/bitbadges/chain.json @@ -0,0 +1,130 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "bitbadges", + "status": "live", + "chain_type": "cosmos", + "network_type": "mainnet", + "website": "https://bitbadges.io/", + "pretty_name": "BitBadges", + "chain_id": "bitbadges-1", + "bech32_prefix": "cosmos", + "daemon_name": "bitbadgeschaind", + "node_home": "$HOME/.bitbadgeschaind", + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "ubadge", + "fixed_min_gas_price": 0, + "low_gas_price": 0.00025, + "average_gas_price": 0.0025, + "high_gas_price": 0.025 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "ustake" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/bitbadges/bitbadgeschain/", + "recommended_version": "v1.0-mainnet", + "compatible_versions": [ + "v1.0-mainnet" + ], + "versions": [ + { + "name": "v1.0-mainnet", + "binaries": { + "linux/amd64": "https://github.com/BitBadges/bitbadgeschain/releases/download/v1.0-mainnet/bitbadgeschain-linux-amd64", + "linux/arm64": "https://github.com/BitBadges/bitbadgeschain/releases/download/v1.0-mainnet/bitbadgeschain-linux-arm64" + }, + "cosmos_sdk_version": "v0.50.8", + "consensus": { + "type": "cometbft", + "version": "v0.38.9", + "repo": "https://github.com/cometbft/cometbft" + }, + "sdk": { + "type": "cosmos", + "version": "v0.50.8" + }, + "ibc": { + "type": "go", + "version": "v8.3.2" + } + } + ], + "binaries": { + "linux/amd64": "https://github.com/BitBadges/bitbadgeschain/releases/download/v1.0-mainnet/bitbadgeschain-linux-amd64", + "linux/arm64": "https://github.com/BitBadges/bitbadgeschain/releases/download/v1.0-mainnet/bitbadgeschain-linux-arm64" + }, + "cosmos_sdk_version": "v0.50.8", + "sdk": { + "type": "cosmos", + "version": "v0.50.8" + }, + "ibc": { + "type": "go", + "version": "v8.3.2" + }, + "consensus": { + "type": "cometbft", + "version": "v0.38.9", + "repo": "https://github.com/cometbft/cometbft" + }, + "genesis": { + "genesis_url": "https://github.com/BitBadges/bitbadgeschain/blob/master/genesis.json" + } + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/bitbadgeslogo.png" + }, + "description": "BitBadges is the all-in-one, multi-chain platform for building your digital identity.", + "peers": { + "seeds": [], + "persistent_peers": [ + { + "id": "8d1ca31723a66b9058651220fd8da4618bc6f67c", + "address": "134.122.12.165:26656" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "http://134.122.12.165:26657", + "provider": "bitbadges" + } + ], + "rest": [ + { + "address": "http://134.122.12.165:1317", + "provider": "bitbadges" + } + ], + "grpc": [] + }, + "explorers": [ + { + "kind": "mintscan", + "url": "https://www.mintscan.io/bitbadges", + "tx_page": "https://www.mintscan.io/bitbadges/transactions/${txHash}", + "account_page": "https://www.mintscan.io/bitbadges/accounts/${accountAddress}" + }, + { + "kind": "ping.pub", + "url": "https://explorer.bitbadges.io/BitBadges%20Mainnet", + "tx_page": "https://explorer.bitbadges.io/BitBadges%20Mainnet/txs/${txHash}", + "account_page": "https://explorer.bitbadges.io/BitBadBitBadges%20Mainnetges/account/${accountAddress}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/bitbadgeslogo.png" + } + ] +} \ No newline at end of file diff --git a/bitbadges/images/bitbadgeslogo.png b/bitbadges/images/bitbadgeslogo.png new file mode 100755 index 0000000000..53473a9bb9 Binary files /dev/null and b/bitbadges/images/bitbadgeslogo.png differ diff --git a/bitcanna/assetlist.json b/bitcanna/assetlist.json index d7e2408784..712d4b866a 100644 --- a/bitcanna/assetlist.json +++ b/bitcanna/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "http://www.bitcanna.io/", "twitter": "https://twitter.com/BitCannaGlobal" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/bitcanna/chain.json b/bitcanna/chain.json index 34d8cede1b..b512b4c23d 100644 --- a/bitcanna/chain.json +++ b/bitcanna/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.bitcanna.io/", "pretty_name": "BitCanna", + "chain_type": "cosmos", "chain_id": "bitcanna-1", "bech32_prefix": "bcna", "daemon_name": "bcnad", @@ -43,7 +44,6 @@ "darwin/arm64": "https://github.com/BitCannaGlobal/bcna/releases/download/v3.1.0/bcna_darwin_arm64.tar.gz" }, "cosmos_sdk_version": "v0.47.11", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.5" @@ -114,12 +114,19 @@ "darwin/arm64": "https://github.com/BitCannaGlobal/bcna/releases/download/v3.0.2/bcna_darwin_arm64.tar.gz" }, "cosmos_sdk_version": "v0.47.9", - "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", "version": "v0.37.4" }, - "next_version_name": "ganjarevolutionburn" + "next_version_name": "ganjarevolutionburn", + "sdk": { + "type": "cosmos", + "version": "v0.47.9" + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "ganjarevolutionburn", @@ -135,14 +142,29 @@ "darwin/arm64": "https://github.com/BitCannaGlobal/bcna/releases/download/v3.1.0/bcna_darwin_arm64.tar.gz" }, "cosmos_sdk_version": "v0.47.11", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.5" }, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.11" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.11" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png", @@ -453,6 +475,10 @@ { "address": "https://bitcanna.rpc.nodeshub.online:443", "provider": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ" + }, + { + "address": "https://bitcanna_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "grpc": [ @@ -469,7 +495,7 @@ "provider": "HexNodes" }, { - "address": "grpc.bitcanna-1.bitcanna.aviaone.com:9092", + "address": "grpc.bitcanna-1.bitcanna.aviaone.com:9102", "provider": "AVIAONE 🟒" }, { @@ -579,7 +605,7 @@ "provider": "genznodes" }, { - "address": "https://api.bitcanna-1.bitcanna.aviaone.com/", + "address": "https://api.bitcanna-1.bitcanna.aviaone.com", "provider": "AVIAONE 🟒" }, { @@ -645,6 +671,10 @@ { "address": "https://bitcanna.api.nodeshub.online", "provider": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ" + }, + { + "address": "https://bitcanna_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ] }, @@ -740,7 +770,7 @@ "account_page": "https://explorer.kalia.network/bitcanna/account/${accountAddress}" }, { - "kind": "AVIAONE", + "kind": "AviaOne Explorer 🟒", "url": "https://mainnet.explorer.aviaone.com/bitcanna", "tx_page": "https://mainnet.explorer.aviaone.com/bitcanna/tx/${txHash}", "account_page": "https://mainnet.explorer.aviaone.com/bitcanna/account/${accountAddress}" @@ -750,6 +780,18 @@ "url": "https://explorer.nodeshub.online/bitcanna/", "tx_page": "https://explorer.nodeshub.online/bitcanna/tx/${txHash}", "account_page": "https://explorer.nodeshub.online/bitcanna/accounts/${accountAddress}" + }, + { + "kind": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯", + "url": "https://explorer.whenmoonwhenlambo.money/bitcanna", + "tx_page": "https://explorer.whenmoonwhenlambo.money/bitcanna/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/bitcanna/account/${accountAddress}" + }, + { + "kind": "AviaOne Explorer 🟒", + "url": "https://mainnet.explorer.aviaone.com/bitcanna", + "tx_page": "https://mainnet.explorer.aviaone.com/bitcanna/tx/${txHash}", + "account_page": "https://mainnet.explorer.aviaone.com/bitcanna/account/${accountAddress}" } ], "images": [ @@ -761,4 +803,4 @@ } } ] -} +} \ No newline at end of file diff --git a/bitsong/assetlist.json b/bitsong/assetlist.json index 91d2195725..2fd962cd3e 100644 --- a/bitsong/assetlist.json +++ b/bitsong/assetlist.json @@ -64,7 +64,8 @@ "primary_color_hex": "#e8e5e7" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Nicola Fasano a BitSong Music FanToken", @@ -92,7 +93,8 @@ "primary_color_hex": "#c3a59e" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Delta 9 a BitSong Music FanToken", @@ -120,7 +122,8 @@ "primary_color_hex": "#0d0d0d" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "FONTI a BitSong Music FanToken", @@ -148,7 +151,8 @@ "primary_color_hex": "#1c2536" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "BlackJack a BitSong Music FanToken", @@ -176,7 +180,8 @@ "primary_color_hex": "#f5f5f5" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Rawanne a BitSong Music FanToken", @@ -204,7 +209,8 @@ "primary_color_hex": "#1a1521" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Enmoda a BitSong Music FanToken", @@ -232,7 +238,8 @@ "primary_color_hex": "#161616" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "404Deep Records a BitSong Music FanToken", @@ -260,7 +267,8 @@ "primary_color_hex": "#cfb1b3" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "N43 a BitSong Music FanToken", @@ -288,7 +296,8 @@ "primary_color_hex": "#0a0a0a" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Puro Lobo a BitSong Music FanToken", @@ -316,7 +325,8 @@ "primary_color_hex": "#b8b6b6" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Vibranium a BitSong Music FanToken", @@ -344,7 +354,8 @@ "primary_color_hex": "#0f0c27" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Karina a BitSong Music FanToken", @@ -372,7 +383,8 @@ "primary_color_hex": "#21283c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Luca Testa a BitSong Music FanToken", @@ -400,7 +412,8 @@ "primary_color_hex": "#151515" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Carolina Marquez a BitSong Music FanToken", @@ -428,7 +441,8 @@ "primary_color_hex": "#847760" } } - ] + ], + "type_asset": "sdk.coin" }, { "deprecated": true, @@ -446,7 +460,8 @@ "base": "ft347B1612A2B7659913679CF6CD45B8B130C50A00", "name": "[Redacted] Fantoken (ft3...A00)", "display": "ft347B1612A2B7659913679CF6CD45B8B130C50A00/6", - "symbol": "LDON" + "symbol": "LDON", + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/bitsong/chain.json b/bitsong/chain.json index df9c6f5278..29f4e238d1 100644 --- a/bitsong/chain.json +++ b/bitsong/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://bitsong.io/", "pretty_name": "BitSong", + "chain_type": "cosmos", "chain_id": "bitsong-2b", "bech32_prefix": "bitsong", "slip44": 639, @@ -22,7 +23,6 @@ "cosmos_sdk_version": "v0.45.16", "cosmwasm_version": "v0.33.0", "cosmwasm_enabled": true, - "ibc_go_version": "v4.4.2", "genesis": { "genesis_url": "https://raw.githubusercontent.com/bitsongofficial/networks/master/bitsong-2b/genesis.json" }, @@ -36,8 +36,19 @@ "cosmos_sdk_version": "0.45.11", "cosmwasm_version": "0.29.2", "cosmwasm_enabled": true, - "ibc_go_version": "v3.3.1", - "next_version_name": "v0.15.0" + "next_version_name": "v0.15.0", + "sdk": { + "type": "cosmos", + "version": "0.45.11" + }, + "cosmwasm": { + "version": "0.29.2", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v3.3.1" + } }, { "name": "v0.15.0", @@ -50,10 +61,33 @@ "cosmos_sdk_version": "0.45.16", "cosmwasm_version": "0.33.0", "cosmwasm_enabled": true, - "ibc_go_version": "v4.4.2", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "0.45.16" + }, + "cosmwasm": { + "version": "0.33.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + }, + "cosmwasm": { + "version": "v0.33.0", + "enabled": true + } }, "fees": { "fee_tokens": [ @@ -125,6 +159,11 @@ "id": "3ddd0edc57217161fbd5dee9bb40b506e7089d00", "address": "167.114.159.157:36656", "provider": "MathNodes" + }, + { + "id": "44026983e48ab8a5f2e28374b33351a3958d6cec", + "address": "bitsong.seed.stavr.tech:21036", + "provider": "πŸ”₯STAVRπŸ”₯" } ] }, @@ -185,6 +224,10 @@ { "address": "https://bitsong-rpc.bluestake.net:443", "provider": "BlueStake πŸš€" + }, + { + "address": "https://bitsong.rpc.m.stavr.tech:443", + "provider": "πŸ”₯STAVRπŸ”₯" } ], "rest": [ @@ -269,6 +312,10 @@ { "address": "bitsong-grpc.noders.services:20090", "provider": "[NODERS]TEAM" + }, + { + "address": "bitsong.grpc.m.stavr.tech:9988", + "provider": "πŸ”₯STAVRπŸ”₯" } ] }, diff --git a/blockx/assetlist.json b/blockx/assetlist.json index 11ec901e0e..71ac6a80c4 100644 --- a/blockx/assetlist.json +++ b/blockx/assetlist.json @@ -29,4 +29,4 @@ } } ] -} +} \ No newline at end of file diff --git a/blockx/chain.json b/blockx/chain.json index 5a69e90f58..bc039af20f 100644 --- a/blockx/chain.json +++ b/blockx/chain.json @@ -5,11 +5,54 @@ "network_type": "mainnet", "website": "https://www.blockxnet.com/", "pretty_name": "BlockX", + "chain_type": "cosmos", "chain_id": "blockx_19191-1", "bech32_prefix": "blockx", "node_home": "$HOME/.blockxd", "daemon_name": "blockxd", - "key_algos": ["ethsecp256k1"], + "key_algos": [ + "ethsecp256k1" + ], + "apis": { + "rpc": [ + { + "address": "https://rpc-blockx.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "https://blockx_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" + } + ], + "rest": [ + { + "address": "https://api-blockx.nodeist.net", + "provider": "Nodeist" + }, + { + "address": "https://blockx_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" + } + ] + }, + "explorers": [ + { + "kind": "ping.pub", + "url": "https://ping.pub/blockx", + "tx_page": "https://ping.pub/blockx/tx/${txHash}" + }, + { + "kind": "Nodeist Explorer", + "url": "https://explorer.ist/blockx/", + "tx_page": "https://explorer.ist/blockx/tx/${txHash}" + }, + { + "kind": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯", + "url": "https://explorer.whenmoonwhenlambo.money/blockx", + "tx_page": "https://explorer.whenmoonwhenlambo.money/blockx/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/blockx/account/${accountAddress}" + } + ], "staking": { "staking_tokens": [ { diff --git a/bluechip/assetlist.json b/bluechip/assetlist.json index 38871fa905..d680cc1510 100644 --- a/bluechip/assetlist.json +++ b/bluechip/assetlist.json @@ -25,7 +25,8 @@ "primary_color_hex": "#0c94d3" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/bluechip/chain.json b/bluechip/chain.json index 6b04cb1d89..ec8f7a9967 100644 --- a/bluechip/chain.json +++ b/bluechip/chain.json @@ -5,7 +5,8 @@ "website": "https://www.bluechip.link", "network_type": "mainnet", "pretty_name": "BlueChip", - "chain_id": "bluechip-1", + "chain_type": "cosmos", + "chain_id": "bluechip-2", "bech32_prefix": "bcp", "daemon_name": "bluechipd", "node_home": "$HOME/.bluechip", @@ -38,7 +39,7 @@ "compatible_versions": [ "v1" ], - "cosmos_sdk_version": "0.46.7", + "cosmos_sdk_version": "0.47.11", "cosmwasm_enabled": true, "genesis": { "genesis_url": "https://github.com/Bluechip23/bluechip/blob/main/genesis.json" @@ -50,16 +51,30 @@ "compatible_versions": [ "v1" ], - "cosmos_sdk_version": "0.46.7", - "cosmwasm_enabled": true + "cosmos_sdk_version": "0.47.11", + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.47.11" + }, + "cosmwasm": { + "enabled": true + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47.11" + }, + "cosmwasm": { + "enabled": true + } }, "peers": { "seeds": [], "persistent_peers": [ { - "id": "3x4pynlp86prhcmtns742kgsgu7pjtzjpk8d93", + "id": "8cc3f0821599561159a6157617820f1770c447d7", "address": "http://67.28.8.88:26659/", "provider": "CryptoDungeon" } diff --git a/bluzelle/assetlist.json b/bluzelle/assetlist.json index 2fbaa4d903..047119b0bf 100644 --- a/bluzelle/assetlist.json +++ b/bluzelle/assetlist.json @@ -42,7 +42,8 @@ "socials": { "website": "http://bluzelle.com/", "twitter": "https://twitter.com/BluzelleHQ" - } + }, + "type_asset": "sdk.coin" }, { "description": "The ELT token of Bluzelle's Gamma 4 Gaming Ecosystem", @@ -73,7 +74,8 @@ "primary_color_hex": "#0c3ab5" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The game token of Bluzelle's Gamma 4 Gaming Ecosystem", @@ -104,7 +106,8 @@ "primary_color_hex": "#ee8828" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/bluzelle/chain.json b/bluzelle/chain.json index 47e61e1ccb..2eba9df7e2 100644 --- a/bluzelle/chain.json +++ b/bluzelle/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://bluzelle.com/", "pretty_name": "Bluzelle", + "chain_type": "cosmos", "chain_id": "bluzelle-9", "bech32_prefix": "bluzelle", "daemon_name": "curiumd", @@ -45,7 +46,6 @@ "type": "cometbft", "version": "0.34.23" }, - "ibc_go_version": "v3.4.0", "genesis": { "genesis_url": "https://a.client.sentry.net.bluzelle.com:26657/genesis" }, @@ -60,6 +60,10 @@ "consensus": { "type": "tendermint", "version": "0.34.14" + }, + "sdk": { + "type": "cosmos", + "version": "0.44.3" } }, { @@ -73,7 +77,11 @@ "type": "tendermint", "version": "0.34.23" }, - "next_version_name": "10.0" + "next_version_name": "10.0", + "sdk": { + "type": "cosmos", + "version": "0.45.11" + } }, { "name": "10.0", @@ -91,10 +99,25 @@ "type": "cometbft", "version": "v0.34.23" }, - "ibc_go_version": "v3.4.0", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.45.11" + }, + "ibc": { + "type": "go", + "version": "v3.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.45.11" + }, + "ibc": { + "type": "go", + "version": "v3.4.0" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png", @@ -139,6 +162,10 @@ { "address": "https://c.client.sentry.net.bluzelle.com:26657", "provider": "Bluzelle" + }, + { + "address": "https://bluzelle_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "rest": [ @@ -157,6 +184,10 @@ { "address": "https://bluzelle-api.genznodes.dev/", "provider": "genznodes" + }, + { + "address": "https://bluzelle_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "grpc": [ @@ -204,6 +235,12 @@ "kind": "Nodine.ID", "url": "https://explorer.co.id/bluzelle", "tx_page": "https://explorer.co.id/bluzelle/transaction/${txHash}" + }, + { + "kind": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯", + "url": "https://explorer.whenmoonwhenlambo.money/bluzelle", + "tx_page": "https://explorer.whenmoonwhenlambo.money/bluzelle/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/bluzelle/account/${accountAddress}" } ], "keywords": [ diff --git a/bostrom/assetlist.json b/bostrom/assetlist.json index 15385430cd..52452a8478 100644 --- a/bostrom/assetlist.json +++ b/bostrom/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#4cea4e" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The liquid staking token of Bostrom", @@ -59,7 +60,8 @@ "primary_color_hex": "#ffffff" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The resource token of Bostrom", @@ -95,7 +97,8 @@ "primary_color_hex": "#f4ecce" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The resource token of Bostrom", @@ -131,7 +134,8 @@ "primary_color_hex": "#fba809" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The staking token of Cyber", @@ -160,7 +164,8 @@ "primary_color_hex": "#1e8fa9" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/bostrom/chain.json b/bostrom/chain.json index c21760b08c..8213ebc6fd 100644 --- a/bostrom/chain.json +++ b/bostrom/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "bostrom", + "chain_type": "cosmos", "chain_id": "bostrom", "bech32_prefix": "bostrom", "daemon_name": "cyber", @@ -51,9 +52,15 @@ "binaries": { "linux/amd64": "https://github.com/cybercongress/go-cyber/releases/download/v0.2.0/cyber_v0.2.0_linux-amd64.tar.gz", "darwin/amd64": "https://github.com/cybercongress/go-cyber/releases/download/v0.2.0/cyber_v0.2.0_darwin-amd64.tar.gz" + }, + "cosmwasm": { + "enabled": true } } - ] + ], + "cosmwasm": { + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png", diff --git a/bouachain/assetlist.json b/bouachain/assetlist.json new file mode 100644 index 0000000000..4bf99f6a7a --- /dev/null +++ b/bouachain/assetlist.json @@ -0,0 +1,43 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "bouachain", + "assets": [ + { + "description": "The native token of the Bouachain blockchain, used for transaction fees, staking, and governance.", + "denom_units": [ + { + "denom": "ubouacoin", + "exponent": 0 + }, + { + "denom": "bouacoin", + "exponent": 8 + } + ], + "base": "ubouacoin", + "name": "BOUACOIN", + "display": "bouacoin", + "symbol": "BOUA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.svg", + "theme": { + "primary_color_hex": "#000000" + } + } + ], + "socials": { + "website": "https://Bouachain.com", + "twitter": "https://x.com/bouachain", + "github": "https://github.com/bouachain", + "telegram": "https://t.me/boua-chain" + }, + "type_asset": "sdk.coin" + } + ] +} diff --git a/bouachain/chain.json b/bouachain/chain.json new file mode 100644 index 0000000000..6edd594387 --- /dev/null +++ b/bouachain/chain.json @@ -0,0 +1,113 @@ + +{ + "$schema": "../chain.schema.json", + "chain_name": "bouachain", + "chain_type": "cosmos", + "status": "live", + "website": "https://bouachain.com", + "network_type": "mainnet", + "pretty_name": "Bouachain", + "chain_id": "bouachain", + "bech32_prefix": "boua", + "daemon_name": "bouachain", + "node_home": "$HOME/.bouachain", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "ubouacoin", + "fixed_min_gas_price": 0, + "low_gas_price": 0.0006, + "average_gas_price": 0.012, + "high_gas_price": 0.04 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "ubouacoin" + } + ], + "lock_duration": { + "time": "1814400s" + } + }, + "codebase": { + "git_repo": "https://github.com/Bouachain/bouachain.git", + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v0.9.0" + ], + "genesis": { + "name": "v1", + "genesis_url": "https://github.com/Bouachain/bouachain/raw/master/genesis.json" + }, + "versions": [ + { + "name": "v1.0.0", + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v0.9.0" + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/rollchains/cosmos-sdk", + "version": "v0.50.8", + "tag": "v0.50.8" + } + } + ] +}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.svg" + }, + "peers": {}, + "apis": { + "rpc": [ + { + "address": "https://rpc.bouachain.com", + "provider": "BouaValidator" + } + ], + "rest": [ + { + "address": "https://lcd.bouachain.com", + "provider": "BouaValidator" + } + ], + "grpc": [ + { + "address": "https://grpc.bouachain.com", + "provider": "BouaValidator" + } + ] + }, + + "explorers": [ + { + "kind": "bouachain", + "url": "https://bouascan.com", + "tx_page": "https://bouascan.com/bouachain/tx/${txHash}", + "account_page": "https://bouascan.com/bouachain/${accountAddress}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.svg", + "theme": { + "primary_color_hex": "#000000" + } + } + ], + "keywords": [ + "bouachain", + "spawn" + ] + } + diff --git a/bouachain/images/bouachain.png b/bouachain/images/bouachain.png new file mode 100644 index 0000000000..286963eb4f Binary files /dev/null and b/bouachain/images/bouachain.png differ diff --git a/bouachain/images/bouachain.svg b/bouachain/images/bouachain.svg new file mode 100644 index 0000000000..62a1011042 --- /dev/null +++ b/bouachain/images/bouachain.svg @@ -0,0 +1,12 @@ + + + + + + + + \ No newline at end of file diff --git a/canto/assetlist.json b/canto/assetlist.json index 78e921ae6a..64b4811a35 100644 --- a/canto/assetlist.json +++ b/canto/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://canto.io/", "twitter": "https://twitter.com/CantoPublic" - } + }, + "type_asset": "sdk.coin" }, { "description": "Tether USDt on Canto", diff --git a/canto/chain.json b/canto/chain.json index 9246e6acdc..1145bb7e54 100644 --- a/canto/chain.json +++ b/canto/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://canto.io/", "pretty_name": "Canto", + "chain_type": "cosmos", "chain_id": "canto_7700-1", "bech32_prefix": "canto", "node_home": "$HOME/.cantod", diff --git a/carbon/assetlist.json b/carbon/assetlist.json index d42ab8d009..82d55977a2 100644 --- a/carbon/assetlist.json +++ b/carbon/assetlist.json @@ -121,7 +121,8 @@ "primary_color_hex": "#f3bb0c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "bNEO token on Carbon", @@ -168,7 +169,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "BUSD (BEP-20) token on Carbon", @@ -217,7 +219,8 @@ "primary_color_hex": "#f3bb0c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Carbon Wrapped GLP on Carbon", @@ -264,7 +267,8 @@ "primary_color_hex": "#070707" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Grouped USD on Carbon", @@ -297,7 +301,8 @@ "primary_color_hex": "#043d4d" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "ETH (Arbitrum) token on Carbon", @@ -339,7 +344,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "ETH (ERC20) token on Carbon", @@ -381,7 +387,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "STARS token on Carbon", @@ -430,7 +437,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" } } ] @@ -517,7 +524,7 @@ }, "chain": { "channel_id": "channel-0", - "path": "transfer/channel-6994/utia" + "path": "transfer/channel-0/transfer/channel-6994/utia" } } ], @@ -561,19 +568,22 @@ "symbol": "milkTIA", "traces": [ { - "type": "liquid-stake", + "type": "ibc", "counterparty": { "chain_name": "osmosis", - "base_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA" + "base_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "channel_id": "channel-188" }, - "provider": "MilkyWay" + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA" + } } ], "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg" }, - "coingecko_id": "milkyway-staked-tia", "images": [ { "image_sync": { @@ -1090,6 +1100,7 @@ } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "images": [ @@ -1098,9 +1109,15 @@ "chain_name": "ethereum", "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "USD Coin (BEP-20) token on Carbon", @@ -1146,7 +1163,8 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "ZIL token on Carbon", @@ -1193,7 +1211,8 @@ "primary_color_hex": "#2cccc4" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/carbon/chain.json b/carbon/chain.json index 699438434c..fef0c730ce 100644 --- a/carbon/chain.json +++ b/carbon/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Carbon", + "chain_type": "cosmos", "chain_id": "carbon-1", "bech32_prefix": "swth", "daemon_name": "carbond", @@ -128,9 +129,9 @@ { "denom": "ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F", "fixed_min_gas_price": 0, - "low_gas_price": 7.5e-06, - "average_gas_price": 7.5e-06, - "high_gas_price": 7.5e-06, + "low_gas_price": 0.0000075, + "average_gas_price": 0.0000075, + "high_gas_price": 0.0000075, "gas_costs": { "cosmos_send": 10000000, "ibc_transfer": 10000000 @@ -139,9 +140,9 @@ { "denom": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", "fixed_min_gas_price": 0, - "low_gas_price": 5e-05, - "average_gas_price": 5e-05, - "high_gas_price": 5e-05, + "low_gas_price": 0.00005, + "average_gas_price": 0.00005, + "high_gas_price": 0.00005, "gas_costs": { "cosmos_send": 10000000, "ibc_transfer": 10000000 @@ -194,9 +195,9 @@ { "denom": "ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5", "fixed_min_gas_price": 0, - "low_gas_price": 7.5e-06, - "average_gas_price": 7.5e-06, - "high_gas_price": 7.5e-06, + "low_gas_price": 0.0000075, + "average_gas_price": 0.0000075, + "high_gas_price": 0.0000075, "gas_costs": { "cosmos_send": 10000000, "ibc_transfer": 10000000 @@ -227,9 +228,9 @@ { "denom": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", "fixed_min_gas_price": 0, - "low_gas_price": 1e-05, - "average_gas_price": 1e-05, - "high_gas_price": 1e-05, + "low_gas_price": 0.00001, + "average_gas_price": 0.00001, + "high_gas_price": 0.00001, "gas_costs": { "cosmos_send": 10000000, "ibc_transfer": 10000000 @@ -238,9 +239,9 @@ { "denom": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", "fixed_min_gas_price": 0, - "low_gas_price": 1e-05, - "average_gas_price": 1e-05, - "high_gas_price": 1e-05, + "low_gas_price": 0.00001, + "average_gas_price": 0.00001, + "high_gas_price": 0.00001, "gas_costs": { "cosmos_send": 10000000, "ibc_transfer": 10000000 @@ -301,13 +302,13 @@ }, "codebase": { "git_repo": "https://github.com/Switcheo/carbon-bootstrap", - "recommended_version": "v2.44.1", + "recommended_version": "v2.48.0", "compatible_versions": [ - "v2.44.1" + "v2.48.0" ], "binaries": { - "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.44.1/carbond-mainnet.linux-amd64.tar.gz", - "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.44.1/carbond-mainnet.linux-arm64.tar.gz" + "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.48.0/carbond-mainnet.linux-amd64.tar.gz", + "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.48.0/carbond-mainnet.linux-arm64.tar.gz" }, "genesis": { "genesis_url": "https://github.com/Switcheo/carbon-bootstrap/raw/master/carbon-1/genesis.json" @@ -609,6 +610,110 @@ "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.44.1/carbond-mainnet.linux-amd64.tar.gz", "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.44.1/carbond-mainnet.linux-arm64.tar.gz" }, + "next_version_name": "v2.45.0" + }, + { + "name": "v2.45.0", + "proposal": 361, + "height": 60040321, + "recommended_version": "v2.45.0", + "compatible_versions": [ + "v2.45.0" + ], + "binaries": { + "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.45.0/carbond-mainnet.linux-amd64.tar.gz", + "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.45.0/carbond-mainnet.linux-arm64.tar.gz" + }, + "next_version_name": "v2.46.0" + }, + { + "name": "v2.46.0", + "proposal": 365, + "height": 60667951, + "recommended_version": "v2.46.3", + "compatible_versions": [ + "v2.46.1", + "v2.46.2", + "v2.46.3", + "v2.46.4" + ], + "binaries": { + "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.46.3/carbond-mainnet.linux-amd64.tar.gz", + "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.46.3/carbond-mainnet.linux-arm64.tar.gz" + }, + "next_version_name": "v2.47.0" + }, + { + "name": "v2.47.0", + "proposal": 368, + "height": 62051891, + "recommended_version": "v2.47.0", + "compatible_versions": [ + "v2.47.0" + ], + "binaries": { + "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.47.0/carbond-mainnet.linux-amd64.tar.gz", + "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.47.0/carbond-mainnet.linux-arm64.tar.gz" + }, + "next_version_name": "v2.48.0" + }, + { + "name": "v2.48.0", + "proposal": 369, + "height": 62155551, + "recommended_version": "v2.48.0", + "compatible_versions": [ + "v2.48.0" + ], + "binaries": { + "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.48.0/carbond-mainnet.linux-amd64.tar.gz", + "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.48.0/carbond-mainnet.linux-arm64.tar.gz" + }, + "next_version_name": "v2.49.0" + }, + { + "name": "v2.49.0", + "proposal": 370, + "height": 62330851, + "recommended_version": "v2.49.2", + "compatible_versions": [ + "v2.49.0", + "v2.49.1", + "v2.49.2" + ], + "binaries": { + "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.49.2/carbond-mainnet.linux-amd64.tar.gz", + "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.49.2/carbond-mainnet.linux-arm64.tar.gz" + }, + "next_version_name": "v2.50.0" + }, + { + "name": "v2.50.0", + "proposal": 371, + "height": 62927771, + "recommended_version": "v2.50.0", + "compatible_versions": [ + "v2.50.0" + ], + "binaries": { + "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.50.0/carbond-mainnet.linux-amd64.tar.gz", + "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.50.0/carbond-mainnet.linux-arm64.tar.gz" + }, + "next_version_name": "v2.51.0" + }, + { + "name": "v2.51.0", + "proposal": 372, + "height": 63219571, + "recommended_version": "v2.51.1", + "compatible_versions": [ + "v2.51.0", + "v2.51.1" + ], + "binaries": { + "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.51.1/carbond-mainnet.linux-amd64.tar.gz", + "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.51.1/carbond-mainnet.linux-arm64.tar.gz" + }, "next_version_name": "" } ] @@ -665,7 +770,7 @@ "provider": "switcheo-labs" }, { - "address": "https://carbon-rpc.lavenderfive.com", + "address": "https://rpc.lavenderfive.com:443/carbon", "provider": "Lavender.Five Nodes 🐝" }, { @@ -683,7 +788,7 @@ "provider": "switcheo-labs" }, { - "address": "https://carbon-api.lavenderfive.com", + "address": "https://rest.lavenderfive.com:443/carbon", "provider": "Lavender.Five Nodes 🐝" }, { @@ -697,7 +802,7 @@ ], "grpc": [ { - "address": "https://carbon-grpc.lavenderfive.com:443", + "address": "carbon.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/celestia/assetlist.json b/celestia/assetlist.json index cf0f82629f..b0a3155cd8 100644 --- a/celestia/assetlist.json +++ b/celestia/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://celestia.org/", "twitter": "https://twitter.com/CelestiaOrg" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/celestia/chain.json b/celestia/chain.json index cd20c610aa..77f6d1d8c9 100644 --- a/celestia/chain.json +++ b/celestia/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "celestia", + "chain_type": "cosmos", "chain_id": "celestia", "pretty_name": "Celestia", "status": "live", @@ -33,43 +34,78 @@ }, "codebase": { "git_repo": "https://github.com/celestiaorg/celestia-app", - "recommended_version": "v1.10.1", + "recommended_version": "v2.1.2", "compatible_versions": [ - "v1.3.0", - "v1.6.0", - "v1.7.0", - "v1.9.0", - "v1.10.1" + "v2.0.0", + "v2.1.0", + "v2.1.1", + "v2.1.2" ], - "cosmos_sdk_version": "celestiaorg/cosmos-sdk v1.23.0-sdk-v0.46.16", - "ibc_go_version": "v6.2.2", + "cosmos_sdk_version": "celestiaorg/cosmos-sdk v1.24.1-sdk-v0.46.16", "consensus": { "type": "tendermint", - "version": "celestiaorg/celestia-core v1.38.0-tm-v0.34.29" + "version": "v1.40.0", + "repo": "https://github.com/celestiaorg/celestia-core", + "tag": "v1.40.0-tm-v0.34.29" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/celestiaorg/networks/master/celestia/genesis.json" }, "versions": [ { - "name": "v1.3.0", - "recommended_version": "v1.10.1", + "name": "v1", + "recommended_version": "v1.13.0", "compatible_versions": [ "v1.3.0", "v1.6.0", "v1.7.0", "v1.9.0", - "v1.10.1" + "v1.10.1", + "v1.11.0", + "v1.13.0" ], "cosmos_sdk_version": "celestiaorg/cosmos-sdk v1.23.0-sdk-v0.46.16", - "ibc_go_version": "v6.2.2", "consensus": { "type": "tendermint", - "version": "celestiaorg/celestia-core v1.35.0-tm-v0.34.29" + "version": "v1.35.0", + "repo": "https://github.com/celestiaorg/celestia-core", + "tag": "v1.35.0-tm-v0.34.29" }, + "next_version_name": "v2", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/celestiaorg/cosmos-sdk", + "version": "v1.23.0", + "tag": "v1.23.0-sdk-v0.46.16" + }, + "ibc": { + "type": "go", + "version": "v6.2.1" + } + }, + { + "name": "v2", + "height": 2371495, + "recommended_version": "v2.1.2", + "compatible_versions": [ + "v2.0.0", + "v2.1.0", + "v2.1.1", + "v2.1.2" + ], "next_version_name": "" } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/celestiaorg/cosmos-sdk", + "version": "v1.24.1", + "tag": "v1.24.1-sdk-v0.46.16" + }, + "ibc": { + "type": "go", + "version": "v6.2.1" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", @@ -226,7 +262,7 @@ "provider": "NodeStake" }, { - "address": "https://celestia-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/celestia", "provider": "Lavender.Five Nodes 🐝" }, { @@ -344,7 +380,7 @@ "provider": "NodeStake" }, { - "address": "https://celestia-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/celestia", "provider": "Lavender.Five Nodes 🐝" }, { @@ -434,7 +470,7 @@ "provider": "AutoStake | Delegate for StakeDrops" }, { - "address": "https://celestia-grpc.lavenderfive.com:443", + "address": "celestia.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/cerberus/assetlist.json b/cerberus/assetlist.json index 3218b4f4c0..564471566a 100644 --- a/cerberus/assetlist.json +++ b/cerberus/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#c6c6c9" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/cerberus/chain.json b/cerberus/chain.json index ba31090114..a826821698 100644 --- a/cerberus/chain.json +++ b/cerberus/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://cerberus.zone/", "pretty_name": "Cerberus", + "chain_type": "cosmos", "chain_id": "cerberus-chain-1", "bech32_prefix": "cerberus", "daemon_name": "cerberusd", diff --git a/chain.schema.json b/chain.schema.json index 9401a711ba..9276f6381d 100644 --- a/chain.schema.json +++ b/chain.schema.json @@ -4,7 +4,7 @@ "title": "Chain", "description": "Chain.json is a metadata file that contains information about a blockchain.", "type": "object", - "required": ["chain_name", "chain_id", "bech32_prefix"], + "required": [ "chain_name", "chain_type" ], "properties": { "$schema": { "type": "string", @@ -16,6 +16,33 @@ "minLength": 1, "pattern": "[a-z0-9]+" }, + "chain_type": { + "type": "string", + "minLength": 1, + "enum": [ + "cosmos", + "eip155", + "bip122", + "polkadot", + "solana", + "algorand", + "arweave", + "ergo", + "fil", + "hedera", + "monero", + "reef", + "stacks", + "starknet", + "stellar", + "tezos", + "vechain", + "waves", + "xrpl", + "unknown" + ], + "description": "The 'type' of chain as the corresponding CAIP-2 Namespace value. E.G., 'cosmos' or 'eip155'. Namespaces cna be found here: https://github.com/ChainAgnostic/namespaces/tree/main." + }, "chain_id": { "type": "string", "minLength": 1 @@ -34,16 +61,11 @@ "minLength": 1, "format": "uri" }, - "update_link": { - "type": "string", - "minLength": 1, - "format": "uri" - }, "status": { - "enum": ["live", "upcoming", "killed"] + "enum": [ "live", "upcoming", "killed" ] }, "network_type": { - "enum": ["mainnet", "testnet", "devnet"] + "enum": [ "mainnet", "testnet", "devnet" ] }, "bech32_prefix": { "type": "string", @@ -100,7 +122,7 @@ "type": "array", "items": { "type": "string", - "enum": ["secp256k1", "ethsecp256k1", "ed25519", "sr25519", "bn254"], + "enum": [ "secp256k1", "ethsecp256k1", "ed25519", "sr25519", "bn254" ], "uniqueItems": true } }, @@ -115,7 +137,7 @@ }, "fees": { "type": "object", - "required": ["fee_tokens"], + "required": [ "fee_tokens" ], "properties": { "fee_tokens": { "type": "array", @@ -128,7 +150,7 @@ }, "staking": { "type": "object", - "required": ["staking_tokens"], + "required": [ "staking_tokens" ], "properties": { "staking_tokens": { "type": "array", @@ -167,12 +189,6 @@ "type": "string", "minLength": 1 }, - "go_version": { - "type": "string", - "minLength": 1, - "pattern": "^[0-9]+\\.[0-9]+(\\.[0-9]+)?$", - "description": "Minimum accepted go version to build the binary." - }, "compatible_versions": { "type": "array", "items": { @@ -180,61 +196,21 @@ "minLength": 1 } }, + "language": { + "$ref": "#/$defs/language" + }, "binaries": { - "type": "object", - "properties": { - "linux/amd64": { - "type": "string", - "minLength": 1, - "format": "uri" - }, - "linux/arm64": { - "type": "string", - "minLength": 1, - "format": "uri" - }, - "darwin/amd64": { - "type": "string", - "minLength": 1, - "format": "uri" - }, - "darwin/arm64": { - "type": "string", - "minLength": 1, - "format": "uri" - }, - "windows/amd64": { - "type": "string", - "minLength": 1, - "format": "uri" - }, - "windows/arm64": { - "type": "string", - "minLength": 1, - "format": "uri" - } - }, - "additionalProperties": false + "$ref": "#/$defs/binaries" }, "cosmos_sdk_version": { "type": "string", "minLength": 1 }, + "sdk": { + "$ref": "#/$defs/sdk" + }, "consensus": { - "type": "object", - "required": ["type"], - "properties": { - "type": { - "type": "string", - "minLength": 1, - "enum": ["tendermint", "cometbft", "sei-tendermint"] - }, - "version": { - "type": "string", - "minLength": 1 - } - }, - "additionalProperties": false + "$ref": "#/$defs/consensus" }, "cosmwasm_version": { "type": "string", @@ -249,23 +225,16 @@ "description": "Relative path to the cosmwasm directory. ex. $HOME/.juno/data/wasm", "pattern": "^\\$HOME.*$" }, - "ibc_go_version": { - "type": "string", - "minLength": 1 + "cosmwasm": { + "$ref": "#/$defs/cosmwasm" }, - "ics_enabled": { - "type": "array", - "description": "List of IBC apps (usually corresponding to a ICS standard) which have been enabled on the network.", - "items": { - "type": "string", - "minLength": 1, - "description": "IBC app or ICS standard.", - "enum": ["ics20-1", "ics27-1", "mauth"] - } + "ibc": { + "$ref": "#/$defs/ibc" }, "genesis": { "type": "object", - "required": ["genesis_url"], + "required": [ "genesis_url" ], + "additionalProperties": false, "properties": { "name": { "type": "string", @@ -281,14 +250,13 @@ "minLength": 1, "format": "uri" } - }, - "additionalProperties": false + } }, "versions": { "type": "array", "items": { "type": "object", - "required": ["name"], + "required": [ "name" ], "properties": { "name": { "type": "string", @@ -322,12 +290,6 @@ "type": "string", "minLength": 1 }, - "go_version": { - "type": "string", - "minLength": 1, - "pattern": "^[0-9]+\\.[0-9]+(\\.[0-9]+)?$", - "description": "Minimum accepted go version to build the binary." - }, "compatible_versions": { "type": "array", "items": { @@ -335,25 +297,18 @@ "minLength": 1 } }, + "language": { + "$ref": "#/$defs/language" + }, "cosmos_sdk_version": { "type": "string", "minLength": 1 }, + "sdk": { + "$ref": "#/$defs/sdk" + }, "consensus": { - "type": "object", - "required": ["type"], - "properties": { - "type": { - "type": "string", - "minLength": 1, - "enum": ["tendermint", "cometbft", "sei-tendermint"] - }, - "version": { - "type": "string", - "minLength": 1 - } - }, - "additionalProperties": false + "$ref": "#/$defs/consensus" }, "cosmwasm_version": { "type": "string", @@ -368,55 +323,14 @@ "description": "Relative path to the cosmwasm directory. ex. $HOME/.juno/data/wasm", "pattern": "^\\$HOME.*$" }, - "ibc_go_version": { - "type": "string", - "minLength": 1 + "cosmwasm": { + "$ref": "#/$defs/cosmwasm" }, - "ics_enabled": { - "type": "array", - "description": "List of IBC apps (usually corresponding to a ICS standard) which have been enabled on the network.", - "items": { - "type": "string", - "minLength": 1, - "description": "IBC app or ICS standard.", - "enum": ["ics20-1", "ics27-1", "mauth"] - } + "ibc": { + "$ref": "#/$defs/ibc" }, "binaries": { - "type": "object", - "properties": { - "linux/amd64": { - "type": "string", - "minLength": 1, - "format": "uri" - }, - "linux/arm64": { - "type": "string", - "minLength": 1, - "format": "uri" - }, - "darwin/amd64": { - "type": "string", - "minLength": 1, - "format": "uri" - }, - "darwin/arm64": { - "type": "string", - "minLength": 1, - "format": "uri" - }, - "windows/amd64": { - "type": "string", - "minLength": 1, - "format": "uri" - }, - "windows/arm64": { - "type": "string", - "minLength": 1, - "format": "uri" - } - }, - "additionalProperties": false + "$ref": "#/$defs/binaries" } }, "additionalProperties": false @@ -474,10 +388,10 @@ }, "anyOf": [ { - "required": ["png"] + "required": [ "png" ] }, { - "required": ["svg"] + "required": [ "svg" ] } ], "additionalProperties": false @@ -585,7 +499,7 @@ "items": { "type": "string", "minLength": 1, - "enum": ["ethermint", "injective"], + "enum": [ "ethermint", "injective" ], "uniqueItems": true } } @@ -594,7 +508,7 @@ "$defs": { "peer": { "type": "object", - "required": ["id", "address"], + "required": [ "id", "address" ], "properties": { "id": { "type": "string", @@ -613,7 +527,7 @@ }, "endpoint": { "type": "object", - "required": ["address"], + "required": [ "address" ], "properties": { "address": { "type": "string", @@ -666,7 +580,7 @@ }, "fee_token": { "type": "object", - "required": ["denom"], + "required": [ "denom" ], "properties": { "denom": { "type": "string", @@ -702,7 +616,7 @@ }, "staking_token": { "type": "object", - "required": ["denom"], + "required": [ "denom" ], "properties": { "denom": { "type": "string", @@ -711,10 +625,187 @@ }, "additionalProperties": false }, + "repo": { + "type": "string", + "format": "uri", + "minLength": 1, + "description": "URL of the code repository." + }, + "version": { + "type": "string", + "minLength": 1, + "pattern": "^v?\\d+(\\.\\d+){0,2}$", + "description": "Simple version string (e.g., 'v1.0.0')." + }, + "tag": { + "type": "string", + "minLength": 1, + "pattern": "^v?\\d+(\\.\\d+){0,2}(-[\\w\\.\\-]+)?$", + "description": "Detailed version identifier (e.g., 'v1.0.0-a1s2f43g')." + }, + "sdk": { + "type": "object", + "required": [ "type" ], + "minProperties": 1, + "additionalProperties": false, + "properties": { + "type": { + "type": "string", + "minLength": 1, + "enum": ["cosmos", "penumbra", "other"] + }, + "version": { + "$ref": "#/$defs/version" + }, + "repo": { + "$ref": "#/$defs/repo" + }, + "tag": { + "$ref": "#/$defs/tag" + } + } + }, + "ibc": { + "type": "object", + "required": [ "type" ], + "minProperties": 1, + "additionalProperties": false, + "properties": { + "type": { + "type": "string", + "minLength": 1, + "enum": ["go", "rust", "other"] + }, + "version": { + "$ref": "#/$defs/version" + }, + "repo": { + "$ref": "#/$defs/repo" + }, + "tag": { + "$ref": "#/$defs/tag" + }, + "ics_enabled": { + "type": "array", + "description": "List of IBC apps (usually corresponding to a ICS standard) which have been enabled on the network.", + "items": { + "type": "string", + "minLength": 1, + "description": "IBC app or ICS standard.", + "enum": [ "ics20-1", "ics27-1", "mauth" ] + } + } + } + }, + "cosmwasm": { + "type": "object", + "minProperties": 1, + "additionalProperties": false, + "properties": { + "version": { + "$ref": "#/$defs/version" + }, + "repo": { + "$ref": "#/$defs/repo" + }, + "tag": { + "$ref": "#/$defs/tag" + }, + "enabled": { + "type": "boolean" + }, + "path": { + "type": "string", + "minLength": 1, + "description": "Relative path to the cosmwasm directory. ex. $HOME/.juno/data/wasm", + "pattern": "^\\$HOME.*$" + } + } + }, + "consensus": { + "type": "object", + "required": [ "type" ], + "properties": { + "type": { + "type": "string", + "minLength": 1, + "enum": [ "tendermint", "cometbft", "sei-tendermint" ] + }, + "version": { + "$ref": "#/$defs/version" + }, + "repo": { + "$ref": "#/$defs/repo" + }, + "tag": { + "$ref": "#/$defs/tag" + } + }, + "additionalProperties": false + }, + "language": { + "type": "object", + "required": [ "type" ], + "minProperties": 1, + "additionalProperties": false, + "properties": { + "type": { + "type": "string", + "minLength": 1, + "enum": ["go", "rust", "solidity", "other"] + }, + "version": { + "$ref": "#/$defs/version" + }, + "repo": { + "$ref": "#/$defs/repo" + }, + "tag": { + "$ref": "#/$defs/tag" + } + } + }, + "binaries": { + "type": "object", + "minProperties": 1, + "additionalProperties": false, + "properties": { + "linux/amd64": { + "type": "string", + "minLength": 1, + "format": "uri" + }, + "linux/arm64": { + "type": "string", + "minLength": 1, + "format": "uri" + }, + "darwin/amd64": { + "type": "string", + "minLength": 1, + "format": "uri" + }, + "darwin/arm64": { + "type": "string", + "minLength": 1, + "format": "uri" + }, + "windows/amd64": { + "type": "string", + "minLength": 1, + "format": "uri" + }, + "windows/arm64": { + "type": "string", + "minLength": 1, + "format": "uri" + } + } + }, "pointer": { "type": "object", "description": "The (primary) key used to identify an object within the Chain Registry.", - "required": ["chain_name"], + "required": [ "chain_name" ], "properties": { "chain_name": { "type": "string", @@ -729,5 +820,31 @@ }, "additionalProperties": false } - } + }, + "allOf": [ + { + "if": { + "properties": { + "chain_type": { + "const": "cosmos" + } + } + }, + "then": { + "required": [ "bech32_prefix" ] + } + }, + { + "if": { + "properties": { + "chain_type": { + "enum": [ "cosmos", "eip155" ] + } + } + }, + "then": { + "required": [ "chain_id" ] + } + } + ] } diff --git a/chain4energy/assetlist.json b/chain4energy/assetlist.json index 9c573560c2..693b2e2b1c 100644 --- a/chain4energy/assetlist.json +++ b/chain4energy/assetlist.json @@ -34,7 +34,8 @@ "socials": { "website": "https://c4e.io/", "twitter": "https://twitter.com/Chain4Energy" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/chain4energy/chain.json b/chain4energy/chain.json index 95ad742750..e9d96541cc 100644 --- a/chain4energy/chain.json +++ b/chain4energy/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://c4e.io/", "pretty_name": "C4E", + "chain_type": "cosmos", "chain_id": "perun-1", "bech32_prefix": "c4e", "daemon_name": "c4ed", @@ -49,7 +50,6 @@ "v1.0.1" ], "cosmos_sdk_version": "v0.45.5", - "ibc_go_version": "v3.0.1", "consensus": { "type": "tendermint", "version": "v0.34.19" @@ -59,7 +59,15 @@ "linux/arm64": "https://github.com/chain4energy/c4e-chain/releases/download/v1.0.0/c4ed_v1.0.0_darwin_amd64.tar.gz", "darwin/amd64": "https://github.com/chain4energy/c4e-chain/releases/download/v1.0.0/c4ed_v1.0.0_darwin_amd64.tar.gz" }, - "next_version_name": "v1.1.0" + "next_version_name": "v1.1.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.5" + }, + "ibc": { + "type": "go", + "version": "v3.0.1" + } }, { "name": "v1.1.0", @@ -71,7 +79,6 @@ "v1.1.0" ], "cosmos_sdk_version": "v0.45.9", - "ibc_go_version": "v3.0.1", "consensus": { "type": "tendermint", "version": "v0.34.21" @@ -81,7 +88,15 @@ "linux/arm64": "https://github.com/chain4energy/c4e-chain/releases/download/v1.1.0/c4ed_v1.1.0_linux_arm64.tar.gz", "darwin/amd64": "https://github.com/chain4energy/c4e-chain/releases/download/v1.1.0/c4ed_v1.1.0_darwin_amd64.tar.gz" }, - "next_version_name": "v1.2.0" + "next_version_name": "v1.2.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.9" + }, + "ibc": { + "type": "go", + "version": "v3.0.1" + } }, { "name": "v1.2.0", @@ -93,7 +108,6 @@ "v1.2.0" ], "cosmos_sdk_version": "v0.46.10", - "ibc_go_version": "v5.2.0", "consensus": { "type": "tendermint", "version": "v0.34.26" @@ -103,7 +117,15 @@ "linux/arm64": "https://github.com/chain4energy/c4e-chain/releases/download/v1.2.0/c4ed_v1.2.0_linux_arm64.tar.gz", "darwin/amd64": "https://github.com/chain4energy/c4e-chain/releases/download/v1.2.0/c4ed_v1.2.0_darwin_amd64.tar.gz" }, - "next_version_name": "v1.2.1" + "next_version_name": "v1.2.1", + "sdk": { + "type": "cosmos", + "version": "v0.46.10" + }, + "ibc": { + "type": "go", + "version": "v5.2.0" + } }, { "name": "v1.2.1", @@ -114,7 +136,6 @@ "v1.2.1" ], "cosmos_sdk_version": "v0.46.13", - "ibc_go_version": "v5.2.0", "consensus": { "type": "cometbft", "version": "v0.34.28" @@ -124,7 +145,15 @@ "linux/arm64": "https://github.com/chain4energy/c4e-chain/releases/download/v1.2.1/c4ed_v1.2.1_linux_arm64.tar.gz", "darwin/amd64": "https://github.com/chain4energy/c4e-chain/releases/download/v1.2.1/c4ed_v1.2.1_darwin_amd64.tar.gz" }, - "next_version_name": "v1.3.0" + "next_version_name": "v1.3.0", + "sdk": { + "type": "cosmos", + "version": "v0.46.13" + }, + "ibc": { + "type": "go", + "version": "v5.2.0" + } }, { "name": "v1.3.0", @@ -136,7 +165,6 @@ "v1.3.0" ], "cosmos_sdk_version": "v0.46.13", - "ibc_go_version": "v5.2.1", "consensus": { "type": "cometbft", "version": "v0.34.28" @@ -146,7 +174,15 @@ "linux/arm64": "https://github.com/chain4energy/c4e-chain/releases/download/v1.3.0/c4ed_v1.3.0_linux_arm64.tar.gz", "darwin/amd64": "https://github.com/chain4energy/c4e-chain/releases/download/v1.3.0/c4ed_v1.3.0_darwin_amd64.tar.gz" }, - "next_version_name": "v1.3.1" + "next_version_name": "v1.3.1", + "sdk": { + "type": "cosmos", + "version": "v0.46.13" + }, + "ibc": { + "type": "go", + "version": "v5.2.1" + } }, { "name": "v1.3.1", @@ -158,7 +194,6 @@ "v1.3.1" ], "cosmos_sdk_version": "v0.46.13", - "ibc_go_version": "v5.2.1", "consensus": { "type": "cometbft", "version": "v0.34.28" @@ -168,7 +203,15 @@ "linux/arm64": "https://github.com/chain4energy/c4e-chain/releases/download/v1.3.1/c4ed_v1.3.1_linux_arm64.tar.gz", "darwin/amd64": "https://github.com/chain4energy/c4e-chain/releases/download/v1.3.1/c4ed_v1.3.1_darwin_amd64.tar.gz" }, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.46.13" + }, + "ibc": { + "type": "go", + "version": "v5.2.1" + } } ] }, @@ -478,6 +521,14 @@ { "address": "http://rpc-c4e.cryptech.com.ua:443", "provider": "Cryptech" + }, + { + "address": "http://37.60.240.43:46657", + "provider": "NakoTurk" + }, + { + "address": "https://chain4energy_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "rest": [ @@ -584,6 +635,10 @@ { "address": "https://lcd-m-c4e.apeironnodes.com", "provider": "Apeiron Nodes" + }, + { + "address": "https://chain4energy_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "grpc": [ @@ -764,6 +819,12 @@ "kind": "Cryptech", "url": "https://explorers.cryptech.com.ua/chain4energy", "tx_page": "https://explorers.cryptech.com.ua/chain4energy/tx/${txHash}" + }, + { + "kind": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯", + "url": "https://explorer.whenmoonwhenlambo.money/chain4energy", + "tx_page": "https://explorer.whenmoonwhenlambo.money/chain4energy/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/chain4energy/account/${accountAddress}" } ], "images": [ diff --git a/cheqd/assetlist.json b/cheqd/assetlist.json index 02232cb098..abedb5d955 100644 --- a/cheqd/assetlist.json +++ b/cheqd/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#fc5f04" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/cheqd/chain.json b/cheqd/chain.json index 5ac5e442ab..ef602c4c00 100644 --- a/cheqd/chain.json +++ b/cheqd/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.cheqd.io/", "pretty_name": "Cheqd", + "chain_type": "cosmos", "chain_id": "cheqd-mainnet-1", "bech32_prefix": "cheqd", "daemon_name": "cheqd-noded", @@ -42,7 +43,6 @@ "darwin/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v2.0.1/cheqd-noded-2.0.1-darwin-arm64.tar.gz" }, "cosmos_sdk_version": "cheqd/cosmos-sdk v0.47.10-height-mismatch", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "0.37.5" @@ -58,7 +58,6 @@ "v0.3.1" ], "cosmos_sdk_version": "0.44.3", - "ibc_go_version": "v1.2.3", "consensus": { "type": "tendermint", "version": "0.34.14" @@ -66,7 +65,15 @@ "binaries": { "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v0.3.1/cheqd-node_0.3.1_amd64.deb" }, - "next_version_name": "v0.4" + "next_version_name": "v0.4", + "sdk": { + "type": "cosmos", + "version": "0.44.3" + }, + "ibc": { + "type": "go", + "version": "v1.2.3" + } }, { "name": "v0.4", @@ -76,7 +83,6 @@ "v0.4.1" ], "cosmos_sdk_version": "cheqd/cosmos-sdk v0.44.5-cheqd", - "ibc_go_version": "v1.2.3", "consensus": { "type": "tendermint", "version": "0.34.14" @@ -87,7 +93,17 @@ "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v0.4.1/cheqd-node_0.4.1_amd64.deb" }, "previous_version_name": "v0.3", - "next_version_name": "v0.5" + "next_version_name": "v0.5", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/cheqd/cosmos-sdk", + "version": "v0.44.5", + "tag": "v0.44.5-cheqd" + }, + "ibc": { + "type": "go", + "version": "v1.2.3" + } }, { "name": "v0.5", @@ -96,7 +112,6 @@ "v0.5.0" ], "cosmos_sdk_version": "cheqd/cosmos-sdk v0.44.5-cheqd", - "ibc_go_version": "v1.4.0", "consensus": { "type": "tendermint", "version": "0.34.15" @@ -107,7 +122,17 @@ "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v0.5.0/cheqd-node_0.5.0_amd64.deb" }, "previous_version_name": "v0.4", - "next_version_name": "v0.6" + "next_version_name": "v0.6", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/cheqd/cosmos-sdk", + "version": "v0.44.5", + "tag": "v0.44.5-cheqd" + }, + "ibc": { + "type": "go", + "version": "v1.4.0" + } }, { "name": "v0.6", @@ -120,7 +145,6 @@ "v0.6.10" ], "cosmos_sdk_version": "cheqd/cosmos-sdk v0.45.9-cheqd-tag", - "ibc_go_version": "v3.3.0", "consensus": { "type": "tendermint", "version": "0.34.21" @@ -132,7 +156,17 @@ "linux/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v0.6.10/cheqd-noded-0.6.10-linux-arm64.tar.gz" }, "previous_version_name": "v0.5", - "next_version_name": "v1" + "next_version_name": "v1", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/cheqd/cosmos-sdk", + "version": "v0.45.9", + "tag": "v0.45.9-cheqd-tag" + }, + "ibc": { + "type": "go", + "version": "v3.3.0" + } }, { "name": "v1", @@ -146,7 +180,6 @@ "v1.4.5" ], "cosmos_sdk_version": "cheqd/cosmos-sdk v0.46.10-barberry", - "ibc_go_version": "v6.1.1", "consensus": { "type": "tendermint", "version": "0.34.26" @@ -160,7 +193,17 @@ "darwin/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.5/cheqd-noded-1.4.5-darwin-arm64.tar.gz" }, "previous_version_name": "v0.6", - "next_version_name": "v2" + "next_version_name": "v2", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/cheqd/cosmos-sdk", + "version": "v0.46.10", + "tag": "v0.46.10-barberry" + }, + "ibc": { + "type": "go", + "version": "v6.1.1" + } }, { "name": "v2", @@ -170,7 +213,6 @@ "v2.0.1" ], "cosmos_sdk_version": "cheqd/cosmos-sdk v0.47.10-height-mismatch", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "0.37.5" @@ -184,9 +226,29 @@ "darwin/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v2.0.1/cheqd-noded-2.0.1-darwin-arm64.tar.gz" }, "previous_version_name": "v1", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/cheqd/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-height-mismatch" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/cheqd/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-height-mismatch" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } }, "peers": { "seeds": [ @@ -266,7 +328,7 @@ "provider": "cheqd" }, { - "address": "https://cheqd-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/cheqd", "provider": "Lavender.Five Nodes" }, { @@ -312,7 +374,7 @@ "provider": "cheqd" }, { - "address": "https://cheqd-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/cheqd", "provider": "Lavender.Five Nodes" }, { @@ -362,7 +424,7 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "cheqd-grpc.lavenderfive.com:443", + "address": "cheqd.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/chihuahua/assetlist.json b/chihuahua/assetlist.json index 7ae156dbfd..a058efb46a 100644 --- a/chihuahua/assetlist.json +++ b/chihuahua/assetlist.json @@ -32,7 +32,8 @@ "primary_color_hex": "#343434" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Puppy", @@ -97,7 +98,8 @@ "socials": { "website": "https://baddog.lol/", "twitter": "https://x.com/chihuahuawifhat" - } + }, + "type_asset": "sdk.coin" }, { "description": "Woof", @@ -125,7 +127,8 @@ "primary_color_hex": "#d9905f" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Tacos", @@ -153,7 +156,8 @@ "primary_color_hex": "#f3bb5b" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Weed", @@ -181,7 +185,8 @@ "primary_color_hex": "#43b333" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Bulldog", @@ -209,7 +214,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "CaneCorso", @@ -237,7 +243,8 @@ "primary_color_hex": "#d9d2d2" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "BackBone Labs Liquid Staked HUAHUA", @@ -257,6 +264,16 @@ "name": "BackBone Labs Liquid Staked HUAHUA", "display": "bHUAHUA", "symbol": "bHUAHUA", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "chihuahua", + "base_denom": "uhuahua" + }, + "provider": "BackBoneLabs" + } + ], "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bhuahua.png", diff --git a/chihuahua/chain.json b/chihuahua/chain.json index 0d8410a9ee..d3acb5ef92 100644 --- a/chihuahua/chain.json +++ b/chihuahua/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://chihuahua.wtf/", "pretty_name": "Chihuahua", + "chain_type": "cosmos", "chain_id": "chihuahua-1", "bech32_prefix": "chihuahua", "daemon_name": "chihuahuad", @@ -42,7 +43,6 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "v7.4.0", "cosmwasm_version": "v0.41.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.chihuahuad/data/wasm", @@ -59,7 +59,10 @@ "v4.2.1" ], "cosmwasm_enabled": true, - "next_version_name": "v500" + "next_version_name": "v500", + "cosmwasm": { + "enabled": true + } }, { "name": "v500", @@ -70,7 +73,10 @@ "proposal": 51, "height": 8711111, "cosmwasm_enabled": true, - "next_version_name": "v501" + "next_version_name": "v501", + "cosmwasm": { + "enabled": true + } }, { "name": "v501", @@ -81,7 +87,10 @@ "proposal": 52, "height": 8813000, "cosmwasm_enabled": true, - "next_version_name": "v502" + "next_version_name": "v502", + "cosmwasm": { + "enabled": true + } }, { "name": "v502", @@ -92,7 +101,10 @@ "proposal": 53, "height": 9180000, "cosmwasm_enabled": true, - "next_version_name": "v503" + "next_version_name": "v503", + "cosmwasm": { + "enabled": true + } }, { "name": "v503", @@ -108,11 +120,23 @@ "type": "cometbft", "version": "v0.37.2" }, - "ibc_go_version": "7.3.0", "cosmwasm_version": "v0.41.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.chihuahuad/data/wasm", - "next_version_name": "v6" + "next_version_name": "v6", + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "cosmwasm": { + "version": "v0.41.0", + "path": "$HOME/.chihuahuad/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.3.0" + } }, { "name": "v6", @@ -127,11 +151,23 @@ "type": "cometbft", "version": "v0.37.2" }, - "ibc_go_version": "7.3.0", "cosmwasm_version": "v0.41.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.chihuahuad/data/wasm", - "next_version_name": "v7" + "next_version_name": "v7", + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "cosmwasm": { + "version": "v0.41.0", + "path": "$HOME/.chihuahuad/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.3.0" + } }, { "name": "v7", @@ -146,11 +182,23 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "7.4.0", "cosmwasm_version": "v0.41.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.chihuahuad/data/wasm", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.8" + }, + "cosmwasm": { + "version": "v0.41.0", + "path": "$HOME/.chihuahuad/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.4.0" + } }, { "name": "v7.0.1", @@ -165,13 +213,38 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "v7.4.0", "cosmwasm_version": "v0.41.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.chihuahuad/data/wasm", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.8" + }, + "cosmwasm": { + "version": "v0.41.0", + "path": "$HOME/.chihuahuad/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.8" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + }, + "cosmwasm": { + "version": "v0.41.0", + "path": "$HOME/.chihuahuad/data/wasm", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", @@ -266,7 +339,7 @@ "provider": "Notional" }, { - "address": "https://chihuahua-rpc.lavenderfive.com", + "address": "https://rpc.lavenderfive.com:443/chihuahua", "provider": "Lavender.Five Nodes 🐝" }, { @@ -324,7 +397,7 @@ "provider": "Polkachu" }, { - "address": "https://chihuahua-api.lavenderfive.com", + "address": "https://rest.lavenderfive.com:443/chihuahua", "provider": "Lavender.Five Nodes 🐝" }, { @@ -366,7 +439,7 @@ "provider": "Polkachu" }, { - "address": "chihuahua-grpc.lavenderfive.com:443", + "address": "chihuahua.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/chimba/assetlist.json b/chimba/assetlist.json index 6df213e1fb..699307aa20 100644 --- a/chimba/assetlist.json +++ b/chimba/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#5454a4" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/chimba/chain.json b/chimba/chain.json index c6713b49d6..7ef8b49925 100644 --- a/chimba/chain.json +++ b/chimba/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://chimba.ooo/", "pretty_name": "Chimba", + "chain_type": "cosmos", "chain_id": "chimba", "bech32_prefix": "chimba", "daemon_name": "chimbad", diff --git a/chronicnetwork/assetlist.json b/chronicnetwork/assetlist.json index 2eaa320693..853d8d1714 100644 --- a/chronicnetwork/assetlist.json +++ b/chronicnetwork/assetlist.json @@ -29,7 +29,8 @@ "primary_color_hex": "#1eb975" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The CGAS coin is the transactional token within the Chronic Chain network, aimed to serve the entire cannabis community through its payment network, supply chain and trust network.", @@ -58,7 +59,8 @@ "primary_color_hex": "#ecb368" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/chronicnetwork/chain.json b/chronicnetwork/chain.json index 1b1f926223..8a94db6056 100644 --- a/chronicnetwork/chain.json +++ b/chronicnetwork/chain.json @@ -4,6 +4,7 @@ "status": "killed", "network_type": "mainnet", "pretty_name": "Chronic Chain", + "chain_type": "cosmos", "chain_id": "morocco-1", "bech32_prefix": "chronic", "daemon_name": "chtd", diff --git a/cifer/assetlist.json b/cifer/assetlist.json index a9349b251a..65f0eb8980 100644 --- a/cifer/assetlist.json +++ b/cifer/assetlist.json @@ -34,7 +34,8 @@ "socials": { "website": "http://cifer.ai/", "twitter": "https://twitter.com/cifer_ai" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/cifer/chain.json b/cifer/chain.json index f744585a13..a912ebe82a 100644 --- a/cifer/chain.json +++ b/cifer/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://cifer.ai/", "pretty_name": "Cifer", + "chain_type": "cosmos", "chain_id": "cifer-2", "bech32_prefix": "cife", "daemon_name": "ciferd", diff --git a/cifer1/assetlist.json b/cifer1/assetlist.json index a7b5243809..577c4c1c2f 100644 --- a/cifer1/assetlist.json +++ b/cifer1/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#af49b7" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/cifer1/chain.json b/cifer1/chain.json index dbdbaf59c3..a84be57619 100644 --- a/cifer1/chain.json +++ b/cifer1/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://cifer.ai/", "pretty_name": "Cifer", + "chain_type": "cosmos", "chain_id": "cifer-1", "bech32_prefix": "cife", "daemon_name": "ciferd", diff --git a/cnhostables/assetlist.json b/cnhostables/assetlist.json new file mode 100644 index 0000000000..4663ffaa75 --- /dev/null +++ b/cnhostables/assetlist.json @@ -0,0 +1,44 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "cnhostables", + "assets": [ + { + "description": "CNHO Stables Network is designed to facilitate the real world asset in Cosmos ecosystem. Starting from non USD stablecoins and stocks to real estates, the goal is to provide a new tool for the under development regions to invest in the future and pay globally. The native token is CNHO, pegged 1:1 on CNH.", + "denom_units": [ + { + "denom": "ucnho", + "exponent": 0 + }, + { + "denom": "CNHO", + "exponent": 6 + } + ], + "base": "ucnho", + "name": "CNHO Stables", + "display": "CNHO", + "symbol": "CNHO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cnhostables/images/chain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cnhostables/images/chain.svg" + }, + "keywords": [ + "CNHO" + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cnhostables/images/chain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cnhostables/images/chain.svg", + "theme": { + "primary_color_hex": "#708ffc" + } + } + ], + "socials": { + "website": "https://cnho.io/", + "twitter": "https://twitter.com/cnho_io" + }, + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/cnhostables/chain.json b/cnhostables/chain.json new file mode 100644 index 0000000000..66755d05dc --- /dev/null +++ b/cnhostables/chain.json @@ -0,0 +1,153 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "cnhostables", + "status": "live", + "network_type": "mainnet", + "website": "https://cnho.io/", + "pretty_name": "CNHO Stables", + "chain_type": "cosmos", + "chain_id": "cnho_stables-1", + "bech32_prefix": "cnho", + "daemon_name": "cnho", + "node_home": "$HOME/.cnho", + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "ucnho", + "fixed_min_gas_price": 0.000005, + "low_gas_price": 0.000001, + "average_gas_price": 0.00001, + "high_gas_price": 0.025 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "ucnho" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/alashooinc/ChainCNHO/", + "recommended_version": "v1", + "compatible_versions": [ + "v1" + ], + "cosmos_sdk_version": "v0.46.7", + "cosmwasm_enabled": false, + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/alashooinc/ChainCNHO/master/mainnet/genesis.json" + }, + "versions": [ + { + "name": "v1", + "recommended_version": "v1", + "compatible_versions": [ + "v1" + ], + "cosmos_sdk_version": "v0.46.7", + "cosmwasm_enabled": false, + "sdk": { + "type": "cosmos", + "version": "v0.46.7" + }, + "cosmwasm": { + "enabled": false + } + } + ], + "sdk": { + "type": "cosmos", + "version": "v0.46.7" + }, + "cosmwasm": { + "enabled": false + } + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cnhostables/images/chain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cnhostables/images/chain.svg" + }, + "description": "CNHO Stables Network is designed to facilitate the real world asset in Cosmos ecosystem.", + "peers": { + "seeds": [ + { + "id": "aeb501bba5d51c3aaac3a4d495c5b38be61c4dc2", + "address": "159.138.232.248:26656", + "provider": "CNHO Stables" + }, + { + "id": "9b9dee928a174bcd0272be9127f5f455d418d6b2", + "address": "cnhostables_mainnet_peer.chain.whenmoonwhenlambo.money:30000", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" + } + ], + "persistent_peers": [ + { + "id": "aeb501bba5d51c3aaac3a4d495c5b38be61c4dc2", + "address": "159.138.232.248:26656", + "provider": "CNHO Stables" + }, + { + "id": "9b9dee928a174bcd0272be9127f5f455d418d6b2", + "address": "cnhostables_mainnet_peer.chain.whenmoonwhenlambo.money:30000", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.cnho.io", + "provider": "CNHO Stables" + }, + { + "address": "https://cnhostables_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" + } + ], + "rest": [ + { + "address": "https://api.cnho.io", + "provider": "CNHO Stables" + }, + { + "address": "https://cnhostables_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" + } + ], + "grpc": [ + { + "address": "159.138.232.248:9090", + "provider": "CNHO Stables" + } + ] + }, + "explorers": [ + { + "url": "https://explorer.cnho.io", + "tx_page": "https://explorer.cnho.io/transaction/${txHash}", + "account_page": "https://explorer.cnho.io/account/${accountAddress}" + }, + { + "kind": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯", + "url": "https://explorer.whenmoonwhenlambo.money/cnhostables", + "tx_page": "https://explorer.whenmoonwhenlambo.money/cnhostables/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/cnhostables/account/${accountAddress}" + } + ], + "keywords": [ + "CNHO" + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cnhostables/images/chain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cnhostables/images/chain.svg", + "theme": { + "primary_color_hex": "#708ffc" + } + } + ] +} \ No newline at end of file diff --git a/cnhostables/images/chain.png b/cnhostables/images/chain.png new file mode 100644 index 0000000000..85d6b51deb Binary files /dev/null and b/cnhostables/images/chain.png differ diff --git a/cnhostables/images/chain.svg b/cnhostables/images/chain.svg new file mode 100644 index 0000000000..aa0cbcc114 --- /dev/null +++ b/cnhostables/images/chain.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/comdex/assetlist.json b/comdex/assetlist.json index 11cff5adf0..79df97b5c3 100644 --- a/comdex/assetlist.json +++ b/comdex/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#fc4454" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Governance Token of Harbor protocol on Comdex network", @@ -62,7 +63,8 @@ "primary_color_hex": "#645ca4" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Stable Token of Harbor protocol on Comdex network", @@ -93,7 +95,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/comdex/chain.json b/comdex/chain.json index da09f25142..39384c2e80 100644 --- a/comdex/chain.json +++ b/comdex/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://comdex.one/", "pretty_name": "Comdex", + "chain_type": "cosmos", "chain_id": "comdex-1", "bech32_prefix": "comdex", "slip44": 118, @@ -41,7 +42,6 @@ "type": "cometbft", "version": "0.37.5" }, - "ibc_go_version": "v7.4.0", "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, "genesis": { @@ -55,7 +55,10 @@ "v9.0.0" ], "cosmwasm_enabled": true, - "next_version_name": "v10.0.0" + "next_version_name": "v10.0.0", + "cosmwasm": { + "enabled": true + } }, { "name": "v10.0.0", @@ -64,7 +67,10 @@ "v10.0.0" ], "cosmwasm_enabled": true, - "next_version_name": "v11.5.0" + "next_version_name": "v11.5.0", + "cosmwasm": { + "enabled": true + } }, { "name": "v11.5.0", @@ -75,7 +81,10 @@ "v11.5.2" ], "cosmwasm_enabled": true, - "next_version_name": "v13.3.0" + "next_version_name": "v13.3.0", + "cosmwasm": { + "enabled": true + } }, { "name": "v13.3.0", @@ -95,7 +104,15 @@ }, "cosmwasm_version": "v0.41.0", "cosmwasm_enabled": true, - "next_version_name": "v14.1.0" + "next_version_name": "v14.1.0", + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "cosmwasm": { + "version": "v0.41.0", + "enabled": true + } }, { "name": "v14.1.0", @@ -114,12 +131,35 @@ "type": "cometbft", "version": "0.37.5" }, - "ibc_go_version": "v7.4.0", "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.9" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.9" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + } }, "daemon_name": "comdex", "node_home": "$HOME/.comdex", @@ -166,11 +206,6 @@ "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚑️ Nodes & Staking" }, - { - "id": "c28827cb96c14c905b127b92065a3fb4cd77d7f6", - "address": "seeds.whispernode.com:13156", - "provider": "WhisperNode 🀐" - }, { "id": "88ba33fbdf0279efaf27cff629f3cf72814d4069", "address": "seed-comdex-01.stakeflow.io:10007", @@ -232,17 +267,13 @@ "provider": "ChainTools" }, { - "address": "https://comdex-rpc.lavenderfive.com/", + "address": "https://rpc.lavenderfive.com:443/comdex", "provider": "Lavender.Five Nodes 🐝" }, { "address": "https://rpc-comdex.cosmos-spaces.cloud", "provider": "Cosmos Spaces" }, - { - "address": "https://rpc-comdex.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://comdex-mainnet-rpc.autostake.com:443", "provider": "AutoStake πŸ›‘οΈ Slash Protected" @@ -294,7 +325,7 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "https://comdex-api.lavenderfive.com/", + "address": "https://rest.lavenderfive.com:443/comdex", "provider": "Lavender.Five Nodes 🐝" }, { @@ -305,10 +336,6 @@ "address": "https://comdex-mainnet-lcd.autostake.com:443", "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, - { - "address": "https://lcd-comdex.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://comdex-api.w3coins.io", "provider": "w3coins" @@ -360,7 +387,7 @@ "provider": "Cosmos Spaces" }, { - "address": "comdex-grpc.lavenderfive.com:443", + "address": "comdex.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/commercionetwork/assetlist.json b/commercionetwork/assetlist.json index 27f2abd3dd..28f97aa870 100644 --- a/commercionetwork/assetlist.json +++ b/commercionetwork/assetlist.json @@ -32,7 +32,8 @@ "primary_color_hex": "#41a68c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The cash credit token of Commercio.network", @@ -64,7 +65,8 @@ "primary_color_hex": "#fbb804" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/commercionetwork/chain.json b/commercionetwork/chain.json index c67509401c..201c2c282e 100644 --- a/commercionetwork/chain.json +++ b/commercionetwork/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "commercionetwork", + "chain_type": "cosmos", "chain_id": "commercio-3", "pretty_name": "Commercio.network", "status": "live", diff --git a/composable/assetlist.json b/composable/assetlist.json index d6e01050e8..79095065e4 100644 --- a/composable/assetlist.json +++ b/composable/assetlist.json @@ -45,7 +45,8 @@ "socials": { "website": "https://picasso.network/", "twitter": "https://twitter.com/picasso_network" - } + }, + "type_asset": "sdk.coin" }, { "description": "The native staking and governance token of Kusama Relay Chain.", @@ -69,7 +70,7 @@ "symbol": "KSM", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "picasso", "base_denom": "4", @@ -78,7 +79,8 @@ "chain": { "channel_id": "channel-2", "path": "transfer/channel-2/4" - } + }, + "provider": "Picasso" } ], "images": [ @@ -116,7 +118,7 @@ "symbol": "DOT", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "picasso", "base_denom": "79228162514264337593543950342", @@ -125,7 +127,8 @@ "chain": { "channel_id": "channel-2", "path": "transfer/channel-2/transfer/channel-15/79228162514264337593543950342" - } + }, + "provider": "Picasso" } ], "images": [ @@ -168,7 +171,7 @@ "symbol": "USDT", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "picasso", "base_denom": "130", @@ -177,7 +180,8 @@ "chain": { "channel_id": "channel-2", "path": "transfer/channel-2/130" - } + }, + "provider": "Picasso" } ], "images": [ @@ -211,7 +215,7 @@ "symbol": "TNKR", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "picasso", "base_denom": "2125", @@ -220,7 +224,8 @@ "chain": { "channel_id": "channel-2", "path": "transfer/channel-2/2125" - } + }, + "provider": "Picasso" } ], "images": [ @@ -259,7 +264,7 @@ "symbol": "ETH", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "wei", @@ -268,7 +273,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/wei" - } + }, + "provider": "Picasso" } ], "logo_URIs": { @@ -316,7 +322,7 @@ "symbol": "DAI", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f", @@ -325,7 +331,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0x6b175474e89094c44da98b954eedeac495271d0f" - } + }, + "provider": "Picasso" } ], "logo_URIs": { @@ -368,7 +375,7 @@ "symbol": "FXS", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0", @@ -377,7 +384,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0" - } + }, + "provider": "Picasso" } ], "logo_URIs": { @@ -425,7 +433,7 @@ "symbol": "FRAX", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0x853d955acef822db058eb8505911ed77f175b99e", @@ -434,7 +442,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0x853d955acef822db058eb8505911ed77f175b99e" - } + }, + "provider": "Picasso" } ], "logo_URIs": { @@ -477,7 +486,7 @@ "symbol": "frxETH", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0x5e8422345238f34275888049021821e8e08caa1f", @@ -486,7 +495,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0x5e8422345238f34275888049021821e8e08caa1f" - } + }, + "provider": "Picasso" } ], "logo_URIs": { @@ -534,7 +544,7 @@ "symbol": "sfrxETH", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0xac3e018457b222d93114458476f3e3416abbe38f", @@ -543,7 +553,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0xac3e018457b222d93114458476f3e3416abbe38f" - } + }, + "provider": "Picasso" } ], "logo_URIs": { @@ -586,7 +597,7 @@ "symbol": "sFRAX", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32", @@ -595,7 +606,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32" - } + }, + "provider": "Picasso" } ], "logo_URIs": { @@ -643,7 +655,7 @@ "symbol": "USDT", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7", @@ -652,7 +664,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0xdac17f958d2ee523a2206206994597c13d831ec7" - } + }, + "provider": "Picasso" } ], "logo_URIs": { @@ -701,7 +714,7 @@ "symbol": "CRV", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0xd533a949740bb3306d119cc777fa900ba034cd52", @@ -710,7 +723,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0xd533a949740bb3306d119cc777fa900ba034cd52" - } + }, + "provider": "Picasso" } ], "logo_URIs": { @@ -751,7 +765,7 @@ "symbol": "wBTC", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", @@ -760,7 +774,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" - } + }, + "provider": "Picasso" } ], "logo_URIs": { @@ -803,7 +818,7 @@ "symbol": "stETH", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", @@ -812,7 +827,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84" - } + }, + "provider": "Picasso" } ], "logo_URIs": { @@ -850,7 +866,7 @@ "symbol": "rETH", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0xae78736cd615f374d3085123a210448e74fc6393", @@ -859,7 +875,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0xae78736cd615f374d3085123a210448e74fc6393" - } + }, + "provider": "Picasso" } ], "logo_URIs": { @@ -900,7 +917,7 @@ "symbol": "crvUSD", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e", @@ -909,7 +926,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0xf939e0a03fb07f59a73314e73794be0e57ac1b4e" - } + }, + "provider": "Picasso" } ], "logo_URIs": { @@ -950,7 +968,7 @@ "symbol": "pxETH", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0x04c154b66cb340f3ae24111cc767e0184ed00cc6", @@ -959,7 +977,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0x04c154b66cb340f3ae24111cc767e0184ed00cc6" - } + }, + "provider": "Picasso" } ], "logo_URIs": { @@ -1000,7 +1019,7 @@ "symbol": "eETH", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0x35fa164735182de50811e8e2e824cfb9b6118ac2", @@ -1009,7 +1028,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0x35fa164735182de50811e8e2e824cfb9b6118ac2" - } + }, + "provider": "Picasso" } ], "logo_URIs": { @@ -1050,7 +1070,7 @@ "symbol": "ENA", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0x57e114b691db790c35207b2e685d4a43181e6061", @@ -1059,7 +1079,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0x57e114b691db790c35207b2e685d4a43181e6061" - } + }, + "provider": "Picasso" } ], "images": [ @@ -1097,7 +1118,7 @@ "symbol": "USDe", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3", @@ -1106,7 +1127,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0x4c9edd5852cd905f086c759e8383e09bff1e68b3" - } + }, + "provider": "Picasso" } ], "images": [ @@ -1126,7 +1148,7 @@ "description": "A Liquid Restaking Token (LRT) and Strategy Manager for EigenLayer.", "denom_units": [ { - "denom": "ibc/0247E0E2C174135AADF4EA172D97FF5C15A64689A403E83603EAE4F0616DD365", + "denom": "ibc/E317539F148285AAC77E7614101CBE94E20EDF169B233A5E0C867112972F9041", "exponent": 0, "aliases": [ "ezeth-wei" @@ -1138,13 +1160,13 @@ } ], "type_asset": "ics20", - "base": "ibc/0247E0E2C174135AADF4EA172D97FF5C15A64689A403E83603EAE4F0616DD365", + "base": "ibc/E317539F148285AAC77E7614101CBE94E20EDF169B233A5E0C867112972F9041", "name": "Renzo Restaked ETH", "display": "ezeth", "symbol": "ezETH", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0xbf5495efe5db9ce00f80364c8b423567e58d2110", @@ -1153,7 +1175,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0xbf5495efe5db9ce00f80364c8b423567e58d2110" - } + }, + "provider": "Picasso" } ], "images": [ @@ -1191,7 +1214,7 @@ "symbol": "PEPE", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", @@ -1200,7 +1223,8 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0x6982508145454ce325ddbe47a25d4ec3d2311933" - } + }, + "provider": "Picasso" } ], "images": [ @@ -1247,7 +1271,7 @@ "provider": "Solana" }, { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "solana", "base_denom": "So11111111111111111111111111111111111111112", @@ -1256,7 +1280,8 @@ "chain": { "channel_id": "channel-71", "path": "transfer/channel-71/So11111111111111111111111111111111111111112" - } + }, + "provider": "Picasso" } ], "images": [ @@ -1265,7 +1290,12 @@ "chain_name": "solana", "base_denom": "So11111111111111111111111111111111111111112" }, - "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" + } } ] }, @@ -1288,7 +1318,7 @@ "symbol": "mSOL", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "solana", "base_denom": "mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So", @@ -1297,7 +1327,8 @@ "chain": { "channel_id": "channel-71", "path": "transfer/channel-71/mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So" - } + }, + "provider": "Picasso" } ], "images": [ @@ -1332,7 +1363,7 @@ "symbol": "jitoSOL", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "solana", "base_denom": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn", @@ -1341,7 +1372,8 @@ "chain": { "channel_id": "channel-71", "path": "transfer/channel-71/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn" - } + }, + "provider": "Picasso" } ], "images": [ @@ -1376,7 +1408,7 @@ "symbol": "bSOL", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "solana", "base_denom": "bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1", @@ -1385,7 +1417,8 @@ "chain": { "channel_id": "channel-71", "path": "transfer/channel-71/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1" - } + }, + "provider": "Picasso" } ], "images": [ @@ -1420,7 +1453,7 @@ "symbol": "LST", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "solana", "base_denom": "LSTxxxnJzKDFSLr4dUkPcmCf5VyryEqzPLz5j4bpxFp", @@ -1429,7 +1462,8 @@ "chain": { "channel_id": "channel-71", "path": "transfer/channel-71/LSTxxxnJzKDFSLr4dUkPcmCf5VyryEqzPLz5j4bpxFp" - } + }, + "provider": "Picasso" } ], "images": [ @@ -1438,9 +1472,9 @@ "chain_name": "solana", "base_denom": "mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/lst.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/msol.png", "theme": { - "primary_color_hex": "#dbdbdb" + "primary_color_hex": "#cbebe3" } } ] @@ -1464,7 +1498,7 @@ "symbol": "edgeSOL", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "solana", "base_denom": "edge86g9cVz87xcpKpy3J77vbp4wYd9idEV562CCntt", @@ -1473,7 +1507,8 @@ "chain": { "channel_id": "channel-71", "path": "transfer/channel-71/edge86g9cVz87xcpKpy3J77vbp4wYd9idEV562CCntt" - } + }, + "provider": "Picasso" } ], "images": [ @@ -1508,7 +1543,7 @@ "symbol": "hSOL", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "solana", "base_denom": "he1iusmfkpAdwvxLNGV8Y1iSbj4rUy6yMhEA3fotn9A", @@ -1517,7 +1552,8 @@ "chain": { "channel_id": "channel-71", "path": "transfer/channel-71/he1iusmfkpAdwvxLNGV8Y1iSbj4rUy6yMhEA3fotn9A" - } + }, + "provider": "Picasso" } ], "images": [ @@ -1552,7 +1588,7 @@ "symbol": "jupSOL", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "solana", "base_denom": "jupSoLaHXQiZZTSfEWMTRRgpnyFm8f6sZdosWBjx93v", @@ -1561,7 +1597,8 @@ "chain": { "channel_id": "channel-71", "path": "transfer/channel-71/jupSoLaHXQiZZTSfEWMTRRgpnyFm8f6sZdosWBjx93v" - } + }, + "provider": "Picasso" } ], "images": [ @@ -1596,7 +1633,7 @@ "symbol": "WIF", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "solana", "base_denom": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm", @@ -1605,7 +1642,8 @@ "chain": { "channel_id": "channel-71", "path": "transfer/channel-71/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm" - } + }, + "provider": "Picasso" } ], "images": [ @@ -1640,7 +1678,7 @@ "symbol": "USDT", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "solana", "base_denom": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", @@ -1649,7 +1687,8 @@ "chain": { "channel_id": "channel-71", "path": "transfer/channel-71/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB" - } + }, + "provider": "Picasso" } ], "images": [ @@ -1690,7 +1729,7 @@ "symbol": "WHINE", "traces": [ { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "solana", "base_denom": "ATeTQcUkWGs7AZ15mCiFUWCW9EUL7KpDZEHCN1Y8pump", @@ -1699,7 +1738,8 @@ "chain": { "channel_id": "channel-71", "path": "transfer/channel-71/ATeTQcUkWGs7AZ15mCiFUWCW9EUL7KpDZEHCN1Y8pump" - } + }, + "provider": "Picasso" } ], "images": [ @@ -1716,6 +1756,54 @@ } } ] + }, + { + "description": "Unicorn from Solana via Picasso IBC", + "denom_units": [ + { + "denom": "ibc/586C150919550F6106711C7557DAAAEAB765DDF05648BAC0D96487AE90394BA1", + "exponent": 0, + "aliases": [ + "UwU8RVXB69Y6Dcju6cN2Qef6fykkq6UUNpB15rZku6Z" + ] + }, + { + "denom": "unicorn", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/586C150919550F6106711C7557DAAAEAB765DDF05648BAC0D96487AE90394BA1", + "name": "Unicorn", + "display": "unicorn", + "symbol": "UWU", + "traces": [ + { + "type": "ibc-bridge", + "counterparty": { + "chain_name": "solana", + "base_denom": "UwU8RVXB69Y6Dcju6cN2Qef6fykkq6UUNpB15rZku6Z", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/UwU8RVXB69Y6Dcju6cN2Qef6fykkq6UUNpB15rZku6Z" + }, + "provider": "Picasso" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "unicorn", + "base_denom": "uwunicorn" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unicorn/images/uwu.png", + "theme": { + "primary_color_hex": "#D44CE6" + } + } + ] } ] } \ No newline at end of file diff --git a/composable/chain.json b/composable/chain.json index 99f148f11b..1442c44626 100644 --- a/composable/chain.json +++ b/composable/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "composable", + "chain_type": "cosmos", "chain_id": "centauri-1", "website": "https://www.picasso.xyz/", "pretty_name": "Picasso", @@ -38,10 +39,11 @@ "v6.5.3" ], "cosmos_sdk_version": "rust-ninja/cosmos-sdk v0.47.5-patch-validators-trim-tag", - "ibc_go_version": "notional-labs/ibc-go/v7 v7.2.1-0.20231010040541-6cf43006971f", "consensus": { "type": "cometbft", - "version": "composablefi/cometbft v0.37.2-fixed-len-vote-time-tag" + "version": "v0.37.2", + "repo": "https://github.com/composablefi/cometbft", + "tag": "v0.37.2-fixed-len-vote-time-tag" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/notional-labs/composable-networks/main/mainnet/genesis.json" @@ -55,7 +57,6 @@ "v2.3.5" ], "cosmos_sdk_version": "v0.47.1", - "ibc_go_version": "v7.0.0", "consensus": { "type": "cometbft", "version": "0.37.0" @@ -64,7 +65,15 @@ "binaries": { "linux/amd64": "https://github.com/notional-labs/composable-centauri/releases/download/v2.3.5/banksyd" }, - "next_version_name": "centauri" + "next_version_name": "centauri", + "sdk": { + "type": "cosmos", + "version": "v0.47.1" + }, + "ibc": { + "type": "go", + "version": "v7.0.0" + } }, { "name": "centauri", @@ -76,7 +85,6 @@ "v3.1.2" ], "cosmos_sdk_version": "v0.47.3", - "ibc_go_version": "v7.0.0", "consensus": { "type": "cometbft", "version": "0.37.0" @@ -86,7 +94,15 @@ "binaries": { "linux/amd64": "https://github.com/notional-labs/composable-centauri/releases/download/v3.1.2/centaurid" }, - "next_version_name": "reward" + "next_version_name": "reward", + "sdk": { + "type": "cosmos", + "version": "v0.47.3" + }, + "ibc": { + "type": "go", + "version": "v7.0.0" + } }, { "name": "reward", @@ -96,14 +112,21 @@ "v3.2.2" ], "cosmos_sdk_version": "v0.47.3", - "ibc_go_version": "v7.0.0", "consensus": { "type": "cometbft", "version": "0.37.1" }, "height": 420000, "proposal": 4, - "next_version_name": "v4" + "next_version_name": "v4", + "sdk": { + "type": "cosmos", + "version": "v0.47.3" + }, + "ibc": { + "type": "go", + "version": "v7.0.0" + } }, { "name": "v4", @@ -113,14 +136,21 @@ "v4.5.0" ], "cosmos_sdk_version": "v0.47.3", - "ibc_go_version": "v7.0.1", "consensus": { "type": "cometbft", "version": "0.37.1" }, "height": 792909, "proposal": 5, - "next_version_name": "v5" + "next_version_name": "v5", + "sdk": { + "type": "cosmos", + "version": "v0.47.3" + }, + "ibc": { + "type": "go", + "version": "v7.0.1" + } }, { "name": "v5", @@ -131,14 +161,21 @@ "v5.2.0" ], "cosmos_sdk_version": "v0.47.3", - "ibc_go_version": "v7.0.1", "consensus": { "type": "cometbft", "version": "0.37.1" }, "height": 1515288, "proposal": 10, - "next_version_name": "v6" + "next_version_name": "v6", + "sdk": { + "type": "cosmos", + "version": "v0.47.3" + }, + "ibc": { + "type": "go", + "version": "v7.0.1" + } }, { "name": "v6", @@ -148,14 +185,21 @@ "v6.3.6" ], "cosmos_sdk_version": "v0.47.5", - "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", "version": "0.37.2" }, "height": 2301070, "proposal": 12, - "next_version_name": "v6_4" + "next_version_name": "v6_4", + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v6_4", @@ -165,14 +209,25 @@ "v6.4.3" ], "cosmos_sdk_version": "v0.47.5", - "ibc_go_version": "notional-labs/ibc-go/v7 v7.2.1-0.20231010040541-6cf43006971f", "consensus": { "type": "cometbft", - "version": "composablefi/cometbft v0.37.2-fixed-len-vote-time-tag" + "version": "v0.37.2", + "repo": "https://github.com/composablefi/cometbft", + "tag": "v0.37.2-fixed-len-vote-time-tag" }, "height": 3486739, "proposal": 14, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "ibc": { + "type": "go", + "repo": "https://github.com/notional-labs/ibc-go", + "version": "v7.2.1", + "tag": "v7.2.1-0.20231010040541-6cf43006971f" + } }, { "name": "v6_5_0", @@ -184,12 +239,21 @@ "v6.5.2" ], "cosmos_sdk_version": "v0.47.6", - "ibc_go_version": "notional-labs/ibc-go/v7 v7.2.1-0.20231010040541-6cf43006971f", "consensus": { "type": "cometbft", "version": "v0.37.2" }, - "next_version_name": "v6_5_3" + "next_version_name": "v6_5_3", + "sdk": { + "type": "cosmos", + "version": "v0.47.6" + }, + "ibc": { + "type": "go", + "repo": "https://github.com/notional-labs/ibc-go", + "version": "v7.2.1", + "tag": "v7.2.1-0.20231010040541-6cf43006971f" + } }, { "name": "v6_5_3", @@ -201,14 +265,39 @@ "v6.5.3" ], "cosmos_sdk_version": "rust-ninja/cosmos-sdk v0.47.5-patch-validators-trim-tag", - "ibc_go_version": "notional-labs/ibc-go/v7 v7.2.1-0.20231010040541-6cf43006971f", "consensus": { "type": "cometbft", - "version": "composablefi/cometbft v0.37.2-fixed-len-vote-time-tag" + "version": "v0.37.2", + "repo": "https://github.com/composablefi/cometbft", + "tag": "v0.37.2-fixed-len-vote-time-tag" + }, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/rust-ninja/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-patch-validators-trim-tag" }, - "next_version_name": "" + "ibc": { + "type": "go", + "repo": "https://github.com/notional-labs/ibc-go", + "version": "v7.2.1", + "tag": "v7.2.1-0.20231010040541-6cf43006971f" + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/rust-ninja/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-patch-validators-trim-tag" + }, + "ibc": { + "type": "go", + "repo": "https://github.com/notional-labs/ibc-go", + "version": "v7.2.1", + "tag": "v7.2.1-0.20231010040541-6cf43006971f" + } }, "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" @@ -226,11 +315,6 @@ "address": "seeds.lavenderfive.com:22256", "provider": "Lavender.Five Nodes 🐝" }, - { - "id": "c28827cb96c14c905b127b92065a3fb4cd77d7f6", - "address": "seeds.whispernode.com:22256", - "provider": "WhisperNode 🀐" - }, { "id": "a3910d1bf22b4dacf66979d6ea75fd134aee00db", "address": "seed.composable.validatus.com:2000", @@ -290,17 +374,13 @@ "provider": "Cogwheel βš™οΈ" }, { - "address": "https://picasso-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/picasso", "provider": "Lavender.Five Nodes 🐝" }, { "address": "https://composable-rpc.genznodes.dev", "provider": "genznodes" }, - { - "address": "https://rpc-picasso.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://picasso-rpc.stake-town.com", "provider": "StakeTown" @@ -310,7 +390,7 @@ "provider": "Stake Village" }, { - "address": "https://composable-rpc.stakeandrelax.net", + "address": "https://picasso-rpc.stakeandrelax.net", "provider": "Stake&Relax πŸ¦₯" }, { @@ -344,17 +424,13 @@ "provider": "Cogwheel βš™οΈ" }, { - "address": "https://picasso-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/picasso", "provider": "Lavender.Five Nodes 🐝" }, { "address": "https://composable-api.genznodes.dev", "provider": "genznodes" }, - { - "address": "https://api-picasso.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://picasso-api.stake-town.com", "provider": "StakeTown" @@ -364,7 +440,7 @@ "provider": "Stake Village" }, { - "address": "https://composable-api.stakeandrelax.net", + "address": "https://picasso-api.stakeandrelax.net", "provider": "Stake&Relax πŸ¦₯" }, { @@ -402,7 +478,7 @@ "provider": "Cogwheel βš™οΈ" }, { - "address": "https://picasso-grpc.lavenderfive.com:443", + "address": "picasso.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -426,7 +502,7 @@ "provider": "Stake Village" }, { - "address": "composable-rpc.stakeandrelax.net:22290", + "address": "picasso-rpc.stakeandrelax.net:22290", "provider": "Stake&Relax πŸ¦₯" }, { @@ -444,10 +520,6 @@ { "address": "composable.grpc.m.stavr.tech:9907", "provider": "πŸ”₯STAVRπŸ”₯" - }, - { - "address": "grpc-picasso.whispernode.com:443", - "provider": "WhisperNode 🀐" } ] }, diff --git a/conscious/assetlist.json b/conscious/assetlist.json index c62121b003..aab95a0695 100644 --- a/conscious/assetlist.json +++ b/conscious/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://cvn.io", "twitter": "https://twitter.com/conscious_chain" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/conscious/chain.json b/conscious/chain.json index 5236948292..907a56758a 100644 --- a/conscious/chain.json +++ b/conscious/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://cvn.io/", "pretty_name": "ConsciousDAO", + "chain_type": "cosmos", "chain_id": "cvn_2032-1", "bech32_prefix": "cvn", "node_home": "$HOME/.cvnd", diff --git a/coreum/assetlist.json b/coreum/assetlist.json index 93727a3020..e67f467099 100644 --- a/coreum/assetlist.json +++ b/coreum/assetlist.json @@ -43,7 +43,8 @@ "socials": { "website": "https://www.coreum.com/", "twitter": "https://twitter.com/CoreumOfficial" - } + }, + "type_asset": "sdk.coin" }, { "description": "XRP bridged from XRPL", @@ -90,7 +91,8 @@ "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" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/coreum/chain.json b/coreum/chain.json index dd9e00aa3c..7b0d8b4709 100644 --- a/coreum/chain.json +++ b/coreum/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.coreum.com", "pretty_name": "Coreum", + "chain_type": "cosmos", "chain_id": "coreum-mainnet-1", "bech32_prefix": "core", "daemon_name": "cored", @@ -75,7 +76,15 @@ "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v1.0.0/cored-linux-amd64?checksum=sha256:34098ad7586bda364b1b2e7c4569cbcefb630cd4ed7c8f68eb5bced834082c57", "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v1.0.0/cored-linux-arm64?checksum=sha256:3ced97f06607f0cdaf77e7ff0b36b2011d101c660684e4f3e54c2ac6bf344dd6" }, - "next_version_name": "v2" + "next_version_name": "v2", + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } }, { "name": "v2", @@ -97,7 +106,15 @@ "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v2.0.2/cored-linux-amd64?checksum=sha256:3facf55f7ff795719f68b9bcf76ea08262bc7c9e9cd735c660257ba73678250e", "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v2.0.2/cored-linux-arm64?checksum=sha256:35e261eb3b87c833c30174e6b8667a6155f5962441275d443157e209bbb0bf0d" }, - "next_version_name": "v3" + "next_version_name": "v3", + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } }, { "name": "v3", @@ -118,9 +135,25 @@ "binaries": { "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.3/cored-linux-amd64?checksum=sha256:1719a32e6f8e8813d00cd86e1d8d02e893324d4f59fa7a1b8cedc5836140ecef", "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.3/cored-linux-arm64?checksum=sha256:cfbbad6803c0327407e4dd222a108505e6ff9e294d7c86e34b6b895b96b61bbd" + }, + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "version": "0.44", + "enabled": true } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "version": "0.44", + "enabled": true + } }, "images": [ { diff --git a/cosmoshub/assetlist.json b/cosmoshub/assetlist.json index 0d12a9ad52..8ff4d1566f 100644 --- a/cosmoshub/assetlist.json +++ b/cosmoshub/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://cosmos.network", "twitter": "https://twitter.com/cosmoshub" - } + }, + "type_asset": "sdk.coin" }, { "description": "Tether USDt on the Cosmos Hub", diff --git a/cosmoshub/chain.json b/cosmoshub/chain.json index cdcd1ead9e..277f3bfab7 100644 --- a/cosmoshub/chain.json +++ b/cosmoshub/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "cosmoshub", + "chain_type": "cosmos", "chain_id": "cosmoshub-4", "website": "https://cosmos.network/", "pretty_name": "Cosmos Hub", @@ -33,23 +34,21 @@ }, "codebase": { "git_repo": "https://github.com/cosmos/gaia", - "recommended_version": "v17.3.0", + "recommended_version": "v19.2.0", "compatible_versions": [ - "v17.3.0" + "v19.2.0" ], - "cosmos_sdk_version": "v0.47.15-ics-lsm", - "ibc_go_version": "v7.4.0", + "cosmos_sdk_version": "v0.50.9-lsm", "consensus": { "type": "cometbft", - "version": "v0.37.6" + "version": "v0.38.11" }, + "cosmwasm_version": "v0.51.0", "binaries": { - "linux/amd64": "https://github.com/cosmos/gaia/releases/download/v17.3.0/gaiad-v17.3.0-linux-amd64", - "linux/arm64": "https://github.com/cosmos/gaia/releases/download/v17.3.0/gaiad-v17.3.0-linux-arm64", - "darwin/amd64": "https://github.com/cosmos/gaia/releases/download/v17.3.0/gaiad-v17.3.0-darwin-amd64", - "darwin/arm64": "https://github.com/cosmos/gaia/releases/download/v17.3.0/gaiad-v17.3.0-darwin-arm64", - "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v17.3.0/gaiad-v17.3.0-darwin-amd64", - "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v17.3.0/gaiad-v17.3.0-windows-arm64.exe" + "linux/amd64": "https://github.com/cosmos/gaia/releases/download/v19.2.0/gaiad-v19.2.0-linux-amd64", + "linux/arm64": "https://github.com/cosmos/gaia/releases/download/v19.2.0/gaiad-v19.2.0-linux-arm64", + "darwin/amd64": "https://github.com/cosmos/gaia/releases/download/v19.2.0/gaiad-v19.2.0-darwin-amd64", + "darwin/arm64": "https://github.com/cosmos/gaia/releases/download/v19.2.0/gaiad-v19.2.0-darwin-arm64" }, "genesis": { "genesis_url": "https://github.com/cosmos/mainnet/raw/master/genesis/genesis.cosmoshub-4.json.gz" @@ -63,7 +62,6 @@ "v9.1.1" ], "cosmos_sdk_version": "v0.45.15-ics", - "ibc_go_version": "v4.2.1", "consensus": { "type": "cometbft", "version": "v0.34.27" @@ -76,7 +74,16 @@ "darwin/arm64": "https://github.com/cosmos/gaia/releases/download/v9.1.1/gaiad-v9.1.1-darwin-arm64?checksum=sha256:0a913a3a9a31456ddfba26eccdfccca61d00b06498faa94019776df391509d27", "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v9.1.1/gaiad-v9.1.1-windows-amd64.exe?checksum=sha256:db1d82650ed2a0aa9abccb2bb60dca902c4d1444444f6c76a8b6d61d6bc41e08" }, - "next_version_name": "v10" + "next_version_name": "v10", + "sdk": { + "type": "cosmos", + "version": "v0.45.15", + "tag": "v0.45.15-ics" + }, + "ibc": { + "type": "go", + "version": "v4.2.1" + } }, { "name": "v10", @@ -90,7 +97,6 @@ "v10.0.2" ], "cosmos_sdk_version": "v0.45.16-ics", - "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", "version": "v0.34.29" @@ -102,7 +108,16 @@ "darwin/arm64": "https://github.com/cosmos/gaia/releases/download/v10.0.2/gaiad-v10.0.2-darwin-arm64?checksum=sha256:c8124d66ffa99b51da274656f6c3401b1ec9e165a76f3f01699761672e83a136gaiad-v10.0.1-linux-amd64", "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v10.0.2/gaiad-v10.0.2-windows-amd64.exe?checksum=sha256:c02ab2b8fc347f858db1c33fcacafa2467ca550ed83178aee67331762e876926" }, - "next_version_name": "v11" + "next_version_name": "v11", + "sdk": { + "type": "cosmos", + "version": "v0.45.16", + "tag": "v0.45.16-ics" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + } }, { "name": "v11", @@ -114,7 +129,6 @@ "v11.0.0" ], "cosmos_sdk_version": "v0.45.16-ics", - "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", "version": "v0.34.29" @@ -127,7 +141,16 @@ "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v11.0.0/gaiad-v11.0.0-windows-amd64.exe", "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v11.0.0/gaiad-v11.0.0-windows-arm64.exe" }, - "next_version_name": "v12" + "next_version_name": "v12", + "sdk": { + "type": "cosmos", + "version": "v0.45.16", + "tag": "v0.45.16-ics" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + } }, { "name": "v12", @@ -139,7 +162,6 @@ "v12.0.0" ], "cosmos_sdk_version": "v0.45.16-ics", - "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", "version": "v0.34.29" @@ -152,7 +174,16 @@ "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-windows-amd64.exe", "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-windows-arm64.exe" }, - "next_version_name": "v13" + "next_version_name": "v13", + "sdk": { + "type": "cosmos", + "version": "v0.45.16", + "tag": "v0.45.16-ics" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + } }, { "name": "v13", @@ -165,7 +196,6 @@ "v13.0.2" ], "cosmos_sdk_version": "v0.45.16-ics-lsm", - "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", "version": "v0.34.29" @@ -178,7 +208,16 @@ "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v13.0.2/gaiad-v13.0.2-windows-amd64.exe?checksum=sha256:bc339c368b07306a73a16af8f005bc14439b393790f61d0568358495eb83e71c", "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v13.0.2/gaiad-v13.0.2-windows-arm64.exe?checksum=sha256:8728e0f56d52479c80ba4b1c8f68a8fc3085220fad241ba1180867b2c3bc97fa" }, - "next_version_name": "v14" + "next_version_name": "v14", + "sdk": { + "type": "cosmos", + "version": "v0.45.16", + "tag": "v0.45.16-ics-lsm" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + } }, { "name": "v14", @@ -190,7 +229,6 @@ "v14.2.0" ], "cosmos_sdk_version": "v0.45.16-ics-lsm", - "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", "version": "v0.34.29" @@ -203,7 +241,16 @@ "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v14.2.0/gaiad-v14.2.0-windows-amd64.exe?checksum=sha256:d912548fc1c87ca26defce1a60f089910fa55b38d27063870750efeab176db9d", "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v14.2.0/gaiad-v14.2.0-windows-arm64.exe?checksum=sha256:b17cc1f1a9a5050b72f99d497fdda6d1d4615b6a42971f556d2777ba838fe7b0" }, - "next_version_name": "v15" + "next_version_name": "v15", + "sdk": { + "type": "cosmos", + "version": "v0.45.16", + "tag": "v0.45.16-ics-lsm" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + } }, { "name": "v15", @@ -215,7 +262,6 @@ "v15.2.0" ], "cosmos_sdk_version": "v0.47.11-ics-lsm", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.4" @@ -228,7 +274,16 @@ "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v15.2.0/gaiad-v15.2.0-darwin-amd64", "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v15.2.0/gaiad-v15.2.0-windows-arm64.exe" }, - "next_version_name": "v16" + "next_version_name": "v16", + "sdk": { + "type": "cosmos", + "version": "v0.47.11", + "tag": "v0.47.11-ics-lsm" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } }, { "name": "v16", @@ -240,7 +295,6 @@ "v16.0.0" ], "cosmos_sdk_version": "v0.47.13-ics-lsm", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.5" @@ -253,7 +307,16 @@ "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v16.0.0/gaiad-v16.0.0-darwin-amd64", "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v16.0.0/gaiad-v16.0.0-windows-arm64.exe" }, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.13", + "tag": "v0.47.13-ics-lsm" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } }, { "name": "v17", @@ -265,7 +328,6 @@ "v17.3.0" ], "cosmos_sdk_version": "v0.47.15-ics-lsm", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.6" @@ -278,9 +340,108 @@ "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v17.3.0/gaiad-v17.3.0-darwin-amd64", "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v17.3.0/gaiad-v17.3.0-windows-arm64.exe" }, - "next_version_name": "" + "next_version_name": "v18", + "sdk": { + "type": "cosmos", + "version": "v0.47.15", + "tag": "v0.47.15-ics-lsm" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } + }, + { + "name": "v18", + "tag": "v18.1.0", + "proposal": 937, + "height": 21330500, + "recommended_version": "v18.1.0", + "compatible_versions": [ + "v18.1.0" + ], + "cosmos_sdk_version": "v0.47.16-ics-lsm", + "consensus": { + "type": "cometbft", + "version": "v0.37.6" + }, + "cosmwasm_version": "informalsystems/wasmd v0.45.0-lsm", + "binaries": { + "linux/amd64": "https://github.com/cosmos/gaia/releases/download/v18.1.0/gaiad-v18.1.0-linux-amd64", + "linux/arm64": "https://github.com/cosmos/gaia/releases/download/v18.1.0/gaiad-v18.1.0-linux-arm64", + "darwin/amd64": "https://github.com/cosmos/gaia/releases/download/v18.1.0/gaiad-v18.1.0-darwin-amd64", + "darwin/arm64": "https://github.com/cosmos/gaia/releases/download/v18.1.0/gaiad-v18.1.0-darwin-arm64", + "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v18.1.0/gaiad-v18.1.0-darwin-amd64", + "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v18.1.0/gaiad-v18.1.0-windows-arm64.exe" + }, + "next_version_name": "v19", + "sdk": { + "type": "cosmos", + "version": "v0.47.16", + "tag": "v0.47.16-ics-lsm" + }, + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/informalsystems/wasmd", + "tag": "v0.45.0-lsm" + }, + "ibc": { + "type": "go", + "version": "v7.6.0" + } + }, + { + "name": "v19", + "tag": "v19.2.0", + "proposal": 948, + "height": 21835200, + "recommended_version": "v19.2.0", + "compatible_versions": [ + "v19.2.0" + ], + "cosmos_sdk_version": "v0.50.9-lsm", + "consensus": { + "type": "cometbft", + "version": "v0.38.11" + }, + "cosmwasm_version": "v0.51.0", + "binaries": { + "linux/amd64": "https://github.com/cosmos/gaia/releases/download/v19.2.0/gaiad-v19.2.0-linux-amd64", + "linux/arm64": "https://github.com/cosmos/gaia/releases/download/v19.2.0/gaiad-v19.2.0-linux-arm64", + "darwin/amd64": "https://github.com/cosmos/gaia/releases/download/v19.2.0/gaiad-v19.2.0-darwin-amd64", + "darwin/arm64": "https://github.com/cosmos/gaia/releases/download/v19.2.0/gaiad-v19.2.0-darwin-arm64" + }, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.50.9", + "tag": "v0.50.9-lsm" + }, + "cosmwasm": { + "version": "v0.51.0", + "repo": "https://github.com/CosmWasm/wasmd", + "tag": "v0.51.0" + }, + "ibc": { + "type": "go", + "version": "v8.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.50.9", + "tag": "v0.50.9-lsm" + }, + "ibc": { + "type": "go", + "version": "v8.4.0" + }, + "cosmwasm": { + "version": "v0.51.0", + "repo": "https://github.com/CosmWasm/wasmd", + "tag": "v0.51.0" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", @@ -383,6 +544,10 @@ }, "apis": { "rpc": [ + { + "address": "https://cosmoshub.tendermintrpc.lava.build:443", + "provider": "Lava" + }, { "address": "https://cosmos-rpc.quickapi.com:443", "provider": "Chainlayer" @@ -396,7 +561,7 @@ "provider": "WhisperNode 🀐" }, { - "address": "https://cosmoshub-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/cosmoshub", "provider": "Lavender.Five Nodes 🐝" }, { @@ -518,9 +683,21 @@ { "address": "https://rpc.cosmoshub-4.citizenweb3.com", "provider": "Citizen Web3" + }, + { + "address": "https://cosmos-rpc.stakeandrelax.net", + "provider": "Stake&Relax πŸ¦₯" + }, + { + "address": "https://cosmos-hub.drpc.org", + "provider": "dRPC" } ], "rest": [ + { + "address": "https://cosmoshub.lava.build:443", + "provider": "Lava" + }, { "address": "https://cosmos-lcd.quickapi.com:443", "provider": "Chainlayer" @@ -530,7 +707,7 @@ "provider": "Golden Ratio Staking" }, { - "address": "https://cosmoshub-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/cosmoshub", "provider": "Lavender.Five Nodes 🐝" }, { @@ -628,11 +805,19 @@ { "address": "https://rest-cosmos.kewrnode.com", "provider": "Kewr Node" + }, + { + "address": "https://cosmos-api.stakeandrelax.net", + "provider": "Stake&Relax πŸ¦₯" } ], "grpc": [ { - "address": "cosmoshub-grpc.lavenderfive.com:443", + "address": "cosmoshub.grpc.lava.build", + "provider": "Lava" + }, + { + "address": "cosmoshub.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -704,7 +889,7 @@ "provider": "Nodeist" }, { - "address": "cosmos-grpc.stakeandrelax.net:14990", + "address": "cosmos-grpc.stakeandrelax.net:15090", "provider": "Stake&Relax πŸ¦₯" } ] @@ -798,4 +983,4 @@ } } ] -} +} \ No newline at end of file diff --git a/coss/assetlist.json b/coss/assetlist.json index 69ae578d10..eb920176e0 100644 --- a/coss/assetlist.json +++ b/coss/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#7c7c7c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The inscription token of the COSS.", @@ -61,7 +62,8 @@ "primary_color_hex": "#876317" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The inscription token of the CIAS.", @@ -92,7 +94,8 @@ "primary_color_hex": "#4f3280" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/coss/chain.json b/coss/chain.json index 9491e56e78..9d4b8374eb 100644 --- a/coss/chain.json +++ b/coss/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "coss", + "chain_type": "cosmos", "chain_id": "coss-1", "website": "https://coss.ink/", "pretty_name": "COSS", diff --git a/crescent/assetlist.json b/crescent/assetlist.json index b2d32d193f..fde4002400 100644 --- a/crescent/assetlist.json +++ b/crescent/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#3c2832" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The bonded token of Crescent", @@ -62,7 +63,8 @@ "primary_color_hex": "#df969f" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/crescent/chain.json b/crescent/chain.json index de9a1aa884..629d144eea 100644 --- a/crescent/chain.json +++ b/crescent/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Crescent", + "chain_type": "cosmos", "chain_id": "crescent-1", "bech32_prefix": "cre", "daemon_name": "crescentd", diff --git a/cronos/assetlist.json b/cronos/assetlist.json index 785db49b89..302d685ecc 100644 --- a/cronos/assetlist.json +++ b/cronos/assetlist.json @@ -40,7 +40,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Tether USDt on Cronos", diff --git a/cronos/chain.json b/cronos/chain.json index 12ad645351..d567b94a68 100644 --- a/cronos/chain.json +++ b/cronos/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://cronos.org", "pretty_name": "Cronos", + "chain_type": "cosmos", "chain_id": "cronosmainnet_25-1", "bech32_prefix": "crc", "daemon_name": "cronosd", @@ -25,37 +26,39 @@ }, "codebase": { "git_repo": "https://github.com/crypto-org-chain/cronos", - "recommended_version": "v1.2.2", + "recommended_version": "v1.3.0", "compatible_versions": [ "v1.2.0", "v1.2.1", - "v1.2.2" + "v1.2.2", + "v1.3.0" ], "binaries": { - "linux/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Windows_x86_64.zip" + "linux/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.3.0/cronos_1.3.0_Linux_x86_64.tar.gz", + "linux/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.3.0/cronos_1.3.0_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.3.0/cronos_1.3.0_Darwin_x86_64.tar.gz", + "darwin/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.3.0/cronos_1.3.0_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.3.0/cronos_1.3.0_Windows_x86_64.tar.gz" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/crypto-org-chain/cronos-mainnet/master/cronosmainnet_25-1/genesis.json" }, "versions": [ { - "name": "v1.2.2", - "recommended_version": "v1.2.2", + "name": "v1.3.0", + "recommended_version": "v1.3.0", "compatible_versions": [ "v1.2.0", "v1.2.1", - "v1.2.2" + "v1.2.2", + "v1.3.0" ], "binaries": { - "linux/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.2.2/cronos_1.2.2_Windows_x86_64.zip" + "linux/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.3.0/cronos_1.3.0_Linux_x86_64.tar.gz", + "linux/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.3.0/cronos_1.3.0_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.3.0/cronos_1.3.0_Darwin_x86_64.tar.gz", + "darwin/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.3.0/cronos_1.3.0_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v1.3.0/cronos_1.3.0_Windows_x86_64.tar.gz" } } ] @@ -129,6 +132,10 @@ { "address": "https://cronos-rpc.publicnode.com:443", "provider": "Allnodes ⚑️ Nodes & Staking" + }, + { + "address": "https://cronos.drpc.org", + "provider": "dRPC" } ], "rest": [ diff --git a/cryptoorgchain/assetlist.json b/cryptoorgchain/assetlist.json index 58a40071ff..c306892eaf 100644 --- a/cryptoorgchain/assetlist.json +++ b/cryptoorgchain/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://cronos.org/", "twitter": "https://twitter.com/cronos_chain" - } + }, + "type_asset": "sdk.coin" }, { "description": "Synthetic XLM pegged 1:1 by Crypto.com", @@ -83,7 +84,8 @@ "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "The native token of Stellar network, transferred via Solo Machine.", @@ -100,6 +102,7 @@ "exponent": 7 } ], + "type_asset": "ics20", "base": "ibc/34A1D4BF5FFCDB912F64FE71D54426D56970F873F1279983B69C713B3A62D10D", "name": "Lumen (Solo Machine)", "display": "lumen", diff --git a/cryptoorgchain/chain.json b/cryptoorgchain/chain.json index a2e2a7d5f8..40138aac00 100644 --- a/cryptoorgchain/chain.json +++ b/cryptoorgchain/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Cronos POS Chain", + "chain_type": "cosmos", "chain_id": "crypto-org-chain-mainnet-1", "bech32_prefix": "cro", "website": "https://cronos-pos.org/", @@ -210,9 +211,9 @@ }, { "kind": "ezstaking", - "url": "https://ezstaking.app/cronos", - "tx_page": "https://ezstaking.app/cronos/txs/${txHash}", - "account_page": "https://ezstaking.app/cronos/account/${accountAddress}" + "url": "https://ezstaking.app/crypto-org", + "tx_page": "https://ezstaking.app/crypto-org/txs/${txHash}", + "account_page": "https://ezstaking.app/crypto-org/account/${accountAddress}" }, { "kind": "cronos.org", diff --git a/cudos/assetlist.json b/cudos/assetlist.json index ba964f4a16..b13868d391 100644 --- a/cudos/assetlist.json +++ b/cudos/assetlist.json @@ -38,7 +38,8 @@ "socials": { "website": "http://www.cudos.org", "twitter": "https://twitter.com/CUDOS_" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/cudos/chain.json b/cudos/chain.json index a6952edf6d..0101c7851f 100644 --- a/cudos/chain.json +++ b/cudos/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Cudos", + "chain_type": "cosmos", "chain_id": "cudos-1", "bech32_prefix": "cudos", "daemon_name": "cudos-noded", @@ -140,7 +141,7 @@ "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, { - "address": "https://cudos-rpc.lavenderfive.com", + "address": "https://rpc.lavenderfive.com:443/cudos", "provider": "Lavender.Five Nodes 🐝" }, { @@ -166,7 +167,7 @@ "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, { - "address": "https://cudos-api.lavenderfive.com/", + "address": "https://rest.lavenderfive.com:443/cudos", "provider": "Lavender.Five Nodes 🐝" }, { @@ -184,7 +185,7 @@ "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, { - "address": "cudos-grpc.lavenderfive.com:443", + "address": "cudos.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/decentr/assetlist.json b/decentr/assetlist.json index 07700ece13..b64a0089c7 100644 --- a/decentr/assetlist.json +++ b/decentr/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#4678e9" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/decentr/chain.json b/decentr/chain.json index faae1c51f7..b9b352b8a9 100644 --- a/decentr/chain.json +++ b/decentr/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Decentr", + "chain_type": "cosmos", "chain_id": "mainnet-3", "bech32_prefix": "decentr", "daemon_name": "decentrd", diff --git a/desmos/assetlist.json b/desmos/assetlist.json index 192f21861b..d0a82e1851 100644 --- a/desmos/assetlist.json +++ b/desmos/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#fb804e" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/desmos/chain.json b/desmos/chain.json index 218017db48..311e08c80b 100644 --- a/desmos/chain.json +++ b/desmos/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://desmos.network/", "pretty_name": "Desmos", + "chain_type": "cosmos", "chain_id": "desmos-mainnet", "bech32_prefix": "desmos", "daemon_name": "desmos", @@ -41,7 +42,6 @@ "linux/amd64": "https://github.com/desmos-labs/desmos/releases/download/v7.1.0/desmos-v7.1.0-linux-amd64" }, "cosmos_sdk_version": "desmos-labs/cosmos-sdk v0.47.10-desmos", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.4" @@ -130,7 +130,6 @@ "linux/amd64": "https://github.com/desmos-labs/desmos/releases/download/v7.0.2/desmos-7.0.2-linux-amd64" }, "cosmos_sdk_version": "desmos-labs/cosmos-sdk v0.47.9-desmos", - "ibc_go_version": "v7.3.2", "consensus": { "type": "cometbft", "version": "v0.34.4" @@ -138,7 +137,22 @@ "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.desmos/data/wasm", - "next_version_name": "v7.1.0" + "next_version_name": "v7.1.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/desmos-labs/cosmos-sdk", + "version": "v0.47.9", + "tag": "v0.47.9-desmos" + }, + "cosmwasm": { + "version": "v0.45.0", + "path": "$HOME/.desmos/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.2" + } }, { "name": "v7.1.0", @@ -152,7 +166,6 @@ "linux/amd64": "https://github.com/desmos-labs/desmos/releases/download/v7.1.0/desmos-v7.1.0-linux-amd64" }, "cosmos_sdk_version": "desmos-labs/cosmos-sdk v0.47.10-desmos", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.4" @@ -160,9 +173,39 @@ "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.desmos/data/wasm", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/desmos-labs/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-desmos" + }, + "cosmwasm": { + "version": "v0.45.0", + "path": "$HOME/.desmos/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/desmos-labs/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-desmos" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + }, + "cosmwasm": { + "version": "v0.45.0", + "path": "$HOME/.desmos/data/wasm", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png", diff --git a/dhealth/assetlist.json b/dhealth/assetlist.json index ca6752f4ce..c0e758d832 100644 --- a/dhealth/assetlist.json +++ b/dhealth/assetlist.json @@ -36,7 +36,8 @@ "primary_color_hex": "#140c7c" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/dhealth/chain.json b/dhealth/chain.json index 42b4028482..348df9147a 100644 --- a/dhealth/chain.json +++ b/dhealth/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://dhealth.com/", "pretty_name": "dHealth", + "chain_type": "cosmos", "chain_id": "dhealth", "bech32_prefix": "dh", "daemon_name": "dhealthd", @@ -41,7 +42,6 @@ "linux/amd64": "https://github.com/dhealthproject/dhealth/releases/download/v1.0.0/dhealthd-1.0.0-linux-amd64" }, "cosmos_sdk_version": "cosmos/cosmos-sdk v0.47.4", - "ibc_go_version": "v7.2.0", "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -63,7 +63,6 @@ "linux/amd64": "https://github.com/dhealthproject/dhealth/releases/download/v1.0.0/dhealthd-1.0.0-linux-amd64" }, "cosmos_sdk_version": "cosmos/cosmos-sdk v0.47.4", - "ibc_go_version": "v7.2.0", "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -71,9 +70,37 @@ "cosmwasm_version": "v0.41.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.dhealth/wasm", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/cosmos/cosmos-sdk", + "version": "v0.47.4" + }, + "cosmwasm": { + "version": "v0.41.0", + "path": "$HOME/.dhealth/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.2.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/cosmos/cosmos-sdk", + "version": "v0.47.4" + }, + "ibc": { + "type": "go", + "version": "v7.2.0" + }, + "cosmwasm": { + "version": "v0.41.0", + "path": "$HOME/.dhealth/wasm", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", @@ -90,6 +117,11 @@ "id": "052ab696b79fbcf24bfb0e5cf2e6b9d7e4efe8f8", "address": "rpc.dhealth.nodestake.org:26656", "provider": "NodeStake" + }, + { + "id": "6f6a3a908634b79b6fe7c4988efec2553f188234", + "address": "dhealth.seed.nodeshub.online:28256", + "provider": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ" } ], "persistent_peers": [ @@ -102,6 +134,11 @@ "id": "69d16d1147e90cdfb8ed066331a0abb9c71c3ae2", "address": "162.19.223.89:26656", "provider": "NodeStake" + }, + { + "id": "637077d431f618181597706810a65c826524fd74", + "address": "dhealth.rpc.nodeshub.online:28256", + "provider": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ" } ] }, @@ -114,6 +151,10 @@ { "address": "https://rpc.dhealth.nodestake.org", "provider": "NodeStake" + }, + { + "address": "https://dhealth.rpc.nodeshub.online:443", + "provider": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ" } ], "rest": [ @@ -124,6 +165,10 @@ { "address": "https://api.dhealth.nodestake.org", "provider": "NodeStake" + }, + { + "address": "https://dhealth.api.nodeshub.online", + "provider": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ" } ], "grpc": [ @@ -134,6 +179,10 @@ { "address": "https://grpc.dhealth.nodestake.org:443", "provider": "NodeStake" + }, + { + "address": "dhealth.grpc.nodeshub.online", + "provider": "Nodes Hub" } ] }, @@ -143,6 +192,12 @@ "url": "https://explorer.nodestake.org/dhealth", "tx_page": "https://explorer.nodestake.org/dhealth/tx/${txHash}", "account_page": "https://explorer.nodestake.org/dhealth/account/${accountAddress}" + }, + { + "kind": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ", + "url": "https://explorer.nodeshub.online/dhealth/", + "tx_page": "https://explorer.nodeshub.online/dhealth/tx/${txHash}", + "account_page": "https://explorer.nodeshub.online/dhealth/accounts/${accountAddress}" } ], "images": [ diff --git a/dig/assetlist.json b/dig/assetlist.json index 53a3cfe7b0..89e5f44682 100644 --- a/dig/assetlist.json +++ b/dig/assetlist.json @@ -29,7 +29,8 @@ "primary_color_hex": "#1b1433" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/dig/chain.json b/dig/chain.json index 2b6adab489..fb6f1ba78b 100644 --- a/dig/chain.json +++ b/dig/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://digchain.org/", "pretty_name": "Dig Chain", + "chain_type": "cosmos", "chain_id": "dig-1", "bech32_prefix": "dig", "daemon_name": "digd", diff --git a/doravota/assetlist.json b/doravota/assetlist.json index 3cbd87abb4..b3a69dce0b 100644 --- a/doravota/assetlist.json +++ b/doravota/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#fba214" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/doravota/chain.json b/doravota/chain.json index 6c8cb9e9c8..f5ac66c194 100644 --- a/doravota/chain.json +++ b/doravota/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "doravota", + "chain_type": "cosmos", "chain_id": "vota-ash", "pretty_name": "Dora Vota", "status": "live", @@ -36,7 +37,6 @@ "compatible_versions": [ "v11.0.0" ], - "binaries": {}, "genesis": { "genesis_url": "https://github.com/DoraFactory/doravota/blob/main/config/mainnet/genesis.json" }, @@ -46,24 +46,21 @@ "recommended_version": "v9.0.1", "compatible_versions": [ "v9.0.1" - ], - "binaries": {} + ] }, { "name": "v10.0.1", "recommended_version": "v10.0.1", "compatible_versions": [ "v10.0.1" - ], - "binaries": {} + ] }, { "name": "v11", "recommended_version": "v11.0.0", "compatible_versions": [ "v11.0.0" - ], - "binaries": {} + ] } ] }, @@ -73,9 +70,20 @@ "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚑️ Nodes & Staking" + }, + { + "id": "4ec0eb59ae35418a9bfa3df3783bad4f372b49c0", + "address": "doravota-mainnet-seed.itrocket.net:42656", + "provider": "ITRocket" } ], - "persistent_peers": [] + "persistent_peers": [ + { + "id": "d6edfdb5eae3565a4af1ce35fd2c03084b8c3ef1", + "address": "doravota-mainnet-peer.itrocket.net:42656", + "provider": "ITRocket" + } + ] }, "apis": { "rpc": [ @@ -90,6 +98,10 @@ { "address": "https://dora-rpc.publicnode.com:443", "provider": "Allnodes ⚑️ Nodes & Staking" + }, + { + "address": "https://doravota-mainnet-rpc.itrocket.net:443", + "provider": "ITRocket" } ], "rest": [ @@ -104,6 +116,10 @@ { "address": "https://dora-rest.publicnode.com", "provider": "Allnodes ⚑️ Nodes & Staking" + }, + { + "address": "https://doravota-mainnet-api.itrocket.net", + "provider": "ITRocket" } ], "grpc": [ @@ -114,6 +130,10 @@ { "address": "dora-grpc.publicnode.com:443", "provider": "Allnodes ⚑️ Nodes & Staking" + }, + { + "address": "doravota-mainnet-grpc.itrocket.net:443", + "provider": "ITRocket" } ] }, @@ -127,6 +147,16 @@ "kind": "lesnik | UTSA Ping Pub", "url": "https://exp.utsa.tech/dora/staking", "tx_page": "https://exp.utsa.tech/dora/tx/${txHash}" + }, + { + "kind": "ITRocket Ping Pub", + "url": "https://mainnet.itrocket.net/doravota/staking", + "tx_page": "https://mainnet.itrocket.net/doravota/tx/${txHash}" + }, + { + "kind": "Explorers", + "url": "https://dora.explorers.guru", + "tx_page": "https://dora.explorers.guru/transaction/${txHash}" } ] -} \ No newline at end of file +} diff --git a/dydx/assetlist.json b/dydx/assetlist.json index 69472f5abd..ead0872b12 100644 --- a/dydx/assetlist.json +++ b/dydx/assetlist.json @@ -42,7 +42,8 @@ "socials": { "website": "https://dydx.trade/", "twitter": "https://twitter.com/dYdX" - } + }, + "type_asset": "sdk.coin" }, { "description": "Noble USDC on dYdX Protocol.", @@ -81,16 +82,17 @@ "chain_name": "noble", "base_denom": "uusdc" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primary_color_hex": "#2474cc" + "circle": true, + "primary_color_hex": "#2775CA" } } ], "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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } } ] diff --git a/dydx/chain.json b/dydx/chain.json index dd21f6d9c6..c5506b4e15 100644 --- a/dydx/chain.json +++ b/dydx/chain.json @@ -5,6 +5,7 @@ "website": "https://dydx.trade/", "network_type": "mainnet", "pretty_name": "dYdX Protocol", + "chain_type": "cosmos", "chain_id": "dydx-mainnet-1", "bech32_prefix": "dydx", "daemon_name": "dydxprotocold", @@ -40,19 +41,20 @@ }, "codebase": { "git_repo": "https://github.com/dydxprotocol/v4-chain/", - "recommended_version": "protocol/v5.0.0", + "recommended_version": "protocol/v5.2.0", "compatible_versions": [ - "protocol/v5.0.0" + "protocol/v5.2.0" ], "binaries": { - "linux/amd64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv5.0.0/dydxprotocold-v5.0.0-linux-amd64.tar.gz", - "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv5.0.0/dydxprotocold-v5.0.0-linux-arm64.tar.gz" + "linux/amd64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv5.2.0/dydxprotocold-v5.2.0-linux-amd64.tar.gz", + "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv5.2.0/dydxprotocold-v5.2.0-linux-arm64.tar.gz" }, - "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.50.6-0.20240517185527-7330926cd9ad", - "ibc_go_version": "v8.0.0", + "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.50.6-0.20240606183841-18966898625f", "consensus": { "type": "cometbft", - "version": "dydxprotocol/cometbft v0.38.6-0.20240426214049-c8beeeada40a" + "version": "v0.38.6", + "repo": "https://github.com/dydxprotocol/cometbft", + "tag": "v0.38.6-0.20240426214049-c8beeeada40a" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/dydxopsdao/networks/main/dydx-mainnet-1/genesis.json" @@ -70,12 +72,23 @@ "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv2.0.0/dydxprotocold-v2.0.0-linux-arm64.tar.gz" }, "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.47.5-0.20231011192538-b95c66dedbd5", - "ibc_go_version": "v7.3.0", "consensus": { "type": "cometbft", - "version": "dydxprotocol/cometbft v0.37.3-0.20230908230338-65f7a2f25c18" + "version": "v0.37.3", + "repo": "https://github.com/dydxprotocol/cometbft", + "tag": "v0.37.3-0.20230908230338-65f7a2f25c18" }, - "next_version_name": "v3.0.0" + "next_version_name": "v3.0.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/dydxprotocol/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-0.20231011192538-b95c66dedbd5" + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } }, { "name": "v3.0.0", @@ -91,12 +104,23 @@ "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv3.0.0/dydxprotocold-v3.0.0-linux-arm64.tar.gz" }, "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.47.5-0.20240111163003-128eb0a555af", - "ibc_go_version": "v7.3.0", "consensus": { "type": "cometbft", - "version": "dydxprotocol/cometbft v0.37.3-0.20230908230338-65f7a2f25c18" + "version": "v0.37.3", + "repo": "https://github.com/dydxprotocol/cometbft", + "tag": "v0.37.3-0.20230908230338-65f7a2f25c18" + }, + "next_version_name": "v4.0.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/dydxprotocol/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-0.20240111163003-128eb0a555af" }, - "next_version_name": "v4.0.0" + "ibc": { + "type": "go", + "version": "v7.3.0" + } }, { "name": "v4.0.0", @@ -111,12 +135,23 @@ "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv4.0.5/dydxprotocold-v4.0.5-linux-arm64.tar.gz" }, "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.50.5-0.20240220212824-35f31482370c", - "ibc_go_version": "v8.0.0", "consensus": { "type": "cometbft", - "version": "dydxprotocol/cometbft v0.38.6-0.20240409171441-6d0767b72c06" + "version": "v0.38.6", + "repo": "https://github.com/dydxprotocol/cometbft", + "tag": "v0.38.6-0.20240409171441-6d0767b72c06" + }, + "next_version_name": "v4.1.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/dydxprotocol/cosmos-sdk", + "version": "v0.50.5", + "tag": "v0.50.5-0.20240220212824-35f31482370c" }, - "next_version_name": "v4.1.0" + "ibc": { + "type": "go", + "version": "v8.0.0" + } }, { "name": "v4.1.0", @@ -132,12 +167,23 @@ "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv4.1.0/dydxprotocold-v4.1.0-linux-arm64.tar.gz" }, "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.50.5-0.20240220212824-35f31482370c", - "ibc_go_version": "v8.0.0", "consensus": { "type": "cometbft", - "version": "dydxprotocol/cometbft v0.38.6-0.20240409171441-6d0767b72c06" + "version": "v0.38.6", + "repo": "https://github.com/dydxprotocol/cometbft", + "tag": "v0.38.6-0.20240409171441-6d0767b72c06" }, - "next_version_name": "v5.0.0" + "next_version_name": "v5.0.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/dydxprotocol/cosmos-sdk", + "version": "v0.50.5", + "tag": "v0.50.5-0.20240220212824-35f31482370c" + }, + "ibc": { + "type": "go", + "version": "v8.0.0" + } }, { "name": "v5.0.0", @@ -152,14 +198,128 @@ "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv5.0.0/dydxprotocold-v5.0.0-linux-arm64.tar.gz" }, "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.50.6-0.20240517185527-7330926cd9ad", - "ibc_go_version": "v8.0.0", "consensus": { "type": "cometbft", - "version": "dydxprotocol/cometbft v0.38.6-0.20240426214049-c8beeeada40a" + "version": "v0.38.6", + "repo": "https://github.com/dydxprotocol/cometbft", + "tag": "v0.38.6-0.20240426214049-c8beeeada40a" + }, + "next_version_name": "v5.1.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/dydxprotocol/cosmos-sdk", + "version": "v0.50.6", + "tag": "v0.50.6-0.20240517185527-7330926cd9ad" + }, + "ibc": { + "type": "go", + "version": "v8.0.0" + } + }, + { + "name": "v5.1.0", + "proposal": 125, + "height": 21142000, + "recommended_version": "protocol/v5.1.0", + "compatible_versions": [ + "protocol/v5.1.0" + ], + "binaries": { + "linux/amd64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv5.1.0/dydxprotocold-v5.1.0-linux-amd64.tar.gz", + "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv5.1.0/dydxprotocold-v5.1.0-linux-arm64.tar.gz" + }, + "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.50.6-0.20240606183841-18966898625f", + "consensus": { + "type": "cometbft", + "version": "v0.38.6", + "repo": "https://github.com/dydxprotocol/cometbft", + "tag": "v0.38.6-0.20240426214049-c8beeeada40a" + }, + "sdk": { + "type": "cosmos", + "repo": "https://github.com/dydxprotocol/cosmos-sdk", + "version": "v0.50.6", + "tag": "v0.50.6-0.20240606183841-18966898625f" + }, + "ibc": { + "type": "go", + "version": "v8.0.0" + }, + "next_version_name": "v5.2.0" + }, + { + "name": "v5.2.0", + "proposal": 130, + "height": 22170000, + "recommended_version": "protocol/v5.2.0", + "compatible_versions": [ + "protocol/v5.2.0" + ], + "binaries": { + "linux/amd64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv5.2.0/dydxprotocold-v5.2.0-linux-amd64.tar.gz", + "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv5.2.0/dydxprotocold-v5.2.0-linux-arm64.tar.gz" + }, + "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.50.6-0.20240606183841-18966898625f", + "consensus": { + "type": "cometbft", + "version": "v0.38.6", + "repo": "https://github.com/dydxprotocol/cometbft", + "tag": "v0.38.6-0.20240426214049-c8beeeada40a" + }, + "sdk": { + "type": "cosmos", + "repo": "https://github.com/dydxprotocol/cosmos-sdk", + "version": "v0.50.6", + "tag": "v0.50.6-0.20240606183841-18966898625f" + }, + "ibc": { + "type": "go", + "version": "v8.0.0" + }, + "next_version_name": "v6.0.0" + }, + { + "name": "v6.0.0", + "proposal": 160, + "height": 26785000, + "recommended_version": "protocol/v6.0.4", + "compatible_versions": [ + "protocol/v6.0.4" + ], + "binaries": { + "linux/amd64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv6.0.4/dydxprotocold-v6.0.4-linux-amd64.tar.gz", + "linux/arm64": "https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv6.0.4/dydxprotocold-v6.0.4-linux-arm64.tar.gz" + }, + "cosmos_sdk_version": "dydxprotocol/cosmos-sdk v0.50.6-0.20240808180557-4b1c1dc17703", + "consensus": { + "type": "cometbft", + "version": "v0.38.6", + "repo": "https://github.com/dydxprotocol/cometbft", + "tag": "v0.38.6-0.20241001172045-cfee87f3abbf" + }, + "sdk": { + "type": "cosmos", + "repo": "https://github.com/dydxprotocol/cosmos-sdk", + "version": "v0.50.6", + "tag": "v0.50.6-0.20240808180557-4b1c1dc17703" + }, + "ibc": { + "type": "go", + "version": "v8.0.0" }, "next_version_name": "" } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/dydxprotocol/cosmos-sdk", + "version": "v0.50.6", + "tag": "v0.50.6-0.20240606183841-18966898625f" + }, + "ibc": { + "type": "go", + "version": "v8.0.0" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", @@ -257,7 +417,7 @@ "provider": "Bware Labs" }, { - "address": "https://dydx-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/dydx", "provider": "Lavender.Five Nodes 🐝" }, { @@ -319,7 +479,7 @@ "provider": "Kingnodes πŸ‘‘" }, { - "address": "https://dydx-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/dydx", "provider": "Lavender.Five Nodes 🐝" }, { @@ -389,7 +549,7 @@ "provider": "Kingnodes πŸ‘‘" }, { - "address": "https://dydx-grpc.lavenderfive.com", + "address": "dydx.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -453,4 +613,4 @@ } } ] -} \ No newline at end of file +} diff --git a/dymension/chain.json b/dymension/chain.json index 5ad200e76e..dbffcb4c39 100644 --- a/dymension/chain.json +++ b/dymension/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://portal.dymension.xyz", "pretty_name": "Dymension Hub", + "chain_type": "cosmos", "chain_id": "dymension_1100-1", "bech32_prefix": "dym", "slip44": 60, @@ -164,7 +165,7 @@ "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, { - "address": "https://dymension-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/dymension", "provider": "Lavender.Five Nodes 🐝" }, { @@ -266,6 +267,10 @@ { "address": "https://rpc.archive.dymension.mainnet.dteam.tech:443", "provider": "DTEAM" + }, + { + "address": "https://dymension.drpc.org", + "provider": "dRPC" } ], "rest": [ @@ -286,7 +291,7 @@ "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, { - "address": "https://dymension-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/dymension", "provider": "Lavender.Five Nodes 🐝" }, { @@ -408,7 +413,7 @@ "provider": "[NODERS]TEAM" }, { - "address": "https://dymension-grpc.lavenderfive.com:443", + "address": "dymension.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/dyson/assetlist.json b/dyson/assetlist.json index f2a951f2b2..a59397bb25 100644 --- a/dyson/assetlist.json +++ b/dyson/assetlist.json @@ -26,7 +26,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ diff --git a/dyson/chain.json b/dyson/chain.json index dcbc356f3a..27113fc640 100644 --- a/dyson/chain.json +++ b/dyson/chain.json @@ -5,6 +5,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Dyson Protocol", + "chain_type": "cosmos", "chain_id": "dyson-mainnet-01", "bech32_prefix": "dys", "node_home": "$HOME/.dyson", diff --git a/echelon/assetlist.json b/echelon/assetlist.json index 8c0283ac1d..ab5f99f723 100644 --- a/echelon/assetlist.json +++ b/echelon/assetlist.json @@ -25,7 +25,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/echelon/chain.json b/echelon/chain.json index 3b6950f6fe..17d9f7cd3b 100644 --- a/echelon/chain.json +++ b/echelon/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Echelon", + "chain_type": "cosmos", "chain_id": "echelon_3000-3", "bech32_prefix": "echelon", "node_home": "$HOME/.echelond", diff --git a/emoney/assetlist.json b/emoney/assetlist.json index ddd33ab60c..2db089b483 100644 --- a/emoney/assetlist.json +++ b/emoney/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#caf2ea" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.", @@ -62,7 +63,8 @@ "primary_color_hex": "#f4c808" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "e-Money CHF stablecoin. Audited and backed by fiat CHF deposits and government bonds.", @@ -92,7 +94,8 @@ "primary_color_hex": "#db2b1c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "e-Money NOK stablecoin. Audited and backed by fiat NOK deposits and government bonds.", @@ -122,7 +125,8 @@ "primary_color_hex": "#cb142d" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "e-Money DKK stablecoin. Audited and backed by fiat DKK deposits and government bonds.", @@ -152,7 +156,8 @@ "primary_color_hex": "#ac0c34" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "e-Money SEK stablecoin. Audited and backed by fiat SEK deposits and government bonds.", @@ -182,7 +187,8 @@ "primary_color_hex": "#045493" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/emoney/chain.json b/emoney/chain.json index 37fa641abb..d819e6596e 100644 --- a/emoney/chain.json +++ b/emoney/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "e-Money", + "chain_type": "cosmos", "chain_id": "emoney-3", "bech32_prefix": "emoney", "daemon_name": "emd", diff --git a/empowerchain/assetlist.json b/empowerchain/assetlist.json index 8ae91ec04d..6ab7301201 100644 --- a/empowerchain/assetlist.json +++ b/empowerchain/assetlist.json @@ -38,7 +38,8 @@ "circle": false } } - ] + ], + "type_asset": "sdk.coin" } ] -} +} \ No newline at end of file diff --git a/empowerchain/chain.json b/empowerchain/chain.json index 6273234162..edaea2bcb2 100644 --- a/empowerchain/chain.json +++ b/empowerchain/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "empowerchain", + "chain_type": "cosmos", "chain_id": "empowerchain-1", "pretty_name": "EmpowerChain", "status": "live", @@ -49,7 +50,11 @@ "v1.0.0" ] } - ] + ], + "cosmwasm": { + "version": "0.45", + "enabled": true + } }, "peers": { "seeds": [ @@ -74,11 +79,6 @@ "id": "a1427b456513ab70967a2a5c618d347bc89e8848", "address": "seed.empowerchain.io:26656" }, - { - "id": "c28827cb96c14c905b127b92065a3fb4cd77d7f6", - "address": "seeds.whispernode.com:17456", - "provider": "WhisperNode 🀐" - }, { "id": "9aa8a73ea9364aa3cf7806d4dd25b6aed88d8152", "address": "empowerchain.seed.mzonder.com:12156", @@ -151,10 +151,6 @@ "address": "http://empw.rpc.m.stavr.tech:22057", "provider": "πŸ”₯STAVRπŸ”₯" }, - { - "address": "https://rpc-empower.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://rpc-empowerchain.mzonder.com:443", "provider": "MZONDER" @@ -217,10 +213,6 @@ "address": "https://empower-api.w3coins.io", "provider": "w3coins" }, - { - "address": "https://lcd-empower.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://api-empower.vinjan.xyz:443", "provider": "vinjan" @@ -355,4 +347,4 @@ } } ] -} +} \ No newline at end of file diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 0000000000..a985fd3a18 --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,8 @@ +import json from "eslint-plugin-json"; + +export default [ + { + files: ["./**/*.json"], + ...json.configs["recommended"], + }, +]; diff --git a/ethos/assetlist.json b/ethos/assetlist.json index 8c2e41858b..f2226952f5 100644 --- a/ethos/assetlist.json +++ b/ethos/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#848484" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/ethos/chain.json b/ethos/chain.json index 69c216fef9..0d32d64f7b 100644 --- a/ethos/chain.json +++ b/ethos/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Ethos", + "chain_type": "cosmos", "chain_id": "ethos_7003-1", "bech32_prefix": "ethos", "daemon_name": "ethosd", diff --git a/evmos/assetlist.json b/evmos/assetlist.json index 3b8aa782ee..c9238a527f 100644 --- a/evmos/assetlist.json +++ b/evmos/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://evmos.org/", "twitter": "https://twitter.com/EvmosOrg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Tether USDt on Evmos", @@ -121,7 +122,8 @@ "socials": { "website": "https://www.neokingdom.org/", "twitter": "https://twitter.com/NEOKingdomDAO" - } + }, + "type_asset": "sdk.coin" }, { "description": "The legacy token of Teledisko DAO.", diff --git a/evmos/chain.json b/evmos/chain.json index 62e0f7bb3e..0469060b9d 100644 --- a/evmos/chain.json +++ b/evmos/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://evmos.org/", "pretty_name": "Evmos", + "chain_type": "cosmos", "chain_id": "evmos_9001-2", "bech32_prefix": "evmos", "node_home": "$HOME/.evmosd", @@ -36,22 +37,21 @@ }, "codebase": { "git_repo": "https://github.com/evmos/evmos", - "recommended_version": "v18.1.0", + "recommended_version": "v19.1.0", "compatible_versions": [ - "v18.1.0" + "v19.1.0" ], - "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.5-evmos.2", + "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.12-evmos.2", "consensus": { "type": "cometbft", - "version": "v0.37.4" + "version": "v0.37.9" }, - "ibc_go_version": "7.4.0", "binaries": { - "linux/amd64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Linux_amd64.tar.gz", - "linux/arm64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Darwin_amd64.tar.gz", - "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Windows_amd64.zip" + "linux/amd64": "https://github.com/evmos/evmos/releases/download/v19.1.0/evmos_19.1.0_Linux_amd64.tar.gz", + "linux/arm64": "https://github.com/evmos/evmos/releases/download/v19.1.0/evmos_19.1.0_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/evmos/evmos/releases/download/v19.1.0/evmos_19.1.0_Darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v19.1.0/evmos_19.1.0_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/evmos/evmos/releases/download/v19.1.0/evmos_19.1.0_Windows_amd64.zip" }, "genesis": { "genesis_url": "https://archive.evmos.org/mainnet/genesis.json" @@ -75,7 +75,6 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "6.1.0", "binaries": { "linux/amd64": "https://github.com/evmos/evmos/releases/download/v12.1.5/evmos_12.1.5_Linux_amd64.tar.gz", "linux/arm64": "https://github.com/evmos/evmos/releases/download/v12.1.5/evmos_12.1.5_Linux_arm64.tar.gz", @@ -83,7 +82,15 @@ "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v12.1.5/evmos_12.1.5_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/evmos/evmos/releases/download/v12.1.5/evmos_12.1.5_Windows_amd64.zip" }, - "next_version_name": "v13.0.2" + "next_version_name": "v13.0.2", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "6.1.0" + } }, { "name": "v13.0.2", @@ -99,7 +106,6 @@ "type": "cometbft", "version": "v0.34.29" }, - "ibc_go_version": "v6.2.0", "binaries": { "linux/amd64": "https://github.com/evmos/evmos/releases/download/v13.0.2/evmos_13.0.2_Linux_amd64.tar.gz", "linux/arm64": "https://github.com/evmos/evmos/releases/download/v13.0.2/evmos_13.0.2_Linux_arm64.tar.gz", @@ -107,7 +113,15 @@ "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v13.0.2/evmos_13.0.2_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/evmos/evmos/releases/download/v13.0.2/evmos_13.0.2_Windows_amd64.zip" }, - "next_version_name": "v14.0.0" + "next_version_name": "v14.0.0", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "v6.2.0" + } }, { "name": "v14.0.0", @@ -123,7 +137,6 @@ "type": "cometbft", "version": "v0.37.2" }, - "ibc_go_version": "v7.3.0", "binaries": { "linux/amd64": "https://github.com/evmos/evmos/releases/download/v14.0.0/evmos_14.0.0_Linux_amd64.tar.gz", "linux/arm64": "https://github.com/evmos/evmos/releases/download/v14.0.0/evmos_14.0.0_Linux_arm64.tar.gz", @@ -131,7 +144,16 @@ "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v14.0.0/evmos_14.0.0_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/evmos/evmos/releases/download/v14.0.0/evmos_14.0.0_Windows_amd64.zip" }, - "next_version_name": "v15.0.0" + "next_version_name": "v15.0.0", + "sdk": { + "type": "cosmos", + "version": "v0.47.4", + "tag": "v0.47.4-evmos.2" + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } }, { "name": "v15.0.0", @@ -145,9 +167,9 @@ "cosmos_sdk_version": "v0.47.5-evmos", "consensus": { "type": "cometbft", - "version": "v0.37.3-0.20230920093934-46df7b597e3c" + "version": "v0.37.3", + "tag": "v0.37.3-0.20230920093934-46df7b597e3c" }, - "ibc_go_version": "v7.3.1", "binaries": { "linux/amd64": "https://github.com/evmos/evmos/releases/download/v15.0.0/evmos_15.0.0_Linux_amd64.tar.gz", "linux/arm64": "https://github.com/evmos/evmos/releases/download/v15.0.0/evmos_15.0.0_Linux_arm64.tar.gz", @@ -155,7 +177,16 @@ "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v15.0.0/evmos_15.0.0_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/evmos/evmos/releases/download/v15.0.0/evmos_15.0.0_Windows_amd64.zip" }, - "next_version_name": "v16.0.0" + "next_version_name": "v16.0.0", + "sdk": { + "type": "cosmos", + "version": "v0.47.5", + "tag": "v0.47.5-evmos.2" + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v16.0.0", @@ -169,9 +200,9 @@ "cosmos_sdk_version": "v0.47.5-evmos.2", "consensus": { "type": "cometbft", - "version": "v0.37.3-0.20230920093934-46df7b597e3c" + "version": "v0.37.3", + "tag": "v0.37.3-0.20230920093934-46df7b597e3c" }, - "ibc_go_version": "v7.3.1", "binaries": { "linux/amd64": "https://github.com/evmos/evmos/releases/download/v16.0.4/evmos_16.0.4_Linux_amd64.tar.gz", "linux/arm64": "https://github.com/evmos/evmos/releases/download/v16.0.4/evmos_16.0.4_Linux_arm64.tar.gz", @@ -179,7 +210,16 @@ "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v16.0.4/evmos_16.0.4_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/evmos/evmos/releases/download/v16.0.4/evmos_16.0.4_Windows_amd64.zip" }, - "next_version_name": "v17.0.0" + "next_version_name": "v17.0.0", + "sdk": { + "type": "cosmos", + "version": "v0.47.5", + "tag": "v0.47.5-evmos.2" + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v17.0.0", @@ -194,7 +234,6 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "7.4.0", "binaries": { "linux/amd64": "https://github.com/evmos/evmos/releases/download/v17.0.1/evmos_17.0.1_Linux_amd64.tar.gz", "linux/arm64": "https://github.com/evmos/evmos/releases/download/v17.0.1/evmos_17.0.1_Linux_arm64.tar.gz", @@ -202,7 +241,17 @@ "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v17.0.1/evmos_17.0.1_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/evmos/evmos/releases/download/v17.0.1/evmos_17.0.1_Windows_amd64.zip" }, - "next_version_name": "v18.0.0" + "next_version_name": "v18.0.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-evmos.2" + }, + "ibc": { + "type": "go", + "version": "7.4.0" + } }, { "name": "v18.0.0", @@ -217,7 +266,6 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "7.4.0", "binaries": { "linux/amd64": "https://github.com/evmos/evmos/releases/download/v18.0.1/evmos_18.0.1_Linux_amd64.tar.gz", "linux/arm64": "https://github.com/evmos/evmos/releases/download/v18.0.1/evmos_18.0.1_Linux_arm64.tar.gz", @@ -225,7 +273,17 @@ "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v18.0.1/evmos_18.0.1_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/evmos/evmos/releases/download/v18.0.1/evmos_18.0.1_Windows_amd64.zip" }, - "next_version_name": "v18.1.0" + "next_version_name": "v18.1.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-evmos.2" + }, + "ibc": { + "type": "go", + "version": "7.4.0" + } }, { "name": "v18.1.0", @@ -240,7 +298,6 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "7.4.0", "binaries": { "linux/amd64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Linux_amd64.tar.gz", "linux/arm64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Linux_arm64.tar.gz", @@ -248,9 +305,61 @@ "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/evmos/evmos/releases/download/v18.1.0/evmos_18.1.0_Windows_amd64.zip" }, + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-evmos.2" + }, + "ibc": { + "type": "go", + "version": "7.4.0" + }, + "next_version_name": "v19.1.0" + }, + { + "name": "v19.1.0", + "tag": "v19.1.0", + "height": 22763500, + "recommended_version": "v19.1.0", + "compatible_versions": [ + "v19.1.0" + ], + "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.12-evmos.2", + "consensus": { + "type": "cometbft", + "version": "v0.37.9" + }, + "binaries": { + "linux/amd64": "https://github.com/evmos/evmos/releases/download/v19.1.0/evmos_19.1.0_Linux_amd64.tar.gz", + "linux/arm64": "https://github.com/evmos/evmos/releases/download/v19.1.0/evmos_19.1.0_Linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/evmos/evmos/releases/download/v19.1.0/evmos_19.1.0_Darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v19.1.0/evmos_19.1.0_Darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/evmos/evmos/releases/download/v19.1.0/evmos_19.1.0_Windows_amd64.zip" + }, + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.12", + "tag": "v0.47.12-evmos.2" + }, + "ibc": { + "type": "go", + "version": "7.6.0" + }, "next_version_name": "" } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.12", + "tag": "v0.47.5-evmos.2" + }, + "ibc": { + "type": "go", + "version": "7.6.0" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", @@ -375,7 +484,7 @@ "provider": "ecostake" }, { - "address": "https://evmos-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/evmos", "provider": "Lavender.Five Nodes 🐝" }, { @@ -469,6 +578,10 @@ { "address": "https://rpc.evmos.citizenweb3.com:443", "provider": "Citizen Web3" + }, + { + "address": "https://evmos.drpc.org", + "provider": "dRPC" } ], "rest": [ @@ -477,7 +590,7 @@ "provider": "Blockdaemon" }, { - "address": "https://evmos-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/evmos", "provider": "Lavender.Five Nodes 🐝" }, { @@ -571,7 +684,7 @@ "provider": "Notional" }, { - "address": "evmos-grpc.lavenderfive.com:443", + "address": "evmos.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/fetchhub/assetlist.json b/fetchhub/assetlist.json index e40dbd2cd6..bb5e546d8a 100644 --- a/fetchhub/assetlist.json +++ b/fetchhub/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#1c2444" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The MOBX coin rewards the use of eco-friendly micromobility transportation.", @@ -61,7 +62,8 @@ "primary_color_hex": "#04ae9b" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/fetchhub/chain.json b/fetchhub/chain.json index 81006e6cba..f7d39e05db 100644 --- a/fetchhub/chain.json +++ b/fetchhub/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Fetch.ai", + "chain_type": "cosmos", "chain_id": "fetchhub-4", "bech32_prefix": "fetch", "daemon_name": "fetchd", diff --git a/finschia/chain.json b/finschia/chain.json index edc82fa1f9..728f42a11b 100644 --- a/finschia/chain.json +++ b/finschia/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "finschia", + "chain_type": "cosmos", "chain_id": "finschia-2", "website": "https://www.finschia.io/", "pretty_name": "Finschia", @@ -41,7 +42,6 @@ "v2.0.0", "v2.0.1" ], - "go_version": "1.20", "binaries": { "linux/amd64": "https://github.com/Finschia/finschia/releases/download/v2.0.1/fnsad-2.0.1-linux-amd64", "linux/arm64": "https://github.com/Finschia/finschia/releases/download/v2.0.1/fnsad-2.0.1-linux-arm64", @@ -52,10 +52,6 @@ "cosmwasm_version": "github.com/Finschia/wasmd@v0.2.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.finschia/wasm/wasm", - "ibc_go_version": "v4.3.1", - "ics_enabled": [ - "ics20-1" - ], "genesis": { "name": "v2", "genesis_url": "https://vos.line-scdn.net/finschia-2-fileshare/datafile/finschia-prod-2/finschia-2-genesis.tgz" @@ -69,7 +65,6 @@ "compatible_versions": [ "v1.1.1" ], - "go_version": "1.18", "binaries": { "linux/amd64": "https://github.com/Finschia/finschia/releases/download/v1.1.1/finschia-v1.1.1-linux-amd64.tgz", "linux/arm64": "https://github.com/Finschia/finschia/releases/download/v1.1.1/finschia-v1.1.1-linux-arm64.tgz", @@ -80,11 +75,29 @@ "cosmwasm_version": "github.com/Finschia/wasmd@v0.1.5", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.finschia/wasm/wasm", - "ibc_go_version": "v3.3.3", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v2" + "next_version_name": "v2", + "sdk": { + "type": "cosmos", + "version": "v0.47.3", + "repo": "https://github.com/Finschia/finschia-sdk" + }, + "language": { + "type": "go", + "version": "1.18" + }, + "cosmwasm": { + "version": "v0.1.5", + "path": "$HOME/.finschia/wasm/wasm", + "enabled": true, + "repo": "https://github.com/Finschia/wasmd" + }, + "ibc": { + "type": "go", + "version": "v3.3.3", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v2", @@ -96,7 +109,6 @@ "v2.0.0", "v2.0.1" ], - "go_version": "1.20", "binaries": { "linux/amd64": "https://github.com/Finschia/finschia/releases/download/v2.0.1/fnsad-2.0.1-linux-amd64", "linux/arm64": "https://github.com/Finschia/finschia/releases/download/v2.0.1/fnsad-2.0.1-linux-arm64", @@ -107,14 +119,54 @@ "cosmwasm_version": "github.com/Finschia/wasmd@v0.2.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.finschia/wasm/wasm", - "ibc_go_version": "v4.3.1", - "ics_enabled": [ - "ics20-1" - ], "previous_version_name": "v1", - "next_version_name": "v3" + "next_version_name": "v3", + "sdk": { + "type": "cosmos", + "version": "v0.48.1", + "repo": "https://github.com/Finschia/finschia-sdk" + }, + "language": { + "type": "go", + "version": "1.20" + }, + "cosmwasm": { + "version": "v0.2.0", + "path": "$HOME/.finschia/wasm/wasm", + "enabled": true, + "repo": "https://github.com/Finschia/wasmd" + }, + "ibc": { + "type": "go", + "version": "v4.3.1", + "ics_enabled": [ + "ics20-1" + ] + } } - ] + ], + "language": { + "type": "go", + "version": "1.20" + }, + "sdk": { + "type": "cosmos", + "repo": "https://github.com/Finschia/finschia-sdk", + "version": "v0.48.1" + }, + "ibc": { + "type": "go", + "version": "v4.3.1", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "version": "v0.2.0", + "path": "$HOME/.finschia/wasm/wasm", + "enabled": true, + "repo": "https://github.com/Finschia/wasmd" + } }, "description": "Finschia (formerly LINE Blockchain Mainnet) aims to build a sustainable token model and create token demand to become a blockchain with 1 billion users.", "peers": { diff --git a/firmachain/assetlist.json b/firmachain/assetlist.json index 084153028b..ee03d635b8 100644 --- a/firmachain/assetlist.json +++ b/firmachain/assetlist.json @@ -3,7 +3,7 @@ "chain_name": "firmachain", "assets": [ { - "description": "FIRMACHAIN adds a signing and verifying e-contract function to the blockchain. Unlocking new limits of electronic contracts with blockchain technology, FIRMACHAIN seeks to resolve all the social and legal issues (contracts, notarial, etc.) with written contracts through the use of electronic contracts based on FIRMACHAIN’s data blockchain.", + "description": "FIRMACHAIN adds a signing and verifying e-contract function to the blockchain. Unlocking new limits of electronic contracts with blockchain technology, FIRMACHAIN seeks to resolve all the social and legal issues (contracts, notarial, etc.) with written contracts through the use of electronic contracts based on FIRMACHAIN\u2019s data blockchain.", "denom_units": [ { "denom": "ufct", @@ -31,7 +31,8 @@ "primary_color_hex": "#1c1c1c" } } - ] + ], + "type_asset": "sdk.coin" } ] -} +} \ No newline at end of file diff --git a/firmachain/chain.json b/firmachain/chain.json index 36dc6fab8c..5ea7064215 100644 --- a/firmachain/chain.json +++ b/firmachain/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://firmachain.org/", "pretty_name": "FIRMACHAIN", + "chain_type": "cosmos", "chain_id": "colosseum-1", "bech32_prefix": "firma", "slip44": 7777777, @@ -120,7 +121,7 @@ "provider": "ChainTools" }, { - "address": "https://firmachain-rpc.lavenderfive.com/", + "address": "https://rpc.lavenderfive.com:443/firmachain", "provider": "Lavender.Five Nodes 🐝" }, { @@ -130,6 +131,10 @@ { "address": "https://firmachain.rpc.nodeshub.online:443", "provider": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…" + }, + { + "address": "https://firmachain_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "rest": [ @@ -146,7 +151,7 @@ "provider": "ChainTools" }, { - "address": "https://firmachain-api.lavenderfive.com/", + "address": "https://rest.lavenderfive.com:443/firmachain", "provider": "Lavender.Five Nodes 🐝" }, { @@ -156,11 +161,15 @@ { "address": "https://firmachain.api.nodeshub.online:443", "provider": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…" + }, + { + "address": "https://firmachain_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "grpc": [ { - "address": "firmachain-grpc.lavenderfive.com:443", + "address": "firmachain.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -211,6 +220,12 @@ "url": "https://explorer.nodeshub.online/firmachain/", "tx_page": "https://explorer.nodeshub.online/firmachain/tx/${txHash}", "account_page": "https://explorer.nodeshub.online/firmachain/accounts/${accountAddress}" + }, + { + "kind": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯", + "url": "https://explorer.whenmoonwhenlambo.money/firmachain", + "tx_page": "https://explorer.whenmoonwhenlambo.money/firmachain/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/firmachain/account/${accountAddress}" } ], "images": [ @@ -222,4 +237,4 @@ } } ] -} +} \ No newline at end of file diff --git a/furya/assetlist.json b/furya/assetlist.json index 0112c73bd8..03b688a5e5 100644 --- a/furya/assetlist.json +++ b/furya/assetlist.json @@ -38,7 +38,8 @@ ], "socials": { "twitter": "https://twitter.com/furyachain" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/furya/chain.json b/furya/chain.json index 66f497c0ac..d5c5b5088b 100644 --- a/furya/chain.json +++ b/furya/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://furya.xyz/", "pretty_name": "furya", + "chain_type": "cosmos", "chain_id": "furya-1", "daemon_name": "furyad", "node_home": "$HOME/.furyad", @@ -52,7 +53,15 @@ }, "cosmwasm_version": "v0.20.0", "cosmwasm_enabled": true, - "next_version_name": "v2.0.0" + "next_version_name": "v2.0.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.7" + }, + "cosmwasm": { + "version": "v0.20.0", + "enabled": true + } }, { "name": "v2.0.0", @@ -69,7 +78,15 @@ }, "cosmwasm_version": "v0.41.0", "cosmwasm_enabled": true, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.8" + }, + "cosmwasm": { + "version": "v0.41.0", + "enabled": true + } } ] }, diff --git a/fxcore/assetlist.json b/fxcore/assetlist.json index 57b2ae5de3..1a5dd65be9 100644 --- a/fxcore/assetlist.json +++ b/fxcore/assetlist.json @@ -36,11 +36,12 @@ "socials": { "website": "https://functionx.io", "twitter": "https://x.com/functionx_io" - } + }, + "type_asset": "sdk.coin" }, { "description": "The cross chain token of the Function X", - "extended_description": "PUNDIX token is the native token that functions within the Pundi X ecosystem, including PundiX Chain and XPOS. PUNDIX has several core use cases, including:\n- Payment for goods and services from merchants through XPOS\n- Gas Fee on PundiXΒ Chain\n- Listing tokens in the XPOS\n- Merchant payments for loyalty programs and ads", + "extended_description": "PUNDIX token is the native token that functions within the Pundi X ecosystem, including PundiX Chain and XPOS. PUNDIX has several core use cases, including:\n- Payment for goods and services from merchants through XPOS\n- Gas Fee on PundiX\u00a0Chain\n- Listing tokens in the XPOS\n- Merchant payments for loyalty programs and ads", "denom_units": [ { "denom": "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", @@ -82,7 +83,8 @@ "socials": { "website": "https://pundix.com", "twitter": "https://x.com/PundiXLabs" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/fxcore/chain.json b/fxcore/chain.json index 11499e67ce..1b010bdd07 100644 --- a/fxcore/chain.json +++ b/fxcore/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "fxcore", + "chain_type": "cosmos", "chain_id": "fxcore", "website": "https://functionx.io", "pretty_name": "f(x)Core", @@ -36,27 +37,26 @@ }, "codebase": { "git_repo": "https://github.com/functionx/fx-core", - "recommended_version": "v4.2.1", + "recommended_version": "v7.5.0", "compatible_versions": [ - "v4.2.1" + "v7.5.0" ], "binaries": { - "linux/amd64": "https://github.com/functionx/fx-core/releases/download/v4.2.1/fx-core_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/functionx/fx-core/releases/download/v4.2.1/fx-core_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/functionx/fx-core/releases/download/v4.2.1/fx-core_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/FunctionX/fx-core/releases/download/v4.2.1/fx-core_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/functionx/fx-core/releases/download/v4.2.1/fx-core_Windows_x86_64.zip" + "linux/amd64": "https://github.com/FunctionX/fx-core/releases/download/v7.5.0/fxcored-v7.5.0-linux-amd64", + "linux/arm64": "https://github.com/FunctionX/fx-core/releases/download/v7.5.0/fxcored-v7.5.0-linux-arm64", + "darwin/amd64": "https://github.com/FunctionX/fx-core/releases/download/v7.5.0/fxcored-v7.5.0-darwin-amd64", + "darwin/arm64": "https://github.com/FunctionX/fx-core/releases/download/v7.5.0/fxcored-v7.5.0-darwin-amd64", + "windows/amd64": "https://github.com/FunctionX/fx-core/releases/download/v7.5.0/fxcored-v7.5.0-windows-amd64.exe" }, "genesis": { "name": "fxv1", "genesis_url": "https://github.com/functionx/fx-core/raw/main/public/mainnet/genesis.json" }, - "cosmos_sdk_version": "0.46", + "cosmos_sdk_version": "v0.47.13", "consensus": { - "type": "tendermint", - "version": "0.34" + "type": "cometbft", + "version": "v0.37.6" }, - "ibc_go_version": "6.1.0", "versions": [ { "name": "fxv1", @@ -131,9 +131,119 @@ "consensus": { "type": "tendermint", "version": "0.34" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + } + }, + { + "name": "v5.0.x", + "tag": "v5.0.0", + "height": 11601700, + "proposal": 41, + "previous_version_name": "v4.2.x", + "next_version_name": "v6.0.x", + "recommended_version": "v5.0.0", + "compatible_versions": [ + "v5.0.0" + ], + "cosmos_sdk_version": "v0.46.13", + "consensus": { + "type": "tendermint", + "version": "v0.34.28" + }, + "sdk": { + "type": "cosmos", + "version": "v0.46.13" + }, + "ibc": { + "type": "go", + "version": "v6.1.1" + }, + "binaries": { + "darwin/arm64": "https://github.com/functionX/fx-core/releases/download/v5.0.0/fx-core_Darwin_arm64.tar.gz", + "darwin/amd64": "https://github.com/functionX/fx-core/releases/download/v5.0.0/fx-core_Darwin_amd64.tar.gz", + "linux/arm64": "https://github.com/functionX/fx-core/releases/download/v5.0.0/fx-core_Linux_arm64.tar.gz", + "linux/amd64": "https://github.com/functionX/fx-core/releases/download/v5.0.0/fx-core_Linux_amd64.tar.gz", + "windows/amd64": "https://github.com/functionX/fx-core/releases/download/v5.0.0/fx-core_Windows_x86_64.zip" + } + }, + { + "name": "v6.0.x", + "tag": "v6.1.0", + "height": 13598000, + "proposal": 47, + "previous_version_name": "v5.0.x", + "next_version_name": "v7.5.x", + "recommended_version": "v6.1.0", + "compatible_versions": [ + "v6.1.0" + ], + "cosmos_sdk_version": "v0.46.13", + "sdk": { + "type": "cosmos", + "version": "v0.46.13" + }, + "consensus": { + "type": "tendermint", + "version": "v0.34.28" + }, + "ibc": { + "type": "go", + "version": "v6.1.1" + }, + "binaries": { + "darwin/arm64": "https://github.com/functionX/fx-core/releases/download/v6.1.0/fx-core_Darwin_arm64.tar.gz", + "darwin/amd64": "https://github.com/functionX/fx-core/releases/download/v6.1.0/fx-core_Darwin_amd64.tar.gz", + "linux/arm64": "https://github.com/functionX/fx-core/releases/download/v6.1.0/fx-core_Linux_arm64.tar.gz", + "linux/amd64": "https://github.com/functionX/fx-core/releases/download/v6.1.0/fx-core_Linux_amd64.tar.gz", + "windows/amd64": "https://github.com/functionX/fx-core/releases/download/v6.1.0/fx-core_Windows_x86_64.zip" + } + }, + { + "name": "v7.5.x", + "tag": "v7.5.0", + "height": 16838000, + "proposal": 63, + "previous_version_name": "v6.0.x", + "next_version_name": "", + "recommended_version": "v7.5.0", + "compatible_versions": [ + "v7.5.0" + ], + "cosmos_sdk_version": "v0.47.13", + "sdk": { + "type": "cosmos", + "version": "v0.47.13", + "tag": "v0.47.13" + }, + "consensus": { + "type": "cometbft", + "version": "v0.37.9" + }, + "ibc": { + "type": "go", + "version": "v7.6.0" + }, + "binaries": { + "linux/amd64": "https://github.com/FunctionX/fx-core/releases/download/v7.5.0/fxcored-v7.5.0-linux-amd64", + "linux/arm64": "https://github.com/FunctionX/fx-core/releases/download/v7.5.0/fxcored-v7.5.0-linux-arm64", + "darwin/amd64": "https://github.com/FunctionX/fx-core/releases/download/v7.5.0/fxcored-v7.5.0-darwin-amd64", + "darwin/arm64": "https://github.com/FunctionX/fx-core/releases/download/v7.5.0/fxcored-v7.5.0-darwin-amd64", + "windows/amd64": "https://github.com/FunctionX/fx-core/releases/download/v7.5.0/fxcored-v7.5.0-windows-amd64.exe" } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.13", + "tag": "v0.47.13" + }, + "ibc": { + "type": "go", + "version": "v7.6.0" + } }, "peers": { "seeds": [ diff --git a/galaxy/assetlist.json b/galaxy/assetlist.json index 66c3b66755..351face8ac 100644 --- a/galaxy/assetlist.json +++ b/galaxy/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#5e3be6" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/galaxy/chain.json b/galaxy/chain.json index a42ace2bec..d2d3969bcc 100644 --- a/galaxy/chain.json +++ b/galaxy/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://galaxychain.zone/", "pretty_name": "Galaxy", + "chain_type": "cosmos", "chain_id": "galaxy-1", "bech32_prefix": "galaxy", "daemon_name": "galaxyd", diff --git a/gateway/assetlist.json b/gateway/assetlist.json index 7cebfae55b..3124802cf7 100644 --- a/gateway/assetlist.json +++ b/gateway/assetlist.json @@ -76,7 +76,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", @@ -117,7 +118,8 @@ "primary_color_hex": "#303030" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Wrapped liquid staked Ether 2.0 (Wormhole), wstETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b", @@ -157,7 +159,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Aptos Coin (Wormhole), APT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", @@ -197,7 +200,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", @@ -244,7 +248,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" - } + }, + "type_asset": "sdk.coin" }, { "description": "Wrapped SOL (Wormhole), SOL, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", @@ -279,12 +284,19 @@ "chain_name": "solana", "base_denom": "So11111111111111111111111111111111111111112" }, - "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" + } } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" - } + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg" + }, + "type_asset": "sdk.coin" }, { "description": "Bonk (Wormhole), Bonk, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR", @@ -327,7 +339,8 @@ ], "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png" - } + }, + "type_asset": "sdk.coin" }, { "description": "Wrapped BTC (Wormhole), WBTC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd", @@ -372,7 +385,8 @@ "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" - } + }, + "type_asset": "sdk.coin" }, { "description": "tBTC v2 (Wormhole), tBTC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw", @@ -412,7 +426,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/tbtc.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Dai Stablecoin (Wormhole), DAI, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1", @@ -452,7 +467,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", @@ -487,12 +503,19 @@ "chain_name": "ethereum", "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Avalanche USD Coin (Wormhole), Avalanche USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", @@ -527,12 +550,19 @@ "chain_name": "avalanche", "base_denom": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Pyth Network (Wormhole), PYTH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy", @@ -578,7 +608,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Solana USD Coin (Wormhole), Solana USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", @@ -612,12 +643,19 @@ "chain_name": "solana", "base_denom": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Basket (Wormhole), BSKT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst", @@ -667,7 +705,8 @@ ], "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png" - } + }, + "type_asset": "sdk.coin" }, { "description": "W is the native token powering the Wormhole interoperability platform.", @@ -763,7 +802,8 @@ ], "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pbj.png" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/gateway/chain.json b/gateway/chain.json index edef659b87..597eb9e78e 100644 --- a/gateway/chain.json +++ b/gateway/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://wormhole.com", "pretty_name": "Wormhole Gateway", + "chain_type": "cosmos", "chain_id": "wormchain", "bech32_prefix": "wormhole", "daemon_name": "wormchaind", @@ -24,30 +25,39 @@ } ] }, - "staking": { - "staking_tokens": [ - { - "denom": "uworm" - } - ] - }, "codebase": { "git_repo": "https://github.com/wormhole-foundation/wormhole", "recommended_version": "v2.23.0", "cosmos_sdk_version": "github.com/wormhole-foundation/cosmos-sdk@v0.45.9-wormhole-2", "consensus": { "type": "tendermint", - "version": "github.com/tendermint/tendermint@v0.34.24" + "version": "v0.34.24", + "repo": "https://github.com/tendermint/tendermint" }, "cosmwasm_version": "github.com/wormhole-foundation/wasmd@v0.30.0-wormchain-2", "cosmwasm_enabled": true, - "ibc_go_version": "4.2.2", - "ics_enabled": [ - "ics20-1" - ], "genesis": { "name": "v1", "genesis_url": "https://github.com/wormhole-foundation/wormhole/blob/main/wormchain/mainnet/genesis.json" + }, + "sdk": { + "type": "cosmos", + "repo": "https://github.com/wormhole-foundation/cosmos-sdk", + "version": "v0.45.9", + "tag": "v0.45.9-wormhole-2" + }, + "ibc": { + "type": "go", + "version": "4.2.2", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "repo": "https://github.com/wormhole-foundation/wasmd", + "version": "v0.30.0", + "tag": "v0.30.0-wormchain-2", + "enabled": true } }, "images": [ @@ -162,4 +172,4 @@ "keywords": [ "bridge" ] -} +} \ No newline at end of file diff --git a/genesisl1/assetlist.json b/genesisl1/assetlist.json index e5040c8d46..7e2bfe92af 100644 --- a/genesisl1/assetlist.json +++ b/genesisl1/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/genesisl1/chain.json b/genesisl1/chain.json index e3a33e8c4c..4db05d9fe9 100644 --- a/genesisl1/chain.json +++ b/genesisl1/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "GenesisL1", + "chain_type": "cosmos", "chain_id": "genesis_29-2", "bech32_prefix": "genesis", "daemon_name": "genesisd", @@ -48,7 +49,11 @@ "v0.5.0" ], "cosmos_sdk_version": "0.44.5", - "next_version_name": "plan_crypto" + "next_version_name": "plan_crypto", + "sdk": { + "type": "cosmos", + "version": "0.44.5" + } }, { "name": "plan_crypto", @@ -59,9 +64,17 @@ "compatible_versions": [ "v1.0.0" ], - "cosmos_sdk_version": "0.46.15" + "cosmos_sdk_version": "0.46.15", + "sdk": { + "type": "cosmos", + "version": "0.46.15" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.46.15" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png", @@ -92,6 +105,10 @@ { "address": "https://26657.genesisl1.org", "provider": "GenesisL1" + }, + { + "address": "https://genesisl1-rpc.zenode.app", + "provider": "anodeofzen" } ], "rest": [ @@ -144,4 +161,4 @@ } } ] -} \ No newline at end of file +} diff --git a/gitopia/assetlist.json b/gitopia/assetlist.json index cab030024c..63dc1810ba 100644 --- a/gitopia/assetlist.json +++ b/gitopia/assetlist.json @@ -41,7 +41,8 @@ "socials": { "website": "https://gitopia.com/", "twitter": "https://twitter.com/gitopiaDAO" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/gitopia/chain.json b/gitopia/chain.json index a5642b7173..081454e100 100644 --- a/gitopia/chain.json +++ b/gitopia/chain.json @@ -5,6 +5,7 @@ "website": "https://gitopia.com/", "network_type": "mainnet", "pretty_name": "Gitopia", + "chain_type": "cosmos", "chain_id": "gitopia", "bech32_prefix": "gitopia", "daemon_name": "gitopiad", @@ -39,19 +40,15 @@ "genesis": { "genesis_url": "https://github.com/gitopia/mainnet/raw/master/genesis.tar.gz" }, - "recommended_version": "v3.3.0", + "recommended_version": "v4.0.0", "compatible_versions": [ - "v3.3.0" + "v4.0.0" ], - "cosmos_sdk_version": "v0.46.13", + "cosmos_sdk_version": "v0.47.13", "consensus": { "type": "cometbft", - "version": "v0.34.28" + "version": "v0.37.6" }, - "ibc_go_version": "5.3.1", - "ics_enabled": [ - "ics20-1" - ], "versions": [ { "name": "v2", @@ -71,11 +68,18 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "5.0.0", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v3" + "next_version_name": "v3", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "5.0.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v3", @@ -94,11 +98,18 @@ "type": "cometbft", "version": "0.34" }, - "ibc_go_version": "5.3.1", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v3.2.0" + "next_version_name": "v3.2.0", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "5.3.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v3.2.0", @@ -113,11 +124,18 @@ "type": "cometbft", "version": "v0.34.28" }, - "ibc_go_version": "5.3.1", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v3.3.0" + "next_version_name": "v3.3.0", + "sdk": { + "type": "cosmos", + "version": "v0.46.13" + }, + "ibc": { + "type": "go", + "version": "5.3.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v3.3.0", @@ -132,13 +150,57 @@ "type": "cometbft", "version": "v0.34.28" }, - "ibc_go_version": "5.3.1", - "ics_enabled": [ - "ics20-1" + "next_version_name": "v4", + "sdk": { + "type": "cosmos", + "version": "v0.46.13" + }, + "ibc": { + "type": "go", + "version": "5.3.1", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "v4", + "recommended_version": "v4.0.0", + "compatible_versions": [ + "v4.0.0" ], - "next_version_name": "" + "proposal": 31, + "height": 24330422, + "cosmos_sdk_version": "v0.47.13", + "consensus": { + "type": "cometbft", + "version": "v0.37.6" + }, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.13" + }, + "ibc": { + "type": "go", + "version": "7.6.0", + "ics_enabled": [ + "ics20-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.13" + }, + "ibc": { + "type": "go", + "version": "7.6.0", + "ics_enabled": [ + "ics20-1" + ] + } }, "images": [ { @@ -166,11 +228,6 @@ "address": "gitopia-mainnet-seed.autostake.com", "provider": "autostake" }, - { - "id": "c28827cb96c14c905b127b92065a3fb4cd77d7f6", - "address": "seeds.whispernode.com:11356", - "provider": "WhisperNode 🀐" - }, { "id": "187425bc3739daaef8cb1d7cf47d655117396dbe", "address": "seed-gitopia.ibs.team:16660", @@ -327,7 +384,7 @@ "provider": "polkachu" }, { - "address": "https://gitopia-rpc.lavenderfive.com", + "address": "https://rpc.lavenderfive.com:443/gitopia", "provider": "Lavender.Five Nodes 🐝" }, { @@ -354,10 +411,6 @@ "address": "https://gitopia-rpc.genznodes.dev", "provider": "genznodes" }, - { - "address": "https://rpc-gitopia.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://gitopia.rpc.liveraven.net", "provider": "LiveRaveN" @@ -449,7 +502,7 @@ "provider": "polkachu" }, { - "address": "https://gitopia-api.lavenderfive.com", + "address": "https://rest.lavenderfive.com:443/gitopia", "provider": "Lavender.Five Nodes 🐝" }, { @@ -480,10 +533,6 @@ "address": "https://gitopia-api.genznodes.dev", "provider": "genznodes" }, - { - "address": "https://lcd-gitopia.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://gitopia.api.liveraven.net", "provider": "LiveRaveN" @@ -587,7 +636,7 @@ "provider": "Staketab" }, { - "address": "https://gitopia-grpc.lavenderfive.com:443", + "address": "gitopia.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/govgen/assetlist.json b/govgen/assetlist.json index 80b757904e..0e40dd0bc6 100644 --- a/govgen/assetlist.json +++ b/govgen/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#65d6d4" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/govgen/chain.json b/govgen/chain.json index ab874a40ad..4498fcb788 100644 --- a/govgen/chain.json +++ b/govgen/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "govgen", + "chain_type": "cosmos", "chain_id": "govgen-1", "website": "https://govgen.io/", "pretty_name": "GovGen", @@ -74,9 +75,17 @@ "darwin/arm64": "https://github.com/atomone-hub/govgen/releases/download/v1.0.1/govgend-v1.0.1-darwin-arm64", "windows/amd64": "https://github.com/atomone-hub/govgen/releases/download/v1.0.1/govgend-v1.0.1-windows-amd64.exe", "windows/arm64": "https://github.com/atomone-hub/govgen/releases/download/v1.0.1/govgend-v1.0.1-windows-arm64.exe" + }, + "sdk": { + "type": "cosmos", + "version": "v0.45.16" } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/govgen/images/govgen.png", diff --git a/gravitybridge/assetlist.json b/gravitybridge/assetlist.json index e3483dcac4..73e155801d 100644 --- a/gravitybridge/assetlist.json +++ b/gravitybridge/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://www.gravitybridge.net/", "twitter": "https://twitter.com/gravity_bridge" - } + }, + "type_asset": "sdk.coin" }, { "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", @@ -87,7 +88,8 @@ "primary_color_hex": "#050505" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Gravity Bridge WETH", @@ -134,7 +136,8 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Gravity Bridge USDC", @@ -154,6 +157,7 @@ "symbol": "USDC", "coingecko_id": "gravity-bridge-usdc", "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "traces": [ @@ -180,9 +184,15 @@ "chain_name": "ethereum", "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Gravity Bridge USDT", @@ -236,7 +246,8 @@ "background_color_hex": "#009393" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Gravity Bridge WBTC", @@ -288,7 +299,8 @@ "primary_color_hex": "#f39444" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Gravity Bridge DAI", @@ -335,7 +347,8 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Gravity Bridge sDAI", @@ -379,7 +392,8 @@ "primary_color_hex": "#7ec231" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Gravity Bridge OCC", @@ -421,7 +435,8 @@ "primary_color_hex": "#313648" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.", @@ -465,7 +480,8 @@ "primary_color_hex": "#ebb324" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Gravity Bridge Paxos Gold", @@ -509,7 +525,8 @@ "primary_color_hex": "#ebe60e" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/gravitybridge/chain.json b/gravitybridge/chain.json index cb2fe6131a..dccd2538fc 100644 --- a/gravitybridge/chain.json +++ b/gravitybridge/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.gravitybridge.net/", "pretty_name": "Gravity Bridge", + "chain_type": "cosmos", "chain_id": "gravity-bridge-3", "bech32_prefix": "gravity", "daemon_name": "gravity", @@ -159,6 +160,11 @@ "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚑️ Nodes & Staking" + }, + { + "id": "258f523c96efde50d5fe0a9faeea8a3e83be22ca", + "address": "seed.gravity-bridge-3.gravity.aviaone.com:10266", + "provider": "AviaOne 🟒" } ], "persistent_peers": [ @@ -198,7 +204,7 @@ "provider": "Notional" }, { - "address": "https://gravitybridge-rpc.lavenderfive.com/", + "address": "https://rpc.lavenderfive.com:443/gravitybridge", "provider": "Lavender.Five Nodes 🐝" }, { @@ -228,6 +234,10 @@ { "address": "https://rpc.g-bridge.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "https://rpc.gravity-bridge-3.gravity.aviaone.com:443", + "provider": "AviaOne 🟒" } ], "rest": [ @@ -244,7 +254,7 @@ "provider": "Polkachu" }, { - "address": "https://gravitybridge-api.lavenderfive.com/", + "address": "https://rest.lavenderfive.com:443/gravitybridge", "provider": "Lavender.Five Nodes 🐝" }, { @@ -274,6 +284,10 @@ { "address": "https://lcd.g-bridge.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "https://api.gravity-bridge-3.gravity.aviaone.com", + "provider": "AviaOne 🟒" } ], "grpc": [ @@ -290,7 +304,7 @@ "provider": "Polkachu" }, { - "address": "gravitybridge-grpc.lavenderfive.com:443", + "address": "gravitybridge.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -312,6 +326,10 @@ { "address": "https://grpc.g-bridge.bronbro.io:443", "provider": "Bro_n_Bro" + }, + { + "address": "grpc.gravity-bridge-3.gravity.aviaone.com:9200", + "provider": "AviaOne 🟒" } ] }, @@ -359,6 +377,12 @@ "url": "https://explorer.stavr.tech/GravityBridge", "tx_page": "https://explorer.stavr.tech/GravityBridge/tx/${txHash}", "account_page": "https://explorer.stavr.tech/GravityBridge/accounts/${accountAddress}" + }, + { + "kind": "AviaOne 🟒", + "url": "https://mainnet.explorer.aviaone.com/gravity-bridge", + "tx_page": "https://mainnet.explorer.aviaone.com/gravity-bridge/tx/${txHash}", + "account_page": "https://mainnet.explorer.aviaone.com/gravity-bridge/accounts/${accountAddress}" } ], "images": [ diff --git a/hall/assetlist.json b/hall/assetlist.json index 8ec165aee4..7f026f0afa 100644 --- a/hall/assetlist.json +++ b/hall/assetlist.json @@ -29,7 +29,8 @@ "socials": { "website": "https://coinhall.org/", "twitter": "https://twitter.com/coinhall_org" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/haqq/assetlist.json b/haqq/assetlist.json index 8e02fc8f0c..6aebd2194b 100644 --- a/haqq/assetlist.json +++ b/haqq/assetlist.json @@ -23,6 +23,10 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg" }, + "socials": { + "website": "https://islamiccoin.net", + "twitter": "https://x.com/1slamic_coin" + }, "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png", @@ -31,6 +35,56 @@ "primary_color_hex": "#04cd80" } } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Deenar gold-backed stablecoin", + "extended_description": "Deenar Gold (DEEN) is a 1:1 gold-backed halal stablecoin with the ability to physically deliver gold. 1 DEEN = 1 gram of gold.", + "denom_units": [ + { + "denom": "erc20/0x4FEBDDe47Ab9a76200e57eFcC80b212a07b3e6cE", + "exponent": 0 + }, + { + "denom": "DEEN", + "exponent": 6 + } + ], + "base": "erc20/0x4FEBDDe47Ab9a76200e57eFcC80b212a07b3e6cE", + "name": "Deenar", + "display": "DEEN", + "address": "0x4FEBDDe47Ab9a76200e57eFcC80b212a07b3e6cE", + "symbol": "DEEN", + "type_asset": "erc20", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "comex", + "base_denom": "XAU" + }, + "provider": "Deenar" + } + ], + "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" + }, + "coingecko_id": "deenar-gold", + "socials": { + "website": "https://deenar.com", + "twitter": "https://x.com/DeenarGold" + }, + "images": [ + { + "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": { + "primary_color_hex": "#ffbc05", + "circle": true + } + } ] } ] diff --git a/haqq/chain.json b/haqq/chain.json index eddbb900e9..d6795caa06 100644 --- a/haqq/chain.json +++ b/haqq/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://haqq.network/", "pretty_name": "Haqq Network", + "chain_type": "cosmos", "chain_id": "haqq_11235-1", "bech32_prefix": "haqq", "node_home": "$HOME/.haqqd", @@ -36,23 +37,22 @@ }, "codebase": { "git_repo": "https://github.com/haqq-network/haqq", - "recommended_version": "v1.7.6", + "recommended_version": "v1.8.0", "compatible_versions": [ - "v1.7.6" + "v1.8.0" ], "binaries": { - "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.6/haqq_1.7.6_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.6/haqq_1.7.6_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.6/haqq_1.7.6_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.6/haqq_1.7.6_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.6/haqq_1.7.6_Windows_x86_64.zip" + "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.8.0/haqq_1.8.0_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.8.0/haqq_1.8.0_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.8.0/haqq_1.8.0_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.8.0/haqq_1.8.0_darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.8.0/haqq_1.8.0_windows_amd64.zip" }, - "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.8-evmos", + "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.12-evmos.2", "consensus": { "type": "cometbft", - "version": "v0.37.4" + "version": "v0.37.9" }, - "ibc_go_version": "7.3.1", "genesis": { "genesis_url": "https://raw.githubusercontent.com/haqq-network/mainnet/master/genesis.json" }, @@ -69,10 +69,19 @@ "cosmos_sdk_version": "v0.45.5-0.20220523154235-2921a1c3c918", "consensus": { "type": "tendermint", - "version": "v0.34.20-0.20220517115723-e6f071164839" + "version": "v0.34.20", + "tag": "v0.34.20-0.20220517115723-e6f071164839" }, - "ibc_go_version": "3.1.0", - "next_version_name": "v1.1.9" + "next_version_name": "v1.1.9", + "sdk": { + "type": "cosmos", + "version": "v0.45.5", + "tag": "v0.45.5-0.20220523154235-2921a1c3c918" + }, + "ibc": { + "type": "go", + "version": "3.1.0" + } }, { "name": "v1.1.9", @@ -86,10 +95,18 @@ "cosmos_sdk_version": "v0.45.6", "consensus": { "type": "tendermint", - "version": "v0.34.20-0.20220517115723-e6f071164839" + "version": "v0.34.20", + "tag": "v0.34.20-0.20220517115723-e6f071164839" + }, + "next_version_name": "v1.2.1", + "sdk": { + "type": "cosmos", + "version": "v0.45.6" }, - "ibc_go_version": "3.1.1", - "next_version_name": "v1.2.1" + "ibc": { + "type": "go", + "version": "3.1.1" + } }, { "name": "v1.2.1", @@ -105,8 +122,15 @@ "type": "tendermint", "version": "v0.34.21" }, - "ibc_go_version": "3.2.0", - "next_version_name": "v1.3.0" + "next_version_name": "v1.3.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.9" + }, + "ibc": { + "type": "go", + "version": "3.2.0" + } }, { "name": "v1.3.0", @@ -122,8 +146,15 @@ "type": "tendermint", "version": "v0.34.21" }, - "ibc_go_version": "3.2.0", - "next_version_name": "v1.3.1" + "next_version_name": "v1.3.1", + "sdk": { + "type": "cosmos", + "version": "v0.45.9" + }, + "ibc": { + "type": "go", + "version": "3.2.0" + } }, { "name": "v1.3.1", @@ -139,8 +170,15 @@ "type": "tendermint", "version": "v0.34.21" }, - "ibc_go_version": "3.2.0", - "next_version_name": "v1.4.0" + "next_version_name": "v1.4.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.9" + }, + "ibc": { + "type": "go", + "version": "3.2.0" + } }, { "name": "v1.4.0", @@ -156,8 +194,16 @@ "type": "tendermint", "version": "v0.34.26" }, - "ibc_go_version": "v5.2.1", - "next_version_name": "v1.4.1" + "next_version_name": "v1.4.1", + "sdk": { + "type": "cosmos", + "version": "v0.46.9", + "tag": "v0.46.9-ledger" + }, + "ibc": { + "type": "go", + "version": "v5.2.1" + } }, { "name": "v1.4.1", @@ -171,7 +217,6 @@ "type": "tendermint", "version": "0.34.26" }, - "ibc_go_version": "5.2.1", "binaries": { "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.4.1/haqq_1.4.1_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.4.1/haqq_1.4.1_Linux_arm64.tar.gz", @@ -179,7 +224,16 @@ "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.4.1/haqq_1.4.1_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.4.1/haqq_1.4.1_Windows_x86_64.zip" }, - "next_version_name": "v1.5.0" + "next_version_name": "v1.5.0", + "sdk": { + "type": "cosmos", + "version": "v0.46.9", + "tag": "v0.46.9-ledger" + }, + "ibc": { + "type": "go", + "version": "5.2.1" + } }, { "name": "v1.5.0", @@ -195,7 +249,6 @@ "type": "tendermint", "version": "0.34.26" }, - "ibc_go_version": "5.2.1", "binaries": { "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.5.0/haqq_1.5.0_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.5.0/haqq_1.5.0_Linux_arm64.tar.gz", @@ -203,7 +256,16 @@ "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.5.0/haqq_1.5.0_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.5.0/haqq_1.5.0_Windows_x86_64.zip" }, - "next_version_name": "v1.6.0" + "next_version_name": "v1.6.0", + "sdk": { + "type": "cosmos", + "version": "v0.46.10", + "tag": "v0.46.10-ledger.3" + }, + "ibc": { + "type": "go", + "version": "5.2.1" + } }, { "name": "v1.6.0", @@ -219,7 +281,6 @@ "type": "cometbft", "version": "0.34.29" }, - "ibc_go_version": "6.2.0", "binaries": { "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.6.0/haqq_1.6.0_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.6.0/haqq_1.6.0_Linux_arm64.tar.gz", @@ -227,7 +288,16 @@ "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.6.0/haqq_1.6.0_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.6.0/haqq_1.6.0_Windows_x86_64.zip" }, - "next_version_name": "v1.6.1" + "next_version_name": "v1.6.1", + "sdk": { + "type": "cosmos", + "version": "v0.46.13", + "tag": "v0.46.13-ledger.3" + }, + "ibc": { + "type": "go", + "version": "6.2.0" + } }, { "name": "v1.6.1", @@ -243,7 +313,6 @@ "type": "cometbft", "version": "0.34.29" }, - "ibc_go_version": "6.2.0", "binaries": { "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.6.1/haqq_1.6.1_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.6.1/haqq_1.6.1_Linux_arm64.tar.gz", @@ -251,7 +320,16 @@ "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.6.1/haqq_1.6.1_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.6.1/haqq_1.6.1_Windows_x86_64.zip" }, - "next_version_name": "v1.6.2" + "next_version_name": "v1.6.2", + "sdk": { + "type": "cosmos", + "version": "v0.46.13", + "tag": "v0.46.13-ledger.3" + }, + "ibc": { + "type": "go", + "version": "6.2.0" + } }, { "name": "v1.6.2", @@ -267,7 +345,6 @@ "type": "cometbft", "version": "0.34.29" }, - "ibc_go_version": "6.2.0", "binaries": { "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.6.2/haqq_1.6.2_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.6.2/haqq_1.6.2_Linux_arm64.tar.gz", @@ -275,7 +352,16 @@ "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.6.2/haqq_1.6.2_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.6.2/haqq_1.6.2_Windows_x86_64.zip" }, - "next_version_name": "v1.6.3" + "next_version_name": "v1.6.3", + "sdk": { + "type": "cosmos", + "version": "v0.46.13", + "tag": "v0.46.13-ledger.3" + }, + "ibc": { + "type": "go", + "version": "6.2.0" + } }, { "name": "v1.6.3", @@ -291,7 +377,6 @@ "type": "cometbft", "version": "0.34.29" }, - "ibc_go_version": "6.2.0", "binaries": { "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.6.3/haqq_1.6.3_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.6.3/haqq_1.6.3_Linux_arm64.tar.gz", @@ -299,7 +384,16 @@ "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.6.3/haqq_1.6.3_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.6.3/haqq_1.6.3_Windows_x86_64.zip" }, - "next_version_name": "v1.6.4" + "next_version_name": "v1.6.4", + "sdk": { + "type": "cosmos", + "version": "v0.46.13", + "tag": "v0.46.13-ledger.3" + }, + "ibc": { + "type": "go", + "version": "6.2.0" + } }, { "name": "v1.6.4", @@ -315,7 +409,6 @@ "type": "cometbft", "version": "0.34.29" }, - "ibc_go_version": "6.2.0", "binaries": { "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.6.4/haqq_1.6.4_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.6.4/haqq_1.6.4_Linux_arm64.tar.gz", @@ -323,7 +416,16 @@ "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.6.4/haqq_1.6.4_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.6.4/haqq_1.6.4_Windows_x86_64.zip" }, - "next_version_name": "v1.7.0" + "next_version_name": "v1.7.0", + "sdk": { + "type": "cosmos", + "version": "v0.46.13", + "tag": "v0.46.13-ledger.3" + }, + "ibc": { + "type": "go", + "version": "6.2.0" + } }, { "name": "v1.7.0", @@ -339,7 +441,6 @@ "type": "cometbft", "version": "v0.37.3" }, - "ibc_go_version": "7.3.1", "binaries": { "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.0/haqq_1.7.0_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.0/haqq_1.7.0_Linux_arm64.tar.gz", @@ -347,7 +448,17 @@ "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.0/haqq_1.7.0_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.0/haqq_1.7.0_Windows_x86_64.zip" }, - "next_version_name": "v1.7.1" + "next_version_name": "v1.7.1", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-evmos" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } }, { "name": "v1.7.1", @@ -363,7 +474,6 @@ "type": "cometbft", "version": "v0.37.3" }, - "ibc_go_version": "7.3.1", "binaries": { "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.1/haqq_1.7.1_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.1/haqq_1.7.1_Linux_arm64.tar.gz", @@ -371,7 +481,17 @@ "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.1/haqq_1.7.1_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.1/haqq_1.7.1_Windows_x86_64.zip" }, - "next_version_name": "v1.7.2" + "next_version_name": "v1.7.2", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-evmos" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } }, { "name": "v1.7.2", @@ -387,7 +507,6 @@ "type": "cometbft", "version": "v0.37.3" }, - "ibc_go_version": "7.3.1", "binaries": { "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.2/haqq_1.7.2_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.2/haqq_1.7.2_Linux_arm64.tar.gz", @@ -395,7 +514,17 @@ "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.2/haqq_1.7.2_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.2/haqq_1.7.2_Windows_x86_64.zip" }, - "next_version_name": "v1.7.3" + "next_version_name": "v1.7.3", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-evmos" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } }, { "name": "v1.7.3", @@ -411,7 +540,6 @@ "type": "cometbft", "version": "v0.37.3" }, - "ibc_go_version": "7.3.1", "binaries": { "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.3/haqq_1.7.3_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.3/haqq_1.7.3_Linux_arm64.tar.gz", @@ -419,7 +547,17 @@ "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.3/haqq_1.7.3_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.3/haqq_1.7.3_Windows_x86_64.zip" }, - "next_version_name": "v1.7.4" + "next_version_name": "v1.7.4", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-evmos" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } }, { "name": "v1.7.4", @@ -435,7 +573,6 @@ "type": "cometbft", "version": "v0.37.3" }, - "ibc_go_version": "7.3.1", "binaries": { "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.4/haqq_1.7.4_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.4/haqq_1.7.4_Linux_arm64.tar.gz", @@ -443,7 +580,17 @@ "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.4/haqq_1.7.4_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.4/haqq_1.7.4_Windows_x86_64.zip" }, - "next_version_name": "v1.7.5" + "next_version_name": "v1.7.5", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-evmos" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } }, { "name": "v1.7.5", @@ -459,7 +606,6 @@ "type": "cometbft", "version": "v0.37.3" }, - "ibc_go_version": "7.3.1", "binaries": { "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.5/haqq_1.7.5_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.5/haqq_1.7.5_Linux_arm64.tar.gz", @@ -467,7 +613,17 @@ "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.5/haqq_1.7.5_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.5/haqq_1.7.5_Windows_x86_64.zip" }, - "next_version_name": "v1.7.6" + "next_version_name": "v1.7.6", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-evmos" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } }, { "name": "v1.7.6", @@ -483,7 +639,6 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "7.3.1", "binaries": { "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.6/haqq_1.7.6_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.6/haqq_1.7.6_Linux_arm64.tar.gz", @@ -491,9 +646,128 @@ "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.6/haqq_1.7.6_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.6/haqq_1.7.6_Windows_x86_64.zip" }, - "next_version_name": "" + "next_version_name": "v1.7.7", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.8", + "tag": "v0.47.8-evmos" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } + }, + { + "name": "v1.7.7", + "tag": "v1.7.7", + "recommended_version": "v1.7.7", + "compatible_versions": [ + "v1.7.7" + ], + "proposal": 34, + "height": 11567000, + "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.8-evmos", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "binaries": { + "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.7/haqq_1.7.7_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.7/haqq_1.7.7_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.7/haqq_1.7.7_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.7/haqq_1.7.7_linux_arm64.tar.gz", + "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.7/haqq_1.7.7_windows_amd64.zip" + }, + "next_version_name": "v1.7.8", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.8", + "tag": "v0.47.8-evmos" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } + }, + { + "name": "v1.7.8", + "tag": "v1.7.8", + "recommended_version": "v1.7.8", + "compatible_versions": [ + "v1.7.8" + ], + "proposal": 38, + "height": 12380500, + "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.8-evmos", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "binaries": { + "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.8/haqq_1.7.8_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.8/haqq_1.7.8_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.8/haqq_1.7.8_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.7.8/haqq_1.7.8_darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.7.8/haqq_1.7.8_windows_amd64.zip" + }, + "next_version_name": "v1.8.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.8", + "tag": "v0.47.8-evmos" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } + }, + { + "name": "v1.8.0", + "tag": "v1.8.0", + "recommended_version": "v1.8.0", + "compatible_versions": [ + "v1.8.0" + ], + "proposal": 39, + "height": 13035000, + "cosmos_sdk_version": "evmos/cosmos-sdk v0.47.12-evmos.2", + "consensus": { + "type": "cometbft", + "version": "v0.37.9" + }, + "binaries": { + "linux/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.8.0/haqq_1.8.0_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.8.0/haqq_1.8.0_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.8.0/haqq_1.8.0_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/haqq-network/haqq/releases/download/v1.8.0/haqq_1.8.0_darwin_arm64.tar.gz", + "windows/amd64": "https://github.com/haqq-network/haqq/releases/download/v1.8.0/haqq_1.8.0_windows_amd64.zip" + }, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.12", + "tag": "v0.47.12-evmos.2" + }, + "ibc": { + "type": "go", + "version": "7.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/evmos/cosmos-sdk", + "version": "v0.47.12", + "tag": "v0.47.12-evmos.2" + }, + "ibc": { + "type": "go", + "version": "7.4.0" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/haqq.png", @@ -579,7 +853,7 @@ "provider": "Allnodes ⚑️ Nodes & Staking" }, { - "address": "https://haqq-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/haqq", "provider": "Lavender.Five Nodes 🐝" }, { @@ -593,6 +867,10 @@ { "address": "https://haqq-rpc.noders.services", "provider": "[NODERS]TEAM" + }, + { + "address": "https://haqq.drpc.org", + "provider": "dRPC" } ], "rest": [ @@ -613,7 +891,7 @@ "provider": "Allnodes ⚑️ Nodes & Staking" }, { - "address": "https://haqq-api.lavenderfive.com", + "address": "https://rest.lavenderfive.com:443/haqq", "provider": "Lavender.Five Nodes 🐝" }, { @@ -655,7 +933,7 @@ "provider": "Allnodes ⚑️ Nodes & Staking" }, { - "address": "https://haqq-grpc.lavenderfive.com", + "address": "haqq.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -693,7 +971,7 @@ "provider": "Allnodes.com ⚑️ Nodes & Staking" }, { - "address": "https://haqq-jsonrpc.lavenderfive.com", + "address": "https://jsonrpc.lavenderfive.com:443/haqq", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/haqq/images/deen.png b/haqq/images/deen.png new file mode 100644 index 0000000000..93b7fa2e7f Binary files /dev/null and b/haqq/images/deen.png differ diff --git a/haqq/images/deen.svg b/haqq/images/deen.svg new file mode 100644 index 0000000000..d0eb3a7e7a --- /dev/null +++ b/haqq/images/deen.svg @@ -0,0 +1,3 @@ + + + diff --git a/heli/assetlist.json b/heli/assetlist.json index 98c5592a29..123d5f63f1 100644 --- a/heli/assetlist.json +++ b/heli/assetlist.json @@ -27,7 +27,8 @@ "primary_color_hex": "#fccc24" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/heli/chain.json b/heli/chain.json index 12c84b6791..59b7dbca85 100644 --- a/heli/chain.json +++ b/heli/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://helichain.com/", "pretty_name": "HeliChain", + "chain_type": "cosmos", "chain_id": "helichain", "bech32_prefix": "heli", "daemon_name": "helichaind", @@ -41,7 +42,6 @@ "v0.0.1" ], "cosmos_sdk_version": "0.47.4", - "ibc_go_version": "v7.2.0", "consensus": { "type": "cometbft", "version": "0.37.2" @@ -59,16 +59,39 @@ "v0.0.1" ], "cosmos_sdk_version": "0.47.4", - "ibc_go_version": "v7.2.0", "consensus": { "type": "cometbft", "version": "0.37.2" }, "cosmwasm_version": "0.42.0", "cosmwasm_enabled": true, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "0.47.4" + }, + "cosmwasm": { + "version": "0.42.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.2.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47.4" + }, + "ibc": { + "type": "go", + "version": "v7.2.0" + }, + "cosmwasm": { + "version": "0.41.0", + "enabled": true + } }, "peers": { "seeds": [ diff --git a/highbury/assetlist.json b/highbury/assetlist.json index 3e5aa402d0..5a9bb638ef 100644 --- a/highbury/assetlist.json +++ b/highbury/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Governance token of Jinx Wallet and Fury Lend Protocol", @@ -61,7 +62,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Governance token of Fury Swap Protocol", @@ -91,7 +93,8 @@ "primary_color_hex": "#090909" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/highbury/chain.json b/highbury/chain.json index f11f4d3d3f..f784bb598c 100644 --- a/highbury/chain.json +++ b/highbury/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.fury.black/", "pretty_name": "Highbury", + "chain_type": "cosmos", "chain_id": "highbury_710-1", "bech32_prefix": "fury", "daemon_name": "fury", diff --git a/humans/assetlist.json b/humans/assetlist.json index 7d07df88f3..3ed3e987da 100644 --- a/humans/assetlist.json +++ b/humans/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://humans.ai/", "twitter": "https://twitter.com/humansdotai" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/humans/chain.json b/humans/chain.json index d3b1f57e2b..f72e893832 100644 --- a/humans/chain.json +++ b/humans/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://humans.ai/", "pretty_name": "Humans.ai", + "chain_type": "cosmos", "chain_id": "humans_1089-1", "bech32_prefix": "human", "node_home": "$HOME/.humansd", @@ -60,7 +61,11 @@ "version": "0.34.27" } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.46.11" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.png", diff --git a/ibc_data.schema.json b/ibc_data.schema.json index 9f9b55b03c..10013b9e5f 100644 --- a/ibc_data.schema.json +++ b/ibc_data.schema.json @@ -163,6 +163,7 @@ "properties": { "channel_id": { "type": "string", + "pattern": "^(channel-\\d+|\\*)$", "description": "The channel ID on the corresponding chain's connection representing a channel on the other chain." }, "port_id": { diff --git a/idep/assetlist.json b/idep/assetlist.json index e90be252c2..9dd86cdb83 100644 --- a/idep/assetlist.json +++ b/idep/assetlist.json @@ -32,7 +32,8 @@ "primary_color_hex": "#c5b4cf" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/idep/chain.json b/idep/chain.json index 16ff12e17b..cfecc14e47 100644 --- a/idep/chain.json +++ b/idep/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.idep.network/", "pretty_name": "IDEP", + "chain_type": "cosmos", "chain_id": "Antora", "bech32_prefix": "idep", "daemon_name": "idep", @@ -63,16 +64,6 @@ "id": "8ffc74dbcd5ab32bc89e058ec53060d5762f88b5", "address": "178.63.100.102:26656", "provider": "IDEP" - }, - { - "id": "3a8cfcbaac7d102e9cfad31f856e1852be2125f3", - "address": "sentry-1.idep.ezstaking.xyz:26756", - "provider": "EZStaking.io" - }, - { - "id": "32a1a93033968e391266484cd4896dfc9b326e4c", - "address": "sentry-2.idep.ezstaking.xyz:26789", - "provider": "EZStaking.io" } ] }, @@ -81,7 +72,7 @@ "rest": [], "grpc": [ { - "address": "idep-grpc.lavenderfive.com:443", + "address": "idep.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" } ] diff --git a/impacthub/assetlist.json b/impacthub/assetlist.json index c8a5a91557..13e1477a6c 100644 --- a/impacthub/assetlist.json +++ b/impacthub/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#2c4484" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/impacthub/chain.json b/impacthub/chain.json index f25143cbc3..e2a9fd16ca 100644 --- a/impacthub/chain.json +++ b/impacthub/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.ixo.world/", "pretty_name": "Impacts Hub", + "chain_type": "cosmos", "chain_id": "ixo-5", "bech32_prefix": "ixo", "daemon_name": "ixod", @@ -39,7 +40,6 @@ "v3.0.0" ], "cosmos_sdk_version": "v0.45.16", - "ibc_go_version": "v4.4.1", "consensus": { "type": "cometbft", "version": "v0.34.27" @@ -58,12 +58,19 @@ "v0.20.1" ], "cosmos_sdk_version": "v0.45.12", - "ibc_go_version": "v4.3.0", "consensus": { "type": "tendermint", "version": "v0.34.24" }, - "next_version_name": "v2" + "next_version_name": "v2", + "sdk": { + "type": "cosmos", + "version": "v0.45.12" + }, + "ibc": { + "type": "go", + "version": "v4.3.0" + } }, { "name": "v2", @@ -74,12 +81,19 @@ "v2.0.0" ], "cosmos_sdk_version": "v0.45.16", - "ibc_go_version": "v4.4.1", "consensus": { "type": "cometbft", "version": "v0.34.27" }, - "next_version_name": "v3" + "next_version_name": "v3", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.4.1" + } }, { "name": "v3", @@ -90,14 +104,29 @@ "v3.0.0" ], "cosmos_sdk_version": "v0.45.16", - "ibc_go_version": "v4.4.1", "consensus": { "type": "cometbft", "version": "v0.34.27" }, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.4.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.4.1" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png", @@ -163,7 +192,7 @@ "provider": "Notional" }, { - "address": "https://impacthub-rpc.lavenderfive.com/", + "address": "https://rpc.lavenderfive.com:443/impacthub", "provider": "Lavender.Five Nodes 🐝" }, { @@ -173,6 +202,10 @@ { "address": "https://ixo-rpc.bluestake.net:443", "provider": "BlueStake πŸš€" + }, + { + "address": "https://impacthub_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "rest": [ @@ -193,7 +226,7 @@ "provider": "Notional" }, { - "address": "https://impacthub-api.lavenderfive.com/", + "address": "https://rest.lavenderfive.com:443/impacthub", "provider": "Lavender.Five Nodes 🐝" }, { @@ -203,6 +236,10 @@ { "address": "https://ixo-api.bluestake.net", "provider": "BlueStake πŸš€" + }, + { + "address": "https://impacthub_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "grpc": [ @@ -215,7 +252,7 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "impacthub-grpc.lavenderfive.com:443", + "address": "impacthub.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" } ] @@ -254,6 +291,12 @@ "url": "https://www.mintscan.io/ixo", "tx_page": "https://www.mintscan.io/ixo/transactions/${txHash}", "account_page": "https://www.mintscan.io/ixo/accounts/${accountAddress}" + }, + { + "kind": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯", + "url": "https://explorer.whenmoonwhenlambo.money/ixo", + "tx_page": "https://explorer.whenmoonwhenlambo.money/ixo/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/ixo/account/${accountAddress}" } ], "images": [ diff --git a/imversed/assetlist.json b/imversed/assetlist.json index 05aa09177d..be4b13421d 100644 --- a/imversed/assetlist.json +++ b/imversed/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#4c54e4" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/imversed/chain.json b/imversed/chain.json index ef4fc5424e..18136b8b13 100644 --- a/imversed/chain.json +++ b/imversed/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://imversed.network/", "pretty_name": "Imversed", + "chain_type": "cosmos", "chain_id": "imversed_5555555-1", "bech32_prefix": "imv", "daemon_name": "imversed", diff --git a/initia/assetlist.json b/initia/assetlist.json index 6f2a9c9655..1fa7bffa93 100644 --- a/initia/assetlist.json +++ b/initia/assetlist.json @@ -31,7 +31,8 @@ "socials": { "website": "https://initia.xyz/", "twitter": "https://twitter.com/initiaFDN" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/injective/assetlist.json b/injective/assetlist.json index ef01483556..500c772727 100644 --- a/injective/assetlist.json +++ b/injective/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://injective.com/", "twitter": "https://twitter.com/Injective_" - } + }, + "type_asset": "sdk.coin" }, { "description": "Tether USDt on Injective", @@ -54,7 +55,7 @@ "base": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", "name": "Tether USDt", "display": "usdt", - "symbol": "USDt", + "symbol": "USDTkv", "traces": [ { "type": "ibc", @@ -89,6 +90,53 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } }, + { + "description": "Tether USDt from Ethereum via Peggy bridge.", + "denom_units": [ + { + "denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "base": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", + "name": "Tether USDT", + "display": "usdt", + "symbol": "USDT", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "provider": "Peggy" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "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", + "theme": { + "circle": true, + "primary_color_hex": "#009393", + "background_color_hex": "#009393" + } + } + ], + "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" + } + }, { "description": "ERIS liquid staked INJ", "denom_units": [ @@ -115,7 +163,8 @@ "primary_color_hex": "#5480cc" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world", @@ -144,7 +193,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "BackBone Labs Liquid Staked Injective", @@ -165,6 +215,16 @@ "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/binj.png" }, + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "injective", + "base_denom": "inj" + }, + "provider": "BackBoneLabs" + } + ], "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/binj.png", @@ -172,10 +232,11 @@ "primary_color_hex": "#04a2fc" } } - ] + ], + "type_asset": "sdk.coin" }, { - "description": "The first meme coin on Injective. It’s a dog, but he has nunchucks", + "description": "The first meme coin on Injective. It\u2019s a dog, but he has nunchucks", "extended_description": "$NINJA is the premier meme coin on Injective. There is no formal roadmap and no promises made, but NINJAs are builders and masters of surprise. For all intents and purposes, the coin is completely useless, until it's not. And the dog, he has nunchucks.", "denom_units": [ { @@ -208,7 +269,8 @@ "socials": { "website": "https://www.dogwifnunchucks.com/", "twitter": "https://x.com/dogwifnunchucks" - } + }, + "type_asset": "sdk.coin" }, { "description": "The $WGMI Token - We Gonna Make It. Are you ready?", @@ -236,7 +298,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The first memecoin on osmosis.", @@ -317,21 +380,22 @@ "chain_name": "ethereum", "base_denom": "0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2" }, - "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", "theme": { "primary_color_hex": "#501cad" } } ], "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" }, "socials": { "website": "https://gelotto.io/", "twitter": "https://twitter.com/Gelotto2" - } + }, + "type_asset": "sdk.coin" }, { "description": "Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters.", @@ -364,7 +428,8 @@ "socials": { "website": "https://havacoin.xyz/", "twitter": "https://twitter.com/Hava_Coin" - } + }, + "type_asset": "sdk.coin" }, { "description": "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", @@ -439,7 +504,8 @@ "primary_color_hex": "#31292a" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "JUDO is a very futuristic meme token.", @@ -467,7 +533,8 @@ "primary_color_hex": "#18120f" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "BEAST-ERC20 on injective", @@ -513,7 +580,8 @@ "socials": { "website": "https://gelotto.io/", "twitter": "https://twitter.com/Gelotto2" - } + }, + "type_asset": "sdk.coin" }, { "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", @@ -590,7 +658,8 @@ "primary_color_hex": "#293a6f" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "A receipt token for lent ATOM issued by the Neptune Protocol.", @@ -615,7 +684,8 @@ "primary_color_hex": "#272f4b" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "A receipt token for lent WETH issued by the Neptune Protocol.", @@ -640,7 +710,8 @@ "primary_color_hex": "#2a303f" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "A receipt token for lent USDT issued by the Neptune Protocol.", @@ -665,7 +736,8 @@ "primary_color_hex": "#54ac94" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "A receipt token for lent TIA issued by the Neptune Protocol.", @@ -690,7 +762,8 @@ "primary_color_hex": "#7931f9" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Ninja Blaze Token", @@ -769,7 +842,8 @@ "socials": { "website": "https://talis.art/", "twitter": "https://twitter.com/ProtocolTalis" - } + }, + "type_asset": "sdk.coin" }, { "description": "Talis revenue sharing token", @@ -798,7 +872,280 @@ "socials": { "website": "https://talis.art/", "twitter": "https://twitter.com/ProtocolTalis" + }, + "type_asset": "sdk.coin" + }, + { + "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", + "denom_units": [ + { + "denom": "ibc/2CBC2EA121AE42563B08028466F37B600F2D7D4282342DE938283CC3FB2BC00E", + "exponent": 0, + "aliases": [ + "microusdc", + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/2CBC2EA121AE42563B08028466F37B600F2D7D4282342DE938283CC3FB2BC00E", + "name": "USDC", + "display": "usdc", + "symbol": "USDC", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Circle" + }, + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "provider": "Circle" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "noble", + "base_denom": "uusdc", + "channel_id": "channel-31" + }, + "chain": { + "channel_id": "channel-148", + "path": "transfer/channel-148/uusdc" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + ] + }, + { + "description": "The most degenerate NFT on Injective. Gravedigger collection for $bINJ. Giving power back to the community.", + "denom_units": [ + { + "denom": "factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/SYN", + "exponent": 0 + }, + { + "denom": "SYN", + "exponent": 6 + } + ], + "base": "factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/SYN", + "name": "Syndicate", + "display": "SYN", + "symbol": "SYN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/syn.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/syn.png", + "theme": { + "primary_color_hex": "#04a2fc" + } + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "SYN burn Derivative; minted when SYN is burned via The Furnace", + "denom_units": [ + { + "denom": "factory/inj1ej2f3lmpxj4djsmmuxvnfuvplrut7zmwrq7zj8/syn.ash", + "exponent": 0 + }, + { + "denom": "ashSYN", + "exponent": 6 + } + ], + "base": "factory/inj1ej2f3lmpxj4djsmmuxvnfuvplrut7zmwrq7zj8/syn.ash", + "name": "ASH Syndicate", + "display": "ashSYN", + "symbol": "ashSYN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/syn.ash.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/syn.ash.png" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Cosmo is the best currency in the universe.", + "extended_description": "We aim to build a decentralized community by leveraging cutting-edge technologies.", + "denom_units": [ + { + "denom": "factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO", + "exponent": 0 + }, + { + "denom": "COSMO", + "exponent": 6 + } + ], + "base": "factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO", + "name": "Cosmo", + "display": "COSMO", + "symbol": "COSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/cosmo.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/cosmo.png", + "theme": { + "primary_color_hex": "#343169" + } + } + ], + "socials": { + "website": "https://github.com/raphaellafar/Cosmo", + "twitter": "https://x.com/CosmoClub84" + }, + "type_asset": "sdk.coin" + }, + { + "description": "The Representative factory token for Trump Kemistry", + "denom_units": [ + { + "denom": "ibc/5339B0D20986A7C20C2548ED9D6B8DE47BB64E03ABFD051B7792E713036EA20C", + "exponent": 0 + }, + { + "denom": "XTRUMP", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/5339B0D20986A7C20C2548ED9D6B8DE47BB64E03ABFD051B7792E713036EA20C", + "name": "XTRUMP", + "display": "XTRUMP", + "symbol": "XTRUMP", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP", + "channel_id": "channel-122" + }, + "chain": { + "channel_id": "channel-8", + "path": "transfer/channel-8/factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/XTRUMP.png", + "theme": { + "primary_color_hex": "#b02b27" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/XTRUMP.png" } + }, + { + "description": "CW20 DRUGS meme coin", + "denom_units": [ + { + "denom": "cw20:inj19vy83ne9tzta2yqynj8yg7dq9ghca6yqn9hyej", + "exponent": 0 + }, + { + "denom": "DRUGS", + "exponent": 18 + } + ], + "type_asset": "cw20", + "address": "inj19vy83ne9tzta2yqynj8yg7dq9ghca6yqn9hyej", + "base": "cw20:inj19vy83ne9tzta2yqynj8yg7dq9ghca6yqn9hyej", + "name": "cw20 DRUGS", + "display": "DRUGS", + "symbol": "DRUGS", + "traces": [ + { + "type": "legacy-mintage", + "counterparty": { + "chain_name": "injective", + "base_denom": "factory/inj1sklcy2px26jj73ffs2f7fmxw77zsts66prrqxr/DRUGS" + }, + "provider": "Drugs" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/cw20drugs.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/cw20drugs.png" + } + ] + }, + { + "description": "Distributing happiness, is a serious business", + "denom_units": [ + { + "denom": "factory/inj1sklcy2px26jj73ffs2f7fmxw77zsts66prrqxr/DRUGS", + "exponent": 0 + }, + { + "denom": "DRUGS", + "exponent": 9 + } + ], + "base": "factory/inj1sklcy2px26jj73ffs2f7fmxw77zsts66prrqxr/DRUGS", + "name": "DRUGS", + "display": "DRUGS", + "symbol": "DRUGS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/drugs.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/drugs.png" + } + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/injective/chain.json b/injective/chain.json index a09e39929b..2f6439fa81 100644 --- a/injective/chain.json +++ b/injective/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://injective.com/", "pretty_name": "Injective", + "chain_type": "cosmos", "chain_id": "injective-1", "bech32_prefix": "inj", "extra_codecs": [ @@ -32,15 +33,13 @@ ] }, "codebase": { - "git_repo": "https://github.com/InjectiveLabs/injective-chain-releases", - "recommended_version": "v1.12.1-1705909076", + "git_repo": "https://github.com/InjectiveFoundation/injective-core/", + "recommended_version": "v1.13.2", "compatible_versions": [ - "v1.12.0-1704530206", - "v1.12.1-1705909076" + "v1.13.2" ], "binaries": { - "linux/amd64": "https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.12.1-1705909076/linux-amd64.zip", - "darwin/amd64": "https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.12.1-1705909076/darwin-amd64.zip" + "linux/amd64": "https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.13.2-1723753267/linux-amd64.zip" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/InjectiveLabs/mainnet-config/master/10001/genesis.json" @@ -88,6 +87,32 @@ "linux/amd64": "https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.12.1-1705909076/linux-amd64.zip", "darwin/amd64": "https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.12.1-1705909076/darwin-amd64.zip" }, + "next_version_name": "v1.13.0" + }, + { + "name": "v1.13.0", + "proposal": 420, + "height": 80319200, + "recommended_version": "v1.13.0-1722157491", + "compatible_versions": [ + "v1.13.0-1722157491" + ], + "binaries": { + "linux/amd64": "https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.13.0-1722157491/linux-amd64.zip" + }, + "next_version_name": "v1.13.2" + }, + { + "name": "v1.13.2", + "proposal": 424, + "height": 82830000, + "recommended_version": "v1.13.2", + "compatible_versions": [ + "v1.13.2" + ], + "binaries": { + "linux/amd64": "https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.13.2-1723753267/linux-amd64.zip" + }, "next_version_name": "" } ] @@ -228,7 +253,7 @@ "provider": "Polkachu" }, { - "address": "https://injective-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/injective", "provider": "Lavender.Five Nodes 🐝" }, { @@ -270,6 +295,10 @@ { "address": "https://rpc-injective.ecostake.com", "provider": "ecostake" + }, + { + "address": "https://rpc-injective.kewrnode.com", + "provider": "Kewr Node" } ], "rest": [ @@ -286,7 +315,7 @@ "provider": "Polkachu" }, { - "address": "https://injective-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/injective", "provider": "Lavender.Five Nodes 🐝" }, { @@ -328,6 +357,10 @@ { "address": "https://rest-injective.ecostake.com", "provider": "ecostake" + }, + { + "address": "https://rest-injective.kewrnode.com", + "provider": "Kewr Node" } ], "grpc": [ @@ -340,7 +373,7 @@ "provider": "Notional" }, { - "address": "injective-grpc.lavenderfive.com:443", + "address": "injective.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/injective/images/cosmo.png b/injective/images/cosmo.png new file mode 100644 index 0000000000..1de8af3953 Binary files /dev/null and b/injective/images/cosmo.png differ diff --git a/injective/images/cw20drugs.png b/injective/images/cw20drugs.png new file mode 100644 index 0000000000..4a1bc069bf Binary files /dev/null and b/injective/images/cw20drugs.png differ diff --git a/injective/images/drugs.png b/injective/images/drugs.png new file mode 100644 index 0000000000..b98a5bb85d Binary files /dev/null and b/injective/images/drugs.png differ diff --git a/injective/images/inj.png b/injective/images/inj.png index 7eec0d6bc1..7ee2daf0fa 100644 Binary files a/injective/images/inj.png and b/injective/images/inj.png differ diff --git a/injective/images/inj.svg b/injective/images/inj.svg index 41daa25d79..f600db8fa9 100644 --- a/injective/images/inj.svg +++ b/injective/images/inj.svg @@ -1 +1,14 @@ - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/injective/images/syn.ash.png b/injective/images/syn.ash.png new file mode 100644 index 0000000000..8683272fed Binary files /dev/null and b/injective/images/syn.ash.png differ diff --git a/injective/images/syn.png b/injective/images/syn.png new file mode 100644 index 0000000000..82d2b8f99f Binary files /dev/null and b/injective/images/syn.png differ diff --git a/irisnet/assetlist.json b/irisnet/assetlist.json index 29f1d08518..46859d06f6 100644 --- a/irisnet/assetlist.json +++ b/irisnet/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#5664ad" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/irisnet/chain.json b/irisnet/chain.json index d1b3e2be28..90eac91baf 100644 --- a/irisnet/chain.json +++ b/irisnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "IRISnet", + "chain_type": "cosmos", "chain_id": "irishub-1", "bech32_prefix": "iaa", "daemon_name": "iris", diff --git a/jackal/assetlist.json b/jackal/assetlist.json index aa0c2848d9..ab7599c963 100644 --- a/jackal/assetlist.json +++ b/jackal/assetlist.json @@ -32,7 +32,8 @@ "primary_color_hex": "#dbdbcb" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/jackal/chain.json b/jackal/chain.json index 2bc99cbd93..db80969065 100644 --- a/jackal/chain.json +++ b/jackal/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "jackal", + "chain_type": "cosmos", "chain_id": "jackal-1", "website": "https://jackalprotocol.com", "pretty_name": "Jackal", @@ -33,14 +34,16 @@ }, "codebase": { "git_repo": "https://github.com/JackalLabs/canine-chain", - "recommended_version": "v3.2.2", + "recommended_version": "v4.0.3", "compatible_versions": [ - "v3.2.1", - "v3.2.2" + "v4.0.0", + "v4.0.1", + "v4.0.2", + "v4.0.3" ], "binaries": { - "linux/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.2.2/canined-Linux", - "darwin/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.2.2/canined-macOS" + "linux/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v4.0.3/canined-Linux", + "darwin/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v4.0.3/canined-macOS" }, "genesis": { "genesis_url": "https://cdn.discordapp.com/attachments/1002389406650466405/1034968352591986859/updated_genesis2.json" @@ -58,7 +61,10 @@ "linux/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v1.2.1/canined-Linux", "darwin/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v1.2.1/canined-macOS" }, - "next_version_name": "recovery" + "next_version_name": "recovery", + "cosmwasm": { + "enabled": true + } }, { "name": "recovery", @@ -75,7 +81,10 @@ "linux/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v2.0.2/canined-Linux", "darwin/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v2.0.2/canined-macOS" }, - "next_version_name": "v210" + "next_version_name": "v210", + "cosmwasm": { + "enabled": true + } }, { "name": "v210", @@ -91,7 +100,10 @@ "linux/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v2.1.0/canined-Linux", "darwin/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v2.1.0/canined-macOS" }, - "next_version_name": "v3" + "next_version_name": "v3", + "cosmwasm": { + "enabled": true + } }, { "name": "v3", @@ -107,10 +119,13 @@ "linux/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.0.5/canined-Linux", "darwin/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.0.5/canined-macOS" }, - "next_version_name": "v3.1.1" + "next_version_name": "v3.1.1", + "cosmwasm": { + "enabled": true + } }, { - "name": "v3.1.1", + "name": "v310", "tag": "V3.1.3", "proposal": 11, "height": 6095000, @@ -124,10 +139,13 @@ "linux/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.1.3/canined-Linux", "darwin/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.1.3/canined-macOS" }, - "next_version_name": "v320" + "next_version_name": "v320", + "cosmwasm": { + "enabled": true + } }, { - "name": "v3.2.0", + "name": "v320", "tag": "V3.2.2", "proposal": 12, "height": 6835000, @@ -141,9 +159,56 @@ "linux/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.2.2/canined-Linux", "darwin/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.2.2/canined-macOS" }, - "next_version_name": "" + "next_version_name": "v340", + "cosmwasm": { + "enabled": true + } + }, + { + "name": "v340", + "tag": "V3.4.0", + "proposal": 13, + "height": 8439000, + "recommended_version": "v3.4.0", + "compatible_versions": [ + "v3.4.0" + ], + "cosmwasm_enabled": true, + "binaries": { + "linux/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.4.0/canined-Linux", + "darwin/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v3.4.0/canined-macOS" + }, + "next_version_name": "v4", + "cosmwasm": { + "enabled": true + } + }, + { + "name": "v4", + "tag": "V4.0.3", + "proposal": 14, + "height": 8527000, + "recommended_version": "v4.0.3", + "compatible_versions": [ + "v4.0.0", + "v4.0.1", + "v4.0.2", + "v4.0.3" + ], + "cosmwasm_enabled": true, + "binaries": { + "linux/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v4.0.3/canined-Linux", + "darwin/amd64": "https://github.com/JackalLabs/canine-chain/releases/download/v4.0.3/canined-macOS" + }, + "next_version_name": "", + "cosmwasm": { + "enabled": true + } } - ] + ], + "cosmwasm": { + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", @@ -225,7 +290,7 @@ "provider": "Jackal Labs" }, { - "address": "https://jackal-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/jackal", "provider": "Lavender.Five Nodes 🐝" }, { @@ -291,6 +356,10 @@ { "address": "https://jackal-rpc.noders.services", "provider": "[NODERS]TEAM" + }, + { + "address": "https://jackal_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "rest": [ @@ -299,7 +368,7 @@ "provider": "Jackal Labs" }, { - "address": "https://jackal-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/jackal", "provider": "Lavender.Five Nodes 🐝" }, { @@ -361,6 +430,10 @@ { "address": "https://jackal-api.noders.services", "provider": "[NODERS]TEAM" + }, + { + "address": "https://jackal_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "grpc": [ @@ -377,7 +450,7 @@ "provider": "[NODERS]TEAM" }, { - "address": "jackal-grpc.lavenderfive.com:443", + "address": "jackal.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -455,6 +528,12 @@ "url": "https://mainnet.whispernode.com/jackal", "tx_page": "https://mainnet.whispernode.com/jackal/tx/${txHash}", "account_page": "https://mainnet.whispernode.com/jackal/account/${accountAddress}" + }, + { + "kind": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯", + "url": "https://explorer.whenmoonwhenlambo.money/jackal", + "tx_page": "https://explorer.whenmoonwhenlambo.money/jackal/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/jackal/account/${accountAddress}" } ], "images": [ diff --git a/joltify/assetlist.json b/joltify/assetlist.json index 442a23f124..ad5f3840cc 100644 --- a/joltify/assetlist.json +++ b/joltify/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://www.joltify.io/", "twitter": "https://twitter.com/joltify_finance" - } + }, + "type_asset": "sdk.coin" }, { "description": "The native staking and governance token of the Cosmos Hub.", @@ -125,10 +126,11 @@ "chain_name": "noble", "base_denom": "uusdc" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primary_color_hex": "#2474cc" + "circle": true, + "primary_color_hex": "#2775CA" } } ] diff --git a/joltify/chain.json b/joltify/chain.json index 8987de373c..3a9b2749ea 100644 --- a/joltify/chain.json +++ b/joltify/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.joltify.io/", "pretty_name": "Joltify", + "chain_type": "cosmos", "chain_id": "joltify_1729-1", "bech32_prefix": "jolt", "daemon_name": "jolt", @@ -45,11 +46,6 @@ "version": "v0.37.3" }, "cosmwasm_enabled": false, - "ibc_go_version": "v7.3.0", - "ics_enabled": [ - "ics20-1" - ], - "go_version": "1.22.3", "binaries": { "linux/amd64": "https://gitlab.com/api/v4/projects/42057472/packages/generic/joltify-linux-amd64-v0.1.0-rc1/v0.1.0-rc1/joltify" }, @@ -64,16 +60,47 @@ "version": "v0.37.3" }, "cosmwasm_enabled": false, - "ibc_go_version": "v7.3.0", - "ics_enabled": [ - "ics20-1" - ], - "go_version": "1.22.3", "binaries": { "linux/amd64": "https://gitlab.com/api/v4/projects/42057472/packages/generic/joltify-linux-amd64-v0.1.0-rc1/v0.1.0-rc1/joltify" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "language": { + "type": "go", + "version": "1.22.3" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v7.3.0", + "ics_enabled": [ + "ics20-1" + ] } } - ] + ], + "language": { + "type": "go", + "version": "1.22.3" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "ibc": { + "type": "go", + "version": "v7.3.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "enabled": false + } }, "images": [ { @@ -107,12 +134,20 @@ { "address": "https://rpc.joltify.io", "provider": "joltify" + }, + { + "address": "https://joltify_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "rest": [ { "address": "https://lcd.joltify.io/", "provider": "joltify" + }, + { + "address": "https://joltify_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "grpc": [ @@ -125,6 +160,10 @@ { "address": "https://evm.joltify.io/", "provider": "joltify" + }, + { + "address": "https://joltify_mainnet_evm.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ] }, @@ -134,6 +173,12 @@ "url": "https://explorer.joltify.io/joltify", "tx_page": "https://explorer.joltify.io/joltify/transactions/${txHash}", "account_page": "https://explorer.joltify.io/joltify/accounts/${accountAddress}" + }, + { + "kind": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯", + "url": "https://explorer.whenmoonwhenlambo.money/joltify", + "tx_page": "https://explorer.whenmoonwhenlambo.money/joltify/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/joltify/account/${accountAddress}" } ], "keywords": [ diff --git a/juno/assetlist.json b/juno/assetlist.json index 416add9fa9..afc6fd74ec 100644 --- a/juno/assetlist.json +++ b/juno/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://junonetwork.io/", "twitter": "https://twitter.com/JunoNetwork" - } + }, + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -973,6 +974,7 @@ }, { "description": "nRide Token", + "extended_description": "nRide is developing a uber-like ride-hailing protocol, leveraging cosmwasm smart-contracts for payment, driver registration and text-messaging between the rider and the driver, to create a trustless public transportation environment for any cab or taxi company to use.", "type_asset": "cw20", "address": "juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq", "denom_units": [ @@ -1001,7 +1003,11 @@ "primary_color_hex": "#050505" } } - ] + ], + "socials": { + "website": "https://www.nride.com", + "twitter": "https://twitter.com/nRide12" + } }, { "description": "Signal Art and Gaming on Juno", @@ -1034,7 +1040,7 @@ ] }, { - "description": "Governance and utility token for the JunΓΈ Apes NFT platform on Juno", + "description": "Governance and utility token for the Jun\u00f8 Apes NFT platform on Juno", "type_asset": "cw20", "address": "juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps", "denom_units": [ @@ -1048,7 +1054,7 @@ } ], "base": "cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps", - "name": "JunΓΈ Apes", + "name": "Jun\u00f8 Apes", "display": "jape", "symbol": "JAPE", "logo_URIs": { @@ -2026,7 +2032,8 @@ "primary_color_hex": "#040405" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -2054,7 +2061,8 @@ "primary_color_hex": "#dfe0e0" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "ERIS liquid staked JUNO", @@ -2174,7 +2182,7 @@ ] }, { - "description": "In Roman mythology, Juno (Latin: Iuno; pronounced [[Help:Pronunciation|[ˈjuːnoː]]]) was the protector and advisor of the state.", + "description": "In Roman mythology, Juno (Latin: Iuno; pronounced [[Help:Pronunciation|[\u02c8ju\u02d0no\u02d0]]]) was the protector and advisor of the state.", "type_asset": "cw20", "address": "juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk", "denom_units": [ @@ -2284,6 +2292,16 @@ "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bJUNO-bbl.png" }, + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "juno", + "base_denom": "ujuno" + }, + "provider": "BackBoneLabs" + } + ], "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bJUNO-bbl.png", @@ -2317,8 +2335,8 @@ "symbol": "USDC", "coingecko_id": "usd-coin", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "images": [ { @@ -2326,10 +2344,11 @@ "chain_name": "noble", "base_denom": "uusdc" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primary_color_hex": "#2474cc" + "circle": true, + "primary_color_hex": "#2775CA" } } ], @@ -2425,7 +2444,8 @@ "primary_color_hex": "#122b4d" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Airdrop For All [AFA - New Name on Cosmos Ecosystem, A4A - Old Name on TurtleNetwork] is a token from turtleNetwork towards cosmos ecosystem.", @@ -2484,6 +2504,32 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.svg" } + }, + { + "description": "ashWIND", + "denom_units": [ + { + "denom": "factory/juno16uprl38e4ljj5ctuha9ehpvp2l93z3d5jmwj2cttt6jkhlrhscpqgglalk/wind.ash", + "exponent": 0 + }, + { + "denom": "ashWIND", + "exponent": 6 + } + ], + "base": "factory/juno16uprl38e4ljj5ctuha9ehpvp2l93z3d5jmwj2cttt6jkhlrhscpqgglalk/wind.ash", + "name": "ashWIND", + "display": "ashWIND", + "symbol": "ashWIND", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.ash.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.ash.png" + } + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/juno/chain.json b/juno/chain.json index eab7cbdb02..bd2448d5f9 100644 --- a/juno/chain.json +++ b/juno/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.junonetwork.io/", "pretty_name": "Juno", + "chain_type": "cosmos", "chain_id": "juno-1", "bech32_prefix": "juno", "daemon_name": "junod", @@ -40,21 +41,20 @@ }, "codebase": { "git_repo": "https://github.com/CosmosContracts/juno", - "recommended_version": "v22.0.1", + "recommended_version": "v24.0.0", "compatible_versions": [ - "v22.0.1" + "v24.0.0" ], "binaries": { - "linux/amd64": "https://github.com/CosmosContracts/juno/releases/download/v22.0.1/junod" + "linux/amd64": "https://github.com/CosmosContracts/juno/releases/download/v24.0.0/junod" }, - "cosmos_sdk_version": "v0.47.11-0.20240417094812-f556fd956fb1", + "cosmos_sdk_version": "v0.47.12", "consensus": { "type": "cometbft", - "version": "v0.37.5" + "version": "v0.37.8" }, - "cosmwasm_version": "v0.45.0", + "cosmwasm_version": "v0.46.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.4.0", "genesis": { "genesis_url": "https://download.dimi.sh/juno-phoenix2-genesis.tar.gz" }, @@ -73,12 +73,24 @@ "cosmos_sdk_version": "0.45.14", "consensus": { "type": "tendermint", - "version": "informalsystems/tendermint v0.34.26" + "version": "v0.34.26", + "repo": "https://github.com/informalsystems/tendermint" }, "cosmwasm_version": "0.30.0", "cosmwasm_enabled": true, - "ibc_go_version": "v4.3.0", - "next_version_name": "v14" + "next_version_name": "v14", + "sdk": { + "type": "cosmos", + "version": "0.45.14" + }, + "cosmwasm": { + "version": "0.30.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v4.3.0" + } }, { "name": "v14", @@ -95,12 +107,24 @@ "cosmos_sdk_version": "0.45.15", "consensus": { "type": "cometbft", - "version": "mev-cometbft v0.34.27-mev.18" + "version": "v0.34.27", + "tag": "v0.34.27-mev.18" }, "cosmwasm_version": "0.31.0", "cosmwasm_enabled": true, - "ibc_go_version": "v4.3.0", - "next_version_name": "v15" + "next_version_name": "v15", + "sdk": { + "type": "cosmos", + "version": "0.45.15" + }, + "cosmwasm": { + "version": "0.31.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v4.3.0" + } }, { "name": "v15", @@ -116,12 +140,24 @@ "cosmos_sdk_version": "0.45.16", "consensus": { "type": "cometbft", - "version": "mev-cometbft v0.34.27-mev.18" + "version": "v0.34.27", + "tag": "v0.34.27-mev.18" }, "cosmwasm_version": "0.31.0", "cosmwasm_enabled": true, - "ibc_go_version": "v4.3.1", - "next_version_name": "v16" + "next_version_name": "v16", + "sdk": { + "type": "cosmos", + "version": "0.45.16" + }, + "cosmwasm": { + "version": "0.31.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v4.3.1" + } }, { "name": "v16", @@ -142,8 +178,19 @@ }, "cosmwasm_version": "0.40.2", "cosmwasm_enabled": true, - "ibc_go_version": "v7.2.0", - "next_version_name": "v17" + "next_version_name": "v17", + "sdk": { + "type": "cosmos", + "version": "0.47.3" + }, + "cosmwasm": { + "version": "0.40.2", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.2.0" + } }, { "name": "v17", @@ -164,8 +211,19 @@ }, "cosmwasm_version": "0.41.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.0", - "next_version_name": "v18" + "next_version_name": "v18", + "sdk": { + "type": "cosmos", + "version": "0.47.5" + }, + "cosmwasm": { + "version": "0.41.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } }, { "name": "v18", @@ -185,8 +243,19 @@ }, "cosmwasm_version": "0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", - "next_version_name": "v19" + "next_version_name": "v19", + "sdk": { + "type": "cosmos", + "version": "0.47.5" + }, + "cosmwasm": { + "version": "0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v19", @@ -206,8 +275,19 @@ }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", - "next_version_name": "v21" + "next_version_name": "v21", + "sdk": { + "type": "cosmos", + "version": "v0.47.6" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v21", @@ -227,8 +307,19 @@ }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", - "next_version_name": "v22" + "next_version_name": "v22", + "sdk": { + "type": "cosmos", + "version": "v0.47.6" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v22", @@ -248,10 +339,98 @@ }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.4.0", - "next_version_name": "" + "next_version_name": "v23", + "sdk": { + "type": "cosmos", + "version": "v0.47.11", + "tag": "v0.47.11-0.20240417094812-f556fd956fb1" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } + }, + { + "name": "v23", + "proposal": 352, + "height": 18032000, + "recommended_version": "v23.1.0", + "compatible_versions": [ + "v23.1.0" + ], + "binaries": { + "linux/amd64": "https://github.com/CosmosContracts/juno/releases/download/v23.1.0/junod" + }, + "cosmos_sdk_version": "v0.47.12", + "consensus": { + "type": "cometbft", + "version": "v0.37.8" + }, + "cosmwasm_version": "v0.45.0", + "cosmwasm_enabled": true, + "next_version_name": "v24", + "sdk": { + "type": "cosmos", + "version": "v0.47.12" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.6.0" + } + }, + { + "name": "v24", + "proposal": 354, + "height": 19022500, + "recommended_version": "v24.0.0", + "compatible_versions": [ + "v24.0.0" + ], + "binaries": { + "linux/amd64": "https://github.com/CosmosContracts/juno/releases/download/v24.0.0/junod" + }, + "cosmos_sdk_version": "v0.47.12", + "consensus": { + "type": "cometbft", + "version": "v0.37.8" + }, + "cosmwasm_version": "v0.46.0", + "cosmwasm_enabled": true, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.12" + }, + "cosmwasm": { + "version": "v0.46.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.6.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.12" + }, + "ibc": { + "type": "go", + "version": "v7.6.0" + }, + "cosmwasm": { + "version": "v0.46.0", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", @@ -294,11 +473,6 @@ "address": "juno-mainnet-seed.autostake.com:27136", "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, - { - "id": "c28827cb96c14c905b127b92065a3fb4cd77d7f6", - "address": "seeds.whispernode.com:12656", - "provider": "WhisperNode 🀐" - }, { "id": "509f6dbae3133a9df177edea051b31e1210b117e", "address": "seed-juno-01.stakeflow.io:2307", @@ -364,10 +538,6 @@ }, "apis": { "rpc": [ - { - "address": "https://rpc-juno.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://rpc-juno.itastakers.com", "provider": "itastakers" @@ -385,7 +555,7 @@ "provider": "Polkachu" }, { - "address": "https://juno-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/juno", "provider": "Lavender.Five Nodes 🐝" }, { @@ -491,7 +661,7 @@ "provider": "ecostake" }, { - "address": "https://juno-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/juno", "provider": "Lavender.Five Nodes 🐝" }, { @@ -558,10 +728,6 @@ "address": "https://juno-api.stake-town.com", "provider": "StakeTown" }, - { - "address": "https://lcd-juno.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://juno-api.stakeandrelax.net", "provider": "Stake&Relax πŸ¦₯" @@ -593,7 +759,7 @@ "provider": "Notional" }, { - "address": "juno-grpc.lavenderfive.com:443", + "address": "juno.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/juno/images/wind.ash.png b/juno/images/wind.ash.png new file mode 100644 index 0000000000..e83f221da1 Binary files /dev/null and b/juno/images/wind.ash.png differ diff --git a/kava/assetlist.json b/kava/assetlist.json index 28c49d1395..0d0ddb405b 100644 --- a/kava/assetlist.json +++ b/kava/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://www.kava.io/", "twitter": "https://twitter.com/KAVA_CHAIN" - } + }, + "type_asset": "sdk.coin" }, { "description": "Governance token of Kava Lend Protocol", @@ -67,7 +68,8 @@ "primary_color_hex": "#7b34ac" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Governance token of Kava Swap Protocol", @@ -98,7 +100,8 @@ "primary_color_hex": "#544cfc" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The native stablecoin of Kava", @@ -129,7 +132,8 @@ "primary_color_hex": "#04d4a3" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -175,7 +179,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" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/kava/chain.json b/kava/chain.json index 958da2bbd7..d449c646f1 100644 --- a/kava/chain.json +++ b/kava/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.kava.io/", "pretty_name": "Kava", + "chain_type": "cosmos", "chain_id": "kava_2222-10", "bech32_prefix": "kava", "daemon_name": "kava", @@ -171,6 +172,10 @@ { "address": "https://kava-rpc.publicnode.com:443", "provider": "Allnodes ⚑️ Nodes & Staking" + }, + { + "address": "https://kava.drpc.org", + "provider": "dRPC" } ], "rest": [ diff --git a/kichain/assetlist.json b/kichain/assetlist.json index 1b9602f231..f7165ce7f5 100644 --- a/kichain/assetlist.json +++ b/kichain/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#1c04fc" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "ELEVENPARIS loyalty token on KiChain", diff --git a/kichain/chain.json b/kichain/chain.json index abcdb4c4fb..dcb4ce1635 100644 --- a/kichain/chain.json +++ b/kichain/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://foundation.ki/", "pretty_name": "Ki", + "chain_type": "cosmos", "chain_id": "kichain-2", "bech32_prefix": "ki", "daemon_name": "kid", @@ -87,6 +88,11 @@ "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚑️ Nodes & Staking" + }, + { + "id": "258f523c96efde50d5fe0a9faeea8a3e83be22ca", + "address": "seed.kichain-2.kichain.aviaone.com:10267", + "provider": "AVIAONE 🟒" } ], "persistent_peers": [ @@ -130,7 +136,7 @@ "provider": "ChainTools" }, { - "address": "https://kichain-rpc.lavenderfive.com/", + "address": "https://rpc.lavenderfive.com:443/kichain", "provider": "Lavender.Five Nodes 🐝" }, { @@ -140,6 +146,10 @@ { "address": "https://ki-rpc.ibs.team/", "provider": "Inter Blockchain Services" + }, + { + "address": "https://rpc.kichain-2.kichain.aviaone.com", + "provider": "AVIAONE 🟒" } ], "rest": [ @@ -172,12 +182,16 @@ "provider": "Polkachu" }, { - "address": "https://kichain-api.lavenderfive.com/", + "address": "https://rest.lavenderfive.com:443/kichain", "provider": "Lavender.Five Nodes 🐝" }, { "address": "https://ki-api.ibs.team/", "provider": "Inter Blockchain Services" + }, + { + "address": "https://api.kichain-2.kichain.aviaone.com", + "provider": "AVIAONE 🟒" } ], "grpc": [ @@ -198,8 +212,12 @@ "provider": "Polkachu" }, { - "address": "kichain-grpc.lavenderfive.com:443", + "address": "kichain.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "grpc.kichain-2.kichain.aviaone.com:9230", + "provider": "AVIAONE 🟒" } ] }, @@ -231,6 +249,12 @@ "url": "https://atomscan.com/ki-chain", "tx_page": "https://atomscan.com/ki-chain/transactions/${txHash}", "account_page": "https://atomscan.com/ki-chain/accounts/${accountAddress}" + }, + { + "kind": "AVIAONE Explorer 🟒", + "url": "https://mainnet.explorer.aviaone.com/kichain", + "tx_page": "https://mainnet.explorer.aviaone.com/kichain/transactions/${txHash}", + "account_page": "https://mainnet.explorer.aviaone.com/kichain/accounts/${accountAddress}" } ], "images": [ diff --git a/kimanetwork/assetlist.json b/kimanetwork/assetlist.json new file mode 100644 index 0000000000..555a0c7e38 --- /dev/null +++ b/kimanetwork/assetlist.json @@ -0,0 +1,42 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "kimanetwork", + "assets": [ + { + "description": "Kima is an asset-agnostic interoperability infrastructure that connects blockchain networks and legacy financial systems, enabling secure, scalable cross-chain transactions and seamless communication across ecosystems.", + "extended_description": "Kima is an asset-agnostic interoperability infrastructure designed to bridge the gap between blockchain networks and traditional financial systems. By providing a unified platform for secure and scalable cross-ecosystem transactions, Kima enables seamless transfers across different ecosystems, including digital assets and legacy financial systems. Its patent-pending architecture eliminates vulnerabilities associated with smart contracts and key management, ensuring a secure environment for high-volume transactions. Kima\u2019s innovative approach provides financial institutions and developers with the tools needed to create interoperable solutions that operate across both traditional and blockchain-based systems, driving the future of decentralized finance and financial services.", + "denom_units": [ + { + "denom": "uKIMA", + "exponent": 0 + }, + { + "denom": "KIMA", + "exponent": 6 + } + ], + "base": "uKIMA", + "name": "KIMA", + "display": "KIMA", + "symbol": "KIMA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.svg" + } + ], + "socials": { + "github": "https://github.com/kima-finance", + "medium": "https://medium.com/@kima_finance", + "telegram": "https://t.me/kimanetwork", + "twitter": "https://x.com/KimaNetwork", + "website": "https://www.kima.network/" + }, + "type_asset": "sdk.coin" + } + ] +} diff --git a/kimanetwork/chain.json b/kimanetwork/chain.json new file mode 100644 index 0000000000..66ad318e43 --- /dev/null +++ b/kimanetwork/chain.json @@ -0,0 +1,114 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "kimanetwork", + "status": "live", + "website": "https://www.kima.network/", + "network_type": "mainnet", + "pretty_name": "Kima Network", + "chain_type": "cosmos", + "chain_id": "kima_network", + "bech32_prefix": "kima", + "daemon_name": "uKIMA", + "node_home": "$HOME/.kimad", + "key_algos": ["secp256k1"], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uKIMA", + "fixed_min_gas_price": 0, + "low_gas_price": 0.0025, + "average_gas_price": 0.025, + "high_gas_price": 0.04 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uKIMA" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/kima-finance/kima-blockchain", + "recommended_version": "v0.4.3", + "compatible_versions": ["v0.4.3"], + "genesis": { + "genesis_url": "https://archive.kima.network/genesis.json" + }, + "versions": [ + { + "name": "v0.4.3", + "recommended_version": "v0.4.3", + "compatible_versions": ["v0.4.3"], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/cosmos/cosmos-sdk", + "version": "v0.47.4", + "tag": "v0.47.4" + } + } + ] + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.svg" + } + ], + "peers": { + "seeds": [ + { + "id": "03e46f5146de1d8049e2636a60994a0be96090d6", + "address": "sentry-0.kima.network:26656", + "provider": "Kima Network" + } + ], + "persistent_peers": [ + { + "id": "03e46f5146de1d8049e2636a60994a0be96090d6", + "address": "sentry-0.kima.network:26656", + "provider": "Kima Network" + }, + { + "id": "4645f25ba7c5253c7fb8836656e34d698f4baf8c", + "address": "sentry-1.kima.network:26656", + "provider": "Kima Network" + } + ] + }, + "apis": { + "wss": [ + { + "address": "wss://rpc.kima.network/query", + "provider": "Kima Network" + } + ], + "rpc": [ + { + "address": "https://rpc.kima.network/", + "provider": "Kima Network" + } + ], + "rest": [ + { + "address": "https://api.kima.network", + "provider": "Kima Network" + } + ], + "grpc": [ + { + "address": "https://grpc.kima.network", + "provider": "Kima Network" + } + ] + }, + "explorers": [ + { + "kind": "Kima Network Explorer", + "url": "https://explorer.kima.network/", + "tx_page": "https://explorer.kima.network/transactions/${txHash}" + } + ] +} diff --git a/kimanetwork/images/kima.png b/kimanetwork/images/kima.png new file mode 100644 index 0000000000..6bdb2cffb1 Binary files /dev/null and b/kimanetwork/images/kima.png differ diff --git a/kimanetwork/images/kima.svg b/kimanetwork/images/kima.svg new file mode 100644 index 0000000000..1daa992d8f --- /dev/null +++ b/kimanetwork/images/kima.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/konstellation/assetlist.json b/konstellation/assetlist.json index 4ae0ec910f..6a61d65ccd 100644 --- a/konstellation/assetlist.json +++ b/konstellation/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#042a61" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/konstellation/chain.json b/konstellation/chain.json index fdeb23baf5..7ae060845c 100644 --- a/konstellation/chain.json +++ b/konstellation/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://konstellation.tech/", "pretty_name": "Konstellation", + "chain_type": "cosmos", "chain_id": "darchub", "bech32_prefix": "darc", "daemon_name": "knstld", diff --git a/kujira/assetlist.json b/kujira/assetlist.json index dc76a8be8a..9ab901b288 100644 --- a/kujira/assetlist.json +++ b/kujira/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://kujira.network/", "twitter": "https://twitter.com/TeamKujira" - } + }, + "type_asset": "sdk.coin" }, { "description": "The native over-collateralized stablecoin from the Kujira chain.", @@ -67,7 +68,8 @@ "primary_color_hex": "#2e363f" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Quark's auto-compounding KUJI derivative", @@ -92,7 +94,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "ampKUJI", @@ -122,7 +125,8 @@ "primary_color_hex": "#4b7bbb" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "MantaDAO Governance Token", @@ -153,7 +157,8 @@ "primary_color_hex": "#0c141c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Quark's auto-compounding MNTA derivative", @@ -178,7 +183,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "ERIS Liquid Staked MNTA", @@ -206,7 +212,8 @@ "primary_color_hex": "#618bc8" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The content house of Kujira", @@ -236,7 +243,8 @@ "primary_color_hex": "#fc7991" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Blend Token", @@ -261,7 +269,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Tether USDt on Kujira", @@ -343,7 +352,8 @@ "primary_color_hex": "#f05d8d" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The receipt token of Fuzion", @@ -371,7 +381,8 @@ "primary_color_hex": "#949494" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The yield token of Fuzion", @@ -396,7 +407,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Quark's auto-compounding FUZN derivative", @@ -421,7 +433,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Quark's auto-compounding AQLA derivative", @@ -459,7 +472,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcaqla.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The Aqualibre project's token", @@ -485,7 +499,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/aqla.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The Revenue & Governance token of Unstake.fi", @@ -511,7 +526,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Local Money", @@ -539,7 +555,8 @@ "primary_color_hex": "#242424" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Food for whales", @@ -567,7 +584,8 @@ "primary_color_hex": "#c87ae9" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -580,10 +598,11 @@ "exponent": 8 } ], + "type_asset": "ics20", "base": "ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3", "name": "Wormhole Solana", "display": "sol", - "symbol": "whSOL", + "symbol": "SOL.wh", "traces": [ { "type": "ibc", @@ -604,11 +623,17 @@ "chain_name": "gateway", "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA" }, - "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" + } } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg" } }, { @@ -622,6 +647,7 @@ "exponent": 18 } ], + "type_asset": "ics20", "base": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", "name": "Evmos", "display": "evmos", @@ -737,16 +763,17 @@ "chain_name": "noble", "base_denom": "uusdc" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primary_color_hex": "#2474cc" + "circle": true, + "primary_color_hex": "#2775CA" } } ], "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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } }, { @@ -904,6 +931,7 @@ "exponent": 6 } ], + "type_asset": "ics20", "base": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", "name": "Juno", "display": "juno", @@ -955,7 +983,7 @@ "base": "ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7", "name": "Axelar Wrapped Ether", "display": "weth", - "symbol": "wETH", + "symbol": "wETH.axl", "traces": [ { "type": "ibc", @@ -1045,6 +1073,7 @@ "exponent": 6 } ], + "type_asset": "ics20", "base": "ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986", "name": "Luna", "display": "luna", @@ -1120,7 +1149,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" } } ], @@ -1140,6 +1169,7 @@ "exponent": 6 } ], + "type_asset": "ics20", "base": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", "name": "Secret Network", "display": "scrt", @@ -1249,6 +1279,16 @@ "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bKUJI.png" }, + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "kujira", + "base_denom": "ukuji" + }, + "provider": "BackBoneLabs" + } + ], "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bKUJI.png", @@ -1256,7 +1296,8 @@ "primary_color_hex": "#cc3533" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -1335,7 +1376,8 @@ "primary_color_hex": "#303741" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Ghost Vault MNTA", @@ -1363,7 +1405,8 @@ "primary_color_hex": "#0f151f" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Stride staked ATOM", @@ -1377,6 +1420,7 @@ "exponent": 6 } ], + "type_asset": "ics20", "base": "ibc/0306D6B66EAA2EDBB7EAD23C0EC9DDFC69BB43E80B398035E90FBCFEF3FD1A87", "name": "stATOM", "display": "statom", @@ -1425,6 +1469,7 @@ "exponent": 6 } ], + "type_asset": "ics20", "base": "ibc/301DAF9CB0A9E247CD478533EF0E21F48FF8118C4A51F77C8BC3EB70E5566DBC", "name": "Axelar Bridged wBTC", "display": "wbtc.axl", @@ -1471,6 +1516,7 @@ "exponent": 6 } ], + "type_asset": "ics20", "base": "ibc/F97BDCE220CCB52139C73066E36C45EC7EDCEEF1DAFF891A34F4FBA195A2E6E8", "name": "Stride staked OSMO", "display": "stosmo", @@ -1485,7 +1531,7 @@ }, "chain": { "channel_id": "channel-32", - "path": "transfer/channel-32/uosmo" + "path": "transfer/channel-32/stuosmo" } } ], @@ -1530,7 +1576,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: SHD-MNTA", @@ -1555,7 +1602,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: DYDX-MNTA", @@ -1580,7 +1628,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: wAVAX.axl-MNTA", @@ -1605,7 +1654,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: CHEQ-MNTA", @@ -1630,7 +1680,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: FUZN-MNTA", @@ -1655,7 +1706,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: SOMM-MNTA", @@ -1680,7 +1732,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: wETH.axl-MNTA", @@ -1705,7 +1758,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: NTRN-MNTA", @@ -1730,7 +1784,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: wFTM.axl-MNTA", @@ -1755,7 +1810,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: STARS-MNTA", @@ -1780,7 +1836,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: TIA-MNTA", @@ -1805,7 +1862,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: SOL.wh-MNTA", @@ -1830,7 +1888,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: DYM-MNTA", @@ -1855,7 +1914,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: AKT-MNTA", @@ -1880,7 +1940,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: LINK.axl-MNTA", @@ -1905,7 +1966,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: wTAO.grv-MNTA", @@ -1930,7 +1992,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: MNTA-KUJI", @@ -1955,7 +2018,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: AXL-MNTA", @@ -1980,7 +2044,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: ATOM-MNTA", @@ -2005,7 +2070,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: ARB-MNTA", @@ -2030,7 +2096,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: WHALE-MNTA", @@ -2055,7 +2122,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: SCRT-MNTA", @@ -2080,7 +2148,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: wstETH.axl-MNTA", @@ -2105,7 +2174,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: wMATIC.axl-MNTA", @@ -2130,7 +2200,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: UNI.axl-MNTA", @@ -2155,7 +2226,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: yieldETH.axl-MNTA", @@ -2180,7 +2252,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: wBTC.axl-MNTA", @@ -2205,7 +2278,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: PAXG.grv-MNTA", @@ -2230,7 +2304,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: wBNB.axl-MNTA", @@ -2255,7 +2330,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: OSMO-MNTA", @@ -2280,7 +2356,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: INJ-MNTA", @@ -2305,7 +2382,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: stOSMO-OSMO", @@ -2330,7 +2408,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: wstETH.axl-wETH.axl", @@ -2355,7 +2434,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: qcMNTA-MNTA", @@ -2380,7 +2460,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: ampMNTA-MNTA", @@ -2405,7 +2486,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LP Bow: wETH.axl-USK", @@ -2430,7 +2512,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The token of NAMI", @@ -2461,7 +2544,488 @@ "primary_color_hex": "#1a1b1b" } } - ] + ], + "type_asset": "sdk.coin" + }, + { + "description": "The receipt token of NAMI Protocol", + "denom_units": [ + { + "denom": "factory/kujira18thffdpuz8tm3mwwun4uhks8a2v7ye0jmw3fllqhklma82lqkpms20gh9c/unausd", + "exponent": 0 + }, + { + "denom": "nausd", + "exponent": 6 + } + ], + "base": "factory/kujira18thffdpuz8tm3mwwun4uhks8a2v7ye0jmw3fllqhklma82lqkpms20gh9c/unausd", + "name": "NAUSD", + "display": "nausd", + "symbol": "NAUSD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nausd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nausd.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nausd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nausd.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "The token of MCTest", + "denom_units": [ + { + "denom": "factory/kujira1mn2pgkggquqm2m44zqlaq29jxwtad53qkv4xy4/MCTest", + "exponent": 0 + }, + { + "denom": "mctest", + "exponent": 6 + } + ], + "base": "factory/kujira1mn2pgkggquqm2m44zqlaq29jxwtad53qkv4xy4/MCTest", + "name": "MCTEST", + "display": "mctest", + "symbol": "MC01", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mctest.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mctest.png", + "theme": { + "primary_color_hex": "#1a1b1b" + } + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "The token of AUTO", + "denom_units": [ + { + "denom": "factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/uauto", + "exponent": 0 + }, + { + "denom": "auto", + "exponent": 6 + } + ], + "base": "factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/uauto", + "name": "AUTO", + "display": "auto", + "symbol": "AUTO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/auto.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/auto.png", + "theme": { + "primary_color_hex": "#1a1b1b" + } + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Quark's auto-compounding DYDX derivative", + "denom_units": [ + { + "denom": "factory/kujira1seqq2ekz47uqayshqkg5wqx5vcyrmtwcl9vscnwy2gjh7mz5aapsdfxsd5/urcpt", + "exponent": 0 + }, + { + "denom": "qcDYDX", + "exponent": 18 + } + ], + "base": "factory/kujira1seqq2ekz47uqayshqkg5wqx5vcyrmtwcl9vscnwy2gjh7mz5aapsdfxsd5/urcpt", + "name": "qcDYDX", + "display": "qcDYDX", + "symbol": "qcDYDX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcdydx.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcdydx.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "The Kujira Recovery Token", + "denom_units": [ + { + "denom": "factory/kujira1tsekaqv9vmem0zwskmf90gpf0twl6k57e8vdnq/urkuji", + "exponent": 0 + }, + { + "denom": "rkuji", + "exponent": 6 + } + ], + "base": "factory/kujira1tsekaqv9vmem0zwskmf90gpf0twl6k57e8vdnq/urkuji", + "name": "rKUJI", + "display": "rkuji", + "symbol": "rKUJI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/rkuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/rkuji.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/rkuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/rkuji.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "LP Bow: ATOM-USK", + "denom_units": [ + { + "denom": "factory/kujira1yncutssgh2vj9scaymtteg949hwcft07c6qmgarxnaf04yesq3jsn6g2uv/ulp", + "exponent": 0 + }, + { + "denom": "lp-atom-usk", + "exponent": 6 + } + ], + "base": "factory/kujira1yncutssgh2vj9scaymtteg949hwcft07c6qmgarxnaf04yesq3jsn6g2uv/ulp", + "name": "LP Bow: ATOM-USK", + "display": "lp-atom-usk", + "symbol": "LP ATOM-USK", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "LP Bow: wETH.axl-USK", + "denom_units": [ + { + "denom": "factory/kujira1xwvvjq5w0887v2vz4e83kcu38s0jq8q8lqa3z5hxm295q7y4uejqp24la7/ulp", + "exponent": 0 + }, + { + "denom": "lp-weth-usk", + "exponent": 6 + } + ], + "base": "factory/kujira1xwvvjq5w0887v2vz4e83kcu38s0jq8q8lqa3z5hxm295q7y4uejqp24la7/ulp", + "name": "LP Bow: wETH.axl-USK", + "display": "lp-weth-usk", + "symbol": "LP wETH.axl-USK", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "LP Bow: SOL.wh-USK", + "denom_units": [ + { + "denom": "factory/kujira1vcmh95lje5dln782pxckma65eujs4sv960w22whgsp7a2ajsc6lsvnlhgd/ulp", + "exponent": 0 + }, + { + "denom": "lp-sol-usk", + "exponent": 6 + } + ], + "base": "factory/kujira1vcmh95lje5dln782pxckma65eujs4sv960w22whgsp7a2ajsc6lsvnlhgd/ulp", + "name": "LP Bow: SOL.wh-USK", + "display": "lp-sol-usk", + "symbol": "LP SOL.wh-USK", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "LP Bow: wETH.axl-USDC", + "denom_units": [ + { + "denom": "factory/kujira1n4jfv39hzv2dtshzv6gj4hp8rkdy5rrsr7l84lc3x9cahz4v0umq24q3lu/ulp", + "exponent": 0 + }, + { + "denom": "lp-weth-usdc", + "exponent": 6 + } + ], + "base": "factory/kujira1n4jfv39hzv2dtshzv6gj4hp8rkdy5rrsr7l84lc3x9cahz4v0umq24q3lu/ulp", + "name": "LP Bow: wETH.axl-USDC", + "display": "lp-weth-usdc", + "symbol": "LP wETH.axl-USDC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "LP Bow: DYDX-USK", + "denom_units": [ + { + "denom": "factory/kujira1lctu7hy65466fxw3tcqf8w45zwrpwgd9chvjqpgyfgcr73k774nsv4ya6t/ulp", + "exponent": 0 + }, + { + "denom": "lp-dydx-usk", + "exponent": 6 + } + ], + "base": "factory/kujira1lctu7hy65466fxw3tcqf8w45zwrpwgd9chvjqpgyfgcr73k774nsv4ya6t/ulp", + "name": "LP Bow: DYDX-USK", + "display": "lp-dydx-usk", + "symbol": "LP DYDX-USK", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "LP Bow: AKT-USDC", + "denom_units": [ + { + "denom": "factory/kujira1g5st8p6qdyf23zzerjcxgpr2r7a9wzdyaymu79ngg6ve3m9v3n4sdetv4e/ulp", + "exponent": 0 + }, + { + "denom": "lp-akt-usdc", + "exponent": 6 + } + ], + "base": "factory/kujira1g5st8p6qdyf23zzerjcxgpr2r7a9wzdyaymu79ngg6ve3m9v3n4sdetv4e/ulp", + "name": "LP Bow: AKT-USDC", + "display": "lp-akt-usdc", + "symbol": "LP AKT-USDC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "LP Bow: wBTC-USK", + "denom_units": [ + { + "denom": "factory/kujira1d7jt9zwlnpvf7sskfm57c77pm9mtwczqre75t9k80ees0v523kasss9htj/ulp", + "exponent": 0 + }, + { + "denom": "lp-wbtc-usk", + "exponent": 6 + } + ], + "base": "factory/kujira1d7jt9zwlnpvf7sskfm57c77pm9mtwczqre75t9k80ees0v523kasss9htj/ulp", + "name": "LP Bow: wBTC-USK", + "display": "lp-wbtc-usk", + "symbol": "LP wBTC-USK", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "LP Bow: wBTC.axl-wBTC", + "denom_units": [ + { + "denom": "factory/kujira1c4e2zk4z0anrufjh64gxtse6e4s5g52fe2ja8ke3r9e0pvpd0z0qws8zsp/ulp", + "exponent": 0 + }, + { + "denom": "lp-wbtc-wbtc", + "exponent": 8 + } + ], + "base": "factory/kujira1c4e2zk4z0anrufjh64gxtse6e4s5g52fe2ja8ke3r9e0pvpd0z0qws8zsp/ulp", + "name": "LP Bow: wBTC.axl-wBTC", + "display": "lp-wbtc-wbtc", + "symbol": "LP wBTC.axl-wBTC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "LP Bow: INJ-USDC", + "denom_units": [ + { + "denom": "factory/kujira14jwhlsg3az20f7keav2axxj205fyv5j8mp6rv5svqwwll3ls9slq6zwleg/ulp", + "exponent": 0 + }, + { + "denom": "lp-inj-usdc", + "exponent": 6 + } + ], + "base": "factory/kujira14jwhlsg3az20f7keav2axxj205fyv5j8mp6rv5svqwwll3ls9slq6zwleg/ulp", + "name": "LP Bow: INJ-USDC", + "display": "lp-inj-usdc", + "symbol": "LP INJ-USDC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "LP Bow: ATOM-USDC", + "denom_units": [ + { + "denom": "factory/kujira13my0qtm2a8jp0wg8uzg49tyn4zcea8scy3dc7ghn8z9eys08yzls49ymdm/ulp", + "exponent": 0 + }, + { + "denom": "lp-atom-usdc", + "exponent": 6 + } + ], + "base": "factory/kujira13my0qtm2a8jp0wg8uzg49tyn4zcea8scy3dc7ghn8z9eys08yzls49ymdm/ulp", + "name": "LP Bow: ATOM-USDC", + "display": "lp-atom-usdc", + "symbol": "LP ATOM-USDC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "LP Bow: MNTA-USDC", + "denom_units": [ + { + "denom": "factory/kujira1742pe93mxm0cwqjxgxh6th9sspdrluqvw9pha9q69eeatue4x5xs0wdq2d/ulp", + "exponent": 0 + }, + { + "denom": "lp-mnta-usdc", + "exponent": 6 + } + ], + "base": "factory/kujira1742pe93mxm0cwqjxgxh6th9sspdrluqvw9pha9q69eeatue4x5xs0wdq2d/ulp", + "name": "LP Bow: MNTA-USDC", + "display": "lp-mnta-usdc", + "symbol": "LP MNTA-USDC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "LP Bow: MNTA-USK", + "denom_units": [ + { + "denom": "factory/kujira1xtaadmh06s8u3z5mypp8qayhrnxgga5wr88s7raram4rz8zu37hquf82wk/ulp", + "exponent": 0 + }, + { + "denom": "lp-mnta-usk", + "exponent": 6 + } + ], + "base": "factory/kujira1xtaadmh06s8u3z5mypp8qayhrnxgga5wr88s7raram4rz8zu37hquf82wk/ulp", + "name": "LP Bow: MNTA-USK", + "display": "lp-mnta-usk", + "symbol": "LP MNTA-USK", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "The token that fuels the Boon app", + "denom_units": [ + { + "denom": "factory/kujira1gewwffxhaygxe8tacd3z9h4uyvpd2h7v9qtfmaw8jjhwalxxpd7qlqld4m/boon", + "exponent": 0 + }, + { + "denom": "boon", + "exponent": 6 + } + ], + "base": "factory/kujira1gewwffxhaygxe8tacd3z9h4uyvpd2h7v9qtfmaw8jjhwalxxpd7qlqld4m/boon", + "name": "Boon", + "display": "boon", + "symbol": "BOON", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/boon.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/boon.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/boon.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/boon.svg" + } + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/kujira/chain.json b/kujira/chain.json index 43a1f75acc..8eb57e2b3d 100644 --- a/kujira/chain.json +++ b/kujira/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "kujira", + "chain_type": "cosmos", "chain_id": "kaiyo-1", "pretty_name": "Kujira", "status": "live", @@ -149,9 +150,6 @@ }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "ics_enabled": [ - "ics20-1" - ], "genesis": { "genesis_url": "https://github.com/Team-Kujira/networks/raw/master/mainnet/kaiyo-1.json" }, @@ -171,10 +169,17 @@ "type": "cometbft", "version": "v0.34.27" }, - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v0.8.7" + "next_version_name": "v0.8.7", + "sdk": { + "type": "cosmos", + "version": "0.46.11" + }, + "ibc": { + "type": "go", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v0.8.7", @@ -198,7 +203,11 @@ "type": "cometbft", "version": "v0.37.2" }, - "next_version_name": "v0.9.1" + "next_version_name": "v0.9.1", + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + } }, { "name": "v0.9.1", @@ -213,7 +222,11 @@ "type": "cometbft", "version": "v0.37.2" }, - "next_version_name": "v0.9.3" + "next_version_name": "v0.9.3", + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + } }, { "name": "v0.9.3", @@ -230,7 +243,15 @@ }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "next_version_name": "v1.0.2" + "next_version_name": "v1.0.2", + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + } }, { "name": "v1.0.2", @@ -247,7 +268,15 @@ }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "next_version_name": "v1.1.0" + "next_version_name": "v1.1.0", + "sdk": { + "type": "cosmos", + "version": "v0.47.8" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + } }, { "name": "v1.1.0", @@ -264,9 +293,31 @@ }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.12" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.12" + }, + "ibc": { + "type": "go", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + } }, "description": "A decentralized ecosystem for protocols, builders and web3 users seeking sustainable FinTech.", "peers": { @@ -306,11 +357,6 @@ "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚑️ Nodes & Staking" }, - { - "id": "c28827cb96c14c905b127b92065a3fb4cd77d7f6", - "address": "seeds.whispernode.com:11856", - "provider": "WhisperNode 🀐" - }, { "id": "654ba97f74254965a80c0fac0f277f6f6e5506b6", "address": "seed-node.mms.team:29656", @@ -337,10 +383,6 @@ }, "apis": { "rpc": [ - { - "address": "https://rpc-kujira.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://rpc.kaiyo.kujira.setten.io", "provider": "setten.io" @@ -354,7 +396,7 @@ "provider": "ecostake" }, { - "address": "https://kujira-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/kujira", "provider": "Lavender.Five Nodes 🐝" }, { @@ -415,16 +457,12 @@ } ], "rest": [ - { - "address": "https://lcd-kujira.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://lcd.kaiyo.kujira.setten.io", "provider": "setten.io" }, { - "address": "https://kujira-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/kujira", "provider": "Lavender.Five Nodes 🐝" }, { @@ -498,7 +536,7 @@ "provider": "Notional" }, { - "address": "kujira-grpc.lavenderfive.com:443", + "address": "kujira.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -524,10 +562,6 @@ { "address": "kujira-grpc.publicnode.com:443", "provider": "Allnodes ⚑️ Nodes & Staking" - }, - { - "address": "grpc-kujira.whispernode.com:443", - "provider": "WhisperNode 🀐" } ] }, diff --git a/kujira/images/auto.png b/kujira/images/auto.png new file mode 100644 index 0000000000..0515279133 Binary files /dev/null and b/kujira/images/auto.png differ diff --git a/kujira/images/boon.png b/kujira/images/boon.png new file mode 100644 index 0000000000..59c41bb0c8 Binary files /dev/null and b/kujira/images/boon.png differ diff --git a/kujira/images/boon.svg b/kujira/images/boon.svg new file mode 100644 index 0000000000..ca8c1702a6 --- /dev/null +++ b/kujira/images/boon.svg @@ -0,0 +1,54 @@ + + + + + + diff --git a/kujira/images/mctest.png b/kujira/images/mctest.png new file mode 100644 index 0000000000..6f0176f9f6 Binary files /dev/null and b/kujira/images/mctest.png differ diff --git a/kujira/images/nausd.png b/kujira/images/nausd.png new file mode 100644 index 0000000000..01848860f3 Binary files /dev/null and b/kujira/images/nausd.png differ diff --git a/kujira/images/nausd.svg b/kujira/images/nausd.svg new file mode 100644 index 0000000000..b74cbc4925 --- /dev/null +++ b/kujira/images/nausd.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + diff --git a/kujira/images/qcdydx.svg b/kujira/images/qcdydx.svg new file mode 100644 index 0000000000..c65c23c364 --- /dev/null +++ b/kujira/images/qcdydx.svg @@ -0,0 +1,25 @@ + + + + + + + + diff --git a/kujira/images/rkuji.png b/kujira/images/rkuji.png new file mode 100644 index 0000000000..b2c0b20bf8 Binary files /dev/null and b/kujira/images/rkuji.png differ diff --git a/kujira/images/rkuji.svg b/kujira/images/rkuji.svg new file mode 100644 index 0000000000..5d3914ab95 --- /dev/null +++ b/kujira/images/rkuji.svg @@ -0,0 +1,14 @@ + + + rkuji + + + + + + + + + + + \ No newline at end of file diff --git a/kyve/assetlist.json b/kyve/assetlist.json index 3882e58b8c..b6a9f33a8b 100644 --- a/kyve/assetlist.json +++ b/kyve/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://www.kyve.network/", "twitter": "https://twitter.com/KYVENetwork" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/kyve/chain.json b/kyve/chain.json index 4089ec51b9..d824e036d1 100644 --- a/kyve/chain.json +++ b/kyve/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "kyve", + "chain_type": "cosmos", "chain_id": "kyve-1", "pretty_name": "KYVE", "status": "live", @@ -33,21 +34,21 @@ }, "codebase": { "git_repo": "https://github.com/KYVENetwork/chain", - "recommended_version": "v1.4.0", + "recommended_version": "v1.5.0", "compatible_versions": [ - "v1.4.0" + "v1.5.0" ], - "cosmos_sdk_version": "v0.47.6-kyve-rc0", - "ibc_go_version": "v7.3.0", + "cosmos_sdk_version": "v0.50.7-kyve-rc0", "consensus": { "type": "cometbft", - "version": "v0.37.2" + "version": "v0.38.7", + "tag": "v0.38.7-kyve-rpc-fix-rc0" }, "binaries": { - "linux/amd64": "https://github.com/KYVENetwork/chain/releases/download/v1.4.0/kyved_mainnet_linux_amd64.tar.gz", - "linux/arm64": "https://github.com/KYVENetwork/chain/releases/download/v1.4.0/kyved_mainnet_linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/KYVENetwork/chain/releases/download/v1.4.0/kyved_mainnet_darwin_amd64.tar.gz", - "darwin/arm64": "https://github.com/KYVENetwork/chain/releases/download/v1.4.0/kyved_mainnet_darwin_arm64.tar.gz" + "linux/amd64": "https://github.com/KYVENetwork/chain/releases/download/v1.5.0/kyved_mainnet_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/KYVENetwork/chain/releases/download/v1.5.0/kyved_mainnet_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/KYVENetwork/chain/releases/download/v1.5.0/kyved_mainnet_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/KYVENetwork/chain/releases/download/v1.5.0/kyved_mainnet_darwin_arm64.tar.gz" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/KYVENetwork/networks/main/kyve-1/genesis.json" @@ -107,7 +108,6 @@ "v1.4.0" ], "cosmos_sdk_version": "v0.47.6-kyve-rc0", - "ibc_go_version": "v7.3.0", "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -118,9 +118,58 @@ "darwin/amd64": "https://github.com/KYVENetwork/chain/releases/download/v1.4.0/kyved_mainnet_darwin_amd64.tar.gz", "darwin/arm64": "https://github.com/KYVENetwork/chain/releases/download/v1.4.0/kyved_mainnet_darwin_arm64.tar.gz" }, - "next_version_name": "" + "next_version_name": "v1.5.0", + "sdk": { + "type": "cosmos", + "version": "v0.47.6", + "tag": "v0.47.6-kyve-rc0" + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } + }, + { + "name": "v1.4.0", + "proposal": 37, + "height": 7254527, + "recommended_version": "v1.5.0", + "compatible_versions": [ + "v1.5.0" + ], + "cosmos_sdk_version": "v0.50.7-kyve-rc0", + "consensus": { + "type": "cometbft", + "version": "v0.38.7", + "tag": "v0.38.7-kyve-rpc-fix-rc0" + }, + "binaries": { + "linux/amd64": "https://github.com/KYVENetwork/chain/releases/download/v1.5.0/kyved_mainnet_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/KYVENetwork/chain/releases/download/v1.5.0/kyved_mainnet_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/KYVENetwork/chain/releases/download/v1.5.0/kyved_mainnet_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/KYVENetwork/chain/releases/download/v1.5.0/kyved_mainnet_darwin_arm64.tar.gz" + }, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.50.7", + "tag": "v0.50.7-kyve-rc0" + }, + "ibc": { + "type": "go", + "version": "v8.3.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.50.7", + "tag": "v0.50.7-kyve-rc0" + }, + "ibc": { + "type": "go", + "version": "v8.3.1" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.png", @@ -214,7 +263,7 @@ "provider": "ecostake" }, { - "address": "https://kyve-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/kyve", "provider": "Lavender.Five Nodes 🐝" }, { @@ -264,7 +313,7 @@ "provider": "kyve" }, { - "address": "https://kyve-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/kyve", "provider": "Lavender.Five Nodes 🐝" }, { @@ -318,7 +367,7 @@ "provider": "NodeStake" }, { - "address": "https://kyve-grpc.lavenderfive.com:443", + "address": "kyve.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/lambda/assetlist.json b/lambda/assetlist.json index aa9e226522..dcc98c53d8 100644 --- a/lambda/assetlist.json +++ b/lambda/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#e41c54" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/lambda/chain.json b/lambda/chain.json index 2b0e56a74e..7681ac6cce 100644 --- a/lambda/chain.json +++ b/lambda/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Lambda", + "chain_type": "cosmos", "chain_id": "lambda_92000-1", "bech32_prefix": "lamb", "node_home": "$HOME/.lambdavm", diff --git a/lava/assetlist.json b/lava/assetlist.json index e614b3e676..0d98fe49f7 100644 --- a/lava/assetlist.json +++ b/lava/assetlist.json @@ -3,7 +3,8 @@ "chain_name": "lava", "assets": [ { - "description": "The native token of Lava", + "description": "Lava Network is a modular data network designed to provide fast, reliable, and scalable access to blockchain data for developers and users.", + "extended_description": "Lava Network is an innovative blockchain platform that aims to unlock the full potential of decentralized applications by providing a modular data access network. This platform allows developers to easily connect to multiple blockchains through fast and reliable RPC (Remote Procedure Call) services. By leveraging a peer-to-peer network of node operators, Lava ensures high performance and low latency for data requests across over 30 blockchain ecosystems. The native token, LAVA, is used for securing the network, rewarding node operators, and governance. Lava Network's goal is to create a seamless and efficient data infrastructure that supports the scalability and flexibility needs of the Web3 ecosystem.", "denom_units": [ { "denom": "ulava", @@ -17,6 +18,7 @@ "type_asset": "sdk.coin", "base": "ulava", "name": "Lava", + "coingecko_id": "lava-network", "display": "lava", "symbol": "LAVA", "logo_URIs": { diff --git a/lava/chain.json b/lava/chain.json index c1ef2a9998..cb00012259 100644 --- a/lava/chain.json +++ b/lava/chain.json @@ -1,11 +1,11 @@ { "$schema": "../chain.schema.json", "chain_name": "lava", - "status": "upcoming", + "status": "live", "network_type": "mainnet", "website": "https://lavanet.xyz/", - "update_link": "https://raw.githubusercontent.com/lavanet/lava/main/chain.schema.json", "pretty_name": "Lava", + "chain_type": "cosmos", "chain_id": "lava-mainnet-1", "bech32_prefix": "lava@", "daemon_name": "lavad", @@ -18,10 +18,10 @@ "fee_tokens": [ { "denom": "ulava", - "fixed_min_gas_price": 1e-09, - "low_gas_price": 1e-09, - "average_gas_price": 5e-05, - "high_gas_price": 0.0001 + "fixed_min_gas_price": 2e-05, + "low_gas_price": 2e-05, + "average_gas_price": 0.025, + "high_gas_price": 0.05 } ] }, @@ -37,149 +37,42 @@ }, "codebase": { "git_repo": "https://github.com/lavanet/lava", - "recommended_version": "v2.2.0", + "recommended_version": "v3.1.0", "compatible_versions": [ - "v2.2.0" + "v3.1.0" ], + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/lavanet/lava-config/main/mainnet-1/genesis_json/genesis.json" + }, "binaries": { - "linux/amd64": "https://github.com/lavanet/lava/releases/download/v2.2.0/lavad-v2.2.0-linux-amd64" + "linux/amd64": "https://github.com/lavanet/lava/releases/download/v3.1.0/lavad-v3.1.0-linux-amd64" }, - "go_version": "1.20", - "cosmos_sdk_version": "lavanet/cosmos-sdk v0.47.10-lava-cosmos", + "cosmos_sdk_version": "lavanet/cosmos-sdk v0.47.13-lava-cosmos", "consensus": { "type": "cometbft", "version": "0.37.4" }, "cosmwasm_enabled": false, - "ibc_go_version": "v7.3.1", - "ics_enabled": [ - "ics20-1" - ], - "versions": [ - { - "name": "v0.33.0", - "tag": "v0.33.1", - "recommended_version": "v0.33.1", - "compatible_versions": [ - "v0.33.1" - ], - "binaries": { - "linux/amd64": "https://github.com/lavanet/lava/releases/download/v0.33.1/lavad-v0.33.1-linux-amd64?checksum=sha256:ae2e49e53bd8c979ca27c83d3d10a708fc23247dae020840fe46b9b68cb8e925" - }, - "go_version": "1.20", - "cosmos_sdk_version": "lavanet/cosmos-sdk v0.47.7-0.20231211141641-2a9ea55b724d", - "consensus": { - "type": "cometbft", - "version": "0.37.4" - }, - "cosmwasm_enabled": false, - "ibc_go_version": "v7.2.0", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "" - }, - { - "name": "v0.34.0", - "proposal": 2, - "height": 375000, - "tag": "v0.34.0", - "recommended_version": "v0.34.0", - "compatible_versions": [ - "v0.34.0" - ], - "binaries": { - "linux/amd64": "https://github.com/lavanet/lava/releases/download/v0.34.0/lavad-v0.34.0-linux-amd64" - }, - "go_version": "1.20", - "cosmos_sdk_version": "lavanet/cosmos-sdk v0.47.7-0.20231211141641-2a9ea55b724d", - "consensus": { - "type": "cometbft", - "version": "0.37.4" - }, - "cosmwasm_enabled": false, - "ibc_go_version": "v7.2.0", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v0.35.0" - }, - { - "name": "v0.35.0", - "proposal": 3, - "height": 413000, - "tag": "v0.35.0", - "recommended_version": "v0.35.0", - "compatible_versions": [ - "v0.35.0" - ], - "binaries": { - "linux/amd64": "https://github.com/lavanet/lava/releases/download/v0.35.0/lavad-v0.35.0-linux-amd64" - }, - "go_version": "1.20", - "cosmos_sdk_version": "lavanet/cosmos-sdk v0.47.7-0.20231211141641-2a9ea55b724d", - "consensus": { - "type": "cometbft", - "version": "0.37.4" - }, - "cosmwasm_enabled": false, - "ibc_go_version": "v7.2.0", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v1.0.1" - }, - { - "name": "v1.0.1", - "proposal": 4, - "height": 451000, - "tag": "v1.0.1", - "recommended_version": "v1.0.1", - "compatible_versions": [ - "v1.0.1" - ], - "binaries": { - "linux/amd64": "https://github.com/lavanet/lava/releases/download/v1.0.1/lavad-v1.0.1-linux-amd64" - }, - "go_version": "1.20", - "cosmos_sdk_version": "lavanet/cosmos-sdk v0.47.7-0.20231211141641-2a9ea55b724d", - "consensus": { - "type": "cometbft", - "version": "0.37.4" - }, - "cosmwasm_enabled": false, - "ibc_go_version": "v7.2.0", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v2.2.0" - }, - { - "name": "v2.2.0", - "proposal": 6, - "height": 888500, - "tag": "v2.2.0", - "recommended_version": "v2.2.0", - "compatible_versions": [ - "v2.2.0" - ], - "binaries": { - "linux/amd64": "https://github.com/lavanet/lava/releases/download/v2.2.0/lavad-v2.2.0-linux-amd64" - }, - "go_version": "1.20", - "cosmos_sdk_version": "lavanet/cosmos-sdk v0.47.10-lava-cosmos", - "consensus": { - "type": "cometbft", - "version": "0.37.4" - }, - "cosmwasm_enabled": false, - "ibc_go_version": "v7.3.1", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "" - } - ] + "language": { + "type": "go", + "version": "1.20" + }, + "sdk": { + "type": "cosmos", + "repo": "https://github.com/lavanet/cosmos-sdk", + "version": "v0.47.13", + "tag": "v0.47.13-lava-cosmos" + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "enabled": false + } }, "images": [ { @@ -210,10 +103,15 @@ "address": "seed-lava.ibs.team:16680", "provider": "Inter Blockchain Services" }, + { + "id": "a5e5e2971721803e2297c870adacb234a724fc87", + "address": "seed-lava.r93axnodes.cloud:8256", + "provider": "r93AX Nodes" + }, { "id": "258f523c96efde50d5fe0a9faeea8a3e83be22ca", "address": "seed.lava-mainnet-1.lava.aviaone.com:10291", - "provider": "AVIAONE" + "provider": "AVIAONE 🟒" }, { "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", @@ -224,17 +122,48 @@ "id": "b9dfd3f222e65ae605efc29dc9e3faecdc3b71d0", "address": "lava.seed.stavr.tech:197", "provider": "πŸ”₯STAVRπŸ”₯" + }, + { + "id": "b85358e035343a3b15e77e1102857dcdaf70053b", + "address": "seeds.bluestake.net:29956", + "provider": "BlueStake πŸš€" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "lava-mainnet-seed.autostake.com:27066", + "provider": "AutoStake πŸ›‘οΈ Slash Protected" + }, + { + "id": "6086779c98b6864aea1ae595b96a412aa11ec6c7", + "address": "lava.seed.stakevillage.net:17760", + "provider": "Stake Village" + } + ], + "persistent_peers": [ + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "lava-mainnet-peer.autostake.com:27066", + "provider": "AutoStake πŸ›‘οΈ Slash Protected" + }, + { + "id": "8a83d4bdd4b26ebe9893efd4609d4be6d82c3527", + "address": "lava.peer.stakevillage.net:17756", + "provider": "Stake Village" } ] }, "apis": { "rpc": [ + { + "address": "https://lava.tendermintrpc.lava.build", + "provider": "Lava Over Lava" + }, { "address": "https://lava-rpc.w3coins.io:443", "provider": "w3coins" }, { - "address": "https://lava-rpc.finteh.org:443", + "address": "https://lava-rpc.finteh.org:26657", "provider": "finteh" }, { @@ -247,7 +176,11 @@ }, { "address": "https://rpc.lava-mainnet-1.lava.aviaone.com:443", - "provider": "AVIAONE" + "provider": "AVIAONE 🟒" + }, + { + "address": "https://rpc-lava.r93axnodes.cloud:443", + "provider": "r93AX Nodes" }, { "address": "https://lava-rpc.publicnode.com:443", @@ -260,9 +193,37 @@ { "address": "https://lava.rpc-archive.m.stavr.tech:443", "provider": "πŸ”₯STAVRπŸ”₯" + }, + { + "address": "https://lava-rpc.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "https://lava.rpc.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://lava-mainnet-rpc.autostake.com:443", + "provider": "AutoStake πŸ›‘οΈ Slash Protected" + }, + { + "address": "https://lava-rpc.bluestake.net:443", + "provider": "BlueStake πŸš€" + }, + { + "address": "https://lava.rpc.stakevillage.net:443", + "provider": "Stake Village" } ], "rest": [ + { + "address": "https://lava-api.finteh.org:443", + "provider": "finteh" + }, + { + "address": "https://lava.rest.lava.build", + "provider": "Lava Over Lava" + }, { "address": "https://lava-api.w3coins.io:443", "provider": "w3coins" @@ -273,7 +234,11 @@ }, { "address": "https://api.lava-mainnet-1.lava.aviaone.com", - "provider": "AVIAONE" + "provider": "AVIAONE 🟒" + }, + { + "address": "https://api-lava.r93axnodes.cloud:443", + "provider": "r93AX Nodes" }, { "address": "https://lava-rest.publicnode.com", @@ -286,9 +251,33 @@ { "address": "https://lava.api-archive.m.stavr.tech", "provider": "πŸ”₯STAVRπŸ”₯" + }, + { + "address": "https://lava-api.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "https://lava.api.liveraven.net", + "provider": "LiveRaveN" + }, + { + "address": "https://lava-mainnet-lcd.autostake.com:443", + "provider": "AutoStake πŸ›‘οΈ Slash Protected" + }, + { + "address": "https://lava-api.bluestake.net", + "provider": "BlueStake πŸš€" + }, + { + "address": "https://lava.api.stakevillage.net:443", + "provider": "Stake Village" } ], "grpc": [ + { + "address": "lava.grpc.lava.build:443", + "provider": "Lava Over Lava" + }, { "address": "lava-grpc.publicnode.com:443", "provider": "Allnodes ⚑️ Nodes & Staking" @@ -300,15 +289,69 @@ { "address": "lava.grpc-archive.m.stavr.tech:443", "provider": "πŸ”₯STAVRπŸ”₯" + }, + { + "address": "lava-grpc.stake-town.com:443", + "provider": "StakeTown" + }, + { + "address": "lava.grpc.liveraven.net:443", + "provider": "LiveRaveN" + }, + { + "address": "lava-mainnet-grpc.autostake.com:443", + "provider": "AutoStake πŸ›‘οΈ Slash Protected" + }, + { + "address": "lava.grpc.stakevillage.net:443", + "provider": "Stake Village" + }, + { + "address": "grpc-lava.r93axnodes.cloud:443", + "provider": "r93AX Nodes" + }, + { + "address": "grpc.lava-mainnet-1.lava.aviaone.com:9104/", + "provider": "AVIAONE 🟒" } ] }, "explorers": [ + { + "kind": "finteh", + "url": "https://explorer.finteh.org/lava", + "tx_page": "https://explorer.finteh.org/lava/tx/${txHash}", + "account_page": "https://explorer.finteh.org/lava/account/${accountAddress}" + }, + { + "kind": "guru", + "url": "https://lava.explorers.guru/", + "tx_page": "https://lava.explorers.guru/transaction/${txHash}", + "account_page": "https://lava.explorers.guru/account/${accountAddress}" + }, { "kind": "w3coins", "url": "https://lava-explorer.w3coins.io/Lava", "tx_page": "https://lava-explorer.w3coins.io/Lava/tx/${txHash}", "account_page": "https://lava-explorer.w3coins.io/Lava/account/${accountAddress}" + }, + { + "kind": "Stake Village", + "url": "https://exp.stakevillage.net/lava-mainnet", + "tx_page": "https://exp.stakevillage.net/lava-mainnet/tx/${txHash}", + "account_page": "https://exp.stakevillage.net/lava-mainnet/account/${accountAddress}" + }, + { + "kind": "AVIAONE 🟒", + "url": "https://mainnet.explorer.aviaone.com/lava/", + "tx_page": "https://mainnet.explorer.aviaone.com/lava/tx/${txHash}", + "account_page": "https://mainnet.explorer.aviaone.com/lava/account/${accountAddress}" + }, + { + "kind": "πŸ”₯STAVRπŸ”₯", + "url": "https://explorer.stavr.tech/Lava-Mainnet", + "tx_page": "https://explorer.stavr.tech/Lava-Mainnet/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Lava-Mainnet/account/${accountAddress}" } ], "keywords": [ @@ -321,4 +364,4 @@ "indexing", "incentivized public rpc" ] -} \ No newline at end of file +} diff --git a/lava/versions.json b/lava/versions.json index 9c4628bac5..a6ae1f0211 100644 --- a/lava/versions.json +++ b/lava/versions.json @@ -1,14 +1,244 @@ { - "$schema": "../versions.schema.json", - "chain_name": "lava", - "versions": [ - { - "name": "v0.33.1", - "tag": "v0.33.1", - "height": 0, - "binaries": { - "linux/amd64": "https://github.com/lavanet/lava/releases/download/v0.33.1/lavad-v0.33.1-linux-amd64?checksum=sha256:ae2e49e53bd8c979ca27c83d3d10a708fc23247dae020840fe46b9b68cb8e925" - } - } - ] + "$schema": "../versions.schema.json", + "chain_name": "lava", + "versions": [ + { + "name": "v0.33.0", + "tag": "v0.33.1", + "recommended_version": "v0.33.1", + "compatible_versions": [ + "v0.33.1" + ], + "binaries": { + "linux/amd64": "https://github.com/lavanet/lava/releases/download/v0.33.1/lavad-v0.33.1-linux-amd64?checksum=sha256:ae2e49e53bd8c979ca27c83d3d10a708fc23247dae020840fe46b9b68cb8e925" + }, + "cosmos_sdk_version": "lavanet/cosmos-sdk v0.47.7-0.20231211141641-2a9ea55b724d", + "consensus": { + "type": "cometbft", + "version": "0.37.4" + }, + "cosmwasm_enabled": false, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/lavanet/cosmos-sdk", + "version": "v0.47.7", + "tag": "v0.47.7-0.20231211141641-2a9ea55b724d" + }, + "language": { + "type": "go", + "version": "1.20" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v7.2.0", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "v0.34.0", + "proposal": 2, + "height": 375000, + "tag": "v0.34.0", + "recommended_version": "v0.34.0", + "compatible_versions": [ + "v0.34.0" + ], + "binaries": { + "linux/amd64": "https://github.com/lavanet/lava/releases/download/v0.34.0/lavad-v0.34.0-linux-amd64" + }, + "cosmos_sdk_version": "lavanet/cosmos-sdk v0.47.7-0.20231211141641-2a9ea55b724d", + "consensus": { + "type": "cometbft", + "version": "0.37.4" + }, + "cosmwasm_enabled": false, + "next_version_name": "v0.35.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/lavanet/cosmos-sdk", + "version": "v0.47.7", + "tag": "v0.47.7-0.20231211141641-2a9ea55b724d" + }, + "language": { + "type": "go", + "version": "1.20" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v7.2.0", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "v0.35.0", + "proposal": 3, + "height": 413000, + "tag": "v0.35.0", + "recommended_version": "v0.35.0", + "compatible_versions": [ + "v0.35.0" + ], + "binaries": { + "linux/amd64": "https://github.com/lavanet/lava/releases/download/v0.35.0/lavad-v0.35.0-linux-amd64" + }, + "cosmos_sdk_version": "lavanet/cosmos-sdk v0.47.7-0.20231211141641-2a9ea55b724d", + "consensus": { + "type": "cometbft", + "version": "0.37.4" + }, + "cosmwasm_enabled": false, + "next_version_name": "v1.0.1", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/lavanet/cosmos-sdk", + "version": "v0.47.7", + "tag": "v0.47.7-0.20231211141641-2a9ea55b724d" + }, + "language": { + "type": "go", + "version": "1.20" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v7.2.0", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "v1.0.1", + "proposal": 4, + "height": 451000, + "tag": "v1.0.1", + "recommended_version": "v1.0.1", + "compatible_versions": [ + "v1.0.1" + ], + "binaries": { + "linux/amd64": "https://github.com/lavanet/lava/releases/download/v1.0.1/lavad-v1.0.1-linux-amd64" + }, + "cosmos_sdk_version": "lavanet/cosmos-sdk v0.47.7-0.20231211141641-2a9ea55b724d", + "consensus": { + "type": "cometbft", + "version": "0.37.4" + }, + "cosmwasm_enabled": false, + "next_version_name": "v2.2.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/lavanet/cosmos-sdk", + "version": "v0.47.7", + "tag": "v0.47.7-0.20231211141641-2a9ea55b724d" + }, + "language": { + "type": "go", + "version": "1.20" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v7.2.0", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "v2.2.0", + "proposal": 6, + "height": 888500, + "tag": "v2.2.0", + "recommended_version": "v2.2.0", + "compatible_versions": [ + "v2.2.0" + ], + "binaries": { + "linux/amd64": "https://github.com/lavanet/lava/releases/download/v2.2.0/lavad-v2.2.0-linux-amd64" + }, + "cosmos_sdk_version": "lavanet/cosmos-sdk v0.47.10-lava-cosmos", + "consensus": { + "type": "cometbft", + "version": "0.37.4" + }, + "cosmwasm_enabled": false, + "next_version_name": "v3.1.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/lavanet/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-lava-cosmos" + }, + "language": { + "type": "go", + "version": "1.20" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v7.3.1", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "v3.1.0", + "proposal": 12, + "height": 1308000, + "tag": "v3.1.0", + "recommended_version": "v3.1.0", + "compatible_versions": [ + "v3.1.0" + ], + "binaries": { + "linux/amd64": "https://github.com/lavanet/lava/releases/download/v3.1.0/lavad-v3.1.0-linux-amd64" + }, + "cosmos_sdk_version": "lavanet/cosmos-sdk v0.47.13-lava-cosmos", + "consensus": { + "type": "cometbft", + "version": "v0.37.5" + }, + "cosmwasm_enabled": false, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/lavanet/cosmos-sdk", + "version": "v0.47.13", + "tag": "v0.47.13-lava-cosmos" + }, + "language": { + "type": "go", + "version": "1.20" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1" + ] + } + } + ] } \ No newline at end of file diff --git a/likecoin/assetlist.json b/likecoin/assetlist.json index b014461df9..83ea52f131 100644 --- a/likecoin/assetlist.json +++ b/likecoin/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#2d656c" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/likecoin/chain.json b/likecoin/chain.json index 77f0868e3d..ec4e2b63b7 100644 --- a/likecoin/chain.json +++ b/likecoin/chain.json @@ -5,6 +5,7 @@ "website": "https://like.co/", "network_type": "mainnet", "pretty_name": "LikeCoin", + "chain_type": "cosmos", "chain_id": "likecoin-mainnet-2", "bech32_prefix": "like", "daemon_name": "liked", @@ -53,13 +54,9 @@ "version": "0.34" }, "cosmwasm_enabled": false, - "ibc_go_version": "6.3.0", - "ics_enabled": [ - "ics20-1" - ], "genesis": { "name": "fotan-1.0", - "genesis_url": "https://raw.githubusercontent.com/likecoin/mainnet/982c14399089950a59d3ebbedcbbc7ead6040457/genesis.json" + "genesis_url": "https://raw.githubusercontent.com/likecoin/mainnet/master/genesis.json" }, "versions": [ { @@ -83,7 +80,11 @@ "darwin/arm64": "https://github.com/likecoin/likecoin-chain/releases/download/v1.2.0/likecoin-chain_1.2.0_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v1.2.0/likecoin-chain_1.2.0_Windows_x86_64.zip" }, - "next_version_name": "v2.0.0" + "next_version_name": "v2.0.0", + "sdk": { + "type": "cosmos", + "version": "0.42" + } }, { "name": "v2.0.0", @@ -96,7 +97,6 @@ "v2.0.2" ], "cosmos_sdk_version": "0.44", - "ibc_go_version": "2.1.0", "consensus": { "type": "tendermint", "version": "0.34" @@ -108,7 +108,15 @@ "darwin/arm64": "https://github.com/likecoin/likecoin-chain/releases/download/v2.0.2/likecoin-chain_2.0.2_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v2.0.2/likecoin-chain_2.0.2_Windows_x86_64.zip" }, - "next_version_name": "v3.0.0" + "next_version_name": "v3.0.0", + "sdk": { + "type": "cosmos", + "version": "0.44" + }, + "ibc": { + "type": "go", + "version": "2.1.0" + } }, { "name": "v3.0.0", @@ -119,7 +127,6 @@ "v3.1.0" ], "cosmos_sdk_version": "0.45", - "ibc_go_version": "2.3.0", "consensus": { "type": "tendermint", "version": "0.34" @@ -131,7 +138,15 @@ "darwin/arm64": "https://github.com/likecoin/likecoin-chain/releases/download/v3.1.0/likecoin-chain_3.1.0_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v3.1.0/likecoin-chain_3.1.0_Windows_x86_64.zip" }, - "next_version_name": "v4.0.0" + "next_version_name": "v4.0.0", + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "ibc": { + "type": "go", + "version": "2.3.0" + } }, { "name": "v4.0.0", @@ -144,7 +159,6 @@ "v4.0.2" ], "cosmos_sdk_version": "0.46", - "ibc_go_version": "5.3.1", "consensus": { "type": "tendermint", "version": "0.34" @@ -156,7 +170,15 @@ "darwin/arm64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.0.1/likecoin-chain_4.0.1_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.0.1/likecoin-chain_4.0.1_Windows_x86_64.zip" }, - "next_version_name": "v4.1.1" + "next_version_name": "v4.1.1", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "5.3.1" + } }, { "name": "v4.1.1", @@ -167,7 +189,6 @@ "v4.1.1" ], "cosmos_sdk_version": "0.46", - "ibc_go_version": "6.2.1", "consensus": { "type": "tendermint", "version": "0.34" @@ -179,7 +200,15 @@ "darwin/arm64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Windows_x86_64.zip" }, - "next_version_name": "v4.2.0" + "next_version_name": "v4.2.0", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "6.2.1" + } }, { "name": "v4.2.0", @@ -190,7 +219,6 @@ "v4.2.0" ], "cosmos_sdk_version": "0.46", - "ibc_go_version": "6.3.0", "consensus": { "type": "tendermint", "version": "0.34" @@ -202,9 +230,31 @@ "darwin/arm64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.2.0/likecoin-chain_4.2.0_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v4.2.0/likecoin-chain_4.2.0_Windows_x86_64.zip" }, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "6.3.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "6.3.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "enabled": false + } }, "peers": { "seeds": [ @@ -313,12 +363,6 @@ ] }, "explorers": [ - { - "kind": "mintscan", - "url": "https://www.mintscan.io/likecoin", - "tx_page": "https://www.mintscan.io/likecoin/transactions/${txHash}", - "account_page": "https://www.mintscan.io/likecoin/accounts/${accountAddress}" - }, { "kind": "ezstaking", "url": "https://ezstaking.app/likecoin", @@ -351,6 +395,7 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.svg" }, "keywords": [ + "ebook", "depub", "publishing", "like", diff --git a/logos/assetlist.json b/logos/assetlist.json index 69896f3728..6b79d0a27b 100644 --- a/logos/assetlist.json +++ b/logos/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#848484" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/logos/chain.json b/logos/chain.json index 02175c63d4..f627286881 100644 --- a/logos/chain.json +++ b/logos/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Logos", + "chain_type": "cosmos", "chain_id": "logos_7002-1", "bech32_prefix": "logos", "daemon_name": "logosd", diff --git a/loop/chain.json b/loop/chain.json index c1672d9425..e0093be03f 100644 --- a/loop/chain.json +++ b/loop/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.loop.fans/", "pretty_name": "Loop", + "chain_type": "cosmos", "chain_id": "loop-1", "bech32_prefix": "loop", "daemon_name": "loopd", @@ -42,13 +43,22 @@ "v1.0.0" ], "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", - "ics_enabled": [ - "ics20-1" - ], - "go_version": "1.21", "binaries": { "linux/amd64": "https://github.com/LoopFans/loop-chain/releases/download/v1.0.0/loopchain_1.0.0_linux_amd64.tar.gz" + }, + "language": { + "type": "go", + "version": "1.21" + }, + "ibc": { + "type": "go", + "version": "v7.3.1", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "enabled": true } }, "images": [ diff --git a/lorenzo/assetlist.json b/lorenzo/assetlist.json new file mode 100644 index 0000000000..0383ac2db2 --- /dev/null +++ b/lorenzo/assetlist.json @@ -0,0 +1,87 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "lorenzo", + "assets": [ + { + "description": "Native staking token of Lorenzo: LRZ (alrz)", + "denom_units": [ + { + "denom": "alrz", + "exponent": 0 + }, + { + "denom": "LRZ", + "exponent": 18 + } + ], + "base": "alrz", + "name": "LRZ", + "display": "LRZ", + "symbol": "LRZ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.svg", + "theme": { + "primary_color_hex": "#133348" + } + } + ], + "socials": { + "website": "https://www.lorenzo-protocol.xyz/", + "twitter": "https://x.com/LorenzoProtocol" + }, + "type_asset": "sdk.coin" + }, + { + "description": "stBTC is the liquid principal token of the Lorenzo protocol, designed to represent staked Bitcoin within the Babylon ecosystem.\n\n", + "extended_description": "stBTC serves as a crucial component of the Lorenzo protocol, enabling Bitcoin holders to unlock the liquidity of their assets while participating in the security of Proof-of-Stake (PoS) networks. By staking BTC through Lorenzo, users receive stBTC, which is redeemable 1-to-1 for the original Bitcoin. This mechanism allows users to earn yield without sacrificing liquidity, as stBTC can be freely utilized within the Lorenzo DeFi ecosystem.\n\nThe innovative dual-token system of stBTC and Yield Accruing Tokens (YATs) empowers users to not only stake their BTC but also engage in various decentralized finance activities such as trading, lending, and collateralization. This enhances the utility and flexibility of Bitcoin, providing additional financial opportunities while contributing to the security of PoS networks.\n\nstBTC's role in the Lorenzo protocol illustrates its importance in creating a highly interconnected and efficient financial ecosystem, making it a valuable asset in the broader landscape of decentralized finance.", + "denom_units": [ + { + "denom": "stBTC", + "exponent": 0 + }, + { + "denom": "display_stBTC", + "exponent": 18 + } + ], + "base": "stBTC", + "name": "Lorenzo stBTC", + "display": "display_stBTC", + "symbol": "stBTC", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "bitcoin", + "base_denom": "sat" + }, + "provider": "Lorenzo" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.svg", + "theme": { + "primary_color_hex": "#133348" + } + } + ], + "socials": { + "website": "https://www.lorenzo-protocol.xyz/", + "twitter": "https://x.com/LorenzoProtocol" + }, + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/lorenzo/chain.json b/lorenzo/chain.json new file mode 100644 index 0000000000..1704e64608 --- /dev/null +++ b/lorenzo/chain.json @@ -0,0 +1,87 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "lorenzo", + "status": "live", + "network_type": "mainnet", + "website": "https://www.lorenzo-protocol.xyz/", + "pretty_name": "Lorenzo Protocol", + "chain_type": "cosmos", + "chain_id": "lorenzo_8329-1", + "bech32_prefix": "lrz", + "daemon_name": "lorenzod", + "node_home": "$HOME/.lorenzo", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "stBTC", + "fixed_min_gas_price": 2000000, + "low_gas_price": 2000000, + "average_gas_price": 2000000, + "high_gas_price": 8000000 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "alrz" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.svg" + }, + "description": "Lorenzo aims to be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.", + "codebase": { + "git_repo": "https://github.com/Lorenzo-Protocol/lorenzo", + "recommended_version": "v3.0.0", + "compatible_versions": [ + "v3.0.0" + ], + "genesis": { + "genesis_url": "https://github.com/Lorenzo-Protocol/lorenzo-genesis/blob/main/mainnet/lorenzo/genesis.json" + } + }, + "peers": { + "seeds": [], + "persistent_peers": [] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc-cosmos.lorenzo-protocol.xyz/", + "provider": "Lorenzo Protocol" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://rpc-testnet.lorenzo-protocol.xyz/", + "provider": "Lorenzo Protocol" + } + ] + }, + "explorers": [ + { + "kind": "blockscout", + "url": "https://scan.lorenzo-protocol.xyz/", + "tx_page": "https://scan.lorenzo-protocol.xyz/tx/${txHash}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.svg", + "theme": { + "primary_color_hex": "#133348" + } + } + ] +} \ No newline at end of file diff --git a/lorenzo/images/lorenzo.png b/lorenzo/images/lorenzo.png new file mode 100644 index 0000000000..d21c20b3d3 Binary files /dev/null and b/lorenzo/images/lorenzo.png differ diff --git a/lorenzo/images/lorenzo.svg b/lorenzo/images/lorenzo.svg new file mode 100644 index 0000000000..925cd60e5d --- /dev/null +++ b/lorenzo/images/lorenzo.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/lorenzo/images/stBTC.png b/lorenzo/images/stBTC.png new file mode 100644 index 0000000000..bc0526ff19 Binary files /dev/null and b/lorenzo/images/stBTC.png differ diff --git a/lorenzo/images/stBTC.svg b/lorenzo/images/stBTC.svg new file mode 100644 index 0000000000..fe4391f7d7 --- /dev/null +++ b/lorenzo/images/stBTC.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/loyal/assetlist.json b/loyal/assetlist.json index a219beb76a..87b10ff0c1 100644 --- a/loyal/assetlist.json +++ b/loyal/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#5445fb" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/loyal/chain.json b/loyal/chain.json index acd54eddb4..2b87ffcfbf 100644 --- a/loyal/chain.json +++ b/loyal/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.joinloyal.com/", "pretty_name": "Loyal", + "chain_type": "cosmos", "chain_id": "loyal-main-02", "bech32_prefix": "loyal", "daemon_name": "loyald", diff --git a/lumenx/assetlist.json b/lumenx/assetlist.json index a90d52cef6..7b24f56bf0 100644 --- a/lumenx/assetlist.json +++ b/lumenx/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#cb8b40" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/lumenx/chain.json b/lumenx/chain.json index 75dd5047a3..9922a2f463 100644 --- a/lumenx/chain.json +++ b/lumenx/chain.json @@ -4,6 +4,7 @@ "status": "killed", "network_type": "mainnet", "pretty_name": "LumenX", + "chain_type": "cosmos", "chain_id": "LumenX", "bech32_prefix": "lumen", "daemon_name": "lumenxd", diff --git a/lumnetwork/assetlist.json b/lumnetwork/assetlist.json index e8f8bc2602..565dfaa967 100644 --- a/lumnetwork/assetlist.json +++ b/lumnetwork/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#080808" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/lumnetwork/chain.json b/lumnetwork/chain.json index ecf87197bf..7be7073715 100644 --- a/lumnetwork/chain.json +++ b/lumnetwork/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://lum.network/", "pretty_name": "Lum Network", + "chain_type": "cosmos", "chain_id": "lum-network-1", "bech32_prefix": "lum", "daemon_name": "lumd", @@ -38,7 +39,6 @@ "v1.6.7" ], "cosmos_sdk_version": "v0.47.11", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.5" @@ -153,7 +153,6 @@ "v1.6.3" ], "cosmos_sdk_version": "v0.47.5", - "ibc_go_version": "v7.2.0", "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -166,7 +165,15 @@ "windows/amd64": "https://github.com/lum-network/chain/releases/download/v1.6.3/lumd_windows-latest_amd64.zip", "windows/arm64": "https://github.com/lum-network/chain/releases/download/v1.6.3/lumd_windows-latest_arm64.zip" }, - "next_version_name": "v1.6.4" + "next_version_name": "v1.6.4", + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "ibc": { + "type": "go", + "version": "v7.2.0" + } }, { "name": "v1.6.4", @@ -177,7 +184,6 @@ "v1.6.4" ], "cosmos_sdk_version": "v0.47.5", - "ibc_go_version": "v7.2.0", "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -190,7 +196,15 @@ "windows/amd64": "https://github.com/lum-network/chain/releases/download/v1.6.4/lumd_windows-latest_amd64.zip", "windows/arm64": "https://github.com/lum-network/chain/releases/download/v1.6.4/lumd_windows-latest_arm64.zip" }, - "next_version_name": "v1.6.5" + "next_version_name": "v1.6.5", + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "ibc": { + "type": "go", + "version": "v7.2.0" + } }, { "name": "v1.6.5", @@ -201,7 +215,6 @@ "v1.6.5" ], "cosmos_sdk_version": "v0.47.5", - "ibc_go_version": "v7.2.0", "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -214,7 +227,15 @@ "windows/amd64": "https://github.com/lum-network/chain/releases/download/v1.6.5/lumd_windows-latest_amd64.zip", "windows/arm64": "https://github.com/lum-network/chain/releases/download/v1.6.5/lumd_windows-latest_arm64.zip" }, - "next_version_name": "v1.6.6" + "next_version_name": "v1.6.6", + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "ibc": { + "type": "go", + "version": "v7.2.0" + } }, { "name": "v1.6.6", @@ -225,7 +246,6 @@ "v1.6.6" ], "cosmos_sdk_version": "v0.47.11", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.5" @@ -238,7 +258,15 @@ "windows/amd64": "https://github.com/lum-network/chain/releases/download/v1.6.6/lumd_windows-latest_amd64.zip", "windows/arm64": "https://github.com/lum-network/chain/releases/download/v1.6.6/lumd_windows-latest_arm64.zip" }, - "next_version_name": "v1.6.7" + "next_version_name": "v1.6.7", + "sdk": { + "type": "cosmos", + "version": "v0.47.11" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } }, { "name": "v1.6.7", @@ -249,7 +277,6 @@ "v1.6.7" ], "cosmos_sdk_version": "v0.47.11", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.5" @@ -262,9 +289,25 @@ "windows/amd64": "https://github.com/lum-network/chain/releases/download/v1.6.7/lumd_windows-latest_amd64.zip", "windows/arm64": "https://github.com/lum-network/chain/releases/download/v1.6.7/lumd_windows-latest_arm64.zip" }, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.11" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.11" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png", @@ -301,11 +344,6 @@ "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚑️ Nodes & Staking" - }, - { - "id": "0df233b1eb62504f96a856ce358014b2fb8ce91b", - "address": "lum-seed.panthea.eu:43656", - "provider": "Panthea EU" } ], "persistent_peers": [ @@ -328,11 +366,6 @@ "id": "433c60a5bc0a693484b7af26208922b84773117e", "address": "34.209.132.0:26656", "provider": "cosmostation" - }, - { - "id": "43216584c1e6b1056566a4825b15cdfbfc79d9e8", - "address": "lum-peer.panthea.eu:33656", - "provider": "Panthea EU" } ] }, @@ -347,7 +380,7 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "https://lumnetwork-rpc.lavenderfive.com/", + "address": "https://rpc.lavenderfive.com:443/lumnetwork", "provider": "Lavender.Five Nodes 🐝" }, { @@ -358,10 +391,6 @@ "address": "https://lum-rpc.stakerhouse.com", "provider": "StakerHouse" }, - { - "address": "https://lum-rpc.panthea.eu", - "provider": "Panthea EU" - }, { "address": "https://lumnetwork_mainnet_rpc.chain.whenmoonwhenlambo.money", "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" @@ -373,7 +402,7 @@ "provider": "Lum Foundation" }, { - "address": "https://lumnetwork-api.lavenderfive.com/", + "address": "https://rest.lavenderfive.com:443/lumnetwork", "provider": "Lavender.Five Nodes 🐝" }, { @@ -388,10 +417,6 @@ "address": "https://lum-rest.stakerhouse.com", "provider": "StakerHouse" }, - { - "address": "https://lum-api.panthea.eu", - "provider": "Panthea EU" - }, { "address": "https://lumnetwork_mainnet_api.chain.whenmoonwhenlambo.money", "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" @@ -399,7 +424,7 @@ ], "grpc": [ { - "address": "lumnetwork-grpc.lavenderfive.com:443", + "address": "lumnetwork.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -413,10 +438,6 @@ { "address": "lum-grpc.stakerhouse.com:443", "provider": "StakerHouse" - }, - { - "address": "lum-grpc.panthea.eu:16770", - "provider": "Panthea EU" } ] }, diff --git a/mande/chain.json b/mande/chain.json index e15e7dd3ce..346d9b997d 100644 --- a/mande/chain.json +++ b/mande/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://mande.network", "pretty_name": "Mande Network", + "chain_type": "cosmos", "chain_id": "mande_18071918-1", "bech32_prefix": "mande", "slip44": 60, diff --git a/mars/assetlist.json b/mars/assetlist.json index 51a12d794d..28626dd1f7 100644 --- a/mars/assetlist.json +++ b/mars/assetlist.json @@ -3,7 +3,7 @@ "chain_name": "mars", "assets": [ { - "description": "Mars protocol token", + "description": "Mars Protocol token (pre-migration)", "denom_units": [ { "denom": "umars", @@ -17,25 +17,35 @@ "base": "umars", "name": "Mars", "display": "mars", - "symbol": "MARS", + "symbol": "MARS.old", + "traces": [ + { + "type": "legacy-mintage", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS" + }, + "provider": "Mars Hub" + } + ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg" + "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" }, - "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg", + "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": "#d43c3f" + "primary_color_hex": "#000000" } } ], "socials": { "website": "https://www.marsprotocol.io/", "twitter": "https://twitter.com/mars_protocol" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/mars/chain.json b/mars/chain.json index 891ac33781..e3ecf3d946 100644 --- a/mars/chain.json +++ b/mars/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.marsprotocol.io/", "pretty_name": "Mars Hub", + "chain_type": "cosmos", "chain_id": "mars-1", "bech32_prefix": "mars", "daemon_name": "marsd", @@ -48,10 +49,6 @@ }, "cosmwasm_version": "0.30.0", "cosmwasm_enabled": true, - "ibc_go_version": "6.1.0", - "ics_enabled": [ - "ics20-1" - ], "genesis": { "genesis_url": "https://github.com/mars-protocol/networks/raw/main/mars-1/genesis.json" }, @@ -72,12 +69,38 @@ }, "cosmwasm_version": "0.30.0", "cosmwasm_enabled": true, - "ibc_go_version": "6.1.0", - "ics_enabled": [ - "ics20-1" - ] + "sdk": { + "type": "cosmos", + "version": "0.46.7" + }, + "cosmwasm": { + "version": "0.30.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "6.1.0", + "ics_enabled": [ + "ics20-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.46.7" + }, + "ibc": { + "type": "go", + "version": "6.1.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "version": "0.30.0", + "enabled": true + } }, "description": "Lend, borrow and earn with an autonomous credit protocol in the Cosmos universe. Open to all, closed to none.", "peers": { @@ -123,7 +146,7 @@ "provider": "Delphi Labs" }, { - "address": "https://mars-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/mars", "provider": "Lavender.Five Nodes 🐝" }, { @@ -161,7 +184,7 @@ "provider": "Delphi Labs" }, { - "address": "https://mars-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/mars", "provider": "Lavender.Five Nodes 🐝" }, { @@ -199,7 +222,7 @@ "provider": "Delphi Labs" }, { - "address": "mars-grpc.lavenderfive.com:443", + "address": "mars.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -235,9 +258,9 @@ "explorers": [ { "kind": "ezstaking", - "url": "https://ezstaking.app/mars", - "tx_page": "https://ezstaking.app/mars/txs/${txHash}", - "account_page": "https://ezstaking.app/mars/account/${accountAddress}" + "url": "https://ezstaking.app/mars-protocol", + "tx_page": "https://ezstaking.app/mars-protocol/txs/${txHash}", + "account_page": "https://ezstaking.app/mars-protocol/account/${accountAddress}" }, { "kind": "BigDipper", diff --git a/mars/images/mars-token-ibc.png b/mars/images/mars-token-ibc.png new file mode 100644 index 0000000000..cc819ded36 Binary files /dev/null and b/mars/images/mars-token-ibc.png differ diff --git a/mars/images/mars-token-ibc.svg b/mars/images/mars-token-ibc.svg new file mode 100644 index 0000000000..6253242c9e --- /dev/null +++ b/mars/images/mars-token-ibc.svg @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mars/images/mars-token.svg b/mars/images/mars-token.svg deleted file mode 100644 index 61cec0dc9a..0000000000 --- a/mars/images/mars-token.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/mayachain/assetlist.json b/mayachain/assetlist.json index 7a25e062a9..8ce86d194d 100644 --- a/mayachain/assetlist.json +++ b/mayachain/assetlist.json @@ -29,7 +29,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mayachain/images/cacao.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "The native revenue sharing token of Maya Protocol", @@ -54,7 +55,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mayachain/images/maya.svg" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/mayachain/chain.json b/mayachain/chain.json index 6950f57f74..37a689ee9f 100644 --- a/mayachain/chain.json +++ b/mayachain/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://mayaprotocol.com/", "pretty_name": "Maya Protocol", + "chain_type": "cosmos", "chain_id": "mayachain-mainnet-v1", "bech32_prefix": "maya", "daemon_name": "mayanode", diff --git a/medasdigital/assetlist.json b/medasdigital/assetlist.json index 1b64ebc3b6..27919d1034 100644 --- a/medasdigital/assetlist.json +++ b/medasdigital/assetlist.json @@ -33,7 +33,8 @@ "primary_color_hex": "#147ccc" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/medasdigital/chain.json b/medasdigital/chain.json index 2eb774c909..245dabbfec 100644 --- a/medasdigital/chain.json +++ b/medasdigital/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://medas-digital.io/", "pretty_name": "Medas Digital Network", + "chain_type": "cosmos", "chain_id": "medasdigital-1", "bech32_prefix": "medas", "daemon_name": "medasdigitald", diff --git a/meme/assetlist.json b/meme/assetlist.json index 5e078bd864..8a36322663 100644 --- a/meme/assetlist.json +++ b/meme/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#b7dcd8" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The native EVM, governance and staking token of the Planq Network", @@ -76,9 +77,12 @@ "image_sync": { "chain_name": "planq", "base_denom": "aplanq" + }, + "theme": { + "primary_color_hex": "#d4f3fb" } } ] } ] -} +} \ No newline at end of file diff --git a/meme/chain.json b/meme/chain.json index 41c99b5e90..d5224163a7 100644 --- a/meme/chain.json +++ b/meme/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "MEME", + "chain_type": "cosmos", "chain_id": "meme-1", "bech32_prefix": "meme", "daemon_name": "memed", diff --git a/microtick/assetlist.json b/microtick/assetlist.json index c6b8557c76..af13e8e5b3 100644 --- a/microtick/assetlist.json +++ b/microtick/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#6bab14" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/microtick/chain.json b/microtick/chain.json index c295c9ba0d..6868216883 100644 --- a/microtick/chain.json +++ b/microtick/chain.json @@ -4,6 +4,7 @@ "status": "killed", "network_type": "mainnet", "pretty_name": "Microtick", + "chain_type": "cosmos", "chain_id": "microtick-1", "bech32_prefix": "micro", "daemon_name": "mtm", diff --git a/migaloo/assetlist.json b/migaloo/assetlist.json index b8dae360c6..506b5d6357 100644 --- a/migaloo/assetlist.json +++ b/migaloo/assetlist.json @@ -32,7 +32,8 @@ "primary_color_hex": "#1c1c1c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "ampWHALE", @@ -57,7 +58,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "BackBone Labs Liquid Staked WHALE", @@ -78,6 +80,16 @@ "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png" }, + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "migaloo", + "base_denom": "uwhale" + }, + "provider": "BackBoneLabs" + } + ], "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", @@ -86,7 +98,8 @@ } } ], - "coingecko_id": "backbone-labs-staked-whale" + "coingecko_id": "backbone-labs-staked-whale", + "type_asset": "sdk.coin" }, { "description": "FABLE", @@ -111,7 +124,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "boneLUNA are autocompounding LUNA tokens", @@ -152,6 +166,10 @@ }, "images": [ { + "image_sync": { + "chain_name": "terra2", + "base_denom": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml" + }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bLUNA.png", "theme": { "primary_color_hex": "#070707" @@ -187,7 +205,8 @@ "primary_color_hex": "#2b2434" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "ASH", @@ -212,7 +231,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Tether USDt on Migaloo", @@ -318,7 +338,8 @@ "primary_color_hex": "#d9966e" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "OPHIR is a Cosmos Treasury DAO established on Migaloo.", @@ -346,7 +367,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "SHARK is the apex price prediction market within Cosmos.", @@ -374,7 +396,8 @@ "primary_color_hex": "#062d54" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "lsdSHARK is the liquid staking derivative of SHARK.", @@ -412,7 +435,8 @@ "primary_color_hex": "#0d739c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The native staking token of Terra.", @@ -426,6 +450,7 @@ "exponent": 6 } ], + "type_asset": "ics20", "base": "ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8", "name": "Luna", "display": "luna", @@ -501,7 +526,7 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/rakoff.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png" }, "images": [ { @@ -509,10 +534,7 @@ "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" - } + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png" } ] }, @@ -542,7 +564,8 @@ "primary_color_hex": "#1d0918" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Restake DAO Token", @@ -572,7 +595,8 @@ "primary_color_hex": "#3ccc64" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Frogztrik NFT Token", @@ -649,7 +673,8 @@ "primary_color_hex": "#f5bf09" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -789,7 +814,57 @@ "contract": "migaloo1r9x8fz4alekzr78k42rpmr9unpa7egsldpqeynmwl2nfvzexue9sn8l5rg" } } - ] + ], + "type_asset": "sdk.coin" + }, + { + "denom_units": [ + { + "denom": "ibc/33E97105B5C1F48CB7D6400F4673F9B3699AC59EDB621CCCD57D5D480E0C83B6", + "exponent": 0, + "aliases": [ + "factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/SYN" + ] + }, + { + "denom": "SYN", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/33E97105B5C1F48CB7D6400F4673F9B3699AC59EDB621CCCD57D5D480E0C83B6", + "name": "SYN", + "display": "SYN", + "symbol": "SYN", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "injective", + "base_denom": "factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/SYN", + "channel_id": "channel-102" + }, + "chain": { + "channel_id": "channel-3", + "path": "transfer/channel-3/factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/SYN" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "injective", + "base_denom": "factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/SYN" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/syn.png", + "theme": { + "primary_color_hex": "#04a2fc" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/syn.png" + } } ] } \ No newline at end of file diff --git a/migaloo/chain.json b/migaloo/chain.json index 80c9cc0635..36a8eca4b7 100644 --- a/migaloo/chain.json +++ b/migaloo/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.whitewhale.money/", "pretty_name": "Migaloo", + "chain_type": "cosmos", "chain_id": "migaloo-1", "bech32_prefix": "migaloo", "daemon_name": "migalood", @@ -42,7 +43,6 @@ "v4.1.3" ], "cosmos_sdk_version": "v0.47.7", - "ibc_go_version": "v7.3.0", "consensus": { "type": "cometbft", "version": "v0.37.4" @@ -62,14 +62,26 @@ "v2.0.5" ], "cosmos_sdk_version": "0.46.11", - "ibc_go_version": "6.1.0", "consensus": { "type": "cometbft", "version": "0.34.27" }, "cosmwasm_version": "v0.30.1-0.20230320091624-f5072b9b04a6", "cosmwasm_enabled": true, - "next_version_name": "v2.2.5" + "next_version_name": "v2.2.5", + "sdk": { + "type": "cosmos", + "version": "0.46.11" + }, + "cosmwasm": { + "version": "v0.30.1", + "enabled": true, + "tag": "v0.30.1-0.20230320091624-f5072b9b04a6" + }, + "ibc": { + "type": "go", + "version": "6.1.0" + } }, { "name": "v2.2.5", @@ -80,14 +92,26 @@ "v2.2.7-hotfix" ], "cosmos_sdk_version": "v0.46.13", - "ibc_go_version": "6.2.0", "consensus": { "type": "cometbft", "version": "0.34.29" }, "cosmwasm_version": "v0.30.1-0.20230320091624-f5072b9b04a6", "cosmwasm_enabled": true, - "next_version_name": "v3.0.0" + "next_version_name": "v3.0.0", + "sdk": { + "type": "cosmos", + "version": "v0.46.13" + }, + "cosmwasm": { + "version": "v0.30.1", + "enabled": true, + "tag": "v0.30.1-0.20230320091624-f5072b9b04a6" + }, + "ibc": { + "type": "go", + "version": "6.2.0" + } }, { "name": "v3.0.0", @@ -98,14 +122,26 @@ "v3.0.1-hotfix" ], "cosmos_sdk_version": "0.46.15", - "ibc_go_version": "6.2.0", "consensus": { "type": "cometbft", "version": "0.34.29" }, "cosmwasm_version": "v0.30.1-0.20230320091624-f5072b9b04a6", "cosmwasm_enabled": true, - "next_version_name": "v3.0.2" + "next_version_name": "v3.0.2", + "sdk": { + "type": "cosmos", + "version": "0.46.15" + }, + "cosmwasm": { + "version": "v0.30.1", + "enabled": true, + "tag": "v0.30.1-0.20230320091624-f5072b9b04a6" + }, + "ibc": { + "type": "go", + "version": "6.2.0" + } }, { "name": "v3.0.2", @@ -116,14 +152,26 @@ "v3.0.4" ], "cosmos_sdk_version": "0.46.15", - "ibc_go_version": "6.2.0", "consensus": { "type": "cometbft", "version": "0.34.29" }, "cosmwasm_version": "v0.30.1-0.20230320091624-f5072b9b04a6", "cosmwasm_enabled": true, - "next_version_name": "v4.1.0" + "next_version_name": "v4.1.0", + "sdk": { + "type": "cosmos", + "version": "0.46.15" + }, + "cosmwasm": { + "version": "v0.30.1", + "enabled": true, + "tag": "v0.30.1-0.20230320091624-f5072b9b04a6" + }, + "ibc": { + "type": "go", + "version": "6.2.0" + } }, { "name": "v4.1.2", @@ -134,24 +182,42 @@ "v4.1.3" ], "cosmos_sdk_version": "v0.47.7", - "ibc_go_version": "v7.3.0", "consensus": { "type": "cometbft", "version": "v0.37.4" }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + } }, "peers": { "seeds": [ - { - "id": "20e1000e88125698264454a884812746c2eb4807", - "address": "seeds.lavenderfive.com:12856", - "provider": "Lavender.Five Nodes 🐝" - }, { "id": "c936ae78abca1169362e068e3e94c87a0ace96c7", "address": "seeds.cros-nest.com:27656", @@ -187,10 +253,6 @@ "address": "https://migaloo-rpc.polkachu.com:443", "provider": "Polkachu" }, - { - "address": "https://migaloo-rpc.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, { "address": "https://rpc-migaloo.cosmos-spaces.cloud", "provider": "Cosmos Spaces" @@ -203,13 +265,13 @@ "address": "https://rpc.whitewhale.nodestake.top", "provider": "NodeStake" }, - { - "address": "https://migaloo-rpc.cosmosrescue.com", - "provider": "cosmosrescue" - }, { "address": "https://migaloo-rpc.highstakes.ch", "provider": "High Stakes πŸ‡¨πŸ‡­" + }, + { + "address": "https://migaloo-rpc.publicnode.com:443", + "provider": "Allnodes ⚑️ Nodes & Staking" } ], "rest": [ @@ -217,10 +279,6 @@ "address": "https://migaloo-api.polkachu.com:443", "provider": "Polkachu" }, - { - "address": "https://migaloo-api.lavenderfive.com", - "provider": "Lavender.Five Nodes 🐝" - }, { "address": "https://api-migaloo.cosmos-spaces.cloud", "provider": "Cosmos Spaces" @@ -233,13 +291,13 @@ "address": "https://api.whitewhale.nodestake.top", "provider": "NodeStake" }, - { - "address": "https://migaloo-api.cosmosrescue.com", - "provider": "cosmosrescue" - }, { "address": "https://migaloo-api.highstakes.ch", "provider": "High Stakes πŸ‡¨πŸ‡­" + }, + { + "address": "https://migaloo-rest.publicnode.com", + "provider": "Allnodes ⚑️ Nodes & Staking" } ], "grpc": [ @@ -247,10 +305,6 @@ "address": "migaloo-grpc.polkachu.com:20790", "provider": "Polkachu" }, - { - "address": "migaloo-grpc.lavenderfive.com:443", - "provider": "Lavender.Five Nodes 🐝" - }, { "address": "whitewhale-mainnet-grpc.autostake.com:443", "provider": "AutoStake πŸ›‘οΈ Slash Protected" @@ -264,8 +318,14 @@ "provider": "NodeStake" }, { - "address": "migaloo-grpc.cosmosrescue.com:9090", - "provider": "cosmosrescue" + "address": "migaloo-grpc.publicnode.com:443", + "provider": "Allnodes ⚑️ Nodes & Staking" + } + ], + "grpc-web": [ + { + "address": "https://migaloo-grpc-web.publicnode.com", + "provider": "Allnodes ⚑️ Nodes & Staking" } ] }, diff --git a/mises/assetlist.json b/mises/assetlist.json index a4fe8afcfe..77c36b8806 100644 --- a/mises/assetlist.json +++ b/mises/assetlist.json @@ -38,7 +38,8 @@ "primary_color_hex": "#f5f5f8" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/mises/chain.json b/mises/chain.json index 7e913e17d7..0b1d16fa6b 100644 --- a/mises/chain.json +++ b/mises/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://mises.site", "pretty_name": "Mises", + "chain_type": "cosmos", "chain_id": "mainnet", "bech32_prefix": "mises", "node_home": "$HOME/.misestm", diff --git a/movement/assetlist.json b/movement/assetlist.json index 4a8d02e3a7..9072f58745 100644 --- a/movement/assetlist.json +++ b/movement/assetlist.json @@ -29,7 +29,8 @@ "socials": { "website": "https://movementlabs.xyz/", "twitter": "https://x.com/movementlabsxyz" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/mtgbp/assetlist.json b/mtgbp/assetlist.json index 042e665e8d..39c57df5ea 100644 --- a/mtgbp/assetlist.json +++ b/mtgbp/assetlist.json @@ -4,7 +4,7 @@ "assets": [ { "description": "MTGBP the stablecoin of the future.", - "extended_description": "MTGBP is known as the stablecoin of the future. This stablecoin is based on the British pound, which means its value stays the same as the pound.\n\nMTGBP aims to connect traditional money with digital money, giving people a stable and trustworthy digital currency. This stablecoin combines the stability of the British pound with the speed and efficiency of blockchain technology.\n\nMTGBP makes it easy to do financial transactions without the ups and downs that other cryptocurrencies have. With MTGBP, you can send money, trade, and invest knowing that its value will stay steady. This makes it useful for everyday use and for long-term financial plans.\n\nIn short, MTGBP offers the stability of the British pound and the benefits of cryptocurrency, making it a safe and easy optionΒ forΒ everyone.\n\n", + "extended_description": "MTGBP is known as the stablecoin of the future. This stablecoin is based on the British pound, which means its value stays the same as the pound.\n\nMTGBP aims to connect traditional money with digital money, giving people a stable and trustworthy digital currency. This stablecoin combines the stability of the British pound with the speed and efficiency of blockchain technology.\n\nMTGBP makes it easy to do financial transactions without the ups and downs that other cryptocurrencies have. With MTGBP, you can send money, trade, and invest knowing that its value will stay steady. This makes it useful for everyday use and for long-term financial plans.\n\nIn short, MTGBP offers the stability of the British pound and the benefits of cryptocurrency, making it a safe and easy option\u00a0for\u00a0everyone.\n\n", "denom_units": [ { "denom": "mtgbp", @@ -30,7 +30,8 @@ ], "socials": { "website": "https://mtgbp.com/" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/mtgbp/chain.json b/mtgbp/chain.json index 0e1711784d..f348d39bed 100644 --- a/mtgbp/chain.json +++ b/mtgbp/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://mtgbp.com/", "pretty_name": "mtgbp", + "chain_type": "cosmos", "chain_id": "mtgbp-1", "bech32_prefix": "mtgbp", "daemon_name": "mtgbp", @@ -27,8 +28,8 @@ "fee_tokens": [ { "denom": "mtgbp", - "low_gas_price": 1e-06, - "average_gas_price": 5e-06, + "low_gas_price": 0.000001, + "average_gas_price": 0.000005, "high_gas_price": 0.0001 } ] diff --git a/mun/assetlist.json b/mun/assetlist.json index 65c66f1062..fb544b8ce4 100644 --- a/mun/assetlist.json +++ b/mun/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#f6ba32" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/mun/chain.json b/mun/chain.json index 23a144fcb2..dd637211bb 100644 --- a/mun/chain.json +++ b/mun/chain.json @@ -5,6 +5,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Mun", + "chain_type": "cosmos", "chain_id": "mun-1", "bech32_prefix": "mun", "daemon_name": "mund", @@ -90,6 +91,10 @@ { "address": "https://rpc.mun.tcnetwork.io", "provider": "TC Network" + }, + { + "address": "https://mun_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "rest": [ @@ -104,6 +109,10 @@ { "address": "https://rest.mun.tcnetwork.io", "provider": "TC Network" + }, + { + "address": "https://mun_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "grpc": [] @@ -130,6 +139,12 @@ "kind": "TC Network", "url": "https://explorer.tcnetwork.io/mun", "tx_page": "https://explorer.tcnetwork.io/mun/transaction/${txHash}" + }, + { + "kind": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯", + "url": "https://explorer.whenmoonwhenlambo.money/mun", + "tx_page": "https://explorer.whenmoonwhenlambo.money/mun/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/mun/account/${accountAddress}" } ], "images": [ diff --git a/mythos/assetlist.json b/mythos/assetlist.json index 858928af0b..12ec6bff04 100644 --- a/mythos/assetlist.json +++ b/mythos/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#848484" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/mythos/chain.json b/mythos/chain.json index 46fa5cae2d..91674a3c28 100644 --- a/mythos/chain.json +++ b/mythos/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Mythos", + "chain_type": "cosmos", "chain_id": "mythos_7001-1", "bech32_prefix": "mythos", "daemon_name": "mythosd", diff --git a/namada/assetlist.json b/namada/assetlist.json index 83372a1ee2..259a8bfca8 100644 --- a/namada/assetlist.json +++ b/namada/assetlist.json @@ -30,7 +30,8 @@ "socials": { "website": "https://namada.net/", "twitter": "https://twitter.com/namada" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/neura/assetlist.json b/neura/assetlist.json index d69915638e..388249e7ee 100644 --- a/neura/assetlist.json +++ b/neura/assetlist.json @@ -41,7 +41,8 @@ "socials": { "website": "https://www.ankr.com", "twitter": "https://x.com/ankr" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/neura/chain.json b/neura/chain.json index 0f3f067b64..9afd7a9041 100644 --- a/neura/chain.json +++ b/neura/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "neura", + "chain_type": "cosmos", "chain_id": "neura_266-1", "bech32_prefix": "neura", "pretty_name": "Neura", diff --git a/neutaro/assetlist.json b/neutaro/assetlist.json index 5fd27aa3a1..819a2dbac2 100644 --- a/neutaro/assetlist.json +++ b/neutaro/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#cbfb06" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/neutaro/chain.json b/neutaro/chain.json index 7af5d52537..98113ccc1f 100644 --- a/neutaro/chain.json +++ b/neutaro/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://neutaro.com/", "pretty_name": "Neutaro", + "chain_type": "cosmos", "chain_id": "Neutaro-1", "bech32_prefix": "neutaro", "daemon_name": "neutaro", @@ -113,4 +114,4 @@ } } ] -} +} \ No newline at end of file diff --git a/neutron/assetlist.json b/neutron/assetlist.json index e7b242abe3..97ca3c30dd 100644 --- a/neutron/assetlist.json +++ b/neutron/assetlist.json @@ -38,7 +38,8 @@ "socials": { "website": "https://neutron.org/", "twitter": "https://twitter.com/Neutron_org" - } + }, + "type_asset": "sdk.coin" }, { "description": "IBC uatom through cosmoshub-4 transfer/channel-1", @@ -174,7 +175,7 @@ }, "chain": { "channel_id": "channel-35", - "path": "transfer/channel-35" + "path": "transfer/channel-35/utia" } } ], @@ -222,7 +223,8 @@ "primary_color_hex": "#47391d" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "wstETH on Neutron", @@ -242,12 +244,12 @@ "symbol": "wstETH", "traces": [ { - "type": "additional-mintage", + "type": "bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" }, - "provider": "Lido" + "provider": "Lido wstETH Cosmos Bridge" } ], "images": [ @@ -261,7 +263,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "NBTC on Neutron", @@ -397,7 +400,8 @@ "primary_color_hex": "#16233d" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", @@ -435,7 +439,8 @@ "socials": { "website": "https://astroport.fi/", "twitter": "https://twitter.com/astroport_fi" - } + }, + "type_asset": "sdk.coin" }, { "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", @@ -477,7 +482,8 @@ "socials": { "website": "https://astroport.fi/", "twitter": "https://twitter.com/astroport_fi" - } + }, + "type_asset": "sdk.coin" }, { "description": "ASTRO.cw20 on Neutron", @@ -557,7 +563,8 @@ "primary_color_hex": "#fab442" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "clownmaxxed store of value", @@ -588,7 +595,8 @@ "primary_color_hex": "#242033" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Jimmy Neutron Finance", @@ -619,7 +627,8 @@ "primary_color_hex": "#7d3c20" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Baddest coin on Cosmos", @@ -650,7 +659,8 @@ "primary_color_hex": "#211a0d" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "BITCOSMOS", @@ -681,7 +691,8 @@ "primary_color_hex": "#1b0847" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "What the Fuck", @@ -712,7 +723,8 @@ "primary_color_hex": "#dcd5ab" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "NLS on Neutron", @@ -795,7 +807,8 @@ "primary_color_hex": "#516b80" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The deflationary utility token of the Apollo DAO project", @@ -827,7 +840,8 @@ "socials": { "website": "https://apollo.farm/", "twitter": "https://twitter.com/ApolloDAO" - } + }, + "type_asset": "sdk.coin" }, { "description": "NEWTROLL", @@ -855,7 +869,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Retro Game", @@ -883,7 +898,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "THE FIRST NATIVE GODDARD MEMECOIN ON NEUTRON", @@ -911,7 +927,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The first memecoin on osmosis.", @@ -989,7 +1006,8 @@ "primary_color_hex": "#333333" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", @@ -1067,7 +1085,8 @@ "primary_color_hex": "#8c9098" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "$ATOM to $1,000 LFG!!", @@ -1098,7 +1117,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" }, { "type_asset": "ics20", @@ -1123,8 +1143,8 @@ "symbol": "USDC", "coingecko_id": "usd-coin", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "images": [ { @@ -1132,10 +1152,11 @@ "chain_name": "noble", "base_denom": "uusdc" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primary_color_hex": "#2474cc" + "circle": true, + "primary_color_hex": "#2775CA" } } ], @@ -1183,7 +1204,8 @@ "primary_color_hex": "#ebf0f4" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -1210,7 +1232,8 @@ "primary_color_hex": "#556867" } } - ] + ], + "type_asset": "sdk.coin" }, { "name": "Ninja Blaze Token", @@ -1241,7 +1264,193 @@ "primary_color_hex": "#9890f9" } } - ] + ], + "type_asset": "sdk.coin" + }, + { + "description": "Mars Protocol is a cross-collateralized Money Market Protocol on Neutron and Osmosis.", + "extended_description": "Lend, borrow and earn with an autonomous credit protocol in the Cosmos universe. Open to all, closed to none.", + "denom_units": [ + { + "denom": "factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS", + "exponent": 0, + "aliases": [ + "umars" + ] + }, + { + "denom": "MARS", + "exponent": 6 + } + ], + "base": "factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS", + "name": "Mars Protocol token", + "display": "MARS", + "symbol": "MARS", + "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg", + "theme": { + "primary_color_hex": "#ef4136" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg" + }, + "socials": { + "website": "https://marsprotocol.io/", + "twitter": "https://x.com/mars_protocol" + }, + "type_asset": "sdk.coin" + }, + { + "description": "Drop staked ATOM", + "extended_description": "Drop protocol token for the interchain liquidity", + "denom_units": [ + { + "denom": "factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom", + "exponent": 0 + }, + { + "denom": "dATOM", + "exponent": 6 + } + ], + "base": "factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom", + "name": "dATOM", + "display": "dATOM", + "symbol": "dATOM", + "coingecko_id": "drop-staked-atom", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, + "provider": "Drop Protocol" + } + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dATOM.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dATOM.svg" + }, + "socials": { + "website": "https://www.drop.money/", + "twitter": "https://x.com/Dropdotmoney" + }, + "type_asset": "sdk.coin" + }, + { + "description": "SinGarden token", + "denom_units": [ + { + "denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sin", + "exponent": 0, + "aliases": [ + "uSIN" + ] + }, + { + "denom": "SIN", + "exponent": 6 + } + ], + "base": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sin", + "name": "SIN", + "display": "SIN", + "symbol": "SIN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/sin.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/sin.png", + "theme": { + "primary_color_hex": "#ebf0f4" + } + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "CryptoGopniks token", + "denom_units": [ + { + "denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/GOP", + "exponent": 0, + "aliases": [ + "uGOP" + ] + }, + { + "denom": "GOP", + "exponent": 6 + } + ], + "base": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/GOP", + "name": "GOP", + "display": "GOP", + "symbol": "GOP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/gop.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/gop.png", + "theme": { + "primary_color_hex": "#000000" + } + } + ], + "type_asset": "sdk.coin" + }, + { + "type_asset": "sdk.coin", + "denom_units": [ + { + "denom": "factory/neutron129ukd5cwahcjkccujz87rjemjukff7jf6sau72qrhva677xgz9gs4m4jeq/uarena", + "exponent": 0, + "aliases": [ + "uarena" + ] + }, + { + "denom": "arena", + "exponent": 6 + } + ], + "base": "factory/neutron129ukd5cwahcjkccujz87rjemjukff7jf6sau72qrhva677xgz9gs4m4jeq/uarena", + "name": "Arena Token", + "display": "arena", + "symbol": "ARENA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.svg", + "theme": { + "circle": true, + "primary_color_hex": "#FF8000" + } + } + ], + "description": "The governance token of the Arena DAO", + "socials": { + "twitter": "https://x.com/ArenaDAO", + "website": "https://arenadao.org/" + } } ] -} +} \ No newline at end of file diff --git a/neutron/chain.json b/neutron/chain.json index 2447828943..2367cd33d8 100644 --- a/neutron/chain.json +++ b/neutron/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Neutron", + "chain_type": "cosmos", "chain_id": "neutron-1", "bech32_prefix": "neutron", "website": "https://neutron.org/", @@ -62,12 +63,12 @@ }, "codebase": { "git_repo": "https://github.com/neutron-org/neutron", - "recommended_version": "v4.0.1", + "recommended_version": "v4.2.0", "compatible_versions": [ - "v4.0.1" + "v4.2.0" ], "binaries": { - "linux/amd64": "https://github.com/neutron-org/neutron/releases/download/v4.0.1/neutrond-linux-amd64" + "linux/amd64": "https://github.com/neutron-org/neutron/releases/download/v4.2.0/neutrond-linux-amd64" }, "cosmos_sdk_version": "neutron-org/cosmos-sdk v0.50.7-neutron", "consensus": { @@ -76,7 +77,6 @@ }, "cosmwasm_version": "neutron-org/wasmd v0.51.0", "cosmwasm_enabled": true, - "ibc_go_version": "v8.2.1", "genesis": { "genesis_url": "https://raw.githubusercontent.com/neutron-org/mainnet-assets/main/neutron-1-genesis.json" }, @@ -95,8 +95,19 @@ }, "cosmwasm_version": "0.31", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.0", - "next_version_name": "v2.0.0" + "next_version_name": "v2.0.0", + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "4.3.0" + } }, { "name": "v2.0.0", @@ -116,8 +127,19 @@ }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", - "next_version_name": "v3.0.1" + "next_version_name": "v3.0.1", + "sdk": { + "type": "cosmos", + "version": "v0.47.6" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v3.0.1", @@ -137,8 +159,22 @@ }, "cosmwasm_version": "neutron-org/wasmd v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.2", - "next_version_name": "v3.0.5" + "next_version_name": "v3.0.5", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/neutron-org/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-neutron" + }, + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/neutron-org/wasmd", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.2" + } }, { "name": "v3.0.5", @@ -158,19 +194,33 @@ }, "cosmwasm_version": "neutron-org/wasmd v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.4.0", - "next_version_name": "v4.0.1" + "next_version_name": "v4.0.1", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/neutron-org/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-neutron" + }, + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/neutron-org/wasmd", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } }, { "name": "v4.0.1", "proposal": 41, "height": 12255555, - "recommended_version": "v4.0.1", + "recommended_version": "v4.2.0", "compatible_versions": [ - "v4.0.1" + "v4.2.0" ], "binaries": { - "linux/amd64": "https://github.com/neutron-org/neutron/releases/download/v4.0.1/neutrond-linux-amd64" + "linux/amd64": "https://github.com/neutron-org/neutron/releases/download/v4.2.0/neutrond-linux-amd64" }, "cosmos_sdk_version": "neutron-org/cosmos-sdk v0.50.7-neutron", "consensus": { @@ -179,14 +229,43 @@ }, "cosmwasm_version": "neutron-org/wasmd v0.51.0", "cosmwasm_enabled": true, - "ibc_go_version": "v8.2.1", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/neutron-org/cosmos-sdk", + "version": "v0.50.7", + "tag": "v0.50.7-neutron" + }, + "cosmwasm": { + "version": "v0.51.0", + "repo": "https://github.com/neutron-org/wasmd", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v8.2.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/neutron-org/cosmos-sdk", + "version": "v0.50.7", + "tag": "v0.50.7-neutron" + }, + "ibc": { + "type": "go", + "version": "v8.2.1" + }, + "cosmwasm": { + "version": "v0.51.0", + "repo": "https://github.com/neutron-org/wasmd", + "enabled": true + } }, "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-black-logo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-black-logo.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-raw.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-raw.svg" }, "description": "The most secure CosmWasm platform in Cosmos, Neutron lets smart-contracts leverage bleeding-edge Interchain technology with minimal overhead.", "peers": { @@ -232,7 +311,7 @@ "provider": "P2P" }, { - "address": "https://neutron-rpc.lavenderfive.com", + "address": "https://rpc.lavenderfive.com:443/neutron", "provider": "Lavender.Five Nodes 🐝" }, { @@ -262,6 +341,10 @@ { "address": "https://rpc.neutron.quokkastake.io", "provider": "🐹 Quokka Stake" + }, + { + "address": "https://neutron.drpc.org", + "provider": "dRPC" } ], "rest": [ @@ -270,7 +353,7 @@ "provider": "P2P" }, { - "address": "https://neutron-api.lavenderfive.com", + "address": "https://rest.lavenderfive.com:443/neutron", "provider": "Lavender.Five Nodes 🐝" }, { @@ -312,7 +395,7 @@ "provider": "P2P" }, { - "address": "neutron-grpc.lavenderfive.com:443", + "address": "neutron.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -379,6 +462,10 @@ "background_color_hex": "#000000", "circle": true } + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-black-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-black-logo.svg" } ] -} +} \ No newline at end of file diff --git a/neutron/images/arena.png b/neutron/images/arena.png deleted file mode 100644 index d782e7a2e0..0000000000 Binary files a/neutron/images/arena.png and /dev/null differ diff --git a/neutron/images/arena.svg b/neutron/images/arena.svg deleted file mode 100644 index fa4453c54a..0000000000 --- a/neutron/images/arena.svg +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/neutron/images/arena_dao.png b/neutron/images/arena_dao.png new file mode 100644 index 0000000000..213a48ee65 Binary files /dev/null and b/neutron/images/arena_dao.png differ diff --git a/neutron/images/arena_dao.svg b/neutron/images/arena_dao.svg new file mode 100644 index 0000000000..7ee2d74e55 --- /dev/null +++ b/neutron/images/arena_dao.svg @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/neutron/images/dATOM.svg b/neutron/images/dATOM.svg new file mode 100644 index 0000000000..01e7700cd8 --- /dev/null +++ b/neutron/images/dATOM.svg @@ -0,0 +1 @@ + diff --git a/neutron/images/gop.png b/neutron/images/gop.png new file mode 100644 index 0000000000..2e794546c0 Binary files /dev/null and b/neutron/images/gop.png differ diff --git a/mars/images/mars-token.png b/neutron/images/mars-token.png similarity index 100% rename from mars/images/mars-token.png rename to neutron/images/mars-token.png diff --git a/neutron/images/mars-token.svg b/neutron/images/mars-token.svg new file mode 100644 index 0000000000..b10a3ebc4a --- /dev/null +++ b/neutron/images/mars-token.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/neutron/images/sin.png b/neutron/images/sin.png new file mode 100644 index 0000000000..e84df45e49 Binary files /dev/null and b/neutron/images/sin.png differ diff --git a/nibiru/assetlist.json b/nibiru/assetlist.json index ddf54f2508..c085bc86ab 100644 --- a/nibiru/assetlist.json +++ b/nibiru/assetlist.json @@ -17,6 +17,10 @@ { "denom": "nibi", "exponent": 6 + }, + { + "denom": "attonibi", + "exponent": 18 } ], "base": "unibi", @@ -36,7 +40,8 @@ "primary_color_hex": "#14c0ce" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "uoprek", @@ -49,7 +54,8 @@ "base": "tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek", "name": "uoprek", "display": "tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek", - "symbol": "UOPREK" + "symbol": "UOPREK", + "type_asset": "sdk.coin" }, { "description": "utestate", @@ -62,7 +68,8 @@ "base": "tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate", "name": "utestate", "display": "tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate", - "symbol": "UTESTATE" + "symbol": "UTESTATE", + "type_asset": "sdk.coin" }, { "description": "npp", @@ -75,7 +82,8 @@ "base": "tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP", "name": "npp", "display": "tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP", - "symbol": "NPP" + "symbol": "NPP", + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/nibiru/chain.json b/nibiru/chain.json index 83bf5d1aec..18d5ad1b99 100644 --- a/nibiru/chain.json +++ b/nibiru/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://nibiru.fi/", "pretty_name": "Nibiru", + "chain_type": "cosmos", "chain_id": "cataclysm-1", "bech32_prefix": "nibi", "daemon_name": "nibid", @@ -51,7 +52,6 @@ "type": "cometbft", "version": "v0.37.5" }, - "ibc_go_version": "v7.3.2", "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, "genesis": { @@ -73,13 +73,25 @@ "cosmos_sdk_version": "v0.45.5", "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", "cosmwasm_path": "$HOME/.nibid/data/wasm", "binaries": { "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_amd64.tar.gz", "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_arm64.tar.gz" }, - "next_version_name": "v1.0.1" + "next_version_name": "v1.0.1", + "sdk": { + "type": "cosmos", + "version": "v0.45.5" + }, + "cosmwasm": { + "version": "v0.44.0", + "path": "$HOME/.nibid/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v1.0.1", @@ -103,8 +115,19 @@ }, "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", - "next_version_name": "v1.0.2" + "next_version_name": "v1.0.2", + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v1.0.2", @@ -128,8 +151,19 @@ }, "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", - "next_version_name": "v1.0.3" + "next_version_name": "v1.0.3", + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v1.0.3", @@ -153,8 +187,19 @@ }, "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.2", - "next_version_name": "v1.1.0" + "next_version_name": "v1.1.0", + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.2" + } }, { "name": "v1.1.0", @@ -176,10 +221,21 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "v7.3.2", "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "next_version_name": "v1.2.0" + "next_version_name": "v1.2.0", + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.2" + } }, { "name": "v1.2.0", @@ -201,10 +257,21 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "v7.3.2", "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "next_version_name": "v1.3.0" + "next_version_name": "v1.3.0", + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.2" + } }, { "name": "v1.3.0", @@ -226,10 +293,21 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "v7.3.2", "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "next_version_name": "v1.4.0" + "next_version_name": "v1.4.0", + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.2" + } }, { "name": "v1.4.0", @@ -251,10 +329,21 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "v7.3.2", "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "next_version_name": "v1.5.0" + "next_version_name": "v1.5.0", + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.2" + } }, { "name": "v1.5.0", @@ -276,12 +365,35 @@ "type": "cometbft", "version": "v0.37.5" }, - "ibc_go_version": "v7.3.2", "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.11" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.2" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.11" + }, + "ibc": { + "type": "go", + "version": "v7.3.2" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", @@ -375,7 +487,7 @@ "provider": "NodeStake" }, { - "address": "https://nibiru-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/nibiru", "provider": "Lavender.Five Nodes 🐝" }, { @@ -437,7 +549,7 @@ "provider": "silent" }, { - "address": "https://nibiru-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/nibiru", "provider": "Lavender.Five Nodes 🐝" }, { @@ -499,7 +611,7 @@ "provider": "silent" }, { - "address": "https://nibiru-grpc.lavenderfive.com:443", + "address": "nibiru.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -595,4 +707,4 @@ } } ] -} +} \ No newline at end of file diff --git a/nim/assetlist.json b/nim/assetlist.json index 4b45c12a1c..d1a2bdab2b 100644 --- a/nim/assetlist.json +++ b/nim/assetlist.json @@ -20,6 +20,7 @@ "name": "NIM Network", "display": "nim", "symbol": "NIM", + "coingecko_id": "nim-network", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png", diff --git a/nim/chain.json b/nim/chain.json index 57b3408f24..471639eb61 100644 --- a/nim/chain.json +++ b/nim/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://ai.nim.network", "pretty_name": "Nim Network", + "chain_type": "cosmos", "chain_id": "nim_1122-1", "bech32_prefix": "nim", "slip44": 60, diff --git a/noble/assetlist.json b/noble/assetlist.json index 8a5d066c9d..4bfe46d1d7 100644 --- a/noble/assetlist.json +++ b/noble/assetlist.json @@ -17,6 +17,7 @@ "exponent": 6 } ], + "type_asset": "sdk.coin", "base": "ustake", "name": "Stake", "display": "stake", @@ -50,6 +51,7 @@ "exponent": 6 } ], + "type_asset": "sdk.coin", "base": "ufrienzies", "display": "frienzies", "name": "Frienzies", @@ -135,6 +137,7 @@ "exponent": 6 } ], + "type_asset": "sdk.coin", "base": "uusdc", "display": "usdc", "name": "USDC", @@ -151,15 +154,20 @@ } ], "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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg", + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", "theme": { - "primary_color_hex": "#2474cc" + "circle": true, + "primary_color_hex": "#2775CA" } } ] @@ -197,10 +205,55 @@ } } ], + "coingecko_id": "ondo-us-dollar-yield", "socials": { "website": "https://ondo.finance/usdy", "twitter": "https://x.com/OndoFinance" - } + }, + "type_asset": "sdk.coin" + }, + { + "description": "EURe is a Euro-backed stablecoin issued by Monerium on Noble.", + "denom_units": [ + { + "denom": "ueure", + "exponent": 0 + }, + { + "denom": "eure", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "base": "ueure", + "name": "Monerium EUR emoney", + "display": "eure", + "symbol": "EURe", + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f" + }, + "provider": "Monerium" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.svg", + "theme": { + "circle": true, + "primary_color_hex": "#0095D7", + "background_color_hex": "#FFFFFF" + } + } + ] } ] -} +} \ No newline at end of file diff --git a/noble/chain.json b/noble/chain.json index 35cf332cc2..f06dbda094 100644 --- a/noble/chain.json +++ b/noble/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "noble", + "chain_type": "cosmos", "chain_id": "noble-1", "website": "https://nobleassets.xyz/", "pretty_name": "Noble", @@ -31,21 +32,11 @@ } ] }, - "staking": { - "staking_tokens": [ - { - "denom": "ustake" - } - ], - "lock_duration": { - "time": "1814400s" - } - }, "codebase": { "git_repo": "https://github.com/strangelove-ventures/noble", - "recommended_version": "v5.0.0", + "recommended_version": "v6.0.0", "compatible_versions": [ - "v5.0.0" + "v6.0.0" ], "cosmos_sdk_version": "noble-assets/cosmos-sdk v0.45.16-send-restrictions", "consensus": { @@ -53,10 +44,6 @@ "version": "v0.34.27" }, "cosmwasm_enabled": false, - "ibc_go_version": "v4.6.0", - "ics_enabled": [ - "ics20-1" - ], "genesis": { "name": "v1.0.0", "genesis_url": "https://raw.githubusercontent.com/strangelove-ventures/noble-networks/main/mainnet/noble-1/genesis.json" @@ -76,11 +63,21 @@ "version": "v0.34" }, "cosmwasm_enabled": false, - "ibc_go_version": "v3.4.0", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "neon" + "next_version_name": "neon", + "sdk": { + "type": "cosmos", + "version": "v0.45" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v3.4.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "neon", @@ -97,11 +94,21 @@ "version": "v0.34" }, "cosmwasm_enabled": false, - "ibc_go_version": "v3.4.0", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "radon" + "next_version_name": "radon", + "sdk": { + "type": "cosmos", + "version": "v0.45" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v3.4.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "radon", @@ -117,11 +124,21 @@ "version": "v0.34.27" }, "cosmwasm_enabled": false, - "ibc_go_version": "v3.4.0", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v3.1.0" + "next_version_name": "v3.1.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.15" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v3.4.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v3.1.0", @@ -137,11 +154,21 @@ "version": "v0.34.27" }, "cosmwasm_enabled": false, - "ibc_go_version": "v3.4.0", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "argon" + "next_version_name": "argon", + "sdk": { + "type": "cosmos", + "version": "v0.45.15" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v3.4.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "argon", @@ -157,11 +184,21 @@ "version": "v0.34.27" }, "cosmwasm_enabled": false, - "ibc_go_version": "v4.5.1", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "fusion" + "next_version_name": "fusion", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v4.5.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "fusion", @@ -177,11 +214,21 @@ "version": "v0.34.27" }, "cosmwasm_enabled": false, - "ibc_go_version": "v4.5.1", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "krypton" + "next_version_name": "krypton", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v4.5.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "krypton", @@ -197,13 +244,73 @@ "version": "v0.34.27" }, "cosmwasm_enabled": false, - "ibc_go_version": "v4.6.0", - "ics_enabled": [ - "ics20-1" + "next_version_name": "xenon", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/noble-assets/cosmos-sdk", + "version": "v0.45.16", + "tag": "v0.45.16-send-restrictions" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v4.6.0", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "xenon", + "tag": "v6.0.0", + "height": 11110000, + "recommended_version": "v6.0.0", + "compatible_versions": [ + "v6.0.0" ], - "next_version_name": "" + "cosmos_sdk_version": "noble-assets/cosmos-sdk v0.45.16-send-restrictions", + "consensus": { + "type": "cometbft", + "version": "v0.34.27" + }, + "cosmwasm_enabled": false, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/noble-assets/cosmos-sdk", + "version": "v0.45.16", + "tag": "v0.45.16-send-restrictions" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v4.6.0", + "ics_enabled": [ + "ics20-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/noble-assets/cosmos-sdk", + "version": "v0.45.16", + "tag": "v0.45.16-send-restrictions" + }, + "ibc": { + "type": "go", + "version": "v4.6.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "enabled": false + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png", @@ -231,7 +338,7 @@ "provider": "polkachu" }, { - "address": "https://noble-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/noble", "provider": "Lavender.Five Nodes 🐝" } ], @@ -241,7 +348,7 @@ "provider": "polkachu" }, { - "address": "https://noble-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/noble", "provider": "Lavender.Five Nodes 🐝" } ], @@ -251,7 +358,7 @@ "provider": "polkachu" }, { - "address": "https://noble-grpc.lavenderfive.com:443", + "address": "noble.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" } ] @@ -284,4 +391,4 @@ } } ] -} +} \ No newline at end of file diff --git a/nois/assetlist.json b/nois/assetlist.json index 3ca1f81c4a..c6c230beb3 100644 --- a/nois/assetlist.json +++ b/nois/assetlist.json @@ -36,7 +36,8 @@ "primary_color_hex": "#0c0c14" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/nois/chain.json b/nois/chain.json index 4376194427..a6b2014694 100644 --- a/nois/chain.json +++ b/nois/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://nois.network", "pretty_name": "Nois", + "chain_type": "cosmos", "chain_id": "nois-1", "bech32_prefix": "nois", "daemon_name": "noisd", @@ -68,9 +69,25 @@ "version": "v0.34.29" }, "cosmwasm_version": "v0.31.0", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "v0.45.15" + }, + "cosmwasm": { + "version": "v0.31.0", + "enabled": true + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.45.15" + }, + "cosmwasm": { + "version": "v0.31.0", + "enabled": true + } }, "images": [ { @@ -145,7 +162,7 @@ "provider": "BccNodes" }, { - "address": "https://nois-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/nois", "provider": "Lavender.Five Nodes 🐝" }, { @@ -211,7 +228,7 @@ "provider": "BccNodes" }, { - "address": "https://nois-grpc.lavenderfive.com:443", + "address": "nois.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -277,7 +294,7 @@ "provider": "π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀" }, { - "address": "https://nois-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/nois", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/nolus/assetlist.json b/nolus/assetlist.json index 475ea19e98..22ab642186 100644 --- a/nolus/assetlist.json +++ b/nolus/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://nolus.io/", "twitter": "https://twitter.com/NolusProtocol" - } + }, + "type_asset": "sdk.coin" }, { "description": "axlUSDC transferred from the Osmosis mainnet that is supported on the Nolus chain", @@ -350,11 +351,8 @@ "chain_name": "osmosis", "base_denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg", - "theme": { - "primary_color_hex": "#303030" - } + "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" }, { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", @@ -364,8 +362,8 @@ } ], "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" } }, { @@ -837,7 +835,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" } } ], @@ -952,6 +950,159 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" } }, + { + "description": "CUDOS transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ + { + "denom": "ibc/BB9810E7FE8836311126F15BE0B20E7463189751840F8C3FEF3AC8F87D8AB7C8", + "exponent": 0, + "aliases": [ + "acudos" + ] + }, + { + "denom": "cudos", + "exponent": 18, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/BB9810E7FE8836311126F15BE0B20E7463189751840F8C3FEF3AC8F87D8AB7C8", + "name": "CUDOS", + "display": "cudos", + "symbol": "CUDOS", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B", + "channel_id": "channel-783" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-298/acudos" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg", + "theme": { + "primary_color_hex": "#5d95ec" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg" + } + }, + { + "description": "Alloyed BTC transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ + { + "denom": "ibc/E45CFCB959F4F6D1065B7033EE49A88E606E6AD82E75725219B3D68B0FA89987", + "exponent": 0 + }, + { + "denom": "allBTC", + "exponent": 8, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/E45CFCB959F4F6D1065B7033EE49A88E606E6AD82E75725219B3D68B0FA89987", + "name": "Alloyed BTC", + "display": "allBTC", + "symbol": "BTC", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC", + "channel_id": "channel-783" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg", + "theme": { + "primary_color_hex": "#f4941c" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg" + } + }, + { + "description": "Alloyed SOL transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ + { + "denom": "ibc/762E1E45658845A12E214A91C3C05FDFC5951D60404FAADA225A369A96DCD9A9", + "exponent": 0 + }, + { + "denom": "allSOL", + "exponent": 9, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/762E1E45658845A12E214A91C3C05FDFC5951D60404FAADA225A369A96DCD9A9", + "name": "Alloyed SOL", + "display": "allSOL", + "symbol": "SOL", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "factory/osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4/alloyed/allSOL", + "channel_id": "channel-783" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/factory/osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4/alloyed/allSOL" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "factory/osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4/alloyed/allSOL" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", + "theme": { + "primary_color_hex": "#000000" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg" + } + }, { "description": "NTRN transferred from the Neutron mainnet that is supported on the Nolus chain", "denom_units": [ @@ -996,7 +1147,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 } }, { @@ -1064,6 +1217,54 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" } + }, + { + "description": "dATOM transferred from the Neutron mainnet that is supported on the Nolus chain", + "denom_units": [ + { + "denom": "ibc/EB08474FFC49B6BB2F03F7D9B08697138F4DA53347CA1AB718C8BCFBB58C1B2B", + "exponent": 0, + "aliases": [ + "udatom" + ] + }, + { + "denom": "dATOM", + "exponent": 6, + "aliases": [] + } + ], + "type_asset": "ics20", + "base": "ibc/EB08474FFC49B6BB2F03F7D9B08697138F4DA53347CA1AB718C8BCFBB58C1B2B", + "name": "dATOM", + "display": "dATOM", + "symbol": "dATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom", + "channel_id": "channel-44" + }, + "chain": { + "channel_id": "channel-3839", + "path": "transfer/channel-3839/factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dATOM.svg" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dATOM.svg" + } } ] } \ No newline at end of file diff --git a/nolus/chain.json b/nolus/chain.json index 8197f0423e..d14cb3a3dd 100644 --- a/nolus/chain.json +++ b/nolus/chain.json @@ -5,6 +5,7 @@ "website": "https://nolus.io/", "network_type": "mainnet", "pretty_name": "Nolus", + "chain_type": "cosmos", "chain_id": "pirin-1", "bech32_prefix": "nolus", "daemon_name": "nolusd", @@ -36,22 +37,17 @@ }, "codebase": { "git_repo": "https://github.com/nolus-protocol/nolus-core", - "recommended_version": "v0.5.2", + "recommended_version": "v0.6.3", "compatible_versions": [ - "v0.5.3" + "v0.6.3" ], - "cosmos_sdk_version": "nolus-protocol/cosmos-sdk v0.47.8-nolus", + "cosmos_sdk_version": "nolus-protocol/cosmos-sdk v0.50.7-nolus-rc1", "consensus": { "type": "cometbft", - "version": "v0.37.4" + "version": "v0.38.11" }, - "cosmwasm_version": "neutron-org/wasmd v0.45.0", + "cosmwasm_version": "neutron-org/wasmd v0.51.0", "cosmwasm_enabled": true, - "ibc_go_version": "7.4.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "genesis": { "genesis_url": "https://raw.githubusercontent.com/nolus-protocol/nolus-networks/main/mainnet/pirin-1/genesis.json" }, @@ -65,12 +61,23 @@ "cosmos_sdk_version": "0.45", "cosmwasm_version": "0.31", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], - "next_version_name": "v0.4.0" + "next_version_name": "v0.4.0", + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "4.3.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v0.4.0", @@ -83,12 +90,23 @@ "cosmos_sdk_version": "0.45", "cosmwasm_version": "0.31", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], - "next_version_name": "v0.4.1" + "next_version_name": "v0.4.1", + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "4.3.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v0.4.1", @@ -105,12 +123,23 @@ }, "cosmwasm_version": "0.31", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.1", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "4.3.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v0.4.2", @@ -127,12 +156,24 @@ }, "cosmwasm_version": "0.31", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.1", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], - "next_version_name": "v0.5.0" + "next_version_name": "v0.5.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.15", + "tag": "v0.45.15-ics" + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "4.3.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v0.5.0", @@ -149,12 +190,25 @@ }, "cosmwasm_version": "neutron-org/wasmd v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "7.3.1", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], - "next_version_name": "v5.0.1" + "next_version_name": "v5.0.1", + "sdk": { + "type": "cosmos", + "version": "v0.47.6", + "tag": "v0.47.6-nolus" + }, + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/neutron-org/wasmd", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.3.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v0.5.1", @@ -171,12 +225,26 @@ }, "cosmwasm_version": "neutron-org/wasmd v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "7.3.1", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], - "next_version_name": "v0.5.2" + "next_version_name": "v0.5.2", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/nolus-protocol/cosmos-sdk", + "version": "v0.47.6", + "tag": "v0.47.6-nolus" + }, + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/neutron-org/wasmd", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.3.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v0.5.2", @@ -193,12 +261,26 @@ }, "cosmwasm_version": "neutron-org/wasmd v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "7.3.1", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], - "next_version_name": "v0.5.3" + "next_version_name": "v0.5.3", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/nolus-protocol/cosmos-sdk", + "version": "v0.47.6", + "tag": "v0.47.6-nolus" + }, + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/neutron-org/wasmd", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.3.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v0.5.3", @@ -215,14 +297,119 @@ }, "cosmwasm_version": "neutron-org/wasmd v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "7.4.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/nolus-protocol/cosmos-sdk", + "version": "v0.47.8", + "tag": "v0.47.8-nolus" + }, + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/neutron-org/wasmd", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.4.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } + }, + { + "name": "v0.6.2", + "proposal": 136, + "height": 6556000, + "recommended_version": "v0.6.2", + "compatible_versions": [ + "v0.6.2" + ], + "cosmos_sdk_version": "nolus-protocol/cosmos-sdk v0.50.7-nolus-rc1", + "consensus": { + "type": "cometbft", + "version": "v0.38.10" + }, + "cosmwasm_version": "neutron-org/wasmd v0.51.0", + "cosmwasm_enabled": true, + "next_version_name": "v0.6.3", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/nolus-protocol/cosmos-sdk", + "version": "v0.50.7", + "tag": "v0.50.7-nolus-rc1" + }, + "cosmwasm": { + "version": "v0.51.0", + "repo": "https://github.com/neutron-org/wasmd", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "8.2.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } + }, + { + "name": "v0.6.3", + "proposal": 158, + "height": 7006500, + "recommended_version": "v0.6.3", + "compatible_versions": [ + "v0.6.3" ], - "next_version_name": "" + "cosmos_sdk_version": "nolus-protocol/cosmos-sdk v0.50.7-nolus-rc1", + "consensus": { + "type": "cometbft", + "version": "v0.38.11" + }, + "cosmwasm_version": "neutron-org/wasmd v0.51.0", + "cosmwasm_enabled": true, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/nolus-protocol/cosmos-sdk", + "version": "v0.50.7", + "tag": "v0.50.7-nolus-rc1" + }, + "cosmwasm": { + "version": "v0.51.0", + "repo": "https://github.com/neutron-org/wasmd", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "8.2.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/nolus-protocol/cosmos-sdk", + "version": "v0.50.7", + "tag": "v0.50.7-nolus-rc1" + }, + "ibc": { + "type": "go", + "version": "v8.2.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + }, + "cosmwasm": { + "version": "v0.51.0", + "repo": "https://github.com/neutron-org/wasmd", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", @@ -276,7 +463,7 @@ "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, { - "address": "https://nolus-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/nolus", "provider": "Lavender.Five Nodes 🐝" }, { @@ -322,7 +509,7 @@ "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, { - "address": "https://nolus-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/nolus", "provider": "Lavender.Five Nodes 🐝" }, { @@ -368,7 +555,7 @@ "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, { - "address": "https://nolus-grpc.lavenderfive.com:443", + "address": "nolus.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/nomic/assetlist.json b/nomic/assetlist.json index 8fc0c3c759..d67e1c65ff 100644 --- a/nomic/assetlist.json +++ b/nomic/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#6404fc" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Bitcoin. On Cosmos.", @@ -70,7 +71,8 @@ "primary_color_hex": "#8436e6" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/nomic/chain.json b/nomic/chain.json index ed648a3c2c..be1eedc9f8 100644 --- a/nomic/chain.json +++ b/nomic/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "pretty_name": "Nomic", "website": "https://nomic.io/", + "chain_type": "cosmos", "chain_id": "nomic-stakenet-3", "bech32_prefix": "nomic", "daemon_name": "nomic", @@ -20,6 +21,12 @@ "low_gas_price": 0, "average_gas_price": 0, "high_gas_price": 0 + }, + { + "denom": "usat", + "low_gas_price": 0, + "average_gas_price": 0, + "high_gas_price": 0 } ] }, @@ -35,13 +42,14 @@ }, "codebase": { "git_repo": "https://github.com/nomic-io/nomic", - "recommended_version": "v8.0.0", + "recommended_version": "v9.0.0", "compatible_versions": [ + "v9.0.0", "v8.0.0" ], "consensus": { "type": "tendermint", - "version": "v0.32.0" + "version": "v0.34.0" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/nomic-io/nomic/develop/genesis/stakenet-3.json" @@ -57,6 +65,18 @@ "type": "tendermint", "version": "v0.32.0" }, + "next_version_name": "v9.0.0" + }, + { + "name": "v9.0.0", + "recommended_version": "v9.0.0", + "compatible_versions": [ + "v9.0.0" + ], + "consensus": { + "type": "tendermint", + "version": "v0.34.0" + }, "next_version_name": "" } ] diff --git a/nyx/assetlist.json b/nyx/assetlist.json index 4ba0cef7b3..912b583782 100644 --- a/nyx/assetlist.json +++ b/nyx/assetlist.json @@ -28,7 +28,8 @@ "primary_color_hex": "#f45135" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", @@ -70,7 +71,8 @@ "primary_color_hex": "#141424" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/nyx/chain.json b/nyx/chain.json index 42d65cf2e5..ca85ff117c 100644 --- a/nyx/chain.json +++ b/nyx/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://nymtech.net/", "pretty_name": "Nym", + "chain_type": "cosmos", "chain_id": "nyx", "bech32_prefix": "n", "daemon_name": "nyxd", @@ -65,7 +66,10 @@ "binaries": { "linux/amd64": "https://github.com/nymtech/nyxd/releases/tag/v0.31.1" }, - "next_version_name": "v0.32.0" + "next_version_name": "v0.32.0", + "cosmwasm": { + "enabled": true + } }, { "name": "v0.32.0", @@ -80,7 +84,10 @@ "binaries": { "linux/amd64": "https://github.com/nymtech/nyxd/releases/tag/v0.32.0" }, - "next_version_name": "v0.43.0" + "next_version_name": "v0.43.0", + "cosmwasm": { + "enabled": true + } }, { "name": "v0.43.0", @@ -94,9 +101,15 @@ "cosmwasm_enabled": true, "binaries": { "linux/amd64": "https://github.com/nymtech/nyxd/releases/tag/v0.43.0" + }, + "cosmwasm": { + "enabled": true } } - ] + ], + "cosmwasm": { + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png", diff --git a/octa/assetlist.json b/octa/assetlist.json index 48bbc80095..69b6c63727 100644 --- a/octa/assetlist.json +++ b/octa/assetlist.json @@ -32,7 +32,8 @@ "primary_color_hex": "#04a7f8" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/octa/chain.json b/octa/chain.json index 7681d83534..8dc04a8ff4 100644 --- a/octa/chain.json +++ b/octa/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Octa", + "chain_type": "cosmos", "chain_id": "octa", "bech32_prefix": "octa", "daemon_name": "octadaemon", diff --git a/odin/assetlist.json b/odin/assetlist.json index 35b28031b7..7b6fa79128 100644 --- a/odin/assetlist.json +++ b/odin/assetlist.json @@ -32,7 +32,8 @@ "socials": { "website": "https://odinprotocol.io/", "twitter": "https://twitter.com/odinprotocol" - } + }, + "type_asset": "sdk.coin" }, { "description": "GEO token for ODIN Protocol", @@ -62,7 +63,8 @@ "primary_color_hex": "#c3ebf3" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "DOKI the last Dragon", @@ -95,7 +97,8 @@ "socials": { "website": "https://dokicoin.io/", "twitter": "https://twitter.com/doki_coin" - } + }, + "type_asset": "sdk.coin" }, { "description": "Myrkur the leader of OLD Order", @@ -126,7 +129,8 @@ ], "socials": { "twitter": "https://twitter.com/myrkweilds" - } + }, + "type_asset": "sdk.coin" }, { "description": "O9W token for ODIN Protocol", @@ -160,7 +164,8 @@ "socials": { "website": "https://www.odin9worlds.io/", "twitter": "https://twitter.com/odin9worlds" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/odin/chain.json b/odin/chain.json index 366943d1a5..95ebefe4ba 100644 --- a/odin/chain.json +++ b/odin/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://odinprotocol.io/", "pretty_name": "Odin Protocol", + "chain_type": "cosmos", "chain_id": "odin-mainnet-freya", "pre_fork_chain_name": "odin1", "bech32_prefix": "odin", @@ -34,16 +35,15 @@ }, "codebase": { "git_repo": "https://github.com/ODIN-PROTOCOL/odin-core", - "recommended_version": "v0.8.3", + "recommended_version": "v0.9.4", "compatible_versions": [ - "v0.8.3" + "v0.9.4" ], "cosmos_sdk_version": "v0.50.7", "consensus": { "type": "cometbft", - "version": "v0.38.7" + "version": "v0.38.10" }, - "ibc_go_version": "v8.2.0", "genesis": { "genesis_url": "https://snapshots.polkachu.com/genesis/odin/genesis.json" }, @@ -59,8 +59,15 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "v7.3.0", - "next_version_name": "v0.7.11" + "next_version_name": "v0.7.11", + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } }, { "name": "v0.7.11", @@ -75,8 +82,15 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "v7.3.0", - "next_version_name": "v0.7.12" + "next_version_name": "v0.7.12", + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } }, { "name": "v0.7.12", @@ -91,8 +105,15 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "v7.3.0", - "next_version_name": "v0.8.3" + "next_version_name": "v0.8.3", + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } }, { "name": "v0.8.3", @@ -107,10 +128,48 @@ "type": "cometbft", "version": "v0.38.7" }, - "ibc_go_version": "v8.2.0", - "next_version_name": "" + "next_version_name": "v0.9.3", + "sdk": { + "type": "cosmos", + "version": "v0.50.7" + }, + "ibc": { + "type": "go", + "version": "v8.2.0" + } + }, + { + "name": "v0.9.3", + "proposal": 26, + "height": 15639500, + "recommended_version": "v0.9.4", + "compatible_versions": [ + "v0.9.4" + ], + "cosmos_sdk_version": "v0.50.7", + "consensus": { + "type": "cometbft", + "version": "v0.38.10" + }, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.50.7" + }, + "ibc": { + "type": "go", + "version": "v8.3.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.50.7" + }, + "ibc": { + "type": "go", + "version": "v8.3.1" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", @@ -183,7 +242,7 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "https://odin-rpc.lavenderfive.com/", + "address": "https://rpc.lavenderfive.com:443/odin", "provider": "Lavender.Five Nodes 🐝" }, { @@ -201,7 +260,7 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "https://odin-api.lavenderfive.com/", + "address": "https://rest.lavenderfive.com:443/odin", "provider": "Lavender.Five Nodes 🐝" }, { @@ -211,7 +270,7 @@ ], "grpc": [ { - "address": "odin-grpc.lavenderfive.com:443", + "address": "odin.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/odin1/assetlist.json b/odin1/assetlist.json index 5207736430..9af5d307c7 100644 --- a/odin1/assetlist.json +++ b/odin1/assetlist.json @@ -32,7 +32,8 @@ "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" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "GEO token for ODIN Protocol", @@ -66,7 +67,8 @@ "primary_color_hex": "#c3ebf3" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "O9W token for ODIN Protocol", @@ -100,7 +102,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/odin1/chain.json b/odin1/chain.json index c08a2053f9..94015fa9f6 100644 --- a/odin1/chain.json +++ b/odin1/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://odinprotocol.io/", "pretty_name": "Odin Protocol", + "chain_type": "cosmos", "chain_id": "odin-mainnet-freya", "bech32_prefix": "odin", "daemon_name": "odind", @@ -102,7 +103,7 @@ "provider": "Odin Protocol" }, { - "address": "https://odin-rpc.lavenderfive.com/", + "address": "https://rpc.lavenderfive.com:443/odin", "provider": "Lavender.Five Nodes 🐝" }, { @@ -116,7 +117,7 @@ "provider": "Odin Protocol" }, { - "address": "https://odin-api.lavenderfive.com/", + "address": "https://rest.lavenderfive.com:443/odin", "provider": "Lavender.Five Nodes 🐝" }, { @@ -126,7 +127,7 @@ ], "grpc": [ { - "address": "odin-grpc.lavenderfive.com:443", + "address": "odin.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/okexchain/assetlist.json b/okexchain/assetlist.json index db3af1d3ed..0c3bd81635 100644 --- a/okexchain/assetlist.json +++ b/okexchain/assetlist.json @@ -29,7 +29,8 @@ "primary_color_hex": "#bbbbbb" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/okexchain/chain.json b/okexchain/chain.json index d5d66f047c..c5da5d4c75 100644 --- a/okexchain/chain.json +++ b/okexchain/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "OKExChain", + "chain_type": "cosmos", "chain_id": "exchain-66", "bech32_prefix": "ex", "daemon_name": "exchaind", @@ -26,7 +27,6 @@ "v1.2.2", "v1.6.1.1" ], - "binaries": {}, "genesis": { "genesis_url": "https://raw.githubusercontent.com/okx/mainnet/main/genesis.json" }, @@ -37,8 +37,7 @@ "compatible_versions": [ "v1.2.2", "v1.6.1.1" - ], - "binaries": {} + ] } ] }, diff --git a/omniflixhub/assetlist.json b/omniflixhub/assetlist.json index 9476fc2003..36ac3241b8 100644 --- a/omniflixhub/assetlist.json +++ b/omniflixhub/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://omniflix.network/", "twitter": "https://twitter.com/OmniFlixNetwork" - } + }, + "type_asset": "sdk.coin" }, { "denom_units": [ diff --git a/omniflixhub/chain.json b/omniflixhub/chain.json index 601c525727..585e3299b8 100644 --- a/omniflixhub/chain.json +++ b/omniflixhub/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://omniflix.network/", "pretty_name": "OmniFlix", + "chain_type": "cosmos", "chain_id": "omniflixhub-1", "daemon_name": "omniflixhubd", "node_home": "$HOME/.omniflixhub", @@ -17,7 +18,6 @@ "v4.1.1" ], "cosmos_sdk_version": "v0.47.10", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.4" @@ -34,12 +34,19 @@ "v0.8.0" ], "cosmos_sdk_version": "v0.45.10", - "ibc_go_version": "v3.3.1", "consensus": { "type": "tendermint", "version": "v0.34.22" }, - "next_version_name": "v0.10.0" + "next_version_name": "v0.10.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.10" + }, + "ibc": { + "type": "go", + "version": "v3.3.1" + } }, { "name": "v0.10.0", @@ -50,12 +57,19 @@ "v0.10.0" ], "cosmos_sdk_version": "v0.45.15", - "ibc_go_version": "v3.4.0", "consensus": { "type": "cometbft", "version": "v0.34.27" }, - "next_version_name": "v0.11.0" + "next_version_name": "v0.11.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.15" + }, + "ibc": { + "type": "go", + "version": "v3.4.0" + } }, { "name": "v0.11.0", @@ -66,12 +80,19 @@ "v0.11.1" ], "cosmos_sdk_version": "v0.45.16", - "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", "version": "v0.34.28" }, - "next_version_name": "v0.12.x" + "next_version_name": "v0.12.x", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + } }, { "name": "v0.12.x", @@ -82,12 +103,19 @@ "v0.12.1" ], "cosmos_sdk_version": "v0.45.16", - "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", "version": "v0.34.28" }, - "next_version_name": "v2.0.0" + "next_version_name": "v2.0.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + } }, { "name": "v2.0.0", @@ -98,12 +126,19 @@ "v2.0.0" ], "cosmos_sdk_version": "v0.47.5", - "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", "version": "v0.37.2" }, - "next_version_name": "v2.1" + "next_version_name": "v2.1", + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v2.1", @@ -114,12 +149,19 @@ "v2.1.0" ], "cosmos_sdk_version": "v0.47.5", - "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", "version": "v0.37.2" }, - "next_version_name": "v3" + "next_version_name": "v3", + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v3", @@ -130,13 +172,23 @@ "v3.3.0" ], "cosmos_sdk_version": "v0.47.10", - "ibc_go_version": "v7.3.2", "consensus": { "type": "cometbft", "version": "v0.37.4" }, "cosmwasm_version": "v0.45.0", - "next_version_name": "v4" + "next_version_name": "v4", + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "cosmwasm": { + "version": "v0.45.0" + }, + "ibc": { + "type": "go", + "version": "v7.3.2" + } }, { "name": "v4", @@ -147,15 +199,36 @@ "v4.1.1" ], "cosmos_sdk_version": "v0.47.10", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.4" }, "cosmwasm_version": "v0.45.0", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "cosmwasm": { + "version": "v0.45.0" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + }, + "cosmwasm": { + "version": "v0.45.0" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", @@ -254,7 +327,7 @@ "provider": "Notional" }, { - "address": "https://omniflixhub-rpc.lavenderfive.com/", + "address": "https://rpc.lavenderfive.com:443/omniflixhub", "provider": "Lavender.Five Nodes 🐝" }, { @@ -312,7 +385,7 @@ "provider": "Notional" }, { - "address": "https://omniflixhub-api.lavenderfive.com/", + "address": "https://rest.lavenderfive.com:443/omniflixhub", "provider": "Lavender.Five Nodes 🐝" }, { @@ -378,7 +451,7 @@ "provider": "Notional" }, { - "address": "omniflixhub-grpc.lavenderfive.com:443", + "address": "omniflixhub.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -454,4 +527,4 @@ } } ] -} +} \ No newline at end of file diff --git a/onex/assetlist.json b/onex/assetlist.json index 42a78d3116..adb7b23407 100644 --- a/onex/assetlist.json +++ b/onex/assetlist.json @@ -30,7 +30,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/onex/chain.json b/onex/chain.json index c074f3415e..921e77042c 100644 --- a/onex/chain.json +++ b/onex/chain.json @@ -5,6 +5,7 @@ "website": "https://app.onomy.io/", "network_type": "mainnet", "pretty_name": "ONEX", + "chain_type": "cosmos", "chain_id": "onex-mainnet-1", "bech32_prefix": "onomy", "daemon_name": "onexd", @@ -60,9 +61,17 @@ "version": "0.34.28" }, "height": 0, - "next_version_name": "v1.2.0" + "next_version_name": "v1.2.0", + "sdk": { + "type": "cosmos", + "version": "0.45.16" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45.16" + } }, "images": [ { diff --git a/onomy/assetlist.json b/onomy/assetlist.json index 5a5234eacb..0948e914b7 100644 --- a/onomy/assetlist.json +++ b/onomy/assetlist.json @@ -37,7 +37,8 @@ "primary_color_hex": "#1c1c28" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/onomy/chain.json b/onomy/chain.json index 96fbab11da..96f68e47c5 100644 --- a/onomy/chain.json +++ b/onomy/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://onomy.io/", "pretty_name": "Onomy", + "chain_type": "cosmos", "chain_id": "onomy-mainnet-1", "bech32_prefix": "onomy", "daemon_name": "onomyd", @@ -41,7 +42,6 @@ "linux/arm64": "https://github.com/onomyprotocol/onomy/releases/download/v1.1.4/onomyd-arm" }, "cosmos_sdk_version": "onomyprotocol/onomy-sdk v0.45.16-onomy-dev", - "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", "version": "v0.34.28" @@ -58,12 +58,21 @@ "v1.0.1" ], "cosmos_sdk_version": "onomyprotocol/onomy-sdk v0.44.6-0.20221103153534-77ffa1c3fab2", - "ibc_go_version": "v2.0.4", "consensus": { "type": "tendermint", "version": "v0.34.14" }, - "next_version_name": "v1.0.3" + "next_version_name": "v1.0.3", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/onomyprotocol/onomy-sdk", + "version": "v0.44.6", + "tag": "v0.44.6-0.20221103153534-77ffa1c3fab2" + }, + "ibc": { + "type": "go", + "version": "v2.0.4" + } }, { "name": "v1.0.3", @@ -75,12 +84,21 @@ "v1.0.3" ], "cosmos_sdk_version": "onomyprotocol/onomy-sdk v0.44.6-0.20230418124728-9c1be80b05bd", - "ibc_go_version": "v2.0.4", "consensus": { "type": "tendermint", "version": "v0.34.19" }, - "next_version_name": "v1.0.3" + "next_version_name": "v1.0.3", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/onomyprotocol/onomy-sdk", + "version": "v0.44.6", + "tag": "v0.44.6-0.20230418124728-9c1be80b05bd" + }, + "ibc": { + "type": "go", + "version": "v2.0.4" + } }, { "name": "v1.1.2", @@ -92,12 +110,21 @@ "v1.1.2" ], "cosmos_sdk_version": "onomyprotocol/onomy-sdk v0.45.16-onomy-dev", - "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", "version": "v0.34.28" }, - "next_version_name": "v1.1.4" + "next_version_name": "v1.1.4", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/onomyprotocol/onomy-sdk", + "version": "v0.45.16", + "tag": "v0.45.16-onomy-dev" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + } }, { "name": "v1.1.4", @@ -113,14 +140,33 @@ "linux/arm64": "https://github.com/onomyprotocol/onomy/releases/download/v1.1.4/onomyd-arm" }, "cosmos_sdk_version": "onomyprotocol/onomy-sdk v0.45.16-onomy-dev", - "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", "version": "v0.34.28" }, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/onomyprotocol/onomy-sdk", + "version": "v0.45.16", + "tag": "v0.45.16-onomy-dev" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/onomyprotocol/onomy-sdk", + "version": "v0.45.16", + "tag": "v0.45.16-onomy-dev" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + } }, "peers": { "seeds": [ diff --git a/oraichain/assetlist.json b/oraichain/assetlist.json index 91e628f295..17d58f5304 100644 --- a/oraichain/assetlist.json +++ b/oraichain/assetlist.json @@ -19,23 +19,29 @@ "display": "ORAI", "symbol": "ORAI", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.svg" }, "coingecko_id": "oraichain-token", + "socials": { + "website": "https://orai.io/", + "twitter": "https://x.com/oraichain" + }, "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.svg", "theme": { "circle": true, - "dark_mode": true, - "primary_color_hex": "#040404" + "primary_color_hex": "#000000", + "background_color_hex": "#FFFFFF" } }, { "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, + "circle": false, "dark_mode": true, "primary_color_hex": "#FFFFFF" } @@ -44,12 +50,678 @@ "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, + "circle": false, "dark_mode": false, "primary_color_hex": "#000000" } } + ], + "type_asset": "sdk.coin" + }, + { + "description": "The ATOM native token of Oraichain.", + "denom_units": [ + { + "denom": "ibc/A2E2EEC9057A4A1C2C0A6A4C78B0239118DF5F278830F50B4A6BDD7A66506B78", + "exponent": 0 + }, + { + "denom": "atom", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/A2E2EEC9057A4A1C2C0A6A4C78B0239118DF5F278830F50B4A6BDD7A66506B78", + "name": "ATOM", + "display": "atom", + "symbol": "ATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom", + "channel_id": "channel-301" + }, + "chain": { + "channel_id": "channel-15", + "path": "transfer/channel-15/uatom" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg", + "theme": { + "primary_color_hex": "#272d45" + } + } + ] + }, + { + "description": "The OSMO native token of Oraichain.", + "denom_units": [ + { + "denom": "ibc/9C4DCD21B48231D0BC2AC3D1B74A864746B37E4292694C93C617324250D002FC", + "exponent": 0 + }, + { + "denom": "osmo", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/9C4DCD21B48231D0BC2AC3D1B74A864746B37E4292694C93C617324250D002FC", + "name": "OSMO", + "display": "osmo", + "symbol": "OSMO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo", + "channel_id": "channel-216" + }, + "chain": { + "channel_id": "channel-13", + "path": "transfer/channel-13/uosmo" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "uosmo" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg", + "theme": { + "primary_color_hex": "#760dbb" + } + } + ] + }, + { + "description": "The INJ token for the Oraichain.", + "denom_units": [ + { + "denom": "ibc/49D820DFDE9F885D7081725A58202ABA2F465CAEE4AFBC683DFB79A8E013E83E", + "exponent": 0 + }, + { + "denom": "inj", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/49D820DFDE9F885D7081725A58202ABA2F465CAEE4AFBC683DFB79A8E013E83E", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "injective", + "base_denom": "inj", + "channel_id": "channel-147" + }, + "chain": { + "channel_id": "channel-146", + "path": "transfer/channel-146/inj" + } + } + ], + "name": "Injective", + "display": "inj", + "symbol": "INJ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "injective", + "base_denom": "inj" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg", + "theme": { + "primary_color_hex": "#04a2fc" + } + } + ] + }, + { + "description": "The Wrapped INJ token for the Oraichain.", + "type_asset": "cw20", + "address": "orai19rtmkk6sn4tppvjmp5d5zj6gfsdykrl5rw2euu5gwur3luheuuusesqn49", + "denom_units": [ + { + "denom": "cw20:orai19rtmkk6sn4tppvjmp5d5zj6gfsdykrl5rw2euu5gwur3luheuuusesqn49", + "exponent": 0 + }, + { + "denom": "inj", + "exponent": 6 + } + ], + "base": "cw20:orai19rtmkk6sn4tppvjmp5d5zj6gfsdykrl5rw2euu5gwur3luheuuusesqn49", + "name": "Injective", + "display": "inj", + "symbol": "INJ", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "oraichain", + "base_denom": "ibc/49D820DFDE9F885D7081725A58202ABA2F465CAEE4AFBC683DFB79A8E013E83E" + }, + "provider": "Oraichain" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "oraichain", + "base_denom": "ibc/49D820DFDE9F885D7081725A58202ABA2F465CAEE4AFBC683DFB79A8E013E83E" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg", + "theme": { + "primary_color_hex": "#04a2fc" + } + } ] + }, + { + "description": "The USDT token is the cw20 token for the Oraichain.", + "denom_units": [ + { + "denom": "cw20:orai12hzjxfh77wl572gdzct2fxv2arxcwh6gykc7qh", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "orai12hzjxfh77wl572gdzct2fxv2arxcwh6gykc7qh", + "base": "cw20:orai12hzjxfh77wl572gdzct2fxv2arxcwh6gykc7qh", + "name": "Usdt", + "display": "usdt", + "symbol": "USDT", + "images": [ + { + "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" + } + ], + "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" + } + }, + { + "description": "The AIRI token is the cw20 token for the Oraichain.", + "denom_units": [ + { + "denom": "cw20:orai10ldgzued6zjp0mkqwsv2mux3ml50l97c74x8sg", + "exponent": 0 + }, + { + "denom": "airi", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "orai10ldgzued6zjp0mkqwsv2mux3ml50l97c74x8sg", + "base": "cw20:orai10ldgzued6zjp0mkqwsv2mux3ml50l97c74x8sg", + "name": "Airight", + "display": "airi", + "coingecko_id": "airight", + "symbol": "AIRI", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/airi.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/airi.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/airi.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/airi.svg" + } + }, + { + "description": "The ORAIX token is the cw20 token for the Oraichain.", + "denom_units": [ + { + "denom": "cw20:orai1lus0f0rhx8s03gdllx2n6vhkmf0536dv57wfge", + "exponent": 0 + }, + { + "denom": "oraix", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "orai1lus0f0rhx8s03gdllx2n6vhkmf0536dv57wfge", + "base": "cw20:orai1lus0f0rhx8s03gdllx2n6vhkmf0536dv57wfge", + "name": "Oraix", + "display": "oraix", + "symbol": "ORAIX", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/oraix.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/oraix.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/oraix.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/oraix.svg" + } + }, + { + "description": "USDC issued on Oraichain.", + "denom_units": [ + { + "denom": "cw20:orai15un8msx3n5zf9ahlxmfeqd2kwa5wm0nrpxer304m9nd5q6qq0g6sku5pdd", + "exponent": 0 + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "noble", + "base_denom": "uusdc", + "channel_id": "channel-34" + }, + "chain": { + "channel_id": "channel-301", + "path": "transfer/channel-301/uusdc" + } + } + ], + "type_asset": "cw20", + "address": "orai15un8msx3n5zf9ahlxmfeqd2kwa5wm0nrpxer304m9nd5q6qq0g6sku5pdd", + "base": "cw20:orai15un8msx3n5zf9ahlxmfeqd2kwa5wm0nrpxer304m9nd5q6qq0g6sku5pdd", + "name": "Usdc", + "display": "usdc", + "symbol": "USDC", + "images": [ + { + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } + }, + { + "description": "The KAWAII token is the cw20 token for the Oraichain.", + "denom_units": [ + { + "denom": "cw20:orai1nd4r053e3kgedgld2ymen8l9yrw8xpjyaal7j5", + "exponent": 0 + }, + { + "denom": "kwt", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "orai1nd4r053e3kgedgld2ymen8l9yrw8xpjyaal7j5", + "base": "cw20:orai1nd4r053e3kgedgld2ymen8l9yrw8xpjyaal7j5", + "name": "Kwt", + "display": "kwt", + "symbol": "KWT", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/kwt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/kwt.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/kwt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/kwt.svg" + } + }, + { + "description": "The MILKY token is the cw20 token for the Oraichain.", + "denom_units": [ + { + "denom": "cw20:orai1gzvndtzceqwfymu2kqhta2jn6gmzxvzqwdgvjw", + "exponent": 0 + }, + { + "denom": "milky", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "orai1gzvndtzceqwfymu2kqhta2jn6gmzxvzqwdgvjw", + "base": "cw20:orai1gzvndtzceqwfymu2kqhta2jn6gmzxvzqwdgvjw", + "name": "Milky", + "display": "milky", + "symbol": "MILKY", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/milky-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/milky-token.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/milky-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/milky-token.svg" + } + }, + { + "description": "The scORAI token is the cw20 token for the Oraichain.", + "denom_units": [ + { + "denom": "cw20:orai1065qe48g7aemju045aeyprflytemx7kecxkf5m7u5h5mphd0qlcs47pclp", + "exponent": 0 + }, + { + "denom": "scorai", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "orai1065qe48g7aemju045aeyprflytemx7kecxkf5m7u5h5mphd0qlcs47pclp", + "base": "cw20:orai1065qe48g7aemju045aeyprflytemx7kecxkf5m7u5h5mphd0qlcs47pclp", + "name": "Scorai", + "display": "scorai", + "symbol": "SCORAI", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/scorai.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/scorai.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/scorai.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/scorai.svg" + } + }, + { + "description": "The TRX token is the cw20 token for the Oraichain.", + "denom_units": [ + { + "denom": "cw20:orai1c7tpjenafvgjtgm9aqwm7afnke6c56hpdms8jc6md40xs3ugd0es5encn0", + "exponent": 0 + }, + { + "denom": "wtrx", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "orai1c7tpjenafvgjtgm9aqwm7afnke6c56hpdms8jc6md40xs3ugd0es5encn0", + "base": "cw20:orai1c7tpjenafvgjtgm9aqwm7afnke6c56hpdms8jc6md40xs3ugd0es5encn0", + "name": "Wtrx", + "display": "wtrx", + "symbol": "wTRX", + "images": [ + { + "image_sync": { + "chain_name": "tron", + "base_denom": "sun" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg", + "theme": { + "circle": true, + "primary_color_hex": "#FF060A", + "background_color_hex": "#FF060A" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg" + } + }, + { + "description": "The scATOM token is the cw20 token for the Oraichain.", + "denom_units": [ + { + "denom": "cw20:orai19q4qak2g3cj2xc2y3060t0quzn3gfhzx08rjlrdd3vqxhjtat0cq668phq", + "exponent": 0 + }, + { + "denom": "scatom", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "orai19q4qak2g3cj2xc2y3060t0quzn3gfhzx08rjlrdd3vqxhjtat0cq668phq", + "base": "cw20:orai19q4qak2g3cj2xc2y3060t0quzn3gfhzx08rjlrdd3vqxhjtat0cq668phq", + "name": "scATOM", + "display": "scatom", + "symbol": "scATOM", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/scatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/scatom.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/scatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/scatom.svg" + } + }, + { + "description": "The xOCH token is the cw20 token for the Oraichain.", + "denom_units": [ + { + "denom": "cw20:orai1lplapmgqnelqn253stz6kmvm3ulgdaytn89a8mz9y85xq8wd684s6xl3lt", + "exponent": 0 + }, + { + "denom": "xoch", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "orai1lplapmgqnelqn253stz6kmvm3ulgdaytn89a8mz9y85xq8wd684s6xl3lt", + "base": "cw20:orai1lplapmgqnelqn253stz6kmvm3ulgdaytn89a8mz9y85xq8wd684s6xl3lt", + "name": "Xoch", + "display": "xoch", + "symbol": "xOCH", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/och.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/och.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/och.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/och.svg" + } + }, + { + "description": "The wETH token is the cw20 token for the Oraichain.", + "denom_units": [ + { + "denom": "cw20:orai1dqa52a7hxxuv8ghe7q5v0s36ra0cthea960q2cukznleqhk0wpnshfegez", + "exponent": 0 + }, + { + "denom": "weth", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "orai1dqa52a7hxxuv8ghe7q5v0s36ra0cthea960q2cukznleqhk0wpnshfegez", + "base": "cw20:orai1dqa52a7hxxuv8ghe7q5v0s36ra0cthea960q2cukznleqhk0wpnshfegez", + "name": "Weth", + "display": "weth", + "symbol": "wETH", + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "theme": { + "primary_color_hex": "#303030" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" + } + }, + { + "description": "The BTC token is the cw20 token for the Oraichain.", + "denom_units": [ + { + "denom": "cw20:orai10g6frpysmdgw5tdqke47als6f97aqmr8s3cljsvjce4n5enjftcqtamzsd", + "exponent": 0 + }, + { + "denom": "btc", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "orai10g6frpysmdgw5tdqke47als6f97aqmr8s3cljsvjce4n5enjftcqtamzsd", + "base": "cw20:orai10g6frpysmdgw5tdqke47als6f97aqmr8s3cljsvjce4n5enjftcqtamzsd", + "name": "Btc", + "display": "btc", + "symbol": "BTC", + "images": [ + { + "image_sync": { + "chain_name": "bitcoin", + "base_denom": "sat" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg", + "theme": { + "primary_color_hex": "#f4941c", + "background_color_hex": "#f4941c", + "circle": true + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg" + } + }, + { + "description": "The OCH token is the cw20 token for the Oraichain.", + "denom_units": [ + { + "denom": "cw20:orai1hn8w33cqvysun2aujk5sv33tku4pgcxhhnsxmvnkfvdxagcx0p8qa4l98q", + "exponent": 0 + }, + { + "denom": "och", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "orai1hn8w33cqvysun2aujk5sv33tku4pgcxhhnsxmvnkfvdxagcx0p8qa4l98q", + "base": "cw20:orai1hn8w33cqvysun2aujk5sv33tku4pgcxhhnsxmvnkfvdxagcx0p8qa4l98q", + "name": "Och", + "display": "och", + "symbol": "OCH", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/och.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/och.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/och.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/och.svg" + } + }, + { + "description": "The TON native token of Oraichain", + "extended_description": "Toincoin has been bridged from The Open Network to Oraichain.", + "denom_units": [ + { + "denom": "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/ton", + "exponent": 0, + "aliases": [ + "nanoTon" + ] + }, + { + "denom": "ton", + "exponent": 9 + } + ], + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ton", + "base_denom": "nanoton" + }, + "provider": "Oraichain Labs TON Bridge" + } + ], + "base": "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/ton", + "name": "Toncoin", + "display": "ton", + "symbol": "TON", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "ton", + "base_denom": "nanoton" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.svg", + "theme": { + "circle": true, + "primary_color_hex": "#0088CC", + "background_color_hex": "#0088CC" + } + } + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/oraichain/chain.json b/oraichain/chain.json index 083465c5f3..5c7c0e7efe 100644 --- a/oraichain/chain.json +++ b/oraichain/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://orai.io/", "pretty_name": "Oraichain", + "chain_type": "cosmos", "chain_id": "Oraichain", "bech32_prefix": "orai", "daemon_name": "oraid", @@ -71,7 +72,11 @@ "previous_version_name": "v0.40", "next_version_name": "" } - ] + ], + "cosmwasm": { + "version": "0.30.2", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.png", @@ -229,6 +234,10 @@ { "address": "https://oraichain-rpc.publicnode.com:443", "provider": "Allnodes ⚑️ Nodes & Staking" + }, + { + "address": "https://orai-rpc.imdev.app", + "provider": "imORAI" } ], "rest": [ @@ -325,6 +334,12 @@ "url": "https://explorer.stavr.tech/Orai-Mainnet", "tx_page": "https://explorer.stavr.tech/Orai-Mainnet/transactions/${txHash}", "account_page": "https://explorer.stavr.tech/Orai-Mainnet/accounts/${accountAddress}" + }, + { + "kind": "imORAI ORAIchain Explorer", + "url": "https://explorer.imdev.app/oraichain", + "tx_page": "https://explorer.imdev.app/oraichain/tx/${txHash}", + "account_page": "https://explorer.imdev.app/oraichain/account/${accountAddress}" } ], "images": [ @@ -332,7 +347,9 @@ "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": { - "primary_color_hex": "#040404" + "circle": false, + "dark_mode": false, + "primary_color_hex": "#000000" } } ] diff --git a/oraichain/images/airi.png b/oraichain/images/airi.png new file mode 100644 index 0000000000..5f7965c783 Binary files /dev/null and b/oraichain/images/airi.png differ diff --git a/oraichain/images/airi.svg b/oraichain/images/airi.svg new file mode 100644 index 0000000000..f9fb8f46a3 --- /dev/null +++ b/oraichain/images/airi.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/oraichain/images/kwt.png b/oraichain/images/kwt.png new file mode 100644 index 0000000000..7915735b07 Binary files /dev/null and b/oraichain/images/kwt.png differ diff --git a/oraichain/images/kwt.svg b/oraichain/images/kwt.svg new file mode 100644 index 0000000000..502d0ac609 --- /dev/null +++ b/oraichain/images/kwt.svg @@ -0,0 +1,3 @@ + + + diff --git a/oraichain/images/milky-token.png b/oraichain/images/milky-token.png new file mode 100644 index 0000000000..cdb822a403 Binary files /dev/null and b/oraichain/images/milky-token.png differ diff --git a/oraichain/images/milky-token.svg b/oraichain/images/milky-token.svg new file mode 100644 index 0000000000..41d61b186a --- /dev/null +++ b/oraichain/images/milky-token.svg @@ -0,0 +1,5 @@ + + + + diff --git a/oraichain/images/och.png b/oraichain/images/och.png new file mode 100644 index 0000000000..cf42a0960b Binary files /dev/null and b/oraichain/images/och.png differ diff --git a/oraichain/images/och.svg b/oraichain/images/och.svg new file mode 100644 index 0000000000..54d55df91e --- /dev/null +++ b/oraichain/images/och.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/oraichain/images/orai-token.svg b/oraichain/images/orai-token.svg new file mode 100644 index 0000000000..78b8ce59e9 --- /dev/null +++ b/oraichain/images/orai-token.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/oraichain/images/oraix.png b/oraichain/images/oraix.png new file mode 100644 index 0000000000..73f72f45d8 Binary files /dev/null and b/oraichain/images/oraix.png differ diff --git a/oraichain/images/oraix.svg b/oraichain/images/oraix.svg new file mode 100644 index 0000000000..ab34fadb97 --- /dev/null +++ b/oraichain/images/oraix.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/oraichain/images/scatom.png b/oraichain/images/scatom.png new file mode 100644 index 0000000000..8b5d74c157 Binary files /dev/null and b/oraichain/images/scatom.png differ diff --git a/oraichain/images/scatom.svg b/oraichain/images/scatom.svg new file mode 100644 index 0000000000..d90598ee3f --- /dev/null +++ b/oraichain/images/scatom.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/oraichain/images/scorai.png b/oraichain/images/scorai.png new file mode 100644 index 0000000000..5930b197aa Binary files /dev/null and b/oraichain/images/scorai.png differ diff --git a/oraichain/images/scorai.svg b/oraichain/images/scorai.svg new file mode 100644 index 0000000000..5cbc89eaf9 --- /dev/null +++ b/oraichain/images/scorai.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/osmosis/assetlist.json b/osmosis/assetlist.json index d7f72eb7ca..ee63b892ea 100644 --- a/osmosis/assetlist.json +++ b/osmosis/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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg" }, "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" } } ] @@ -1349,7 +1384,9 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg", "theme": { - "primary_color_hex": "#242424" + "circle": true, + "primary_color_hex": "#E59636", + "background_color_hex": "#000000" } } ] @@ -1425,8 +1462,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,10 +2370,18 @@ ], "type_asset": "ics20", "base": "ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD", - "name": "Vidulum", + "name": "Vidulum (Vidulum)", "display": "vdl", - "symbol": "VDL", + "symbol": "VDL.vdl", "traces": [ + { + "type": "legacy-mintage", + "counterparty": { + "chain_name": "beezee", + "base_denom": "factory/bze13gzq40che93tgfm9kzmkpjamah5nj0j73pyhqk/uvdl" + }, + "provider": "Vidulum" + }, { "type": "ibc", "counterparty": { @@ -2351,8 +2396,8 @@ } ], "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": [ { @@ -2360,8 +2405,19 @@ "chain_name": "vidulum", "base_denom": "uvdl" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg", + "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", + "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" } @@ -3466,10 +3522,18 @@ ], "type_asset": "ics20", "base": "ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788", - "name": "Racoon", + "name": "Racoon (Juno)", "display": "rac", - "symbol": "juno.RAC", + "symbol": "RAC.juno", "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac" + }, + "provider": "Racoon" + }, { "type": "ibc-cw20", "counterparty": { @@ -3559,8 +3623,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" } @@ -3585,7 +3649,7 @@ "base": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", "name": "Wrapped Bitcoin (Gravity Bridge)", "display": "gwbtc", - "symbol": "WBTC.grv", + "symbol": "WBTC.eth.grv", "traces": [ { "type": "bridge", @@ -3617,10 +3681,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", @@ -3631,9 +3697,6 @@ "theme": { "primary_color_hex": "#f39444" } - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg" } ] }, @@ -3656,7 +3719,7 @@ "base": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", "name": "Ether (Gravity Bridge)", "display": "gweth", - "symbol": "WETH.grv", + "symbol": "ETH.grv", "traces": [ { "type": "wrapped", @@ -3688,18 +3751,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" } ] }, @@ -3722,7 +3785,7 @@ "base": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", "name": "USDC (Gravity Bridge)", "display": "gusdc", - "symbol": "USDC.grv", + "symbol": "USDC.eth.grv", "traces": [ { "type": "synthetic", @@ -3754,18 +3817,23 @@ } ], "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" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } } ] }, @@ -3820,18 +3888,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" } ] }, @@ -3854,7 +3922,7 @@ "base": "ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805", "name": "Tether USD (Gravity Bridge)", "display": "gusdt", - "symbol": "USDT.grv", + "symbol": "USDT.eth.grv", "traces": [ { "type": "synthetic", @@ -3886,8 +3954,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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg" }, "images": [ { @@ -4556,9 +4624,9 @@ ], "type_asset": "ics20", "base": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", - "name": "Chainlink", + "name": "Chainlink (Axelar)", "display": "link", - "symbol": "LINK", + "symbol": "LINK.axl", "traces": [ { "type": "bridge", @@ -4582,10 +4650,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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/link.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/link.axl.svg" }, "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", @@ -4702,8 +4774,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" } @@ -4760,8 +4832,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" } @@ -4818,8 +4890,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" } @@ -4881,8 +4953,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" } @@ -4905,9 +4977,9 @@ ], "type_asset": "ics20", "base": "ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2", - "name": "Shiba Inu", + "name": "Shiba Inu (Axelar)", "display": "shib", - "symbol": "SHIB", + "symbol": "SHIB.axl", "traces": [ { "type": "bridge", @@ -4931,15 +5003,24 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shib.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shib.axl.svg" }, "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", "base_denom": "shib-wei" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "theme": { + "primary_color_hex": "#FFA409", + "background_color_hex": "#00000000" + } } ], "keywords": [ @@ -5142,10 +5223,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" } ] }, @@ -5278,7 +5356,7 @@ "base": "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", "name": "LVN", "display": "lvn", - "symbol": "kichain.LVN", + "symbol": "LVN.ki", "traces": [ { "type": "ibc-cw20", @@ -5368,11 +5446,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" } @@ -5396,10 +5474,18 @@ ], "type_asset": "ics20", "base": "ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E", - "name": "Gelotto", + "name": "Gelotto (Juno)", "display": "glto", - "symbol": "GLTO", + "symbol": "GLTO.juno", "traces": [ + { + "type": "legacy-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2" + }, + "provider": "Gelotto" + }, { "type": "ibc-cw20", "counterparty": { @@ -5416,8 +5502,8 @@ } ], "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": [ { @@ -5425,8 +5511,19 @@ "chain_name": "juno", "base_denom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg", + "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", + "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" } @@ -5629,7 +5726,8 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.svg" }, "images": [ { @@ -5638,10 +5736,29 @@ "base_denom": "orai" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png", + "theme": { + "circle": true, + "primary_color_hex": "#000000", + "background_color_hex": "#FFFFFF" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.svg" + }, + { + "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": "#040404" + "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" } } ] @@ -6715,8 +6832,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" } @@ -7114,8 +7231,16 @@ "base": "ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF", "name": "FURY.legacy", "display": "fury", - "symbol": "FURY.legacy", + "symbol": "FURY.juno", "traces": [ + { + "type": "legacy-mintage", + "counterparty": { + "chain_name": "furya", + "base_denom": "ufury" + }, + "provider": "Fanfury" + }, { "type": "ibc-cw20", "counterparty": { @@ -7858,8 +7983,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", @@ -8053,9 +8178,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", @@ -8066,12 +8191,12 @@ "provider": "Circle" }, { - "type": "additional-mintage", + "type": "bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" }, - "provider": "Circle" + "provider": "Polygon PoS Bridge" }, { "type": "bridge", @@ -8095,14 +8220,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" } ] }, @@ -8125,7 +8261,7 @@ "base": "ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C", "name": "USD Coin (Avalanche)", "display": "avalanche-usdc", - "symbol": "avalanche.USDC.axl", + "symbol": "USDC.avax.axl", "traces": [ { "type": "synthetic", @@ -8165,19 +8301,30 @@ } ], "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" } ] }, { - "description": "Mars protocol token", + "description": "Mars Protocol token (pre-migration)", "denom_units": [ { "denom": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", @@ -8187,16 +8334,24 @@ ] }, { - "denom": "mars", + "denom": "MARS.old", "exponent": 6 } ], "type_asset": "ics20", "base": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", - "name": "Mars Hub", - "display": "mars", - "symbol": "MARS", + "name": "Mars Protocol token (Mars Hub)", + "display": "MARS.old", + "symbol": "MARS.mars", "traces": [ + { + "type": "legacy-mintage", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS" + }, + "provider": "Mars Hub" + }, { "type": "ibc", "counterparty": { @@ -8211,8 +8366,8 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg" + "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" }, "images": [ { @@ -8220,10 +8375,10 @@ "chain_name": "mars", "base_denom": "umars" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg", + "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": "#d43c3f" + "primary_color_hex": "#000000" } } ] @@ -8400,6 +8555,7 @@ }, { "description": "nRide Token", + "extended_description": "nRide is developing a uber-like ride-hailing protocol, leveraging cosmwasm smart-contracts for payment, driver registration and text-messaging between the rider and the driver, to create a trustless public transportation environment for any cab or taxi company to use.", "denom_units": [ { "denom": "ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C", @@ -10000,6 +10156,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": { @@ -10190,9 +10350,9 @@ ], "type_asset": "ics20", "base": "ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6", - "name": "Arbitrum", + "name": "Arbitrum (Axelar)", "display": "arb", - "symbol": "ARB", + "symbol": "ARB.axl", "traces": [ { "type": "bridge", @@ -10216,10 +10376,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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/arb.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/arb.axl.svg" }, "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", @@ -10355,9 +10519,9 @@ ], "type_asset": "ics20", "base": "ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B", - "name": "Pepe", + "name": "Pepe (Axelar)", "display": "pepe", - "symbol": "PEPE", + "symbol": "PEPE.axl", "traces": [ { "type": "bridge", @@ -10381,10 +10545,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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.axl.svg" }, "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", @@ -10485,8 +10653,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": { @@ -10552,8 +10720,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": { @@ -10585,7 +10753,7 @@ "symbol": "sfrxETH", "traces": [ { - "type": "liquid-stake", + "type": "synthetic", "counterparty": { "chain_name": "ethereum", "base_denom": "wei" @@ -10593,7 +10761,7 @@ "provider": "Frax" }, { - "type": "wrapped", + "type": "liquid-stake", "counterparty": { "chain_name": "ethereum", "base_denom": "0x5e8422345238f34275888049021821e8e08caa1f" @@ -10627,8 +10795,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" } @@ -10653,7 +10821,7 @@ "base": "ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C", "name": "Wrapped Lido Staked Ether (Axelar)", "display": "wsteth", - "symbol": "wstETH.axl", + "symbol": "wstETH.eth.axl", "traces": [ { "type": "liquid-stake", @@ -10664,7 +10832,7 @@ "provider": "Lido" }, { - "type": "wrapped", + "type": "liquid-stake", "counterparty": { "chain_name": "ethereum", "base_denom": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84" @@ -10693,18 +10861,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" } ] }, @@ -11111,7 +11279,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 } } ] @@ -11284,8 +11454,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" } @@ -11309,9 +11479,9 @@ ], "type_asset": "ics20", "base": "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", - "name": "Polkadot", + "name": "Polkadot (Picasso)", "display": "dot", - "symbol": "DOT", + "symbol": "DOT.pica", "traces": [ { "type": "bridge", @@ -11319,7 +11489,7 @@ "chain_name": "polkadot", "base_denom": "Planck" }, - "provider": "Polkadot Relay" + "provider": "Polkadot Parachain" }, { "type": "ibc", @@ -11359,10 +11529,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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.pica.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.pica.svg" }, "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", @@ -11466,8 +11640,8 @@ } ], "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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg" }, "images": [ { @@ -11475,8 +11649,8 @@ "chain_name": "archway", "base_denom": "aarch" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg", "theme": { "primary_color_hex": "#fc4c04" } @@ -11526,7 +11700,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 + } } ] }, @@ -11651,9 +11838,9 @@ ], "type_asset": "ics20", "base": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "name": "Tether USD", + "name": "Tether USD (Kava)", "display": "usdt", - "symbol": "USDT", + "symbol": "USDT.kava", "traces": [ { "type": "synthetic", @@ -11685,8 +11872,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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.svg" }, "images": [ { @@ -11985,9 +12172,9 @@ ], "type_asset": "ics20", "base": "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", - "name": "Solana", + "name": "Solana (Wormhole)", "display": "wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8", - "symbol": "SOL", + "symbol": "SOL.wh", "traces": [ { "type": "wrapped", @@ -12019,15 +12206,25 @@ } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.wh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.wh.svg" }, "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", "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA" }, - "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" + } } ] }, @@ -12080,8 +12277,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": { @@ -12108,9 +12305,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", @@ -12142,8 +12339,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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.svg" }, "images": [ { @@ -12155,8 +12352,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", @@ -12217,8 +12414,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" } @@ -12268,21 +12465,21 @@ } ], "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" } ] }, @@ -12405,9 +12602,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", @@ -12439,18 +12636,23 @@ } ], "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": [ { - "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - }, - "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" }, { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg" + "image_sync": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } } ] }, @@ -12472,9 +12674,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", @@ -12506,10 +12708,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", @@ -12520,9 +12724,6 @@ "theme": { "primary_color_hex": "#303030" } - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg" } ] }, @@ -12578,23 +12779,33 @@ } ], "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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "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, + "primary_color_hex": "#2775CA" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png" + }, { "image_sync": { "chain_name": "noble", "base_denom": "uusdc" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primary_color_hex": "#2474cc" + "circle": true, + "primary_color_hex": "#2775CA" } - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] }, @@ -12656,8 +12867,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", @@ -13338,10 +13549,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", @@ -13352,9 +13568,6 @@ "theme": { "primary_color_hex": "#21212f" } - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg" } ] }, @@ -13683,7 +13896,7 @@ "provider": "Lido" }, { - "type": "wrapped", + "type": "liquid-stake", "counterparty": { "chain_name": "ethereum", "base_denom": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84" @@ -13691,12 +13904,12 @@ "provider": "Lido" }, { - "type": "additional-mintage", + "type": "bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" }, - "provider": "Lido" + "provider": "Lido wstETH Cosmos Bridge" }, { "type": "ibc", @@ -13717,8 +13930,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" } @@ -14142,8 +14355,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" } @@ -14457,7 +14670,7 @@ ], "type_asset": "ics20", "base": "ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493", - "name": "RAC", + "name": "Racoon", "display": "RAC", "symbol": "RAC", "traces": [ @@ -14696,8 +14909,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", @@ -14724,7 +14937,7 @@ ], "type_asset": "ics20", "base": "ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519", - "name": "PURSE Token (Function X)", + "name": "PURSE Token", "display": "PURSE", "symbol": "PURSE", "traces": [ @@ -14963,9 +15176,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": { @@ -15754,16 +15990,8 @@ "base": "ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7", "name": "Gelotto (Injective)", "display": "glto", - "symbol": "injective.GLTO", + "symbol": "GLTO", "traces": [ - { - "type": "additional-mintage", - "counterparty": { - "chain_name": "juno", - "base_denom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se" - }, - "provider": "Gelotto" - }, { "type": "bridge", "counterparty": { @@ -15786,8 +16014,8 @@ } ], "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": [ { @@ -15795,8 +16023,19 @@ "chain_name": "ethereum", "base_denom": "0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2" }, - "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", + "theme": { + "primary_color_hex": "#501cad" + } + }, + { + "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" } @@ -15905,10 +16144,18 @@ ], "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", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro" + }, + "provider": "Astroport" + }, { "type": "ibc-cw20", "counterparty": { @@ -15934,6 +16181,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" + } } ] }, @@ -15985,9 +16243,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", @@ -16027,22 +16285,28 @@ } ], "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } } ] }, @@ -16370,8 +16634,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": { @@ -16483,8 +16747,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": { @@ -16788,23 +17052,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" } @@ -16935,7 +17198,7 @@ ], "type_asset": "ics20", "base": "ibc/B84F8CC583A54DA8173711C0B66B22FDC1954FEB1CA8DBC66C89919DAFE02000", - "name": "Gelotto BEAST (Peggy)", + "name": "Gelotto BEAST", "display": "beast", "symbol": "BEAST", "traces": [ @@ -17174,6 +17437,16 @@ "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bOSMO.png" }, + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo" + }, + "provider": "BackBoneLabs" + } + ], "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bOSMO.png", @@ -17231,7 +17504,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": { @@ -17301,8 +17589,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" } @@ -17356,8 +17644,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": { @@ -17400,6 +17688,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": { @@ -17448,6 +17740,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": { @@ -17501,10 +17797,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", @@ -17516,14 +17820,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 - } } ] }, @@ -17612,7 +17908,11 @@ } } ], - "images": [ + "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": { "chain_name": "shido", @@ -17805,6 +18105,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": { @@ -18088,7 +18392,14 @@ "primary_color_hex": "#e7754f" } } - ] + ], + "keywords": [ + "memecoin" + ], + "socials": { + "website": "https://bernesechain.github.io", + "twitter": "https://twitter.com/bernesechain" + } }, { "description": "The native token of Ethereum, bridged via IBC.", @@ -18108,7 +18419,7 @@ ], "type_asset": "ics20", "base": "ibc/A23E590BA7E0D808706FB5085A449B3B9D6864AE4DDE7DAF936243CEBB2A3D43", - "name": "Ethereum", + "name": "Ethereum (Picasso)", "display": "eth", "symbol": "ETH.pica", "traces": [ @@ -18137,11 +18448,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", @@ -18169,7 +18486,7 @@ ], "type_asset": "ics20", "base": "ibc/37DFAFDA529FF7D513B0DB23E9728DF9BF73122D38D46824C78BB7F91E6A736B", - "name": "Dai", + "name": "Dai Stablecoin (Picasso)", "display": "dai", "symbol": "DAI.pica", "traces": [ @@ -18206,11 +18523,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" } @@ -18234,7 +18557,7 @@ ], "type_asset": "ics20", "base": "ibc/5435437A8C9416B650DDA49C338B63CCFC6465123B715F6BAA9B1B2071E27913", - "name": "Frax Shares", + "name": "Frax Share (Picasso)", "display": "fxs", "symbol": "FXS.pica", "traces": [ @@ -18263,11 +18586,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", @@ -18295,7 +18624,7 @@ ], "type_asset": "ics20", "base": "ibc/9A8CBC029002DC5170E715F93FBF35011FFC9796371F59B1F3C3094AE1B453A9", - "name": "Frax", + "name": "Frax (Picasso)", "display": "frax", "symbol": "FRAX.pica", "traces": [ @@ -18332,11 +18661,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" } @@ -18360,9 +18695,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", @@ -18397,6 +18732,10 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.svg" + }, "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.svg", @@ -18407,8 +18746,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", @@ -18438,7 +18777,7 @@ ], "type_asset": "ics20", "base": "ibc/0EFA07F312E05258A56AE1DD600E39B9151CF7A91C8A94EEBCF4F03ECFE5DD98", - "name": "Staked FRAX", + "name": "Staked FRAX (Picasso)", "display": "sfrax", "symbol": "sFRAX.pica", "traces": [ @@ -18483,11 +18822,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", @@ -18515,12 +18860,12 @@ ], "type_asset": "ics20", "base": "ibc/688E70EF567E5D4BA1CF4C54BAD758C288BC1A6C8B0B12979F911A2AE95E27EC", - "name": "Frax Ether", + "name": "Frax Ether (Picasso)", "display": "frxeth", "symbol": "frxETH.pica", "traces": [ { - "type": "liquid-stake", + "type": "synthetic", "counterparty": { "chain_name": "ethereum", "base_denom": "wei" @@ -18552,11 +18897,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", @@ -18584,12 +18935,12 @@ ], "type_asset": "ics20", "base": "ibc/F17CCB4F07948CC2D8B72952C2D0A84F2B763962F698774BB121B872AE4611B5", - "name": "Frax Staked Ether", + "name": "Staked Frax Ether (Picasso)", "display": "sfrxeth", "symbol": "sfrxETH.pica", "traces": [ { - "type": "liquid-stake", + "type": "synthetic", "counterparty": { "chain_name": "ethereum", "base_denom": "wei" @@ -18597,7 +18948,7 @@ "provider": "Frax" }, { - "type": "wrapped", + "type": "liquid-stake", "counterparty": { "chain_name": "ethereum", "base_denom": "0x5e8422345238f34275888049021821e8e08caa1f" @@ -18629,11 +18980,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" } @@ -18673,6 +19030,9 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png" + }, "images": [ { "image_sync": { @@ -18720,6 +19080,9 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png" + }, "images": [ { "image_sync": { @@ -18839,8 +19202,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", @@ -18893,6 +19256,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": { @@ -19080,6 +19447,9 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/afa.png" + }, "images": [ { "image_sync": { @@ -19396,7 +19766,7 @@ ], "type_asset": "ics20", "base": "ibc/5B5BFCC8A9F0D554A4245117F7798E85BE25B6C73DBFA2D6F369BD9DD6CACC6D", - "name": "Pepe", + "name": "Pepe (Picasso)", "display": "pepe", "symbol": "PEPE.pica", "traces": [ @@ -19425,11 +19795,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", @@ -19460,7 +19836,7 @@ ], "type_asset": "ics20", "base": "ibc/080CE38C1E49595F2199E88BE7281F93FAEEF3FE354EECED0640625E8311C9CF", - "name": "Curve DAO", + "name": "Curve DAO (Picasso)", "display": "crv", "symbol": "CRV.pica", "traces": [ @@ -19489,11 +19865,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": { @@ -19523,7 +19905,7 @@ ], "type_asset": "ics20", "base": "ibc/39AAE0F5F918B731BEF1E02E9BAED33C242805F668B0A941AC509FB569FE51CB", - "name": "Renzo Restaked ETH", + "name": "Renzo Restaked ETH (Picasso)", "display": "ezeth", "symbol": "ezETH.pica", "traces": [ @@ -19536,7 +19918,7 @@ "provider": "Renzo" }, { - "type": "ibc", + "type": "ibc-bridge", "counterparty": { "chain_name": "ethereum", "base_denom": "0xbf5495efe5db9ce00f80364c8b423567e58d2110", @@ -19545,13 +19927,14 @@ "chain": { "channel_id": "channel-52", "path": "transfer/channel-52/0xbf5495efe5db9ce00f80364c8b423567e58d2110" - } + }, + "provider": "Picasso" }, { "type": "ibc", "counterparty": { "chain_name": "composable", - "base_denom": "ibc/0247E0E2C174135AADF4EA172D97FF5C15A64689A403E83603EAE4F0616DD365", + "base_denom": "ibc/E317539F148285AAC77E7614101CBE94E20EDF169B233A5E0C867112972F9041", "channel_id": "channel-3" }, "chain": { @@ -19560,11 +19943,17 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ezeth.pica.png" + }, "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ezeth.pica.png" + }, { "image_sync": { - "chain_name": "ethereum", - "base_denom": "0xbf5495efe5db9ce00f80364c8b423567e58d2110" + "chain_name": "composable", + "base_denom": "ibc/E317539F148285AAC77E7614101CBE94E20EDF169B233A5E0C867112972F9041" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ezeth.png", "theme": { @@ -19594,7 +19983,7 @@ ], "type_asset": "ics20", "base": "ibc/BFFE212A23384C4EB055CF6F95A1F5EC1BE0F9BD286FAA66C3748F0444E67D63", - "name": "Ethena USDe", + "name": "Ethena USDe (Picasso)", "display": "usde", "symbol": "USDe.pica", "traces": [ @@ -19631,11 +20020,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": { @@ -19665,7 +20060,7 @@ ], "type_asset": "ics20", "base": "ibc/257FF64F160106F6EE43CEE7C761DA64C1346221895373CC810FFA1BFAC5A7CD", - "name": "Ethena", + "name": "Ethena (Picasso)", "display": "ena", "symbol": "ENA.pica", "traces": [ @@ -19694,11 +20089,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": { @@ -19728,7 +20129,7 @@ ], "type_asset": "ics20", "base": "ibc/8D0FFEA4EDB04E3C1738C9599B66AE49683E0540FC4C1214AC84534C200D818B", - "name": "ether.fi Staked ETH", + "name": "ether.fi Staked ETH (Picasso)", "display": "eeth", "symbol": "eETH.pica", "traces": [ @@ -19765,11 +20166,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": { @@ -19799,7 +20206,7 @@ ], "type_asset": "ics20", "base": "ibc/D09BB89B2187EF13EF006B44510749B0F02FD0B34F8BB55C70D812A1FF6148C7", - "name": "Dinero Staked ETH", + "name": "Dinero Staked ETH (Picasso)", "display": "pxeth", "symbol": "pxETH.pica", "traces": [ @@ -19836,11 +20243,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": { @@ -19870,7 +20283,7 @@ ], "type_asset": "ics20", "base": "ibc/63551E7BB24008F0AFC1CB051A423A5104F781F035F8B1A191264B7086A0A0F6", - "name": "crvUSD", + "name": "crvUSD (Picasso)", "display": "crvusd", "symbol": "crvUSD.pica", "traces": [ @@ -19907,11 +20320,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": { @@ -20030,9 +20449,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", @@ -20075,6 +20494,10 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.svg" + }, "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.svg", @@ -20085,8 +20508,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", @@ -20118,7 +20541,7 @@ ], "type_asset": "ics20", "base": "ibc/B83F9E20B4A07FA8846880000BD9D8985D89567A090F5E9390C64E81C39B4607", - "name": "Edgevana Staked SOL", + "name": "Edgevana Staked SOL (Picasso)", "display": "edgesol", "symbol": "edgeSOL.pica", "traces": [ @@ -20155,11 +20578,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": { @@ -20188,7 +20617,7 @@ ], "type_asset": "ics20", "base": "ibc/F618D130A2B8203D169811658BD0361F18DC2453085965FA0E5AEB8018DD54EE", - "name": "Liquid Staking Token", + "name": "Liquid Staking Token (Picasso)", "display": "lst", "symbol": "LST.pica", "traces": [ @@ -20225,15 +20654,21 @@ } } ], + "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/msol.png", "theme": { - "primary_color_hex": "#dbdbdb" + "primary_color_hex": "#cbebe3" } } ], @@ -20258,7 +20693,7 @@ ], "type_asset": "ics20", "base": "ibc/9A83BDF4C8C5FFDDE735533BC8CD4363714A6474AED1C2C492FB003BB77C7982", - "name": "Jito Staked SOL", + "name": "Jito Staked SOL (Picasso)", "display": "jitosol", "symbol": "jitoSOL.pica", "traces": [ @@ -20295,11 +20730,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": { @@ -20329,9 +20770,9 @@ ], "type_asset": "ics20", "base": "ibc/0F9E9277B61A78CB31014D541ACA5BF6AB06DFC4524C4C836490B131DAAECD78", - "name": "Wrapped Solana", + "name": "Solana (Picasso)", "display": "wsol", - "symbol": "wSOL.pica", + "symbol": "SOL.pica", "traces": [ { "type": "wrapped", @@ -20366,13 +20807,24 @@ } } ], + "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" + "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" + } } ], "keywords": [ @@ -20395,9 +20847,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", @@ -20416,10 +20868,11 @@ "provider": "Osmosis" } ], + "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" + }, "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allUSDT.svg" - }, { "image_sync": { "chain_name": "ethereum", @@ -20432,6 +20885,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": [ @@ -20485,6 +20950,9 @@ } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/whine.png" + }, "images": [ { "image_sync": { @@ -20546,9 +21014,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", @@ -20559,648 +21027,658 @@ "provider": "Osmosis" } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg" + }, "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" } ] }, { - "description": "The native token of Furya", + "description": "N43 a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12", + "denom": "ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58", "exponent": 0, "aliases": [ - "ufury" + "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D" ] }, { - "denom": "fury", + "denom": "n43", "exponent": 6 } ], "type_asset": "ics20", - "base": "ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12", - "name": "furya", - "display": "fury", - "symbol": "FURY", + "base": "ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58", + "name": "N43 Fantoken", + "display": "n43", + "symbol": "N43", "traces": [ { "type": "ibc", "counterparty": { - "chain_name": "furya", - "base_denom": "ufury", - "channel_id": "channel-3" + "chain_name": "bitsong", + "base_denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", + "channel_id": "channel-0" }, "chain": { - "channel_id": "channel-8690", - "path": "transfer/channel-8690/ufury" + "channel_id": "channel-73", + "path": "transfer/channel-73/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D" } } ], "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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png" }, "images": [ { "image_sync": { - "chain_name": "furya", - "base_denom": "ufury" + "chain_name": "bitsong", + "base_denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D" }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png", "theme": { - "primary_color_hex": "#040404" + "primary_color_hex": "#0a0a0a" } } - ], - "keywords": [ - "gaming", - "staking" ] }, { - "description": "PUNDIX token is the native token that functions within the Pundi X ecosystem, including PundiX Chain and XPOS.", + "description": "Rakoff Token is the Meme Token for Terra Classic", "denom_units": [ { - "denom": "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", + "denom": "ibc/46579C587A0B8CF8B0A1FF6B0EFA2082F11876578E47FC81A9CAAD31F424AF98", "exponent": 0, "aliases": [ - "ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78" + "cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2" ] }, { - "denom": "PUNDIX", - "exponent": 18 + "denom": "rakoff", + "exponent": 6 } ], "type_asset": "ics20", - "base": "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", - "name": "Pundi X Token", - "display": "PUNDIX", - "symbol": "PUNDIX", + "base": "ibc/46579C587A0B8CF8B0A1FF6B0EFA2082F11876578E47FC81A9CAAD31F424AF98", + "name": "Rakoff Token", + "display": "rakoff", + "symbol": "RAKOFF", "traces": [ { - "type": "ibc", + "type": "ibc-cw20", "counterparty": { - "chain_name": "fxcore", - "base_denom": "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", - "channel_id": "channel-0" + "chain_name": "terra", + "base_denom": "cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2", + "port": "wasm.terra19pfxzj9580h7rjd6z6sn5x2se76vgrc0etltr79g9z3t82jzp4hq63qguc", + "channel_id": "channel-108" }, "chain": { - "channel_id": "channel-0", - "path": "transfer/channel-0/eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38" - } - }, - { - "type": "ibc", - "counterparty": { - "chain_name": "pundix", - "base_denom": "ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78", - "channel_id": "channel-1" - }, - "chain": { - "channel_id": "channel-12618", - "path": "transfer/channel-12618/transfer/channel-0/eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38" + "port": "transfer", + "channel_id": "channel-78488", + "path": "transfer/channel-78488/cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png", - "theme": { - "primary_color_hex": "#f1d20c" - } + "image_sync": { + "chain_name": "terra", + "base_denom": "cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png" } - ], - "keywords": [ - "osmosis_unlisted" ] }, { - "description": "The native token of dHealth", "denom_units": [ { - "denom": "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", + "denom": "ibc/64E62451C9A5682FF3047429C6E4714A02CDC0C35DE35CAB01E18D1188004CEB", "exponent": 0, "aliases": [ - "udhp" + "arbitrum-weth-wei" ] }, { - "denom": "dhp", - "exponent": 6 + "denom": "arbitrum-weth", + "exponent": 18 } ], "type_asset": "ics20", - "base": "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", - "name": "dHealth", - "display": "dhp", - "symbol": "DHP", + "base": "ibc/64E62451C9A5682FF3047429C6E4714A02CDC0C35DE35CAB01E18D1188004CEB", + "name": "Wrapped Ether (Arbitrum via Axelar)", + "display": "arbitrum-weth", + "symbol": "ETH.arb.axl", "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "Ethereum" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + "provider": "Arbitrum Bridge" + }, + { + "type": "wrapped", + "counterparty": { + "chain_name": "arbitrum", + "base_denom": "wei" + }, + "provider": "Arbitrum" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "arbitrum", + "base_denom": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1" + }, + "provider": "Axelar" + }, { "type": "ibc", "counterparty": { - "chain_name": "dhealth", - "base_denom": "udhp", - "channel_id": "channel-1" + "chain_name": "axelar", + "base_denom": "arbitrum-weth-wei", + "channel_id": "channel-3" }, "chain": { - "channel_id": "channel-38776", - "path": "transfer/channel-38776/udhp" + "channel_id": "channel-208", + "path": "transfer/channel-208/arbitrum-weth-wei" } } ], "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" + "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": "dhealth", - "base_denom": "udhp" + "chain_name": "axelar", + "base_denom": "arbitrum-weth-wei" }, - "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", - "theme": { - "primary_color_hex": "#140c7c" - } + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" } - ], - "keywords": [ - "osmosis_unlisted" ] }, { - "description": "The native EVM and Wasm, governance and staking token of the Shido Chain", "denom_units": [ { - "denom": "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", + "denom": "ibc/D7D6DEF2A4F7ED0A6F5F0E266C1B2C9726E82F67EBBE49BBB47B3DEC289F8D7B", "exponent": 0, "aliases": [ - "shido" + "base-weth-wei" ] }, { - "denom": "SHIDO", + "denom": "base-weth", "exponent": 18 } ], "type_asset": "ics20", - "base": "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", - "name": "Shido", - "display": "SHIDO", - "symbol": "SHIDO", + "base": "ibc/D7D6DEF2A4F7ED0A6F5F0E266C1B2C9726E82F67EBBE49BBB47B3DEC289F8D7B", + "name": "Wrapped Ether (Base via Axelar)", + "display": "base-weth", + "symbol": "ETH.base.axl", "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "Base Bridge" + }, + { + "type": "wrapped", + "counterparty": { + "chain_name": "base", + "base_denom": "wei" + }, + "provider": "Base" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "base", + "base_denom": "0x4200000000000000000000000000000000000006" + }, + "provider": "Axelar" + }, { "type": "ibc", "counterparty": { - "chain_name": "shido", - "base_denom": "shido", - "channel_id": "channel-0" + "chain_name": "axelar", + "base_denom": "base-weth-wei", + "channel_id": "channel-3" }, "chain": { - "channel_id": "channel-38921", - "path": "transfer/channel-38921/shido" + "channel_id": "channel-208", + "path": "transfer/channel-208/base-weth-wei" } } ], "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" + "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": "shido", - "base_denom": "shido" + "chain_name": "axelar", + "base_denom": "base-weth-wei" }, - "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", - "theme": { - "primary_color_hex": "#046ffc" - } + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" } - ], - "keywords": [ - "osmosis_unlisted" ] }, { - "description": "The Revenue & Governance token of Unstake.fi", "denom_units": [ { - "denom": "ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7", + "denom": "ibc/F9EB60AC212DBF05F4C5ED0FDE03BB9F08309B0EE9899A406AD4B904CF84968E", "exponent": 0, "aliases": [ - "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk" + "polygon-weth-wei" ] }, { - "denom": "nstk", - "exponent": 6 + "denom": "polygon-weth", + "exponent": 18 } ], "type_asset": "ics20", - "base": "ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7", - "name": "Unstake Fi", - "display": "nstk", - "symbol": "NSTK", + "base": "ibc/F9EB60AC212DBF05F4C5ED0FDE03BB9F08309B0EE9899A406AD4B904CF84968E", + "name": "Wrapped Ether (Polygon via Axelar)", + "display": "polygon-weth", + "symbol": "ETH.matic.axl", "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" + }, + "provider": "Ethereum" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + "provider": "Polygon PoS Bridge" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "polygon", + "base_denom": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619" + }, + "provider": "Axelar" + }, { "type": "ibc", "counterparty": { - "chain_name": "kujira", - "base_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "chain_name": "axelar", + "base_denom": "polygon-weth-wei", "channel_id": "channel-3" }, "chain": { - "channel_id": "channel-259", - "path": "transfer/channel-259/factory:kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh:unstk" + "channel_id": "channel-208", + "path": "transfer/channel-208/polygon-weth-wei" } } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg" + "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": "kujira", - "base_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk" + "chain_name": "axelar", + "base_denom": "polygon-weth-wei" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" } ] }, { "denom_units": [ { - "denom": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", + "denom": "ibc/245C3CA604AAB4BB9EEA5E86F23F52D59253D8722C8FC9C4E3E69F77C5CD3D2F", "exponent": 0, "aliases": [ - "avalanche-uusdc" + "staISLM" ] }, { - "denom": "avalanche-usdc", - "exponent": 6 + "denom": "stISLM", + "exponent": 18 } ], "type_asset": "ics20", - "base": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", - "name": "Wormhole USDC(Avalanche)", - "display": "avalanche-usdc", - "symbol": "avalanche.USDC.wh", + "base": "ibc/245C3CA604AAB4BB9EEA5E86F23F52D59253D8722C8FC9C4E3E69F77C5CD3D2F", + "name": "Stride Staked ISLM", + "display": "stISLM", + "symbol": "stISLM", "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "haqq", + "base_denom": "aISLM" + }, + "provider": "Stride" + }, { "type": "ibc", "counterparty": { - "chain_name": "gateway", - "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", - "channel_id": "channel-3" + "chain_name": "stride", + "base_denom": "staISLM", + "channel_id": "channel-5" }, "chain": { - "channel_id": "channel-2186", - "path": "transfer/channel-2186/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4" + "channel_id": "channel-326", + "path": "transfer/channel-326/staISLM" } } ], + "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": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg", + "image_sync": { + "chain_name": "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": { - "primary_color_hex": "#2474cb" + "primary_color_hex": "#e40474" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg" - } + ] }, { - "description": "Nomic's native token.", + "description": "The native token of Mande Network.", + "extended_description": "Mande network is an open on-chain reputation layer on Web3", "denom_units": [ { - "denom": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", + "denom": "ibc/739D70CB432FE1C6D94AF306B68C14F4CFB0B9EDD1238D3A8718B1B0E84E8547", "exponent": 0, "aliases": [ - "unom" + "amand", + "ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF" ] }, { - "denom": "nom", - "exponent": 6 + "denom": "mand", + "exponent": 18 } ], "type_asset": "ics20", - "base": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", - "name": "Nomic", - "display": "nom", - "symbol": "nomic.NOM", + "base": "ibc/739D70CB432FE1C6D94AF306B68C14F4CFB0B9EDD1238D3A8718B1B0E84E8547", + "name": "Mande Network", + "display": "mand", + "symbol": "MAND", "traces": [ { "type": "ibc", "counterparty": { - "chain_name": "nomic", - "base_denom": "unom", - "channel_id": "channel-1" + "chain_name": "mande", + "base_denom": "amand", + "channel_id": "channel-0" }, "chain": { - "channel_id": "channel-6897", - "path": "transfer/channel-6897/unom" + "channel_id": "channel-51", + "path": "transfer/channel-51/amand" } - } - ], - "images": [ + }, { - "image_sync": { - "chain_name": "nomic", - "base_denom": "unom" + "type": "ibc", + "counterparty": { + "chain_name": "dymension", + "base_denom": "ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF", + "channel_id": "channel-2" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg", - "theme": { - "primary_color_hex": "#6404fc" + "chain": { + "channel_id": "channel-19774", + "path": "transfer/channel-19774/transfer/channel-51/amand" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg" - } - }, - { - "description": "The governance and utility token of Yieldmos, the Interchain Automation Protocol", - "denom_units": [ - { - "denom": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", - "exponent": 0 - }, - { - "denom": "ymos", - "exponent": 6 - } - ], - "type_asset": "sdk.coin", - "address": "osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy", - "base": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", - "name": "Yieldmos Coin", - "display": "ymos", - "symbol": "YMOS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png" + "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" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png", + "image_sync": { + "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", "theme": { - "primary_color_hex": "#2c3554" + "primary_color_hex": "#274cbf" } } - ] - }, - { - "description": "Memecoin for The International Brane Wave", - "denom_units": [ - { - "denom": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", - "exponent": 0, - "aliases": [ - "brnz" - ] - } ], - "base": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", - "name": "Branez", - "display": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", - "symbol": "BRNZ", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BRNZ.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BRNZ.svg" - } - ] - }, - { - "description": "ashLAB - Burned LAB", - "extended_description": "ashLAB - receipt token recieved when burning LAB via ASH DAOs Furnace", - "denom_units": [ - { - "denom": "factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash", - "exponent": 0 - }, - { - "denom": "ashLAB", - "exponent": 6 - } + "keywords": [ + "credibility", + "identity", + "osmosis_unstable" ], - "type_asset": "sdk.coin", - "address": "osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07", - "base": "factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash", - "name": "Burned LAB", - "display": "ashLAB", - "symbol": "ashLAB", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ashLAB.png" - }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ashLAB.png", - "theme": { - "primary_color_hex": "#ebb093" - } - } - ] + "socials": { + "website": "https://mande.network/", + "twitter": "https://twitter.com/MandeNetwork" + } }, { - "description": "GRAC is the official token of Racoon.Bet's gaming platform.", + "description": "The native token of Neutaro", "denom_units": [ { - "denom": "ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829", + "denom": "ibc/DAED51CBD967A3BE0C467687970AFD97B202AFE4A1718B36936F49178AFE0133", "exponent": 0, "aliases": [ - "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac" + "uneutaro" ] }, { - "denom": "grac", + "denom": "neutaro", "exponent": 6 } ], "type_asset": "ics20", - "base": "ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829", - "name": "Gaming RAC Token", - "display": "grac", - "symbol": "GRAC", + "base": "ibc/DAED51CBD967A3BE0C467687970AFD97B202AFE4A1718B36936F49178AFE0133", + "name": "Neutaro", + "display": "neutaro", + "symbol": "NTMPI", "traces": [ { "type": "ibc", "counterparty": { - "chain_name": "migaloo", - "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac", - "channel_id": "channel-5" + "chain_name": "neutaro", + "base_denom": "uneutaro", + "channel_id": "channel-4" }, "chain": { - "channel_id": "channel-642", - "path": "transfer/channel-642/factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac" + "channel_id": "channel-79092", + "path": "transfer/channel-79092/uneutaro" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png" + "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": "migaloo", - "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac" + "chain_name": "neutaro", + "base_denom": "uneutaro" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png", + "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": { - "primary_color_hex": "#f5bf09" + "primary_color_hex": "#cbfb06" } } ] }, { - "description": "N43 a BitSong Music FanToken", + "description": "Pepe Bruce Jenner", "denom_units": [ { - "denom": "ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58", + "denom": "ibc/E0D6A7FFAE26FA90C8F1AA3461A5A21E74DB154F183EAE56C96769F48F81FCA2", "exponent": 0, "aliases": [ - "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D" + "ANu4Wuq86WzRU8tykszQUJ66eQzFNfkwap2HcQ5UaFaU", + "wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP", + "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP" ] }, { - "denom": "n43", - "exponent": 6 + "denom": "wormhole/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP/6", + "exponent": 6, + "aliases": [ + "pbj", + "PBJ" + ] } ], "type_asset": "ics20", - "base": "ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58", - "name": "N43 FanToken", - "display": "n43", - "symbol": "N43", + "base": "ibc/E0D6A7FFAE26FA90C8F1AA3461A5A21E74DB154F183EAE56C96769F48F81FCA2", + "name": "Pepe Bruce Jenner", + "display": "wormhole/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP/6", + "symbol": "PBJ", "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "solana", + "base_denom": "ANu4Wuq86WzRU8tykszQUJ66eQzFNfkwap2HcQ5UaFaU" + }, + "provider": "Wormhole" + }, { "type": "ibc", "counterparty": { - "chain_name": "bitsong", - "base_denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", - "channel_id": "channel-0" + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP", + "channel_id": "channel-3" }, "chain": { - "channel_id": "channel-73", - "path": "transfer/channel-73/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D" + "channel_id": "channel-2186", + "path": "transfer/channel-2186/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP" } } ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pbj.png" + }, "images": [ { "image_sync": { - "chain_name": "bitsong", - "base_denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D" + "chain_name": "solana", + "base_denom": "ANu4Wuq86WzRU8tykszQUJ66eQzFNfkwap2HcQ5UaFaU" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pbj.png", "theme": { - "primary_color_hex": "#0a0a0a" + "primary_color_hex": "#488000", + "background_color_hex": "#ee0000" } } ] }, { - "description": "The native token of Mande Network.", - "extended_description": "Mande network is an open on-chain reputation layer on Web3", + "description": "Ondo US Dollar Yield", "denom_units": [ { - "denom": "ibc/739D70CB432FE1C6D94AF306B68C14F4CFB0B9EDD1238D3A8718B1B0E84E8547", + "denom": "ibc/23104D411A6EB6031FA92FB75F227422B84989969E91DCAD56A535DD7FF0A373", "exponent": 0, "aliases": [ - "amand", - "ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF" + "attousdy", + "ausdy" ] }, { - "denom": "mand", + "denom": "usdy", "exponent": 18 } ], "type_asset": "ics20", - "base": "ibc/739D70CB432FE1C6D94AF306B68C14F4CFB0B9EDD1238D3A8718B1B0E84E8547", - "name": "Mande Network", - "display": "mand", - "symbol": "MAND", + "base": "ibc/23104D411A6EB6031FA92FB75F227422B84989969E91DCAD56A535DD7FF0A373", + "name": "Ondo US Dollar Yield", + "display": "usdy", + "symbol": "USDY", "traces": [ { "type": "ibc", "counterparty": { - "chain_name": "mande", - "base_denom": "amand", - "channel_id": "channel-0" - }, - "chain": { - "channel_id": "channel-51", - "path": "transfer/channel-51/amand" - } - }, - { - "type": "ibc", - "counterparty": { - "chain_name": "dymension", - "base_denom": "ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF", - "channel_id": "channel-2" + "chain_name": "noble", + "base_denom": "ausdy", + "channel_id": "channel-1" }, "chain": { - "channel_id": "channel-19774", - "path": "transfer/channel-19774/transfer/channel-51/amand" + "channel_id": "channel-750", + "path": "transfer/channel-750/ausdy" } } ], "logo_URIs": { - "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" + "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": "dymension", - "base_denom": "ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF" + "chain_name": "noble", + "base_denom": "ausdy" }, - "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" + "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": { + "primary_color_hex": "#142c5c" + } } - ], - "keywords": [ - "credibility", - "identity", - "osmosis_unstable" - ], - "socials": { - "website": "https://mande.network/", - "twitter": "https://twitter.com/MandeNetwork" - } + ] }, { "description": "Jacob Haertnellez Turtle. Launched by Jake's Personally appointed TURD Cult Leader...\"NotSeanO'Riley.\" TURD is going to lead the shitcoins of Cosmos! Or Rug You. It will be Jake's Fault. ", @@ -21229,6 +21707,58 @@ } ] }, + { + "description": "FIRMACHAIN adds a signing and verifying e-contract function to the blockchain. Unlocking new limits of electronic contracts with blockchain technology, FIRMACHAIN seeks to resolve all the social and legal issues (contracts, notarial, etc.) with written contracts through the use of electronic contracts based on FIRMACHAIN’s data blockchain.", + "denom_units": [ + { + "denom": "ibc/E43ABCC7E80E99E4E6E1226AE5695DDE0F83CB5C257CD04D47C36B8B90C1C839", + "exponent": 0, + "aliases": [ + "ufct" + ] + }, + { + "denom": "fct", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/E43ABCC7E80E99E4E6E1226AE5695DDE0F83CB5C257CD04D47C36B8B90C1C839", + "name": "FIRMACHAIN", + "display": "fct", + "symbol": "FCT", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "firmachain", + "base_denom": "ufct", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-79241", + "path": "transfer/channel-79241/ufct" + } + } + ], + "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": { + "primary_color_hex": "#1c1c1c" + } + } + ] + }, { "description": "An alloy of ETH asset variants on Osmosis.", "extended_description": "Multiple Ethereum variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of ETH.", @@ -21245,9 +21775,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", @@ -21258,11 +21788,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", @@ -21273,6 +21803,2510 @@ "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" + } + ] + }, + { + "description": "An alloy of SOL asset variants on Osmosis.", + "extended_description": "Multiple Solana variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of SOL.", + "denom_units": [ + { + "denom": "factory/osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4/alloyed/allSOL", + "exponent": 0 + }, + { + "denom": "allSOL", + "exponent": 9 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4", + "base": "factory/osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4/alloyed/allSOL", + "name": "Solana", + "display": "allSOL", + "symbol": "SOL", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "solana", + "base_denom": "Lamport" + }, + "provider": "Osmosis" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "solana", + "base_denom": "Lamport" + }, + "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_circle.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL_circle.png", + "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", + "theme": { + "circle": false, + "background_color_hex": "#00000000" + } + } + ] + }, + { + "description": "Lava Network is a modular data network designed to provide fast, reliable, and scalable access to blockchain data for developers and users.", + "denom_units": [ + { + "denom": "ibc/1AEF145C549D4F9847C79E49710B198C294C7F4A107F4610DEE8E725FFC4B378", + "exponent": 0, + "aliases": [ + "ulava" + ] + }, + { + "denom": "lava", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/1AEF145C549D4F9847C79E49710B198C294C7F4A107F4610DEE8E725FFC4B378", + "name": "Lava", + "display": "lava", + "symbol": "LAVA", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "lava", + "base_denom": "ulava", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-76971", + "path": "transfer/channel-76971/ulava" + } + } + ], + "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" + } + } + ] + }, + { + "description": "The native token of Penumbra.", + "denom_units": [ + { + "denom": "ibc/0FA9232B262B89E77D1335D54FB1E1F506A92A7E4B51524B400DC69C68D28372", + "exponent": 0, + "aliases": [ + "upenumbra" + ] + }, + { + "denom": "penumbra", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/0FA9232B262B89E77D1335D54FB1E1F506A92A7E4B51524B400DC69C68D28372", + "name": "Penumbra", + "display": "penumbra", + "symbol": "UM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "penumbra", + "base_denom": "upenumbra", + "channel_id": "channel-4" + }, + "chain": { + "channel_id": "channel-79703", + "path": "transfer/channel-79703/upenumbra" + } + } + ], + "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": { + "chain_name": "penumbra", + "base_denom": "upenumbra" + }, + "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", + "theme": { + "circle": true, + "primary_color_hex": "#c7b07f" + } + } + ] + }, + { + "description": "TRONIX is the mainnet native token of the TRON Protocol issued by TRON DAO, known as TRX.", + "denom_units": [ + { + "denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/TRX.rt", + "exponent": 0 + }, + { + "denom": "trx", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", + "base": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/TRX.rt", + "name": "Tron (Router)", + "display": "trx", + "symbol": "TRX.rt", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "tron", + "base_denom": "sun" + }, + "provider": "Router" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg" + }, + "images": [ + { + "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", + "background_color_hex": "#FF060A" + } + } + ] + }, + { + "description": "A synthetic version of USDT issued by Router, which can be unwrapped to USDT on several chains.", + "denom_units": [ + { + "denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/USDT.rt", + "exponent": 0 + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", + "base": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/USDT.rt", + "name": "Tether USD (Ethereum via Router)", + "display": "usdt", + "symbol": "USDT.eth.rt", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Tether" + }, + { + "type": "synthetic", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "provider": "Router" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.rt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.rt.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.rt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.rt.png", + "theme": { + "circle": true, + "primary_color_hex": "#009393", + "background_color_hex": "#009393" + } + }, + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "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", + "theme": { + "circle": true, + "primary_color_hex": "#009393", + "background_color_hex": "#009393" + } + } + ] + }, + { + "description": "Cosmo is the best currency in the universe.", + "denom_units": [ + { + "denom": "ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201", + "exponent": 0, + "aliases": [ + "factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO" + ] + }, + { + "denom": "COSMO", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201", + "name": "Cosmo", + "display": "COSMO", + "symbol": "COSMO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "injective", + "base_denom": "factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO", + "channel_id": "channel-8" + }, + "chain": { + "channel_id": "channel-122", + "path": "transfer/channel-122/factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/cosmo.png" + }, + "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" + } + } + ], + "socials": { + "website": "https://github.com/raphaellafar/Cosmo", + "twitter": "https://x.com/CosmoClub84" + } + }, + { + "denom_units": [ + { + "denom": "ibc/603140E681973C7A3A33B06B1D377AAD0F6AC376119735CECC04C9184A1AB080", + "exponent": 0, + "aliases": [ + "stuband" + ] + }, + { + "denom": "stBAND", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/603140E681973C7A3A33B06B1D377AAD0F6AC376119735CECC04C9184A1AB080", + "name": "Stride Staked BAND", + "display": "stBAND", + "symbol": "stBAND", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "bandchain", + "base_denom": "uband" + }, + "provider": "Stride" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "stuband", + "channel_id": "channel-5" + }, + "chain": { + "channel_id": "channel-326", + "path": "transfer/channel-326/stuband" + } + } + ], + "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": { + "primary_color_hex": "#e40474" + } + } + ] + }, + { + "description": "COOK is the governance token for Start.Cooking, the premier token factory on Cosmos.", + "denom_units": [ + { + "denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/COOK", + "exponent": 0 + }, + { + "denom": "COOK", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/COOK", + "name": "COOK", + "display": "COOK", + "symbol": "COOK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/COOK.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/COOK.png" + } + ] + }, + { + "description": "TRONIX is the mainnet native token of the TRON Protocol issued by TRON DAO, known as TRX.", + "denom_units": [ + { + "denom": "factory/osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x/alloyed/allTRX", + "exponent": 0, + "aliases": [ + "sun" + ] + }, + { + "denom": "trx", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x", + "base": "factory/osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x/alloyed/allTRX", + "name": "Tron", + "display": "trx", + "symbol": "TRX", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "tron", + "base_denom": "sun" + }, + "provider": "Osmosis" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg" + }, + "images": [ + { + "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", + "background_color_hex": "#FF060A" + } + }, + { + "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", + "background_color_hex": "#FF060A" + } + } + ] + }, + { + "description": "The native token of Router Chain", + "denom_units": [ + { + "denom": "ibc/3F8F00094F0F79D17750FF69C5F09B078084018570AAF4F1C92C86D3F73E6488", + "exponent": 0, + "aliases": [ + "route" + ] + }, + { + "denom": "ROUTE", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/3F8F00094F0F79D17750FF69C5F09B078084018570AAF4F1C92C86D3F73E6488", + "name": "Router Protocol", + "display": "ROUTE", + "symbol": "ROUTE", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "routerchain", + "base_denom": "route", + "channel_id": "channel-7" + }, + "chain": { + "channel_id": "channel-79180", + "path": "transfer/channel-79180/route" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.svg" + }, + "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": { + "primary_color_hex": "#cb0766" + } + } + ] + }, + { + "description": "An alloy of OP asset variants on Osmosis.", + "denom_units": [ + { + "denom": "factory/osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg/alloyed/allOP", + "exponent": 0 + }, + { + "denom": "op", + "exponent": 12 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg", + "base": "factory/osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg/alloyed/allOP", + "name": "Optimism", + "display": "op", + "symbol": "OP", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "optimism", + "base_denom": "0x4200000000000000000000000000000000000042" + }, + "provider": "Osmosis" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "optimism", + "base_denom": "0x4200000000000000000000000000000000000042" + }, + "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": { + "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" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/14A291DD362798D6805B7ABCB8D09AEEE02176108F89FA09AA43EA2EE096A2A9", + "exponent": 0, + "aliases": [ + "0x4200000000000000000000000000000000000042", + "op-wei" + ] + }, + { + "denom": "op", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/14A291DD362798D6805B7ABCB8D09AEEE02176108F89FA09AA43EA2EE096A2A9", + "name": "Optimism (Axelar)", + "display": "op", + "symbol": "OP.axl", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "optimism", + "base_denom": "0x4200000000000000000000000000000000000042" + }, + "provider": "Axelar" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "axelar", + "base_denom": "op-wei", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-208", + "path": "transfer/channel-208/op-wei" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/op.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/op.axl.svg" + }, + "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": "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", + "theme": { + "primary_color_hex": "#fc0424" + } + } + ] + }, + { + "description": "An alloy of SHIB asset variants on Osmosis.", + "denom_units": [ + { + "denom": "factory/osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a/alloyed/allSHIB", + "exponent": 0 + }, + { + "denom": "shib", + "exponent": 12 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a", + "base": "factory/osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a/alloyed/allSHIB", + "name": "Shiba Inu", + "display": "shib", + "symbol": "SHIB", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce" + }, + "provider": "Osmosis" + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "theme": { + "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" + } + } + ] + }, + { + "description": "An alloy of ARB asset variants on Osmosis.", + "denom_units": [ + { + "denom": "factory/osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk/alloyed/allARB", + "exponent": 0 + }, + { + "denom": "arb", + "exponent": 12 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk", + "base": "factory/osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk/alloyed/allARB", + "name": "Arbitrum", + "display": "arb", + "symbol": "ARB", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "arbitrum", + "base_denom": "0x912CE59144191C1204E64559FE8253a0e49E6548" + }, + "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": [ + { + "image_sync": { + "chain_name": "arbitrum", + "base_denom": "0x912CE59144191C1204E64559FE8253a0e49E6548" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg", + "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" + } + } + ] + }, + { + "description": "An alloy of LINK asset variants on Osmosis.", + "denom_units": [ + { + "denom": "factory/osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw/alloyed/allLINK", + "exponent": 0 + }, + { + "denom": "link", + "exponent": 12 + } + ], + "type_asset": "sdk.coin", + "address": "osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw", + "base": "factory/osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw/alloyed/allLINK", + "name": "Chainlink", + "display": "link", + "symbol": "LINK", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x514910771af9ca656af840dff83e8264ecf986ca" + }, + "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": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x514910771af9ca656af840dff83e8264ecf986ca" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg", + "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" + } + } + ] + }, + { + "description": "An alloy of PEPE asset variants on Osmosis.", + "denom_units": [ + { + "denom": "factory/osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx/alloyed/allPEPE", + "exponent": 0 + }, + { + "denom": "pepe", + "exponent": 12 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx", + "base": "factory/osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx/alloyed/allPEPE", + "name": "Pepe", + "display": "pepe", + "symbol": "PEPE", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933" + }, + "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": [ + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg", + "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" + } + } + ] + }, + { + "description": "An alloy of DOT asset variants on Osmosis.", + "denom_units": [ + { + "denom": "factory/osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02/alloyed/allDOT", + "exponent": 0 + }, + { + "denom": "dot", + "exponent": 10 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02", + "base": "factory/osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02/alloyed/allDOT", + "name": "Polkadot", + "display": "dot", + "symbol": "DOT", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "polkadot", + "base_denom": "Planck" + }, + "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", + "theme": { + "circle": true, + "primary_color_hex": "#E6007A" + } + }, + { + "image_sync": { + "chain_name": "polkadot", + "base_denom": "Planck" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "theme": { + "primary_color_hex": "#e4047c" + } + } + ] + }, + { + "description": "Unicorn from Solana via Picasso IBC", + "denom_units": [ + { + "denom": "ibc/C91210281CEB708DC6E41A47FC9EC298F45712273DD58C682BEBAD00DCB59DC2", + "exponent": 0, + "aliases": [ + "UwU8RVXB69Y6Dcju6cN2Qef6fykkq6UUNpB15rZku6Z", + "ibc/586C150919550F6106711C7557DAAAEAB765DDF05648BAC0D96487AE90394BA1" + ] + }, + { + "denom": "unicorn", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/C91210281CEB708DC6E41A47FC9EC298F45712273DD58C682BEBAD00DCB59DC2", + "name": "Unicorn (Picasso)", + "display": "unicorn", + "symbol": "UWU.pica", + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "unicorn", + "base_denom": "uwunicorn" + }, + "provider": "Unicorn" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "solana", + "base_denom": "UwU8RVXB69Y6Dcju6cN2Qef6fykkq6UUNpB15rZku6Z", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-71", + "path": "transfer/channel-71/UwU8RVXB69Y6Dcju6cN2Qef6fykkq6UUNpB15rZku6Z" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "composable", + "base_denom": "ibc/586C150919550F6106711C7557DAAAEAB765DDF05648BAC0D96487AE90394BA1", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-1279", + "path": "transfer/channel-1279/transfer/channel-71/UwU8RVXB69Y6Dcju6cN2Qef6fykkq6UUNpB15rZku6Z" + } + } + ], + "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": "composable", + "base_denom": "ibc/586C150919550F6106711C7557DAAAEAB765DDF05648BAC0D96487AE90394BA1" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unicorn/images/uwu.png", + "theme": { + "primary_color_hex": "#D44CE6" + } + } + ] + }, + { + "description": "Deenar gold-backed stablecoin", + "denom_units": [ + { + "denom": "ibc/108604FDBE97DAEF128FD4ECFEB2A8AFC2D04A7162C97EAA2FD5BCB0869D0BBC", + "exponent": 0, + "aliases": [ + "erc20/0x4FEBDDe47Ab9a76200e57eFcC80b212a07b3e6cE" + ] + }, + { + "denom": "DEEN", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/108604FDBE97DAEF128FD4ECFEB2A8AFC2D04A7162C97EAA2FD5BCB0869D0BBC", + "name": "Deenar", + "display": "DEEN", + "symbol": "DEEN", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "comex", + "base_denom": "XAU" + }, + "provider": "Deenar" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "haqq", + "base_denom": "erc20/0x4FEBDDe47Ab9a76200e57eFcC80b212a07b3e6cE", + "channel_id": "channel-2" + }, + "chain": { + "channel_id": "channel-1575", + "path": "transfer/channel-1575/erc20/0x4FEBDDe47Ab9a76200e57eFcC80b212a07b3e6cE" + } + } + ], + "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": { + "primary_color_hex": "#ffbc05", + "circle": true + } + } + ] + }, + { + "description": "CosmoUSD", + "extended_description": "Community loyalty points.", + "denom_units": [ + { + "denom": "factory/osmo104jtrwcljnxfljhml8mxrw7qetcsdmqvy3sprw/ucosmousd", + "exponent": 0, + "aliases": [ + "ucosmousd" + ] + }, + { + "denom": "CosmoUSD", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "base": "factory/osmo104jtrwcljnxfljhml8mxrw7qetcsdmqvy3sprw/ucosmousd", + "name": "CosmoUSD", + "display": "CosmoUSD", + "symbol": "COSMOUSD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CosmoUSD.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CosmoUSD.png", + "theme": { + "primary_color_hex": "#343169" + } + } + ], + "socials": { + "website": "https://github.com/raphaellafar/Cosmo", + "twitter": "https://x.com/CosmoClub84" + } + }, + { + "description": "The Representative factory token for Trump Kemistry", + "denom_units": [ + { + "denom": "factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP", + "exponent": 0 + }, + { + "denom": "XTRUMP", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl", + "base": "factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP", + "name": "XTRUMP", + "display": "XTRUMP", + "symbol": "XTRUMP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/XTRUMP.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/XTRUMP.png", + "theme": { + "primary_color_hex": "#b02b27" + } + } + ] + }, + { + "description": "Tether USDt from Ethereum via Peggy bridge.", + "denom_units": [ + { + "denom": "ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D", + "exponent": 0, + "aliases": [ + "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7" + ] + }, + { + "denom": "usdt", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D", + "name": "Tether USD (Ethereum) (Injective)", + "display": "usdt", + "symbol": "USDT.eth.inj", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Tether" + }, + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + "provider": "Peggy" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "injective", + "base_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", + "channel_id": "channel-8" + }, + "chain": { + "channel_id": "channel-122", + "path": "transfer/channel-122/peggy0xdAC17F958D2ee523a2206206994597C13D831ec7" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.svg" + }, + "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": "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", + "theme": { + "circle": true, + "primary_color_hex": "#009393", + "background_color_hex": "#009393" + } + } + ] + }, + { + "description": "Fractionalized Bad Kids", + "extended_description": "Fractionalized Bad Kids NFT Via Fractal.fun", + "denom_units": [ + { + "denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBAD", + "exponent": 0 + }, + { + "denom": "fBAD", + "exponent": 9 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBAD", + "name": "fBAD", + "display": "fBAD", + "symbol": "fBAD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBAD.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBAD.png", + "theme": { + "primary_color_hex": "#639BFF" + } + } + ], + "keywords": [ + "nft" + ], + "socials": { + "website": "https://fractal.fun", + "twitter": "https://twitter.com/fractaldotfun" + } + }, + { + "description": "Fractionalized Mad Scientists", + "extended_description": "Fractionalized Mad Scientists NFT Via Fractal.fun", + "denom_units": [ + { + "denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fMAD", + "exponent": 0 + }, + { + "denom": "fMAD", + "exponent": 9 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fMAD", + "name": "fMAD", + "display": "fMAD", + "symbol": "fMAD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fMAD.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fMAD.png", + "theme": { + "primary_color_hex": "#639BFF" + } + } + ], + "keywords": [ + "nft" + ], + "socials": { + "website": "https://fractal.fun", + "twitter": "https://twitter.com/fractaldotfun" + } + }, + { + "description": "Fractionalized Celestine Sloth Society", + "extended_description": "Fractionalized Celestine Sloth Society NFT Via Fractal.fun", + "denom_units": [ + { + "denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fSLOTH", + "exponent": 0 + }, + { + "denom": "fSLOTH", + "exponent": 9 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fSLOTH", + "name": "fSLOTH", + "display": "fSLOTH", + "symbol": "fSLOTH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fSLOTH.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fSLOTH.png", + "theme": { + "primary_color_hex": "#639BFF" + } + } + ], + "keywords": [ + "nft" + ], + "socials": { + "website": "https://fractal.fun", + "twitter": "https://twitter.com/fractaldotfun" + } + }, + { + "description": "Fractionalized DAONuts", + "extended_description": "Fractionalized DAONuts NFT Via Fractal.fun", + "denom_units": [ + { + "denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fNUT", + "exponent": 0 + }, + { + "denom": "fNUT", + "exponent": 9 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fNUT", + "name": "fNUT", + "display": "fNUT", + "symbol": "fNUT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fNUT.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fNUT.png", + "theme": { + "primary_color_hex": "#639BFF" + } + } + ], + "keywords": [ + "nft" + ], + "socials": { + "website": "https://fractal.fun", + "twitter": "https://twitter.com/fractaldotfun" + } + }, + { + "description": "Mars Protocol is a cross-collateralized Money Market Protocol on Neutron and Osmosis", + "denom_units": [ + { + "denom": "ibc/B67DF59507B3755EEDE0866C449445BD54B4DA82CCEBA89D775E53DC35664255", + "exponent": 0, + "aliases": [ + "umars" + ] + }, + { + "denom": "MARS", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/B67DF59507B3755EEDE0866C449445BD54B4DA82CCEBA89D775E53DC35664255", + "name": "Mars Protocol token", + "display": "MARS", + "symbol": "MARS", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS", + "channel_id": "channel-10" + }, + "chain": { + "channel_id": "channel-874", + "path": "transfer/channel-874/factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg", + "theme": { + "primary_color_hex": "#ef4136" + } + } + ] + }, + { + "description": "The native token of TON", + "denom_units": [ + { + "denom": "ibc/905889A7F0B94F1CE1506D9BADF13AE9141E4CBDBCD565E1DFC7AE418B3E3E98", + "exponent": 0, + "aliases": [ + "nanoTon" + ] + }, + { + "denom": "ton", + "exponent": 9 + } + ], + "type_asset": "ics20", + "base": "ibc/905889A7F0B94F1CE1506D9BADF13AE9141E4CBDBCD565E1DFC7AE418B3E3E98", + "name": "TON (The Open Network) (Oraichain)", + "display": "ton", + "symbol": "TON.orai", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ton", + "base_denom": "nanoton" + }, + "provider": "Oraichain Labs TON Bridge" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "oraichain", + "base_denom": "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/ton", + "channel_id": "channel-13" + }, + "chain": { + "channel_id": "channel-216", + "path": "transfer/channel-216/factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/ton" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.orai.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.orai.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.orai.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.orai.png" + }, + { + "image_sync": { + "chain_name": "oraichain", + "base_denom": "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/ton" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png", + "theme": { + "circle": true, + "primary_color_hex": "#0088CC", + "background_color_hex": "#0088CC" + } + } + ] + }, + { + "description": "An alloy of TON asset variants on Osmosis.", + "extended_description": "Multiple Toncoin variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of TON.", + "denom_units": [ + { + "denom": "factory/osmo12lnwf54yd30p6amzaged2atln8k0l32n7ncxf04ctg7u7ymnsy7qkqgsw4/alloyed/allTON", + "exponent": 0 + }, + { + "denom": "ton", + "exponent": 9 + } + ], + "type_asset": "sdk.coin", + "address": "osmo12lnwf54yd30p6amzaged2atln8k0l32n7ncxf04ctg7u7ymnsy7qkqgsw4", + "base": "factory/osmo12lnwf54yd30p6amzaged2atln8k0l32n7ncxf04ctg7u7ymnsy7qkqgsw4/alloyed/allTON", + "name": "TON (The Open Network)", + "display": "ton", + "symbol": "TON", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "ton", + "base_denom": "nanoton" + }, + "provider": "Osmosis" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "ton", + "base_denom": "nanoton" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png", + "theme": { + "circle": true, + "primary_color_hex": "#0088CC", + "background_color_hex": "#0088CC" + } + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTON.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTON.png", + "theme": { + "primary_color_hex": "#0088CC" + } + } + ] + }, + { + "description": "The native token of Furya", + "denom_units": [ + { + "denom": "ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12", + "exponent": 0, + "aliases": [ + "ufury" + ] + }, + { + "denom": "fury", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12", + "name": "furya", + "display": "fury", + "symbol": "FURY", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "furya", + "base_denom": "ufury", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-8690", + "path": "transfer/channel-8690/ufury" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "furya", + "base_denom": "ufury" + }, + "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", + "theme": { + "primary_color_hex": "#040404" + } + } + ], + "keywords": [ + "gaming", + "staking" + ] + }, + { + "description": "PUNDIX token is the native token that functions within the Pundi X ecosystem, including PundiX Chain and XPOS.", + "denom_units": [ + { + "denom": "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", + "exponent": 0, + "aliases": [ + "ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78" + ] + }, + { + "denom": "PUNDIX", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", + "name": "Pundi X Token", + "display": "PUNDIX", + "symbol": "PUNDIX", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "fxcore", + "base_denom": "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", + "channel_id": "channel-0" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38" + } + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "pundix", + "base_denom": "ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-12618", + "path": "transfer/channel-12618/transfer/channel-0/eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png", + "theme": { + "primary_color_hex": "#f1d20c" + } + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "The native token of dHealth", + "denom_units": [ + { + "denom": "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", + "exponent": 0, + "aliases": [ + "udhp" + ] + }, + { + "denom": "dhp", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", + "name": "dHealth", + "display": "dhp", + "symbol": "DHP", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "dhealth", + "base_denom": "udhp", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-38776", + "path": "transfer/channel-38776/udhp" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "dhealth", + "base_denom": "udhp" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg", + "theme": { + "primary_color_hex": "#140c7c" + } + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "The native EVM and Wasm, governance and staking token of the Shido Chain", + "denom_units": [ + { + "denom": "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", + "exponent": 0, + "aliases": [ + "shido" + ] + }, + { + "denom": "SHIDO", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", + "name": "Shido", + "display": "SHIDO", + "symbol": "SHIDO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "shido", + "base_denom": "shido", + "channel_id": "channel-0" + }, + "chain": { + "channel_id": "channel-38921", + "path": "transfer/channel-38921/shido" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "shido", + "base_denom": "shido" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg", + "theme": { + "primary_color_hex": "#046ffc" + } + } + ], + "keywords": [ + "osmosis_unlisted" + ] + }, + { + "description": "The Revenue & Governance token of Unstake.fi", + "denom_units": [ + { + "denom": "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", + "exponent": 0, + "aliases": [ + "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk" + ] + }, + { + "denom": "nstk", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", + "name": "Unstake Fi", + "display": "nstk", + "symbol": "NSTK", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "kujira", + "base_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-259", + "path": "transfer/channel-259/factory:kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh:unstk" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "kujira", + "base_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg" + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", + "exponent": 0, + "aliases": [ + "avalanche-uusdc" + ] + }, + { + "denom": "avalanche-usdc", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", + "name": "Wormhole USDC(Avalanche)", + "display": "avalanche-usdc", + "symbol": "avalanche.USDC.wh", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", + "channel_id": "channel-3" + }, + "chain": { + "channel_id": "channel-2186", + "path": "transfer/channel-2186/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4" + } + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg", + "theme": { + "primary_color_hex": "#2474cb" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg" + } + }, + { + "description": "Nomic's native token.", + "denom_units": [ + { + "denom": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", + "exponent": 0, + "aliases": [ + "unom" + ] + }, + { + "denom": "nom", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", + "name": "Nomic", + "display": "nom", + "symbol": "nomic.NOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "nomic", + "base_denom": "unom", + "channel_id": "channel-1" + }, + "chain": { + "channel_id": "channel-6897", + "path": "transfer/channel-6897/unom" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "nomic", + "base_denom": "unom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg", + "theme": { + "primary_color_hex": "#6404fc" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg" + } + }, + { + "description": "The governance and utility token of Yieldmos, the Interchain Automation Protocol", + "denom_units": [ + { + "denom": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", + "exponent": 0 + }, + { + "denom": "ymos", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy", + "base": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", + "name": "Yieldmos Coin", + "display": "ymos", + "symbol": "YMOS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png", + "theme": { + "primary_color_hex": "#2c3554" + } + } + ] + }, + { + "description": "Memecoin for The International Brane Wave", + "denom_units": [ + { + "denom": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", + "exponent": 0, + "aliases": [ + "brnz" + ] + } + ], + "type_asset": "sdk.coin", + "base": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", + "name": "Branez", + "display": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", + "symbol": "BRNZ", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BRNZ.svg" + }, + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BRNZ.svg" + } + ] + }, + { + "description": "ashLAB - Burned LAB", + "extended_description": "ashLAB - receipt token recieved when burning LAB via ASH DAOs Furnace", + "denom_units": [ + { + "denom": "factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash", + "exponent": 0 + }, + { + "denom": "ashLAB", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07", + "base": "factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash", + "name": "Burned LAB", + "display": "ashLAB", + "symbol": "ashLAB", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ashLAB.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ashLAB.png", + "theme": { + "primary_color_hex": "#ebb093" + } + } + ] + }, + { + "description": "GRAC is the official token of Racoon.Bet's gaming platform.", + "denom_units": [ + { + "denom": "ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829", + "exponent": 0, + "aliases": [ + "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac" + ] + }, + { + "denom": "grac", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829", + "name": "Gaming RAC Token", + "display": "grac", + "symbol": "GRAC", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac", + "channel_id": "channel-5" + }, + "chain": { + "channel_id": "channel-642", + "path": "transfer/channel-642/factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png" + }, + "images": [ + { + "image_sync": { + "chain_name": "migaloo", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png", + "theme": { + "primary_color_hex": "#f5bf09" + } + } + ] + }, + { + "description": "USDC supplied on Mars looped using Membrane by a vault", + "denom_units": [ + { + "denom": "factory/osmo1vf6e300hv2qe7r5rln8deft45ewgyytjnwfrdfcv5rgzrfy0s6cswjqf9r/mars-usdc-looped", + "exponent": 0 + }, + { + "denom": "loopedUSDCmars", + "exponent": 6 + } + ], + "type_asset": "sdk.coin", + "base": "factory/osmo1vf6e300hv2qe7r5rln8deft45ewgyytjnwfrdfcv5rgzrfy0s6cswjqf9r/mars-usdc-looped", + "name": "Mars Looped USDC", + "display": "loopedUSDCmars", + "symbol": "loopedUSDCmars" + }, + { + "denom_units": [ + { + "denom": "factory/osmo1xu0gk9aggv79597xwazyfzaggv2pze9z7cq3p9p72tkkux9a7xaqufa792/BVT", + "exponent": 0 + }, + { + "denom": "BVT0", + "exponent": 18 + } + ], + "description": "Banana Vault Token - Peelworks Factory II", + "type_asset": "sdk.coin", + "base": "factory/osmo1xu0gk9aggv79597xwazyfzaggv2pze9z7cq3p9p72tkkux9a7xaqufa792/BVT", + "name": "Peelworks Factory", + "display": "BVT0", + "symbol": "BVT0", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT0.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT0.png", + "theme": { + "primary_color_hex": "#203135" + } + } + ] + }, + { + "description": "Banana Vault Token - Banana Beach (🍹,🌴) II", + "denom_units": [ + { + "denom": "factory/osmo16nxtnrnl7lctvnhhpcxqmmpv63n93zgg0ukaveyc0jl4dtad79cs53c3an/BVT", + "exponent": 0 + }, + { + "denom": "BVT1", + "exponent": 18 + } + ], + "type_asset": "sdk.coin", + "base": "factory/osmo16nxtnrnl7lctvnhhpcxqmmpv63n93zgg0ukaveyc0jl4dtad79cs53c3an/BVT", + "name": "Banana Beach", + "display": "BVT1", + "symbol": "BVT1", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT1.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT1.png", + "theme": { + "primary_color_hex": "#00bdc3" + } + } + ] + }, + { + "description": "Avail is a web3 infrastructure layer that allows modular execution layers to scale and interoperate in a trust minimized way.", + "type_asset": "sdk.coin", + "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", + "denom_units": [ + { + "denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt", + "exponent": 0, + "aliases": [ + "0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8", + "avail-wei", + "avail" + ] + }, + { + "denom": "AVAIL", + "exponent": 18 + } + ], + "base": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt", + "name": "Avail", + "display": "AVAIL", + "symbol": "AVAIL", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8" + }, + "provider": "Router" + } + ], + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avail.eth.rt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avail.eth.rt.png", + "theme": { + "circle": false, + "primary_color_hex": "#2B80D7" + } + }, + { + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avail/images/avail.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avail/images/avail.png", + "theme": { + "circle": false, + "primary_color_hex": "#2B80D7" + } + } + ] + }, + { + "description": "Fractionalized Pixel Wizards", + "extended_description": "Fractionalized Pixel Wizards NFT Via Fractal.fun", + "denom_units": [ + { + "denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ", + "exponent": 0 + }, + { + "denom": "fWIZ", + "exponent": 9 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ", + "name": "fWIZ", + "display": "fWIZ", + "symbol": "fWIZ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWIZ.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWIZ.png", + "theme": { + "primary_color_hex": "#639BFF" + } + } + ], + "keywords": [ + "nft" + ], + "socials": { + "website": "https://fractal.fun", + "twitter": "https://twitter.com/fractaldotfun" + } + }, + { + "description": "Fractionalized Pixel Witches", + "extended_description": "Fractionalized Pixel Witches NFT Via Fractal.fun", + "denom_units": [ + { + "denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH", + "exponent": 0 + }, + { + "denom": "fWITCH", + "exponent": 9 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH", + "name": "fWITCH", + "display": "fWITCH", + "symbol": "fWITCH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWITCH.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWITCH.png", + "theme": { + "primary_color_hex": "#639BFF" + } + } + ], + "keywords": [ + "nft" + ], + "socials": { + "website": "https://fractal.fun", + "twitter": "https://twitter.com/fractaldotfun" + } + }, + { + "description": "Fractionalized Cryptonium Maker", + "extended_description": "Fractionalized Cryptonium Maker NFT Via Fractal.fun", + "denom_units": [ + { + "denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM", + "exponent": 0 + }, + { + "denom": "fCRYPTONIUM", + "exponent": 9 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM", + "name": "fCRYPTONIUM", + "display": "fCRYPTONIUM", + "symbol": "fCRYPTONIUM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fCRYPTONIUM.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fCRYPTONIUM.png", + "theme": { + "primary_color_hex": "#639BFF" + } + } + ], + "keywords": [ + "nft" + ], + "socials": { + "website": "https://fractal.fun", + "twitter": "https://twitter.com/fractaldotfun" + } + }, + { + "description": "Fractionalized Geckies", + "extended_description": "Fractionalized Geckies NFT Via Fractal.fun", + "denom_units": [ + { + "denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK", + "exponent": 0 + }, + { + "denom": "fGECK", + "exponent": 9 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK", + "name": "fGECK", + "display": "fGECK", + "symbol": "fGECK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fGECK.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fGECK.png", + "theme": { + "primary_color_hex": "#639BFF" + } + } + ], + "keywords": [ + "nft" + ], + "socials": { + "website": "https://fractal.fun", + "twitter": "https://twitter.com/fractaldotfun" + } + }, + { + "description": "Fractionalized Atlas DAO", + "extended_description": "Fractionalized Atlas DAO NFT Via Fractal.fun", + "denom_units": [ + { + "denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS", + "exponent": 0 + }, + { + "denom": "fATLAS", + "exponent": 9 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS", + "name": "fATLAS", + "display": "fATLAS", + "symbol": "fATLAS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fATLAS.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fATLAS.png", + "theme": { + "primary_color_hex": "#639BFF" + } + } + ], + "keywords": [ + "nft" + ], + "socials": { + "website": "https://fractal.fun", + "twitter": "https://twitter.com/fractaldotfun" + } + }, + { + "description": "Fractionalized Rekt Bulls", + "extended_description": "Fractionalized Rekt Bulls NFT Via Fractal.fun", + "denom_units": [ + { + "denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS", + "exponent": 0 + }, + { + "denom": "fBULLS", + "exponent": 9 + } + ], + "type_asset": "sdk.coin", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS", + "name": "fBULLS", + "display": "fBULLS", + "symbol": "fBULLS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBULLS.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBULLS.png", + "theme": { + "primary_color_hex": "#639BFF" + } + } + ], + "keywords": [ + "nft" + ], + "socials": { + "website": "https://fractal.fun", + "twitter": "https://twitter.com/fractaldotfun" + } + }, + { + "description": "Roostock BTC bridged via Router.", + "type_asset": "sdk.coin", + "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", + "denom_units": [ + { + "denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt", + "exponent": 0, + "aliases": [ + "0x542FDA317318eBf1d3DeAF76E0B632741a7e677d", + "sat" + ] + }, + { + "denom": "rbtc", + "exponent": 18 + } + ], + "base": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt", + "name": "Rootstock Smart Bitcoin", + "display": "rbtc", + "symbol": "RBTC", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "rootstock", + "base_denom": "0x542FDA317318eBf1d3DeAF76E0B632741a7e677d" + }, + "provider": "Router" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "rootstock", + "base_denom": "sat" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.png", + "theme": { + "circle": false, + "primary_color_hex": "#FF9931", + "background_color_hex": "#00000000" + } + } + ] + }, + { + "description": "Chain-key Bitcoin bridged via Omnity Network.", + "address": "osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm", + "denom_units": [ + { + "denom": "factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC", + "exponent": 0, + "aliases": [ + "uckBTC" + ] + }, + { + "denom": "ckBTC", + "exponent": 8 + } + ], + "type_asset": "sdk.coin", + "base": "factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC", + "name": "Chain-key Bitcoin", + "display": "ckBTC", + "symbol": "ckBTC", + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "internetcomputer", + "base_denom": "uckBTC" + }, + "provider": "Omnity Network" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "internetcomputer", + "base_denom": "uckBTC" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.png", + "theme": { + "circle": true, + "primary_color_hex": "#3B00B9", + "background_color_hex": "#3B00B9" + } } ] } diff --git a/osmosis/chain.json b/osmosis/chain.json index 343d648853..cc9efa64c5 100644 --- a/osmosis/chain.json +++ b/osmosis/chain.json @@ -4,8 +4,8 @@ "status": "live", "network_type": "mainnet", "website": "https://osmosis.zone/", - "update_link": "https://raw.githubusercontent.com/osmosis-labs/osmosis/main/chain.schema.json", "pretty_name": "Osmosis", + "chain_type": "cosmos", "chain_id": "osmosis-1", "bech32_prefix": "osmo", "daemon_name": "osmosisd", @@ -48,18 +48,38 @@ "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v25-osmo-1", "consensus": { "type": "cometbft", - "version": "osmosis-labs/cometbft v0.37.4-v25-osmo-2" + "version": "v0.37.4", + "repo": "https://github.com/osmosis-labs/cometbft", + "tag": "v25-osmo-2" }, "cosmwasm_version": "osmosis-labs/wasmd v0.45.0-osmo", "cosmwasm_enabled": true, - "ibc_go_version": "v7.4.0", - "ics_enabled": [ - "ics20-1" - ], - "go_version": "1.21.4", "binaries": { "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v25.0.0/osmosisd-25.0.0-linux-amd64", "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v25.0.0/osmosisd-25.0.0-linux-arm64" + }, + "language": { + "type": "go", + "version": "1.21.4" + }, + "sdk": { + "type": "cosmos", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-v25-osmo-1" + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/osmosis-labs/wasmd", + "tag": "v0.45.0-osmo", + "enabled": true } }, "images": [ @@ -68,10 +88,15 @@ "chain_name": "osmosis", "base_denom": "uosmo" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "theme": { + "primary_color_hex": "#760dbb" + } } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" }, "description": "Osmosis (OSMO) is the premier DEX and cross-chain DeFi hub within the Cosmos ecosystem, a network of over 50 sovereign, interoperable blockchains seamlessly connected through the Inter-Blockchain Communication Protocol (IBC). Pioneering in its approach, Osmosis offers a dynamic trading and liquidity provision experience, integrating non-IBC assets from other ecosystems, including Ethereum, Solana, Avalanche, and Polkadot. Initially adopting Balancer-style pools, Osmosis now also features a concentrated liquidity model that is orders of magnitude more capital efficient, meaning that significantly less liquidity is required to handle the same amount of trading volume with minimal slippage.\n\nAs a true appchain, Osmosis has greater control over the full blockchain stack than traditional smart contract DEXs, which must follow the code of the parent chain that it is built on. This fine-grained control has enabled, for example, the development of Superfluid Staking, an extension of Proof of Stake that allows assets at the application layer to be staked to secure the chain. The customizability of appchains also allows implementing features like the Protocol Revenue module, which enables Osmosis to conduct on-chain arbitrage on behalf of OSMO stakers, balancing prices across pools while generating real yield revenue from this volume. Additionally, as a sovereign appchain, Osmosis governance can vote on upgrades to the protocol. One example of this was the introduction of a Taker Fee, which switched on the collection of exchange fees to generate diverse yield from Osmosis volume and distribute it to OSMO stakers.\n\nOsmosis is bringing the full centralized exchange experience to the decentralized world by building a cross-chain native DEX and trading suite that connects all chains over IBC, including Ethereum and Bitcoin. To reach this goal, Osmosis hosts an ever-expanding suite of DeFi applications aimed at providing a one-stop experience that includes lending, credit, margin, DeFi strategy vaults, power perps, fiat on-ramps, NFTs, stablecoins, and more β€” all of the functionalities that centralized exchange offer and more, in the trust-minimized environment of decentralized finance.", @@ -209,7 +234,7 @@ "provider": "WhisperNode 🀐" }, { - "address": "https://osmosis-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/osmosis", "provider": "Lavender.Five Nodes 🐝" }, { @@ -303,6 +328,10 @@ { "address": "https://osmosis-rpc.noders.services", "provider": "[NODERS]TEAM" + }, + { + "address": "https://osmosis.drpc.org", + "provider": "dRPC" } ], "rest": [ @@ -323,7 +352,7 @@ "provider": "chainapsis" }, { - "address": "https://osmosis-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/osmosis", "provider": "Lavender.Five Nodes 🐝" }, { @@ -409,7 +438,7 @@ ], "grpc": [ { - "address": "osmosis-grpc.lavenderfive.com:443", + "address": "osmosis.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -544,4 +573,4 @@ "keywords": [ "dex" ] -} \ No newline at end of file +} diff --git a/osmosis/images/BVT0.png b/osmosis/images/BVT0.png new file mode 100644 index 0000000000..4008f2076b Binary files /dev/null and b/osmosis/images/BVT0.png differ diff --git a/osmosis/images/BVT1.png b/osmosis/images/BVT1.png new file mode 100644 index 0000000000..bb4544dc2a Binary files /dev/null and b/osmosis/images/BVT1.png differ diff --git a/osmosis/images/COOK.png b/osmosis/images/COOK.png new file mode 100644 index 0000000000..3c7cbdb71e Binary files /dev/null and b/osmosis/images/COOK.png differ diff --git a/osmosis/images/CosmoUSD.png b/osmosis/images/CosmoUSD.png new file mode 100644 index 0000000000..8742890114 Binary files /dev/null and b/osmosis/images/CosmoUSD.png differ diff --git a/osmosis/images/UWU.pica.png b/osmosis/images/UWU.pica.png new file mode 100644 index 0000000000..7723af129a Binary files /dev/null and b/osmosis/images/UWU.pica.png differ diff --git a/osmosis/images/XTRUMP.png b/osmosis/images/XTRUMP.png new file mode 100644 index 0000000000..d3435d8270 Binary files /dev/null and b/osmosis/images/XTRUMP.png differ diff --git a/osmosis/images/allDOT.png b/osmosis/images/allDOT.png new file mode 100644 index 0000000000..620857687f Binary files /dev/null and b/osmosis/images/allDOT.png differ diff --git a/osmosis/images/allDOT.svg b/osmosis/images/allDOT.svg new file mode 100644 index 0000000000..1bca5c5a28 --- /dev/null +++ b/osmosis/images/allDOT.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/allOP.png b/osmosis/images/allOP.png new file mode 100644 index 0000000000..a47705aa48 Binary files /dev/null and b/osmosis/images/allOP.png differ diff --git a/osmosis/images/allOP.svg b/osmosis/images/allOP.svg new file mode 100644 index 0000000000..85a99f77fb --- /dev/null +++ b/osmosis/images/allOP.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/osmosis/images/allSHIB.png b/osmosis/images/allSHIB.png new file mode 100644 index 0000000000..bf33e5fcd2 Binary files /dev/null and b/osmosis/images/allSHIB.png differ diff --git a/osmosis/images/allSHIB.svg b/osmosis/images/allSHIB.svg new file mode 100644 index 0000000000..b3d6c27780 --- /dev/null +++ b/osmosis/images/allSHIB.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/allSOL_circle.png b/osmosis/images/allSOL_circle.png new file mode 100644 index 0000000000..393086917c Binary files /dev/null and b/osmosis/images/allSOL_circle.png differ diff --git a/osmosis/images/allSOL_circle.svg b/osmosis/images/allSOL_circle.svg new file mode 100644 index 0000000000..ae13b4817b --- /dev/null +++ b/osmosis/images/allSOL_circle.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/allTON.png b/osmosis/images/allTON.png new file mode 100644 index 0000000000..e4bff90709 Binary files /dev/null and b/osmosis/images/allTON.png differ diff --git a/osmosis/images/allTON.svg b/osmosis/images/allTON.svg new file mode 100644 index 0000000000..89860e11cc --- /dev/null +++ b/osmosis/images/allTON.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/allTRX.png b/osmosis/images/allTRX.png new file mode 100644 index 0000000000..ed5b8f45b4 Binary files /dev/null and b/osmosis/images/allTRX.png differ diff --git a/osmosis/images/allTRX.svg b/osmosis/images/allTRX.svg new file mode 100644 index 0000000000..3bb839a4b3 --- /dev/null +++ b/osmosis/images/allTRX.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/osmosis/images/arb.axl.png b/osmosis/images/arb.axl.png new file mode 100644 index 0000000000..33ad202e11 Binary files /dev/null and b/osmosis/images/arb.axl.png differ diff --git a/osmosis/images/arb.axl.svg b/osmosis/images/arb.axl.svg new file mode 100644 index 0000000000..dd133938e4 --- /dev/null +++ b/osmosis/images/arb.axl.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/avail.eth.rt.png b/osmosis/images/avail.eth.rt.png new file mode 100644 index 0000000000..bb17f91ef5 Binary files /dev/null and b/osmosis/images/avail.eth.rt.png differ diff --git a/osmosis/images/avail.eth.rt.svg b/osmosis/images/avail.eth.rt.svg new file mode 100644 index 0000000000..c9f642cf55 --- /dev/null +++ b/osmosis/images/avail.eth.rt.svg @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/eth.axl.png b/osmosis/images/eth.axl.png new file mode 100644 index 0000000000..471b368109 Binary files /dev/null and b/osmosis/images/eth.axl.png differ diff --git a/osmosis/images/eth.axl.svg b/osmosis/images/eth.axl.svg new file mode 100644 index 0000000000..1e74d2f970 --- /dev/null +++ b/osmosis/images/eth.axl.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/fATLAS.png b/osmosis/images/fATLAS.png new file mode 100644 index 0000000000..81f6b5ba25 Binary files /dev/null and b/osmosis/images/fATLAS.png differ diff --git a/osmosis/images/fBAD.png b/osmosis/images/fBAD.png new file mode 100644 index 0000000000..7e13df755e Binary files /dev/null and b/osmosis/images/fBAD.png differ diff --git a/osmosis/images/fBULLS.png b/osmosis/images/fBULLS.png new file mode 100644 index 0000000000..fb6088a44c Binary files /dev/null and b/osmosis/images/fBULLS.png differ diff --git a/osmosis/images/fCRYPTONIUM.png b/osmosis/images/fCRYPTONIUM.png new file mode 100644 index 0000000000..3cc00e4114 Binary files /dev/null and b/osmosis/images/fCRYPTONIUM.png differ diff --git a/osmosis/images/fGECK.png b/osmosis/images/fGECK.png new file mode 100644 index 0000000000..c8fb330429 Binary files /dev/null and b/osmosis/images/fGECK.png differ diff --git a/osmosis/images/fMAD.png b/osmosis/images/fMAD.png new file mode 100644 index 0000000000..9e3843e6d9 Binary files /dev/null and b/osmosis/images/fMAD.png differ diff --git a/osmosis/images/fNUT.png b/osmosis/images/fNUT.png new file mode 100644 index 0000000000..47070cb163 Binary files /dev/null and b/osmosis/images/fNUT.png differ diff --git a/osmosis/images/fSLOTH.png b/osmosis/images/fSLOTH.png new file mode 100644 index 0000000000..02e54e6490 Binary files /dev/null and b/osmosis/images/fSLOTH.png differ diff --git a/osmosis/images/fWITCH.png b/osmosis/images/fWITCH.png new file mode 100644 index 0000000000..a7c9c8e6a0 Binary files /dev/null and b/osmosis/images/fWITCH.png differ diff --git a/osmosis/images/fWIZ.png b/osmosis/images/fWIZ.png new file mode 100644 index 0000000000..91951e9582 Binary files /dev/null and b/osmosis/images/fWIZ.png differ diff --git a/osmosis/images/link.axl.png b/osmosis/images/link.axl.png new file mode 100644 index 0000000000..68768b7d7a Binary files /dev/null and b/osmosis/images/link.axl.png differ diff --git a/osmosis/images/link.axl.svg b/osmosis/images/link.axl.svg new file mode 100644 index 0000000000..a1336f5b3e --- /dev/null +++ b/osmosis/images/link.axl.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/op.axl.png b/osmosis/images/op.axl.png new file mode 100644 index 0000000000..5cbf89a82d Binary files /dev/null and b/osmosis/images/op.axl.png differ diff --git a/osmosis/images/op.axl.svg b/osmosis/images/op.axl.svg new file mode 100644 index 0000000000..641ae79ecd --- /dev/null +++ b/osmosis/images/op.axl.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/pepe.axl.png b/osmosis/images/pepe.axl.png new file mode 100644 index 0000000000..4dac3c00dc Binary files /dev/null and b/osmosis/images/pepe.axl.png differ diff --git a/osmosis/images/pepe.axl.svg b/osmosis/images/pepe.axl.svg new file mode 100644 index 0000000000..ab1066a114 --- /dev/null +++ b/osmosis/images/pepe.axl.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/shib.axl.png b/osmosis/images/shib.axl.png new file mode 100644 index 0000000000..4c31fddd69 Binary files /dev/null and b/osmosis/images/shib.axl.png differ diff --git a/osmosis/images/shib.axl.svg b/osmosis/images/shib.axl.svg new file mode 100644 index 0000000000..93cf3176b9 --- /dev/null +++ b/osmosis/images/shib.axl.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/sol.wh.png b/osmosis/images/sol.wh.png new file mode 100644 index 0000000000..7aaf5e1bba Binary files /dev/null and b/osmosis/images/sol.wh.png differ diff --git a/osmosis/images/sol.wh.svg b/osmosis/images/sol.wh.svg new file mode 100644 index 0000000000..226a122523 --- /dev/null +++ b/osmosis/images/sol.wh.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/ton.orai.png b/osmosis/images/ton.orai.png new file mode 100644 index 0000000000..2f9bb030d8 Binary files /dev/null and b/osmosis/images/ton.orai.png differ diff --git a/osmosis/images/ton.orai.svg b/osmosis/images/ton.orai.svg new file mode 100644 index 0000000000..28c0397253 --- /dev/null +++ b/osmosis/images/ton.orai.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/usdc.inj.png b/osmosis/images/usdc.inj.png new file mode 100644 index 0000000000..bdc9c2b9ce Binary files /dev/null and b/osmosis/images/usdc.inj.png differ diff --git a/osmosis/images/usdc.inj.svg b/osmosis/images/usdc.inj.svg new file mode 100644 index 0000000000..fdb6fe4e00 --- /dev/null +++ b/osmosis/images/usdc.inj.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/usdt.inj.png b/osmosis/images/usdt.inj.png new file mode 100644 index 0000000000..5c645a98ad Binary files /dev/null and b/osmosis/images/usdt.inj.png differ diff --git a/osmosis/images/usdt.inj.svg b/osmosis/images/usdt.inj.svg new file mode 100644 index 0000000000..86c5b5cdcf --- /dev/null +++ b/osmosis/images/usdt.inj.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/usdt.rt.png b/osmosis/images/usdt.rt.png new file mode 100644 index 0000000000..5bdff7f04f Binary files /dev/null and b/osmosis/images/usdt.rt.png differ diff --git a/osmosis/images/usdt.rt.svg b/osmosis/images/usdt.rt.svg new file mode 100644 index 0000000000..cc6b61a2fe --- /dev/null +++ b/osmosis/images/usdt.rt.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/usdt.trx.png b/osmosis/images/usdt.trx.png new file mode 100644 index 0000000000..7f18f159c1 Binary files /dev/null and b/osmosis/images/usdt.trx.png differ diff --git a/osmosis/images/usdt.trx.svg b/osmosis/images/usdt.trx.svg new file mode 100644 index 0000000000..15eef40784 --- /dev/null +++ b/osmosis/images/usdt.trx.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/osmosis/images/uwu.sol.pica.png b/osmosis/images/uwu.sol.pica.png new file mode 100644 index 0000000000..2b50975621 Binary files /dev/null and b/osmosis/images/uwu.sol.pica.png differ diff --git a/osmosis/versions.json b/osmosis/versions.json index 76d436e1da..6b61eeddf5 100644 --- a/osmosis/versions.json +++ b/osmosis/versions.json @@ -119,16 +119,27 @@ }, "cosmwasm_version": "0.30", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.1", - "ics_enabled": [ - "ics20-1" - ], "binaries": { "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v15.2.0/osmosisd-15.2.0-linux-amd64?checksum=sha256:3aab2f2668cb5a713d5770e46a777ef01c433753378702d9ae941aa2d1ee5618", "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v15.2.0/osmosisd-15.2.0-linux-arm64?checksum=sha256:e158d30707a0ea51482237f99676223e81ce5a353966a5c83791d2662a930f35" }, "previous_version_name": "v14", - "next_version_name": "v16" + "next_version_name": "v16", + "cosmwasm": { + "version": "0.30", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "0.46.10" + }, + "ibc": { + "type": "go", + "version": "4.3.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v16", @@ -142,14 +153,11 @@ "cosmos_sdk_version": "osmosis-labs/cosmos-sdk@0.45.0-rc1.0.20230703010110-ed4eb883f2a6", "consensus": { "type": "tendermint", - "version": "informalsystems/tendermint@0.34.24" + "version": "0.34.24", + "repo": "https://github.com/informalsystems/tendermint" }, "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.1", - "ics_enabled": [ - "ics20-1" - ], "binaries": { "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-linux-arm64?checksum=sha256:b96ff1f4c9b4abecb1b38998b1a1f891cfed2cc8078ab64914b151183c0c199b", "darwin/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-darwin-arm64?checksum=sha256:c743da4d3632a2bc3ea0ce784bbd13383492a4a34d53295eb2c96987bacf8e8c", @@ -157,7 +165,26 @@ "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-linux-amd64?checksum=sha256:f838618633c1d42f593dc33d26b25842f5900961e987fc08570bb81a062e311d" }, "previous_version_name": "v15", - "next_version_name": "v17" + "next_version_name": "v17", + "cosmwasm": { + "version": "0.31.0", + "repo": "https://github.com/osmosis-labs/wasmd", + "tag": "0.31.0-osmo-v16", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "0.45.0", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "tag": "0.45.0-rc1.0.20230703010110-ed4eb883f2a6" + }, + "ibc": { + "type": "go", + "version": "4.3.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v17", @@ -170,14 +197,11 @@ "cosmos_sdk_version": "osmosis-labs/cosmos-sdk@v0.45.0-rc1.0.20230703010110-ed4eb883f2a6", "consensus": { "type": "tendermint", - "version": "informalsystems/tendermint@0.34.24" + "version": "0.34.24", + "repo": "https://github.com/informalsystems/tendermint" }, "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.1", - "ics_enabled": [ - "ics20-1" - ], "binaries": { "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v17.0.0/osmosisd-17.0.0-linux-arm64?checksum=sha256:d5eeab6a15e2acd7e24e7caf4fe3336c35367ff376da6299d404defd09ce52f9", "darwin/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v17.0.0/osmosisd-17.0.0-darwin-arm64?checksum=sha256:5ca1b120a62ba473e7772682d89db949ae67aa10dc9bf4629b0022a95e7ff1df", @@ -185,7 +209,26 @@ "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v17.0.0/osmosisd-17.0.0-linux-amd64?checksum=sha256:d7fe62ae33cf2f0b48a17eb8b02644dadd9924f15861ed622cd90cb1a038135b" }, "previous_version_name": "v16", - "next_version_name": "v18" + "next_version_name": "v18", + "cosmwasm": { + "version": "0.31.0", + "repo": "https://github.com/osmosis-labs/wasmd", + "tag": "0.31.0-osmo-v16", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "v0.45.0", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "tag": "v0.45.0-rc1.0.20230703010110-ed4eb883f2a6" + }, + "ibc": { + "type": "go", + "version": "4.3.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v18", @@ -198,20 +241,36 @@ "cosmos_sdk_version": "osmosis-labs/cosmos-sdk@v0.45.0-rc1.0.20230703010110-ed4eb883f2a6", "consensus": { "type": "tendermint", - "version": "informalsystems/tendermint@0.34.24" + "version": "0.34.24", + "repo": "https://github.com/informalsystems/tendermint" }, "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.1", - "ics_enabled": [ - "ics20-1" - ], "binaries": { "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v18.0.0/osmosisd-18.0.0-linux-arm64?checksum=sha256:4331f9a318f6dd2f012c36f6ef19af8378fd1e9bc85c751e3f56f7018176ed58", "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v18.0.0/osmosisd-18.0.0-linux-amd64?checksum=sha256:9a98a57946e936e7380ae897a205b4e18a188332e91ca84a1f62c21cbb437845" }, "previous_version_name": "v17", - "next_version_name": "v19" + "next_version_name": "v19", + "cosmwasm": { + "version": "0.31.0", + "repo": "https://github.com/osmosis-labs/wasmd", + "tag": "0.31.0-osmo-v16", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "v0.45.0", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "tag": "v0.45.0-rc1.0.20230703010110-ed4eb883f2a6" + }, + "ibc": { + "type": "go", + "version": "4.3.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v19", @@ -226,20 +285,36 @@ "cosmos_sdk_version": "osmosis-labs/cosmos-sdk@0.45.0-rc1.0.20230927020814-2854ac001f06", "consensus": { "type": "tendermint", - "version": "informalsystems/tendermint@0.34.24" + "version": "0.34.24", + "repo": "https://github.com/informalsystems/tendermint" }, "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.1", - "ics_enabled": [ - "ics20-1" - ], "binaries": { "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v19.2.0/osmosisd-19.2.0-linux-amd64?checksum=sha256:723ff1c5349eb3c039c3dc5f55895bbde2e1499fe7c0a96960cc6fadeec814c4", "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v19.2.0/osmosisd-19.2.0-linux-arm64?checksum=sha256:d933b893d537422164a25bf161d7f269a59ea26d37f398cdb7dd575a9ec33ed2" }, "previous_version_name": "v18", - "next_version_name": "v20" + "next_version_name": "v20", + "cosmwasm": { + "version": "0.31.0", + "repo": "https://github.com/osmosis-labs/wasmd", + "tag": "0.31.0-osmo-v16", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "0.45.0", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "tag": "0.45.0-rc1.0.20230927020814-2854ac001f06" + }, + "ibc": { + "type": "go", + "version": "4.3.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v20", @@ -256,16 +331,31 @@ }, "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16", "cosmwasm_enabled": true, - "ibc_go_version": "4.5.1", - "ics_enabled": [ - "ics20-1" - ], "binaries": { "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v20.5.0/osmosisd-20.5.0-linux-amd64?checksum=sha256:f9ff6176e32499f22b20288c71dbc802556eb5399baef23de164fe6158a55a69", "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v20.5.0/osmosisd-20.5.0-linux-arm64?checksum=sha256:99359257ff81d21b55b685924a74473d532cbc5af196a672a784bf13dad06d26" }, "previous_version_name": "v19", - "next_version_name": "v21" + "next_version_name": "v21", + "cosmwasm": { + "version": "0.31.0", + "repo": "https://github.com/osmosis-labs/wasmd", + "tag": "0.31.0-osmo-v16", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "0.45.0", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "tag": "0.45.0-rc1.0.20230922030206-734f99fba785" + }, + "ibc": { + "type": "go", + "version": "4.5.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v21", @@ -279,21 +369,41 @@ "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v21-osmo-5", "consensus": { "type": "cometbft", - "version": "osmosis-labs/cometbft v0.37.2-v21-osmo-1" + "version": "v0.37.2", + "repo": "https://github.com/osmosis-labs/cometbft", + "tag": "v21-osmo-1" }, "cosmwasm_version": "osmosis-labs/wasmd v0.45.0-osmo", "cosmwasm_enabled": true, - "ibc_go_version": "7.3.1", - "ics_enabled": [ - "ics20-1" - ], - "go_version": "1.20", "binaries": { "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v21.1.4/osmosisd-21.1.4-linux-amd64?checksum=sha256:518fd61873622d505640ab08edb788e307e6beb4f52476fab77661dd96860416", "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v21.1.4/osmosisd-21.1.4-linux-arm64?checksum=sha256:cdbc163f4f045718e1464a82ada4d9d2511dc8c6c3fea11044cb8e675b6f86f7" }, "previous_version_name": "v20", - "next_version_name": "v22" + "next_version_name": "v22", + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/osmosis-labs/wasmd", + "tag": "v0.45.0-osmo", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.5", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "tag": "v0.47.5-v21-osmo-5" + }, + "ibc": { + "type": "go", + "version": "7.3.1", + "ics_enabled": [ + "ics20-1" + ] + }, + "language": { + "type": "go", + "version": "1.20" + } }, { "name": "v22", @@ -308,21 +418,41 @@ "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v22-osmo-3", "consensus": { "type": "cometbft", - "version": "osmosis-labs/cometbft v0.37.2-v21-osmo-1" + "version": "v0.37.2", + "repo": "https://github.com/osmosis-labs/cometbft", + "tag": "v21-osmo-1" }, "cosmwasm_version": "osmosis-labs/wasmd v0.45.0-osmo", "cosmwasm_enabled": true, - "ibc_go_version": "7.3.1", - "ics_enabled": [ - "ics20-1" - ], - "go_version": "1.21", "binaries": { "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v22.0.1/osmosisd-22.0.1-linux-amd64", "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v22.0.1/osmosisd-22.0.1-linux-arm64" }, "previous_version_name": "v21", - "next_version_name": "v23" + "next_version_name": "v23", + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/osmosis-labs/wasmd", + "tag": "v0.45.0-osmo", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.5", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "tag": "v0.47.5-v22-osmo-3" + }, + "ibc": { + "type": "go", + "version": "7.3.1", + "ics_enabled": [ + "ics20-1" + ] + }, + "language": { + "type": "go", + "version": "1.21" + } }, { "name": "v23", @@ -339,21 +469,41 @@ "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v23-osmo-4", "consensus": { "type": "cometbft", - "version": "osmosis-labs/cometbft v0.37.4-v23-osmo-3" + "version": "v0.37.4", + "repo": "https://github.com/osmosis-labs/cometbft", + "tag": "v23-osmo-3" }, "cosmwasm_version": "osmosis-labs/wasmd v0.45.0-osmo", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", - "ics_enabled": [ - "ics20-1" - ], - "go_version": "1.21", "binaries": { "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v23.0.8/osmosisd-23.0.8-linux-amd64", "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v23.0.8/osmosisd-23.0.8-linux-arm64" }, "previous_version_name": "v22", - "next_version_name": "v24" + "next_version_name": "v24", + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/osmosis-labs/wasmd", + "tag": "v0.45.0-osmo", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.5", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "tag": "v0.47.5-v23-osmo-4" + }, + "ibc": { + "type": "go", + "version": "v7.3.1", + "ics_enabled": [ + "ics20-1" + ] + }, + "language": { + "type": "go", + "version": "1.21" + } }, { "name": "v24", @@ -368,21 +518,41 @@ "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v24-osmo-5", "consensus": { "type": "cometbft", - "version": "osmosis-labs/cometbft v0.37.4-v24-osmo-2" + "version": "v0.37.4", + "repo": "https://github.com/osmosis-labs/cometbft", + "tag": "v24-osmo-2" }, "cosmwasm_version": "osmosis-labs/wasmd v0.45.0-osmo", "cosmwasm_enabled": true, - "ibc_go_version": "v7.4.0", - "ics_enabled": [ - "ics20-1" - ], - "go_version": "1.21", "binaries": { "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v24.0.1/osmosisd-24.0.1-linux-amd64", "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v24.0.1/osmosisd-24.0.1-linux-arm64" }, "previous_version_name": "v23", - "next_version_name": "v25" + "next_version_name": "v25", + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/osmosis-labs/wasmd", + "tag": "v0.45.0-osmo", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.5", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "tag": "v0.47.5-v24-osmo-5" + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "language": { + "type": "go", + "version": "1.21" + } }, { "name": "v25", @@ -396,21 +566,41 @@ "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v25-osmo-1", "consensus": { "type": "cometbft", - "version": "osmosis-labs/cometbft v0.37.4-v25-osmo-2" + "version": "v0.37.4", + "repo": "https://github.com/osmosis-labs/cometbft", + "tag": "v25-osmo-2" }, "cosmwasm_version": "osmosis-labs/wasmd v0.45.0-osmo", "cosmwasm_enabled": true, - "ibc_go_version": "v7.4.0", - "ics_enabled": [ - "ics20-1" - ], - "go_version": "1.21.4", "binaries": { "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v25.0.0/osmosisd-25.0.0-linux-amd64", "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v25.0.0/osmosisd-25.0.0-linux-arm64" }, "previous_version_name": "v24", - "next_version_name": "" + "next_version_name": "", + "cosmwasm": { + "version": "v0.45.0", + "repo": "https://github.com/osmosis-labs/wasmd", + "tag": "v0.45.0-osmo", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.5", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "tag": "v0.47.5-v25-osmo-1" + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "language": { + "type": "go", + "version": "1.21.4" + } } ] -} +} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 209f09eab7..9e4f2b7095 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6,6 +6,334 @@ "": { "dependencies": { "node-fetch": "^3.3.1" + }, + "devDependencies": { + "eslint": "^9.8.0", + "eslint-plugin-json": "^4.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", + "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.17.1.tgz", + "integrity": "sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.4", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.0.tgz", + "integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "9.8.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.8.0.tgz", + "integrity": "sha512-MfluB7EUfxXtv3i/++oh89uzAr4PDI4nn201hsp+qaXqsjAWzinlZEHEfPgAX4doIlKvPG/i0A9dpKxOLII8yA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", + "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.0.tgz", + "integrity": "sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" } }, "node_modules/data-uri-to-buffer": { @@ -16,6 +344,235 @@ "node": ">= 12" } }, + "node_modules/debug": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.8.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.8.0.tgz", + "integrity": "sha512-K8qnZ/QJzT2dLKdZJVX6W4XOwBzutMYmt0lqUS+JdXgd+HTYFlonFgkJ8s44d/zMPPCnOOk0kMWCApCPhiOy9A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.11.0", + "@eslint/config-array": "^0.17.1", + "@eslint/eslintrc": "^3.1.0", + "@eslint/js": "9.8.0", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.3.0", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.0.2", + "eslint-visitor-keys": "^4.0.0", + "espree": "^10.1.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/eslint-plugin-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-json/-/eslint-plugin-json-4.0.0.tgz", + "integrity": "sha512-l/P3WTzl2HI8PbwsbDIrZ+6jvwQI4TGuz20ReJkG3Y+gZS5ZurTgx+gBmuLpOgiqMyDJWyJ7+GCjevWtNYQcUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash": "^4.17.21", + "vscode-json-languageservice": "^4.1.6" + }, + "engines": { + "node": ">=18.0" + } + }, + "node_modules/eslint-scope": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.2.tgz", + "integrity": "sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", + "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.1.0.tgz", + "integrity": "sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.12.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.0.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, "node_modules/fetch-blob": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", @@ -38,6 +595,57 @@ "node": "^12.20 || >= 14.13" } }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true, + "license": "ISC" + }, "node_modules/formdata-polyfill": { "version": "4.0.10", "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", @@ -46,44 +654,582 @@ "fetch-blob": "^3.1.2" }, "engines": { - "node": ">=12.20.0" + "node": ">=12.20.0" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/jsonc-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz", + "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "dependencies": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" } }, - "node_modules/node-domexception": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", - "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, "funding": [ { "type": "github", - "url": "https://github.com/sponsors/jimmywarting" + "url": "https://github.com/sponsors/feross" }, { - "type": "github", - "url": "https://paypal.me/jimmywarting" + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" } ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, "engines": { - "node": ">=10.5.0" + "node": ">=8" } }, - "node_modules/node-fetch": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", - "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", "dependencies": { - "data-uri-to-buffer": "^4.0.0", - "fetch-blob": "^3.1.4", - "formdata-polyfill": "^4.0.10" + "ansi-regex": "^5.0.1" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/node-fetch" + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true, + "license": "MIT" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/vscode-json-languageservice": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.2.1.tgz", + "integrity": "sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "jsonc-parser": "^3.0.0", + "vscode-languageserver-textdocument": "^1.0.3", + "vscode-languageserver-types": "^3.16.0", + "vscode-nls": "^5.0.0", + "vscode-uri": "^3.0.3" } }, + "node_modules/vscode-languageserver-textdocument": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz", + "integrity": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==", + "dev": true, + "license": "MIT" + }, + "node_modules/vscode-languageserver-types": { + "version": "3.17.5", + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz", + "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==", + "dev": true, + "license": "MIT" + }, + "node_modules/vscode-nls": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.2.0.tgz", + "integrity": "sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==", + "dev": true, + "license": "MIT" + }, + "node_modules/vscode-uri": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz", + "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==", + "dev": true, + "license": "MIT" + }, "node_modules/web-streams-polyfill": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", @@ -91,14 +1237,421 @@ "engines": { "node": ">= 8" } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } } }, "dependencies": { + "@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^3.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true + } + } + }, + "@eslint-community/regexpp": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", + "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", + "dev": true + }, + "@eslint/config-array": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.17.1.tgz", + "integrity": "sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA==", + "dev": true, + "requires": { + "@eslint/object-schema": "^2.1.4", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + } + }, + "@eslint/eslintrc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.0.tgz", + "integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + } + }, + "@eslint/js": { + "version": "9.8.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.8.0.tgz", + "integrity": "sha512-MfluB7EUfxXtv3i/++oh89uzAr4PDI4nn201hsp+qaXqsjAWzinlZEHEfPgAX4doIlKvPG/i0A9dpKxOLII8yA==", + "dev": true + }, + "@eslint/object-schema": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", + "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", + "dev": true + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true + }, + "@humanwhocodes/retry": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.0.tgz", + "integrity": "sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==", + "dev": true + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "requires": {} + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, "data-uri-to-buffer": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==" }, + "debug": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "eslint": { + "version": "9.8.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.8.0.tgz", + "integrity": "sha512-K8qnZ/QJzT2dLKdZJVX6W4XOwBzutMYmt0lqUS+JdXgd+HTYFlonFgkJ8s44d/zMPPCnOOk0kMWCApCPhiOy9A==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.11.0", + "@eslint/config-array": "^0.17.1", + "@eslint/eslintrc": "^3.1.0", + "@eslint/js": "9.8.0", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.3.0", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.0.2", + "eslint-visitor-keys": "^4.0.0", + "espree": "^10.1.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + } + }, + "eslint-plugin-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-json/-/eslint-plugin-json-4.0.0.tgz", + "integrity": "sha512-l/P3WTzl2HI8PbwsbDIrZ+6jvwQI4TGuz20ReJkG3Y+gZS5ZurTgx+gBmuLpOgiqMyDJWyJ7+GCjevWtNYQcUg==", + "dev": true, + "requires": { + "lodash": "^4.17.21", + "vscode-json-languageservice": "^4.1.6" + } + }, + "eslint-scope": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.2.tgz", + "integrity": "sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-visitor-keys": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", + "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", + "dev": true + }, + "espree": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.1.0.tgz", + "integrity": "sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==", + "dev": true, + "requires": { + "acorn": "^8.12.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.0.0" + } + }, + "esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, "fetch-blob": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", @@ -108,6 +1661,41 @@ "web-streams-polyfill": "^3.0.3" } }, + "file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "requires": { + "flat-cache": "^4.0.0" + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "requires": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + } + }, + "flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true + }, "formdata-polyfill": { "version": "4.0.10", "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", @@ -116,6 +1704,170 @@ "fetch-blob": "^3.1.2" } }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "jsonc-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz", + "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==", + "dev": true + }, + "keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "requires": { + "json-buffer": "3.0.1" + } + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, "node-domexception": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", @@ -131,10 +1883,223 @@ "formdata-polyfill": "^4.0.10" } }, + "optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "vscode-json-languageservice": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.2.1.tgz", + "integrity": "sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==", + "dev": true, + "requires": { + "jsonc-parser": "^3.0.0", + "vscode-languageserver-textdocument": "^1.0.3", + "vscode-languageserver-types": "^3.16.0", + "vscode-nls": "^5.0.0", + "vscode-uri": "^3.0.3" + } + }, + "vscode-languageserver-textdocument": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz", + "integrity": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==", + "dev": true + }, + "vscode-languageserver-types": { + "version": "3.17.5", + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz", + "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==", + "dev": true + }, + "vscode-nls": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.2.0.tgz", + "integrity": "sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==", + "dev": true + }, + "vscode-uri": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz", + "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==", + "dev": true + }, "web-streams-polyfill": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==" + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true } } } diff --git a/package.json b/package.json index 88f9f74c69..d8833b1a87 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,9 @@ { "dependencies": { "node-fetch": "^3.3.1" + }, + "devDependencies": { + "eslint": "^9.8.0", + "eslint-plugin-json": "^4.0.0" } -} \ No newline at end of file +} diff --git a/paloma/assetlist.json b/paloma/assetlist.json new file mode 100644 index 0000000000..164cbf3578 --- /dev/null +++ b/paloma/assetlist.json @@ -0,0 +1,38 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "paloma", + "assets": [ + { + "description": "The native token of the Paloma chain", + "denom_units": [ + { + "denom": "ugrain", + "exponent": 0 + }, + { + "denom": "grain", + "exponent": 6 + } + ], + "base": "ugrain", + "name": "Grain", + "display": "grain", + "symbol": "GRAIN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/paloma/images/grain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/paloma/images/grain.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/paloma/images/grain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/paloma/images/grain.svg" + } + ], + "socials": { + "website": "https://palomachain.com/", + "twitter": "https://twitter.com/paloma_chain" + }, + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/paloma/chain.json b/paloma/chain.json new file mode 100644 index 0000000000..d3ddbb2a0e --- /dev/null +++ b/paloma/chain.json @@ -0,0 +1,98 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "paloma", + "status": "live", + "network_type": "mainnet", + "website": "https://palomachain.com/", + "pretty_name": "Paloma", + "chain_type": "cosmos", + "chain_id": "tumbler", + "bech32_prefix": "paloma", + "daemon_name": "palomad", + "node_home": "$HOME/.paloma", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "ugrain", + "fixed_min_gas_price": 0 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "ugrain" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/palomachain/paloma", + "recommended_version": "v1.15.4", + "compatible_versions": [ + "v1.15.4" + ], + "cosmos_sdk_version": "v0.50.6", + "consensus": { + "type": "cometbft", + "version": "v0.38.6" + }, + "binaries": { + "linux/amd64": "https://github.com/palomachain/paloma/releases/download/v1.15.4/paloma_Linux_x86_64.tar.gz" + }, + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/palomachain/mainnet/master/tumbler/genesis.json" + }, + "versions": [ + { + "name": "v1.15.4", + "recommended_version": "v1.15.4", + "compatible_versions": [ + "v1.15.4" + ], + "binaries": { + "linux/amd64": "https://github.com/palomachain/paloma/releases/download/v1.15.4/paloma_Linux_x86_64.tar.gz" + } + } + ], + "sdk": { + "type": "cosmos", + "version": "v0.50.6" + }, + "ibc": { + "type": "go", + "version": "v8.2.0" + } + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/paloma/images/paloma.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/paloma/images/paloma.svg" + }, + "peers": { + "seeds": [] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc-1.paloma.nodes.guru/", + "provider": "Nodes.Guru" + } + ] + }, + "explorers": [ + { + "kind": "explorers.guru", + "url": "https://paloma.explorers.guru/", + "tx_page": "https://paloma.explorers.guru/transaction/${txHash}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/paloma/images/paloma.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/paloma/images/paloma.svg" + } + ] +} \ No newline at end of file diff --git a/paloma/images/grain.png b/paloma/images/grain.png new file mode 100644 index 0000000000..687f9e7565 Binary files /dev/null and b/paloma/images/grain.png differ diff --git a/paloma/images/grain.svg b/paloma/images/grain.svg new file mode 100644 index 0000000000..180d91ee97 --- /dev/null +++ b/paloma/images/grain.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + diff --git a/paloma/images/paloma.png b/paloma/images/paloma.png new file mode 100644 index 0000000000..85f61efaf6 Binary files /dev/null and b/paloma/images/paloma.png differ diff --git a/paloma/images/paloma.svg b/paloma/images/paloma.svg new file mode 100644 index 0000000000..c1a037aa69 --- /dev/null +++ b/paloma/images/paloma.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + diff --git a/panacea/assetlist.json b/panacea/assetlist.json index 024e7c839d..546472c5ad 100644 --- a/panacea/assetlist.json +++ b/panacea/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#2474ec" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/panacea/chain.json b/panacea/chain.json index ef368a801d..19b25a310e 100644 --- a/panacea/chain.json +++ b/panacea/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://medibloc.com/en/", "pretty_name": "Medibloc", + "chain_type": "cosmos", "chain_id": "panacea-3", "bech32_prefix": "panacea", "daemon_name": "panacead", @@ -37,7 +38,6 @@ "compatible_versions": [ "v2.0.5" ], - "binaries": {}, "genesis": { "genesis_url": "https://github.com/medibloc/panacea-mainnet/raw/master/panacea-3/genesis.json" }, @@ -47,8 +47,7 @@ "recommended_version": "v2.0.6", "compatible_versions": [ "v2.0.5" - ], - "binaries": {} + ] } ] }, diff --git a/passage/assetlist.json b/passage/assetlist.json index f7f284f63f..ca33232cb5 100644 --- a/passage/assetlist.json +++ b/passage/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#05050c" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/passage/chain.json b/passage/chain.json index 85530dae46..926d4ae915 100644 --- a/passage/chain.json +++ b/passage/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "passage", + "chain_type": "cosmos", "chain_id": "passage-2", "pre_fork_chain_name": "passage1", "pretty_name": "Passage", @@ -39,7 +40,6 @@ "v2.4.0" ], "cosmos_sdk_version": "v0.45.16", - "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", "version": "v0.34.27" @@ -56,12 +56,19 @@ "v2.0.1" ], "cosmos_sdk_version": "v0.45.16", - "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", "version": "v0.34.27" }, - "next_version_name": "v2.2.0" + "next_version_name": "v2.2.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + } }, { "name": "v2.2.0", @@ -70,12 +77,19 @@ "v2.2.0" ], "cosmos_sdk_version": "v0.45.16", - "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", "version": "v0.34.27" }, - "next_version_name": "v2.4.0" + "next_version_name": "v2.4.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + } }, { "name": "v2.4.0", @@ -84,15 +98,36 @@ "v2.4.0" ], "cosmos_sdk_version": "v0.45.16", - "ibc_go_version": "v4.4.2", "consensus": { "type": "cometbft", "version": "v0.34.27" }, "cosmwasm_version": "v0.31.0", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "cosmwasm": { + "version": "v0.31.0" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "ibc": { + "type": "go", + "version": "v4.4.2" + }, + "cosmwasm": { + "version": "v0.31.0" + } }, "peers": { "seeds": [ @@ -128,11 +163,6 @@ "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚑️ Nodes & Staking" }, - { - "id": "c28827cb96c14c905b127b92065a3fb4cd77d7f6", - "address": "seeds.whispernode.com:15656", - "provider": "WhisperNode 🀐" - }, { "id": "df949a46ae6529ae1e09b034b49716468d5cc7e9", "address": "seeds.stakerhouse.com:10556", @@ -195,7 +225,7 @@ "provider": "ecostake" }, { - "address": "https://passage-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/passage", "provider": "Lavender.Five Nodes 🐝" }, { @@ -222,10 +252,6 @@ "address": "https://rpc-passage.d-stake.xyz", "provider": "D-stake" }, - { - "address": "https://rpc-passage.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://passage-mainnet-rpc.autostake.com:443", "provider": "AutoStake πŸ›‘οΈ Slash Protected" @@ -269,7 +295,7 @@ "provider": "ecostake" }, { - "address": "https://passage-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/passage", "provider": "Lavender.Five Nodes 🐝" }, { @@ -300,10 +326,6 @@ "address": "https://passage-mainnet-lcd.autostake.com:443", "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, - { - "address": "https://lcd-passage.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://passage-rest.stakerhouse.com", "provider": "StakerHouse" @@ -335,7 +357,7 @@ "provider": "Notional" }, { - "address": "passage-grpc.lavenderfive.com:443", + "address": "passage.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/passage1/assetlist.json b/passage1/assetlist.json index 2f6ca56121..ed2a677e0d 100644 --- a/passage1/assetlist.json +++ b/passage1/assetlist.json @@ -28,7 +28,8 @@ "primary_color_hex": "#05050c" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/passage1/chain.json b/passage1/chain.json index cc0f0a5c17..d0760e2a06 100644 --- a/passage1/chain.json +++ b/passage1/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "passage1", + "chain_type": "cosmos", "chain_id": "passage-1", "pretty_name": "Passage", "status": "killed", diff --git a/persistence/assetlist.json b/persistence/assetlist.json index bc085f6682..5b3d8e7b2b 100644 --- a/persistence/assetlist.json +++ b/persistence/assetlist.json @@ -29,14 +29,17 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg", "theme": { - "primary_color_hex": "#242424" + "circle": true, + "primary_color_hex": "#E59636", + "background_color_hex": "#000000" } } ], "socials": { "website": "https://persistence.one/", "twitter": "https://twitter.com/PersistenceOne" - } + }, + "type_asset": "sdk.coin" }, { "description": "PSTAKE Liquid-Staked ATOM", @@ -81,7 +84,8 @@ "primary_color_hex": "#c4444c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "pSTAKE Finance is a Bitcoin Yield and Liquid Staking protocol, backed by Binance Labs.", @@ -151,7 +155,7 @@ "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", "theme": { - "primary_color_hex": "#111111" + "primary_color_hex": "#050505" } } ] @@ -297,16 +301,17 @@ "chain_name": "noble", "base_denom": "uusdc" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primary_color_hex": "#2474cc" + "circle": true, + "primary_color_hex": "#2775CA" } } ], "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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } }, { @@ -404,7 +409,8 @@ "primary_color_hex": "#c3343d" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "PSTAKE Liquid-Staked DYDX", @@ -448,7 +454,8 @@ "primary_color_hex": "#c4474e" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "PSTAKE Liquid-Staked STARS", @@ -492,7 +499,8 @@ "primary_color_hex": "#070e0e" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -536,7 +544,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" } } ], @@ -641,7 +649,8 @@ "primary_color_hex": "#f2cc2f" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -736,7 +745,8 @@ "primary_color_hex": "#c3343b" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Wrapped Bitcoin on Persistence", @@ -791,4 +801,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/persistence/chain.json b/persistence/chain.json index 7e909fd62f..2c8793b9a5 100644 --- a/persistence/chain.json +++ b/persistence/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "persistence", + "chain_type": "cosmos", "chain_id": "core-1", "pretty_name": "Persistence", "status": "live", @@ -44,11 +45,6 @@ "v11.14.0" ], "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.10-lsm-rc0", - "ibc_go_version": "v7.4.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.4" @@ -101,11 +97,6 @@ "v9.2.1" ], "cosmos_sdk_version": "v0.47.3-lsm", - "ibc_go_version": "v7.2.0-lsm3", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -116,7 +107,27 @@ "binaries": { "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v9.2.1/persistenceCore-v9.2.1-linux-amd64.tar.gz" }, - "next_version_name": "v10" + "next_version_name": "v10", + "sdk": { + "type": "cosmos", + "version": "v0.47.3", + "tag": "v0.47.3-lsm" + }, + "cosmwasm": { + "version": "v0.40.2", + "path": "$HOME/.persistenceCore/wasm", + "enabled": true, + "tag": "v0.40.2-lsm3" + }, + "ibc": { + "type": "go", + "version": "v7.2.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ], + "tag": "v7.2.0-lsm3" + } }, { "name": "v10", @@ -128,11 +139,6 @@ "v10.0.0" ], "cosmos_sdk_version": "v0.47.3-lsm", - "ibc_go_version": "v7.2.0-lsm3", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -143,7 +149,27 @@ "binaries": { "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v10.0.0/persistenceCore-v10.0.0-linux-amd64.tar.gz" }, - "next_version_name": "v10.3.0" + "next_version_name": "v10.3.0", + "sdk": { + "type": "cosmos", + "version": "v0.47.3", + "tag": "v0.47.3-lsm" + }, + "cosmwasm": { + "version": "v0.47.3", + "path": "$HOME/.persistenceCore/wasm", + "enabled": true, + "tag": "v0.47.3-lsm5" + }, + "ibc": { + "type": "go", + "version": "v7.2.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ], + "tag": "v7.2.0-lsm3" + } }, { "name": "v10.3.0", @@ -155,11 +181,6 @@ "v10.3.0" ], "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.3-lsm5", - "ibc_go_version": "persistenceOne/ibc-go/v7 v7.2.0-lsm3", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -170,7 +191,30 @@ "binaries": { "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v10.3.0/persistenceCore-v10.3.0-linux-amd64.tar.gz" }, - "next_version_name": "v10.4.0" + "next_version_name": "v10.4.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/persistenceOne/cosmos-sdk", + "version": "v0.47.3", + "tag": "v0.47.3-lsm5" + }, + "cosmwasm": { + "version": "v0.40.2", + "repo": "https://github.com/persistenceOne/wasmd", + "tag": "v0.40.2-lsm3", + "path": "$HOME/.persistenceCore/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/persistenceOne/ibc-go", + "version": "v7.2.0", + "tag": "v7.2.0-lsm3", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v10.4.0", @@ -182,11 +226,6 @@ "v10.4.0" ], "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.3-lsm5", - "ibc_go_version": "persistenceOne/ibc-go/v7 v7.2.0-lsm3", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -197,7 +236,30 @@ "binaries": { "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v10.4.0/persistenceCore-v10.4.0-linux-amd64.tar.gz" }, - "next_version_name": "v10.4.1" + "next_version_name": "v10.4.1", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/persistenceOne/cosmos-sdk", + "version": "v0.47.3", + "tag": "v0.47.3-lsm5" + }, + "cosmwasm": { + "version": "v0.40.2", + "repo": "https://github.com/persistenceOne/wasmd", + "tag": "v0.40.2-lsm3", + "path": "$HOME/.persistenceCore/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/persistenceOne/ibc-go", + "version": "v7.2.0", + "tag": "v7.2.0-lsm3", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v10.4.1", @@ -209,11 +271,6 @@ "v10.5.0" ], "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.3-lsm5", - "ibc_go_version": "persistenceOne/ibc-go/v7 v7.2.0-lsm3", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -224,7 +281,30 @@ "binaries": { "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v10.5.0/persistenceCore-v10.5.0-linux-amd64.tar.gz" }, - "next_version_name": "v11" + "next_version_name": "v11", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/persistenceOne/cosmos-sdk", + "version": "v0.47.3", + "tag": "v0.47.3-lsm5" + }, + "cosmwasm": { + "version": "v0.40.2", + "repo": "https://github.com/persistenceOne/wasmd", + "tag": "v0.40.2-lsm3", + "path": "$HOME/.persistenceCore/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/persistenceOne/ibc-go", + "version": "v7.2.0", + "tag": "v7.2.0-lsm3", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v11", @@ -236,11 +316,6 @@ "v11.8.1" ], "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.3-lsm5", - "ibc_go_version": "persistenceOne/ibc-go/v7 v7.2.0-lsm3", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -251,7 +326,30 @@ "binaries": { "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v11.8.1/persistenceCore-v11.8.1-linux-amd64.tar.gz" }, - "next_version_name": "v11.9.0" + "next_version_name": "v11.9.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/persistenceOne/cosmos-sdk", + "version": "v0.47.3", + "tag": "v0.47.3-lsm5" + }, + "cosmwasm": { + "version": "v0.40.2", + "repo": "https://github.com/persistenceOne/wasmd", + "tag": "v0.40.2-lsm3", + "path": "$HOME/.persistenceCore/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/persistenceOne/ibc-go", + "version": "v7.2.0", + "tag": "v7.2.0-lsm3", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v11.9.0", @@ -263,11 +361,6 @@ "v11.9.0" ], "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.10-lsm-rc0", - "ibc_go_version": "v7.4.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.4" @@ -278,7 +371,26 @@ "binaries": { "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v11.9.0/persistenceCore-v11.9.0-linux-amd64.tar.gz" }, - "next_version_name": "v11.10.0" + "next_version_name": "v11.10.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/persistenceOne/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-lsm-rc0" + }, + "cosmwasm": { + "version": "v0.45.0", + "path": "$HOME/.persistenceCore/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v11.10.0", @@ -290,11 +402,6 @@ "v11.10.0" ], "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.10-lsm-rc0", - "ibc_go_version": "v7.4.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.4" @@ -305,7 +412,26 @@ "binaries": { "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v11.10.0/persistenceCore-v11.10.0-linux-amd64.tar.gz" }, - "next_version_name": "v11.11.0" + "next_version_name": "v11.11.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/persistenceOne/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-lsm-rc0" + }, + "cosmwasm": { + "version": "v0.45.0", + "path": "$HOME/.persistenceCore/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v11.11.0", @@ -317,11 +443,6 @@ "v11.11.0" ], "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.10-lsm-rc0", - "ibc_go_version": "v7.4.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.4" @@ -332,7 +453,26 @@ "binaries": { "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v11.11.0/persistenceCore-v11.11.0-linux-amd64.tar.gz" }, - "next_version_name": "v11.12.0" + "next_version_name": "v11.12.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/persistenceOne/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-lsm-rc0" + }, + "cosmwasm": { + "version": "v0.45.0", + "path": "$HOME/.persistenceCore/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v11.12.0", @@ -344,11 +484,6 @@ "v11.12.0" ], "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.10-lsm-rc0", - "ibc_go_version": "v7.4.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.4" @@ -359,7 +494,26 @@ "binaries": { "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v11.12.0/persistenceCore-v11.12.0-linux-amd64.tar.gz" }, - "next_version_name": "v11.13.0" + "next_version_name": "v11.13.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/persistenceOne/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-lsm-rc0" + }, + "cosmwasm": { + "version": "v0.45.0", + "path": "$HOME/.persistenceCore/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v11.13.0", @@ -371,11 +525,6 @@ "v11.13.0" ], "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.10-lsm-rc0", - "ibc_go_version": "v7.4.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.4" @@ -386,7 +535,26 @@ "binaries": { "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v11.13.0/persistenceCore-v11.13.0-linux-amd64.tar.gz" }, - "next_version_name": "v11.14.0" + "next_version_name": "v11.14.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/persistenceOne/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-lsm-rc0" + }, + "cosmwasm": { + "version": "v0.45.0", + "path": "$HOME/.persistenceCore/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v11.14.0", @@ -398,11 +566,6 @@ "v11.14.0" ], "cosmos_sdk_version": "persistenceOne/cosmos-sdk v0.47.10-lsm-rc0", - "ibc_go_version": "v7.4.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.4" @@ -413,9 +576,47 @@ "binaries": { "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v11.14.0/persistenceCore-v11.14.0-linux-amd64.tar.gz" }, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/persistenceOne/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-lsm-rc0" + }, + "cosmwasm": { + "version": "v0.45.0", + "path": "$HOME/.persistenceCore/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/persistenceOne/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-lsm-rc0" + }, + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + }, + "cosmwasm": { + "version": "v0.45.0", + "path": "$HOME/.persistenceCore/wasm", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", diff --git a/persistence/images/xprt.png b/persistence/images/xprt.png index 0d65d46093..130433326f 100644 Binary files a/persistence/images/xprt.png and b/persistence/images/xprt.png differ diff --git a/persistence/images/xprt.svg b/persistence/images/xprt.svg index 124730d6b5..404f9a0dd8 100644 --- a/persistence/images/xprt.svg +++ b/persistence/images/xprt.svg @@ -1,12 +1,5 @@ - - - - - - - - - - - + + + + diff --git a/planq/assetlist.json b/planq/assetlist.json index 80e16de2b1..45897edae0 100644 --- a/planq/assetlist.json +++ b/planq/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://planq.network", "twitter": "https://twitter.com/planqfoundation" - } + }, + "type_asset": "sdk.coin" }, { "description": "The token of Source Protocol bridged from BSC.", @@ -82,7 +83,8 @@ ], "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png" - } + }, + "type_asset": "sdk.coin" }, { "description": "MEME Token (MEME) is the native staking token of the MEME Chain", @@ -126,9 +128,12 @@ "image_sync": { "chain_name": "meme", "base_denom": "umeme" + }, + "theme": { + "primary_color_hex": "#b7dcd8" } } ] } ] -} +} \ No newline at end of file diff --git a/planq/chain.json b/planq/chain.json index 7d9aceae1f..def735cf40 100644 --- a/planq/chain.json +++ b/planq/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://planq.network/", "pretty_name": "Planq", + "chain_type": "cosmos", "chain_id": "planq_7070-2", "bech32_prefix": "plq", "node_home": "$HOME/.planqd", @@ -49,7 +50,6 @@ "type": "cometbft", "version": "0.34.26" }, - "ibc_go_version": "5.0.2", "genesis": { "genesis_url": "https://raw.githubusercontent.com/planq-network/networks/main/mainnet/genesis.json" }, @@ -82,7 +82,6 @@ "type": "cometbft", "version": "0.34.26" }, - "ibc_go_version": "5.0.2", "binaries": { "linux/amd64": "https://github.com/planq-network/planq/releases/download/v1.1.0/planq_1.1.0_linux_amd64.tar.gz", "linux/arm64": "https://github.com/planq-network/planq/releases/download/v1.1.0/planq_1.1.0_linux_arm64.tar.gz", @@ -90,9 +89,25 @@ "darwin/arm64": "https://github.com/planq-network/planq/releases/download/v1.1.0/planq_1.1.0_darwin_arm64.tar.gz", "windows/amd64": "https://github.com/planq-network/planq/releases/download/v1.1.0/planq_1.1.0_windows_amd64.zip" }, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.46.3" + }, + "ibc": { + "type": "go", + "version": "5.0.2" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.46.3" + }, + "ibc": { + "type": "go", + "version": "5.0.2" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png", diff --git a/point/assetlist.json b/point/assetlist.json index 4c2f8b5afa..b27918d26d 100644 --- a/point/assetlist.json +++ b/point/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/point/chain.json b/point/chain.json index e4aa0d40bf..4f54276de0 100644 --- a/point/chain.json +++ b/point/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Point Network", + "chain_type": "cosmos", "chain_id": "point_10687-1", "bech32_prefix": "point", "node_home": "$HOME/.pointd", diff --git a/provenance/assetlist.json b/provenance/assetlist.json index 55f7d73890..47b02c8e44 100644 --- a/provenance/assetlist.json +++ b/provenance/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#4c7cdc" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/provenance/chain.json b/provenance/chain.json index f7dab14783..6ecb9fd69d 100644 --- a/provenance/chain.json +++ b/provenance/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://provenance.io/", "pretty_name": "Provenance", + "chain_type": "cosmos", "chain_id": "pio-mainnet-1", "bech32_prefix": "pb", "daemon_name": "provenanced", @@ -44,11 +45,6 @@ }, "cosmwasm_version": "0.30", "cosmwasm_enabled": true, - "ibc_go_version": "6.2.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "binaries": { "linux/amd64": "https://github.com/provenance-io/provenance/releases/download/v1.17.0/provenance-linux-amd64-v1.17.0.zip" }, @@ -193,14 +189,25 @@ }, "cosmwasm_version": "0.30", "cosmwasm_enabled": true, - "ibc_go_version": "6.1.0", - "ics_enabled": [ - "ics20-1" - ], "binaries": { "linux/amd64": "https://github.com/provenance-io/provenance/releases/download/v1.14.1/provenance-linux-amd64-v1.14.1.zip" }, - "next_version_name": "quicksilver" + "next_version_name": "quicksilver", + "sdk": { + "type": "cosmos", + "version": "0.46.10" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "6.1.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "quicksilver", @@ -217,14 +224,21 @@ "type": "tendermint", "version": "0.34.26" }, - "ibc_go_version": "6.1.1", - "ics_enabled": [ - "ics20-1" - ], "binaries": { "linux/amd64": "https://github.com/provenance-io/provenance/releases/download/v1.15.2/provenance-linux-amd64-v1.15.2.zip" }, - "next_version_name": "rust" + "next_version_name": "rust", + "sdk": { + "type": "cosmos", + "version": "0.46.10" + }, + "ibc": { + "type": "go", + "version": "6.1.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "rust", @@ -241,13 +255,24 @@ }, "cosmwasm_version": "0.30", "cosmwasm_enabled": true, - "ibc_go_version": "6.2.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "binaries": { "linux/amd64": "https://github.com/provenance-io/provenance/releases/download/v1.16.0/provenance-linux-amd64-v1.16.0.zip" + }, + "sdk": { + "type": "cosmos", + "version": "0.46.13" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "6.2.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] } }, { @@ -265,16 +290,43 @@ }, "cosmwasm_version": "0.30", "cosmwasm_enabled": true, - "ibc_go_version": "6.2.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "binaries": { "linux/amd64": "https://github.com/provenance-io/provenance/releases/download/v1.17.0/provenance-linux-amd64-v1.17.0.zip" + }, + "sdk": { + "type": "cosmos", + "version": "0.46.13" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "6.2.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.46.13" + }, + "ibc": { + "type": "go", + "version": "6.2.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png", @@ -311,6 +363,11 @@ "id": "10ed1e176d874c8bb3c7c065685d2da6a4b86475", "address": "seed-provenance.ibs.team:16675", "provider": "Inter Blockchain Services" + }, + { + "id": "258f523c96efde50d5fe0a9faeea8a3e83be22ca", + "address": "seed.pio-mainnet-1.provenance.aviaone.com:10277", + "provider": "AVIAONE 🟒" } ], "persistent_peers": [ @@ -363,6 +420,10 @@ { "address": "https://provenance_mainnet_rpc.chain.whenmoonwhenlambo.money", "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" + }, + { + "address": "https://rpc.pio-mainnet-1.provenance.aviaone.com", + "provider": "AVIAONE 🟒" } ], "rest": [ @@ -405,6 +466,10 @@ { "address": "https://provenance_mainnet_api.chain.whenmoonwhenlambo.money", "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" + }, + { + "address": "https://api.pio-mainnet-1.provenance.aviaone.com", + "provider": "AVIAONE 🟒" } ], "grpc": [ @@ -427,6 +492,10 @@ { "address": "provenance-grpc.panthea.eu:16780", "provider": "Panthea EU" + }, + { + "address": "grpc.pio-mainnet-1.provenance.aviaone.com:9231", + "provider": "AVIAONE 🟒" } ] }, @@ -475,6 +544,12 @@ "url": "https://explorer.whenmoonwhenlambo.money/provenance", "tx_page": "https://explorer.whenmoonwhenlambo.money/provenance/tx/${txHash}", "account_page": "https://explorer.whenmoonwhenlambo.money/provenance/account/${accountAddress}" + }, + { + "kind": "AVIAONE 🟒", + "url": "https://mainnet.explorer.aviaone.com/provenance", + "tx_page": "https://mainnet.explorer.aviaone.com/provenance/tx/${txHash}", + "account_page": "https://mainnet.explorer.aviaone.com/provenance/account/${accountAddress}" } ], "images": [ diff --git a/prysm/assetlist.json b/prysm/assetlist.json index 23e6e1e036..4468d31cc2 100644 --- a/prysm/assetlist.json +++ b/prysm/assetlist.json @@ -30,7 +30,8 @@ "socials": { "website": "https://www.prysm.network/", "twitter": "https://twitter.com/PrysmNetwork" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/pryzm/assetlist.json b/pryzm/assetlist.json index a28d6a2982..cca4b68da2 100644 --- a/pryzm/assetlist.json +++ b/pryzm/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#c6ddf5" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The meme token of PRYZM", @@ -63,7 +64,8 @@ "primary_color_hex": "#eb536c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The native staking and governance token of the Cosmos Hub", @@ -71,7 +73,9 @@ { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", "exponent": 0, - "aliases": ["uatom"] + "aliases": [ + "uatom" + ] }, { "denom": "atom", @@ -109,7 +113,10 @@ "base_denom": "uatom" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg", + "theme": { + "primary_color_hex": "#272d45" + } } ] }, @@ -119,7 +126,9 @@ { "denom": "ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255", "exponent": 0, - "aliases": ["inj"] + "aliases": [ + "inj" + ] }, { "denom": "INJ", @@ -157,7 +166,10 @@ "base_denom": "inj" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg", + "theme": { + "primary_color_hex": "#04a2fc" + } } ] }, @@ -167,7 +179,9 @@ { "denom": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", "exponent": 0, - "aliases": ["uosmo"] + "aliases": [ + "uosmo" + ] }, { "denom": "osmo", @@ -205,7 +219,10 @@ "base_denom": "uosmo" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg", + "theme": { + "primary_color_hex": "#760dbb" + } } ] }, @@ -215,7 +232,9 @@ { "denom": "ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676", "exponent": 0, - "aliases": ["utia"] + "aliases": [ + "utia" + ] }, { "denom": "tia", @@ -253,7 +272,10 @@ "base_denom": "utia" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg", + "theme": { + "primary_color_hex": "#7c2cfb" + } } ] }, @@ -263,7 +285,9 @@ { "denom": "ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395", "exponent": 0, - "aliases": ["uluna"] + "aliases": [ + "uluna" + ] }, { "denom": "luna", @@ -301,7 +325,10 @@ "base_denom": "uluna" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg", + "theme": { + "primary_color_hex": "#f4de6f" + } } ] }, @@ -311,7 +338,9 @@ { "denom": "ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65", "exponent": 0, - "aliases": ["uusdc"] + "aliases": [ + "uusdc" + ] }, { "denom": "usdc", @@ -339,8 +368,8 @@ } ], "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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "images": [ { @@ -348,8 +377,12 @@ "chain_name": "noble", "base_denom": "uusdc" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } } ] }, @@ -359,7 +392,9 @@ { "denom": "ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B", "exponent": 0, - "aliases": ["uusdc"] + "aliases": [ + "uusdc" + ] }, { "denom": "usdc", @@ -397,9 +432,2628 @@ "base_denom": "uusdc" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", + "theme": { + "primary_color_hex": "#2474cc" + } + } + ] + }, + { + "description": "The native staking and governance token of the dYdX chain", + "denom_units": [ + { + "denom": "ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858", + "exponent": 0, + "aliases": [ + "adydx" + ] + }, + { + "denom": "dydx", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858", + "name": "dYdX", + "display": "dydx", + "symbol": "DYDX", + "coingecko_id": "dydx-chain", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "dydx", + "base_denom": "adydx", + "channel_id": "channel-71" + }, + "chain": { + "channel_id": "channel-24", + "path": "transfer/channel-24/adydx" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "dydx", + "base_denom": "adydx" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg", + "theme": { + "primary_color_hex": "#21212f" + } + } + ] + }, + { + "description": "Stride's liquid staked TIA", + "denom_units": [ + { + "denom": "ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F", + "exponent": 0, + "aliases": [ + "stutia" + ] + }, + { + "denom": "stTIA", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F", + "name": "Stride Staked TIA", + "display": "stTIA", + "symbol": "stTIA", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "stutia", + "channel_id": "channel-257" + }, + "chain": { + "channel_id": "channel-23", + "path": "transfer/channel-23/stutia" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "stride", + "base_denom": "stutia" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg", + "theme": { + "primary_color_hex": "#e40474" + } + } + ] + }, + { + "description": "Stride's liquid staked DYDX", + "denom_units": [ + { + "denom": "ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE", + "exponent": 0, + "aliases": [ + "stadydx" + ] + }, + { + "denom": "stDYDX", + "exponent": 18 + } + ], + "type_asset": "ics20", + "base": "ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE", + "name": "Stride Staked DYDX", + "display": "stDYDX", + "symbol": "stDYDX", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "stadydx", + "channel_id": "channel-257" + }, + "chain": { + "channel_id": "channel-23", + "path": "transfer/channel-23/stadydx" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "stride", + "base_denom": "stadydx" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg", + "theme": { + "primary_color_hex": "#e40474" + } } ] + }, + { + "description": "Drop Protocol's liquid staked ATOM", + "denom_units": [ + { + "denom": "ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87", + "exponent": 0, + "aliases": [ + "udatom" + ] + }, + { + "denom": "dATOM", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87", + "name": "dATOM", + "display": "dATOM", + "symbol": "dATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom", + "channel_id": "channel-4329" + }, + "chain": { + "channel_id": "channel-6", + "path": "transfer/channel-6/factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dATOM.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom" + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dATOM.svg" + } + ] + }, + { + "description": "Pryzm's native liquid staking token for ATOM", + "denom_units": [ + { + "denom": "c:uatom", + "exponent": 0 + }, + { + "denom": "catom", + "exponent": 6 + } + ], + "base": "c:uatom", + "name": "cAtom", + "display": "catom", + "symbol": "cATOM", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom" + }, + "provider": "Pryzm" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cAtom.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cAtom.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's native liquid staking token for INJ", + "denom_units": [ + { + "denom": "c:inj", + "exponent": 0 + }, + { + "denom": "cINJ", + "exponent": 18 + } + ], + "base": "c:inj", + "name": "cInj", + "display": "cINJ", + "symbol": "cINJ", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "injective", + "base_denom": "inj" + }, + "provider": "Pryzm" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cInj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cInj.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cInj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cInj.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's native liquid staking token for OSMO", + "denom_units": [ + { + "denom": "c:uosmo", + "exponent": 0 + }, + { + "denom": "cosmo", + "exponent": 6 + } + ], + "base": "c:uosmo", + "name": "cOsmo", + "display": "cosmo", + "symbol": "cOSMO", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo" + }, + "provider": "Pryzm" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cOsmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cOsmo.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cOsmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cOsmo.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's native liquid staking token for LUNA", + "denom_units": [ + { + "denom": "c:uluna", + "exponent": 0 + }, + { + "denom": "cluna", + "exponent": 6 + } + ], + "base": "c:uluna", + "name": "cLuna", + "display": "cluna", + "symbol": "cLUNA", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "terra2", + "base_denom": "uluna" + }, + "provider": "Pryzm" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cLuna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cLuna.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cLuna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cLuna.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's native liquid staking token for AUUU", + "denom_units": [ + { + "denom": "factory/pryzm1qg5ega6dykkxc307y25pecuufrjkxkaggkkxh7nad0vhyhtuhw3sk0s70x/cuauuu", + "exponent": 0 + }, + { + "denom": "cauuu", + "exponent": 6 + } + ], + "base": "factory/pryzm1qg5ega6dykkxc307y25pecuufrjkxkaggkkxh7nad0vhyhtuhw3sk0s70x/cuauuu", + "name": "cAuuu", + "display": "cauuu", + "symbol": "cAUUU", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "pryzm", + "base_denom": "factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu" + }, + "provider": "Pryzm" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cAuuu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cAuuu.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cAuuu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cAuuu.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's native liquid staking token for TIA", + "denom_units": [ + { + "denom": "c:utia", + "exponent": 0 + }, + { + "denom": "ctia", + "exponent": 6 + } + ], + "base": "c:utia", + "name": "cTia", + "display": "ctia", + "symbol": "cTIA", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "celestia", + "base_denom": "utia" + }, + "provider": "Pryzm" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cTia.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/cTia.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for ATOM with maturity of 30Sep2024", + "denom_units": [ + { + "denom": "p:uatom:30Sep2024", + "exponent": 0 + }, + { + "denom": "pATOM30Sep2024", + "exponent": 6 + } + ], + "base": "p:uatom:30Sep2024", + "name": "pAtom (30Sep2024)", + "display": "pATOM30Sep2024", + "symbol": "pATOM-30Sep2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for ATOM with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "p:uatom:31Dec2024", + "exponent": 0 + }, + { + "denom": "pATOM31Dec2024", + "exponent": 6 + } + ], + "base": "p:uatom:31Dec2024", + "name": "pAtom (31Dec2024)", + "display": "pATOM31Dec2024", + "symbol": "pATOM-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for ATOM with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "p:uatom:31Dec2025", + "exponent": 0 + }, + { + "denom": "pATOM31Dec2025", + "exponent": 6 + } + ], + "base": "p:uatom:31Dec2025", + "name": "pAtom (31Dec2025)", + "display": "pATOM31Dec2025", + "symbol": "pATOM-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for OSMO with maturity of 30Sep2024", + "denom_units": [ + { + "denom": "p:uosmo:30Sep2024", + "exponent": 0 + }, + { + "denom": "pOSMO30Sep2024", + "exponent": 6 + } + ], + "base": "p:uosmo:30Sep2024", + "name": "pOsmo (30Sep2024)", + "display": "pOSMO30Sep2024", + "symbol": "pOSMO-30Sep2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for OSMO with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "p:uosmo:31Dec2024", + "exponent": 0 + }, + { + "denom": "pOSMO31Dec2024", + "exponent": 6 + } + ], + "base": "p:uosmo:31Dec2024", + "name": "pOsmo (31Dec2024)", + "display": "pOSMO31Dec2024", + "symbol": "pOSMO-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for OSMO with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "p:uosmo:31Dec2025", + "exponent": 0 + }, + { + "denom": "pOSMO31Dec2025", + "exponent": 6 + } + ], + "base": "p:uosmo:31Dec2025", + "name": "pOsmo (31Dec2025)", + "display": "pOSMO31Dec2025", + "symbol": "pOSMO-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for INJ with maturity of 30Sep2024", + "denom_units": [ + { + "denom": "p:inj:30Sep2024", + "exponent": 0 + }, + { + "denom": "pINJ30Sep2024", + "exponent": 18 + } + ], + "base": "p:inj:30Sep2024", + "name": "pInj (30Sep2024)", + "display": "pINJ30Sep2024", + "symbol": "pINJ-30Sep2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for INJ with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "p:inj:31Dec2024", + "exponent": 0 + }, + { + "denom": "pINJ31Dec2024", + "exponent": 18 + } + ], + "base": "p:inj:31Dec2024", + "name": "pInj (31Dec2024)", + "display": "pINJ31Dec2024", + "symbol": "pINJ-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for INJ with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "p:inj:31Dec2025", + "exponent": 0 + }, + { + "denom": "pINJ31Dec2025", + "exponent": 18 + } + ], + "base": "p:inj:31Dec2025", + "name": "pInj (31Dec2025)", + "display": "pINJ31Dec2025", + "symbol": "pINJ-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for LUNA with maturity of 30Sep2024", + "denom_units": [ + { + "denom": "p:uluna:30Sep2024", + "exponent": 0 + }, + { + "denom": "pLUNA30Sep2024", + "exponent": 6 + } + ], + "base": "p:uluna:30Sep2024", + "name": "pLuna (30Sep2024)", + "display": "pLUNA30Sep2024", + "symbol": "pLUNA-30Sep2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for LUNA with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "p:uluna:31Dec2024", + "exponent": 0 + }, + { + "denom": "pLUNA31Dec2024", + "exponent": 6 + } + ], + "base": "p:uluna:31Dec2024", + "name": "pLuna (31Dec2024)", + "display": "pLUNA31Dec2024", + "symbol": "pLUNA-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for LUNA with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "p:uluna:31Dec2025", + "exponent": 0 + }, + { + "denom": "pLUNA31Dec2025", + "exponent": 6 + } + ], + "base": "p:uluna:31Dec2025", + "name": "pLuna (31Dec2025)", + "display": "pLUNA31Dec2025", + "symbol": "pLUNA-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for AUUU with maturity of 30Sep2024", + "denom_units": [ + { + "denom": "p:uauuu:30Sep2024", + "exponent": 0 + }, + { + "denom": "pAUUU30Sep2024", + "exponent": 6 + } + ], + "base": "p:uauuu:30Sep2024", + "name": "pAuuu (30Sep2024)", + "display": "pAUUU30Sep2024", + "symbol": "pAUUU-30Sep2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for AUUU with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "p:uauuu:31Dec2024", + "exponent": 0 + }, + { + "denom": "pAUUU31Dec2024", + "exponent": 6 + } + ], + "base": "p:uauuu:31Dec2024", + "name": "pAuuu (31Dec2024)", + "display": "pAUUU31Dec2024", + "symbol": "pAUUU-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for AUUU with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "p:uauuu:31Dec2025", + "exponent": 0 + }, + { + "denom": "pAUUU31Dec2025", + "exponent": 6 + } + ], + "base": "p:uauuu:31Dec2025", + "name": "pAuuu (31Dec2025)", + "display": "pAUUU31Dec2025", + "symbol": "pAUUU-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for stTIA with maturity of 30Sep2024", + "denom_units": [ + { + "denom": "p:stutia:30Sep2024", + "exponent": 0 + }, + { + "denom": "pstTIA30Sep2024", + "exponent": 6 + } + ], + "base": "p:stutia:30Sep2024", + "name": "pstTia (30Sep2024)", + "display": "pstTIA30Sep2024", + "symbol": "pstTIA-30Sep2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for stTIA with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "p:stutia:31Dec2024", + "exponent": 0 + }, + { + "denom": "pstTIA31Dec2024", + "exponent": 6 + } + ], + "base": "p:stutia:31Dec2024", + "name": "pstTia (31Dec2024)", + "display": "pstTIA31Dec2024", + "symbol": "pstTIA-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for stTIA with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "p:stutia:31Dec2025", + "exponent": 0 + }, + { + "denom": "pstTIA31Dec2025", + "exponent": 6 + } + ], + "base": "p:stutia:31Dec2025", + "name": "pstTia (31Dec2025)", + "display": "pstTIA31Dec2025", + "symbol": "pstTIA-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for stDYDX with maturity of 30Sep2024", + "denom_units": [ + { + "denom": "p:stadydx:30Sep2024", + "exponent": 0 + }, + { + "denom": "pstDYDX30Sep2024", + "exponent": 18 + } + ], + "base": "p:stadydx:30Sep2024", + "name": "pstDydx (30Sep2024)", + "display": "pstDYDX30Sep2024", + "symbol": "pstDYDX-30Sep2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for stDYDX with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "p:stadydx:31Dec2024", + "exponent": 0 + }, + { + "denom": "pstDYDX31Dec2024", + "exponent": 18 + } + ], + "base": "p:stadydx:31Dec2024", + "name": "pstDydx (31Dec2024)", + "display": "pstDYDX31Dec2024", + "symbol": "pstDYDX-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for stDYDX with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "p:stadydx:31Dec2025", + "exponent": 0 + }, + { + "denom": "pstDYDX31Dec2025", + "exponent": 18 + } + ], + "base": "p:stadydx:31Dec2025", + "name": "pstDydx (31Dec2025)", + "display": "pstDYDX31Dec2025", + "symbol": "pstDYDX-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for dATOM with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "p:udatom:31Dec2024", + "exponent": 0 + }, + { + "denom": "pdATOM31Dec2024", + "exponent": 6 + } + ], + "base": "p:udatom:31Dec2024", + "name": "pdAtom (31Dec2024)", + "display": "pdATOM31Dec2024", + "symbol": "pdATOM-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for dATOM with maturity of 30Jun2025", + "denom_units": [ + { + "denom": "p:udatom:30Jun2025", + "exponent": 0 + }, + { + "denom": "pdATOM30Jun2025", + "exponent": 6 + } + ], + "base": "p:udatom:30Jun2025", + "name": "pdAtom (30Jun2025)", + "display": "pdATOM30Jun2025", + "symbol": "pdATOM-30Jun2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for dATOM with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "p:udatom:31Dec2025", + "exponent": 0 + }, + { + "denom": "pdATOM31Dec2025", + "exponent": 6 + } + ], + "base": "p:udatom:31Dec2025", + "name": "pdAtom (31Dec2025)", + "display": "pdATOM31Dec2025", + "symbol": "pdATOM-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for TIA with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "p:utia:31Dec2024", + "exponent": 0 + }, + { + "denom": "pTIA31Dec2024", + "exponent": 6 + } + ], + "base": "p:utia:31Dec2024", + "name": "pTia (31Dec2024)", + "display": "pTIA31Dec2024", + "symbol": "pTIA-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pTia.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pTia.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted principal token for TIA with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "p:utia:31Dec2025", + "exponent": 0 + }, + { + "denom": "pTIA31Dec2025", + "exponent": 6 + } + ], + "base": "p:utia:31Dec2025", + "name": "pTia (31Dec2025)", + "display": "pTIA31Dec2025", + "symbol": "pTIA-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pTia.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pTia.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for ATOM with maturity of 30Sep2024", + "denom_units": [ + { + "denom": "y:uatom:30Sep2024", + "exponent": 0 + }, + { + "denom": "yATOM30Sep2024", + "exponent": 6 + } + ], + "base": "y:uatom:30Sep2024", + "name": "yAtom (30Sep2024)", + "display": "yATOM30Sep2024", + "symbol": "yATOM-30Sep2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for ATOM with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "y:uatom:31Dec2024", + "exponent": 0 + }, + { + "denom": "yATOM31Dec2024", + "exponent": 6 + } + ], + "base": "y:uatom:31Dec2024", + "name": "yAtom (31Dec2024)", + "display": "yATOM31Dec2024", + "symbol": "yATOM-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for ATOM with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "y:uatom:31Dec2025", + "exponent": 0 + }, + { + "denom": "yATOM31Dec2025", + "exponent": 6 + } + ], + "base": "y:uatom:31Dec2025", + "name": "yAtom (31Dec2025)", + "display": "yATOM31Dec2025", + "symbol": "yATOM-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for OSMO with maturity of 30Sep2024", + "denom_units": [ + { + "denom": "y:uosmo:30Sep2024", + "exponent": 0 + }, + { + "denom": "yOSMO30Sep2024", + "exponent": 6 + } + ], + "base": "y:uosmo:30Sep2024", + "name": "yOsmo (30Sep2024)", + "display": "yOSMO30Sep2024", + "symbol": "yOSMO-30Sep2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for OSMO with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "y:uosmo:31Dec2024", + "exponent": 0 + }, + { + "denom": "yOSMO31Dec2024", + "exponent": 6 + } + ], + "base": "y:uosmo:31Dec2024", + "name": "yOsmo (31Dec2024)", + "display": "yOSMO31Dec2024", + "symbol": "yOSMO-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for OSMO with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "y:uosmo:31Dec2025", + "exponent": 0 + }, + { + "denom": "yOSMO31Dec2025", + "exponent": 6 + } + ], + "base": "y:uosmo:31Dec2025", + "name": "yOsmo (31Dec2025)", + "display": "yOSMO31Dec2025", + "symbol": "yOSMO-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for INJ with maturity of 30Sep2024", + "denom_units": [ + { + "denom": "y:inj:30Sep2024", + "exponent": 0 + }, + { + "denom": "yINJ30Sep2024", + "exponent": 18 + } + ], + "base": "y:inj:30Sep2024", + "name": "yInj (30Sep2024)", + "display": "yINJ30Sep2024", + "symbol": "yINJ-30Sep2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for INJ with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "y:inj:31Dec2024", + "exponent": 0 + }, + { + "denom": "yINJ31Dec2024", + "exponent": 18 + } + ], + "base": "y:inj:31Dec2024", + "name": "yInj (31Dec2024)", + "display": "yINJ31Dec2024", + "symbol": "yINJ-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for INJ with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "y:inj:31Dec2025", + "exponent": 0 + }, + { + "denom": "yINJ31Dec2025", + "exponent": 18 + } + ], + "base": "y:inj:31Dec2025", + "name": "yInj (31Dec2025)", + "display": "yINJ31Dec2025", + "symbol": "yINJ-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for LUNA with maturity of 30Sep2024", + "denom_units": [ + { + "denom": "y:uluna:30Sep2024", + "exponent": 0 + }, + { + "denom": "yLUNA30Sep2024", + "exponent": 6 + } + ], + "base": "y:uluna:30Sep2024", + "name": "yLuna (30Sep2024)", + "display": "yLUNA30Sep2024", + "symbol": "yLUNA-30Sep2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for LUNA with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "y:uluna:31Dec2024", + "exponent": 0 + }, + { + "denom": "yLUNA31Dec2024", + "exponent": 6 + } + ], + "base": "y:uluna:31Dec2024", + "name": "yLuna (31Dec2024)", + "display": "yLUNA31Dec2024", + "symbol": "yLUNA-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for LUNA with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "y:uluna:31Dec2025", + "exponent": 0 + }, + { + "denom": "yLUNA31Dec2025", + "exponent": 6 + } + ], + "base": "y:uluna:31Dec2025", + "name": "yLuna (31Dec2025)", + "display": "yLUNA31Dec2025", + "symbol": "yLUNA-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for AUUU with maturity of 30Sep2024", + "denom_units": [ + { + "denom": "y:uauuu:30Sep2024", + "exponent": 0 + }, + { + "denom": "yAUUU30Sep2024", + "exponent": 6 + } + ], + "base": "y:uauuu:30Sep2024", + "name": "yAuuu (30Sep2024)", + "display": "yAUUU30Sep2024", + "symbol": "yAUUU-30Sep2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for AUUU with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "y:uauuu:31Dec2024", + "exponent": 0 + }, + { + "denom": "yAUUU31Dec2024", + "exponent": 6 + } + ], + "base": "y:uauuu:31Dec2024", + "name": "yAuuu (31Dec2024)", + "display": "yAUUU31Dec2024", + "symbol": "yAUUU-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for AUUU with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "y:uauuu:31Dec2025", + "exponent": 0 + }, + { + "denom": "yAUUU31Dec2025", + "exponent": 6 + } + ], + "base": "y:uauuu:31Dec2025", + "name": "yAuuu (31Dec2025)", + "display": "yAUUU31Dec2025", + "symbol": "yAUUU-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for stTIA with maturity of 30Sep2024", + "denom_units": [ + { + "denom": "y:stutia:30Sep2024", + "exponent": 0 + }, + { + "denom": "ystTIA30Sep2024", + "exponent": 6 + } + ], + "base": "y:stutia:30Sep2024", + "name": "ystTia (30Sep2024)", + "display": "ystTIA30Sep2024", + "symbol": "ystTIA-30Sep2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for stTIA with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "y:stutia:31Dec2024", + "exponent": 0 + }, + { + "denom": "ystTIA31Dec2024", + "exponent": 6 + } + ], + "base": "y:stutia:31Dec2024", + "name": "ystTia (31Dec2024)", + "display": "ystTIA31Dec2024", + "symbol": "ystTIA-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for stTIA with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "y:stutia:31Dec2025", + "exponent": 0 + }, + { + "denom": "ystTIA31Dec2025", + "exponent": 6 + } + ], + "base": "y:stutia:31Dec2025", + "name": "ystTia (31Dec2025)", + "display": "ystTIA31Dec2025", + "symbol": "ystTIA-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for stDYDX with maturity of 30Sep2024", + "denom_units": [ + { + "denom": "y:stadydx:30Sep2024", + "exponent": 0 + }, + { + "denom": "ystDYDX30Sep2024", + "exponent": 6 + } + ], + "base": "y:stadydx:30Sep2024", + "name": "ystDydx (30Sep2024)", + "display": "ystDYDX30Sep2024", + "symbol": "ystDYDX-30Sep2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for stDYDX with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "y:stadydx:31Dec2024", + "exponent": 0 + }, + { + "denom": "ystDYDX31Dec2024", + "exponent": 6 + } + ], + "base": "y:stadydx:31Dec2024", + "name": "ystDydx (31Dec2024)", + "display": "ystDYDX31Dec2024", + "symbol": "ystDYDX-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for stDYDX with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "y:stadydx:31Dec2025", + "exponent": 0 + }, + { + "denom": "ystDYDX31Dec2025", + "exponent": 6 + } + ], + "base": "y:stadydx:31Dec2025", + "name": "ystDydx (31Dec2025)", + "display": "ystDYDX31Dec2025", + "symbol": "ystDYDX-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for dATOM with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "y:udatom:31Dec2024", + "exponent": 0 + }, + { + "denom": "ydATOM31Dec2024", + "exponent": 6 + } + ], + "base": "y:udatom:31Dec2024", + "name": "ydAtom (31Dec2024)", + "display": "ydATOM31Dec2024", + "symbol": "ydATOM-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for dATOM with maturity of 30Jun2025", + "denom_units": [ + { + "denom": "y:udatom:30Jun2025", + "exponent": 0 + }, + { + "denom": "ydATOM30Jun2025", + "exponent": 6 + } + ], + "base": "y:udatom:30Jun2025", + "name": "ydAtom (30Jun2025)", + "display": "ydATOM30Jun2025", + "symbol": "ydATOM-30Jun2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for dATOM with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "y:udatom:31Dec2025", + "exponent": 0 + }, + { + "denom": "ydATOM31Dec2025", + "exponent": 6 + } + ], + "base": "y:udatom:31Dec2025", + "name": "ydAtom (31Dec2025)", + "display": "ydATOM31Dec2025", + "symbol": "ydATOM-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for TIA with maturity of 31Dec2024", + "denom_units": [ + { + "denom": "y:utia:31Dec2024", + "exponent": 0 + }, + { + "denom": "yTIA31Dec2024", + "exponent": 6 + } + ], + "base": "y:utia:31Dec2024", + "name": "yTia (31Dec2024)", + "display": "yTIA31Dec2024", + "symbol": "yTIA-31Dec2024", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yTia.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yTia.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's refracted yield token for TIA with maturity of 31Dec2025", + "denom_units": [ + { + "denom": "y:utia:31Dec2025", + "exponent": 0 + }, + { + "denom": "yTIA31Dec2025", + "exponent": 6 + } + ], + "base": "y:utia:31Dec2025", + "name": "yTia (31Dec2025)", + "display": "yTIA31Dec2025", + "symbol": "yTIA-31Dec2025", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yTia.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yTia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yTia.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for USDC / USDC.axl pool", + "denom_units": [ + { + "denom": "lp:6:uusdc.axl-uusdc", + "exponent": 0 + }, + { + "denom": "lp:6:usdc.axl-usdc", + "exponent": 6 + } + ], + "base": "lp:6:uusdc.axl-uusdc", + "name": "USDC / USDC.axl LP", + "display": "lp:6:usdc.axl-usdc", + "symbol": "USDC-USDC.axl-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for ATOM Yield pool", + "denom_units": [ + { + "denom": "lp:0:uatom", + "exponent": 0 + }, + { + "denom": "lp:0:atom", + "exponent": 6 + } + ], + "base": "lp:0:uatom", + "name": "ATOM Yield LP", + "display": "lp:0:atom", + "symbol": "ATOM-YIELD-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for ATOM Boost pool", + "denom_units": [ + { + "denom": "lp:2:uatomypt-uatom", + "exponent": 0 + }, + { + "denom": "lp:2:atomypt-atom", + "exponent": 6 + } + ], + "base": "lp:2:uatomypt-uatom", + "name": "ATOM Boost LP", + "display": "lp:2:atomypt-atom", + "symbol": "ATOM-BOOST-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for ATOM / USDC pool", + "denom_units": [ + { + "denom": "lp:3:uatom-uusdc", + "exponent": 0 + }, + { + "denom": "lp:3:atom-usdc", + "exponent": 6 + } + ], + "base": "lp:3:uatom-uusdc", + "name": "ATOM / USDC LP", + "display": "lp:3:atom-usdc", + "symbol": "ATOM-USDC-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for INJ Yield pool", + "denom_units": [ + { + "denom": "lp:1:inj", + "exponent": 0 + }, + { + "denom": "lp:1:INJ", + "exponent": 18 + } + ], + "base": "lp:1:inj", + "name": "INJ Yield LP", + "display": "lp:1:INJ", + "symbol": "INJ-YIELD-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for INJ Boost pool", + "denom_units": [ + { + "denom": "lp:4:injypt-inj", + "exponent": 0 + }, + { + "denom": "lp:4:INJypt-INJ", + "exponent": 18 + } + ], + "base": "lp:4:injypt-inj", + "name": "INJ Boost LP", + "display": "lp:4:INJypt-INJ", + "symbol": "INJ-BOOST-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for INJ / USDC pool", + "denom_units": [ + { + "denom": "lp:5:inj-uusdc", + "exponent": 0 + }, + { + "denom": "lp:5:INJ-usdc", + "exponent": 18 + } + ], + "base": "lp:5:inj-uusdc", + "name": "INJ / USDC LP", + "display": "lp:5:INJ-usdc", + "symbol": "INJ-USDC-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for OSMO Yield pool", + "denom_units": [ + { + "denom": "lp:8:uosmo", + "exponent": 0 + }, + { + "denom": "lp:8:osmo", + "exponent": 6 + } + ], + "base": "lp:8:uosmo", + "name": "OSMO Yield LP", + "display": "lp:8:osmo", + "symbol": "OSMO-YIELD-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for OSMO Boost pool", + "denom_units": [ + { + "denom": "lp:10:uosmoypt-uosmo", + "exponent": 0 + }, + { + "denom": "lp:10:osmoypt-osmo", + "exponent": 6 + } + ], + "base": "lp:10:uosmoypt-uosmo", + "name": "OSMO Boost LP", + "display": "lp:10:osmoypt-osmo", + "symbol": "OSMO-BOOST-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for OSMO / USDC pool", + "denom_units": [ + { + "denom": "lp:11:uosmo-uusdc", + "exponent": 0 + }, + { + "denom": "lp:11:osmo-usdc", + "exponent": 6 + } + ], + "base": "lp:11:uosmo-uusdc", + "name": "OSMO / USDC LP", + "display": "lp:11:osmo-usdc", + "symbol": "OSMO-USDC-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for LUNA Yield pool", + "denom_units": [ + { + "denom": "lp:9:uluna", + "exponent": 0 + }, + { + "denom": "lp:9:luna", + "exponent": 6 + } + ], + "base": "lp:9:uluna", + "name": "LUNA Yield LP", + "display": "lp:9:luna", + "symbol": "LUNA-YIELD-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for LUNA Boost pool", + "denom_units": [ + { + "denom": "lp:12:ulunaypt-uluna", + "exponent": 0 + }, + { + "denom": "lp:12:lunaypt-luna", + "exponent": 6 + } + ], + "base": "lp:12:ulunaypt-uluna", + "name": "LUNA Boost LP", + "display": "lp:12:lunaypt-luna", + "symbol": "LUNA-BOOST-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for LUNA / USDC pool", + "denom_units": [ + { + "denom": "lp:13:uluna-uusdc", + "exponent": 0 + }, + { + "denom": "lp:13:luna-usdc", + "exponent": 6 + } + ], + "base": "lp:13:uluna-uusdc", + "name": "LUNA / USDC LP", + "display": "lp:13:luna-usdc", + "symbol": "LUNA-USDC-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for AUUU Yield pool", + "denom_units": [ + { + "denom": "lp:14:uauuu", + "exponent": 0 + }, + { + "denom": "lp:14:auuu", + "exponent": 6 + } + ], + "base": "lp:14:uauuu", + "name": "AUUU Yield LP", + "display": "lp:14:auuu", + "symbol": "AUUU-YIELD-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for AUUU Boost pool", + "denom_units": [ + { + "denom": "lp:17:uauuuypt-uauuu", + "exponent": 0 + }, + { + "denom": "lp:17:auuuypt-auuu", + "exponent": 6 + } + ], + "base": "lp:17:uauuuypt-uauuu", + "name": "AUUU Boost LP", + "display": "lp:17:auuuypt-auuu", + "symbol": "AUUU-BOOST-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for AUUU / USDC pool", + "denom_units": [ + { + "denom": "lp:7:uauuu-uusdc", + "exponent": 0 + }, + { + "denom": "lp:7:auuu-usdc", + "exponent": 6 + } + ], + "base": "lp:7:uauuu-uusdc", + "name": "AUUU / USDC LP", + "display": "lp:7:auuu-usdc", + "symbol": "AUUU-USDC-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for stDYDX Yield pool", + "denom_units": [ + { + "denom": "lp:15:stadydx", + "exponent": 0 + }, + { + "denom": "lp:15:stdydx", + "exponent": 18 + } + ], + "base": "lp:15:stadydx", + "name": "stDYDX Yield LP", + "display": "lp:15:stdydx", + "symbol": "stDYDX-YIELD-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for stDYDX Boost pool", + "denom_units": [ + { + "denom": "lp:18:stadydxypt-adydx", + "exponent": 0 + }, + { + "denom": "lp:18:stdydxypt-dydx", + "exponent": 18 + } + ], + "base": "lp:18:stadydxypt-adydx", + "name": "stDYDX Boost LP", + "display": "lp:18:stdydxypt-dydx", + "symbol": "stDYDX-BOOST-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for DYDX / USDC pool", + "denom_units": [ + { + "denom": "lp:19:adydx-uusdc", + "exponent": 0 + }, + { + "denom": "lp:19:dydx-usdc", + "exponent": 18 + } + ], + "base": "lp:19:adydx-uusdc", + "name": "DYDX / USDC LP", + "display": "lp:19:dydx-usdc", + "symbol": "DYDX-USDC-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for stTIA Yield pool", + "denom_units": [ + { + "denom": "lp:16:stutia", + "exponent": 0 + }, + { + "denom": "lp:16:sttia", + "exponent": 6 + } + ], + "base": "lp:16:stutia", + "name": "stTIA Yield LP", + "display": "lp:16:sttia", + "symbol": "stTIA-YIELD-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for stTIA Boost pool", + "denom_units": [ + { + "denom": "lp:20:stutiaypt-utia", + "exponent": 0 + }, + { + "denom": "lp:20:sttiaypt-tia", + "exponent": 6 + } + ], + "base": "lp:20:stutiaypt-utia", + "name": "stTIA Boost LP", + "display": "lp:20:sttiaypt-tia", + "symbol": "stTIA-BOOST-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for TIA Yield pool", + "denom_units": [ + { + "denom": "lp:24:utia", + "exponent": 0 + }, + { + "denom": "lp:24:tia", + "exponent": 6 + } + ], + "base": "lp:24:utia", + "name": "TIA Yield LP", + "display": "lp:24:tia", + "symbol": "TIA-YIELD-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for TIA Boost pool", + "denom_units": [ + { + "denom": "lp:25:utiaypt-utia", + "exponent": 0 + }, + { + "denom": "lp:25:tiaypt-tia", + "exponent": 6 + } + ], + "base": "lp:25:utiaypt-utia", + "name": "TIA Boost LP", + "display": "lp:25:tiaypt-tia", + "symbol": "TIA-BOOST-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for TIA / USDC pool", + "denom_units": [ + { + "denom": "lp:21:utia-uusdc", + "exponent": 0 + }, + { + "denom": "lp:21:tia-usdc", + "exponent": 6 + } + ], + "base": "lp:21:utia-uusdc", + "name": "TIA / USDC LP", + "display": "lp:21:tia-usdc", + "symbol": "TIA-USDC-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for dATOM Yield pool", + "denom_units": [ + { + "denom": "lp:22:udatom", + "exponent": 0 + }, + { + "denom": "lp:22:datom", + "exponent": 6 + } + ], + "base": "lp:22:udatom", + "name": "dATOM Yield LP", + "display": "lp:22:datom", + "symbol": "dATOM-YIELD-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Pryzm's LP token for dATOM Boost pool", + "denom_units": [ + { + "denom": "lp:23:udatomypt-uatom", + "exponent": 0 + }, + { + "denom": "lp:23:datomypt-atom", + "exponent": 6 + } + ], + "base": "lp:23:udatomypt-uatom", + "name": "dATOM Boost LP", + "display": "lp:23:datomypt-atom", + "symbol": "dATOM-BOOST-LP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg" + } + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/pryzm/chain.json b/pryzm/chain.json index df50afe400..6925e86ea3 100644 --- a/pryzm/chain.json +++ b/pryzm/chain.json @@ -6,6 +6,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Pryzm", + "chain_type": "cosmos", "chain_id": "pryzm-1", "bech32_prefix": "pryzm", "daemon_name": "pryzmd", @@ -64,6 +65,34 @@ "low_gas_price": 0.01, "average_gas_price": 0.015, "high_gas_price": 0.02 + }, + { + "denom": "ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858", + "fixed_min_gas_price": 10000000000, + "low_gas_price": 10000000000, + "average_gas_price": 12000000000, + "high_gas_price": 14000000000 + }, + { + "denom": "ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F", + "fixed_min_gas_price": 0.002, + "low_gas_price": 0.002, + "average_gas_price": 0.003, + "high_gas_price": 0.004 + }, + { + "denom": "ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE", + "fixed_min_gas_price": 10000000000, + "low_gas_price": 10000000000, + "average_gas_price": 12000000000, + "high_gas_price": 14000000000 + }, + { + "denom": "ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87", + "fixed_min_gas_price": 0.0025, + "low_gas_price": 0.0025, + "average_gas_price": 0.003, + "high_gas_price": 0.004 } ] }, @@ -79,31 +108,45 @@ }, "codebase": { "git_repo": "https://github.com/pryzm-finance/pryzm-core", - "recommended_version": "v0.18.0", + "recommended_version": "v0.19.0", "compatible_versions": [ - "v0.18.0" + "v0.19.0" ], "binaries": { - "darwin/amd64": "https://storage.googleapis.com/pryzm-zone/core/0.18.0/pryzmd-0.18.0-darwin-amd64", - "darwin/arm64": "https://storage.googleapis.com/pryzm-zone/core/0.18.0/pryzmd-0.18.0-darwin-arm64", - "linux/amd64": "https://storage.googleapis.com/pryzm-zone/core/0.18.0/pryzmd-0.18.0-linux-amd64", - "linux/arm64": "https://storage.googleapis.com/pryzm-zone/core/0.18.0/pryzmd-0.18.0-linux-arm64" + "darwin/amd64": "https://storage.googleapis.com/pryzm-zone/core/0.19.0/pryzmd-0.19.0-darwin-amd64", + "darwin/arm64": "https://storage.googleapis.com/pryzm-zone/core/0.19.0/pryzmd-0.19.0-darwin-arm64", + "linux/amd64": "https://storage.googleapis.com/pryzm-zone/core/0.19.0/pryzmd-0.19.0-linux-amd64", + "linux/arm64": "https://storage.googleapis.com/pryzm-zone/core/0.19.0/pryzmd-0.19.0-linux-arm64" }, - "go_version": "1.22", - "cosmos_sdk_version": "v0.47.11", + "cosmos_sdk_version": "v0.47.13", "consensus": { "type": "cometbft", "version": "v0.37.5" }, - "ibc_go_version": "v7.4.1", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "cosmwasm_enabled": true, - "cosmwasm_version": "v0.45.0", + "cosmwasm_version": "v0.46.0", "genesis": { "genesis_url": "https://storage.googleapis.com/pryzm-zone/pryzm-1/genesis.json" + }, + "language": { + "type": "go", + "version": "1.22" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.13" + }, + "ibc": { + "type": "go", + "version": "v7.4.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + }, + "cosmwasm": { + "version": "v0.46.0", + "enabled": true } }, "peers": { @@ -139,7 +182,7 @@ "provider": "PRYZM" }, { - "address": "https://pryzm-rpc.lavenderfive.com", + "address": "https://rpc.lavenderfive.com:443/pryzm", "provider": "Lavender.Five Nodes 🐝" }, { @@ -153,7 +196,7 @@ "provider": "PRYZM" }, { - "address": "https://pryzm-api.lavenderfive.com", + "address": "https://rest.lavenderfive.com:443/pryzm", "provider": "Lavender.Five Nodes 🐝" }, { @@ -167,7 +210,7 @@ "provider": "PRYZM" }, { - "address": "https://pryzm-grpc.lavenderfive.com", + "address": "pryzm.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/pryzm/images/cAtom.png b/pryzm/images/cAtom.png new file mode 100644 index 0000000000..1be75ea3d3 Binary files /dev/null and b/pryzm/images/cAtom.png differ diff --git a/pryzm/images/cAtom.svg b/pryzm/images/cAtom.svg new file mode 100644 index 0000000000..8e4a2eb37b --- /dev/null +++ b/pryzm/images/cAtom.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/cAuuu.png b/pryzm/images/cAuuu.png new file mode 100644 index 0000000000..2c334f5044 Binary files /dev/null and b/pryzm/images/cAuuu.png differ diff --git a/pryzm/images/cAuuu.svg b/pryzm/images/cAuuu.svg new file mode 100644 index 0000000000..1ee8b4652c --- /dev/null +++ b/pryzm/images/cAuuu.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/cInj.png b/pryzm/images/cInj.png new file mode 100644 index 0000000000..3f0fe79848 Binary files /dev/null and b/pryzm/images/cInj.png differ diff --git a/pryzm/images/cInj.svg b/pryzm/images/cInj.svg new file mode 100644 index 0000000000..10995009ca --- /dev/null +++ b/pryzm/images/cInj.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/pryzm/images/cLuna.png b/pryzm/images/cLuna.png new file mode 100644 index 0000000000..d770a13efb Binary files /dev/null and b/pryzm/images/cLuna.png differ diff --git a/pryzm/images/cLuna.svg b/pryzm/images/cLuna.svg new file mode 100644 index 0000000000..44cc90d7bb --- /dev/null +++ b/pryzm/images/cLuna.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/cOsmo.png b/pryzm/images/cOsmo.png new file mode 100644 index 0000000000..1fb0358653 Binary files /dev/null and b/pryzm/images/cOsmo.png differ diff --git a/pryzm/images/cOsmo.svg b/pryzm/images/cOsmo.svg new file mode 100644 index 0000000000..7e625fad9f --- /dev/null +++ b/pryzm/images/cOsmo.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/cTia.png b/pryzm/images/cTia.png new file mode 100644 index 0000000000..6309b4ca58 Binary files /dev/null and b/pryzm/images/cTia.png differ diff --git a/pryzm/images/cTia.svg b/pryzm/images/cTia.svg new file mode 100644 index 0000000000..c024edd7bc --- /dev/null +++ b/pryzm/images/cTia.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/lp.png b/pryzm/images/lp.png new file mode 100644 index 0000000000..3bfcee60c8 Binary files /dev/null and b/pryzm/images/lp.png differ diff --git a/pryzm/images/lp.svg b/pryzm/images/lp.svg new file mode 100644 index 0000000000..553dc0c134 --- /dev/null +++ b/pryzm/images/lp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/pryzm/images/pAtom.png b/pryzm/images/pAtom.png new file mode 100644 index 0000000000..7b9729c1f3 Binary files /dev/null and b/pryzm/images/pAtom.png differ diff --git a/pryzm/images/pAtom.svg b/pryzm/images/pAtom.svg new file mode 100644 index 0000000000..35d4c06211 --- /dev/null +++ b/pryzm/images/pAtom.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/pAuuu.png b/pryzm/images/pAuuu.png new file mode 100644 index 0000000000..c6b1b09b75 Binary files /dev/null and b/pryzm/images/pAuuu.png differ diff --git a/pryzm/images/pAuuu.svg b/pryzm/images/pAuuu.svg new file mode 100644 index 0000000000..3c8d912241 --- /dev/null +++ b/pryzm/images/pAuuu.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/pInj.png b/pryzm/images/pInj.png new file mode 100644 index 0000000000..21cfa3e39a Binary files /dev/null and b/pryzm/images/pInj.png differ diff --git a/pryzm/images/pInj.svg b/pryzm/images/pInj.svg new file mode 100644 index 0000000000..68888636b4 --- /dev/null +++ b/pryzm/images/pInj.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/pryzm/images/pLuna.png b/pryzm/images/pLuna.png new file mode 100644 index 0000000000..f603cb277c Binary files /dev/null and b/pryzm/images/pLuna.png differ diff --git a/pryzm/images/pLuna.svg b/pryzm/images/pLuna.svg new file mode 100644 index 0000000000..055424ea6d --- /dev/null +++ b/pryzm/images/pLuna.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/pOsmo.png b/pryzm/images/pOsmo.png new file mode 100644 index 0000000000..205699e6ab Binary files /dev/null and b/pryzm/images/pOsmo.png differ diff --git a/pryzm/images/pOsmo.svg b/pryzm/images/pOsmo.svg new file mode 100644 index 0000000000..512eeeb247 --- /dev/null +++ b/pryzm/images/pOsmo.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/pTia.png b/pryzm/images/pTia.png new file mode 100644 index 0000000000..821053eb08 Binary files /dev/null and b/pryzm/images/pTia.png differ diff --git a/pryzm/images/pTia.svg b/pryzm/images/pTia.svg new file mode 100644 index 0000000000..39eb7d58e1 --- /dev/null +++ b/pryzm/images/pTia.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/pdAtom.png b/pryzm/images/pdAtom.png new file mode 100644 index 0000000000..4461d179f0 Binary files /dev/null and b/pryzm/images/pdAtom.png differ diff --git a/pryzm/images/pdAtom.svg b/pryzm/images/pdAtom.svg new file mode 100644 index 0000000000..24ef638623 --- /dev/null +++ b/pryzm/images/pdAtom.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/pstDydx.png b/pryzm/images/pstDydx.png new file mode 100644 index 0000000000..7b81054d63 Binary files /dev/null and b/pryzm/images/pstDydx.png differ diff --git a/pryzm/images/pstDydx.svg b/pryzm/images/pstDydx.svg new file mode 100644 index 0000000000..6631a029b9 --- /dev/null +++ b/pryzm/images/pstDydx.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/pstTia.png b/pryzm/images/pstTia.png new file mode 100644 index 0000000000..05d7e6635f Binary files /dev/null and b/pryzm/images/pstTia.png differ diff --git a/pryzm/images/pstTia.svg b/pryzm/images/pstTia.svg new file mode 100644 index 0000000000..2aad5e7a1d --- /dev/null +++ b/pryzm/images/pstTia.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/yAtom.png b/pryzm/images/yAtom.png new file mode 100644 index 0000000000..4eb957e1c5 Binary files /dev/null and b/pryzm/images/yAtom.png differ diff --git a/pryzm/images/yAtom.svg b/pryzm/images/yAtom.svg new file mode 100644 index 0000000000..9e793abbc8 --- /dev/null +++ b/pryzm/images/yAtom.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/yAuuu.png b/pryzm/images/yAuuu.png new file mode 100644 index 0000000000..e3bd13708c Binary files /dev/null and b/pryzm/images/yAuuu.png differ diff --git a/pryzm/images/yAuuu.svg b/pryzm/images/yAuuu.svg new file mode 100644 index 0000000000..cd95f3ec45 --- /dev/null +++ b/pryzm/images/yAuuu.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/yInj.png b/pryzm/images/yInj.png new file mode 100644 index 0000000000..0242697fc8 Binary files /dev/null and b/pryzm/images/yInj.png differ diff --git a/pryzm/images/yInj.svg b/pryzm/images/yInj.svg new file mode 100644 index 0000000000..8570e413af --- /dev/null +++ b/pryzm/images/yInj.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/pryzm/images/yLuna.png b/pryzm/images/yLuna.png new file mode 100644 index 0000000000..a70748a13e Binary files /dev/null and b/pryzm/images/yLuna.png differ diff --git a/pryzm/images/yLuna.svg b/pryzm/images/yLuna.svg new file mode 100644 index 0000000000..fc1f89c33c --- /dev/null +++ b/pryzm/images/yLuna.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/yOsmo.png b/pryzm/images/yOsmo.png new file mode 100644 index 0000000000..f89d592085 Binary files /dev/null and b/pryzm/images/yOsmo.png differ diff --git a/pryzm/images/yOsmo.svg b/pryzm/images/yOsmo.svg new file mode 100644 index 0000000000..2fec5100a7 --- /dev/null +++ b/pryzm/images/yOsmo.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/yTia.png b/pryzm/images/yTia.png new file mode 100644 index 0000000000..8aa478933e Binary files /dev/null and b/pryzm/images/yTia.png differ diff --git a/pryzm/images/yTia.svg b/pryzm/images/yTia.svg new file mode 100644 index 0000000000..7865b7e5af --- /dev/null +++ b/pryzm/images/yTia.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/ydAtom.png b/pryzm/images/ydAtom.png new file mode 100644 index 0000000000..a3d2ba6d7f Binary files /dev/null and b/pryzm/images/ydAtom.png differ diff --git a/pryzm/images/ydAtom.svg b/pryzm/images/ydAtom.svg new file mode 100644 index 0000000000..e5c2aa89a0 --- /dev/null +++ b/pryzm/images/ydAtom.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/ystDydx.png b/pryzm/images/ystDydx.png new file mode 100644 index 0000000000..84a9aa4040 Binary files /dev/null and b/pryzm/images/ystDydx.png differ diff --git a/pryzm/images/ystDydx.svg b/pryzm/images/ystDydx.svg new file mode 100644 index 0000000000..c87bd54242 --- /dev/null +++ b/pryzm/images/ystDydx.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/images/ystTia.png b/pryzm/images/ystTia.png new file mode 100644 index 0000000000..12b5578eb7 Binary files /dev/null and b/pryzm/images/ystTia.png differ diff --git a/pryzm/images/ystTia.svg b/pryzm/images/ystTia.svg new file mode 100644 index 0000000000..f36a0a93de --- /dev/null +++ b/pryzm/images/ystTia.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/pryzm/versions.json b/pryzm/versions.json index 3ba2fbc513..35cbc2725d 100644 --- a/pryzm/versions.json +++ b/pryzm/versions.json @@ -15,20 +15,34 @@ "linux/amd64": "https://storage.googleapis.com/pryzm-zone/core/0.16.0/pryzmd-0.16.0-linux-amd64", "linux/arm64": "https://storage.googleapis.com/pryzm-zone/core/0.16.0/pryzmd-0.16.0-linux-arm64" }, - "go_version": "1.22", "cosmos_sdk_version": "0.47.10", "consensus": { "type": "tendermint", "version": "0.37.4" }, - "ibc_go_version": "7.4.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "cosmwasm_enabled": true, "cosmwasm_version": "v0.45.0", - "next_version_name": "v0.17" + "next_version_name": "v0.17", + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "0.47.10" + }, + "ibc": { + "type": "go", + "version": "7.4.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + }, + "language": { + "type": "go", + "version": "1.22" + } }, { "name": "v0.17", @@ -45,21 +59,35 @@ "linux/amd64": "https://storage.googleapis.com/pryzm-zone/core/0.17.0/pryzmd-0.17.0-linux-amd64", "linux/arm64": "https://storage.googleapis.com/pryzm-zone/core/0.17.0/pryzmd-0.17.0-linux-arm64" }, - "go_version": "1.22", "cosmos_sdk_version": "v0.47.11", "consensus": { "type": "cometbft", "version": "0.37.5" }, - "ibc_go_version": "7.4.1", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "cosmwasm_enabled": true, "cosmwasm_version": "v0.45.0", "previous_version_name": "v0.16", - "next_version_name": "v0.18" + "next_version_name": "v0.18", + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.11" + }, + "ibc": { + "type": "go", + "version": "7.4.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + }, + "language": { + "type": "go", + "version": "1.22" + } }, { "name": "v0.18", @@ -76,21 +104,80 @@ "linux/amd64": "https://storage.googleapis.com/pryzm-zone/core/0.18.0/pryzmd-0.18.0-linux-amd64", "linux/arm64": "https://storage.googleapis.com/pryzm-zone/core/0.18.0/pryzmd-0.18.0-linux-arm64" }, - "go_version": "1.22", "cosmos_sdk_version": "v0.47.11", "consensus": { "type": "cometbft", "version": "0.37.5" }, - "ibc_go_version": "7.4.1", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "cosmwasm_enabled": true, "cosmwasm_version": "v0.45.0", "previous_version_name": "v0.17", - "next_version_name": "" + "next_version_name": "v0.19", + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.11" + }, + "ibc": { + "type": "go", + "version": "7.4.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + }, + "language": { + "type": "go", + "version": "1.22" + } + }, + { + "name": "v0.19", + "tag": "v0.19.0", + "proposal": 14, + "height": 2115500, + "recommended_version": "v0.19.0", + "compatible_versions": [ + "v0.19.0" + ], + "binaries": { + "darwin/amd64": "https://storage.googleapis.com/pryzm-zone/core/0.19.0/pryzmd-0.19.0-darwin-amd64", + "darwin/arm64": "https://storage.googleapis.com/pryzm-zone/core/0.19.0/pryzmd-0.19.0-darwin-arm64", + "linux/amd64": "https://storage.googleapis.com/pryzm-zone/core/0.19.0/pryzmd-0.19.0-linux-amd64", + "linux/arm64": "https://storage.googleapis.com/pryzm-zone/core/0.19.0/pryzmd-0.19.0-linux-arm64" + }, + "cosmos_sdk_version": "v0.47.13", + "consensus": { + "type": "cometbft", + "version": "0.37.5" + }, + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.46.0", + "previous_version_name": "v0.18", + "next_version_name": "", + "cosmwasm": { + "version": "v0.46.0", + "enabled": true + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.13" + }, + "ibc": { + "type": "go", + "version": "7.4.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + }, + "language": { + "type": "go", + "version": "1.22" + } } ] -} +} \ No newline at end of file diff --git a/pundix/chain.json b/pundix/chain.json index 1745b13809..f48549a5b1 100644 --- a/pundix/chain.json +++ b/pundix/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "pundix", + "chain_type": "cosmos", "chain_id": "PUNDIX", "website": "https://pundix.com", "pretty_name": "Pundi X Chain", @@ -53,7 +54,6 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "6.1.0", "versions": [ { "name": "pxv1", @@ -88,7 +88,15 @@ "windows/amd64": "https://github.com/pundix/pundix/releases/download/v0.2.3/pundix_0.2.3_Windows_x86_64.zip" } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45.11" + }, + "ibc": { + "type": "go", + "version": "6.1.0" + } }, "description": "Pundi X Chain is a dedicated payment-focused blockchain in the Function X network. It is specially designed to perform high throughput transactions with low latency and low transaction fees. In addition, it provides room for future compliance requirement upgrades, hardware (XPOS) integration, and Point-of-Sales compatibility, with tokenonomics that offer incentives to merchants and payment processors.", "peers": { diff --git a/pylons/assetlist.json b/pylons/assetlist.json index 1baf235681..a88dd4f033 100644 --- a/pylons/assetlist.json +++ b/pylons/assetlist.json @@ -32,7 +32,8 @@ "socials": { "website": "https://pylons.tech", "twitter": "https://twitter.com/pylonstech" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/pylons/chain.json b/pylons/chain.json index 51c88519d4..f73a63ac30 100644 --- a/pylons/chain.json +++ b/pylons/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://pylons.tech", "pretty_name": "Pylons", + "chain_type": "cosmos", "chain_id": "pylons-mainnet-1", "bech32_prefix": "pylo", "node_home": "$HOME/.pylons", diff --git a/qfs/assetlist.json b/qfs/assetlist.json index a138fefb15..71cd288554 100644 --- a/qfs/assetlist.json +++ b/qfs/assetlist.json @@ -3,8 +3,8 @@ "chain_name": "qfs", "assets": [ { - "description": "QFS stands for Quantum Financial Systems, the aim is to bridge traditional finance with the cryptoΒ ecosystem", - "extended_description": "QFS stands for Quantum Financial Systems, a revolutionary concept designed to integrate traditional financial systems with the rapidly evolving world of cryptocurrency and blockchain technology. The primary aim of QFS is to create a seamless interface that allows for the secure, efficient, and transparent exchange of assets between these two financial realms. By leveraging advanced quantum computing capabilities, QFS seeks to enhance the speed and security of transactions, reduce the risk of fraud, and provide a robust framework for financial innovation. This system is poised to transform how we conduct financial operations, offering unprecedented levels of trust and efficiency in the global financial landscape. Through the integration of traditional banking structures with the decentralized nature of cryptocurrencies, QFS aspires to bridge the gap between conventional and digital finance, paving the way for a more inclusive and technologically advanced financialΒ future.", + "description": "QFS stands for Quantum Financial Systems, the aim is to bridge traditional finance with the crypto\u00a0ecosystem", + "extended_description": "QFS stands for Quantum Financial Systems, a revolutionary concept designed to integrate traditional financial systems with the rapidly evolving world of cryptocurrency and blockchain technology. The primary aim of QFS is to create a seamless interface that allows for the secure, efficient, and transparent exchange of assets between these two financial realms. By leveraging advanced quantum computing capabilities, QFS seeks to enhance the speed and security of transactions, reduce the risk of fraud, and provide a robust framework for financial innovation. This system is poised to transform how we conduct financial operations, offering unprecedented levels of trust and efficiency in the global financial landscape. Through the integration of traditional banking structures with the decentralized nature of cryptocurrencies, QFS aspires to bridge the gap between conventional and digital finance, paving the way for a more inclusive and technologically advanced financial\u00a0future.", "denom_units": [ { "denom": "qfs", @@ -30,7 +30,8 @@ ], "socials": { "website": "https://qfsone.com/" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/qfs/chain.json b/qfs/chain.json index dddee8e20d..75d10e872c 100644 --- a/qfs/chain.json +++ b/qfs/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://qfs.com/", "pretty_name": "Quantum Financial Systems", + "chain_type": "cosmos", "chain_id": "qfs-1", "bech32_prefix": "qfs", "daemon_name": "qfs", @@ -27,8 +28,8 @@ "fee_tokens": [ { "denom": "qfs", - "low_gas_price": 1e-06, - "average_gas_price": 5e-06, + "low_gas_price": 0.000001, + "average_gas_price": 0.000005, "high_gas_price": 0.0001 } ] diff --git a/quasar/chain.json b/quasar/chain.json index 8d610e9c5a..024565bd58 100644 --- a/quasar/chain.json +++ b/quasar/chain.json @@ -5,9 +5,10 @@ "network_type": "mainnet", "website": "https://www.quasar.fi/", "pretty_name": "Quasar", + "chain_type": "cosmos", "chain_id": "quasar-1", "bech32_prefix": "quasar", - "daemon_name": "quasarnoded", + "daemon_name": "quasard", "node_home": "$HOME/.quasarnode", "key_algos": [ "secp256k1" @@ -53,17 +54,17 @@ ] }, "codebase": { - "git_repo": "https://github.com/quasar-finance/quasar-preview", - "recommended_version": "v1.0.1", + "git_repo": "https://github.com/quasar-finance/quasar", + "recommended_version": "v3.0.0", "compatible_versions": [ - "v1.0.1" + "v3.0.0" ], - "cosmos_sdk_version": "v0.45.16", + "cosmos_sdk_version": "v0.50.9", "consensus": { "type": "cometbft", - "version": "v0.34.27" + "version": "v0.37.6" }, - "cosmwasm_version": "v0.31.0", + "cosmwasm_version": "v0.53.0", "cosmwasm_enabled": true, "genesis": { "genesis_url": "https://raw.githubusercontent.com/quasar-finance/networks/main/quasar-1/definitive-genesis.json" @@ -83,7 +84,15 @@ }, "cosmwasm_version": "0.27", "cosmwasm_enabled": true, - "next_version_name": "v1" + "next_version_name": "v1", + "sdk": { + "type": "cosmos", + "version": "v0.45.14" + }, + "cosmwasm": { + "version": "0.27", + "enabled": true + } }, { "name": "v1", @@ -100,9 +109,75 @@ }, "cosmwasm_version": "0.31.0", "cosmwasm_enabled": true, - "next_version_name": "" + "next_version_name": "v2", + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "cosmwasm": { + "version": "0.31.0", + "enabled": true + } + }, + { + "name": "v2", + "proposal": 42, + "height": 7480400, + "recommended_version": "v2.0.1", + "compatible_versions": [ + "v2.0.1" + ], + "cosmos_sdk_version": "v0.47.12", + "consensus": { + "type": "cometbft", + "version": "0.37.6" + }, + "cosmwasm_version": "0.45.0", + "cosmwasm_enabled": true, + "next_version_name": "v3", + "sdk": { + "type": "cosmos", + "version": "v0.47.12" + }, + "cosmwasm": { + "version": "0.45.0", + "enabled": true + } + }, + { + "name": "v3", + "proposal": 45, + "height": 7982200, + "recommended_version": "v3.0.0", + "compatible_versions": [ + "v3.0.0" + ], + "cosmos_sdk_version": "v0.50.9", + "consensus": { + "type": "cometbft", + "version": "v0.38.11" + }, + "cosmwasm_version": "v0.53.0", + "cosmwasm_enabled": true, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.50.9" + }, + "cosmwasm": { + "version": "v0.53.0", + "enabled": true + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.50.9" + }, + "cosmwasm": { + "version": "v0.53.0", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png" @@ -135,11 +210,6 @@ "address": "quasar-mainnet-seed.autostake.com:27146", "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, - { - "id": "c28827cb96c14c905b127b92065a3fb4cd77d7f6", - "address": "seeds.whispernode.com:18256", - "provider": "WhisperNode 🀐" - }, { "id": "86fd17151eec60145e6c1a635e8365aff70a77d7", "address": "seed-quasar.ibs.team:16667", @@ -166,17 +236,13 @@ "apis": { "rpc": [ { - "address": "https://quasar-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/quasar", "provider": "Lavender.Five Nodes 🐝" }, { "address": "https://quasar-rpc.polkachu.com", "provider": "polkachu" }, - { - "address": "https://rpc-quasar.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://quasar-rpc.enigma-validator.com", "provider": "Enigma" @@ -220,17 +286,13 @@ ], "rest": [ { - "address": "https://quasar-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/quasar", "provider": "Lavender.Five Nodes 🐝" }, { "address": "https://quasar-api.polkachu.com", "provider": "polkachu" }, - { - "address": "https://lcd-quasar.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://api-quasar.cosmos-spaces.cloud", "provider": "Cosmos Spaces" @@ -274,7 +336,7 @@ ], "grpc": [ { - "address": "https://quasar-grpc.lavenderfive.com:443", + "address": "quasar.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/quicksilver/assetlist.json b/quicksilver/assetlist.json index cfabc28789..c7a6fb6dcf 100644 --- a/quicksilver/assetlist.json +++ b/quicksilver/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://quicksilver.zone/", "twitter": "https://twitter.com/quicksilverzone" - } + }, + "type_asset": "sdk.coin" }, { "description": "Quicksilver Liquid Staked STARS", @@ -77,7 +78,8 @@ "primary_color_hex": "#fc944c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Quicksilver Liquid Staked ATOM", @@ -119,7 +121,8 @@ "primary_color_hex": "#fc944c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Quicksilver Liquid Staked REGEN", @@ -161,7 +164,8 @@ "primary_color_hex": "#fc944c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Quicksilver Liquid Staked OSMO", @@ -203,7 +207,8 @@ "primary_color_hex": "#fc944c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Quicksilver Liquid Staked SOMM", @@ -245,7 +250,8 @@ "primary_color_hex": "#fc944c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Quicksilver Liquid Staked JUNO", @@ -287,7 +293,8 @@ "primary_color_hex": "#fc944c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Quicksilver Liquid Staked DYDX", @@ -329,7 +336,8 @@ "primary_color_hex": "#fc944c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Quicksilver Liquid Staked SAGA", @@ -371,7 +379,8 @@ "primary_color_hex": "#f9924b" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Quicksilver Liquid Staked BLD", @@ -413,7 +422,8 @@ "primary_color_hex": "#fc944c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Noble USDC via dYdX Protocol", @@ -455,10 +465,11 @@ "chain_name": "noble", "base_denom": "uusdc" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primary_color_hex": "#2474cc" + "circle": true, + "primary_color_hex": "#2775CA" } } ] diff --git a/quicksilver/chain.json b/quicksilver/chain.json index 6ac6250bcc..1627cbc982 100644 --- a/quicksilver/chain.json +++ b/quicksilver/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://quicksilver.zone/", "pretty_name": "Quicksilver", + "chain_type": "cosmos", "chain_id": "quicksilver-2", "daemon_name": "quicksilverd", "node_home": "$HOME/.quicksilverd", @@ -30,19 +31,18 @@ }, "codebase": { "git_repo": "https://github.com/ingenuity-build/quicksilver", - "recommended_version": "v1.6.1", + "recommended_version": "v1.6.3", "compatible_versions": [ - "v1.6.1" + "v1.6.3" ], "binaries": { - "linux/amd64": "https://github.com/ingenuity-build/quicksilver/releases/download/v1.6.1/quicksilverd-v1.6.1-amd64" + "linux/amd64": "https://github.com/ingenuity-build/quicksilver/releases/download/v1.6.3/quicksilverd-v1.6.3-amd64" }, "cosmos_sdk_version": "v0.46.16", "consensus": { "type": "cometbft", "version": "v0.34.33" }, - "ibc_go_version": "v6.3.1", "genesis": { "genesis_url": "https://github.com/ingenuity-build/mainnet/raw/main/genesis.json" }, @@ -60,8 +60,19 @@ }, "cosmwasm_version": "0.29", "cosmwasm_enabled": true, - "ibc_go_version": "5.2.0", - "next_version_name": "v1.2.10" + "next_version_name": "v1.2.10", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "5.2.0" + } }, { "name": "v1.2.10", @@ -81,8 +92,19 @@ }, "cosmwasm_version": "0.29", "cosmwasm_enabled": true, - "ibc_go_version": "5.2.0", - "next_version_name": "v1.2.13" + "next_version_name": "v1.2.13", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "5.2.0" + } }, { "name": "v1.2.13", @@ -102,8 +124,19 @@ }, "cosmwasm_version": "0.29", "cosmwasm_enabled": true, - "ibc_go_version": "5.2.1", - "next_version_name": "v1.2.15" + "next_version_name": "v1.2.15", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "5.2.1" + } }, { "name": "v1.2.15", @@ -124,8 +157,19 @@ }, "cosmwasm_version": "0.29", "cosmwasm_enabled": true, - "ibc_go_version": "5.3.1", - "next_version_name": "v1.2.17" + "next_version_name": "v1.2.17", + "sdk": { + "type": "cosmos", + "version": "0.46.14" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "5.3.1" + } }, { "name": "v1.2.17", @@ -145,8 +189,20 @@ }, "cosmwasm_version": "v0.29.0-sdk46.0.20221114145317-d6e67fd50956", "cosmwasm_enabled": true, - "ibc_go_version": "5.3.2", - "next_version_name": "v1.4.5" + "next_version_name": "v1.4.5", + "sdk": { + "type": "cosmos", + "version": "0.46.15" + }, + "cosmwasm": { + "version": "v0.29.0", + "enabled": true, + "tag": "v0.29.0-sdk46.0.20221114145317-d6e67fd50956" + }, + "ibc": { + "type": "go", + "version": "5.3.2" + } }, { "name": "v1.4.5", @@ -166,8 +222,21 @@ }, "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956", "cosmwasm_enabled": true, - "ibc_go_version": "v5.3.2", - "next_version_name": "v1.4.6" + "next_version_name": "v1.4.6", + "sdk": { + "type": "cosmos", + "version": "v0.46.16" + }, + "cosmwasm": { + "version": "v0.29.0", + "repo": "https://github.com/notional-labs/wasmd", + "tag": "v0.29.0-sdk46.0.20221114145317-d6e67fd50956", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v5.3.2" + } }, { "name": "v1.4.6", @@ -187,8 +256,21 @@ }, "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956", "cosmwasm_enabled": true, - "ibc_go_version": "v5.3.2", - "next_version_name": "v1.4.7" + "next_version_name": "v1.4.7", + "sdk": { + "type": "cosmos", + "version": "v0.46.16" + }, + "cosmwasm": { + "version": "v0.29.0", + "repo": "https://github.com/notional-labs/wasmd", + "tag": "v0.29.0-sdk46.0.20221114145317-d6e67fd50956", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v5.3.2" + } }, { "name": "v1.4.7", @@ -208,8 +290,21 @@ }, "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956", "cosmwasm_enabled": true, - "ibc_go_version": "v5.3.2", - "next_version_name": "v1.5.0" + "next_version_name": "v1.5.0", + "sdk": { + "type": "cosmos", + "version": "v0.46.16" + }, + "cosmwasm": { + "version": "v0.29.0", + "repo": "https://github.com/notional-labs/wasmd", + "tag": "v0.29.0-sdk46.0.20221114145317-d6e67fd50956", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v5.3.2" + } }, { "name": "v1.5.0", @@ -229,8 +324,21 @@ }, "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956", "cosmwasm_enabled": true, - "ibc_go_version": "v5.3.2", - "next_version_name": "v1.5.1" + "next_version_name": "v1.5.1", + "sdk": { + "type": "cosmos", + "version": "v0.46.16" + }, + "cosmwasm": { + "version": "v0.29.0", + "repo": "https://github.com/notional-labs/wasmd", + "tag": "v0.29.0-sdk46.0.20221114145317-d6e67fd50956", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v5.3.2" + } }, { "name": "v1.5.1", @@ -251,8 +359,21 @@ }, "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956", "cosmwasm_enabled": true, - "ibc_go_version": "v5.3.2", - "next_version_name": "v1.5.3" + "next_version_name": "v1.5.3", + "sdk": { + "type": "cosmos", + "version": "v0.46.16" + }, + "cosmwasm": { + "version": "v0.29.0", + "repo": "https://github.com/notional-labs/wasmd", + "tag": "v0.29.0-sdk46.0.20221114145317-d6e67fd50956", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v5.3.2" + } }, { "name": "v1.5.3", @@ -272,8 +393,21 @@ }, "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956", "cosmwasm_enabled": true, - "ibc_go_version": "v5.3.2", - "next_version_name": "v1.5.4" + "next_version_name": "v1.5.4", + "sdk": { + "type": "cosmos", + "version": "v0.46.16" + }, + "cosmwasm": { + "version": "v0.29.0", + "repo": "https://github.com/notional-labs/wasmd", + "tag": "v0.29.0-sdk46.0.20221114145317-d6e67fd50956", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v5.3.2" + } }, { "name": "v1.5.4", @@ -293,8 +427,21 @@ }, "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956", "cosmwasm_enabled": true, - "ibc_go_version": "v5.3.2", - "next_version_name": "v1.5.5" + "next_version_name": "v1.5.5", + "sdk": { + "type": "cosmos", + "version": "v0.46.16" + }, + "cosmwasm": { + "version": "v0.29.0", + "repo": "https://github.com/notional-labs/wasmd", + "tag": "v0.29.0-sdk46.0.20221114145317-d6e67fd50956", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v5.3.2" + } }, { "name": "v1.5.5", @@ -315,8 +462,21 @@ }, "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956", "cosmwasm_enabled": true, - "ibc_go_version": "v5.4.0", - "next_version_name": "v1.5.6" + "next_version_name": "v1.5.6", + "sdk": { + "type": "cosmos", + "version": "v0.46.16" + }, + "cosmwasm": { + "version": "v0.29.0", + "repo": "https://github.com/notional-labs/wasmd", + "tag": "v0.29.0-sdk46.0.20221114145317-d6e67fd50956", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v5.4.0" + } }, { "name": "v1.5.6", @@ -336,8 +496,21 @@ }, "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956", "cosmwasm_enabled": true, - "ibc_go_version": "v5.4.0", - "next_version_name": "v1.6.1" + "next_version_name": "v1.6.1", + "sdk": { + "type": "cosmos", + "version": "v0.46.16" + }, + "cosmwasm": { + "version": "v0.29.0", + "repo": "https://github.com/notional-labs/wasmd", + "tag": "v0.29.0-sdk46.0.20221114145317-d6e67fd50956", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v5.4.0" + } }, { "name": "v1.6.1", @@ -355,10 +528,77 @@ "type": "cometbft", "version": "v0.34.33" }, - "ibc_go_version": "v6.3.1", - "next_version_name": "" + "next_version_name": "v1.6.2", + "sdk": { + "type": "cosmos", + "version": "v0.46.16" + }, + "ibc": { + "type": "go", + "version": "v6.3.1" + } + }, + { + "name": "v1.6.2", + "proposal": 42, + "height": 8222500, + "recommended_version": "v1.6.2", + "compatible_versions": [ + "v1.6.2" + ], + "binaries": { + "linux/amd64": "https://github.com/ingenuity-build/quicksilver/releases/download/v1.6.2/quicksilverd-v1.6.1-amd64" + }, + "cosmos_sdk_version": "v0.46.16", + "consensus": { + "type": "cometbft", + "version": "v0.34.33" + }, + "next_version_name": "1.6.3", + "sdk": { + "type": "cosmos", + "version": "v0.46.16" + }, + "ibc": { + "type": "go", + "version": "v6.3.1" + } + }, + { + "name": "v1.6.3", + "proposal": 43, + "height": 8722500, + "recommended_version": "v1.6.3", + "compatible_versions": [ + "v1.6.3" + ], + "binaries": { + "linux/amd64": "https://github.com/ingenuity-build/quicksilver/releases/download/v1.6.3/quicksilverd-v1.6.3-amd64" + }, + "cosmos_sdk_version": "v0.46.16", + "consensus": { + "type": "cometbft", + "version": "v0.34.33" + }, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.46.16" + }, + "ibc": { + "type": "go", + "version": "v6.3.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.46.16" + }, + "ibc": { + "type": "go", + "version": "v6.3.1" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", @@ -491,7 +731,7 @@ "provider": "Notional" }, { - "address": "https://quicksilver-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/quicksilver", "provider": "Lavender.Five Nodes 🐝" }, { @@ -577,7 +817,7 @@ "provider": "Notional" }, { - "address": "https://quicksilver-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/quicksilver", "provider": "Lavender.Five Nodes 🐝" }, { @@ -659,7 +899,7 @@ "provider": "Notional" }, { - "address": "quicksilver-grpc.lavenderfive.com:443", + "address": "quicksilver.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/qwoyn/assetlist.json b/qwoyn/assetlist.json index 06ba91166d..ac26ee4358 100644 --- a/qwoyn/assetlist.json +++ b/qwoyn/assetlist.json @@ -37,7 +37,8 @@ "socials": { "website": "https://qwoyn.studio", "twitter": "https://twitter.com/Qwoyn_Studios" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/qwoyn/chain.json b/qwoyn/chain.json index b06b7e994e..23fa652f30 100644 --- a/qwoyn/chain.json +++ b/qwoyn/chain.json @@ -6,6 +6,7 @@ "website": "https://qwoyn.studio/", "description": "The Qwoyn Network stands as a cutting-edge gaming hub that embeds Web3 technologies into the core of interactive entertainment. It revolutionizes the gaming industry by ensuring true ownership of in-game assets for players, facilitated through blockchain. This approach not only enhances gameplay but also fosters a unique ecosystem of interoperability and innovation. As a beacon in the gaming world, Qwoyn Network is dedicated to merging the excitement of traditional gaming with the transformative potential of Web3, creating a seamless and enriched gaming experience.", "pretty_name": "Qwoyn", + "chain_type": "cosmos", "chain_id": "qwoyn-1", "bech32_prefix": "qwoyn", "daemon_name": "qwoynd", @@ -39,11 +40,6 @@ "v5.4.1" ], "cosmos_sdk_version": "0.47.6", - "ibc_go_version": "7.3.1", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -61,7 +57,6 @@ "v5.0.2" ], "cosmos_sdk_version": "0.47.3", - "ibc_go_version": "7.0.1", "consensus": { "type": "cometbft", "version": "v0.37.1" @@ -69,7 +64,15 @@ "binaries": { "linux/amd64": "https://github.com/cosmic-horizon/QWOYN/releases/download/v5.0.2/qwoynd_5.0.2_linux_amd64.zip" }, - "next_version_name": "v5.1.0" + "next_version_name": "v5.1.0", + "sdk": { + "type": "cosmos", + "version": "0.47.3" + }, + "ibc": { + "type": "go", + "version": "7.0.1" + } }, { "name": "v5.1.0", @@ -81,12 +84,19 @@ "v5.1.0" ], "cosmos_sdk_version": "0.47.3", - "ibc_go_version": "7.0.1", "consensus": { "type": "cometbft", "version": "v0.37.1" }, - "next_version_name": "v5.2.0" + "next_version_name": "v5.2.0", + "sdk": { + "type": "cosmos", + "version": "0.47.3" + }, + "ibc": { + "type": "go", + "version": "7.0.1" + } }, { "name": "v5.2.0", @@ -98,12 +108,19 @@ "v5.2.0" ], "cosmos_sdk_version": "0.47.3", - "ibc_go_version": "7.0.1", "consensus": { "type": "cometbft", "version": "v0.37.1" }, - "next_version_name": "v5.3.0" + "next_version_name": "v5.3.0", + "sdk": { + "type": "cosmos", + "version": "0.47.3" + }, + "ibc": { + "type": "go", + "version": "7.0.1" + } }, { "name": "v5.3.0", @@ -115,17 +132,27 @@ "v5.3.0" ], "cosmos_sdk_version": "0.47.6", - "ibc_go_version": "7.0.1", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.2" }, "cosmwasm_version": "0.40.0", - "next_version_name": "v5.4.1" + "next_version_name": "v5.4.1", + "sdk": { + "type": "cosmos", + "version": "0.47.6" + }, + "cosmwasm": { + "version": "0.40.0" + }, + "ibc": { + "type": "go", + "version": "7.0.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v5.4.1", @@ -137,19 +164,44 @@ "v5.4.1" ], "cosmos_sdk_version": "0.47.6", - "ibc_go_version": "7.3.1", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "consensus": { "type": "cometbft", "version": "v0.37.2" }, "cosmwasm_version": "0.40.0", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "0.47.6" + }, + "cosmwasm": { + "version": "0.40.0" + }, + "ibc": { + "type": "go", + "version": "7.3.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47.6" + }, + "ibc": { + "type": "go", + "version": "7.3.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + }, + "cosmwasm": { + "version": "0.40.0" + } }, "peers": { "seeds": [ @@ -218,7 +270,7 @@ "provider": "Staketab archive" }, { - "address": "https://qwoyn-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/qwoyn", "provider": "Lavender.Five Nodes 🐝" }, { @@ -248,7 +300,7 @@ "provider": "AM Solutions" }, { - "address": "https://qwoyn-grpc.lavenderfive.com:443", + "address": "qwoyn.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -278,7 +330,7 @@ "provider": "Staketab archive" }, { - "address": "https://qwoyn-api.lavenderfive.com", + "address": "https://rest.lavenderfive.com:443/qwoyn", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/realio/assetlist.json b/realio/assetlist.json index 0d39828e24..ad0de1cbfe 100644 --- a/realio/assetlist.json +++ b/realio/assetlist.json @@ -36,9 +36,10 @@ } ], "socials": { - "webiste": "https://realio.network/", + "website": "https://realio.network/", "twitter": "https://x.com/realio_network" - } + }, + "type_asset": "sdk.coin" }, { "description": "A hybrid equity token that represent ownership of the Realio Ecosystem and provides utility functions on the Network.", @@ -66,7 +67,8 @@ "primary_color_hex": "#e0e0e0" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/realio/chain.json b/realio/chain.json index a4b9272ff4..ca1d89f844 100644 --- a/realio/chain.json +++ b/realio/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://realio.network/", "pretty_name": "Realio Network", + "chain_type": "cosmos", "chain_id": "realionetwork_3301-1", "bech32_prefix": "realio", "node_home": "$HOME/.realio-network", @@ -52,7 +53,6 @@ "type": "cometbft", "version": "v0.34.27" }, - "ibc_go_version": "v6.1.1", "genesis": { "genesis_url": "https://raw.githubusercontent.com/realiotech/mainnet/main/realionetwork_3301-1/genesis.json" }, @@ -68,8 +68,15 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "6.1.0", - "next_version_name": "v0.8.3" + "next_version_name": "v0.8.3", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "6.1.0" + } }, { "name": "v0.8.3", @@ -84,7 +91,6 @@ "type": "cometbft", "version": "0.34.27" }, - "ibc_go_version": "6.1.1", "binaries": { "linux/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Linux_arm64.tar.gz", @@ -92,7 +98,15 @@ "darwin/arm64": "https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Windows_x86_64.zip" }, - "next_version_name": "multistaking" + "next_version_name": "multistaking", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "6.1.1" + } }, { "name": "multistaking", @@ -107,7 +121,6 @@ "type": "cometbft", "version": "v0.34.27" }, - "ibc_go_version": "v6.1.1", "binaries": { "linux/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.9.2/realio-network_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/realiotech/realio-network/releases/download/v0.9.2/realio-network_Linux_arm64.tar.gz", @@ -115,7 +128,15 @@ "darwin/arm64": "https://github.com/realiotech/realio-network/releases/download/v0.9.2/realio-network_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.9.2/realio-network_Windows_x86_64.zip" }, - "next_version_name": "Commission" + "next_version_name": "Commission", + "sdk": { + "type": "cosmos", + "version": "v0.46.12" + }, + "ibc": { + "type": "go", + "version": "v6.1.1" + } }, { "name": "Commission", @@ -130,7 +151,6 @@ "type": "cometbft", "version": "v0.34.27" }, - "ibc_go_version": "v6.1.1", "binaries": { "linux/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.9.3/realio-network_Linux_x86_64.tar.gz", "linux/arm64": "https://github.com/realiotech/realio-network/releases/download/v0.9.3/realio-network_Linux_arm64.tar.gz", @@ -138,9 +158,25 @@ "darwin/arm64": "https://github.com/realiotech/realio-network/releases/download/v0.9.3/realio-network_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/realiotech/realio-network/releases/download/v0.9.3/realio-network_Windows_x86_64.zip" }, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.46.12" + }, + "ibc": { + "type": "go", + "version": "v6.1.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.46.12" + }, + "ibc": { + "type": "go", + "version": "v6.1.1" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png" @@ -246,6 +282,10 @@ { "address": "https://rpc-realio.blockval.io", "provider": "Blockval" + }, + { + "address": "https://realio_rio_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "rest": [ @@ -292,6 +332,10 @@ { "address": "https://api-realio.blockval.io", "provider": "Blockval" + }, + { + "address": "https://realio_rio_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "grpc": [ @@ -360,6 +404,10 @@ { "address": "https://realio-jsonrpc.noders.services", "provider": "[NODERS]TEAM" + }, + { + "address": "https://realio_rio_mainnet_evm.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ] }, @@ -399,6 +447,12 @@ "url": "https://explorer.declab.pro/realio", "tx_page": "https://explorer.declab.pro/realio/tx/${txHash}", "account_page": "https://explorer.declab.pro/realio/account/{$accountAddress}" + }, + { + "kind": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯", + "url": "https://explorer.whenmoonwhenlambo.money/realio", + "tx_page": "https://explorer.whenmoonwhenlambo.money/realio/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/realio/account/${accountAddress}" } ], "images": [ diff --git a/rebus/assetlist.json b/rebus/assetlist.json index 40b750c93e..e6e6398c63 100644 --- a/rebus/assetlist.json +++ b/rebus/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#e75486" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/rebus/chain.json b/rebus/chain.json index 84bda56ed7..31e6d0795b 100644 --- a/rebus/chain.json +++ b/rebus/chain.json @@ -5,6 +5,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Rebus", + "chain_type": "cosmos", "chain_id": "reb_1111-1", "bech32_prefix": "rebus", "daemon_name": "rebusd", diff --git a/regen/assetlist.json b/regen/assetlist.json index 763dec7fef..a0f3dffab0 100644 --- a/regen/assetlist.json +++ b/regen/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://www.regen.network/", "twitter": "https://twitter.com/regen_network" - } + }, + "type_asset": "sdk.coin" }, { "description": "Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.", @@ -66,7 +67,8 @@ "primary_color_hex": "#171c25" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/regen/chain.json b/regen/chain.json index 97d41bd0b5..7c3e721f5e 100644 --- a/regen/chain.json +++ b/regen/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.regen.network/", "pretty_name": "Regen", + "chain_type": "cosmos", "chain_id": "regen-1", "bech32_prefix": "regen", "daemon_name": "regen", @@ -47,11 +48,6 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "5.2", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "genesis": { "genesis_url": "https://raw.githubusercontent.com/regen-network/mainnet/main/regen-1/genesis.json" }, @@ -67,19 +63,38 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "5.2", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "binaries": { "linux/amd64": "https://github.com/regen-network/regen-ledger/releases/download/v5.0.0/regen-ledger_5.0.0_linux_amd64.zip", "linux/arm64": "https://github.com/regen-network/regen-ledger/releases/download/v5.0.0/regen-ledger_5.0.0_linux_arm64.zip", "darwin/amd64": "https://github.com/regen-network/regen-ledger/releases/download/v5.0.0/regen-ledger_5.0.0_darwin_amd64.zip", "darwin/arm64": "https://github.com/regen-network/regen-ledger/releases/download/v5.0.0/regen-ledger_5.0.0_darwin_arm64.zip" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "5.2", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "5.2", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, "description": "Regen Network, a platform to originate and invest in high-integrity carbon and biodiversity credits from ecological regeneration projects.", "peers": { diff --git a/rizon/assetlist.json b/rizon/assetlist.json index 66699b9a29..ca422842f1 100644 --- a/rizon/assetlist.json +++ b/rizon/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://rizon.world/", "twitter": "https://twitter.com/hdac_rizon" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/rizon/chain.json b/rizon/chain.json index 61ad6b4ee5..a354f30c72 100644 --- a/rizon/chain.json +++ b/rizon/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://rizon.world/", "pretty_name": "Rizon", + "chain_type": "cosmos", "chain_id": "titan-1", "bech32_prefix": "rizon", "daemon_name": "rizond", diff --git a/routerchain/assetlist.json b/routerchain/assetlist.json new file mode 100644 index 0000000000..0082a6bb02 --- /dev/null +++ b/routerchain/assetlist.json @@ -0,0 +1,43 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "routerchain", + "assets": [ + { + "description": "The native token of Router Chain", + "extended_description": "Router Chain is a PoS L1 that allows stateful bridging\u2013enabling truly omnichain dapps that can abstract chains from the users and aggregate liquidity across multiple chains.", + "denom_units": [ + { + "denom": "route", + "exponent": 0 + }, + { + "denom": "ROUTE", + "exponent": 18 + } + ], + "base": "route", + "name": "Router Chain", + "display": "ROUTE", + "symbol": "ROUTE", + "coingecko_id": "router-protocol-2", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.svg" + }, + "images": [ + { + "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": { + "primary_color_hex": "#cb0766" + } + } + ], + "socials": { + "website": "https://www.routerprotocol.com/", + "twitter": "https://x.com/routerprotocol" + }, + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/routerchain/chain.json b/routerchain/chain.json new file mode 100644 index 0000000000..6953ed079c --- /dev/null +++ b/routerchain/chain.json @@ -0,0 +1,289 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "routerchain", + "chain_type": "cosmos", + "chain_id": "router_9600-1", + "pretty_name": "Router Protocol", + "status": "live", + "network_type": "mainnet", + "website": "https://www.routerprotocol.com/", + "bech32_prefix": "router", + "node_home": "$HOME/.routerd", + "daemon_name": "routerd", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "route", + "fixed_min_gas_price": 7, + "low_gas_price": 7, + "average_gas_price": 7, + "high_gas_price": 10 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "route" + } + ] + }, + "codebase": { + "recommended_version": "v2.1.6", + "compatible_versions": [ + "v2.1.6" + ], + "cosmos_sdk_version": "v0.47.10", + "consensus": { + "type": "cometbft", + "version": "v0.37.5" + }, + "cosmwasm_version": "v0.45.0", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.routerd/wasm", + "binaries": { + "linux/amd64": "https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.1.6/linux/routerd.tar.gz", + "darwin/amd64": "https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.1.6/debian/routerd.tar.gz" + }, + "genesis": { + "genesis_url": "https://sentry.tm.rpc.routerprotocol.com/genesis" + }, + "versions": [ + { + "name": "v2.1.1", + "recommended_version": "v2.1.1", + "compatible_versions": [ + "v2.1.1" + ], + "binaries": { + "linux/amd64": "https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.1.1/linux/routerd.tar.gz", + "darwin/amd64": "https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.1.1/debian/routerd.tar.gz" + }, + "cosmwasm_version": "v0.45.0", + "cosmwasm_enabled": true, + "next_version_name": "2.1.1-nitro-to-2.1.6", + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } + }, + { + "name": "2.1.1-nitro-to-2.1.6", + "tag": "v2.1.6", + "height": 8649000, + "proposal": 169, + "recommended_version": "v2.1.6", + "compatible_versions": [ + "v2.1.6" + ], + "cosmos_sdk_version": "v0.47.10", + "consensus": { + "type": "cometbft", + "version": "0.37.5" + }, + "cosmwasm_version": "v0.45.0", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.routerd/wasm", + "binaries": { + "linux/amd64": "https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.1.6/linux/routerd.tar.gz", + "darwin/amd64": "https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.1.6/debian/routerd.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "cosmwasm": { + "version": "v0.45.0", + "path": "$HOME/.routerd/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } + } + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + }, + "cosmwasm": { + "version": "v0.45.0", + "path": "$HOME/.routerd/wasm", + "enabled": true + } + }, + "peers": { + "seeds": [ + { + "id": "49e4a20d999fe27868a67fc72bc6bf0e1424a610", + "address": "188.214.133.133:26656", + "provider": "Router" + }, + { + "id": "e90a88795977f7cc24982d5684f0f5a4581cd672", + "address": "185.8.104.157:26656", + "provider": "Router" + }, + { + "id": "fbb30fa866f318e9e1c48188711526fc69f66d18", + "address": "188.214.133.174:26656", + "provider": "Router" + }, + { + "id": "09ba537d6563018b97c502979c3478df4decf426", + "address": "seeds-node.genznodes.dev:4656", + "provider": "genznodes" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "router-mainnet-seed.autostake.com:27336", + "provider": "AutoStake πŸ›‘οΈ Slash Protected" + } + ], + "persistent_peers": [ + { + "id": "49e4a20d999fe27868a67fc72bc6bf0e1424a610", + "address": "188.214.133.133:26656", + "provider": "Router" + }, + { + "id": "e90a88795977f7cc24982d5684f0f5a4581cd672", + "address": "185.8.104.157:26656", + "provider": "Router" + }, + { + "id": "fbb30fa866f318e9e1c48188711526fc69f66d18", + "address": "188.214.133.174:26656", + "provider": "Router" + }, + { + "id": "13a59edcee8ede7afa62ae054f266b44701cedc0", + "address": "213.246.45.16:3656", + "provider": "genznodes" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "router-mainnet-seed.autostake.com:27336", + "provider": "AutoStake πŸ›‘οΈ Slash Protected" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://sentry.tm.rpc.routerprotocol.com/", + "provider": "Router" + }, + { + "address": "https://router-rpc.genznodes.dev/", + "provider": "genznodes" + }, + { + "address": "https://router.rpc.nodeshub.online:443", + "provider": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ" + }, + { + "address": "https://router-mainnet-rpc.autostake.com:443", + "provider": "AutoStake πŸ›‘οΈ Slash Protected" + } + ], + "rest": [ + { + "address": "https://sentry.lcd.routerprotocol.com/", + "provider": "Router" + }, + { + "address": "https://router-api.genznodes.dev/", + "provider": "genznodes" + }, + { + "address": "https://router.api.nodeshub.online", + "provider": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ" + }, + { + "address": "https://router-mainnet-lcd.autostake.com:443", + "provider": "AutoStake πŸ›‘οΈ Slash Protected" + } + ], + "grpc": [ + { + "address": "sentry.grpc.routerprotocol.com:9090", + "provider": "Router" + }, + { + "address": "router-grpc.genznodes.dev:3090", + "provider": "genznodes" + }, + { + "address": "router.grpc.nodeshub.online", + "provider": "Nodes Hub" + }, + { + "address": "router-mainnet-grpc.autostake.com:443", + "provider": "AutoStake πŸ›‘οΈ Slash Protected" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://sentry.evm.rpc.routerprotocol.com", + "provider": "Router" + }, + { + "address": "https://router-rpc-evm.genznodes.dev", + "provider": "genznodes" + } + ] + }, + "explorers": [ + { + "kind": "Routerscan", + "url": "https://routerscan.io/", + "tx_page": "https://routerscan.io/transactions/${txHash}" + }, + { + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.org/router", + "tx_page": "https://explorer.nodestake.org/router/tx/${txHash}" + }, + { + "kind": "Router Explorer", + "url": "https://router.explorers.guru/", + "tx_page": "https://router.explorers.guru/transaction/${txHash}" + }, + { + "kind": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ", + "url": "https://explorer.nodeshub.online/router/", + "tx_page": "https://explorer.nodeshub.online/router/tx/${txHash}", + "account_page": "https://explorer.nodeshub.online/router/accounts/${accountAddress}" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "routerchain", + "base_denom": "route" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.svg", + "theme": { + "primary_color_hex": "#cb0766" + } + } + ] +} \ No newline at end of file diff --git a/routerchain/images/router.png b/routerchain/images/router.png new file mode 100644 index 0000000000..a4e754cda5 Binary files /dev/null and b/routerchain/images/router.png differ diff --git a/routerchain/images/router.svg b/routerchain/images/router.svg new file mode 100644 index 0000000000..445f8fa293 --- /dev/null +++ b/routerchain/images/router.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/saga/assetlist.json b/saga/assetlist.json index 33757d173c..7b6ea2400e 100644 --- a/saga/assetlist.json +++ b/saga/assetlist.json @@ -4,7 +4,7 @@ "assets": [ { "description": "Saga is a blockchain platform focused on providing customizable blockchain solutions with a strong emphasis on security and scalability.", - "extended_description": "Saga is a Layer 1 protocol that allows developers to automatically spin up VM-agnostic, parallelized and interoperable dedicated chains, or β€œChainlets,” that provide applications with infinite horizontal scalability. Each Chainlet is a replica of the Saga Mainnet, with the same validator set and security model.\n\nSaga’s mission is to enable the next 1000 chains in gaming and entertainment as part of the growing Saga Multiverse.", + "extended_description": "Saga is a Layer 1 protocol that allows developers to automatically spin up VM-agnostic, parallelized and interoperable dedicated chains, or \u201cChainlets,\u201d that provide applications with infinite horizontal scalability. Each Chainlet is a replica of the Saga Mainnet, with the same validator set and security model.\n\nSaga\u2019s mission is to enable the next 1000 chains in gaming and entertainment as part of the growing Saga Multiverse.", "denom_units": [ { "denom": "usaga", @@ -45,7 +45,8 @@ "socials": { "website": "https://www.saga.xyz/", "twitter": "https://twitter.com/Sagaxyz__" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/saga/chain.json b/saga/chain.json index 270227643f..0fb849db10 100644 --- a/saga/chain.json +++ b/saga/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.saga.xyz/", "pretty_name": "Saga", + "chain_type": "cosmos", "chain_id": "ssc-1", "bech32_prefix": "saga", "daemon_name": "sscd", @@ -46,14 +47,29 @@ "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5", "consensus": { "type": "cometbft", - "version": "osmosis-labs/cometbft v0.37.2" + "version": "v0.37.2", + "repo": "https://github.com/osmosis-labs/cometbft" }, "cosmwasm_enabled": false, - "ibc_go_version": "v7.3.1", - "ics_enabled": [ - "ics20-1" - ], - "go_version": "1.21" + "language": { + "type": "go", + "version": "1.21" + }, + "sdk": { + "type": "cosmos", + "repo": "https://github.com/osmosis-labs/cosmos-sdk", + "version": "v0.47.5" + }, + "ibc": { + "type": "go", + "version": "v7.3.1", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "enabled": false + } }, "peers": { "seeds": [ @@ -121,8 +137,12 @@ "provider": "Bro_n_Bro" }, { - "address": "https://saga-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/saga", "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://saga-rpc.stakeandrelax.net", + "provider": "Stake&Relax πŸ¦₯" } ], "rest": [ @@ -151,8 +171,12 @@ "provider": "Bro_n_Bro" }, { - "address": "https://saga-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/saga", "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "https://saga-api.stakeandrelax.net", + "provider": "Stake&Relax πŸ¦₯" } ], "grpc": [ @@ -177,8 +201,12 @@ "provider": "Bro_n_Bro" }, { - "address": "https://saga-grpc.lavenderfive.com:443", + "address": "saga.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" + }, + { + "address": "http://saga-grpc.stakeandrelax.net:24990", + "provider": "Stake&Relax πŸ¦₯" } ] }, diff --git a/scorum/assetlist.json b/scorum/assetlist.json index 0a72d22114..3bd52a3c50 100644 --- a/scorum/assetlist.json +++ b/scorum/assetlist.json @@ -4,7 +4,7 @@ "assets": [ { "description": "The native token of Scorum", - "extended_description": "Scorum is a dynamic Layer-1 blockchain powered by Cosmos, designed to redefine the gaming and entertainment industries. Currently, it supports Aviatrix, a compelling crash game that not only leverages blockchain technology for secure and transparent gaming outcomes but also utilizes it for the integration of Non-Fungible Tokens (NFTs). Central to Scorum’s ecosystem is the SCR token, which supports both Aviatrix and future applications set to expand the platform’s offerings. The adoption of the Inter-Blockchain Communication protocol significantly enhances Scorum’s interoperability and scalability, paving the way for its ongoing expansion and the development of innovative, blockchain-powered entertainment solutions.", + "extended_description": "Scorum is a dynamic Layer-1 blockchain powered by Cosmos, designed to redefine the gaming and entertainment industries. Currently, it supports Aviatrix, a compelling crash game that not only leverages blockchain technology for secure and transparent gaming outcomes but also utilizes it for the integration of Non-Fungible Tokens (NFTs). Central to Scorum\u2019s ecosystem is the SCR token, which supports both Aviatrix and future applications set to expand the platform\u2019s offerings. The adoption of the Inter-Blockchain Communication protocol significantly enhances Scorum\u2019s interoperability and scalability, paving the way for its ongoing expansion and the development of innovative, blockchain-powered entertainment solutions.", "denom_units": [ { "denom": "nscr", @@ -36,37 +36,8 @@ "socials": { "website": "https://scorum.network", "twitter": "https://twitter.com/scorum_en" - } - }, - { - "description": "Scorum Power used for internal mechanics and staking", - "denom_units": [ - { - "denom": "nsp", - "exponent": 0 - }, - { - "denom": "sp", - "exponent": 9 - } - ], - "base": "nsp", - "name": "Scorum Power", - "display": "sp", - "symbol": "SP", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/sp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/sp.svg" }, - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/sp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/sp.svg", - "theme": { - "primary_color_hex": "#9421e3" - } - } - ] + "type_asset": "sdk.coin" }, { "description": "Virtual(non-transferable) coin used to pay gas", @@ -92,7 +63,8 @@ "primary_color_hex": "#555555" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/scorum/chain.json b/scorum/chain.json index 1cbd15abea..27229a2db1 100644 --- a/scorum/chain.json +++ b/scorum/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://scorum.com/", "pretty_name": "Scorum Network", + "chain_type": "cosmos", "chain_id": "scorum-1", "bech32_prefix": "scorum", "daemon_name": "scorumd", @@ -27,7 +28,7 @@ "staking": { "staking_tokens": [ { - "denom": "nsp" + "denom": "nscr" } ] }, diff --git a/scorum/images/sp.png b/scorum/images/sp.png deleted file mode 100644 index ecbc4a40fb..0000000000 Binary files a/scorum/images/sp.png and /dev/null differ diff --git a/scorum/images/sp.svg b/scorum/images/sp.svg deleted file mode 100644 index fc653ea039..0000000000 --- a/scorum/images/sp.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/secretnetwork/assetlist.json b/secretnetwork/assetlist.json index af677014bd..e373f75d67 100644 --- a/secretnetwork/assetlist.json +++ b/secretnetwork/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://scrt.network/", "twitter": "https://twitter.com/SecretNetwork" - } + }, + "type_asset": "sdk.coin" }, { "description": "The native token cw20 for SIENNA on Secret Network", @@ -242,6 +243,8 @@ } ], "base": "cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej", + "type_asset": "snip20", + "address": "secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej", "name": "Alter", "display": "alter", "symbol": "ALTER", diff --git a/secretnetwork/chain.json b/secretnetwork/chain.json index a820d26e45..8c33c207a3 100644 --- a/secretnetwork/chain.json +++ b/secretnetwork/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://scrt.network/", "pretty_name": "Secret Network", + "chain_type": "cosmos", "chain_id": "secret-4", "bech32_prefix": "secret", "daemon_name": "secretd", @@ -226,7 +227,7 @@ "provider": "ANKR" }, { - "address": "https://secretnetwork-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/secretnetwork", "provider": "Lavender.Five Nodes 🐝" }, { @@ -252,7 +253,7 @@ ], "rest": [ { - "address": "https://secretnetwork-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/secretnetwork", "provider": "Lavender.Five Nodes 🐝" }, { @@ -282,7 +283,7 @@ ], "grpc": [ { - "address": "secretnetwork-grpc.lavenderfive.com:443", + "address": "secretnetwork.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/seda/assetlist.json b/seda/assetlist.json index edde19d6ee..5a957e49a4 100644 --- a/seda/assetlist.json +++ b/seda/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://www.seda.xyz/", "twitter": "https://twitter.com/sedaprotocol" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/seda/chain.json b/seda/chain.json index d18886de16..8bcbe7b357 100644 --- a/seda/chain.json +++ b/seda/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.seda.xyz/", "pretty_name": "SEDA", + "chain_type": "cosmos", "chain_id": "seda-1", "bech32_prefix": "seda", "daemon_name": "sedad", @@ -46,9 +47,16 @@ "type": "cometbft", "version": "v0.38.6" }, - "ibc_go_version": "v8.2.0", "genesis": { "genesis_url": "https://raw.githubusercontent.com/sedaprotocol/seda-networks/main/mainnet/genesis.json" + }, + "sdk": { + "type": "cosmos", + "version": "v0.50.5" + }, + "ibc": { + "type": "go", + "version": "v8.2.0" } }, "logo_URIs": { @@ -134,7 +142,7 @@ "provider": "Synergy Nodes" }, { - "address": "https://seda-rpc.lavenderfive.com/", + "address": "https://rpc.lavenderfive.com:443/seda", "provider": "Lavender.Five Nodes 🐝" }, { @@ -168,6 +176,10 @@ { "address": "https://seda_mainnet_rpc.chain.whenmoonwhenlambo.money:443", "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" + }, + { + "address": "https://rpc-seda-mainnet.keepitstaked.com:443", + "provider": "KeepItStaked.com" } ], "rest": [ @@ -188,7 +200,7 @@ "provider": "Synergy Nodes" }, { - "address": "https://seda-api.lavenderfive.com/", + "address": "https://rest.lavenderfive.com:443/seda", "provider": "Lavender.Five Nodes 🐝" }, { @@ -222,6 +234,10 @@ { "address": "https://seda_mainnet_api.chain.whenmoonwhenlambo.money", "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" + }, + { + "address": "https://api-seda-mainnet.keepitstaked.com:443", + "provider": "KeepItStaked.com" } ], "grpc": [ @@ -238,7 +254,7 @@ "provider": "kjnodes" }, { - "address": "https://seda-grpc.lavenderfive.com", + "address": "seda.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -296,4 +312,4 @@ } } ] -} +} \ No newline at end of file diff --git a/sei/assetlist.json b/sei/assetlist.json index 970cf00fe6..93d4af2662 100644 --- a/sei/assetlist.json +++ b/sei/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://www.sei.io/", "twitter": "https://twitter.com/SeiNetwork" - } + }, + "type_asset": "sdk.coin" }, { "description": "OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.", @@ -65,7 +66,8 @@ "primary_color_hex": "#6cdbac" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "ERIS liquid staked SEI", @@ -90,7 +92,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/ampsei.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Popeye the Seilor", @@ -118,7 +121,8 @@ "primary_color_hex": "#04040a" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "A wise dog and a marshal arts master", @@ -146,13 +150,14 @@ "primary_color_hex": "#d4d0c7" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The first memecoin on osmosis.", "denom_units": [ { - "denom": "ibc/AB7C92666DE8C7A977666B8080CABF0127B652B9D40F7251E6914DE942D9942B", + "denom": "ibc/B023C57727A38A9CF87238F9008477C3761AD4774D528BFA458DD707D90B553A", "exponent": 0 }, { @@ -161,7 +166,7 @@ } ], "type_asset": "ics20", - "base": "ibc/AB7C92666DE8C7A977666B8080CABF0127B652B9D40F7251E6914DE942D9942B", + "base": "ibc/B023C57727A38A9CF87238F9008477C3761AD4774D528BFA458DD707D90B553A", "name": "Wosmo", "display": "WOSMO", "symbol": "WOSMO", @@ -207,6 +212,8 @@ "exponent": 6 } ], + "type_asset": "cw20", + "address": "sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda", "base": "sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda", "name": "Oozaru", "display": "oozaru", @@ -257,7 +264,7 @@ "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", "denom_units": [ { - "denom": "ibc/1FF96B82FDE4B0E38FA0A8EC24A83E1EAC2615F338468A47473BAD3B45E066D2", + "denom": "ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8", "exponent": 0, "aliases": [ "uastro" @@ -269,7 +276,7 @@ } ], "type_asset": "ics20", - "base": "ibc/1FF96B82FDE4B0E38FA0A8EC24A83E1EAC2615F338468A47473BAD3B45E066D2", + "base": "ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8", "name": "Astroport token", "display": "astro", "symbol": "ASTRO", diff --git a/sei/chain.json b/sei/chain.json index 3b8f927ee0..c480e62aa5 100644 --- a/sei/chain.json +++ b/sei/chain.json @@ -5,6 +5,7 @@ "website": "https://www.sei.io/", "network_type": "mainnet", "pretty_name": "Sei", + "chain_type": "cosmos", "chain_id": "pacific-1", "bech32_prefix": "sei", "daemon_name": "seid", @@ -33,17 +34,16 @@ }, "codebase": { "git_repo": "https://github.com/sei-protocol/sei-chain", - "recommended_version": "v5.5.5", + "recommended_version": "v5.8.0", "compatible_versions": [ - "v5.5.5" + "v5.8.0" ], - "ibc_go_version": "sei-ibc-go/v3 v3.3.1", - "cosmos_sdk_version": "sei-cosmos v0.3.19", + "cosmos_sdk_version": "sei-cosmos v0.3.35", "consensus": { "type": "sei-tendermint", - "version": "v0.3.3" + "version": "v0.3.8" }, - "cosmwasm_version": "sei-wasmd v0.1.5", + "cosmwasm_version": "sei-wasmd v0.2.4", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", "genesis": { @@ -56,12 +56,24 @@ "compatible_versions": [ "3.0.8" ], - "ibc_go_version": "v3.0.0", "cosmos_sdk_version": "v0.45.10", "cosmwasm_version": "v0.27.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", - "next_version_name": "v3.0.9" + "next_version_name": "v3.0.9", + "sdk": { + "type": "cosmos", + "version": "v0.45.10" + }, + "cosmwasm": { + "version": "v0.27.0", + "path": "$HOME/.sei/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v3.0.0" + } }, { "name": "v3.0.9", @@ -71,12 +83,24 @@ ], "proposal": 24, "height": 25259000, - "ibc_go_version": "v3.1.0", "cosmos_sdk_version": "v0.45.10", "cosmwasm_version": "v0.27.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", - "next_version_name": "v3.1.1" + "next_version_name": "v3.1.1", + "sdk": { + "type": "cosmos", + "version": "v0.45.10" + }, + "cosmwasm": { + "version": "v0.27.0", + "path": "$HOME/.sei/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v3.1.0" + } }, { "name": "v3.1.1", @@ -86,12 +110,24 @@ ], "proposal": 32, "height": 29772820, - "ibc_go_version": "v3.2.0", "cosmos_sdk_version": "v0.45.10", "cosmwasm_version": "v0.27.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", - "next_version_name": "v3.2.1" + "next_version_name": "v3.2.1", + "sdk": { + "type": "cosmos", + "version": "v0.45.10" + }, + "cosmwasm": { + "version": "v0.27.0", + "path": "$HOME/.sei/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v3.2.0" + } }, { "name": "v3.2.1", @@ -101,12 +137,24 @@ ], "proposal": 42, "height": 34078260, - "ibc_go_version": "v3.2.0", "cosmos_sdk_version": "v0.45.10", "cosmwasm_version": "v0.27.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", - "next_version_name": "v3.3.0" + "next_version_name": "v3.3.0", + "sdk": { + "type": "cosmos", + "version": "v0.45.10" + }, + "cosmwasm": { + "version": "v0.27.0", + "path": "$HOME/.sei/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v3.2.0" + } }, { "name": "v3.3.0", @@ -117,7 +165,6 @@ "v3.3.3", "v3.3.4" ], - "ibc_go_version": "sei-ibc-go/v3 v3.3.0", "cosmos_sdk_version": "sei-cosmos v0.2.63", "consensus": { "type": "sei-tendermint", @@ -126,7 +173,22 @@ "cosmwasm_version": "sei-wasmd v0.0.2", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", - "next_version_name": "v3.5.0" + "next_version_name": "v3.5.0", + "sdk": { + "type": "cosmos", + "version": "v0.2.63" + }, + "cosmwasm": { + "version": "v0.0.2", + "repo": "https://github.com/sei-wasmd", + "path": "$HOME/.sei/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/sei-ibc-go/v3", + "version": "v3.3.0" + } }, { "name": "v3.5.0", @@ -135,7 +197,6 @@ "v3.5.0", "V3.5.1" ], - "ibc_go_version": "sei-ibc-go/v3 v3.3.0", "cosmos_sdk_version": "sei-cosmos v0.2.63", "consensus": { "type": "sei-tendermint", @@ -144,7 +205,22 @@ "cosmwasm_version": "sei-wasmd v0.0.4", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", - "next_version_name": "v3.6.1" + "next_version_name": "v3.6.1", + "sdk": { + "type": "cosmos", + "version": "v0.2.63" + }, + "cosmwasm": { + "version": "v0.0.4", + "repo": "https://github.com/sei-wasmd", + "path": "$HOME/.sei/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/sei-ibc-go/v3", + "version": "v3.3.0" + } }, { "name": "v3.6.1", @@ -154,7 +230,6 @@ "compatible_versions": [ "v3.6.1" ], - "ibc_go_version": "sei-ibc-go/v3 v3.3.0", "cosmos_sdk_version": "sei-cosmos v0.2.72", "consensus": { "type": "sei-tendermint", @@ -163,7 +238,22 @@ "cosmwasm_version": "sei-wasmd v0.0.4", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", - "next_version_name": "v3.7.0" + "next_version_name": "v3.7.0", + "sdk": { + "type": "cosmos", + "version": "v0.2.72" + }, + "cosmwasm": { + "version": "v0.0.4", + "repo": "https://github.com/sei-wasmd", + "path": "$HOME/.sei/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/sei-ibc-go/v3", + "version": "v3.3.0" + } }, { "name": "v3.7.0", @@ -173,7 +263,6 @@ "compatible_versions": [ "v3.7.0" ], - "ibc_go_version": "sei-ibc-go/v3 v3.3.0", "cosmos_sdk_version": "sei-cosmos v0.2.74", "consensus": { "type": "sei-tendermint", @@ -182,7 +271,22 @@ "cosmwasm_version": "sei-wasmd v0.0.4", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", - "next_version_name": "v3.8.0" + "next_version_name": "v3.8.0", + "sdk": { + "type": "cosmos", + "version": "v0.2.74" + }, + "cosmwasm": { + "version": "v0.0.4", + "repo": "https://github.com/sei-wasmd", + "path": "$HOME/.sei/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/sei-ibc-go/v3", + "version": "v3.3.0" + } }, { "name": "v3.8.0", @@ -193,7 +297,6 @@ "v3.8.0", "v3.8.2" ], - "ibc_go_version": "sei-ibc-go/v3 v3.3.0", "cosmos_sdk_version": "sei-cosmos v0.2.77", "consensus": { "type": "sei-tendermint", @@ -202,7 +305,22 @@ "cosmwasm_version": "sei-wasmd v0.0.8", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", - "next_version_name": "v3.9.0" + "next_version_name": "v3.9.0", + "sdk": { + "type": "cosmos", + "version": "v0.2.77" + }, + "cosmwasm": { + "version": "v0.0.8", + "repo": "https://github.com/sei-wasmd", + "path": "$HOME/.sei/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/sei-ibc-go/v3", + "version": "v3.3.0" + } }, { "name": "v3.9.0", @@ -212,7 +330,6 @@ "compatible_versions": [ "v5.5.2" ], - "ibc_go_version": "sei-ibc-go/v3 v3.3.0", "cosmos_sdk_version": "sei-cosmos v0.2.83", "consensus": { "type": "sei-tendermint", @@ -221,7 +338,22 @@ "cosmwasm_version": "sei-wasmd v0.1.1", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", - "next_version_name": "v5.5.2" + "next_version_name": "v5.5.2", + "sdk": { + "type": "cosmos", + "version": "v0.2.83" + }, + "cosmwasm": { + "version": "v0.1.1", + "repo": "https://github.com/sei-wasmd", + "path": "$HOME/.sei/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/sei-ibc-go/v3", + "version": "v3.3.0" + } }, { "name": "v5.5.2", @@ -231,7 +363,6 @@ "compatible_versions": [ "v5.5.2" ], - "ibc_go_version": "sei-ibc-go/v3 v3.3.0", "cosmos_sdk_version": "sei-cosmos v0.3.13", "consensus": { "type": "sei-tendermint", @@ -240,7 +371,22 @@ "cosmwasm_version": "sei-wasmd v0.1.5", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", - "next_version_name": "v5.5.5" + "next_version_name": "v5.5.5", + "sdk": { + "type": "cosmos", + "version": "v0.3.13" + }, + "cosmwasm": { + "version": "v0.1.5", + "repo": "https://github.com/sei-wasmd", + "path": "$HOME/.sei/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/sei-ibc-go/v3", + "version": "v3.3.0" + } }, { "name": "v5.5.5", @@ -250,7 +396,6 @@ "compatible_versions": [ "v5.5.5" ], - "ibc_go_version": "sei-ibc-go/v3 v3.3.1", "cosmos_sdk_version": "sei-cosmos v0.3.19", "consensus": { "type": "sei-tendermint", @@ -259,9 +404,139 @@ "cosmwasm_version": "sei-wasmd v0.1.5", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.sei/wasm", - "next_version_name": "" + "next_version_name": "v5.6.2", + "sdk": { + "type": "cosmos", + "version": "v0.3.19" + }, + "cosmwasm": { + "version": "v0.1.5", + "repo": "https://github.com/sei-wasmd", + "path": "$HOME/.sei/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/sei-ibc-go/v3", + "version": "v3.3.1" + } + }, + { + "name": "v5.6.2", + "proposal": 80, + "height": 89475838, + "recommended_version": "v5.6.2", + "compatible_versions": [ + "v5.6.2" + ], + "cosmos_sdk_version": "sei-cosmos v0.3.24", + "consensus": { + "type": "sei-tendermint", + "version": "v0.3.4" + }, + "cosmwasm_version": "sei-wasmd v0.1.9", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.sei/wasm", + "next_version_name": "5.7.5", + "sdk": { + "type": "cosmos", + "version": "v0.3.24" + }, + "cosmwasm": { + "version": "v0.1.9", + "repo": "https://github.com/sei-wasmd", + "path": "$HOME/.sei/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/sei-ibc-go/v3", + "version": "v3.3.1" + } + }, + { + "name": "v5.7.5", + "proposal": 82, + "height": 94496767, + "recommended_version": "v5.7.5", + "compatible_versions": [ + "v5.7.5" + ], + "cosmos_sdk_version": "sei-cosmos v0.3.31", + "consensus": { + "type": "sei-tendermint", + "version": "v0.3.6" + }, + "cosmwasm_version": "sei-wasmd v0.2.3", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.sei/wasm", + "next_version_name": "v5.8.0", + "sdk": { + "type": "cosmos", + "version": "v0.3.31" + }, + "cosmwasm": { + "version": "v0.2.3", + "repo": "https://github.com/sei-wasmd", + "path": "$HOME/.sei/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/sei-ibc-go/v3", + "version": "v3.3.2" + } + }, + { + "name": "v5.8.0", + "proposal": 84, + "height": 102491599, + "recommended_version": "v5.7.5", + "compatible_versions": [ + "v5.7.5" + ], + "cosmos_sdk_version": "sei-cosmos v0.3.35", + "consensus": { + "type": "sei-tendermint", + "version": "v0.3.8" + }, + "cosmwasm_version": "sei-wasmd v0.2.4", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.sei/wasm", + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.3.35" + }, + "cosmwasm": { + "version": "v0.2.4", + "repo": "https://github.com/sei-wasmd", + "path": "$HOME/.sei/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/sei-ibc-go/v3", + "version": "v3.3.2" + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/sei-cosmos", + "version": "v0.3.35" + }, + "ibc": { + "type": "go", + "repo": "https://github.com/sei-ibc-go/v3", + "version": "v3.3.2" + }, + "cosmwasm": { + "version": "v0.2.4", + "repo": "https://github.com/sei-wasmd", + "path": "$HOME/.sei/wasm", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", @@ -317,19 +592,23 @@ "apis": { "rpc": [ { - "address": "https://sei-rpc.lavenderfive.com:443", + "address": "https://rpc.sei-apis.com", + "provider": "Rhino Stake" + }, + { + "address": "https://rpc.lavenderfive.com:443/sei", "provider": "Lavender.Five Nodes 🐝" }, { - "address": "https://sei-rpc.polkachu.com/", + "address": "https://sei-rpc.polkachu.com", "provider": "polkachu.com" }, { - "address": "https://sei-rpc.brocha.in/", + "address": "https://sei-rpc.brocha.in", "provider": "Brochain" }, { - "address": "https://rpc-sei.stingray.plus/", + "address": "https://rpc-sei.stingray.plus", "provider": "StingRay" }, { @@ -347,19 +626,23 @@ ], "rest": [ { - "address": "https://sei-api.lavenderfive.com:443", + "address": "https://rest.sei-apis.com", + "provider": "Rhino Stake" + }, + { + "address": "https://rest.lavenderfive.com:443/sei", "provider": "Lavender.Five Nodes 🐝" }, { - "address": "https://sei-api.polkachu.com/", + "address": "https://sei-api.polkachu.com", "provider": "polkachu.com" }, { - "address": "https://sei-rest.brocha.in/", + "address": "https://sei-rest.brocha.in", "provider": "Brochain" }, { - "address": "https://api-sei.stingray.plus/", + "address": "https://api-sei.stingray.plus", "provider": "StingRay" }, { @@ -377,11 +660,15 @@ ], "grpc": [ { - "address": "https://sei-grpc.lavenderfive.com:443", + "address": "https://grpc.sei-apis.com:443", + "provider": "Rhino Stake" + }, + { + "address": "sei.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { - "address": "https://sei-grpc.polkachu.com:11990/", + "address": "https://sei-grpc.polkachu.com:11990", "provider": "polkachu.com" }, { @@ -404,24 +691,24 @@ "evm-http-jsonrpc": [ { "address": "https://evm-rpc.sei-apis.com", - "provider": "Rhino" + "provider": "Rhino Stake" }, { "address": "https://seievm-rpc.polkachu.com", "provider": "Polkachu" }, { - "address": "https://sei-jsonrpc.lavenderfive.com", + "address": "https://jsonrpc.lavenderfive.com:443/sei", "provider": "Lavender.Five Nodes" } ] }, "explorers": [ { - "kind": "ping.pub", - "url": "https://ping.pub/sei", - "tx_page": "https://ping.pub/sei/tx/${txHash}", - "account_page": "https://ping.pub/sei/account/${accountAddress}" + "kind": "blockscout", + "url": "https://seitrace.com", + "tx_page": "https://seitrace.com/tx/${txHash}?chain=pacific-1", + "account_page": "https://seitrace.com/address/${accountAddress}?chain=pacific-1" }, { "kind": "mintscan", @@ -436,7 +723,7 @@ "account_page": "https://ezstaking.app/sei/account/${accountAddress}" }, { - "kind": "seiscan", + "kind": "celatone", "url": "https://www.seiscan.app/pacific-1", "tx_page": "https://www.seiscan.app/pacific-1/txs/${txHash}", "account_page": "https://www.seiscan.app/pacific-1/accounts/${accountAddress}" diff --git a/self/assetlist.json b/self/assetlist.json index 97d9c82de9..2244b625bd 100644 --- a/self/assetlist.json +++ b/self/assetlist.json @@ -33,7 +33,8 @@ "socials": { "website": "https://selfchain.xyz", "twitter": "https://x.com/selfchainxyz" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/self/chain.json b/self/chain.json index 3089854399..67015bfc45 100644 --- a/self/chain.json +++ b/self/chain.json @@ -5,6 +5,7 @@ "website": "https://selfchain.xyz", "network_type": "mainnet", "pretty_name": "Self Chain", + "chain_type": "cosmos", "chain_id": "self-1", "bech32_prefix": "self", "daemon_name": "selfchaind", @@ -61,6 +62,16 @@ "id": "08bc9afd0cac4ae6cf8f1877920b0cc7e58a6f42", "address": "seeds.tendermint.roomit.xyz:40009", "provider": "Roomit" + }, + { + "id": "6f6a3a908634b79b6fe7c4988efec2553f188234", + "address": "selfchain.seed.nodeshub.online:24356", + "provider": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "selfchain-mainnet-seed.autostake.com:27216", + "provider": "AutoStake πŸ›‘οΈ Slash Protected" } ], "persistent_peers": [ @@ -83,6 +94,21 @@ "id": "62771c2083623cb6db6eda99f404036759c5f4b3", "address": "p2p.tendermint.roomit.xyz:16609", "provider": "Roomit" + }, + { + "id": "637077d431f618181597706810a65c826524fd74", + "address": "selfchain.rpc.nodeshub.online:24356", + "provider": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ" + }, + { + "id": "bd5e996b82aa76539b6d893001903e464072bf47", + "address": "selfchain-mainnet.peer:15956", + "provider": "Stake Village" + }, + { + "id": "ebc272824924ea1a27ea3183dd0b9ba713494f83", + "address": "selfchain-mainnet-peer.autostake.com:27216", + "provider": "AutoStake πŸ›‘οΈ Slash Protected" } ] }, @@ -99,6 +125,18 @@ { "address": "https://selfchain_mainnet_rpc.chain.whenmoonwhenlambo.money", "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" + }, + { + "address": "https://selfchain.rpc.nodeshub.online:443", + "provider": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ" + }, + { + "address": "https://selfchain-mainnet.rpc.stakevillage.net:443", + "provider": "Stake Village" + }, + { + "address": "https://selfchain-mainnet-rpc.autostake.com:443", + "provider": "AutoStake πŸ›‘οΈ Slash Protected" } ], "rest": [ @@ -117,12 +155,36 @@ { "address": "https://selfchain_mainnet_api.chain.whenmoonwhenlambo.money", "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" + }, + { + "address": "https://selfchain.api.nodeshub.online", + "provider": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ" + }, + { + "address": "https://selfchain-mainnet.api.stakevillage.net", + "provider": "Stake Village" + }, + { + "address": "https://selfchain-mainnet-lcd.autostake.com:443", + "provider": "AutoStake πŸ›‘οΈ Slash Protected" } ], "grpc": [ { "address": "grpc.selfchain.roomit.xyz:8443", "provider": "Roomit" + }, + { + "address": "selfchain.grpc.nodeshub.online", + "provider": "Nodes Hub" + }, + { + "address": "selfchain-mainnet.grpc.stakevillage.net:443", + "provider": "Stake Village" + }, + { + "address": "selfchain-mainnet-grpc.autostake.com:443", + "provider": "AutoStake πŸ›‘οΈ Slash Protected" } ] }, @@ -150,6 +212,18 @@ "url": "https://explorer.whenmoonwhenlambo.money/self", "tx_page": "https://explorer.whenmoonwhenlambo.money/self/tx/${txHash}", "account_page": "https://explorer.whenmoonwhenlambo.money/self/account/${accountAddress}" + }, + { + "kind": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ", + "url": "https://explorer.nodeshub.online/selfchain/", + "tx_page": "https://explorer.nodeshub.online/selfchain/tx/${txHash}", + "account_page": "https://explorer.nodeshub.online/selfchain/accounts/${accountAddress}" + }, + { + "kind": "Stake Village", + "url": "https://exp.stakevillage.net/selfchain-mainnet", + "tx_page": "https://exp.stakevillage.net/selfchain-mainnet/tx/${txHash}", + "account_page": "https://exp.stakevillage.net/selfchain-mainnet/accounts/${accountAddress}" } ], "images": [ @@ -160,4 +234,4 @@ } } ] -} \ No newline at end of file +} diff --git a/sentinel/assetlist.json b/sentinel/assetlist.json index c8d6520df6..1d85058194 100644 --- a/sentinel/assetlist.json +++ b/sentinel/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://www.sentinel.co/", "twitter": "https://x.com/SentinelDVPN" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/sentinel/chain.json b/sentinel/chain.json index 55b59a2aed..c5baf484dc 100644 --- a/sentinel/chain.json +++ b/sentinel/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://sentinel.co/", "pretty_name": "Sentinel", + "chain_type": "cosmos", "chain_id": "sentinelhub-2", "bech32_prefix": "sent", "daemon_name": "sentinelhub", @@ -106,15 +107,15 @@ "address": "seeds.badgerbite.io:26656", "provider": "BadgerBite" }, - { - "id": "c28827cb96c14c905b127b92065a3fb4cd77d7f6", - "address": "seeds.whispernode.com:17256", - "provider": "WhisperNode 🀐" - }, { "id": "b85358e035343a3b15e77e1102857dcdaf70053b", "address": "seeds.bluestake.net:26556", "provider": "BlueStake πŸš€" + }, + { + "id": "10ed1e176d874c8bb3c7c065685d2da6a4b86475", + "address": "seed-sentinel.ibs.team:16683", + "provider": "Inter Blockchain Services" } ], "persistent_peers": [ @@ -289,10 +290,6 @@ "address": "https://rpc-sentinel-ia.cosmosia.notional.ventures/", "provider": "Notional" }, - { - "address": "https://rpc-sentinel.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://rpc.sentinel.chaintools.tech/", "provider": "ChainTools" @@ -318,11 +315,11 @@ "provider": "ValidatorNode" }, { - "address": "https://rpc.trinityvalidator.com", - "provider": "Trinity Validator" + "address": "https://rpc.trinitystake.io", + "provider": "Trinity Stake" }, { - "address": "https://rpc.sentinelgrowthdao.com", + "address": "https://rpc.sentineldao.com", "provider": "Sentinel Growth DAO" }, { @@ -352,6 +349,14 @@ { "address": "https://rpc.noncompliant.network:443", "provider": "Noncompliant Network" + }, + { + "address": "https://rpc-sentinel.chainvibes.com:443", + "provider": "chainvibes" + }, + { + "address": "https://sentinel-rpc.ibs.team:443", + "provider": "Inter Blockchain Services" } ], "rest": [ @@ -363,10 +368,6 @@ "address": "https://api-sentinel-ia.cosmosia.notional.ventures/", "provider": "Notional" }, - { - "address": "https://lcd-sentinel.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://api.sentinel.quokkastake.io", "provider": "🐹 Quokka Stake" @@ -384,11 +385,11 @@ "provider": "ValidatorNode" }, { - "address": "https://api.trinityvalidator.com", - "provider": "Trinity Validator" + "address": "https://api.trinitystake.io", + "provider": "Trinity Stake" }, { - "address": "https://api.sentinelgrowthdao.com", + "address": "https://api.sentineldao.com", "provider": "Sentinel Growth DAO" }, { @@ -418,6 +419,14 @@ { "address": "https://api.noncompliant.network:443", "provider": "Noncompliant Network" + }, + { + "address": "https://api-sentinel.chainvibes.com:443", + "provider": "chainvibes" + }, + { + "address": "https://sentinel-api.ibs.team:443", + "provider": "Inter Blockchain Services" } ], "grpc": [ diff --git a/sge/assetlist.json b/sge/assetlist.json index 43c48121a7..81f473258f 100644 --- a/sge/assetlist.json +++ b/sge/assetlist.json @@ -38,7 +38,8 @@ "socials": { "website": "https://sgenetwork.io/", "twitter": "https://x.com/sge_network" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/sge/chain.json b/sge/chain.json index 595fbf6bb8..bc16f74dce 100644 --- a/sge/chain.json +++ b/sge/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "SGE", + "chain_type": "cosmos", "chain_id": "sgenet-1", "bech32_prefix": "sge", "daemon_name": "sged", @@ -32,12 +33,11 @@ }, "codebase": { "git_repo": "https://github.com/sge-network/sge", - "recommended_version": "v1.7.0-tmfix", + "recommended_version": "v1.7.2", "compatible_versions": [ - "v1.7.0-tmfix" + "v1.7.2" ], "cosmos_sdk_version": "sge-network/cosmos-sdk v0.47.9-0.20240409081440-054c8c413d45", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.5" @@ -53,12 +53,19 @@ "v1.1.0" ], "cosmos_sdk_version": "v0.46.14", - "ibc_go_version": "v5.2.1", "consensus": { "type": "cometbft", "version": "v0.34.29" }, - "next_version_name": "v1.1.1" + "next_version_name": "v1.1.1", + "sdk": { + "type": "cosmos", + "version": "v0.46.14" + }, + "ibc": { + "type": "go", + "version": "v5.2.1" + } }, { "name": "v1.1.1", @@ -69,12 +76,19 @@ "proposal": 1, "height": 1097000, "cosmos_sdk_version": "v0.46.14", - "ibc_go_version": "v5.3.1", "consensus": { "type": "cometbft", "version": "v0.34.29" }, - "next_version_name": "v1.2.0" + "next_version_name": "v1.2.0", + "sdk": { + "type": "cosmos", + "version": "v0.46.14" + }, + "ibc": { + "type": "go", + "version": "v5.3.1" + } }, { "name": "v1.2.0", @@ -85,12 +99,19 @@ "proposal": 3, "height": 1564215, "cosmos_sdk_version": "v0.46.14", - "ibc_go_version": "v5.3.1", "consensus": { "type": "cometbft", "version": "v0.34.29" }, - "next_version_name": "v1.3.0" + "next_version_name": "v1.3.0", + "sdk": { + "type": "cosmos", + "version": "v0.46.14" + }, + "ibc": { + "type": "go", + "version": "v5.3.1" + } }, { "name": "v1.3.0", @@ -101,12 +122,19 @@ "proposal": 4, "height": 1887954, "cosmos_sdk_version": "v0.46.14", - "ibc_go_version": "v5.3.1", "consensus": { "type": "cometbft", "version": "v0.34.29" }, - "next_version_name": "v1.3.1" + "next_version_name": "v1.3.1", + "sdk": { + "type": "cosmos", + "version": "v0.46.14" + }, + "ibc": { + "type": "go", + "version": "v5.3.1" + } }, { "name": "v1.3.1", @@ -117,12 +145,20 @@ "proposal": 5, "height": 1911750, "cosmos_sdk_version": "v0.46.17-0.20231114190313-b9164dd660b6", - "ibc_go_version": "v5.3.1", "consensus": { "type": "cometbft", "version": "v0.34.29" }, - "next_version_name": "V1.5.2" + "next_version_name": "V1.5.2", + "sdk": { + "type": "cosmos", + "version": "v0.46.17", + "tag": "v0.46.17-0.20231114190313-b9164dd660b6" + }, + "ibc": { + "type": "go", + "version": "v5.3.1" + } }, { "name": "v1.5.2", @@ -133,12 +169,21 @@ "proposal": 6, "height": 2867354, "cosmos_sdk_version": "sge-network/cosmos-sdk v0.46.17-0.20240223100624-2a2661276cb4", - "ibc_go_version": "v5.3.1", "consensus": { "type": "cometbft", "version": "v0.34.29" }, - "next_version_name": "v1.5.3" + "next_version_name": "v1.5.3", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/sge-network/cosmos-sdk", + "version": "v0.46.17", + "tag": "v0.46.17-0.20240223100624-2a2661276cb4" + }, + "ibc": { + "type": "go", + "version": "v5.3.1" + } }, { "name": "v1.5.3", @@ -149,12 +194,21 @@ "proposal": 7, "height": 2973740, "cosmos_sdk_version": "sge-network/cosmos-sdk v0.46.17-0.20240223100624-2a2661276cb4", - "ibc_go_version": "v5.3.1", "consensus": { "type": "cometbft", "version": "v0.34.29" }, - "next_version_name": "v1.6.2" + "next_version_name": "v1.6.2", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/sge-network/cosmos-sdk", + "version": "v0.46.17", + "tag": "v0.46.17-0.20240223100624-2a2661276cb4" + }, + "ibc": { + "type": "go", + "version": "v5.3.1" + } }, { "name": "v1.6.2", @@ -165,12 +219,21 @@ "proposal": 8, "height": 3685910, "cosmos_sdk_version": "sge-network/cosmos-sdk v0.46.17-0.20240430064306-1b044d03d56c", - "ibc_go_version": "v5.3.1", "consensus": { "type": "cometbft", "version": "v0.34.29" }, - "next_version_name": "v1.7.0" + "next_version_name": "v1.7.0", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/sge-network/cosmos-sdk", + "version": "v0.46.17", + "tag": "v0.46.17-0.20240430064306-1b044d03d56c" + }, + "ibc": { + "type": "go", + "version": "v5.3.1" + } }, { "name": "v1.7.0", @@ -181,14 +244,58 @@ "v1.7.0-tmfix" ], "cosmos_sdk_version": "sge-network/cosmos-sdk v0.47.9-0.20240409081440-054c8c413d45", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "v0.37.5" }, - "next_version_name": "" + "next_version_name": "v1.7.2", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/sge-network/cosmos-sdk", + "version": "v0.47.9", + "tag": "v0.47.9-0.20240409081440-054c8c413d45" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } + }, + { + "name": "v1.7.2", + "proposal": 9, + "height": 3976350, + "recommended_version": "v1.7.2", + "compatible_versions": [ + "v1.7.2" + ], + "cosmos_sdk_version": "sge-network/cosmos-sdk v0.47.9-0.20240409081440-054c8c413d45", + "consensus": { + "type": "cometbft", + "version": "v0.37.5" + }, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/sge-network/cosmos-sdk", + "version": "v0.47.9", + "tag": "v0.47.9-0.20240409081440-054c8c413d45" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/sge-network/cosmos-sdk", + "version": "v0.47.9", + "tag": "v0.47.9-0.20240409081440-054c8c413d45" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png", @@ -293,7 +400,7 @@ "apis": { "rpc": [ { - "address": "https://sge-rpc.lavenderfive.com/", + "address": "https://rpc.lavenderfive.com:443/sge", "provider": "Lavenderfive" }, { @@ -351,7 +458,7 @@ ], "rest": [ { - "address": "https://sge-api.lavenderfive.com/", + "address": "https://rest.lavenderfive.com:443/sge", "provider": "Lavenderfive" }, { @@ -409,7 +516,7 @@ ], "grpc": [ { - "address": "sge-grpc.lavenderfive.com:443", + "address": "sge.lavenderfive.com:443", "provider": "Lavenderfive" }, { diff --git a/sge/images/sge.png b/sge/images/sge.png index 02b089d484..2b9d7d5030 100644 Binary files a/sge/images/sge.png and b/sge/images/sge.png differ diff --git a/sge/images/sge.svg b/sge/images/sge.svg index dd5b05b24c..670189da34 100644 --- a/sge/images/sge.svg +++ b/sge/images/sge.svg @@ -1,26 +1,17 @@ - - - - - - - - - - - - + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/shareledger/assetlist.json b/shareledger/assetlist.json index 7d6ee52418..cdd82448dd 100644 --- a/shareledger/assetlist.json +++ b/shareledger/assetlist.json @@ -34,7 +34,8 @@ "primary_color_hex": "#1c2474" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/shareledger/chain.json b/shareledger/chain.json index 76e6b91227..b91ff43c8b 100644 --- a/shareledger/chain.json +++ b/shareledger/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.sharering.network/", "pretty_name": "Shareledger", + "chain_type": "cosmos", "chain_id": "ShareRing-VoyagerNet", "bech32_prefix": "shareledger", "daemon_name": "shareledger", @@ -47,10 +48,6 @@ }, "cosmwasm_version": "0.27", "cosmwasm_enabled": true, - "ibc_go_version": "3.0.0", - "ics_enabled": [ - "ics20-1" - ], "genesis": { "name": "v1", "genesis_url": "https://github.com/ShareRing/Shareledger/releases/download/v1.2.0/genesis.json" @@ -90,15 +87,41 @@ }, "cosmwasm_version": "0.27", "cosmwasm_enabled": true, - "ibc_go_version": "3.0.0", - "ics_enabled": [ - "ics20-1" - ], "binaries": { "linux/amd64": "https://github.com/ShareRing/Shareledger/releases/download/v1.4.1/shareledger" + }, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.27", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "3.0.0", + "ics_enabled": [ + "ics20-1" + ] } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "ibc": { + "type": "go", + "version": "3.0.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "version": "0.27", + "enabled": true + } }, "peers": { "seeds": [] diff --git a/shentu/assetlist.json b/shentu/assetlist.json index 7e36798aaf..90ca9b6938 100644 --- a/shentu/assetlist.json +++ b/shentu/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#e4ac4c" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/shentu/chain.json b/shentu/chain.json index 5a837e4fe5..da6ec50004 100644 --- a/shentu/chain.json +++ b/shentu/chain.json @@ -3,8 +3,9 @@ "chain_name": "shentu", "status": "live", "network_type": "mainnet", - "website": "https://www.shentu.technology/", + "website": "https://www.shentu.org/", "pretty_name": "Shentu", + "chain_type": "cosmos", "chain_id": "shentu-2.2", "bech32_prefix": "shentu", "daemon_name": "shentud", @@ -35,18 +36,14 @@ "genesis": { "genesis_url": "https://raw.githubusercontent.com/ShentuChain/mainnet/main/shentu-2.2/genesis.json" }, - "recommended_version": "v2.8.0", + "recommended_version": "v2.11.0", "compatible_versions": [ - "v2.8.0" - ], - "ibc_go_version": "v4.2.1", - "ics_enabled": [ - "ics20-1" + "v2.11.0" ], "binaries": { - "linux/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.8.0/shentud_2.8.0_linux_amd64", - "darwin/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.8.0/shentud_2.8.0_arm64_macos", - "windows/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.8.0/shentud_2.8.0_win_x86_64.exe" + "linux/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.11.0/shentud_2.11.0_linux_amd64", + "darwin/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.11.0/shentud_2.11.0_arm64_macos", + "windows/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.11.0/shentud_2.11.0_win_x86_64.exe" }, "versions": [ { @@ -54,7 +51,6 @@ "height": 10485430, "proposal": 14, "tag": "v2.6.0", - "ibc_go_version": "v4.2.0", "recommended_version": "v2.6.0", "compatible_versions": [ "v2.6.0" @@ -64,17 +60,17 @@ "darwin/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.6.0/shentud_2.6.0_arm64_macos", "windows/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.6.0/shentud_2.6.0_win_x86_64.exe" }, - "next_version_name": "v2.7.0" + "next_version_name": "v2.7.0", + "ibc": { + "type": "go", + "version": "v4.2.0" + } }, { "name": "v2.7.0", "height": 12926000, "proposal": 17, "tag": "v2.7.0", - "ibc_go_version": "v4.2.1", - "ics_enabled": [ - "ics20-1" - ], "recommended_version": "v2.7.0", "compatible_versions": [ "v2.7.0" @@ -84,17 +80,20 @@ "darwin/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.7.1/shentud_2.7.1_arm64_macos", "windows/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.7.1/shentud_2.7.1_win_x86_64.exe" }, - "next_version_name": "v2.7.2" + "next_version_name": "v2.7.2", + "ibc": { + "type": "go", + "version": "v4.2.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v2.7.2", "height": 14875800, "proposal": 21, "tag": "v2.7.2", - "ibc_go_version": "v4.2.1", - "ics_enabled": [ - "ics20-1" - ], "recommended_version": "v2.7.2", "compatible_versions": [ "v2.7.2" @@ -104,17 +103,20 @@ "darwin/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.7.2/shentud_2.7.2_arm64_macos", "windows/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.7.2/shentud_2.7.2_win_x86_64.exe" }, - "next_version_name": "v2.8.0" + "next_version_name": "v2.8.0", + "ibc": { + "type": "go", + "version": "v4.2.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v2.8.0", "height": 15094300, "proposal": 23, "tag": "v2.8.0", - "ibc_go_version": "v4.2.1", - "ics_enabled": [ - "ics20-1" - ], "recommended_version": "v2.8.0", "compatible_versions": [ "v2.8.0" @@ -124,9 +126,92 @@ "darwin/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.8.0/shentud_2.8.0_arm64_macos", "windows/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.8.0/shentud_2.8.0_win_x86_64.exe" }, - "next_version_name": "" + "next_version_name": "", + "ibc": { + "type": "go", + "version": "v4.2.1", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "v2.9.0", + "height": 16084500, + "proposal": 23, + "tag": "v2.9.0", + "recommended_version": "v2.9.0", + "compatible_versions": [ + "v2.9.0" + ], + "binaries": { + "linux/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.9.0/shentud_2.9.0_linux_amd64", + "darwin/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.9.0/shentud_2.9.0_arm64_macos", + "windows/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.9.0/shentud_2.9.0_win_x86_64.exe" + }, + "next_version_name": "", + "ibc": { + "type": "go", + "version": "v4.2.1", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "v2.10.0", + "height": 18737000, + "proposal": 23, + "tag": "v2.10.0", + "recommended_version": "v2.10.0", + "compatible_versions": [ + "v2.10.0" + ], + "binaries": { + "linux/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.10.0/shentud_2.10.0_linux_amd64", + "darwin/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.10.0/shentud_2.10.0_arm64_macos", + "windows/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.10.0/shentud_2.10.0_win_x86_64.exe" + }, + "next_version_name": "", + "ibc": { + "type": "go", + "version": "v6.3.0", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "v2.11.0", + "height": 19525000, + "proposal": 23, + "tag": "v2.11.0", + "recommended_version": "v2.11.0", + "compatible_versions": [ + "v2.11.0" + ], + "binaries": { + "linux/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.11.0/shentud_2.11.0_linux_amd64", + "darwin/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.11.0/shentud_2.11.0_arm64_macos", + "windows/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.11.0/shentud_2.11.0_win_x86_64.exe" + }, + "next_version_name": "", + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1" + ] + } } - ] + ], + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1" + ] + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png", @@ -186,7 +271,7 @@ "apis": { "rpc": [ { - "address": "https://shenturpc.noopsbycertik.com/", + "address": "https://rpc.shentu.org:443", "provider": "Shentu" }, { @@ -224,7 +309,7 @@ ], "rest": [ { - "address": "https://rest.noopsbycertik.com/", + "address": "https://rest.shentu.org/", "provider": "Shentu" }, { @@ -265,6 +350,10 @@ } ], "grpc": [ + { + "address": "grpc.shentu.org:443", + "provider": "Shentu" + }, { "address": "shentu-grpc.polkachu.com:14090", "provider": "Polkachu" @@ -316,8 +405,8 @@ }, { "kind": "Shentu Explorer", - "url": "https://explorer.shentu.technology/?net=shentu-2.2", - "tx_page": "https://explorer.shentu.technology/transactions/${txHash}?net=shentu-2.2" + "url": "https://explorer.shentu.org/?chain=shentu-2.2", + "tx_page": "https://explorer.shentu.org/transactions/${txHash}?chain=shentu-2.2" }, { "kind": "ping.pub", @@ -351,4 +440,4 @@ } } ] -} +} \ No newline at end of file diff --git a/shido/assetlist.json b/shido/assetlist.json index 0fa1c5b5e2..cabb1121d3 100644 --- a/shido/assetlist.json +++ b/shido/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://shido.io/", "twitter": "https://twitter.com/ShidoGlobal" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/shido/chain.json b/shido/chain.json index a3b1abf35f..c65105d422 100644 --- a/shido/chain.json +++ b/shido/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://shido.io/", "pretty_name": "Shido", + "chain_type": "cosmos", "chain_id": "shido_9008-1", "bech32_prefix": "shido", "node_home": "$HOME/.shidod", @@ -36,20 +37,19 @@ }, "codebase": { "git_repo": "https://github.com/ShidoGlobal/shidochain", - "recommended_version": "v1.0.0", + "recommended_version": "v2.0.0", "compatible_versions": [ - "v1.0.0" + "v2.0.0" ], "cosmos_sdk_version": "v0.47.4", "consensus": { "type": "cometbft", - "version": "v0.37.2" + "version": "v0.37.4" }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.0", "binaries": { - "linux/amd64": "https://github.com/ShidoGlobal/mainnetShidoNodeSync/releases/download/v1.0.0/ubuntu_22.04.tar.gz" + "linux/amd64": "https://github.com/ShidoGlobal/mainnetShidoNodeSync/releases/download/v2.0.0/ubuntu_22.04.tar.gz" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/ShidoGlobal/mainnetShidoNodeSync/main/genesis.json" @@ -67,12 +67,55 @@ "type": "cometbft", "version": "v0.37.2" }, - "ibc_go_version": "v7.3.0", "binaries": { "linux/amd64": "https://github.com/ShidoGlobal/mainnetShidoNodeSync/releases/download/v1.0.0/ubuntu_22.04.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.4" + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } + }, + { + "name": "v2.0.0", + "tag": "v2.0.0", + "recommended_version": "v2.0.0", + "compatible_versions": [ + "v2.0.0" + ], + "cosmos_sdk_version": "v0.47.4", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "binaries": { + "linux/amd64": "https://github.com/ShidoGlobal/mainnetShidoNodeSync/releases/download/v2.0.0/ubuntu_22.04.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.4" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.4" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", @@ -82,45 +125,45 @@ "peers": { "seeds": [ { - "id": "181fcc5672fee87751eb369491744e85ba0651f5", - "address": "18.153.233.126:26656", + "id": "b0bade3e416f88a6c21c14d5de15aa9928a352e6", + "address": "18.192.75.125:26656", "provider": "SHIDO" }, { - "id": "8d46e292347951d651486611abac77825a0c83f8", - "address": "18.199.25.117:26656", + "id": "4a7e112b84119435c16f71bde955b9cbcc6180ac", + "address": "18.199.28.209:26656", "provider": "SHIDO" }, { - "id": "cdf19a7234ee8ec12519f6ad066408f09e1b73e0", - "address": "15.157.50.94:26656", + "id": "5267ea7a65f7fe8e5f61658ca21e6d77adcb9ae3", + "address": "3.79.211.195:26656", "provider": "SHIDO" }, { - "id": "8793ad6de6efdb6919d31e74e61a1be57a6d6d32", - "address": "3.97.121.236:26656", + "id": "cb8f8c6f813612a5b9844c0699490a583bc12d84", + "address": "35.182.147.124:26656", "provider": "SHIDO" } ], "persistent_peers": [ { - "id": "181fcc5672fee87751eb369491744e85ba0651f5", - "address": "18.153.233.126:26656", + "id": "b0bade3e416f88a6c21c14d5de15aa9928a352e6", + "address": "18.192.75.125:26656", "provider": "SHIDO" }, { - "id": "8d46e292347951d651486611abac77825a0c83f8", - "address": "18.199.25.117:26656", + "id": "4a7e112b84119435c16f71bde955b9cbcc6180ac", + "address": "18.199.28.209:26656", "provider": "SHIDO" }, { - "id": "cdf19a7234ee8ec12519f6ad066408f09e1b73e0", - "address": "15.157.50.94:26656", + "id": "5267ea7a65f7fe8e5f61658ca21e6d77adcb9ae3", + "address": "3.79.211.195:26656", "provider": "SHIDO" }, { - "id": "8793ad6de6efdb6919d31e74e61a1be57a6d6d32", - "address": "3.97.121.236:26656", + "id": "cb8f8c6f813612a5b9844c0699490a583bc12d84", + "address": "35.182.147.124:26656", "provider": "SHIDO" }, { @@ -141,12 +184,20 @@ "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" }, { - "address": "https://s2.shido-rpc.applejuice.256x25.tech:443", - "provider": "Apple juice πŸ§ƒ" + "address": "https://rest.shido.256x25.tech:443", + "provider": "256x25" }, { "address": "https://rpc.shido.indonode.net:443", "provider": "Indonode" + }, + { + "address": "https://rpc-maverick.mavnode.io", + "provider": "MavNode" + }, + { + "address": "https://rpc.kenseishido.com", + "provider": "KENSEI" } ], "rest": [ @@ -159,12 +210,20 @@ "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" }, { - "address": "https://s2.shido-api.applejuice.256x25.tech:443", - "provider": "Apple juice πŸ§ƒ" + "address": "https://rpc.shido.256x25.tech:443", + "provider": "256x25" }, { "address": "https://api.shido.indonode.net", "provider": "Indonode" + }, + { + "address": "https://api-maverick.mavnode.io", + "provider": "MavNode" + }, + { + "address": "https://api.kenseishido.com", + "provider": "KENSEI" } ], "grpc": [ @@ -177,8 +236,12 @@ "provider": "shido.io" }, { - "address": "https://s2.shido-grpc.applejuice.256x25.tech", - "provider": "Apple juice πŸ§ƒ" + "address": "https://grpc-maverick.mavnode.io", + "provider": "MavNode" + }, + { + "address": "https://grpc.kenseishido.com", + "provider": "KENSEI" } ], "evm-http-jsonrpc": [ @@ -195,8 +258,12 @@ "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" }, { - "address": "https://s2.shido-evm.applejuice.256x25.tech:443", - "provider": "Apple juice πŸ§ƒ" + "address": "https://evm-maverick.mavnode.io", + "provider": "MavNode" + }, + { + "address": "https://evm.kenseishido.com", + "provider": "KENSEI" } ] }, @@ -214,7 +281,7 @@ "account_page": "https://explorer.whenmoonwhenlambo.money/shido/account/${accountAddress}" }, { - "kind": "Apple juice πŸ§ƒ", + "kind": "256x25", "url": "https://explorer.256x25.tech/shido", "tx_page": "https://explorer.256x25.tech/shido/tx/${txHash}", "account_page": "https://explorer.256x25.tech//shido/account/${accountAddress}" diff --git a/sifchain/assetlist.json b/sifchain/assetlist.json index 54239e05db..f822e2560c 100644 --- a/sifchain/assetlist.json +++ b/sifchain/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#be9926" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/sifchain/chain.json b/sifchain/chain.json index 1eb795b483..5d9b0370c1 100644 --- a/sifchain/chain.json +++ b/sifchain/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://sifchain.finance/", "pretty_name": "Sifchain", + "chain_type": "cosmos", "chain_id": "sifchain-1", "bech32_prefix": "sif", "daemon_name": "sifnoded", @@ -221,4 +222,4 @@ } } ] -} +} \ No newline at end of file diff --git a/six/assetlist.json b/six/assetlist.json index caea6665a9..a5e5c78a01 100644 --- a/six/assetlist.json +++ b/six/assetlist.json @@ -28,7 +28,8 @@ "primary_color_hex": "#3b75f3" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/six/chain.json b/six/chain.json index 49ea951ca5..ad38b25f3f 100644 --- a/six/chain.json +++ b/six/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "SIX Protocol", + "chain_type": "cosmos", "chain_id": "sixnet", "bech32_prefix": "6x", "daemon_name": "sixd", @@ -55,9 +56,17 @@ "consensus": { "type": "tendermint", "version": "0.34" + }, + "sdk": { + "type": "cosmos", + "version": "0.45" } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45" + } }, "peers": { "seeds": [ diff --git a/sommelier/assetlist.json b/sommelier/assetlist.json index 7523d579cf..8e81c746f4 100644 --- a/sommelier/assetlist.json +++ b/sommelier/assetlist.json @@ -45,7 +45,8 @@ "socials": { "website": "https://www.sommelier.finance/", "twitter": "https://twitter.com/sommfinance" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/sommelier/chain.json b/sommelier/chain.json index a39ca56198..de66127fcd 100644 --- a/sommelier/chain.json +++ b/sommelier/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://sommelier.finance/", "pretty_name": "Sommelier", + "chain_type": "cosmos", "chain_id": "sommelier-3", "bech32_prefix": "somm", "daemon_name": "sommelier", @@ -49,9 +50,8 @@ "type": "cometbft", "version": "v0.34.28" }, - "ibc_go_version": "v6.2.0", "genesis": { - "genesis_url": "https://raw.githubusercontent.com/PeggyJV/sommelier/main/contrib/mainnet/sommelier-2/genesis.json" + "genesis_url": "https://raw.githubusercontent.com/PeggyJV/sommelier/main/contrib/mainnet/sommelier-3/genesis.json" }, "versions": [ { @@ -104,10 +104,25 @@ "type": "cometbft", "version": "v0.34.28" }, - "ibc_go_version": "v6.2.0", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.46.14" + }, + "ibc": { + "type": "go", + "version": "v6.2.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.46.14" + }, + "ibc": { + "type": "go", + "version": "v6.2.0" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", @@ -179,7 +194,7 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "https://sommelier-rpc.lavenderfive.com/", + "address": "https://rpc.lavenderfive.com:443/sommelier", "provider": "Lavender.Five Nodes 🐝" }, { @@ -209,7 +224,7 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "https://sommelier-api.lavenderfive.com/", + "address": "https://rest.lavenderfive.com:443/sommelier", "provider": "Lavender.Five Nodes 🐝" }, { @@ -231,7 +246,7 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "sommelier-grpc.lavenderfive.com:443", + "address": "sommelier.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/source/assetlist.json b/source/assetlist.json index 9467cdac1c..8f3dbcc2f0 100644 --- a/source/assetlist.json +++ b/source/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://www.sourceprotocol.io/", "twitter": "https://twitter.com/sourceprotocol_" - } + }, + "type_asset": "sdk.coin" }, { "description": "Source Protocol's SRCX Token Bridged from BNB Through Planq", diff --git a/source/chain.json b/source/chain.json index f73526b5f8..4b124dcd8b 100644 --- a/source/chain.json +++ b/source/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.sourceprotocol.io/", "pretty_name": "Source", + "chain_type": "cosmos", "chain_id": "source-1", "bech32_prefix": "source", "daemon_name": "sourced", @@ -33,9 +34,9 @@ }, "codebase": { "git_repo": "https://github.com/Source-Protocol-Cosmos/source", - "recommended_version": "v3.0.1", + "recommended_version": "v3.0.3", "compatible_versions": [ - "v3.0.1" + "v3.0.3" ], "cosmos_sdk_version": "0.45", "consensus": { @@ -50,9 +51,9 @@ "versions": [ { "name": "v3.0.0", - "recommended_version": "v3.0.1", + "recommended_version": "v3.0.3", "compatible_versions": [ - "v3.0.1" + "v3.0.3" ], "cosmos_sdk_version": "0.45", "consensus": { @@ -60,9 +61,25 @@ "version": "0.34" }, "cosmwasm_version": "0.30", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } }, "peers": { "seeds": [ diff --git a/stafihub/assetlist.json b/stafihub/assetlist.json index ae13d3391f..c144fb88d1 100644 --- a/stafihub/assetlist.json +++ b/stafihub/assetlist.json @@ -26,7 +26,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "A liquid staking representation of staked ATOMs", @@ -61,7 +62,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "A liquid staking representation of staked IRISs", @@ -96,7 +98,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/riris.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "A liquid staking representation of staked HUAHUAs", @@ -131,7 +134,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rhuahua.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "A liquid staking representation of staked SWTHs", @@ -166,7 +170,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rswth.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/stafihub/chain.json b/stafihub/chain.json index 3afe792a87..bc7c67600b 100644 --- a/stafihub/chain.json +++ b/stafihub/chain.json @@ -1,6 +1,7 @@ { "$schema": "../chain.schema.json", "chain_name": "stafihub", + "chain_type": "cosmos", "chain_id": "stafihub-1", "website": "https://stafihub.io/", "pretty_name": "StaFi Hub", @@ -45,10 +46,6 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "5.2.1", - "ics_enabled": [ - "ics20-1" - ], "genesis": { "genesis_url": "https://raw.githubusercontent.com/stafihub/network/main/mainnets/stafihub-1(dragonberry)/genesis.json" }, @@ -87,13 +84,31 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "5.2.1", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v060" + "next_version_name": "v060", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "5.2.1", + "ics_enabled": [ + "ics20-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "5.2.1", + "ics_enabled": [ + "ics20-1" + ] + } }, "peers": { "seeds": [ diff --git a/stargaze/assetlist.json b/stargaze/assetlist.json index 7525d250c6..df4893aa49 100644 --- a/stargaze/assetlist.json +++ b/stargaze/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://www.stargaze.zone/", "twitter": "https://twitter.com/StargazeZone" - } + }, + "type_asset": "sdk.coin" }, { "description": "The native token of ohhNFT.", @@ -66,7 +67,8 @@ "primary_color_hex": "#c9720c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The native meme token of stargaze.", @@ -96,7 +98,8 @@ "primary_color_hex": "#b3a584" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "ohhNFT LP token.", @@ -126,7 +129,8 @@ "primary_color_hex": "#70372a" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Social token for the ohhVAULT.", @@ -156,7 +160,8 @@ "primary_color_hex": "#dcc0c2" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The native coin of Sneaky Productions.", @@ -186,7 +191,8 @@ "primary_color_hex": "#fbcaca" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LAB - Everything is an Experiment", @@ -369,6 +375,263 @@ } } ] + }, + { + "description": "PLEB", + "denom_units": [ + { + "denom": "factory/stars1k7qsxdxh8calmt4txk75e6hdntefslegwddqnlwjjqgjkmcfqy0qa97sn8/pleb", + "exponent": 0 + }, + { + "denom": "PLEB", + "exponent": 6 + } + ], + "base": "factory/stars1k7qsxdxh8calmt4txk75e6hdntefslegwddqnlwjjqgjkmcfqy0qa97sn8/pleb", + "name": "PLEB", + "display": "PLEB", + "symbol": "PLEB", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/pleb.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/pleb.png" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "KINGSHIT", + "denom_units": [ + { + "denom": "factory/stars133a6mnkp9d3pkt48y699hy0tvq5xngpz7cwak0qr4suq0cj9zpfslvt0em/kingshit", + "exponent": 0 + }, + { + "denom": "KINGSHIT", + "exponent": 6 + } + ], + "base": "factory/stars133a6mnkp9d3pkt48y699hy0tvq5xngpz7cwak0qr4suq0cj9zpfslvt0em/kingshit", + "name": "KINGSHIT", + "display": "KINGSHIT", + "symbol": "KINGSHIT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/kingshit.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/kingshit.png" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "BOTZ", + "denom_units": [ + { + "denom": "factory/stars132jrwxjps93usq3ejy7cq6qqc7j3gtx3mu8jhaj5nnk3p0ste2ssqsndvj/botz", + "exponent": 0 + }, + { + "denom": "BOTZ", + "exponent": 6 + } + ], + "base": "factory/stars132jrwxjps93usq3ejy7cq6qqc7j3gtx3mu8jhaj5nnk3p0ste2ssqsndvj/botz", + "name": "BOTZ", + "display": "BOTZ", + "symbol": "BOTZ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/botz.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/botz.png" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "COCKS", + "denom_units": [ + { + "denom": "factory/stars14mfk0sd6rlajkvgpgrvfk9lfhjwmkrzvednekvcn32jzy3drjy5sfem9p7/cocks", + "exponent": 0 + }, + { + "denom": "COCKS", + "exponent": 6 + } + ], + "base": "factory/stars14mfk0sd6rlajkvgpgrvfk9lfhjwmkrzvednekvcn32jzy3drjy5sfem9p7/cocks", + "name": "COCKS", + "display": "COCKS", + "symbol": "COCKS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/cocks.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/cocks.png" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "The Representative factory token for Trump Kemistry", + "denom_units": [ + { + "denom": "ibc/4982C47384F003FCCB02490F92CE2F23DBEC9A7A0C1F440BDB12D24357E6703D", + "exponent": 0 + }, + { + "denom": "XTRUMP", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/4982C47384F003FCCB02490F92CE2F23DBEC9A7A0C1F440BDB12D24357E6703D", + "name": "XTRUMP", + "display": "XTRUMP", + "symbol": "XTRUMP", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP", + "channel_id": "channel-75" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP" + } + } + ], + "images": [ + { + "image_sync": { + "chain_name": "osmosis", + "base_denom": "factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/XTRUMP.png", + "theme": { + "primary_color_hex": "#b02b27" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/XTRUMP.png" + } + }, + { + "description": "WOLFSHIT", + "denom_units": [ + { + "denom": "factory/stars167y92c2fe690l0lrqyk9tahpqvu97au0cmpayh3j9455r2f6f06s78emw4/wolfshit", + "exponent": 0 + }, + { + "denom": "WOLFSHIT", + "exponent": 6 + } + ], + "base": "factory/stars167y92c2fe690l0lrqyk9tahpqvu97au0cmpayh3j9455r2f6f06s78emw4/wolfshit", + "name": "WOLFSHIT", + "display": "WOLFSHIT", + "symbol": "WOLFSHIT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/wolfshit.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/wolfshit.png" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Native token of the Underworld.", + "denom_units": [ + { + "denom": "factory/stars1t6fyr84hn6lyjdvk3e3c697cptfn5cwat2jxqyzuvuesaypznslshy6x9v/vlt", + "exponent": 0 + }, + { + "denom": "VLT", + "exponent": 6 + } + ], + "base": "factory/stars1t6fyr84hn6lyjdvk3e3c697cptfn5cwat2jxqyzuvuesaypznslshy6x9v/vlt", + "name": "VLT", + "display": "VLT", + "symbol": "VAULT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/vault.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/vault.png" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Bonded GopLend STARS", + "extended_description": "bglSTARS (Bonded GopLend STARS) is issued in exchange for STARS for the deposit period. These tokens are liquid and generate income in the amount of the set APR on the platform", + "denom_units": [ + { + "denom": "factory/stars1ur79p98rmpn456esgzjernaxy7v25mlwqsv8uhymzxahfw77427syk2h9j/bglSTARS", + "exponent": 0 + }, + { + "denom": "bglSTARS", + "exponent": 6 + } + ], + "base": "factory/stars1ur79p98rmpn456esgzjernaxy7v25mlwqsv8uhymzxahfw77427syk2h9j/bglSTARS", + "name": "bglSTARS", + "display": "bglSTARS", + "symbol": "bglSTARS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/bglSTARS.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/bglSTARS.png" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Bonded GopLend USDC", + "extended_description": "bglUSDC (Bonded GopLend USDC) is issued in exchange for USDC for the deposit period. These tokens are liquid and generate income in the amount of the set APR on the platform", + "denom_units": [ + { + "denom": "factory/stars1ur79p98rmpn456esgzjernaxy7v25mlwqsv8uhymzxahfw77427syk2h9j/bglUSDC", + "exponent": 0 + }, + { + "denom": "bglUSDC", + "exponent": 6 + } + ], + "base": "factory/stars1ur79p98rmpn456esgzjernaxy7v25mlwqsv8uhymzxahfw77427syk2h9j/bglUSDC", + "name": "bglUSDC", + "display": "bglUSDC", + "symbol": "bglUSDC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/bglUSDC.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/bglUSDC.png" + } + ], + "type_asset": "sdk.coin" } ] -} +} \ No newline at end of file diff --git a/stargaze/chain.json b/stargaze/chain.json index 2d39bb4929..1537d64558 100644 --- a/stargaze/chain.json +++ b/stargaze/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://stargaze.zone/", "pretty_name": "Stargaze", + "chain_type": "cosmos", "chain_id": "stargaze-1", "bech32_prefix": "stars", "daemon_name": "starsd", @@ -35,7 +36,6 @@ "v14.0.0" ], "cosmos_sdk_version": "v0.47.12", - "ibc_go_version": "v7.6.0", "consensus": { "type": "cometbft", "version": "v0.37.6" @@ -89,14 +89,25 @@ "v13.0.0" ], "cosmos_sdk_version": "v0.47.10", - "ibc_go_version": "v7.3.2", "consensus": { "type": "cometbft", "version": "v0.37.4" }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "next_version_name": "v14" + "next_version_name": "v14", + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.2" + } }, { "name": "v14", @@ -107,16 +118,39 @@ "v14.0.0" ], "cosmos_sdk_version": "v0.47.12", - "ibc_go_version": "v7.6.0", "consensus": { "type": "cometbft", "version": "v0.37.6" }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.12" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.6.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.12" + }, + "ibc": { + "type": "go", + "version": "v7.6.0" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", @@ -158,11 +192,6 @@ "address": "seed.publicnode.com:26656", "provider": "Allnodes ⚑️ Nodes & Staking" }, - { - "id": "c28827cb96c14c905b127b92065a3fb4cd77d7f6", - "address": "seeds.whispernode.com:13756", - "provider": "WhisperNode 🀐" - }, { "id": "96e0040d44a2f0b59d2a07e128369363d8535b67", "address": "seed-stargaze.ibs.team:16669", @@ -239,10 +268,6 @@ "address": "https://rpc.stargaze.silentvalidator.com/", "provider": "silent" }, - { - "address": "https://rpc-stargaze.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://stargaze-mainnet-rpc.autostake.com:443", "provider": "AutoStake πŸ›‘οΈ Slash Protected" @@ -325,10 +350,6 @@ "address": "https://stargaze-mainnet-lcd.autostake.com:443", "provider": "AutoStake πŸ›‘οΈ Slash Protected" }, - { - "address": "https://lcd-stargaze.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://stargaze-api.ramuchi.tech", "provider": "ramuchi.tech" @@ -451,4 +472,4 @@ } } ] -} +} \ No newline at end of file diff --git a/stargaze/images/bglSTARS.png b/stargaze/images/bglSTARS.png new file mode 100644 index 0000000000..4cff0f803f Binary files /dev/null and b/stargaze/images/bglSTARS.png differ diff --git a/stargaze/images/bglUSDC.png b/stargaze/images/bglUSDC.png new file mode 100644 index 0000000000..9e77a73bca Binary files /dev/null and b/stargaze/images/bglUSDC.png differ diff --git a/stargaze/images/botz.png b/stargaze/images/botz.png new file mode 100644 index 0000000000..3bcf5bc223 Binary files /dev/null and b/stargaze/images/botz.png differ diff --git a/stargaze/images/cocks.png b/stargaze/images/cocks.png new file mode 100644 index 0000000000..b6c491325b Binary files /dev/null and b/stargaze/images/cocks.png differ diff --git a/stargaze/images/kingshit.png b/stargaze/images/kingshit.png new file mode 100644 index 0000000000..b026bebbbb Binary files /dev/null and b/stargaze/images/kingshit.png differ diff --git a/stargaze/images/pleb.png b/stargaze/images/pleb.png new file mode 100644 index 0000000000..3cbbf6ae9d Binary files /dev/null and b/stargaze/images/pleb.png differ diff --git a/stargaze/images/vault.png b/stargaze/images/vault.png new file mode 100644 index 0000000000..ac48b5b9b3 Binary files /dev/null and b/stargaze/images/vault.png differ diff --git a/stargaze/images/wolfshit.png b/stargaze/images/wolfshit.png new file mode 100644 index 0000000000..c93ffc193c Binary files /dev/null and b/stargaze/images/wolfshit.png differ diff --git a/starname/assetlist.json b/starname/assetlist.json index 859cf1b32b..d141aa1349 100644 --- a/starname/assetlist.json +++ b/starname/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://app.starname.me/", "twitter": "https://twitter.com/starname_me" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/starname/chain.json b/starname/chain.json index 2685584f43..efee5a55ca 100644 --- a/starname/chain.json +++ b/starname/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.starname.me/", "pretty_name": "Starname", + "chain_type": "cosmos", "chain_id": "iov-mainnet-ibc", "bech32_prefix": "star", "slip44": 234, diff --git a/stratos/assetlist.json b/stratos/assetlist.json index e6f738605c..b164aecd00 100644 --- a/stratos/assetlist.json +++ b/stratos/assetlist.json @@ -35,7 +35,8 @@ "primary_color_hex": "#04847c" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/stratos/chain.json b/stratos/chain.json index 44765f41ef..196bc3ef39 100644 --- a/stratos/chain.json +++ b/stratos/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.thestratos.org", "pretty_name": "Stratos", + "chain_type": "cosmos", "chain_id": "stratos-1", "bech32_prefix": "st", "daemon_name": "stchaind", @@ -17,7 +18,10 @@ "fees": { "fee_tokens": [ { - "denom": "wei" + "denom": "wei", + "low_gas_price": 1000000000, + "average_gas_price": 1200000000, + "high_gas_price": 1600000000 } ] }, @@ -56,11 +60,6 @@ "address": "34.84.212.13:26656", "provider": "thestratos.org" }, - { - "id": "c28827cb96c14c905b127b92065a3fb4cd77d7f6", - "address": "seeds.whispernode.com:21856", - "provider": "WhisperNode 🀐" - }, { "id": "8542cd7e6bf9d260fef543bc49e59be5a3fa9074", "address": "seed.publicnode.com:26656", @@ -85,10 +84,6 @@ "address": "http://stratos.rpc.nodersteam.com:26657/", "provider": "[NODERS]TEAM" }, - { - "address": "https://rpc-stratos.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://stratos-rpc.noders.services:443", "provider": "[NODERS]TEAM" @@ -99,10 +94,6 @@ "address": "https://rest.thestratos.org", "provider": "thestratos.org" }, - { - "address": "https://lcd-stratos.whispernode.com:443", - "provider": "WhisperNode 🀐" - }, { "address": "https://stratos-api.noders.services:443", "provider": "[NODERS]TEAM" @@ -165,12 +156,6 @@ "url": "https://explorer.tcnetwork.io/stratos", "tx_page": "https://explorer.tcnetwork.io/stratos/transaction/${txHash}", "account_page": "https://explorer.tcnetwork.io/stratos/account/${accountAddress}" - }, - { - "kind": "WhisperNode 🀐", - "url": "https://mainnet.whispernode.com/stratos", - "tx_page": "https://mainnet.whispernode.com/stratos/tx/${txHash}", - "account_page": "https://mainnet.whispernode.com/stratos/account/${accountAddress}" } ], "images": [ diff --git a/stride/assetlist.json b/stride/assetlist.json index 1d75b3539e..e6087f73d0 100644 --- a/stride/assetlist.json +++ b/stride/assetlist.json @@ -36,7 +36,8 @@ "socials": { "website": "https://stride.zone/", "twitter": "https://twitter.com/stride_zone" - } + }, + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -76,7 +77,8 @@ "primary_color_hex": "#e40474" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -116,7 +118,8 @@ "primary_color_hex": "#e40474" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -156,7 +159,8 @@ "primary_color_hex": "#e40474" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -196,7 +200,8 @@ "primary_color_hex": "#e40474" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -236,7 +241,8 @@ "primary_color_hex": "#e40474" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -275,7 +281,8 @@ "primary_color_hex": "#e40474" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -315,7 +322,8 @@ "primary_color_hex": "#e40474" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Stride's liquid staked DYDX", @@ -355,7 +363,8 @@ "primary_color_hex": "#e40474" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Stride's liquid staked TIA", @@ -395,7 +404,8 @@ "primary_color_hex": "#e40474" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Stride's liquid staked DYM", @@ -435,7 +445,8 @@ "primary_color_hex": "#e40474" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -475,7 +486,8 @@ "primary_color_hex": "#fbd9e9" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -514,7 +526,8 @@ "primary_color_hex": "#e40474" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -554,7 +567,8 @@ "primary_color_hex": "#e40474" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Stride's liquid staked SAGA", @@ -594,7 +608,8 @@ "primary_color_hex": "#e40474" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The native token of Celestia", @@ -677,6 +692,7 @@ "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" }, + "coingecko_id": "stride-staked-islm", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.png", @@ -685,7 +701,48 @@ "primary_color_hex": "#e40474" } } - ] + ], + "type_asset": "sdk.coin" + }, + { + "denom_units": [ + { + "denom": "stuband", + "exponent": 0 + }, + { + "denom": "stBAND", + "exponent": 6 + } + ], + "base": "stuband", + "name": "Stride Staked BAND", + "display": "stBAND", + "symbol": "stBAND", + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "bandchain", + "base_denom": "uband" + }, + "provider": "Stride" + } + ], + "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": [ + { + "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": { + "primary_color_hex": "#e40474" + } + } + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/stride/chain.json b/stride/chain.json index 5d365aa15a..b708047ab5 100644 --- a/stride/chain.json +++ b/stride/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://stride.zone/", "pretty_name": "Stride", + "chain_type": "cosmos", "chain_id": "stride-1", "bech32_prefix": "stride", "daemon_name": "strided", @@ -131,18 +132,17 @@ }, "codebase": { "git_repo": "https://github.com/Stride-Labs/stride", - "recommended_version": "v21.0.0", + "recommended_version": "v24.0.0", "compatible_versions": [ - "v21.0.0" + "v24.0.0" ], - "cosmos_sdk_version": "Stride-Labs/cosmos-sdk v0.47.10-stride-distribution-fix-0", + "cosmos_sdk_version": "v0.47.10-stride-distribution-fix-0-mempool-verbose-error-1", "consensus": { "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "7.3.1", "genesis": { - "genesis_url": "https://raw.githubusercontent.com/Stride-Labs/testnet/main/mainnet/genesis.json", + "genesis_url": "https://raw.githubusercontent.com/Stride-Labs/mainnet/main/mainnet/genesis.json", "ics_ccv_url": "https://raw.githubusercontent.com/Stride-Labs/mainnet/main/ics-instructions/ccv.json" }, "versions": [ @@ -157,8 +157,15 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "5.1.0", - "next_version_name": "v9" + "next_version_name": "v9", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "5.1.0" + } }, { "name": "v9", @@ -179,9 +186,16 @@ "compatible_versions": [ "v10.0.0" ], - "ibc_go_version": "7.1.0", "cosmos_sdk_version": "0.47.3", - "next_version_name": "v11" + "next_version_name": "v11", + "sdk": { + "type": "cosmos", + "version": "0.47.3" + }, + "ibc": { + "type": "go", + "version": "7.1.0" + } }, { "name": "v11", @@ -192,8 +206,11 @@ "compatible_versions": [ "v11.0.0" ], - "ibc_go_version": "7.2.0", - "next_version_name": "v12" + "next_version_name": "v12", + "ibc": { + "type": "go", + "version": "7.2.0" + } }, { "name": "v12", @@ -208,8 +225,11 @@ "type": "cometbft", "version": "0.37.2" }, - "ibc_go_version": "7.2.0", - "next_version_name": "v13" + "next_version_name": "v13", + "ibc": { + "type": "go", + "version": "7.2.0" + } }, { "name": "v13", @@ -224,8 +244,11 @@ "type": "cometbft", "version": "0.37.2" }, - "ibc_go_version": "7.2.0", - "next_version_name": "v14" + "next_version_name": "v14", + "ibc": { + "type": "go", + "version": "7.2.0" + } }, { "name": "v14", @@ -240,8 +263,11 @@ "type": "cometbft", "version": "0.37.2" }, - "ibc_go_version": "7.2.0", - "next_version_name": "v15" + "next_version_name": "v15", + "ibc": { + "type": "go", + "version": "7.2.0" + } }, { "name": "v15", @@ -256,8 +282,11 @@ "type": "cometbft", "version": "0.37.2" }, - "ibc_go_version": "7.2.0", - "next_version_name": "v16" + "next_version_name": "v16", + "ibc": { + "type": "go", + "version": "7.2.0" + } }, { "name": "v16", @@ -272,8 +301,11 @@ "type": "cometbft", "version": "0.37.2" }, - "ibc_go_version": "7.2.0", - "next_version_name": "v17" + "next_version_name": "v17", + "ibc": { + "type": "go", + "version": "7.2.0" + } }, { "name": "v17", @@ -289,8 +321,16 @@ "type": "cometbft", "version": "v0.37.2" }, - "ibc_go_version": "7.3.1", - "next_version_name": "v18" + "next_version_name": "v18", + "sdk": { + "type": "cosmos", + "version": "v0.47.5", + "tag": "v0.47.5-stride-distribution-fix-0" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } }, { "name": "v18", @@ -306,8 +346,17 @@ "type": "cometbft", "version": "v0.37.2" }, - "ibc_go_version": "7.3.1", - "next_version_name": "v19" + "next_version_name": "v19", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/Stride-Labs/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-stride-distribution-fix-0" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } }, { "name": "v19", @@ -323,8 +372,17 @@ "type": "cometbft", "version": "v0.37.2" }, - "ibc_go_version": "7.3.1", - "next_version_name": "v20" + "next_version_name": "v20", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/Stride-Labs/cosmos-sdk", + "version": "v0.47.5", + "tag": "v0.47.5-stride-distribution-fix-0" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } }, { "name": "v20", @@ -340,8 +398,17 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "7.3.1", - "next_version_name": "v21" + "next_version_name": "v21", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/Stride-Labs/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-stride-distribution-fix-0" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } }, { "name": "v21", @@ -357,10 +424,107 @@ "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "7.3.1", - "next_version_name": "" + "next_version_name": "v22", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/Stride-Labs/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-stride-distribution-fix-0" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } + }, + { + "name": "v22", + "tag": "v22.0.0", + "recommended_version": "v22.0.0", + "compatible_versions": [ + "v22.0.0" + ], + "proposal": 237, + "height": 8681868, + "cosmos_sdk_version": "Stride-Labs/cosmos-sdk v0.47.10-stride-distribution-fix-0", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "next_version_name": "v23", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/Stride-Labs/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-stride-distribution-fix-0" + }, + "ibc": { + "type": "go", + "version": "7.4.0" + } + }, + { + "name": "v23", + "tag": "v23.0.0", + "recommended_version": "v23.0.0", + "compatible_versions": [ + "v23.0.0" + ], + "proposal": 247, + "height": 10077001, + "cosmos_sdk_version": "Stride-Labs/cosmos-sdk v0.47.10-stride-distribution-fix-0", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/Stride-Labs/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-stride-distribution-fix-0" + }, + "ibc": { + "type": "go", + "version": "7.4.0" + } + }, + { + "name": "v24", + "tag": "v24.0.0", + "recommended_version": "v24.0.0", + "compatible_versions": [ + "v24.0.0" + ], + "proposal": 249, + "height": 10755701, + "cosmos_sdk_version": "v0.47.10-stride-distribution-fix-0-mempool-verbose-error-1", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/Stride-Labs/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-stride-distribution-fix-0-mempool-verbose-error-1" + }, + "ibc": { + "type": "go", + "version": "7.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/Stride-Labs/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-stride-distribution-fix-0-mempool-verbose-error-1" + }, + "ibc": { + "type": "go", + "version": "7.4.0" + } }, "description": "Stride is a blockchain that provides liquidity for staked tokens. Using Stride, you can earn both taking and DeFi yields across the Cosmos IBC ecosystem.", "peers": { @@ -470,7 +634,7 @@ "provider": "Oni Validator ⛩️" }, { - "address": "https://stride-rpc.lavenderfive.com/", + "address": "https://rpc.lavenderfive.com:443/stride", "provider": "Lavender.Five Nodes 🐝" }, { @@ -540,7 +704,7 @@ "provider": "Cosmos Spaces" }, { - "address": "https://stride-api.lavenderfive.com/", + "address": "https://rest.lavenderfive.com:443/stride", "provider": "Lavender.Five Nodes 🐝" }, { @@ -606,7 +770,7 @@ "provider": "Polkachu" }, { - "address": "stride-grpc.lavenderfive.com:443", + "address": "stride.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { @@ -725,4 +889,4 @@ } } ] -} +} \ No newline at end of file diff --git a/stride/images/stband.png b/stride/images/stband.png new file mode 100644 index 0000000000..ecc4a6c051 Binary files /dev/null and b/stride/images/stband.png differ diff --git a/stride/images/stband.svg b/stride/images/stband.svg new file mode 100644 index 0000000000..1e9a64da96 --- /dev/null +++ b/stride/images/stband.svg @@ -0,0 +1,4 @@ + + + + diff --git a/sunrise/assetlist.json b/sunrise/assetlist.json index 94d3562313..83f2a621cf 100644 --- a/sunrise/assetlist.json +++ b/sunrise/assetlist.json @@ -38,7 +38,8 @@ "socials": { "website": "https://sunriselayer.io/", "twitter": "https://twitter.com/SunriseLayer" - } + }, + "type_asset": "sdk.coin" }, { "description": "The native token of the Sunrise network for fees.", @@ -76,7 +77,8 @@ "socials": { "website": "https://sunriselayer.io/", "twitter": "https://twitter.com/SunriseLayer" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/sunrise/chain.json b/sunrise/chain.json index a110ce67b0..b88afa95fe 100644 --- a/sunrise/chain.json +++ b/sunrise/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://sunriselayer.io/", "pretty_name": "Sunrise", + "chain_type": "cosmos", "chain_id": "sunrise-1", "bech32_prefix": "sunrise", "daemon_name": "sunrised", @@ -46,9 +47,10 @@ "cosmos_sdk_version": "0.50.2", "consensus": { "type": "cometbft", - "version": "sunriselayer/sunrise-core v0.0.5-cmt-v0.38.2" + "version": "v0.0.5", + "repo": "https://github.com/sunriselayer/sunrise-core", + "tag": "v0.0.5-cmt-v0.38.2" }, - "ibc_go_version": "8.0.0", "versions": [ { "name": "v0.0.7", @@ -62,12 +64,21 @@ "cosmos_sdk_version": "0.50.2", "consensus": { "type": "cometbft", - "version": "sunriselayer/sunrise-core v0.0.5-cmt-v0.38.2" + "version": "v0.0.5", + "repo": "https://github.com/sunriselayer/sunrise-core", + "tag": "v0.0.5-cmt-v0.38.2" }, - "ibc_go_version": "8.0.0", - "ics_enabled": [ - "ics20-1" - ] + "sdk": { + "type": "cosmos", + "version": "0.50.2" + }, + "ibc": { + "type": "go", + "version": "8.0.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v0.0.8", @@ -81,12 +92,21 @@ "cosmos_sdk_version": "0.50.2", "consensus": { "type": "cometbft", - "version": "sunriselayer/sunrise-core v0.0.5-cmt-v0.38.2" + "version": "v0.0.5", + "repo": "https://github.com/sunriselayer/sunrise-core", + "tag": "v0.0.5-cmt-v0.38.2" + }, + "sdk": { + "type": "cosmos", + "version": "0.50.2" }, - "ibc_go_version": "8.0.0", - "ics_enabled": [ - "ics20-1" - ] + "ibc": { + "type": "go", + "version": "8.0.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v0.1.1", @@ -100,14 +120,31 @@ "cosmos_sdk_version": "0.50.2", "consensus": { "type": "cometbft", - "version": "sunriselayer/sunrise-core v0.0.5-cmt-v0.38.2" + "version": "v0.0.5", + "repo": "https://github.com/sunriselayer/sunrise-core", + "tag": "v0.0.5-cmt-v0.38.2" }, - "ibc_go_version": "8.0.0", - "ics_enabled": [ - "ics20-1" - ] + "sdk": { + "type": "cosmos", + "version": "0.50.2" + }, + "ibc": { + "type": "go", + "version": "8.0.0", + "ics_enabled": [ + "ics20-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.50.2" + }, + "ibc": { + "type": "go", + "version": "8.0.0" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png", diff --git a/synternet/assetlist.json b/synternet/assetlist.json new file mode 100644 index 0000000000..4a3366f611 --- /dev/null +++ b/synternet/assetlist.json @@ -0,0 +1,42 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "synternet", + "assets": [ + { + "description": "Synternet is a blockchain that powers modular, interoperable data infrastructure across all major chains.", + "extended_description": "The Data Layer is a decentralized, permissionless protocol built on Synternet that serves as the customizable execution layer between all blockchains, enabling developers instant access to any cross-chain data. It uses a pub-sub (publish-subscribe) framework where data providers can stream live data to applications and smart contracts", + "denom_units": [ + { + "denom": "usynt", + "exponent": 0 + }, + { + "denom": "SYNT", + "exponent": 6 + } + ], + "base": "usynt", + "name": "Synternet", + "display": "SYNT", + "symbol": "SYNT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.svg", + "theme": { + "primary_color_hex": "#272d45" + } + } + ], + "socials": { + "website": "https://www.synternet.com/", + "twitter": "https://twitter.com/synternet_com" + }, + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/synternet/chain.json b/synternet/chain.json new file mode 100644 index 0000000000..0888952828 --- /dev/null +++ b/synternet/chain.json @@ -0,0 +1,171 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "synternet", + "chain_type": "cosmos", + "chain_id": "synternet-1", + "website": "https://www.synternet.com/", + "pretty_name": "Synternet", + "status": "live", + "network_type": "mainnet", + "bech32_prefix": "synt", + "daemon_name": "syntd", + "node_home": "$HOME/.amber", + "key_algos": [ + "secp256k1" + ], + "fees": { + "fee_tokens": [ + { + "denom": "usynt", + "fixed_min_gas_price": 0.01, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "usynt" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/Synternet/synternet-chain-releases", + "recommended_version": "v0.14.0", + "compatible_versions": [ + "v0.14.0" + ], + "cosmos_sdk_version": "v0.47.11", + "consensus": { + "type": "cometbft", + "version": "v0.37.5" + }, + "genesis": { + "genesis_url": "https://github.com/Synternet/synternet-chain-releases/blob/main/networks/mainnet/genesis.json" + }, + "versions": [ + { + "name": "v11", + "tag": "v0.11.0", + "recommended_version": "v0.11.0", + "compatible_versions": [ + "v0.11.0" + ], + "cosmos_sdk_version": "v0.47.11", + "consensus": { + "type": "cometbft", + "version": "v0.37.5" + }, + "height": 1, + "next_version_name": "v14", + "sdk": { + "type": "cosmos", + "version": "v0.47.11" + }, + "ibc": { + "type": "go", + "version": "v7.1.0" + } + }, + { + "name": "v14", + "tag": "v0.14.0", + "proposal": 1, + "height": 505094, + "recommended_version": "v0.14.0", + "compatible_versions": [ + "v0.14.0" + ], + "cosmos_sdk_version": "v0.47.11", + "consensus": { + "type": "cometbft", + "version": "v0.37.5" + }, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.11" + }, + "ibc": { + "type": "go", + "version": "v7.1.0" + } + } + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.11" + }, + "ibc": { + "type": "go", + "version": "v7.1.0" + } + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.svg" + }, + "description": "Synternet is the backbone of the Data Layer, a protocol serving as the customizable execution layer between all blockchains. It enables builders to See, Interpret and Act on any data from any chain, supercharging their applications.", + "peers": { + "seeds": [], + "persistent_peers": [ + { + "id": "2eed7e175d204680af243e008e21950f81b8d455", + "address": "34.89.206.173:26656", + "provider": "synternet.com" + }, + { + "id": "cab3e0b0538e900d57a83ad590a3d228004c63a4", + "address": "35.225.165.111:26656", + "provider": "Stakin" + }, + { + "id": "6f76ec0b365da744e893b470eac72a87482359d5", + "address": "176.9.125.13:2220", + "provider": "Imperator" + }, + { + "id": "ac6ec924a0501b55db82c6a76aab893aed9a8630", + "address": "65.109.122.249:26656", + "provider": "Polkachu" + }, + { + "id": "95b14ec701608044c261ebd15d0b3bd84e295acb", + "address": "72.46.84.135:26656", + "provider": "Restake" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.synternet.com/", + "provider": "Synternet" + } + ], + "rest": [ + { + "address": "https://api.synternet.com/", + "provider": "Synternet" + } + ] + }, + "explorers": [ + { + "kind": "Big Dipper", + "url": "https://explorer.synternet.com/", + "tx_page": "https://explorer.synternet.com/transactions/${txHash}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.svg", + "theme": { + "primary_color_hex": "#272d45" + } + } + ] +} \ No newline at end of file diff --git a/synternet/images/synt.png b/synternet/images/synt.png new file mode 100644 index 0000000000..b2c1629de6 Binary files /dev/null and b/synternet/images/synt.png differ diff --git a/synternet/images/synt.svg b/synternet/images/synt.svg new file mode 100644 index 0000000000..fc4f63f392 --- /dev/null +++ b/synternet/images/synt.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/taketitan/assetlist.json b/taketitan/assetlist.json index a13fbdbaa7..3aa6c68b07 100644 --- a/taketitan/assetlist.json +++ b/taketitan/assetlist.json @@ -4,7 +4,7 @@ "assets": [ { "description": "Taketitan the future of the asset management industry.", - "extended_description": "Taketitan is seen as the future of the asset management industry. This new blockchain technology is changing how asset management works in exciting ways.\n\nTaketitan aims to make managing assets simpler, faster, and more secure. By using blockchain technology, it provides a transparent and trustworthy system where all transactions are recorded in a secure and unchangeable way. This helps reduce the risk of fraud and errors, making asset management safer for everyone.\n\nWith Taketitan, managing assets becomes more efficient. Transactions are processed quickly, and the costs are lower compared to traditional methods. This means more people can benefit from high-quality asset management services without the high fees usually involved.\n\nTaketitan also makes it easier for people to track and manage their investments. Everything is done through a digital platform that is easy to use and always available. This gives users better control and visibility over their assets.\n\nIn short, Taketitan is revolutionizing the asset management industry by making it more secure, efficient, and accessible for everyone. This blockchain technology is paving the way for a new era in how we manage and grow our financialΒ assets.", + "extended_description": "Taketitan is seen as the future of the asset management industry. This new blockchain technology is changing how asset management works in exciting ways.\n\nTaketitan aims to make managing assets simpler, faster, and more secure. By using blockchain technology, it provides a transparent and trustworthy system where all transactions are recorded in a secure and unchangeable way. This helps reduce the risk of fraud and errors, making asset management safer for everyone.\n\nWith Taketitan, managing assets becomes more efficient. Transactions are processed quickly, and the costs are lower compared to traditional methods. This means more people can benefit from high-quality asset management services without the high fees usually involved.\n\nTaketitan also makes it easier for people to track and manage their investments. Everything is done through a digital platform that is easy to use and always available. This gives users better control and visibility over their assets.\n\nIn short, Taketitan is revolutionizing the asset management industry by making it more secure, efficient, and accessible for everyone. This blockchain technology is paving the way for a new era in how we manage and grow our financial\u00a0assets.", "denom_units": [ { "denom": "ttnc", @@ -30,7 +30,8 @@ ], "socials": { "website": "https://taketitan.com/" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/taketitan/chain.json b/taketitan/chain.json index b610c92edb..90b1140087 100644 --- a/taketitan/chain.json +++ b/taketitan/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://taketitan.com/", "pretty_name": "TakeTitan", + "chain_type": "cosmos", "chain_id": "taketitan-12", "bech32_prefix": "taketitan", "daemon_name": "ttnc", @@ -27,8 +28,8 @@ "fee_tokens": [ { "denom": "ttnc", - "low_gas_price": 1e-06, - "average_gas_price": 5e-06, + "low_gas_price": 0.000001, + "average_gas_price": 0.000005, "high_gas_price": 0.0001 } ] diff --git a/tenet/assetlist.json b/tenet/assetlist.json index 64f308fb81..4ed3749282 100644 --- a/tenet/assetlist.json +++ b/tenet/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/tenet/chain.json b/tenet/chain.json index 48d37375c8..6f2435c838 100644 --- a/tenet/chain.json +++ b/tenet/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://tenet.org/", "pretty_name": "Tenet", + "chain_type": "cosmos", "chain_id": "tenet_1559-1", "bech32_prefix": "tenet", "node_home": "$HOME/.tenetd", @@ -52,7 +53,6 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "6.1.0", "genesis": { "genesis_url": "https://raw.githubusercontent.com/tenet-org/tenet-mainnet/master/config/genesis.json" }, @@ -68,7 +68,6 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "6.1.0", "binaries": { "linux/amd64": "https://github.com/tenet-org/tenet-mainnet/releases/download/v11.0.6/tenet-mainnet_11.0.6_Linux_amd64.tar.gz", "linux/arm64": "https://github.com/tenet-org/tenet-mainnet/releases/download/v11.0.6/tenet-mainnet_11.0.6_Darwin_arm64.tar.gz", @@ -76,7 +75,15 @@ "darwin/arm64": "https://github.com/tenet-org/tenet-mainnet/releases/download/v11.0.6/tenet-mainnet_11.0.6_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/tenet-org/tenet-mainnet/releases/download/v11.0.6/tenet-mainnet_11.0.6_Windows_amd64.zip" }, - "next_version_name": "multichain" + "next_version_name": "multichain", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "6.1.0" + } }, { "name": "multichain", @@ -92,7 +99,6 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "6.1.0", "binaries": { "linux/amd64": "https://github.com/tenet-org/tenet-mainnet/releases/download/v11.2.1/tenet-mainnet_11.2.1_Linux_amd64.tar.gz", "linux/arm64": "https://github.com/tenet-org/tenet-mainnet/releases/download/v11.2.1/tenet-mainnet_11.2.1_Linux_arm64.tar.gz", @@ -100,9 +106,25 @@ "darwin/arm64": "https://github.com/tenet-org/tenet-mainnet/releases/download/v11.2.1/tenet-mainnet_11.2.1_Darwin_arm64.tar.gz", "windows/amd64": "https://github.com/tenet-org/tenet-mainnet/releases/download/v11.2.1/tenet-mainnet_11.2.1_Windows_amd64.zip" }, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "6.1.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "6.1.0" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.png", diff --git a/teritori/assetlist.json b/teritori/assetlist.json index 6040e60948..671a420e4a 100644 --- a/teritori/assetlist.json +++ b/teritori/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#040404" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The native token of Osmosis", @@ -223,8 +224,8 @@ } ], "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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "images": [ { @@ -232,10 +233,11 @@ "chain_name": "noble", "base_denom": "uusdc" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primary_color_hex": "#2474cc" + "circle": true, + "primary_color_hex": "#2775CA" } } ] diff --git a/teritori/chain.json b/teritori/chain.json index 5378345c3a..e03e5c2908 100644 --- a/teritori/chain.json +++ b/teritori/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://teritori.com/", "pretty_name": "Teritori", + "chain_type": "cosmos", "chain_id": "teritori-1", "daemon_name": "teritorid", "node_home": "$HOME/.teritorid", @@ -33,7 +34,6 @@ "compatible_versions": [ "v2.0.6" ], - "ibc_go_version": "v7.3.1", "cosmos_sdk_version": "v0.47.6", "consensus": { "type": "cometbft", @@ -72,7 +72,6 @@ "compatible_versions": [ "v2.0.6" ], - "ibc_go_version": "v7.3.1", "cosmos_sdk_version": "v0.47.6", "consensus": { "type": "cometbft", @@ -81,9 +80,35 @@ "cosmwasm_version": "v0.41.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.teritorid/data/wasm", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.6" + }, + "cosmwasm": { + "version": "v0.41.0", + "path": "$HOME/.teritorid/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.6" + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + }, + "cosmwasm": { + "version": "v0.41.0", + "path": "$HOME/.teritorid/data/wasm", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/chain.png", @@ -217,6 +242,10 @@ { "address": "https://teritori-rpc.bluestake.net:443", "provider": "BlueStake πŸš€" + }, + { + "address": "https://teritori_mainnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "rest": [ @@ -271,6 +300,10 @@ { "address": "https://teritori-api.bluestake.net", "provider": "BlueStake πŸš€" + }, + { + "address": "https://teritori_mainnet_api.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "grpc": [ @@ -356,6 +389,12 @@ "url": "https://atomscan.com/teritori", "tx_page": "https://atomscan.com/teritori/transactions/${txHash}", "account_page": "https://atomscan.com/teritori/accounts/${accountAddress}" + }, + { + "kind": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯", + "url": "https://explorer.whenmoonwhenlambo.money/teritori", + "tx_page": "https://explorer.whenmoonwhenlambo.money/teritori/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/teritori/account/${accountAddress}" } ], "images": [ diff --git a/terpnetwork/assetlist.json b/terpnetwork/assetlist.json index 0130f279e4..5cb6bedcd5 100644 --- a/terpnetwork/assetlist.json +++ b/terpnetwork/assetlist.json @@ -28,7 +28,8 @@ "primary_color_hex": "#a2cd9a" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Thiol Gas Token (Thiols) is the Terp Network's native utility token, used as the primary means to govern, secure the blockchain & incentivize participants.", @@ -56,7 +57,8 @@ "primary_color_hex": "#060607" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/terpnetwork/chain.json b/terpnetwork/chain.json index b3954879b7..b9db6515e5 100644 --- a/terpnetwork/chain.json +++ b/terpnetwork/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Terp-Network", + "chain_type": "cosmos", "chain_id": "morocco-1", "bech32_prefix": "terp", "daemon_name": "terp", @@ -210,7 +211,7 @@ "provider": "itrocket.net" }, { - "address": " https://terp.rpc.nodex.one:443", + "address": "https://terp.rpc.nodex.one:443", "provider": "nodex.one" } ], @@ -224,7 +225,7 @@ "provider": "itrocket.net" }, { - "address": " https://terp.api.nodex.one:443", + "address": "https://terp.api.nodex.one:443", "provider": "nodex.one" }, { @@ -242,7 +243,7 @@ "provider": "itrocket.net" }, { - "address": " https://terp.grpc.nodex.one:443", + "address": "https://terp.grpc.nodex.one:443", "provider": "nodex.one" } ] diff --git a/terra/assetlist.json b/terra/assetlist.json index a0cf92cab3..22ddfc131e 100644 --- a/terra/assetlist.json +++ b/terra/assetlist.json @@ -45,7 +45,8 @@ "primary_color_hex": "#fcdb5b" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The USD stablecoin of Terra Classic.", @@ -89,7 +90,8 @@ "primary_color_hex": "#5493f2" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The KRW stablecoin of Terra Classic.", @@ -132,7 +134,8 @@ "primary_color_hex": "#4b83e0" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The governance token of the White Whale protocol on Terra.", @@ -5373,7 +5376,8 @@ "primary_color_hex": "#5981d7" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The CAD stablecoin of Terra Classic.", @@ -5416,7 +5420,8 @@ "primary_color_hex": "#de725b" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The CHF stablecoin of Terra Classic.", @@ -5459,7 +5464,8 @@ "primary_color_hex": "#c95c41" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The CNY stablecoin of Terra Classic.", @@ -5502,7 +5508,8 @@ "primary_color_hex": "#d3684c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The DKK stablecoin of Terra Classic.", @@ -5545,7 +5552,8 @@ "primary_color_hex": "#db300a" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The EUR stablecoin of Terra Classic.", @@ -5588,7 +5596,8 @@ "primary_color_hex": "#1535b2" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The GBP stablecoin of Terra Classic.", @@ -5631,7 +5640,8 @@ "primary_color_hex": "#d49b9c" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The HKD stablecoin of Terra Classic.", @@ -5674,7 +5684,8 @@ "primary_color_hex": "#dc300a" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The IDR stablecoin of Terra Classic.", @@ -5717,7 +5728,8 @@ "primary_color_hex": "#5893ed" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The INR stablecoin of Terra Classic.", @@ -5760,7 +5772,8 @@ "primary_color_hex": "#4b87e6" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The JPY stablecoin of Terra Classic.", @@ -5803,7 +5816,8 @@ "primary_color_hex": "#cfcfcf" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The MNT stablecoin of Terra Classic.", @@ -5846,7 +5860,8 @@ "primary_color_hex": "#4085f0" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The MYR stablecoin of Terra Classic.", @@ -5889,7 +5904,8 @@ "primary_color_hex": "#5893ed" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The NOK stablecoin of Terra Classic.", @@ -5932,7 +5948,8 @@ "primary_color_hex": "#5493f3" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The PHP stablecoin of Terra Classic.", @@ -5975,7 +5992,8 @@ "primary_color_hex": "#e88057" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The SDR stablecoin of Terra Classic.", @@ -6018,7 +6036,8 @@ "primary_color_hex": "#2fa4f1" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The SEK stablecoin of Terra Classic.", @@ -6061,7 +6080,8 @@ "primary_color_hex": "#2e71e1" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The SGD stablecoin of Terra Classic.", @@ -6104,7 +6124,8 @@ "primary_color_hex": "#4886e7" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The THB stablecoin of Terra Classic.", @@ -6147,7 +6168,8 @@ "primary_color_hex": "#5493f3" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The TWD stablecoin of Terra Classic.", @@ -6190,7 +6212,8 @@ "primary_color_hex": "#5493f3" } } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -6251,7 +6274,7 @@ ] }, { - "description": "Rakoff Token is the Meme Token for Terra Classic", + "description": "Juris Protocol is the Lending Platform for the Terra Ecosystem.", "type_asset": "cw20", "address": "terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2", "denom_units": [ @@ -6260,23 +6283,20 @@ "exponent": 0 }, { - "denom": "rakoff", + "denom": "juris", "exponent": 6 } ], "base": "cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2", - "name": "Rakoff Token", - "display": "rakoff", - "symbol": "RAKOFF", + "name": "Juris Protocol", + "display": "juris", + "symbol": "JURIS", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/rakoff.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/rakoff.png", - "theme": { - "primary_color_hex": "#191717" - } + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png" } ] }, diff --git a/terra/chain.json b/terra/chain.json index 9c2219b433..5d04c50873 100644 --- a/terra/chain.json +++ b/terra/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "mainnet", "pretty_name": "Terra Classic", + "chain_type": "cosmos", "chain_id": "columbus-5", "daemon_name": "terrad", "node_home": "$HOME/.terra", @@ -198,13 +199,24 @@ "cosmos_sdk_version": "0.45.13", "cosmwasm_enabled": true, "cosmwasm_version": "0.16.7", - "ibc_go_version": "1.3.1", "consensus": { "type": "tendermint", "version": "0.34.24" }, "binaries": { "linux/amd64": "https://github.com/terra-money/classic-core/releases/download/v2.0.1/terra_2.0.1_Linux_x86_64.tar.gz?checksum=sha256:b9edfd51080c9c9ae16b30afd1b8490d7278e51d521ccc0f2afcbb7e3b389b8d" + }, + "sdk": { + "type": "cosmos", + "version": "0.45.13" + }, + "cosmwasm": { + "version": "0.16.7", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "1.3.1" } }, { @@ -214,13 +226,24 @@ "cosmos_sdk_version": "0.45.14", "cosmwasm_enabled": true, "cosmwasm_version": "0.30.0", - "ibc_go_version": "4.3.1", "consensus": { "type": "tendermint", "version": "0.34.24" }, "binaries": { "linux/amd64": "https://github.com/terra-money/classic-core/releases/download/v2.1.1/terra_2.1.1_Linux_x86_64.tar.gz?checksum=sha256:9bf91be244af95f1afcf7fc1ddb1852aa96651adf94e9668c16c7df5596100d6" + }, + "sdk": { + "type": "cosmos", + "version": "0.45.14" + }, + "cosmwasm": { + "version": "0.30.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "4.3.1" } } ] diff --git a/terra/images/juris.png b/terra/images/juris.png new file mode 100644 index 0000000000..53dd5fe867 Binary files /dev/null and b/terra/images/juris.png differ diff --git a/terra/images/rakoff.png b/terra/images/rakoff.png deleted file mode 100644 index 0a8358f314..0000000000 Binary files a/terra/images/rakoff.png and /dev/null differ diff --git a/terra2/assetlist.json b/terra2/assetlist.json index e093bd1f32..54c63f759f 100644 --- a/terra2/assetlist.json +++ b/terra2/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://www.terra.money/", "twitter": "https://twitter.com/terra_money" - } + }, + "type_asset": "sdk.coin" }, { "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", @@ -231,7 +232,7 @@ ] }, { - "description": "Alem is a local currency for the region of Alentejo in Portugal, sibling of Dinheiros, Reis and Alem, a token of dioalma.protocol.", + "description": "Alem is one of the tokens of the seven families of dioalmaprotocol, alem almagem arika danu torus dmt plasma, all seven families use dinheiros reis and escudos, dioalma.protcol the currency of the seven seas.", "denom_units": [ { "denom": "cw20:terra1cmf8ytutcwrjrv08zskj9phuh46a3w3nkjax7en4hxezsrdr58lqvzy05q", @@ -260,6 +261,186 @@ } ] }, + { + "description": "almagem is one of the tokens of the seven families of dioalmaprotocol, alem almagem arika danu torus dmt plasma, all seven families use dinheiros reis and escudos, dioalma.protcol the currency of the seven seas.", + "denom_units": [ + { + "denom": "cw20:terra1en42e2vsvtdsvrcqg5s5e5e4djejjaed6fxmvtpweg3tu33h6k5qkg9c40", + "exponent": 0 + }, + { + "denom": "AMG", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "terra1en42e2vsvtdsvrcqg5s5e5e4djejjaed6fxmvtpweg3tu33h6k5qkg9c40", + "base": "cw20:terra1en42e2vsvtdsvrcqg5s5e5e4djejjaed6fxmvtpweg3tu33h6k5qkg9c40", + "name": "almagem", + "display": "AMG", + "symbol": "AMG", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/almagem.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/almagem.png", + "theme": { + "primary_color_hex": "#d1b295" + } + } + ] + }, + { + "description": "arika is one of the tokens of the seven families of dioalmaprotocol, alem almagem arika danu torus dmt plasma, all seven families use dinheiros reis and escudos, dioalma.protcol the currency of the seven seas.", + "denom_units": [ + { + "denom": "cw20:terra1ysd87nayjuelxj4wvp4wnp9as0mwszzkje6a9z6f3xx2903ghnsq4hm50y", + "exponent": 0 + }, + { + "denom": "ARK", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "terra1ysd87nayjuelxj4wvp4wnp9as0mwszzkje6a9z6f3xx2903ghnsq4hm50y", + "base": "cw20:terra1ysd87nayjuelxj4wvp4wnp9as0mwszzkje6a9z6f3xx2903ghnsq4hm50y", + "name": "arika", + "display": "ARK", + "symbol": "ARK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/arika.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/arika.png", + "theme": { + "primary_color_hex": "#d1b295" + } + } + ] + }, + { + "description": "danu is one of the tokens of the seven families of dioalmaprotocol, alem almagem arika danu torus dmt plasma, all seven families use dinheiros reis and escudos, dioalma.protcol the currency of the seven seas.", + "denom_units": [ + { + "denom": "cw20:terra1vj68f2ntauaj5dfvy5z4tq4we3hsyg363k63js5sae2t7th9aacqan89sr", + "exponent": 0 + }, + { + "denom": "DANU", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "terra1vj68f2ntauaj5dfvy5z4tq4we3hsyg363k63js5sae2t7th9aacqan89sr", + "base": "cw20:terra1vj68f2ntauaj5dfvy5z4tq4we3hsyg363k63js5sae2t7th9aacqan89sr", + "name": "danu", + "display": "DANU", + "symbol": "DANU", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/danu.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/danu.png", + "theme": { + "primary_color_hex": "#d1b295" + } + } + ] + }, + { + "description": "torus is one of the tokens of the seven families of dioalmaprotocol, alem almagem arika danu torus dmt plasma, all seven families use dinheiros reis and escudos, dioalma.protcol the currency of the seven seas.", + "denom_units": [ + { + "denom": "cw20:terra1swzpenwh39f8aa7qht34r05f8ew6k2vehvqt2aw4fjy0fgghhheqs9l6h7", + "exponent": 0 + }, + { + "denom": "TRS", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "terra1swzpenwh39f8aa7qht34r05f8ew6k2vehvqt2aw4fjy0fgghhheqs9l6h7", + "base": "cw20:terra1swzpenwh39f8aa7qht34r05f8ew6k2vehvqt2aw4fjy0fgghhheqs9l6h7", + "name": "torus", + "display": "TRS", + "symbol": "TRS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/trs.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/trs.png", + "theme": { + "primary_color_hex": "#d1b295" + } + } + ] + }, + { + "description": "plasma is one of the tokens of the seven families of dioalmaprotocol, alem almagem arika danu torus dmt plasma, all seven families use dinheiros reis and escudos, dioalma.protcol the currency of the seven seas.", + "denom_units": [ + { + "denom": "cw20:terra1mqs6mdx0ak7qvjzs6efhg65g4j5pzwpdkcgdsv5tpekln3qhggrq3qzvdp", + "exponent": 0 + }, + { + "denom": "PLASMA", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "terra1mqs6mdx0ak7qvjzs6efhg65g4j5pzwpdkcgdsv5tpekln3qhggrq3qzvdp", + "base": "cw20:terra1mqs6mdx0ak7qvjzs6efhg65g4j5pzwpdkcgdsv5tpekln3qhggrq3qzvdp", + "name": "plasma", + "display": "PLASMA", + "symbol": "PLASMA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/plasma.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/plasma.png", + "theme": { + "primary_color_hex": "#d1b295" + } + } + ] + }, + { + "description": "dmt is one of the tokens of the seven families of dioalmaprotocol, alem almagem arika danu torus dmt plasma, all seven families use dinheiros reis and escudos, dioalma.protcol the currency of the seven seas.", + "denom_units": [ + { + "denom": "cw20:terra1xfkkgwxychgrnq0vcp82u32mecrzj8s64s03cxtmf46k6j2n2wssc7rzjf", + "exponent": 0 + }, + { + "denom": "DMT", + "exponent": 6 + } + ], + "type_asset": "cw20", + "address": "terra1xfkkgwxychgrnq0vcp82u32mecrzj8s64s03cxtmf46k6j2n2wssc7rzjf", + "base": "cw20:terra1xfkkgwxychgrnq0vcp82u32mecrzj8s64s03cxtmf46k6j2n2wssc7rzjf", + "name": "dmt", + "display": "DMT", + "symbol": "DMT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/dmt.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/dmt.png", + "theme": { + "primary_color_hex": "#d1b295" + } + } + ] + }, { "description": "ERIS liquid staked LUNA.", "type_asset": "cw20", @@ -490,6 +671,16 @@ "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bLUNA.png" }, + "traces": [ + { + "type": "liquid-stake", + "counterparty": { + "chain_name": "terra2", + "base_denom": "uluna" + }, + "provider": "BackBoneLabs" + } + ], "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bLUNA.png", @@ -555,7 +746,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampwhalet.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "ERIS Alliance Staked boneWHALE on Terra", @@ -580,7 +772,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bonewhalet.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "ERIS Liquid Enterprise Staked ROAR", @@ -608,7 +801,8 @@ "primary_color_hex": "#5b83c3" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Nico Dao Money", @@ -930,7 +1124,7 @@ "description": "The first memecoin on osmosis.", "denom_units": [ { - "denom": "ibc/7CB33A66F90533ED1E168CB3251253C719CF4B04FF1290AFD795F14CA1D67278", + "denom": "ibc/E18C0D303957867A164DE2863D1C3F83135936E6F17CADF4D241FBC12B0F23B2", "exponent": 0 }, { @@ -939,7 +1133,7 @@ } ], "type_asset": "ics20", - "base": "ibc/7CB33A66F90533ED1E168CB3251253C719CF4B04FF1290AFD795F14CA1D67278", + "base": "ibc/E18C0D303957867A164DE2863D1C3F83135936E6F17CADF4D241FBC12B0F23B2", "name": "Wosmo", "display": "WOSMO", "symbol": "WOSMO", @@ -1169,7 +1363,8 @@ "primary_color_hex": "#9363b3" } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Tether USDt on Terra", @@ -1242,7 +1437,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ura.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LUNA-USDC liquidity pool token on URA", @@ -1264,7 +1460,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ura.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "LUNA-USDT liquidity pool token on URA", @@ -1286,7 +1483,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ura.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "ashLUNA", @@ -1314,7 +1512,135 @@ "primary_color_hex": "#66bcf2" } } + ], + "type_asset": "sdk.coin" + }, + { + "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", + "denom_units": [ + { + "denom": "ibc/2C962DAB9F57FE0921435426AE75196009FAA1981BF86991203C8411F8980FDB", + "exponent": 0, + "aliases": [ + "microusdc", + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/2C962DAB9F57FE0921435426AE75196009FAA1981BF86991203C8411F8980FDB", + "name": "USDC", + "display": "usdc", + "symbol": "USDC", + "traces": [ + { + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" + }, + "provider": "Circle" + }, + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "provider": "Circle" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "noble", + "base_denom": "uusdc", + "channel_id": "channel-30" + }, + "chain": { + "channel_id": "channel-253", + "path": "transfer/channel-253/uusdc" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } ] + }, + { + "description": "Cosmo is the best currency in the universe.", + "denom_units": [ + { + "denom": "ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201", + "exponent": 0, + "aliases": [ + "factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO" + ] + }, + { + "denom": "COSMO", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201", + "name": "Cosmo", + "display": "COSMO", + "symbol": "COSMO", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "injective", + "base_denom": "factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO", + "channel_id": "channel-8" + }, + "chain": { + "channel_id": "channel-122", + "path": "transfer/channel-122/factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/cosmo.png" + }, + "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" + } + } + ], + "socials": { + "website": "https://github.com/raphaellafar/Cosmo", + "twitter": "https://x.com/CosmoClub84" + } } ] } \ No newline at end of file diff --git a/terra2/chain.json b/terra2/chain.json index e94796b14e..0a5476a3b5 100644 --- a/terra2/chain.json +++ b/terra2/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.terra.money/", "pretty_name": "Terra", + "chain_type": "cosmos", "chain_id": "phoenix-1", "daemon_name": "terrad", "node_home": "$HOME/.terra", @@ -30,13 +31,13 @@ }, "codebase": { "git_repo": "https://github.com/terra-money/core/", - "recommended_version": "v2.11.4", + "recommended_version": "v2.12.4", "compatible_versions": [ - "v2.11.4" + "v2.12.4" ], "binaries": { - "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.11.4/terra_2.11.4_Linux_arm64.tar.gz", - "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.11.4/terra_2.11.4_Linux_x86_64.tar.gz" + "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.12.4/terra_2.12.4_Linux_arm64.tar.gz", + "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.12.4/terra_2.12.4_Linux_x86_64.tar.gz" }, "genesis": { "name": "v2.0", @@ -50,7 +51,6 @@ "cosmos_sdk_version": "0.45.4", "cosmwasm_enabled": true, "cosmwasm_version": "0.27.0", - "ibc_go_version": "3.0.0", "consensus": { "type": "tendermint", "version": "0.34.19" @@ -60,6 +60,18 @@ "binaries": { "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.0.1/terra_2.0.1_Linux_x86_64.tar.gz?checksum=sha256:eae23aad59b36ea2adaa541a7662a6119569279d2e6c4013e3deee96e9263b30", "darwin/amd64": "https://github.com/terra-money/core/releases/download/v2.0.1/terra_2.0.1_Darwin_x86_64.tar.gz?checksum=sha256:c2a6b1bff922b127a31757bdb0c8f05a34f3b1f879dee1e862f9f8b748e15a54" + }, + "sdk": { + "type": "cosmos", + "version": "0.45.4" + }, + "cosmwasm": { + "version": "0.27.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "3.0.0" } }, { @@ -69,7 +81,6 @@ "cosmos_sdk_version": "0.46.9", "cosmwasm_enabled": true, "cosmwasm_version": "0.27.0", - "ibc_go_version": "3.0.0", "consensus": { "type": "tendermint", "version": "0.34.21" @@ -79,6 +90,18 @@ "binaries": { "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.1.4/terra_2.1.4_Linux_x86_64.tar.gz?checksum=sha256:e05b85ae2eac5df886f4f9d0ecf719b82ebe4da4fc59cae93a34af7c3e89ddfb", "darwin/amd64": "https://github.com/terra-money/core/releases/download/v2.1.4/terra_2.1.4_Darwin_x86_64.tar.gz?checksum=sha256:4b66ebf800cb903f7b6c07686636eff43e686f5956c9fadc307f077afd7f23bb" + }, + "sdk": { + "type": "cosmos", + "version": "0.46.9" + }, + "cosmwasm": { + "version": "0.27.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "3.0.0" } }, { @@ -93,7 +116,6 @@ "cosmos_sdk_version": "v0.46.11", "cosmwasm_enabled": true, "cosmwasm_version": "v0.27.0", - "ibc_go_version": "v3.4.0", "consensus": { "type": "tendermint", "version": "v0.34.21" @@ -101,6 +123,18 @@ "next_version_name": "v2.3", "binaries": { "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.2.1/terra_2.2.1_Linux_x86_64.tar.gz?checksum=sha256:8a9353ae3c33a750ce2a9d236f00c12c5449c41fad96e9885a5c0b8678fcf8bc" + }, + "sdk": { + "type": "cosmos", + "version": "v0.46.11" + }, + "cosmwasm": { + "version": "v0.27.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v3.4.0" } }, { @@ -118,7 +152,6 @@ "cosmos_sdk_version": "v0.46.11", "cosmwasm_enabled": true, "cosmwasm_version": "v0.30.0", - "ibc_go_version": "v6.1.1", "consensus": { "type": "tendermint", "version": "v0.34.27" @@ -127,7 +160,19 @@ "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.3.5/terra_2.3.5_Linux_arm64.tar.gz?checksum=sha256:93b0c508e16f779b93f0e76629ab247ddaf5fa0db96573405b3b2b11e3eb6859", "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.3.5/terra_2.3.5_Linux_x86_64.tar.gz?checksum=sha256:8c3ac7392436b102dcdd63fd275fa73b1e0201e65e420af71954782cee682ac6" }, - "next_version_name": "v2.4" + "next_version_name": "v2.4", + "sdk": { + "type": "cosmos", + "version": "v0.46.11" + }, + "cosmwasm": { + "version": "v0.30.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v6.1.1" + } }, { "name": "v2.4", @@ -137,7 +182,6 @@ "cosmos_sdk_version": "v0.46.11", "cosmwasm_enabled": true, "cosmwasm_version": "v0.30.0", - "ibc_go_version": "v6.1.1", "consensus": { "type": "tendermint", "version": "v0.34.27" @@ -146,7 +190,19 @@ "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.4.1/terra_2.4.1_Linux_arm64.tar.gz", "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.4.1/terra_2.4.1_Linux_x86_64.tar.gz" }, - "next_version_name": "v2.5" + "next_version_name": "v2.5", + "sdk": { + "type": "cosmos", + "version": "v0.46.11" + }, + "cosmwasm": { + "version": "v0.30.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v6.1.1" + } }, { "name": "v2.5", @@ -156,7 +212,6 @@ "cosmos_sdk_version": "v0.47.5-terra.2", "cosmwasm_enabled": true, "cosmwasm_version": "v0.41.0", - "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -165,7 +220,20 @@ "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.5.2/terra_2.5.2_Linux_arm64.tar.gz", "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.5.2/terra_2.5.2_Linux_x86_64.tar.gz" }, - "next_version_name": "v2.6" + "next_version_name": "v2.6", + "sdk": { + "type": "cosmos", + "version": "v0.47.5", + "tag": "v0.47.5-terra.2" + }, + "cosmwasm": { + "version": "v0.41.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v2.6", @@ -180,7 +248,6 @@ "cosmos_sdk_version": "v0.47.5-terra.2", "cosmwasm_enabled": true, "cosmwasm_version": "v0.43.0", - "ibc_go_version": "v7.3.0", "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -189,7 +256,20 @@ "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.6.4/terra_2.6.4_Linux_arm64.tar.gz", "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.6.4/terra_2.6.4_Linux_x86_64.tar.gz" }, - "next_version_name": "v2.9" + "next_version_name": "v2.9", + "sdk": { + "type": "cosmos", + "version": "v0.47.5", + "tag": "v0.47.5-terra.2" + }, + "cosmwasm": { + "version": "v0.43.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } }, { "name": "v2.9", @@ -203,7 +283,6 @@ "cosmos_sdk_version": "v0.47.5-terra.2", "cosmwasm_enabled": true, "cosmwasm_version": "v0.43.0-terra", - "ibc_go_version": "v7.3.0", "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -212,7 +291,21 @@ "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.9.4/terra_2.9.4_Linux_arm64.tar.gz", "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.9.4/terra_2.9.4_Linux_x86_64.tar.gz" }, - "next_version_name": "v2.10" + "next_version_name": "v2.10", + "sdk": { + "type": "cosmos", + "version": "v0.47.5", + "tag": "v0.47.5-terra.2" + }, + "cosmwasm": { + "version": "v0.43.0", + "enabled": true, + "tag": "v0.43.0-terra" + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } }, { "name": "v2.10", @@ -227,7 +320,6 @@ "cosmos_sdk_version": "v0.47.5-terra.2", "cosmwasm_enabled": true, "cosmwasm_version": "v0.43.0-terra", - "ibc_go_version": "v7.3.0", "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -236,30 +328,97 @@ "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.10.5/terra_2.10.5_Linux_arm64.tar.gz", "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.10.5/terra_2.10.5_Linux_x86_64.tar.gz" }, - "next_version_name": "v2.11" + "next_version_name": "v2.11", + "sdk": { + "type": "cosmos", + "version": "v0.47.5", + "tag": "v0.47.5-terra.2" + }, + "cosmwasm": { + "version": "v0.43.0", + "enabled": true, + "tag": "v0.43.0-terra" + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } }, { "name": "v2.11", - "tag": "v2.11.4", - "recommended_version": "v2.11.4", + "tag": "v2.11.8", + "recommended_version": "v2.11.8", "compatible_versions": [ - "v2.11.4" + "v2.11.8" ], "proposal": 4807, "height": 10136000, "cosmos_sdk_version": "terra-money/cosmos-sdk v0.47.6-terra.0", "cosmwasm_enabled": true, "cosmwasm_version": "v0.45.0", - "ibc_go_version": "terra-money/ibc-go/v7 v7.3.1-terra.0", "consensus": { "type": "cometbft", "version": "v0.37.2" }, "binaries": { - "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.11.4/terra_2.11.4_Linux_arm64.tar.gz", - "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.11.4/terra_2.11.4_Linux_x86_64.tar.gz" + "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.11.8/terra_2.11.8_Linux_arm64.tar.gz", + "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.11.8/terra_2.11.8_Linux_x86_64.tar.gz" + }, + "next_version_name": "v2.12", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/terra-money/cosmos-sdk", + "version": "v0.47.6", + "tag": "v0.47.6-terra.0" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/terra-money/ibc-go", + "version": "v7.3.1", + "tag": "v7.3.1-terra.0" + } + }, + { + "name": "v2.12", + "tag": "v2.12.4", + "recommended_version": "v2.12.4", + "compatible_versions": [ + "v2.12.4" + ], + "proposal": 4818, + "height": 11860000, + "cosmos_sdk_version": "v0.47.6-terra.0", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.45.0", + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "binaries": { + "linux/arm64": "https://github.com/terra-money/core/releases/download/v2.12.4/terra_2.12.4_Linux_arm64.tar.gz", + "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.12.4/terra_2.12.4_Linux_x86_64.tar.gz" + }, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/terra-money/cosmos-sdk", + "version": "v0.47.6", + "tag": "v0.47.6-terra.0" }, - "next_version_name": "" + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "repo": "https://github.com/terra-money/ibc-go", + "version": "v7.3.1", + "tag": "v7.3.1-terra.0" + } } ] }, @@ -333,7 +492,7 @@ "apis": { "rpc": [ { - "address": "https://terra2-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/terra2", "provider": "Lavender.Five Nodes 🐝" }, { @@ -421,7 +580,7 @@ ], "grpc": [ { - "address": "terra2-grpc.lavenderfive.com:443", + "address": "terra2.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/terra2/images/Alem.png b/terra2/images/Alem.png index 0ab98b7de0..f05a27e771 100644 Binary files a/terra2/images/Alem.png and b/terra2/images/Alem.png differ diff --git a/terra2/images/Dinheiros.png b/terra2/images/Dinheiros.png index 6e385d1fca..1886334e22 100644 Binary files a/terra2/images/Dinheiros.png and b/terra2/images/Dinheiros.png differ diff --git a/terra2/images/Escudos.png b/terra2/images/Escudos.png index 312d7d10c1..dd179d7cee 100644 Binary files a/terra2/images/Escudos.png and b/terra2/images/Escudos.png differ diff --git a/terra2/images/Reis.png b/terra2/images/Reis.png index 6f9d0ec8a5..2572303d7f 100644 Binary files a/terra2/images/Reis.png and b/terra2/images/Reis.png differ diff --git a/terra2/images/almagem.png b/terra2/images/almagem.png new file mode 100644 index 0000000000..25313c9a57 Binary files /dev/null and b/terra2/images/almagem.png differ diff --git a/terra2/images/arika.png b/terra2/images/arika.png new file mode 100644 index 0000000000..b74fa3f691 Binary files /dev/null and b/terra2/images/arika.png differ diff --git a/terra2/images/danu.png b/terra2/images/danu.png new file mode 100644 index 0000000000..3982e80287 Binary files /dev/null and b/terra2/images/danu.png differ diff --git a/terra2/images/dmt.png b/terra2/images/dmt.png new file mode 100644 index 0000000000..e01c66856d Binary files /dev/null and b/terra2/images/dmt.png differ diff --git a/terra2/images/plasma.png b/terra2/images/plasma.png new file mode 100644 index 0000000000..c4b92a2391 Binary files /dev/null and b/terra2/images/plasma.png differ diff --git a/terra2/images/trs.png b/terra2/images/trs.png new file mode 100644 index 0000000000..066986d4d3 Binary files /dev/null and b/terra2/images/trs.png differ diff --git a/testnets/_IBC/akashtestnet-archwaytestnet.json b/testnets/_IBC/akashtestnet-archwaytestnet.json index c78b1238cb..4a972bf417 100644 --- a/testnets/_IBC/akashtestnet-archwaytestnet.json +++ b/testnets/_IBC/akashtestnet-archwaytestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "akashtestnet", "client_id": "07-tendermint-4", diff --git a/testnets/_IBC/akashtestnet-osmosistestnet.json b/testnets/_IBC/akashtestnet-osmosistestnet.json index e3191edc00..6fdad81df5 100644 --- a/testnets/_IBC/akashtestnet-osmosistestnet.json +++ b/testnets/_IBC/akashtestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "akashtestnet", "client_id": "07-tendermint-6", diff --git a/testnets/_IBC/archwaytestnet-axelartestnet.json b/testnets/_IBC/archwaytestnet-axelartestnet.json index 5916e68d00..391416e9da 100644 --- a/testnets/_IBC/archwaytestnet-axelartestnet.json +++ b/testnets/_IBC/archwaytestnet-axelartestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "archwaytestnet", "client_id": "07-tendermint-70", diff --git a/testnets/_IBC/archwaytestnet-jackaltestnet2.json b/testnets/_IBC/archwaytestnet-jackaltestnet2.json index 6d73eee470..f7f34bfa42 100644 --- a/testnets/_IBC/archwaytestnet-jackaltestnet2.json +++ b/testnets/_IBC/archwaytestnet-jackaltestnet2.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "archwaytestnet", "client_id": "07-tendermint-0", diff --git a/testnets/_IBC/archwaytestnet-osmosistestnet.json b/testnets/_IBC/archwaytestnet-osmosistestnet.json index e5df8317c6..c16cae83fa 100644 --- a/testnets/_IBC/archwaytestnet-osmosistestnet.json +++ b/testnets/_IBC/archwaytestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "archwaytestnet", "client_id": "07-tendermint-121", diff --git a/testnets/_IBC/archwaytestnet-symphonytestnet.json b/testnets/_IBC/archwaytestnet-symphonytestnet.json new file mode 100644 index 0000000000..f726434496 --- /dev/null +++ b/testnets/_IBC/archwaytestnet-symphonytestnet.json @@ -0,0 +1,30 @@ +{ + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "archwaytestnet", + "client_id": "07-tendermint-139", + "connection_id": "connection-144" + }, + "chain_2": { + "chain_name": "symphonytestnet", + "client_id": "07-tendermint-25", + "connection_id": "connection-12" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-495", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] +} diff --git a/testnets/_IBC/axelartestnet-dydxtestnet.json b/testnets/_IBC/axelartestnet-dydxtestnet.json index 001e1618b9..af3da427a9 100644 --- a/testnets/_IBC/axelartestnet-dydxtestnet.json +++ b/testnets/_IBC/axelartestnet-dydxtestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "axelartestnet", "client_id": "07-tendermint-594", diff --git a/testnets/_IBC/axelartestnet-mantrachaintestnet.json b/testnets/_IBC/axelartestnet-mantrachaintestnet.json index 246a274d6a..cce30b938d 100644 --- a/testnets/_IBC/axelartestnet-mantrachaintestnet.json +++ b/testnets/_IBC/axelartestnet-mantrachaintestnet.json @@ -1,23 +1,23 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "axelartestnet", - "client_id": "07-tendermint-953", - "connection_id": "connection-734" + "client_id": "07-tendermint-1009", + "connection_id": "connection-783" }, "chain_2": { "chain_name": "mantrachaintestnet", - "client_id": "07-tendermint-4", - "connection_id": "connection-4" + "client_id": "07-tendermint-7", + "connection_id": "connection-7" }, "channels": [ { "chain_1": { - "channel_id": "channel-506", + "channel_id": "channel-540", "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-4", + "channel_id": "channel-7", "port_id": "transfer" }, "ordering": "unordered", @@ -28,4 +28,4 @@ } } ] -} \ No newline at end of file +} diff --git a/testnets/_IBC/axelartestnet-osmosistestnet.json b/testnets/_IBC/axelartestnet-osmosistestnet.json index daa67fd741..176d0b23b3 100644 --- a/testnets/_IBC/axelartestnet-osmosistestnet.json +++ b/testnets/_IBC/axelartestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "axelartestnet", "client_id": "07-tendermint-685", diff --git a/testnets/_IBC/axelartestnet-osmosistestnet4.json b/testnets/_IBC/axelartestnet-osmosistestnet4.json index 7b77857f8c..24a53fec56 100644 --- a/testnets/_IBC/axelartestnet-osmosistestnet4.json +++ b/testnets/_IBC/axelartestnet-osmosistestnet4.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "axelartestnet", "client_id": "07-tendermint-213", diff --git a/testnets/_IBC/axelartestnet-sagatestnet.json b/testnets/_IBC/axelartestnet-sagatestnet.json index 0fa06e74ed..88b340bc01 100644 --- a/testnets/_IBC/axelartestnet-sagatestnet.json +++ b/testnets/_IBC/axelartestnet-sagatestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "axelartestnet", "client_id": "07-tendermint-767", diff --git a/testnets/_IBC/axelartestnet-titantestnet.json b/testnets/_IBC/axelartestnet-titantestnet.json index 5f9bad9fa0..e2a8b3bcd7 100644 --- a/testnets/_IBC/axelartestnet-titantestnet.json +++ b/testnets/_IBC/axelartestnet-titantestnet.json @@ -2,22 +2,22 @@ "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "axelartestnet", - "client_id": "07-tendermint-858", - "connection_id": "connection-663" + "client_id": "07-tendermint-1001", + "connection_id": "connection-780" }, "chain_2": { "chain_name": "titantestnet", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" + "client_id": "07-tendermint-6", + "connection_id": "connection-4" }, "channels": [ { "chain_1": { - "channel_id": "channel-448", + "channel_id": "channel-537", "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-1", + "channel_id": "channel-5", "port_id": "transfer" }, "ordering": "unordered", diff --git a/testnets/_IBC/celestiatestnet3-cosmoshubtestnet.json b/testnets/_IBC/celestiatestnet3-cosmoshubtestnet.json index 2fd53e979c..0d20c923a9 100644 --- a/testnets/_IBC/celestiatestnet3-cosmoshubtestnet.json +++ b/testnets/_IBC/celestiatestnet3-cosmoshubtestnet.json @@ -1,31 +1,31 @@ { - "$schema": "../ibc_data.schema.json", - "chain_1": { - "chain_name": "celestiatestnet3", - "client_id": "07-tendermint-0", - "connection_id": "connection-0" - }, - "chain_2": { - "chain_name": "cosmoshubtestnet", - "client_id": "07-tendermint-2382", - "connection_id": "connection-2727" - }, - "channels": [ - { - "chain_1": { - "channel_id": "channel-0", - "port_id": "transfer" - }, - "chain_2": { - "channel_id": "channel-3152", - "port_id": "transfer" - }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true - } - } - ] + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestiatestnet3", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "chain_2": { + "chain_name": "cosmoshubtestnet", + "client_id": "07-tendermint-2382", + "connection_id": "connection-2727" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-3152", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] } diff --git a/testnets/_IBC/celestiatestnet3-osmosistestnet.json b/testnets/_IBC/celestiatestnet3-osmosistestnet.json index e2c093ad15..300f6fa8b5 100644 --- a/testnets/_IBC/celestiatestnet3-osmosistestnet.json +++ b/testnets/_IBC/celestiatestnet3-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "celestiatestnet3", "client_id": "07-tendermint-118", diff --git a/testnets/_IBC/chain4energytestnet-osmosistestnet.json b/testnets/_IBC/chain4energytestnet-osmosistestnet.json index 115cb174fe..6491952ccf 100644 --- a/testnets/_IBC/chain4energytestnet-osmosistestnet.json +++ b/testnets/_IBC/chain4energytestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "chain4energytestnet", "client_id": "07-tendermint-18", diff --git a/testnets/_IBC/composabletestnet-osmosistestnet.json b/testnets/_IBC/composabletestnet-osmosistestnet.json index a6be5d59c8..20ea075c51 100644 --- a/testnets/_IBC/composabletestnet-osmosistestnet.json +++ b/testnets/_IBC/composabletestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "composabletestnet", "client_id": "07-tendermint-23", diff --git a/testnets/_IBC/coreumtestnet-osmosistestnet.json b/testnets/_IBC/coreumtestnet-osmosistestnet.json index 1b597d0a03..98bbc1753e 100644 --- a/testnets/_IBC/coreumtestnet-osmosistestnet.json +++ b/testnets/_IBC/coreumtestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "coreumtestnet", "client_id": "07-tendermint-104", diff --git a/testnets/_IBC/cosmoshubtestnet-empowertestnet.json b/testnets/_IBC/cosmoshubtestnet-empowertestnet.json index 36d4fee1da..a75315035e 100644 --- a/testnets/_IBC/cosmoshubtestnet-empowertestnet.json +++ b/testnets/_IBC/cosmoshubtestnet-empowertestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "cosmoshubtestnet", "client_id": "07-tendermint-2073", diff --git a/testnets/_IBC/cosmoshubtestnet-osmosistestnet.json b/testnets/_IBC/cosmoshubtestnet-osmosistestnet.json index 5d8c1c4804..13b2e0172f 100644 --- a/testnets/_IBC/cosmoshubtestnet-osmosistestnet.json +++ b/testnets/_IBC/cosmoshubtestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "cosmoshubtestnet", "client_id": "07-tendermint-2528", diff --git a/testnets/_IBC/cosmoshubtestnet-symphonytestnet.json b/testnets/_IBC/cosmoshubtestnet-symphonytestnet.json new file mode 100644 index 0000000000..b062f00f58 --- /dev/null +++ b/testnets/_IBC/cosmoshubtestnet-symphonytestnet.json @@ -0,0 +1,30 @@ +{ + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshubtestnet", + "client_id": "07-tendermint-3730", + "connection_id": "connection-3782" + }, + "chain_2": { + "chain_name": "symphonytestnet", + "client_id": "07-tendermint-10", + "connection_id": "connection-9" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-4300", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] +} diff --git a/testnets/_IBC/cosmoshubtestnet-titantestnet.json b/testnets/_IBC/cosmoshubtestnet-titantestnet.json index 4c618e1930..98f783f69a 100644 --- a/testnets/_IBC/cosmoshubtestnet-titantestnet.json +++ b/testnets/_IBC/cosmoshubtestnet-titantestnet.json @@ -23,7 +23,7 @@ "ordering": "unordered", "version": "ics20-1", "tags": { - "status": "live", + "status": "killed", "preferred": true } } diff --git a/testnets/_IBC/doravotatestnet-osmosistestnet.json b/testnets/_IBC/doravotatestnet-osmosistestnet.json index 71fcd0a9b0..c0ee8eb0f2 100644 --- a/testnets/_IBC/doravotatestnet-osmosistestnet.json +++ b/testnets/_IBC/doravotatestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "doravotatestnet", "client_id": "07-tendermint-2", diff --git a/testnets/_IBC/empowertestnet-osmosistestnet.json b/testnets/_IBC/empowertestnet-osmosistestnet.json index c747ca1935..0a88897b75 100644 --- a/testnets/_IBC/empowertestnet-osmosistestnet.json +++ b/testnets/_IBC/empowertestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "empowertestnet", "client_id": "07-tendermint-1", diff --git a/testnets/_IBC/empowertestnet-stargazetestnet.json b/testnets/_IBC/empowertestnet-stargazetestnet.json index 4cef4ad3d4..50d47f19b8 100644 --- a/testnets/_IBC/empowertestnet-stargazetestnet.json +++ b/testnets/_IBC/empowertestnet-stargazetestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "empowertestnet", "client_id": "07-tendermint-2", diff --git a/testnets/_IBC/entrypointtestnet-osmosistestnet.json b/testnets/_IBC/entrypointtestnet-osmosistestnet.json index ee51e98288..1e08300230 100644 --- a/testnets/_IBC/entrypointtestnet-osmosistestnet.json +++ b/testnets/_IBC/entrypointtestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "entrypointtestnet", "client_id": "07-tendermint-0", diff --git a/testnets/_IBC/impacthubtestnet-osmosistestnet.json b/testnets/_IBC/impacthubtestnet-osmosistestnet.json index 1a844dfff4..f7475998fc 100644 --- a/testnets/_IBC/impacthubtestnet-osmosistestnet.json +++ b/testnets/_IBC/impacthubtestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "impacthubtestnet", "client_id": "07-tendermint-53", diff --git a/testnets/_IBC/injectivetestnet-noistestnet.json b/testnets/_IBC/injectivetestnet-noistestnet.json index 0dac9a819e..0e92701e1f 100644 --- a/testnets/_IBC/injectivetestnet-noistestnet.json +++ b/testnets/_IBC/injectivetestnet-noistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "injectivetestnet", "client_id": "07-tendermint-123", diff --git a/testnets/_IBC/injectivetestnet-osmosistestnet.json b/testnets/_IBC/injectivetestnet-osmosistestnet.json index f5a1c1642b..e95adbc0ef 100644 --- a/testnets/_IBC/injectivetestnet-osmosistestnet.json +++ b/testnets/_IBC/injectivetestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "injectivetestnet", "client_id": "07-tendermint-189", diff --git a/testnets/_IBC/injectivetestnet-xiontestnet.json b/testnets/_IBC/injectivetestnet-xiontestnet.json index 5a45fb068a..ac6fc78176 100644 --- a/testnets/_IBC/injectivetestnet-xiontestnet.json +++ b/testnets/_IBC/injectivetestnet-xiontestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "injectivetestnet", "client_id": "07-tendermint-239", diff --git a/testnets/_IBC/junotestnet-noistestnet.json b/testnets/_IBC/junotestnet-noistestnet.json index 9535d39998..501c22b813 100644 --- a/testnets/_IBC/junotestnet-noistestnet.json +++ b/testnets/_IBC/junotestnet-noistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "junotestnet", "client_id": "07-tendermint-170", diff --git a/testnets/_IBC/junotestnet-osmosistestnet.json b/testnets/_IBC/junotestnet-osmosistestnet.json index 1a60ef2854..f10b7a35eb 100644 --- a/testnets/_IBC/junotestnet-osmosistestnet.json +++ b/testnets/_IBC/junotestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "junotestnet", "client_id": "07-tendermint-743", diff --git a/testnets/_IBC/junotestnet-osmosistestnet4.json b/testnets/_IBC/junotestnet-osmosistestnet4.json index 30bdea3ce8..009e716234 100644 --- a/testnets/_IBC/junotestnet-osmosistestnet4.json +++ b/testnets/_IBC/junotestnet-osmosistestnet4.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "junotestnet", "client_id": "07-tendermint-135", diff --git a/testnets/_IBC/junotestnet-symphonytestnet.json b/testnets/_IBC/junotestnet-symphonytestnet.json new file mode 100644 index 0000000000..423b17debf --- /dev/null +++ b/testnets/_IBC/junotestnet-symphonytestnet.json @@ -0,0 +1,30 @@ +{ + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "junotestnet", + "client_id": "07-tendermint-789", + "connection_id": "connection-868" + }, + "chain_2": { + "chain_name": "symphonytestnet", + "client_id": "07-tendermint-28", + "connection_id": "connection-13" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-943", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-11", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] +} diff --git a/testnets/_IBC/kimanetworktestnet-osmosistestnet.json b/testnets/_IBC/kimanetworktestnet-osmosistestnet.json new file mode 100644 index 0000000000..ed92ba0c85 --- /dev/null +++ b/testnets/_IBC/kimanetworktestnet-osmosistestnet.json @@ -0,0 +1,32 @@ +{ + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "kimanetworktestnet", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" + }, + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1", + "connection_id": "connection-3450" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-8867", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] +} diff --git a/testnets/_IBC/kyvetestnet-osmosistestnet.json b/testnets/_IBC/kyvetestnet-osmosistestnet.json index e1c7699a29..9c4ee37f6f 100644 --- a/testnets/_IBC/kyvetestnet-osmosistestnet.json +++ b/testnets/_IBC/kyvetestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "kyvetestnet", "client_id": "07-tendermint-2", diff --git a/testnets/_IBC/likecointestnet-osmosistestnet.json b/testnets/_IBC/likecointestnet-osmosistestnet.json index dd0cf1adba..de83758e25 100644 --- a/testnets/_IBC/likecointestnet-osmosistestnet.json +++ b/testnets/_IBC/likecointestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "likecointestnet", "client_id": "07-tendermint-5", diff --git a/testnets/_IBC/mantrachaintestnet-nobletestnet.json b/testnets/_IBC/mantrachaintestnet-nobletestnet.json index 8d17c6aa21..b9ef76879f 100644 --- a/testnets/_IBC/mantrachaintestnet-nobletestnet.json +++ b/testnets/_IBC/mantrachaintestnet-nobletestnet.json @@ -1,23 +1,23 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "mantrachaintestnet", - "client_id": "07-tendermint-3", - "connection_id": "connection-3" + "client_id": "07-tendermint-6", + "connection_id": "connection-6" }, "chain_2": { "chain_name": "nobletestnet", - "client_id": "07-tendermint-256", - "connection_id": "connection-207" + "client_id": "07-tendermint-294", + "connection_id": "connection-247" }, "channels": [ { "chain_1": { - "channel_id": "channel-3", + "channel_id": "channel-6", "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-174", + "channel_id": "channel-209", "port_id": "transfer" }, "ordering": "unordered", diff --git a/testnets/_IBC/mantrachaintestnet-osmosistestnet.json b/testnets/_IBC/mantrachaintestnet-osmosistestnet.json index b68b105d17..7d38472d89 100644 --- a/testnets/_IBC/mantrachaintestnet-osmosistestnet.json +++ b/testnets/_IBC/mantrachaintestnet-osmosistestnet.json @@ -1,23 +1,23 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "mantrachaintestnet", - "client_id": "07-tendermint-1", - "connection_id": "connection-1" + "client_id": "07-tendermint-5", + "connection_id": "connection-5" }, "chain_2": { "chain_name": "osmosistestnet", - "client_id": "07-tendermint-3545", - "connection_id": "connection-3106" + "client_id": "07-tendermint-3930", + "connection_id": "connection-3411" }, "channels": [ { "chain_1": { - "channel_id": "channel-1", + "channel_id": "channel-5", "port_id": "transfer" }, "chain_2": { - "channel_id": "channel-7944", + "channel_id": "channel-8734", "port_id": "transfer" }, "ordering": "unordered", @@ -28,4 +28,4 @@ } } ] -} +} \ No newline at end of file diff --git a/testnets/_IBC/marstestnet-osmosistestnet.json b/testnets/_IBC/marstestnet-osmosistestnet.json index c0e7b896fa..a052d35366 100644 --- a/testnets/_IBC/marstestnet-osmosistestnet.json +++ b/testnets/_IBC/marstestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "marstestnet", "client_id": "07-tendermint-33", diff --git a/testnets/_IBC/neutrontestnet-noistestnet.json b/testnets/_IBC/neutrontestnet-noistestnet.json index fc4d08e485..3f78fb6f6d 100644 --- a/testnets/_IBC/neutrontestnet-noistestnet.json +++ b/testnets/_IBC/neutrontestnet-noistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "neutrontestnet", "client_id": "07-tendermint-102", diff --git a/testnets/_IBC/neutrontestnet-osmosistestnet.json b/testnets/_IBC/neutrontestnet-osmosistestnet.json index fe5b28d132..6a4e291df3 100644 --- a/testnets/_IBC/neutrontestnet-osmosistestnet.json +++ b/testnets/_IBC/neutrontestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "neutrontestnet", "client_id": "07-tendermint-133", diff --git a/testnets/_IBC/nobletestnet-osmosistestnet.json b/testnets/_IBC/nobletestnet-osmosistestnet.json index 5ba53873e4..0257ab7802 100644 --- a/testnets/_IBC/nobletestnet-osmosistestnet.json +++ b/testnets/_IBC/nobletestnet-osmosistestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "nobletestnet", "client_id": "07-tendermint-42", diff --git a/testnets/_IBC/nobletestnet-osmosistestnet4.json b/testnets/_IBC/nobletestnet-osmosistestnet4.json index 1ce3509361..c680a8ce38 100644 --- a/testnets/_IBC/nobletestnet-osmosistestnet4.json +++ b/testnets/_IBC/nobletestnet-osmosistestnet4.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "nobletestnet", "client_id": "07-tendermint-6", diff --git a/testnets/_IBC/nobletestnet-seitestnet2.json b/testnets/_IBC/nobletestnet-seitestnet2.json new file mode 100644 index 0000000000..14a285e9fe --- /dev/null +++ b/testnets/_IBC/nobletestnet-seitestnet2.json @@ -0,0 +1,31 @@ +{ + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "nobletestnet", + "client_id": "07-tendermint-44", + "connection_id": "connection-32" + }, + "chain_2": { + "chain_name": "seitestnet2", + "client_id": "07-tendermint-127", + "connection_id": "connection-107" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-23", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-75", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/testnets/_IBC/nobletestnet-titantestnet.json b/testnets/_IBC/nobletestnet-titantestnet.json new file mode 100644 index 0000000000..0d7de54921 --- /dev/null +++ b/testnets/_IBC/nobletestnet-titantestnet.json @@ -0,0 +1,31 @@ +{ + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "nobletestnet", + "client_id": "07-tendermint-293", + "connection_id": "connection-246" + }, + "chain_2": { + "chain_name": "titantestnet", + "client_id": "07-tendermint-9", + "connection_id": "connection-7" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-208", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true + } + } + ] +} diff --git a/testnets/_IBC/noistestnet-stargazetestnet.json b/testnets/_IBC/noistestnet-stargazetestnet.json index 77c96291c0..02ea3805f7 100644 --- a/testnets/_IBC/noistestnet-stargazetestnet.json +++ b/testnets/_IBC/noistestnet-stargazetestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "noistestnet", "client_id": "07-tendermint-39", @@ -12,7 +12,7 @@ }, "channels": [ { - + "chain_1": { "channel_id": "channel-48", "port_id": "transfer" diff --git a/testnets/_IBC/osmosistestnet-quicksilvertestnet.json b/testnets/_IBC/osmosistestnet-quicksilvertestnet.json index 49a7aaf205..67326ff0a8 100644 --- a/testnets/_IBC/osmosistestnet-quicksilvertestnet.json +++ b/testnets/_IBC/osmosistestnet-quicksilvertestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "osmosistestnet", "client_id": "07-tendermint-19", diff --git a/testnets/_IBC/osmosistestnet-sagatestnet.json b/testnets/_IBC/osmosistestnet-sagatestnet.json index 0dfdd46f60..cbfcd078bb 100644 --- a/testnets/_IBC/osmosistestnet-sagatestnet.json +++ b/testnets/_IBC/osmosistestnet-sagatestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "osmosistestnet", "client_id": "07-tendermint-1448", diff --git a/testnets/_IBC/osmosistestnet-sgetestnet.json b/testnets/_IBC/osmosistestnet-sgetestnet.json index 8d29a19901..d8dcfe08e2 100644 --- a/testnets/_IBC/osmosistestnet-sgetestnet.json +++ b/testnets/_IBC/osmosistestnet-sgetestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "osmosistestnet", "client_id": "07-tendermint-965", diff --git a/testnets/_IBC/osmosistestnet-stargazetestnet.json b/testnets/_IBC/osmosistestnet-stargazetestnet.json index dd98adc4cf..7bd4829142 100644 --- a/testnets/_IBC/osmosistestnet-stargazetestnet.json +++ b/testnets/_IBC/osmosistestnet-stargazetestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "osmosistestnet", "client_id": "07-tendermint-1274", diff --git a/testnets/_IBC/osmosistestnet-swisstroniktestnet.json b/testnets/_IBC/osmosistestnet-swisstroniktestnet.json index f505251c68..f703a919c6 100644 --- a/testnets/_IBC/osmosistestnet-swisstroniktestnet.json +++ b/testnets/_IBC/osmosistestnet-swisstroniktestnet.json @@ -1,5 +1,5 @@ { - "$schema": "../ibc_data.schema.json", + "$schema": "../../ibc_data.schema.json", "chain_1": { "chain_name": "osmosistestnet", "client_id": "07-tendermint-3714", diff --git a/testnets/_IBC/osmosistestnet-symphonytestnet.json b/testnets/_IBC/osmosistestnet-symphonytestnet.json new file mode 100644 index 0000000000..adbea9b4da --- /dev/null +++ b/testnets/_IBC/osmosistestnet-symphonytestnet.json @@ -0,0 +1,32 @@ +{ + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-3946", + "connection_id": "connection-3419" + }, + "chain_2": { + "chain_name": "symphonytestnet", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-8743", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-0", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" + } + } + ] +} diff --git a/testnets/_IBC/osmosistestnet-titantestnet.json b/testnets/_IBC/osmosistestnet-titantestnet.json index da25c41639..7952dbaf50 100644 --- a/testnets/_IBC/osmosistestnet-titantestnet.json +++ b/testnets/_IBC/osmosistestnet-titantestnet.json @@ -23,7 +23,7 @@ "ordering": "unordered", "version": "ics20-1", "tags": { - "status": "live", + "status": "killed", "preferred": true } } diff --git a/testnets/_IBC/stargazetestnet-symphonytestnet.json b/testnets/_IBC/stargazetestnet-symphonytestnet.json new file mode 100644 index 0000000000..890d5c36c3 --- /dev/null +++ b/testnets/_IBC/stargazetestnet-symphonytestnet.json @@ -0,0 +1,30 @@ +{ + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "stargazetestnet", + "client_id": "07-tendermint-952", + "connection_id": "connection-947" + }, + "chain_2": { + "chain_name": "symphonytestnet", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" + }, + "channels": [ + { + "chain_1": { + "channel_id": "channel-998", + "port_id": "transfer" + }, + "chain_2": { + "channel_id": "channel-4", + "port_id": "transfer" + }, + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" + } + } + ] +} diff --git a/testnets/_IBC/stargazetestnet-titantestnet.json b/testnets/_IBC/stargazetestnet-titantestnet.json index 77a7f99105..9728c9e18f 100644 --- a/testnets/_IBC/stargazetestnet-titantestnet.json +++ b/testnets/_IBC/stargazetestnet-titantestnet.json @@ -23,7 +23,7 @@ "ordering": "unordered", "version": "ics20-1", "tags": { - "status": "live", + "status": "killed", "preferred": true } } diff --git a/testnets/_non-cosmos/avalanchetestnet/assetlist.json b/testnets/_non-cosmos/avalanchetestnet/assetlist.json index 0cd3879bce..dad0713f25 100644 --- a/testnets/_non-cosmos/avalanchetestnet/assetlist.json +++ b/testnets/_non-cosmos/avalanchetestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../../assetlist.schema.json", "chain_name": "avalanchetestnet", "assets": [ { @@ -14,6 +14,7 @@ "exponent": 18 } ], + "type_asset": "evm-base", "base": "wei", "name": "Avalanche", "display": "avax", @@ -147,6 +148,7 @@ } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "images": [ @@ -155,7 +157,12 @@ "chain_name": "avalanche", "base_denom": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } } ] } diff --git a/testnets/_non-cosmos/binancesmartchaintestnet/assetlist.json b/testnets/_non-cosmos/binancesmartchaintestnet/assetlist.json index 645d159bd7..e18eb76ce5 100644 --- a/testnets/_non-cosmos/binancesmartchaintestnet/assetlist.json +++ b/testnets/_non-cosmos/binancesmartchaintestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../../assetlist.schema.json", "chain_name": "binancesmartchaintestnet", "assets": [ { @@ -14,6 +14,7 @@ "exponent": 18 } ], + "type_asset": "evm-base", "base": "wei", "name": "Binance Coin", "display": "bnb", diff --git a/testnets/_non-cosmos/bitcointestnet/assetlist.json b/testnets/_non-cosmos/bitcointestnet/assetlist.json new file mode 100644 index 0000000000..ec03a7f71f --- /dev/null +++ b/testnets/_non-cosmos/bitcointestnet/assetlist.json @@ -0,0 +1,49 @@ +{ + "$schema": "../../../assetlist.schema.json", + "chain_name": "bitcointestnet", + "assets": [ + { + "description": "The testnet version of Bitcoin.", + "denom_units": [ + { + "denom": "sat", + "exponent": 0 + }, + { + "denom": "btc", + "exponent": 8 + } + ], + "type_asset": "bitcoin-like", + "base": "sat", + "name": "Bitcoin", + "display": "btc", + "symbol": "BTC", + "traces": [ + { + "type": "test-mintage", + "counterparty": { + "chain_name": "bitcoin", + "base_denom": "sat" + }, + "provider": "Bitcoin" + } + ], + "images": [ + { + "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", + "background_color_hex": "#f4941c", + "circle": true + } + } + ] + } + ] +} \ No newline at end of file diff --git a/testnets/_non-cosmos/ethereumtestnet/assetlist.json b/testnets/_non-cosmos/ethereumtestnet/assetlist.json index d758ae3a35..6c2bf70f5b 100644 --- a/testnets/_non-cosmos/ethereumtestnet/assetlist.json +++ b/testnets/_non-cosmos/ethereumtestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../../assetlist.schema.json", "chain_name": "ethereumtestnet", "assets": [ { @@ -21,6 +21,7 @@ ] } ], + "type_asset": "evm-base", "base": "wei", "name": "Ether", "display": "eth", diff --git a/testnets/_non-cosmos/fantomtestnet/assetlist.json b/testnets/_non-cosmos/fantomtestnet/assetlist.json index 6b0f154ebd..016cbf806f 100644 --- a/testnets/_non-cosmos/fantomtestnet/assetlist.json +++ b/testnets/_non-cosmos/fantomtestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../../assetlist.schema.json", "chain_name": "fantomtestnet", "assets": [ { @@ -14,6 +14,7 @@ "exponent": 18 } ], + "type_asset": "evm-base", "base": "wei", "name": "Fantom", "display": "ftm", diff --git a/testnets/_non-cosmos/moonbeamtestnet/assetlist.json b/testnets/_non-cosmos/moonbeamtestnet/assetlist.json index e5cea224de..e42a2498a9 100644 --- a/testnets/_non-cosmos/moonbeamtestnet/assetlist.json +++ b/testnets/_non-cosmos/moonbeamtestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../../assetlist.schema.json", "chain_name": "moonbeamtestnet", "assets": [ { @@ -20,6 +20,7 @@ ] } ], + "type_asset": "substrate", "base": "Wei", "name": "Glimmer", "display": "GLMR", diff --git a/testnets/_non-cosmos/polkadottestnet/assetlist.json b/testnets/_non-cosmos/polkadottestnet/assetlist.json index 1b9d3f62f4..782cabfbab 100644 --- a/testnets/_non-cosmos/polkadottestnet/assetlist.json +++ b/testnets/_non-cosmos/polkadottestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../../assetlist.schema.json", "chain_name": "polkadottestnet", "assets": [ { @@ -51,6 +51,7 @@ ] } ], + "type_asset": "substrate", "base": "Planck", "name": "Polkadot", "display": "DOT", diff --git a/testnets/_non-cosmos/polygontestnet/assetlist.json b/testnets/_non-cosmos/polygontestnet/assetlist.json index caa4ce30bc..78c2731b1e 100644 --- a/testnets/_non-cosmos/polygontestnet/assetlist.json +++ b/testnets/_non-cosmos/polygontestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../../assetlist.schema.json", "chain_name": "polygontestnet", "assets": [ { @@ -17,6 +17,7 @@ ] } ], + "type_asset": "evm-base", "base": "wei", "name": "Matic", "display": "matic", diff --git a/testnets/airchainstestnet/assetlist.json b/testnets/airchainstestnet/assetlist.json index 72a4039bd9..fd68a64378 100644 --- a/testnets/airchainstestnet/assetlist.json +++ b/testnets/airchainstestnet/assetlist.json @@ -23,7 +23,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/airchainstestnet/images/airchains-logo.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/airchainstestnet/images/airchains-logo.svg" } - ] + ], + "type_asset": "sdk.coin" } ] -} +} \ No newline at end of file diff --git a/testnets/airchainstestnet/chain.json b/testnets/airchainstestnet/chain.json index bb81d60e6f..e71ddabade 100644 --- a/testnets/airchainstestnet/chain.json +++ b/testnets/airchainstestnet/chain.json @@ -5,11 +5,14 @@ "website": "https://airchains.io/", "network_type": "testnet", "pretty_name": "Airchains Switchyard Testnet", + "chain_type": "cosmos", "chain_id": "junction", "bech32_prefix": "air", "daemon_name": "junctiond", "node_home": "$HOME/.junctiond", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "slip44": 118, "fees": { "fee_tokens": [ @@ -44,7 +47,11 @@ "v1.0.0" ] } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.50.3" + } }, "images": [ { @@ -292,14 +299,12 @@ "url": "https://testnet.airchains.io", "tx_page": "https://testnet.airchains.io/transaction/${txHash}", "account_page": "https://testnet.airchains.io/address/${accountAddress}" - }, { "kind": "NodesGuru", "url": "https://testnet.junction.explorers.guru/", "tx_page": "https://testnet.junction.explorers.guru/transaction/${txHash}", "account_page": "https://testnet.junction.explorers.guru/account/${accountAddress}" - }, { "kind": "Nodejumper", @@ -365,4 +370,4 @@ "account_page": "https://explorer.validatorvn.com/Airchains-Testnet/account/${accountAddress}" } ] -} +} \ No newline at end of file diff --git a/testnets/akashtestnet/assetlist.json b/testnets/akashtestnet/assetlist.json index b55f2c8214..cfad80c3b5 100644 --- a/testnets/akashtestnet/assetlist.json +++ b/testnets/akashtestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "akashtestnet", "assets": [ { @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/akashtestnet/chain.json b/testnets/akashtestnet/chain.json index 2a5989f2dc..d2ffa6535a 100644 --- a/testnets/akashtestnet/chain.json +++ b/testnets/akashtestnet/chain.json @@ -1,10 +1,11 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "akashtestnet", "status": "live", "network_type": "testnet", "website": "https://akash.network/", "pretty_name": "Sandbox", + "chain_type": "cosmos", "chain_id": "sandbox-01", "bech32_prefix": "akash", "daemon_name": "akash", diff --git a/testnets/archwaytestnet/assetlist.json b/testnets/archwaytestnet/assetlist.json index 19189f6a02..82984d814c 100644 --- a/testnets/archwaytestnet/assetlist.json +++ b/testnets/archwaytestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "archwaytestnet", "assets": [ { @@ -33,8 +33,8 @@ } ], "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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg" }, "images": [ { @@ -42,8 +42,8 @@ "chain_name": "archway", "base_denom": "aarch" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg", "theme": { "primary_color_hex": "#fc4c04" } @@ -52,7 +52,153 @@ "socials": { "website": "https://archway.io/", "twitter": "https://twitter.com/archwayHQ" - } + }, + "type_asset": "sdk.coin" + }, + { + "description": "Wrapped CONST (Archway Testnet token)", + "type_asset": "cw20", + "address": "archway1dz6h2smr432gvzruklk3lps7ak2ca7cngdge4vym93wehkkypwpqgwr2q2", + "denom_units": [ + { + "denom": "cw20:archway1dz6h2smr432gvzruklk3lps7ak2ca7cngdge4vym93wehkkypwpqgwr2q2", + "exponent": 0 + }, + { + "denom": "wARCH", + "exponent": 18 + } + ], + "base": "cw20:archway1dz6h2smr432gvzruklk3lps7ak2ca7cngdge4vym93wehkkypwpqgwr2q2", + "name": "Wrapped ARCH", + "display": "wARCH", + "symbol": "wARCH", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "archwaytestnet", + "base_denom": "aconst" + }, + "provider": "Archway" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wArch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wArch.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "archway", + "base_denom": "cw20:archway1msc3fa4e2mh73y760qmjd3wfkzr98nl26f36xgt2xnhuw6ay3scs42zeue" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wArch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wArch.svg", + "theme": { + "primary_color_hex": "#000000" + } + } + ] + }, + { + "description": "Circle's USDC Noble Testnet (Grand) on Archway Testnet", + "denom_units": [ + { + "denom": "ibc/34F8D3402273FFA5278AE5757D81CE151ACFD4B19C494C0EE372A7229714824F", + "exponent": 0, + "aliases": [ + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/34F8D3402273FFA5278AE5757D81CE151ACFD4B19C494C0EE372A7229714824F", + "name": "USDC (Noble)", + "display": "usdc", + "symbol": "USDC", + "traces": [ + { + "type": "ibc", + "counterparty": { + "chain_name": "nobletestnet", + "base_denom": "uusdc", + "channel_id": "channel-215" + }, + "chain": { + "channel_id": "channel-500", + "path": "transfer/channel-500/uusdc" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } + } + ] + }, + { + "description": "Wrapped USDC (Noble Testnet Grand)", + "type_asset": "cw20", + "address": "archway172vetupqnkgdc7dp3gwqpvk5ljmgzyj2gs4ag2fdmp0s2rucxxsqh0nqeu", + "denom_units": [ + { + "denom": "cw20:archway172vetupqnkgdc7dp3gwqpvk5ljmgzyj2gs4ag2fdmp0s2rucxxsqh0nqeu", + "exponent": 0 + }, + { + "denom": "wUSDC", + "exponent": 6 + } + ], + "base": "cw20:archway172vetupqnkgdc7dp3gwqpvk5ljmgzyj2gs4ag2fdmp0s2rucxxsqh0nqeu", + "name": "Wrapped USDC", + "display": "wUSDC", + "symbol": "wUSDC", + "traces": [ + { + "type": "wrapped", + "counterparty": { + "chain_name": "archwaytestnet", + "base_denom": "ibc/34F8D3402273FFA5278AE5757D81CE151ACFD4B19C494C0EE372A7229714824F" + }, + "provider": "Archway" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wUsdc-noble.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wUsdc-noble.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "archway", + "base_denom": "cw20:archway1gaf9nw7n8v5lpjz9caxjpps006kxfcrzcuc8y5qp4clslhven2ns2g0ule" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wUsdc-noble.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/wUsdc-noble.svg", + "theme": { + "primary_color_hex": "#000000" + } + } + ] } ] } \ No newline at end of file diff --git a/testnets/archwaytestnet/chain.json b/testnets/archwaytestnet/chain.json index 478b65acb0..4c59be2c88 100644 --- a/testnets/archwaytestnet/chain.json +++ b/testnets/archwaytestnet/chain.json @@ -1,6 +1,7 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "archwaytestnet", + "chain_type": "cosmos", "chain_id": "constantine-3", "pretty_name": "Archway Testnet", "status": "live", @@ -68,4 +69,4 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/archwaytestnet/images/ArchwayBrandmark.svg" } ] -} +} \ No newline at end of file diff --git a/testnets/arkeonetworktestnet/assetlist.json b/testnets/arkeonetworktestnet/assetlist.json index 74c6bbb86a..946d92653e 100644 --- a/testnets/arkeonetworktestnet/assetlist.json +++ b/testnets/arkeonetworktestnet/assetlist.json @@ -24,7 +24,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/arkeonetworktestnet/images/arkeo.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/arkeonetworktestnet/chain.json b/testnets/arkeonetworktestnet/chain.json index 1221ba9eea..c61d3faa61 100644 --- a/testnets/arkeonetworktestnet/chain.json +++ b/testnets/arkeonetworktestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Arkeo Network", + "chain_type": "cosmos", "chain_id": "arkeo", "bech32_prefix": "tarkeo", "daemon_name": "arkeod", @@ -95,4 +96,4 @@ "tx_page": "https://explorer.nodexcapital.com/arkeo/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/artelatestnet/assetlist.json b/testnets/artelatestnet/assetlist.json index 0079cf3c74..42d447fb96 100644 --- a/testnets/artelatestnet/assetlist.json +++ b/testnets/artelatestnet/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/artelatestnet/images/artela.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/artelatestnet/chain.json b/testnets/artelatestnet/chain.json index a7eabea04b..577e787895 100644 --- a/testnets/artelatestnet/chain.json +++ b/testnets/artelatestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Artela Testnet", + "chain_type": "cosmos", "chain_id": "artela_11820-1", "bech32_prefix": "art", "daemon_name": "artelad", @@ -40,7 +41,6 @@ "type": "cometbft", "version": "0.37" }, - "ibc_go_version": "v7.1.0", "genesis": { "genesis_url": "https://docs.artela.network/assets/files/genesis-697a2db4ef7e20dbdb8bdc1cd9d1633a.json" }, @@ -56,7 +56,14 @@ "type": "cometbft", "version": "0.37" }, - "ibc_go_version": "v7.1.0" + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "ibc": { + "type": "go", + "version": "v7.1.0" + } }, { "name": "v0.4.1-beta", @@ -69,9 +76,24 @@ "type": "cometbft", "version": "0.37" }, - "ibc_go_version": "v7.1.0" + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "ibc": { + "type": "go", + "version": "v7.1.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "ibc": { + "type": "go", + "version": "v7.1.0" + } }, "peers": { "seeds": [], @@ -123,4 +145,4 @@ "tx_page": "https://testnet-scan.artela.network/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/auratestnet/assetlist.json b/testnets/auratestnet/assetlist.json index 56d7a24705..4f9186be7d 100644 --- a/testnets/auratestnet/assetlist.json +++ b/testnets/auratestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "auratestnet", "assets": [ { @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/auratestnet/chain.json b/testnets/auratestnet/chain.json index 168527b6ef..1d44b848c7 100644 --- a/testnets/auratestnet/chain.json +++ b/testnets/auratestnet/chain.json @@ -1,10 +1,11 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "auratestnet", "status": "live", "network_type": "testnet", "website": "https://aura.network/", "pretty_name": "Aura Euphoria Network", + "chain_type": "cosmos", "chain_id": "aura_6321-3", "bech32_prefix": "aura", "daemon_name": "aurad", @@ -41,7 +42,6 @@ "v0.8.0-euphoria" ], "cosmos_sdk_version": "v0.47.8", - "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", "version": "0.37.4" @@ -59,16 +59,39 @@ "v0.8.0-euphoria" ], "cosmos_sdk_version": "v0.47.8", - "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", "version": "0.37.4" }, "cosmwasm_version": "0.42.0", "cosmwasm_enabled": true, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.8" + }, + "cosmwasm": { + "version": "0.42.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.8" + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + }, + "cosmwasm": { + "version": "0.42.0", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", diff --git a/testnets/axelartestnet/assetlist.json b/testnets/axelartestnet/assetlist.json index c102e7fd28..0e711c1b74 100644 --- a/testnets/axelartestnet/assetlist.json +++ b/testnets/axelartestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "axelartestnet", "assets": [ { @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Circle's stablecoin on Axelar", @@ -67,7 +68,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Wrapped Ether on Axelar", @@ -106,7 +108,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Wrapped Moonbeam on Axelar", @@ -145,7 +148,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Wrapped Matic on Axelar", @@ -184,7 +188,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Wrapped BNB on Axelar", @@ -225,7 +230,8 @@ "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Wrapped AVAX on Axelar.", @@ -264,7 +270,8 @@ ], "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" - } + }, + "type_asset": "sdk.coin" }, { "description": "Wrapped FTM on Axelar.", @@ -303,7 +310,8 @@ ], "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/axelartestnet/chain.json b/testnets/axelartestnet/chain.json index 95a5735f87..a6bb13f124 100644 --- a/testnets/axelartestnet/chain.json +++ b/testnets/axelartestnet/chain.json @@ -1,6 +1,7 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "axelartestnet", + "chain_type": "cosmos", "chain_id": "axelar-testnet-lisbon-3", "pretty_name": "Axelar Testnet", "status": "live", @@ -85,4 +86,4 @@ "account_page": "https://mintscan.io/axelar-testnet/account/${accountAddress}" } ] -} +} \ No newline at end of file diff --git a/testnets/babylontestnet/assetlist.json b/testnets/babylontestnet/assetlist.json index f7d43af84b..cf6cfc6e40 100644 --- a/testnets/babylontestnet/assetlist.json +++ b/testnets/babylontestnet/assetlist.json @@ -25,7 +25,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/babylontestnet/chain.json b/testnets/babylontestnet/chain.json index 1df75fca7a..229d7f4849 100644 --- a/testnets/babylontestnet/chain.json +++ b/testnets/babylontestnet/chain.json @@ -5,6 +5,7 @@ "website": "https://www.babylonchain.io", "network_type": "testnet", "pretty_name": "Babylon Testnet 3", + "chain_type": "cosmos", "chain_id": "bbn-test3", "pre_fork_chain_name": "babylontestnet1", "bech32_prefix": "bbn", diff --git a/testnets/babylontestnet1/assetlist.json b/testnets/babylontestnet1/assetlist.json index bc622ec163..337e077307 100644 --- a/testnets/babylontestnet1/assetlist.json +++ b/testnets/babylontestnet1/assetlist.json @@ -25,7 +25,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/babylontestnet1/chain.json b/testnets/babylontestnet1/chain.json index 39299e3630..92626e4033 100644 --- a/testnets/babylontestnet1/chain.json +++ b/testnets/babylontestnet1/chain.json @@ -5,6 +5,7 @@ "website": "https://www.babylonchain.io", "network_type": "testnet", "pretty_name": "Babylon Testnet", + "chain_type": "cosmos", "chain_id": "bbn-test1", "bech32_prefix": "bbn", "daemon_name": "babylond", diff --git a/testnets/bitcannadevnet/assetlist.json b/testnets/bitcannadevnet/assetlist.json index b8ddd8aec2..7a3e5d8945 100644 --- a/testnets/bitcannadevnet/assetlist.json +++ b/testnets/bitcannadevnet/assetlist.json @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet/images/bcna.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet/images/bcna.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/bitcannadevnet/chain.json b/testnets/bitcannadevnet/chain.json index a9188be2df..4139deab78 100644 --- a/testnets/bitcannadevnet/chain.json +++ b/testnets/bitcannadevnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "BitCanna Devnet-1", + "chain_type": "cosmos", "chain_id": "bitcanna-dev-1", "bech32_prefix": "bcna", "daemon_name": "bcnad", @@ -186,4 +187,4 @@ "tx_page": "https://explorer.stavr.tech/bitcanna-dev/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/bitcannadevnet2/assetlist.json b/testnets/bitcannadevnet2/assetlist.json index 56e0e1b7d1..52a4b94332 100644 --- a/testnets/bitcannadevnet2/assetlist.json +++ b/testnets/bitcannadevnet2/assetlist.json @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet2/images/bcna.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet2/images/bcna.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/bitcannadevnet2/chain.json b/testnets/bitcannadevnet2/chain.json index 41ca7240fe..0623745ad4 100644 --- a/testnets/bitcannadevnet2/chain.json +++ b/testnets/bitcannadevnet2/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "devnet", "pretty_name": "BitCanna Devnet-6 SDK v0.46.x", + "chain_type": "cosmos", "chain_id": "bitcanna-dev-6", "bech32_prefix": "bcna", "daemon_name": "bcnad", diff --git a/testnets/blockxtestnet/chain.json b/testnets/blockxtestnet/chain.json index 663c5472c7..a2fc6a5554 100644 --- a/testnets/blockxtestnet/chain.json +++ b/testnets/blockxtestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "blockxtestnet", + "chain_type": "cosmos", "chain_id": "blockx_19077-1", "pretty_name": "BlockX-Atlantis-Testnet", "website": "https://www.blockxnet.com/", @@ -9,7 +10,9 @@ "bech32_prefix": "blockx", "daemon_name": "blockxd", "node_home": "$HOME/.blockxd", - "key_algos": ["ethsecp256k1"], + "key_algos": [ + "ethsecp256k1" + ], "staking": { "staking_tokens": [ { @@ -17,4 +20,4 @@ } ] } -} +} \ No newline at end of file diff --git a/testnets/cascadiatestnet/assetlist.json b/testnets/cascadiatestnet/assetlist.json index c7b3dcaaa0..a684f919f0 100644 --- a/testnets/cascadiatestnet/assetlist.json +++ b/testnets/cascadiatestnet/assetlist.json @@ -15,7 +15,7 @@ } ], "base": "aCC", - "name": "Π‘ascadia Testnet", + "name": "\u0421ascadia Testnet", "display": "tCC", "symbol": "TCC", "logo_URIs": { @@ -29,7 +29,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cascadiatestnet/images/cascadia.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/cascadiatestnet/chain.json b/testnets/cascadiatestnet/chain.json index 6d88eb14f4..d2e81e9a6c 100644 --- a/testnets/cascadiatestnet/chain.json +++ b/testnets/cascadiatestnet/chain.json @@ -5,6 +5,7 @@ "network_type": "testnet", "website": "https://cascadia.foundation/", "pretty_name": "Cascadia", + "chain_type": "cosmos", "chain_id": "cascadia_6102-1", "bech32_prefix": "cascadia", "daemon_name": "cascadiad", @@ -51,7 +52,15 @@ "name": "v1", "genesis_url": "https://raw.githubusercontent.com/CascadiaFoundation/chain-configuration/master/testnet/genesis.json" }, - "versions": [] + "versions": [], + "sdk": { + "type": "cosmos", + "version": "0.46.10" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } }, "images": [ { diff --git a/testnets/celestiatestnet/assetlist.json b/testnets/celestiatestnet/assetlist.json index 963d7452ff..80d6da035b 100644 --- a/testnets/celestiatestnet/assetlist.json +++ b/testnets/celestiatestnet/assetlist.json @@ -24,7 +24,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/celestiatestnet/chain.json b/testnets/celestiatestnet/chain.json index da3f58b7c4..c47a50b128 100644 --- a/testnets/celestiatestnet/chain.json +++ b/testnets/celestiatestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "celestiatestnet", + "chain_type": "cosmos", "chain_id": "blockspacerace-0", "pretty_name": "Blockspace Race Testnet", "status": "killed", @@ -69,4 +70,4 @@ "tx_page": "https://mintscan.io/celestia-incentivized-testnet/txs/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/celestiatestnet2/assetlist.json b/testnets/celestiatestnet2/assetlist.json index c6f9746b04..9cd9078517 100644 --- a/testnets/celestiatestnet2/assetlist.json +++ b/testnets/celestiatestnet2/assetlist.json @@ -26,7 +26,8 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet2/images/celestia.svg", "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet2/images/celestia.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/celestiatestnet2/chain.json b/testnets/celestiatestnet2/chain.json index fd94d60945..3ebdb514c1 100644 --- a/testnets/celestiatestnet2/chain.json +++ b/testnets/celestiatestnet2/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "celestiatestnet2", + "chain_type": "cosmos", "chain_id": "arabica-11", "pretty_name": "Arabica Testnet", "status": "live", @@ -8,7 +9,9 @@ "bech32_prefix": "celestia", "daemon_name": "celestia-appd", "node_home": "$HOME/.celestia-app", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "slip44": 118, "fees": { "fee_tokens": [ @@ -23,16 +26,42 @@ }, "codebase": { "git_repo": "https://github.com/celestiaorg/celestia-app", - "recommended_version": "v1.6.0", - "compatible_versions": ["v1.3.0", "v1.4.0", "v1.5.0", "v1.6.0"], + "recommended_version": "v2.1.2", + "compatible_versions": [ + "v2.0.0", + "v2.1.0", + "v2.1.1", + "v2.1.2" + ], "genesis": { "genesis_url": "https://raw.githubusercontent.com/celestiaorg/networks/master/arabica-11/genesis.json" }, "versions": [ { - "name": "v1.3.0", - "recommended_version": "v1.6.0", - "compatible_versions": ["v1.3.0", "v1.4.0", "v1.5.0", "v1.6.0"] + "name": "v1", + "recommended_version": "v1.14.0", + "compatible_versions": [ + "v1.3.0", + "v1.6.0", + "v1.7.0", + "v1.9.0", + "v1.10.0", + "v1.10.1", + "v1.11.0", + "v1.12.0", + "v1.13.0", + "v1.14.0" + ] + }, + { + "name": "v2", + "recommended_version": "v2.1.2", + "compatible_versions": [ + "v2.0.0", + "v2.1.0", + "v2.1.1", + "v2.1.2" + ] } ] }, @@ -76,9 +105,9 @@ }, "explorers": [ { - "kind": "Ping.Pub", - "url": "https://explorer.celestia-arabica-11.com/arabica-11", - "tx_page": "https://explorer.celestia-arabica-11.com/arabica-11/tx/${txHash}" + "kind": "Celenium", + "url": "https://arabica.celenium.io/", + "tx_page": "https://arabica.celenium.io/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/celestiatestnet3/assetlist.json b/testnets/celestiatestnet3/assetlist.json index 2ae29123f4..b454281102 100644 --- a/testnets/celestiatestnet3/assetlist.json +++ b/testnets/celestiatestnet3/assetlist.json @@ -26,7 +26,8 @@ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet3/images/celestia.svg", "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet3/images/celestia.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/celestiatestnet3/chain.json b/testnets/celestiatestnet3/chain.json index 62f153c6d0..7c0e558000 100644 --- a/testnets/celestiatestnet3/chain.json +++ b/testnets/celestiatestnet3/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "celestiatestnet3", + "chain_type": "cosmos", "chain_id": "mocha-4", "pretty_name": "Mocha Testnet", "status": "live", @@ -8,7 +9,9 @@ "bech32_prefix": "celestia", "daemon_name": "celestia-appd", "node_home": "$HOME/.celestia-app", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "slip44": 118, "fees": { "fee_tokens": [ @@ -23,16 +26,42 @@ }, "codebase": { "git_repo": "https://github.com/celestiaorg/celestia-app", - "recommended_version": "v1.3.0", - "compatible_versions": ["v1.3.0"], + "recommended_version": "v2.1.2", + "compatible_versions": [ + "v2.0.0", + "v2.1.0", + "v2.1.1", + "v2.1.2" + ], "genesis": { "genesis_url": "https://raw.githubusercontent.com/celestiaorg/networks/master/mocha-4/genesis.json" }, "versions": [ { - "name": "v1.3.0", - "recommended_version": "v1.3.0", - "compatible_versions": ["v1.3.0"] + "name": "v1", + "recommended_version": "v1.14.0", + "compatible_versions": [ + "v1.3.0", + "v1.6.0", + "v1.7.0", + "v1.9.0", + "v1.10.0", + "v1.10.1", + "v1.11.0", + "v1.12.0", + "v1.13.0", + "v1.14.0" + ] + }, + { + "name": "v2", + "recommended_version": "v2.1.2", + "compatible_versions": [ + "v2.0.0", + "v2.1.0", + "v2.1.1", + "v2.1.2" + ] } ] }, @@ -171,4 +200,4 @@ "account_page": "https://explorer.testnet.dteam.tech/celestia/account/${accountAddress}" } ] -} +} \ No newline at end of file diff --git a/testnets/chain4energytestnet/assetlist.json b/testnets/chain4energytestnet/assetlist.json index 2029f29068..a674d44d60 100644 --- a/testnets/chain4energytestnet/assetlist.json +++ b/testnets/chain4energytestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "chain4energytestnet", "assets": [ { @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/chain4energytestnet/chain.json b/testnets/chain4energytestnet/chain.json index cb71a2ab9d..bc319ee64c 100644 --- a/testnets/chain4energytestnet/chain.json +++ b/testnets/chain4energytestnet/chain.json @@ -1,10 +1,11 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "chain4energytestnet", "status": "live", "network_type": "testnet", "website": "https://c4e.io/", "pretty_name": "Chain4Energy Testnet", + "chain_type": "cosmos", "chain_id": "babajaga-1", "bech32_prefix": "c4e", "daemon_name": "c4ed", diff --git a/testnets/cheqdtestnet/assetlist.json b/testnets/cheqdtestnet/assetlist.json index 7ab6a7b0dd..2046cdedff 100644 --- a/testnets/cheqdtestnet/assetlist.json +++ b/testnets/cheqdtestnet/assetlist.json @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cheqdtestnet/images/cheq.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cheqdtestnet/images/cheq.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/cheqdtestnet/chain.json b/testnets/cheqdtestnet/chain.json index c6bc9a075a..ba0d91de32 100644 --- a/testnets/cheqdtestnet/chain.json +++ b/testnets/cheqdtestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "cheqd", + "chain_type": "cosmos", "chain_id": "cheqd-testnet-6", "bech32_prefix": "cheqd", "daemon_name": "cheqd-noded", @@ -34,7 +35,6 @@ "darwin/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v2.0.1/cheqd-noded-2.0.1-darwin-arm64.tar.gz" }, "cosmos_sdk_version": "cheqd/cosmos-sdk v0.47.10-height-mismatch", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "0.37.5" @@ -54,7 +54,6 @@ "v0.6.10" ], "cosmos_sdk_version": "cheqd/cosmos-sdk v0.45.9-cheqd-tag", - "ibc_go_version": "v3.3.0", "consensus": { "type": "tendermint", "version": "0.34.21" @@ -65,7 +64,17 @@ "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v0.6.10/cheqd-noded-0.6.10-linux-x86_64.tar.gz", "linux/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v0.6.10/cheqd-noded-0.6.10-linux-arm64.tar.gz" }, - "next_version_name": "v1" + "next_version_name": "v1", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/cheqd/cosmos-sdk", + "version": "v0.45.9", + "tag": "v0.45.9-cheqd-tag" + }, + "ibc": { + "type": "go", + "version": "v3.3.0" + } }, { "name": "v1", @@ -79,7 +88,6 @@ "v1.4.5" ], "cosmos_sdk_version": "cheqd/cosmos-sdk v0.46.10-barberry", - "ibc_go_version": "v6.1.1", "consensus": { "type": "tendermint", "version": "0.34.26" @@ -91,7 +99,17 @@ "darwin/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v1.4.5/cheqd-noded-1.4.5-darwin-arm64.tar.gz" }, "previous_version_name": "v0.6", - "next_version_name": "v2" + "next_version_name": "v2", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/cheqd/cosmos-sdk", + "version": "v0.46.10", + "tag": "v0.46.10-barberry" + }, + "ibc": { + "type": "go", + "version": "v6.1.1" + } }, { "name": "v2", @@ -101,7 +119,6 @@ "v2.0.1" ], "cosmos_sdk_version": "cheqd/cosmos-sdk v0.47.10-height-mismatch", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "0.37.5" @@ -115,9 +132,29 @@ "darwin/arm64": "https://github.com/cheqd/cheqd-node/releases/download/v2.0.1/cheqd-noded-2.0.1-darwin-arm64.tar.gz" }, "previous_version_name": "v1", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/cheqd/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-height-mismatch" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/cheqd/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-height-mismatch" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } }, "peers": { "seeds": [ diff --git a/testnets/chimbatestnet/assetlist.json b/testnets/chimbatestnet/assetlist.json index d39a019292..b10c852d6c 100644 --- a/testnets/chimbatestnet/assetlist.json +++ b/testnets/chimbatestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "chimbatestnet", "assets": [ { @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/chimbatestnet/chain.json b/testnets/chimbatestnet/chain.json index c857b35c9f..1c49a880e2 100644 --- a/testnets/chimbatestnet/chain.json +++ b/testnets/chimbatestnet/chain.json @@ -1,10 +1,11 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "chimbatestnet", "status": "live", "network_type": "testnet", "website": "https://chimba.ooo/", "pretty_name": "Chimba", + "chain_type": "cosmos", "chain_id": "chimba-testnet", "bech32_prefix": "chimba", "daemon_name": "chimbad", diff --git a/testnets/composabletestnet/assetlist.json b/testnets/composabletestnet/assetlist.json index a6967d9d16..063306a4cd 100644 --- a/testnets/composabletestnet/assetlist.json +++ b/testnets/composabletestnet/assetlist.json @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/composabletestnet/chain.json b/testnets/composabletestnet/chain.json index a3290f866b..8ebd18d584 100644 --- a/testnets/composabletestnet/chain.json +++ b/testnets/composabletestnet/chain.json @@ -1,16 +1,17 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "composabletestnet", "status": "live", "network_type": "testnet", "pretty_name": "Composable Testnet", + "chain_type": "cosmos", "chain_id": "banksy-testnet-3", "bech32_prefix": "centauri", "daemon_name": "centaurid", "node_home": "$HOME/.banksy", "key_algos": [ "secp256k1" - ], + ], "slip44": 118, "staking": { "staking_tokens": [ @@ -119,4 +120,4 @@ "tx_page": "https://explorer.sr20de.xyz/Composible-3/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/coolcattestnet/assetlist.json b/testnets/coolcattestnet/assetlist.json index 82df957f90..a865643b47 100644 --- a/testnets/coolcattestnet/assetlist.json +++ b/testnets/coolcattestnet/assetlist.json @@ -32,7 +32,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/coolcattestnet/images/coolcat.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/coolcattestnet/images/coolcat.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/coolcattestnet/chain.json b/testnets/coolcattestnet/chain.json index 24b53b0d26..57a61ec32d 100644 --- a/testnets/coolcattestnet/chain.json +++ b/testnets/coolcattestnet/chain.json @@ -5,6 +5,7 @@ "network_type": "testnet", "website": "https://app.coolcat.space/", "pretty_name": "CoolCat", + "chain_type": "cosmos", "chain_id": "kitten-04", "bech32_prefix": "ccat", "key_algos": [ diff --git a/testnets/coreumtestnet/assetlist.json b/testnets/coreumtestnet/assetlist.json index 713c19d647..3f1b78a6af 100644 --- a/testnets/coreumtestnet/assetlist.json +++ b/testnets/coreumtestnet/assetlist.json @@ -36,7 +36,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/coreumtestnet/chain.json b/testnets/coreumtestnet/chain.json index 069de6ea21..9842a32b73 100644 --- a/testnets/coreumtestnet/chain.json +++ b/testnets/coreumtestnet/chain.json @@ -5,6 +5,7 @@ "network_type": "testnet", "website": "https://www.coreum.com", "pretty_name": "Coreum", + "chain_type": "cosmos", "chain_id": "coreum-testnet-1", "bech32_prefix": "testcore", "daemon_name": "cored", @@ -75,7 +76,15 @@ }, "cosmwasm_version": "0.30", "cosmwasm_enabled": true, - "next_version_name": "v1" + "next_version_name": "v1", + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } }, { "name": "v1", @@ -97,7 +106,15 @@ "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v1.0.0/cored-linux-amd64?checksum=sha256:34098ad7586bda364b1b2e7c4569cbcefb630cd4ed7c8f68eb5bced834082c57", "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v1.0.0/cored-linux-arm64?checksum=sha256:3ced97f06607f0cdaf77e7ff0b36b2011d101c660684e4f3e54c2ac6bf344dd6" }, - "next_version_name": "v2" + "next_version_name": "v2", + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } }, { "name": "v2", @@ -119,7 +136,15 @@ "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v2.0.0/cored-linux-amd64?checksum=sha256:7848022a3a35723ecef02eb835fbf139989aace8d780186018dbcdebdc57d694", "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v2.0.0/cored-linux-arm64?checksum=sha256:c082eeebbc206633f1b71ef9c16a7f390f5ea5b27ce06c735ed7a632f38b5891" }, - "next_version_name": "v2patch1" + "next_version_name": "v2patch1", + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } }, { "name": "v2patch1", @@ -141,7 +166,15 @@ "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v2.0.2/cored-linux-amd64?checksum=sha256:3facf55f7ff795719f68b9bcf76ea08262bc7c9e9cd735c660257ba73678250e", "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v2.0.2/cored-linux-arm64?checksum=sha256:35e261eb3b87c833c30174e6b8667a6155f5962441275d443157e209bbb0bf0d" }, - "next_version_name": "v3" + "next_version_name": "v3", + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } }, { "name": "v3", @@ -163,7 +196,15 @@ "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.0/cored-linux-amd64?checksum=sha256:0198b5bf7a32b0e76c57f5fe30bcb27bdc69ba91cd6e4fc8c416bea3a1251a24", "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.0/cored-linux-arm64?checksum=sha256:192eaf4fcc49c3ea3339d12f53c905420575d00d605048e526a994a0c4368768" }, - "next_version_name": "v3patch1" + "next_version_name": "v3patch1", + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "version": "0.44", + "enabled": true + } }, { "name": "v3patch1", @@ -185,7 +226,15 @@ "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.1/cored-linux-amd64?checksum=sha256:4d533ed578bb3dddf0142095bf62c63c2f25edf8248df1e8f88b35361be180c4", "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.1/cored-linux-arm64?checksum=sha256:83b88f8323061d5dd6aa08895a7ebde7491ccf6360538151e811b7edac9dd1c5" }, - "next_version_name": "v3patch2" + "next_version_name": "v3patch2", + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "version": "0.44", + "enabled": true + } }, { "name": "v3patch2", @@ -206,9 +255,25 @@ "binaries": { "linux/amd64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.3/cored-linux-amd64?checksum=sha256:1719a32e6f8e8813d00cd86e1d8d02e893324d4f59fa7a1b8cedc5836140ecef", "linux/arm64": "https://github.com/CoreumFoundation/coreum/releases/download/v3.0.3/cored-linux-arm64?checksum=sha256:cfbbad6803c0327407e4dd222a108505e6ff9e294d7c86e34b6b895b96b61bbd" + }, + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "version": "0.44", + "enabled": true } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } }, "images": [ { diff --git a/testnets/cosmoshubtestnet/assetlist.json b/testnets/cosmoshubtestnet/assetlist.json index 0342e2f9c4..4971886f52 100644 --- a/testnets/cosmoshubtestnet/assetlist.json +++ b/testnets/cosmoshubtestnet/assetlist.json @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/cosmoshubtestnet/chain.json b/testnets/cosmoshubtestnet/chain.json index e88f9bc7a7..bbc279ac83 100644 --- a/testnets/cosmoshubtestnet/chain.json +++ b/testnets/cosmoshubtestnet/chain.json @@ -1,8 +1,9 @@ { "$schema": "../../chain.schema.json", "chain_name": "cosmoshubtestnet", + "chain_type": "cosmos", "chain_id": "theta-testnet-001", - "pretty_name": "Cosmos Hub Public Testnet", + "pretty_name": "[DEPRECATED] Cosmos Hub Public Testnet, will be sunset 2024-12-01", "status": "live", "network_type": "testnet", "bech32_prefix": "cosmos", @@ -159,6 +160,10 @@ }, "apis": { "rpc": [ + { + "address": "https://cosmoshubt.tendermintrpc.lava.build:443", + "provider": "Lava" + }, { "address": "https://rpc.sentry-01.theta-testnet.polypore.xyz", "provider": "Hypha" @@ -185,6 +190,10 @@ } ], "rest": [ + { + "address": "https://cosmoshubt.lava.build", + "provider": "Lava" + }, { "address": "https://rest.sentry-01.theta-testnet.polypore.xyz", "provider": "Hypha" @@ -211,6 +220,10 @@ } ], "grpc": [ + { + "address": "cosmoshubt.grpc.lava.build", + "provider": "Lava" + }, { "address": "https://grpc.sentry-01.theta-testnet.polypore.xyz", "provider": "Hypha" diff --git a/testnets/cosmosicsprovidertestnet/assetlist.json b/testnets/cosmosicsprovidertestnet/assetlist.json index 21ae0a33ee..89aa20c889 100644 --- a/testnets/cosmosicsprovidertestnet/assetlist.json +++ b/testnets/cosmosicsprovidertestnet/assetlist.json @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } - ] + ], + "type_asset": "sdk.coin" } ] -} +} \ No newline at end of file diff --git a/testnets/cosmosicsprovidertestnet/chain.json b/testnets/cosmosicsprovidertestnet/chain.json index 4cfe76b0e2..6077990010 100644 --- a/testnets/cosmosicsprovidertestnet/chain.json +++ b/testnets/cosmosicsprovidertestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "cosmosicsprovidertestnet", + "chain_type": "cosmos", "chain_id": "provider", "pretty_name": "Cosmos ICS Provider Testnet", "status": "live", @@ -32,23 +33,22 @@ }, "codebase": { "git_repo": "https://github.com/cosmos/gaia", - "recommended_version": "v18.0.0-rc3", + "recommended_version": "v20.0.0-rc0", "compatible_versions": [ - "v18.0.0-rc3" + "v20.0.0-rc0" ], - "cosmos_sdk_version": "v0.47.16-ics-lsm", - "ibc_go_version": "v7.6.0", + "cosmos_sdk_version": "v0.50.9-lsm", "consensus": { "type": "cometbft", - "version": "v0.37.6" + "version": "v0.38.11" }, "binaries": { - "linux/amd64": "https://github.com/cosmos/gaia/releases/download/v18.0.0-rc3/gaiad-v18.0.0-rc3-linux-amd64", - "linux/arm64": "https://github.com/cosmos/gaia/releases/download/v18.0.0-rc3/gaiad-v18.0.0-rc3-linux-arm64", - "darwin/amd64": "https://github.com/cosmos/gaia/releases/download/v18.0.0-rc3/gaiad-v18.0.0-rc3-darwin-amd64", - "darwin/arm64": "https://github.com/cosmos/gaia/releases/download/v18.0.0-rc3/gaiad-v18.0.0-rc3-darwin-arm64", - "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v18.0.0-rc3/gaiad-v18.0.0-rc3-darwin-amd64", - "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v18.0.0-rc3/gaiad-v18.0.0-rc3-windows-arm64.exe" + "linux/amd64": "https://github.com/cosmos/gaia/releases/download/v20.0.0-rc0/gaiad-v20.0.0-rc0-linux-amd64", + "linux/arm64": "https://github.com/cosmos/gaia/releases/download/v20.0.0-rc0/gaiad-v20.0.0-rc0-linux-arm64", + "darwin/amd64": "https://github.com/cosmos/gaia/releases/download/v20.0.0-rc0/gaiad-v20.0.0-rc0-darwin-amd64", + "darwin/arm64": "https://github.com/cosmos/gaia/releases/download/v20.0.0-rc0/gaiad-v20.0.0-rc0-darwin-arm64", + "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v20.0.0-rc0/gaiad-v20.0.0-rc0-darwin-amd64", + "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v20.0.0-rc0/gaiad-v20.0.0-rc0-windows-arm64.exe" }, "genesis": { "genesis_url": "https://raw.githubusercontent.com/cosmos/testnets/master/interchain-security/provider/provider-genesis.json" @@ -158,7 +158,6 @@ "v18.0.0-rc3" ], "cosmos_sdk_version": "v0.47.16-ics-lsm", - "ibc_go_version": "v7.6.0", "consensus": { "type": "cometbft", "version": "v0.37.6" @@ -171,9 +170,58 @@ "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v18.0.0-rc3/gaiad-v18.0.0-rc3-darwin-amd64", "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v18.0.0-rc3/gaiad-v18.0.0-rc3-windows-arm64.exe" }, - "next_version_name": "v19" + "next_version_name": "v19", + "sdk": { + "type": "cosmos", + "version": "v0.47.16", + "tag": "v0.47.16-ics-lsm" + }, + "ibc": { + "type": "go", + "version": "v7.6.0" + } + }, + { + "name": "v20", + "tag": "v20.0.0-rc0", + "recommended_version": "v20.0.0-rc0", + "compatible_versions": [ + "v20.0.0-rc0" + ], + "cosmos_sdk_version": "v0.50.9-lsm", + "consensus": { + "type": "cometbft", + "version": "v0.37.6" + }, + "binaries": { + "linux/amd64": "https://github.com/cosmos/gaia/releases/download/v20.0.0-rc0/gaiad-v20.0.0-rc0-linux-amd64", + "linux/arm64": "https://github.com/cosmos/gaia/releases/download/v20.0.0-rc0/gaiad-v20.0.0-rc0-linux-arm64", + "darwin/amd64": "https://github.com/cosmos/gaia/releases/download/v20.0.0-rc0/gaiad-v20.0.0-rc0-darwin-amd64", + "darwin/arm64": "https://github.com/cosmos/gaia/releases/download/v20.0.0-rc0/gaiad-v20.0.0-rc0-darwin-arm64", + "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v20.0.0-rc0/gaiad-v20.0.0-rc0-darwin-amd64", + "windows/arm64": "https://github.com/cosmos/gaia/releases/download/v20.0.0-rc0/gaiad-v20.0.0-rc0-windows-arm64.exe" + }, + "next_version_name": "v21", + "sdk": { + "type": "cosmos", + "version": "v0.50.9", + "tag": "v0.50.9-lsm" + }, + "ibc": { + "type": "go", + "version": "v8.5.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.50.9", + "tag": "v0.50.9-lsm" + }, + "ibc": { + "type": "go", + "version": "v8.5.1" + } }, "peers": { "seeds": [ @@ -250,7 +298,7 @@ { "kind": "Mintscan", "url": "https://mintscan.io/ics-testnet-provider", - "tx_page": "https://mintscan.io/ics-testnet-provider/txs/${txHash}" + "tx_page": "https://mintscan.io/ics-testnet-provider/tx/${txHash}" }, { "kind": "Ping.pub", @@ -258,4 +306,4 @@ "tx_page": "https://explorer.rs-testnet.polypore.xyz/provider/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/cosmwasmtestnet/assetlist.json b/testnets/cosmwasmtestnet/assetlist.json index 8f44e7d152..44e8a53f3c 100644 --- a/testnets/cosmwasmtestnet/assetlist.json +++ b/testnets/cosmwasmtestnet/assetlist.json @@ -25,7 +25,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Staking Token", @@ -50,7 +51,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/cosmwasmtestnet/chain.json b/testnets/cosmwasmtestnet/chain.json index 34be717b49..1f8e27385d 100644 --- a/testnets/cosmwasmtestnet/chain.json +++ b/testnets/cosmwasmtestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "CosmWasm Testnet", + "chain_type": "cosmos", "chain_id": "malaga-420", "bech32_prefix": "wasm", "daemon_name": "wasmd", @@ -58,9 +59,25 @@ "version": "0.34" }, "cosmwasm_version": "0.27", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.27", + "enabled": true + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.27", + "enabled": true + } }, "peers": { "seeds": [], diff --git a/testnets/cosstestnet/assetlist.json b/testnets/cosstestnet/assetlist.json index 7f42ac510d..021b723379 100644 --- a/testnets/cosstestnet/assetlist.json +++ b/testnets/cosstestnet/assetlist.json @@ -19,7 +19,8 @@ "base": "ucgas", "name": "cgas", "display": "cgas", - "symbol": "cgas" + "symbol": "cgas", + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/cosstestnet/chain.json b/testnets/cosstestnet/chain.json index 69bc04e10c..0f8ad79afc 100644 --- a/testnets/cosstestnet/chain.json +++ b/testnets/cosstestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "COSS Testnet", + "chain_type": "cosmos", "chain_id": "coss-testnet-1", "bech32_prefix": "coss", "daemon_name": "cossd", @@ -44,6 +45,13 @@ "cosmwasm_enabled": false, "genesis": { "genesis_url": "https://github.com/coss-inscription/networks/blob/main/testnet/coss-testnet-1/genesis.json" + }, + "sdk": { + "type": "cosmos", + "version": "0.50.2" + }, + "cosmwasm": { + "enabled": false } }, "peers": { @@ -76,4 +84,4 @@ } ] } -} +} \ No newline at end of file diff --git a/testnets/cudostestnet/assetlist.json b/testnets/cudostestnet/assetlist.json index 2f6d3cc048..10638b0542 100644 --- a/testnets/cudostestnet/assetlist.json +++ b/testnets/cudostestnet/assetlist.json @@ -31,7 +31,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cudostestnet/images/cudos.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cudostestnet/images/cudos.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/cudostestnet/chain.json b/testnets/cudostestnet/chain.json index 427f715804..9f870f7a45 100644 --- a/testnets/cudostestnet/chain.json +++ b/testnets/cudostestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Cudos Testnet", + "chain_type": "cosmos", "chain_id": "cudos-testnet-public-3", "bech32_prefix": "cudos", "key_algos": [ diff --git a/testnets/deardogetestnet/assetlist.json b/testnets/deardogetestnet/assetlist.json index ed0a0055e9..e456e1431f 100644 --- a/testnets/deardogetestnet/assetlist.json +++ b/testnets/deardogetestnet/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/deardogetestnet/images/deardoge.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/deardogetestnet/chain.json b/testnets/deardogetestnet/chain.json index 9fe4e5f7ae..72b9a70a32 100644 --- a/testnets/deardogetestnet/chain.json +++ b/testnets/deardogetestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "deardogetestnet", + "chain_type": "cosmos", "chain_id": "deardoge-testnet", "pretty_name": "Dear Doge Testnet", "status": "live", @@ -8,7 +9,9 @@ "bech32_prefix": "deardoge", "daemon_name": "dogd", "node_home": "$HOME/.deardoge", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "slip44": 118, "fees": { "fee_tokens": [ @@ -28,8 +31,9 @@ "codebase": { "git_repo": "https://github.com/DoraFactory/Dear-Doge", "recommended_version": "v11.0.0", - "compatible_versions": ["v11.0.0"], - "binaries": {}, + "compatible_versions": [ + "v11.0.0" + ], "genesis": { "genesis_url": "https://github.com/DoraFactory/Dear-Doge/blob/main/config/testnet/genesis.json" }, @@ -37,20 +41,23 @@ { "name": "v9.0.1", "recommended_version": "v9.0.1", - "compatible_versions": ["v9.0.1"], - "binaries": {} + "compatible_versions": [ + "v9.0.1" + ] }, { "name": "v10.0.1", "recommended_version": "v10.0.1", - "compatible_versions": ["v10.0.1"], - "binaries": {} + "compatible_versions": [ + "v10.0.1" + ] }, { "name": "v11", "recommended_version": "v11.0.0", - "compatible_versions": ["v11.0.0"], - "binaries": {} + "compatible_versions": [ + "v11.0.0" + ] } ] }, @@ -85,4 +92,4 @@ "tx_page": "https://testnet-explorer.deardoge.org/deardoge/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/desmostestnet/assetlist.json b/testnets/desmostestnet/assetlist.json index 3c8bf972e6..36cfb3e6a3 100644 --- a/testnets/desmostestnet/assetlist.json +++ b/testnets/desmostestnet/assetlist.json @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/desmos/images/dsm.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/desmos/images/dsm.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/desmostestnet/chain.json b/testnets/desmostestnet/chain.json index 6d6c94a63c..1fcc7644f7 100644 --- a/testnets/desmostestnet/chain.json +++ b/testnets/desmostestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Desmos Testnet", + "chain_type": "cosmos", "chain_id": "morpheus-apollo-3", "bech32_prefix": "desmos", "daemon_name": "desmos", diff --git a/testnets/dhealthtestnet/assetlist.json b/testnets/dhealthtestnet/assetlist.json new file mode 100644 index 0000000000..0e0d77ac76 --- /dev/null +++ b/testnets/dhealthtestnet/assetlist.json @@ -0,0 +1,37 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "dhealthtestnet", + "assets": [ + { + "description": "The native token of dHealth testnet.", + "denom_units": [ + { + "denom": "utdhp", + "exponent": 0 + }, + { + "denom": "tdhp", + "exponent": 6 + } + ], + "base": "utdhp", + "name": "Digital Health Point Testnet", + "display": "tdhp", + "symbol": "tDHP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dhealthtestnet/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dhealthtestnet/images/dhp.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dhealthtestnet/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dhealthtestnet/images/dhp.svg", + "theme": { + "primary_color_hex": "#140c7c" + } + } + ], + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/testnets/dhealthtestnet/chain.json b/testnets/dhealthtestnet/chain.json new file mode 100644 index 0000000000..72b8afb94c --- /dev/null +++ b/testnets/dhealthtestnet/chain.json @@ -0,0 +1,122 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "dhealthtestnet", + "chain_type": "cosmos", + "chain_id": "dhealth-testnet-2", + "pretty_name": "dHealth Testnet", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "tdh02", + "daemon_name": "dhealth-testnetd", + "node_home": "$HOME/.dhealth-testnet", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "utdhp", + "fixed_min_gas_price": 0.01, + "low_gas_price": 0.025, + "average_gas_price": 0.03, + "high_gas_price": 0.035 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "utdhp" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/dhealthproject/dhealth-testnet", + "recommended_version": "v2.1.1", + "compatible_versions": [ + "v2.1.1" + ], + "cosmos_sdk_version": "cosmos/cosmos-sdk v0.47.4", + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "cosmwasm_version": "v0.41.0", + "cosmwasm_enabled": true, + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/dhealthproject/mainnet/main/genesis.json" + }, + "versions": [ + { + "name": "v2", + "recommended_version": "v2.1.1", + "compatible_versions": [ + "v2.1.1" + ], + "cosmos_sdk_version": "v0.47.4", + "sdk": { + "type": "cosmos", + "version": "v0.47.4" + } + } + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/cosmos/cosmos-sdk", + "version": "v0.47.4" + }, + "cosmwasm": { + "version": "v0.41.0", + "path": "$HOME/.dhealth/wasm", + "enabled": true + } + }, + "peers": { + "seeds": [ + { + "id": "fc0c8cc6ea5aa458c9c980ef5d3f1f76861f8b4b", + "address": "216.181.107.25:26656", + "provider": "dhealth" + }, + { + "id": "c1ba82a9dad2d0f7340bce31c3956fed9a2741b7", + "address": "88.214.21.104:26656", + "provider": "dhealth" + } + ], + "persistent_peers": [ + { + "id": "fc0c8cc6ea5aa458c9c980ef5d3f1f76861f8b4b", + "address": "216.181.107.25:26656", + "provider": "dhealth" + }, + { + "id": "c1ba82a9dad2d0f7340bce31c3956fed9a2741b7", + "address": "88.214.21.104:26656", + "provider": "dhealth" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc-testnet.dhealth.dev", + "provider": "dHealth" + } + ], + "rest": [ + { + "address": "https://lcd-testnet.dhealth.dev", + "provider": "dHealth" + } + ], + "grpc": [ + { + "address": "rpc-testnet.dhealth.dev:9090", + "provider": "dHealth" + } + ] + }, + "explorers": [] +} \ No newline at end of file diff --git a/testnets/dhealthtestnet/images/dhp.png b/testnets/dhealthtestnet/images/dhp.png new file mode 100644 index 0000000000..d8063ffa4f Binary files /dev/null and b/testnets/dhealthtestnet/images/dhp.png differ diff --git a/testnets/dhealthtestnet/images/dhp.svg b/testnets/dhealthtestnet/images/dhp.svg new file mode 100644 index 0000000000..5652b52649 --- /dev/null +++ b/testnets/dhealthtestnet/images/dhp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/testnets/doravotatestnet/assetlist.json b/testnets/doravotatestnet/assetlist.json index 70ba9d172d..669fb6bb0b 100644 --- a/testnets/doravotatestnet/assetlist.json +++ b/testnets/doravotatestnet/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/doravotatestnet/images/doravota.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/doravotatestnet/chain.json b/testnets/doravotatestnet/chain.json index 3807ffdcde..4743e941ff 100644 --- a/testnets/doravotatestnet/chain.json +++ b/testnets/doravotatestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "doravotatestnet", + "chain_type": "cosmos", "chain_id": "vota-testnet", "pretty_name": "Dora Vota Testnet", "status": "live", @@ -33,8 +34,6 @@ "compatible_versions": [ "v11.0.0" ], - "binaries": { - }, "genesis": { "genesis_url": "https://github.com/DoraFactory/doravota/blob/main/config/testnet/genesis.json" }, @@ -44,33 +43,26 @@ "recommended_version": "v9.0.1", "compatible_versions": [ "v9.0.1" - ], - "binaries": { - } + ] }, { "name": "v10.0.1", "recommended_version": "v10.0.1", "compatible_versions": [ "v10.0.1" - ], - "binaries": { - } + ] }, { "name": "v11", "recommended_version": "v11.0.0", "compatible_versions": [ "v11.0.0" - ], - "binaries": { - } + ] } ] }, "peers": { - "seeds": [ - ], + "seeds": [], "persistent_peers": [] }, "apis": { @@ -100,4 +92,4 @@ "tx_page": "https://maci-explorer-test.dorafactory.org/dora/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/doravotatestnet2/assetlist.json b/testnets/doravotatestnet2/assetlist.json index f9f8172f7c..80f8d66f12 100644 --- a/testnets/doravotatestnet2/assetlist.json +++ b/testnets/doravotatestnet2/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/doravotatestnet/images/doravota.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/doravotatestnet2/chain.json b/testnets/doravotatestnet2/chain.json index d463ef4e12..43beed67e0 100644 --- a/testnets/doravotatestnet2/chain.json +++ b/testnets/doravotatestnet2/chain.json @@ -1,14 +1,17 @@ { "$schema": "../../chain.schema.json", "chain_name": "doravotatestnet2", + "chain_type": "cosmos", "chain_id": "vota-vk", "pretty_name": "Dora Vota Incentive Testnet", - "status": "live", + "status": "killed", "network_type": "testnet", "bech32_prefix": "dora", "daemon_name": "dorad", "node_home": "$HOME/.dora", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "slip44": 118, "fees": { "fee_tokens": [ @@ -28,8 +31,9 @@ "codebase": { "git_repo": "https://github.com/dorafactory/doravota", "recommended_version": "v11.0.0", - "compatible_versions": ["v11.0.0"], - "binaries": {}, + "compatible_versions": [ + "v11.0.0" + ], "genesis": { "genesis_url": "https://github.com/DoraFactory/doravota/blob/main/config/incentive/genesis.json" }, @@ -37,20 +41,23 @@ { "name": "v9.0.1", "recommended_version": "v9.0.1", - "compatible_versions": ["v9.0.1"], - "binaries": {} + "compatible_versions": [ + "v9.0.1" + ] }, { "name": "v10.0.1", "recommended_version": "v10.0.1", - "compatible_versions": ["v10.0.1"], - "binaries": {} + "compatible_versions": [ + "v10.0.1" + ] }, { "name": "v11", "recommended_version": "v11.0.0", - "compatible_versions": ["v11.0.0"], - "binaries": {} + "compatible_versions": [ + "v11.0.0" + ] } ] }, diff --git a/testnets/dydxtestnet/assetlist.json b/testnets/dydxtestnet/assetlist.json index 80ac7f7c75..5530d36453 100644 --- a/testnets/dydxtestnet/assetlist.json +++ b/testnets/dydxtestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "dydxtestnet", "assets": [ { @@ -35,7 +35,10 @@ "base_denom": "adydx" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg", + "theme": { + "primary_color_hex": "#21212f" + } }, { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg", @@ -47,7 +50,8 @@ "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" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/dydxtestnet/chain.json b/testnets/dydxtestnet/chain.json index 34d70267ad..1c68e41e3d 100644 --- a/testnets/dydxtestnet/chain.json +++ b/testnets/dydxtestnet/chain.json @@ -1,10 +1,11 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "dydxtestnet", "status": "live", "website": "https://dydx.trade/", "network_type": "testnet", "pretty_name": "dYdX Protocol", + "chain_type": "cosmos", "chain_id": "dydx-testnet-4", "bech32_prefix": "dydx", "daemon_name": "dydxprotocold", @@ -40,7 +41,7 @@ "cosmos_sdk_version": "v0.47.4", "cosmwasm_enabled": false, "genesis": { - "genesis_url": "https://raw.githubusercontent.com/dydxopsdao/networks/main/dydx-mainnet-1/genesis.json" + "genesis_url": "https://raw.githubusercontent.com/dydxprotocol/v4-testnets/main/dydx-testnet-4/genesis.json" }, "versions": [ { @@ -49,9 +50,20 @@ "compatible_versions": [ "v2.0.0" ], - "cosmos_sdk_version": "v0.47.4" + "cosmos_sdk_version": "v0.47.4", + "sdk": { + "type": "cosmos", + "version": "v0.47.4" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.4" + }, + "cosmwasm": { + "enabled": false + } }, "description": "Our goal is to build open source code that can power a first class product and trading experience.", "peers": { @@ -162,7 +174,10 @@ "chain_name": "dydx" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg", + "theme": { + "primary_color_hex": "#21212f" + } } ] } \ No newline at end of file diff --git a/testnets/elystestnet/assetlist.json b/testnets/elystestnet/assetlist.json index e9289eca54..2f1fbdbee4 100644 --- a/testnets/elystestnet/assetlist.json +++ b/testnets/elystestnet/assetlist.json @@ -37,7 +37,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/elys.png" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Eden token definition", @@ -73,7 +74,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/eden.png" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "USDC from Noble", @@ -112,13 +114,17 @@ "chain_name": "noble", "base_denom": "uusdc" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } } ], "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" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } }, { @@ -158,7 +164,10 @@ "base_denom": "uatom" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg", + "theme": { + "primary_color_hex": "#272d45" + } } ], "logo_URIs": { diff --git a/testnets/elystestnet/chain.json b/testnets/elystestnet/chain.json index 773a910db2..35fe2e6bd9 100644 --- a/testnets/elystestnet/chain.json +++ b/testnets/elystestnet/chain.json @@ -4,11 +4,14 @@ "status": "live", "network_type": "testnet", "pretty_name": "Elys Network", + "chain_type": "cosmos", "chain_id": "elystestnet-1", "bech32_prefix": "elys", "daemon_name": "elysd", "node_home": "$HOME/.elys", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "slip44": 118, "staking": { "staking_tokens": [ @@ -48,13 +51,14 @@ "codebase": { "git_repo": "https://github.com/elys-network/elys", "recommended_version": "v0.12.0", - "compatible_versions": ["v0.12.0"], + "compatible_versions": [ + "v0.12.0" + ], "cosmos_sdk_version": "v0.47", "consensus": { "type": "cometbft", "version": "0.37.2" }, - "ibc_go_version": "v7.3.0", "cosmwasm_enabled": false, "genesis": { "genesis_url": "https://snapshots.polkachu.com/testnet-genesis/elys/genesis.json" @@ -63,22 +67,36 @@ { "name": "v0.2.3", "recommended_version": "v0.2.3", - "compatible_versions": ["v0.2.3"], + "compatible_versions": [ + "v0.2.3" + ], "cosmos_sdk_version": "v0.46", "consensus": { "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "v6.1.0", "cosmwasm_enabled": false, "binaries": { "linux/amd64": "https://github.com/elys-network/elys/releases/download/v0.2.3/elys._v0.2.3_linux_amd64.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "v0.46" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v6.1.0" } }, { "name": "v0.3.1", "recommended_version": "v0.3.1", - "compatible_versions": ["v0.3.1"], + "compatible_versions": [ + "v0.3.1" + ], "binaries": { "linux/amd64": "https://github.com/elys-network/elys/releases/download/v0.3.1/elys._v0.3.1_linux_amd64.tar.gz" } @@ -86,7 +104,9 @@ { "name": "v0.4.0", "recommended_version": "v0.4.0", - "compatible_versions": ["v0.4.0"], + "compatible_versions": [ + "v0.4.0" + ], "binaries": { "linux/amd64": "https://github.com/elys-network/elys/releases/download/v0.4.0/elys._v0.4.0_linux_amd64.tar.gz" } @@ -94,7 +114,9 @@ { "name": "v0.5.0", "recommended_version": "v0.5.0", - "compatible_versions": ["v0.5.0"], + "compatible_versions": [ + "v0.5.0" + ], "binaries": { "linux/amd64": "https://github.com/elys-network/elys/releases/download/v0.5.0/elys._v0.5.0_linux_amd64.tar.gz" } @@ -102,7 +124,9 @@ { "name": "v0.5.1", "recommended_version": "v0.5.1", - "compatible_versions": ["v0.5.1"], + "compatible_versions": [ + "v0.5.1" + ], "binaries": { "linux/amd64": "https://github.com/elys-network/elys/releases/download/v0.5.1/elys._v0.5.1_linux_amd64.tar.gz" } @@ -110,7 +134,9 @@ { "name": "v0.5.2", "recommended_version": "v0.5.2", - "compatible_versions": ["v0.5.2"], + "compatible_versions": [ + "v0.5.2" + ], "binaries": { "linux/amd64": "https://github.com/elys-network/elys/releases/download/v0.5.0/elys._v0.5.2_linux_amd64.tar.gz" } @@ -118,7 +144,9 @@ { "name": "v0.5.3", "recommended_version": "v0.5.3", - "compatible_versions": ["v0.5.3"], + "compatible_versions": [ + "v0.5.3" + ], "binaries": { "linux/amd64": "https://github.com/elys-network/elys/releases/download/v0.5.3/elys._v0.5.3_linux_amd64.tar.gz" } @@ -126,7 +154,9 @@ { "name": "v0.5.4", "recommended_version": "v0.5.4", - "compatible_versions": ["v0.5.4"], + "compatible_versions": [ + "v0.5.4" + ], "binaries": { "linux/amd64": "https://github.com/elys-network/elys/releases/download/v0.5.4/elys._v0.5.4_linux_amd64.tar.gz" } @@ -134,7 +164,9 @@ { "name": "v0.6.0", "recommended_version": "v0.6.0", - "compatible_versions": ["v0.6.0"], + "compatible_versions": [ + "v0.6.0" + ], "binaries": { "linux/amd64": "https://github.com/elys-network/elys/releases/download/v0.6.0/elys._v0.6.0_linux_amd64.tar.gz" } @@ -142,7 +174,9 @@ { "name": "v0.7.0", "recommended_version": "v0.7.0", - "compatible_versions": ["v0.7.0"], + "compatible_versions": [ + "v0.7.0" + ], "binaries": { "linux/amd64": "https://github.com/elys-network/elys/releases/download/v0.7.0/elys._v0.7.0_linux_amd64.tar.gz" } @@ -150,7 +184,9 @@ { "name": "v0.8.0", "recommended_version": "v0.8.0", - "compatible_versions": ["v0.8.0"], + "compatible_versions": [ + "v0.8.0" + ], "binaries": { "linux/amd64": "https://github.com/elys-network/elys/releases/download/v0.8.0/elys._v0.8.0_linux_amd64.tar.gz" } @@ -158,7 +194,9 @@ { "name": "v0.9.0", "recommended_version": "v0.9.0", - "compatible_versions": ["v0.9.0"], + "compatible_versions": [ + "v0.9.0" + ], "binaries": { "linux/amd64": "https://github.com/elys-network/elys/releases/download/v0.9.0/elys._v0.9.0_linux_amd64.tar.gz" } @@ -166,7 +204,9 @@ { "name": "v0.10.0", "recommended_version": "v0.10.0", - "compatible_versions": ["v0.10.0"], + "compatible_versions": [ + "v0.10.0" + ], "binaries": { "linux/amd64": "https://github.com/elys-network/elys/releases/download/v0.10.0/elysd-0.10.0-linux-amd64.tar.gz" } @@ -174,7 +214,9 @@ { "name": "v0.11.0", "recommended_version": "v0.11.0", - "compatible_versions": ["v0.11.0"], + "compatible_versions": [ + "v0.11.0" + ], "binaries": { "linux/amd64": "https://github.com/elys-network/elys/releases/download/v0.11.0/elysd-v0.11.0-linux-amd64.tar.gz" } @@ -182,7 +224,9 @@ { "name": "v0.12.0", "recommended_version": "v0.12.0", - "compatible_versions": ["v0.12.0"], + "compatible_versions": [ + "v0.12.0" + ], "binaries": { "linux/amd64": "https://github.com/elys-network/elys/releases/download/v0.12.0/elysd-v0.12.0-linux-amd64.tar.gz" }, @@ -191,10 +235,31 @@ "type": "cometbft", "version": "0.37.2" }, - "ibc_go_version": "v7.3.0", - "cosmwasm_enabled": false + "cosmwasm_enabled": false, + "sdk": { + "type": "cosmos", + "version": "v0.47" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47" + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + }, + "cosmwasm": { + "enabled": false + } }, "peers": { "seeds": [ @@ -325,4 +390,4 @@ "account_page": "https://testnet.itrocket.net/elys/account/${accountAddress}" } ] -} +} \ No newline at end of file diff --git a/testnets/empetestnet/assetlist.json b/testnets/empetestnet/assetlist.json index 64b405ded3..9d76048cb6 100644 --- a/testnets/empetestnet/assetlist.json +++ b/testnets/empetestnet/assetlist.json @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/empetestnet/images/empe.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/empetestnet/images/empe.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/empetestnet/chain.json b/testnets/empetestnet/chain.json index aca738f467..67809e9648 100644 --- a/testnets/empetestnet/chain.json +++ b/testnets/empetestnet/chain.json @@ -1,6 +1,7 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "empetestnet", + "chain_type": "cosmos", "chain_id": "empe-testnet-2", "website": "https://empe.io", "pretty_name": "Empe", @@ -64,9 +65,23 @@ "type": "tendermint", "version": "0.34" }, - "cosmwasm_enabled": false + "cosmwasm_enabled": false, + "sdk": { + "type": "cosmos", + "version": "v0.47" + }, + "cosmwasm": { + "enabled": false + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47" + }, + "cosmwasm": { + "enabled": false + } }, "peers": { "persistent_peers": [ @@ -118,4 +133,4 @@ "tx_page": "https://explorer-testnet.empe.io/transactions/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/empowertestnet/assetlist.json b/testnets/empowertestnet/assetlist.json index 5f00df3b69..87e2353d38 100644 --- a/testnets/empowertestnet/assetlist.json +++ b/testnets/empowertestnet/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/empowertestnet/images/mpwr.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/empowertestnet/chain.json b/testnets/empowertestnet/chain.json index 008c598b7b..4fec9ebc9a 100644 --- a/testnets/empowertestnet/chain.json +++ b/testnets/empowertestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "empowertestnet", + "chain_type": "cosmos", "chain_id": "circulus-1", "pretty_name": "Empower Testnet", "status": "live", @@ -183,4 +184,4 @@ "tx_page": "https://explorer.stavr.tech/empower/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/entrypointtestnet/assetlist.json b/testnets/entrypointtestnet/assetlist.json index 111f09df71..7e4247e418 100644 --- a/testnets/entrypointtestnet/assetlist.json +++ b/testnets/entrypointtestnet/assetlist.json @@ -34,7 +34,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entry.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entry.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The native staking and governance token of the Theta testnet version of the Cosmos Hub, via Osmosis.", @@ -48,6 +49,7 @@ "exponent": 6 } ], + "type_asset": "ics20", "base": "ibc/8A138BC76D0FB2665F8937EC2BF01B9F6A714F6127221A0E155106A45E09BCC5", "name": "Cosmos", "display": "atom", diff --git a/testnets/entrypointtestnet/chain.json b/testnets/entrypointtestnet/chain.json index 9a9523147a..c1a28e1cf8 100644 --- a/testnets/entrypointtestnet/chain.json +++ b/testnets/entrypointtestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "EntryPoint Testnet", + "chain_type": "cosmos", "chain_id": "entrypoint-pubtest-2", "bech32_prefix": "entrypoint", "daemon_name": "entrypointd", @@ -54,6 +55,10 @@ "consensus": { "type": "cometbft", "version": "0.37.2" + }, + "sdk": { + "type": "cosmos", + "version": "0.47.4" } }, { @@ -66,9 +71,17 @@ "consensus": { "type": "cometbft", "version": "0.37.2" + }, + "sdk": { + "type": "cosmos", + "version": "0.47.4" } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47.4" + } }, "apis": { "rpc": [ diff --git a/testnets/evmostestnet/assetlist.json b/testnets/evmostestnet/assetlist.json index 356b206f43..9f2e70a305 100644 --- a/testnets/evmostestnet/assetlist.json +++ b/testnets/evmostestnet/assetlist.json @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/evmostestnet/images/evmos.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/evmostestnet/images/evmos.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/evmostestnet/chain.json b/testnets/evmostestnet/chain.json index 94938a2f0b..787a8a043e 100644 --- a/testnets/evmostestnet/chain.json +++ b/testnets/evmostestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Evmos Testnet", + "chain_type": "cosmos", "chain_id": "evmos_9000-4", "bech32_prefix": "evmos", "daemon_name": "evmosd", @@ -43,7 +44,6 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "v6.1.0", "genesis": { "genesis_url": "https://github.com/evmos/testnets/raw/main/evmos_9000-4/genesis.zip" }, @@ -59,7 +59,14 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "v6.1.0" + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "v6.1.0" + } }, { "name": "v12.0.0", @@ -72,9 +79,24 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "v6.1.0" + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "v6.1.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "v6.1.0" + } }, "peers": { "seeds": [ @@ -149,4 +171,4 @@ "tx_page": "https://testnet.evmos.explorers.guru/transaction/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/fetchhubtestnet/assetlist.json b/testnets/fetchhubtestnet/assetlist.json index f6294d5f29..4bfafd6416 100644 --- a/testnets/fetchhubtestnet/assetlist.json +++ b/testnets/fetchhubtestnet/assetlist.json @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/fetchhubtestnet/chain.json b/testnets/fetchhubtestnet/chain.json index 07a4201e6c..a1a493497e 100644 --- a/testnets/fetchhubtestnet/chain.json +++ b/testnets/fetchhubtestnet/chain.json @@ -1,104 +1,102 @@ { - "$schema": "../../chain.schema.json", - "chain_name": "fetchhubtestnet", - "status": "live", - "network_type": "testnet", - "pretty_name": "Fetch.ai Testnet", - "chain_id": "dorado-1", - "bech32_prefix": "fetch", - "daemon_name": "fetchd", - "node_home": "$HOME/.fetchd", - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "atestfet", - "low_gas_price": 0.025, - "average_gas_price": 0.025, - "high_gas_price": 0.035 - } - ] - }, - "staking": { - "staking_tokens": [ - { - "denom": "atestfet" - } - ] + "$schema": "../../chain.schema.json", + "chain_name": "fetchhubtestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Fetch.ai Testnet", + "chain_type": "cosmos", + "chain_id": "dorado-1", + "bech32_prefix": "fetch", + "daemon_name": "fetchd", + "node_home": "$HOME/.fetchd", + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "atestfet", + "low_gas_price": 0.025, + "average_gas_price": 0.025, + "high_gas_price": 0.035 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "atestfet" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/fetchai/fetchd", + "recommended_version": "v0.10.5", + "compatible_versions": [ + "v0.10.5" + ], + "genesis": { + "genesis_url": "https://storage.googleapis.com/fetch-ai-testnet-genesis/genesis-dorado-827201.json" }, - "codebase": { - "git_repo": "https://github.com/fetchai/fetchd", - "recommended_version": "v0.10.5", - "compatible_versions": ["v0.10.5"], - "genesis": { - "genesis_url": "https://storage.googleapis.com/fetch-ai-testnet-genesis/genesis-dorado-827201.json" + "versions": [ + { + "name": "v0.10.5", + "recommended_version": "v0.10.5", + "compatible_versions": [ + "v0.10.5" + ] + } + ] + }, + "peers": { + "seeds": [ + { + "id": "eb9b9717975b49a57e62ea93aa4480e091ae0660", + "address": "connect-dorado.fetch.ai:36556", + "provider": "fetch.ai" }, - "versions": [ - { - "name": "v0.10.5", - "recommended_version": "v0.10.5", - "compatible_versions": [ - "v0.10.5" - ] - } - ] - }, - "peers": { - "seeds": [ - { - "id": "eb9b9717975b49a57e62ea93aa4480e091ae0660", - "address": "connect-dorado.fetch.ai:36556", - "provider": "fetch.ai" - }, - { - "id": "46d2f86a255ece3daf244e2ca11d5be0f16cb633", - "address": "connect-dorado.fetch.ai:36557", - "provider": "fetch.ai" - }, - { - "id": "066fc564979b1f3173615f101b62448ac7e00eb1", - "address": "connect-dorado.fetch.ai:36558", - "provider": "fetch.ai" - } - - ], - "persistent_peers": [ - ] - }, - "apis": { - "rpc": [ - { - "address": "https://rpc-dorado.fetch.ai:443", - "provider": "fetch.ai" - } - - ], - "rest": [ - { - "address": "https://rest-dorado.fetch.ai", - "provider": "fetch.ai" - } - - ], - "grpc": [ - { - "address": "grpc-dorado.fetch.ai:443", - "provider": "fetch.ai" - } - ] - }, - "explorers": [ - { - "kind": "bigdipper", - "url": "https://explore-dorado.fetch.ai", - "tx_page": "https://explore-dorado.fetch.ai/transactions/${txHash}" + "id": "46d2f86a255ece3daf244e2ca11d5be0f16cb633", + "address": "connect-dorado.fetch.ai:36557", + "provider": "fetch.ai" }, { - "kind": "azoyalabs", - "url": "https://fetchstation.azoyalabs.com/testnet", - "tx_page": "https://fetchstation.azoyalabs.com/testnet/explorer/transactions/${txHash}", - "account_page": "https://fetchstation.azoyalabs.com/testnet/explorer/address/${accountAddress}" + "id": "066fc564979b1f3173615f101b62448ac7e00eb1", + "address": "connect-dorado.fetch.ai:36558", + "provider": "fetch.ai" + } + ], + "persistent_peers": [] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc-dorado.fetch.ai:443", + "provider": "fetch.ai" + } + ], + "rest": [ + { + "address": "https://rest-dorado.fetch.ai", + "provider": "fetch.ai" + } + ], + "grpc": [ + { + "address": "grpc-dorado.fetch.ai:443", + "provider": "fetch.ai" } ] - } \ No newline at end of file + }, + "explorers": [ + { + "kind": "bigdipper", + "url": "https://explore-dorado.fetch.ai", + "tx_page": "https://explore-dorado.fetch.ai/transactions/${txHash}" + }, + { + "kind": "azoyalabs", + "url": "https://fetchstation.azoyalabs.com/testnet", + "tx_page": "https://fetchstation.azoyalabs.com/testnet/explorer/transactions/${txHash}", + "account_page": "https://fetchstation.azoyalabs.com/testnet/explorer/address/${accountAddress}" + } + ] +} \ No newline at end of file diff --git a/testnets/fiammatestnet/assetlist.json b/testnets/fiammatestnet/assetlist.json index 5034792ea2..afaa31f25e 100644 --- a/testnets/fiammatestnet/assetlist.json +++ b/testnets/fiammatestnet/assetlist.json @@ -25,7 +25,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/fiammatestnet/images/fiamma.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/fiammatestnet/chain.json b/testnets/fiammatestnet/chain.json index 654e85aea8..c1eceff86f 100644 --- a/testnets/fiammatestnet/chain.json +++ b/testnets/fiammatestnet/chain.json @@ -5,6 +5,7 @@ "website": "https://www.fiammachain.io", "network_type": "testnet", "pretty_name": "Fiamma Testnet", + "chain_type": "cosmos", "chain_id": "fiamma-testnet-1", "bech32_prefix": "fiamma", "daemon_name": "fiammad", @@ -61,7 +62,6 @@ "provider": "Fiamma-Node-2" } ] - }, "apis": { "rpc": [ diff --git a/testnets/finschiatestnet/chain.json b/testnets/finschiatestnet/chain.json index 41b499792b..106fa4eeba 100644 --- a/testnets/finschiatestnet/chain.json +++ b/testnets/finschiatestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "finschiatestnet", + "chain_type": "cosmos", "chain_id": "ebony-2", "website": "https://www.finschia.io/", "pretty_name": "Ebony", @@ -41,7 +42,6 @@ "v2.0.0", "v2.0.1" ], - "go_version": "1.20", "binaries": { "linux/amd64": "https://github.com/Finschia/finschia/releases/download/v2.0.1/fnsad-2.0.1-linux-amd64", "linux/arm64": "https://github.com/Finschia/finschia/releases/download/v2.0.1/fnsad-2.0.1-linux-arm64", @@ -52,10 +52,6 @@ "cosmwasm_version": "github.com/Finschia/wasmd@v0.2.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.finschia/wasm/wasm", - "ibc_go_version": "v4.3.1", - "ics_enabled": [ - "ics20-1" - ], "genesis": { "name": "v2", "genesis_url": "https://vos.line-scdn.net/finschia-2-fileshare/ebony-prod-2/genesis-file.tgz" @@ -69,7 +65,6 @@ "compatible_versions": [ "v1.1.1" ], - "go_version": "1.18", "binaries": { "linux/amd64": "https://github.com/Finschia/finschia/releases/download/v1.1.1/finschia-v1.1.1-linux-amd64.tgz", "linux/arm64": "https://github.com/Finschia/finschia/releases/download/v1.1.1/finschia-v1.1.1-linux-arm64.tgz", @@ -80,11 +75,29 @@ "cosmwasm_version": "github.com/Finschia/wasmd@v0.1.5", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.finschia/wasm/wasm", - "ibc_go_version": "v3.3.3", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v2" + "next_version_name": "v2", + "sdk": { + "type": "cosmos", + "version": "v0.47.3", + "repo": "https://github.com/Finschia/finschia-sdk" + }, + "language": { + "type": "go", + "version": "1.18" + }, + "cosmwasm": { + "version": "v0.1.5", + "path": "$HOME/.finschia/wasm/wasm", + "enabled": true, + "repo": "https://github.com/Finschia/wasmd" + }, + "ibc": { + "type": "go", + "version": "v3.3.3", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v2", @@ -96,7 +109,6 @@ "v2.0.0", "v2.0.1" ], - "go_version": "1.20", "binaries": { "linux/amd64": "https://github.com/Finschia/finschia/releases/download/v2.0.1/fnsad-2.0.1-linux-amd64", "linux/arm64": "https://github.com/Finschia/finschia/releases/download/v2.0.1/fnsad-2.0.1-linux-arm64", @@ -107,14 +119,54 @@ "cosmwasm_version": "github.com/Finschia/wasmd@v0.2.0", "cosmwasm_enabled": true, "cosmwasm_path": "$HOME/.finschia/wasm/wasm", - "ibc_go_version": "v4.3.1", - "ics_enabled": [ - "ics20-1" - ], "previous_version_name": "v1", - "next_version_name": "v3" + "next_version_name": "v3", + "sdk": { + "type": "cosmos", + "version": "v0.48.1", + "repo": "https://github.com/Finschia/finschia-sdk" + }, + "language": { + "type": "go", + "version": "1.20" + }, + "cosmwasm": { + "version": "v0.2.0", + "path": "$HOME/.finschia/wasm/wasm", + "enabled": true, + "repo": "https://github.com/Finschia/wasmd" + }, + "ibc": { + "type": "go", + "version": "v4.3.1", + "ics_enabled": [ + "ics20-1" + ] + } } - ] + ], + "language": { + "type": "go", + "version": "1.20" + }, + "sdk": { + "type": "cosmos", + "repo": "https://github.com/Finschia/finschia-sdk", + "version": "v0.48.1" + }, + "ibc": { + "type": "go", + "version": "v4.3.1", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "version": "v0.2.0", + "path": "$HOME/.finschia/wasm/wasm", + "enabled": true, + "repo": "https://github.com/Finschia/wasmd" + } }, "peers": { "seeds": [], diff --git a/testnets/galacticatestnet/assetlist.json b/testnets/galacticatestnet/assetlist.json index 1a0a81a1b2..99fe455303 100644 --- a/testnets/galacticatestnet/assetlist.json +++ b/testnets/galacticatestnet/assetlist.json @@ -28,7 +28,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galactica/images/galactica.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/galacticatestnet/chain.json b/testnets/galacticatestnet/chain.json index db66c1daa5..a33ff23e88 100644 --- a/testnets/galacticatestnet/chain.json +++ b/testnets/galacticatestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Galactica Protocol Testnet", + "chain_type": "cosmos", "chain_id": "galactica_9302-1", "bech32_prefix": "gala", "daemon_name": "galacticad", @@ -57,9 +58,23 @@ "type": "cometbft", "version": "0.37" }, - "cosmwasm_enabled": false + "cosmwasm_enabled": false, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "enabled": false + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "enabled": false + } }, "peers": { "seeds": [ diff --git a/testnets/gitopiatestnet/assetlist.json b/testnets/gitopiatestnet/assetlist.json index 7ec53266c6..376286e759 100644 --- a/testnets/gitopiatestnet/assetlist.json +++ b/testnets/gitopiatestnet/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/gitopiatestnet/images/gitopia.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/gitopiatestnet/chain.json b/testnets/gitopiatestnet/chain.json index 7f9ad24cd2..5dc9f23917 100644 --- a/testnets/gitopiatestnet/chain.json +++ b/testnets/gitopiatestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "gitopiatestnet", + "chain_type": "cosmos", "chain_id": "gitopia-janus-testnet-2", "pretty_name": "Gitopia Testnet", "status": "live", diff --git a/testnets/hedgetestnet/assetlist.json b/testnets/hedgetestnet/assetlist.json index 0392ea78bc..0925eab836 100644 --- a/testnets/hedgetestnet/assetlist.json +++ b/testnets/hedgetestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "hedgetestnet", "assets": [ { @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/hedgetestnet/images/hedge.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/hedgetestnet/images/hedge.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/hedgetestnet/chain.json b/testnets/hedgetestnet/chain.json index 161c08165b..6fdf2697ed 100644 --- a/testnets/hedgetestnet/chain.json +++ b/testnets/hedgetestnet/chain.json @@ -1,6 +1,7 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "hedgetestnet", + "chain_type": "cosmos", "chain_id": "berberis-1", "pretty_name": "Hedge Testnet", "status": "live", diff --git a/testnets/humanstestnet/assetlist.json b/testnets/humanstestnet/assetlist.json index 1d8f31fffa..291f4d80b7 100644 --- a/testnets/humanstestnet/assetlist.json +++ b/testnets/humanstestnet/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/humanstestnet/images/humans.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/humanstestnet/chain.json b/testnets/humanstestnet/chain.json index a910852414..3fd09e4aa5 100644 --- a/testnets/humanstestnet/chain.json +++ b/testnets/humanstestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "humanstestnet", + "chain_type": "cosmos", "chain_id": "testnet-1", "pretty_name": "Humans AI Testnet", "status": "live", diff --git a/testnets/hypersigntestnet/assetlist.json b/testnets/hypersigntestnet/assetlist.json index a2d4924b86..b04096ccc2 100644 --- a/testnets/hypersigntestnet/assetlist.json +++ b/testnets/hypersigntestnet/assetlist.json @@ -26,7 +26,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/hypersigntestnet/images/hypersign.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/hypersigntestnet/chain.json b/testnets/hypersigntestnet/chain.json index 26e2068e8d..757cd4d14c 100644 --- a/testnets/hypersigntestnet/chain.json +++ b/testnets/hypersigntestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Hypersign Testnet", + "chain_type": "cosmos", "chain_id": "prajna-1", "bech32_prefix": "hid", "daemon_name": "hid-noded", @@ -78,4 +79,4 @@ "tx_page": "https://explorer.hypersign.id/hypersign-prajna-testnet/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/impacthubdevnet/assetlist.json b/testnets/impacthubdevnet/assetlist.json index c86b817d57..f9224e1940 100644 --- a/testnets/impacthubdevnet/assetlist.json +++ b/testnets/impacthubdevnet/assetlist.json @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/impacthubdevnet/images/ixo.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/impacthubdevnet/images/ixo.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/impacthubdevnet/chain.json b/testnets/impacthubdevnet/chain.json index 0f6d8790e4..bf50da240a 100644 --- a/testnets/impacthubdevnet/chain.json +++ b/testnets/impacthubdevnet/chain.json @@ -5,6 +5,7 @@ "network_type": "devnet", "website": "https://www.ixo.world/", "pretty_name": "ixo", + "chain_type": "cosmos", "chain_id": "devnet-1", "bech32_prefix": "ixo", "daemon_name": "ixod", @@ -75,4 +76,4 @@ "account_page": "https://blockscan.devnet.ixo.earth/ixo/accounts/${accountAddress}" } ] -} +} \ No newline at end of file diff --git a/testnets/impacthubtestnet/assetlist.json b/testnets/impacthubtestnet/assetlist.json index ff2b328283..8c2bc5c6e4 100644 --- a/testnets/impacthubtestnet/assetlist.json +++ b/testnets/impacthubtestnet/assetlist.json @@ -35,13 +35,17 @@ "base_denom": "uixo" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg", + "theme": { + "primary_color_hex": "#2c4484" + } } ], "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/impacthubtestnet/chain.json b/testnets/impacthubtestnet/chain.json index 926af0d939..58d0bdc903 100644 --- a/testnets/impacthubtestnet/chain.json +++ b/testnets/impacthubtestnet/chain.json @@ -5,6 +5,7 @@ "network_type": "testnet", "website": "https://www.ixo.world/", "pretty_name": "ixo", + "chain_type": "cosmos", "chain_id": "pandora-8", "bech32_prefix": "ixo", "daemon_name": "ixod", diff --git a/testnets/imversedtestnet/assetlist.json b/testnets/imversedtestnet/assetlist.json index affba25622..be7e8b6699 100644 --- a/testnets/imversedtestnet/assetlist.json +++ b/testnets/imversedtestnet/assetlist.json @@ -27,40 +27,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg" } - ] - }, - { - "description": "The native staking and governance token of the Imversed testnet.", - "denom_units": [ - { - "denom": "ibc/C6438A7D613196373D939891C99CA7EEF4F78F4A78DC8590E51E62F8ED16E72B", - "exponent": 0, - "aliases": [ - "usaage" - ] - }, - { - "denom": "imv", - "exponent": 6 - } ], - "base": "ibc/C6438A7D613196373D939891C99CA7EEF4F78F4A78DC8590E51E62F8ED16E72B", - "name": "Imv", - "display": "imv", - "symbol": "IMV", - "ibc": { - "source_channel": "channel-1", - "dst_channel": "channel-221", - "source_denom": "nimv" - }, - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg" - }, - "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg" - } - ] + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/imversedtestnet/chain.json b/testnets/imversedtestnet/chain.json index d21a55035e..2b91e85125 100644 --- a/testnets/imversedtestnet/chain.json +++ b/testnets/imversedtestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Imversed Testnet", + "chain_type": "cosmos", "chain_id": "imversed-test-1", "bech32_prefix": "imv", "daemon_name": "imversed", diff --git a/testnets/injectivetestnet/assetlist.json b/testnets/injectivetestnet/assetlist.json index 6de117fbee..7c79c6dc69 100644 --- a/testnets/injectivetestnet/assetlist.json +++ b/testnets/injectivetestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "injectivetestnet", "assets": [ { @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/injectivetestnet/chain.json b/testnets/injectivetestnet/chain.json index e5e0217e26..8f34d72562 100644 --- a/testnets/injectivetestnet/chain.json +++ b/testnets/injectivetestnet/chain.json @@ -1,10 +1,11 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "injectivetestnet", "status": "live", "network_type": "testnet", "website": "https://injective.com", "pretty_name": "Injective", + "chain_type": "cosmos", "chain_id": "injective-888", "bech32_prefix": "inj", "extra_codecs": [ @@ -151,7 +152,7 @@ { "address": "https://injective-testnet-rest.publicnode.com", "provider": "Allnodes ⚑️ Nodes & Staking" - } + } ], "grpc": [ { @@ -179,4 +180,4 @@ "tx_page": "https://testnet.explorer.injective.network/transaction/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/jackaltestnet/assetlist.json b/testnets/jackaltestnet/assetlist.json index 4017d4c4b6..18905af4f7 100644 --- a/testnets/jackaltestnet/assetlist.json +++ b/testnets/jackaltestnet/assetlist.json @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/jackaltestnet/chain.json b/testnets/jackaltestnet/chain.json index 42521582ee..8d8e24ca05 100644 --- a/testnets/jackaltestnet/chain.json +++ b/testnets/jackaltestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "jackaltestnet", + "chain_type": "cosmos", "chain_id": "canine-1", "website": "https://jackalprotocol.com", "pretty_name": "Jackal", @@ -187,8 +188,8 @@ }, { "kind": "ping.pub", - "url": "https://ping.pub/jackal", - "tx_page": "https://ping.pub/jackal/tx/${txHash}" + "url": "https://testnet.ping.pub/jackal", + "tx_page": "https://testnet.ping.pub/jackal/tx/${txHash}" } ] } diff --git a/testnets/jackaltestnet2/assetlist.json b/testnets/jackaltestnet2/assetlist.json index 0c7a383f11..6b3f77c57a 100644 --- a/testnets/jackaltestnet2/assetlist.json +++ b/testnets/jackaltestnet2/assetlist.json @@ -35,9 +35,13 @@ "image_sync": { "chain_name": "jackal", "base_denom": "ujkl" + }, + "theme": { + "primary_color_hex": "#dbdbcb" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/jackaltestnet2/chain.json b/testnets/jackaltestnet2/chain.json index 79808a7195..b2d4de8c8b 100644 --- a/testnets/jackaltestnet2/chain.json +++ b/testnets/jackaltestnet2/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "jackaltestnet2", + "chain_type": "cosmos", "chain_id": "mesomelas-1", "website": "https://jackalprotocol.com", "pretty_name": "Jackal v4", @@ -49,12 +50,8 @@ ] }, "peers": { - "seeds": [ - - ], - "persistent_peers": [ - - ] + "seeds": [], + "persistent_peers": [] }, "apis": { "rpc": [ @@ -69,8 +66,7 @@ "provider": "Brochain" } ], - "grpc": [ - ] + "grpc": [] }, "explorers": [ { @@ -80,4 +76,4 @@ "account_page": "https://testnet-explorer.brocha.in/Jackal%20v4/account/${accountAddress}" } ] -} +} \ No newline at end of file diff --git a/testnets/junotestnet/assetlist.json b/testnets/junotestnet/assetlist.json index 95d86f941e..cebba2028b 100644 --- a/testnets/junotestnet/assetlist.json +++ b/testnets/junotestnet/assetlist.json @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The native token of NEXX GEN AI", @@ -53,7 +54,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/nexx.png" } - ] + ], + "type_asset": "sdk.coin" }, { "type_asset": "sdk.coin", @@ -94,7 +96,10 @@ "base_denom": "factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA" }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.png", + "theme": { + "primary_color_hex": "#dc6c24" + } } ] } diff --git a/testnets/junotestnet/chain.json b/testnets/junotestnet/chain.json index df4ddbd532..7cfdc72c72 100644 --- a/testnets/junotestnet/chain.json +++ b/testnets/junotestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Juno Testnet", + "chain_type": "cosmos", "chain_id": "uni-6", "bech32_prefix": "juno", "daemon_name": "junod", @@ -43,7 +44,6 @@ }, "cosmwasm_version": "0.31", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.1", "genesis": { "genesis_url": "https://raw.githubusercontent.com/CosmosContracts/testnets/main/uni-6/genesis.json" }, @@ -61,7 +61,18 @@ }, "cosmwasm_version": "0.30", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.0" + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "4.3.0" + } }, { "name": "v14.0.0-alpha.1", @@ -76,9 +87,32 @@ }, "cosmwasm_version": "0.30", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.0" + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "4.3.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "ibc": { + "type": "go", + "version": "4.3.1" + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + } }, "peers": { "seeds": [ @@ -128,4 +162,4 @@ "account_page": "https://explorer.stavr.tech/Juno-Testnet/account/${accountAddress}" } ] -} +} \ No newline at end of file diff --git a/testnets/kichaintestnet/assetlist.json b/testnets/kichaintestnet/assetlist.json index af6aaa363b..9bf326d55d 100644 --- a/testnets/kichaintestnet/assetlist.json +++ b/testnets/kichaintestnet/assetlist.json @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/kichaintestnet/chain.json b/testnets/kichaintestnet/chain.json index 5c52259ef8..339edff2c4 100644 --- a/testnets/kichaintestnet/chain.json +++ b/testnets/kichaintestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Ki", + "chain_type": "cosmos", "chain_id": "kichain-t-4", "bech32_prefix": "tki", "daemon_name": "kid", diff --git a/testnets/kimanetworktestnet/assetlist.json b/testnets/kimanetworktestnet/assetlist.json new file mode 100644 index 0000000000..f167746ec3 --- /dev/null +++ b/testnets/kimanetworktestnet/assetlist.json @@ -0,0 +1,52 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "kimanetworktestnet", + "assets": [ + { + "description": "Kima is an asset-agnostic interoperability infrastructure that connects blockchain networks and legacy financial systems, enabling secure, scalable cross-chain transactions and seamless communication across ecosystems.", + "extended_description": "Kima is an asset-agnostic interoperability infrastructure designed to bridge the gap between blockchain networks and traditional financial systems. By providing a unified platform for secure and scalable cross-ecosystem transactions, Kima enables seamless transfers across different ecosystems, including digital assets and legacy financial systems. Its patent-pending architecture eliminates vulnerabilities associated with smart contracts and key management, ensuring a secure environment for high-volume transactions. Kima\u2019s innovative approach provides financial institutions and developers with the tools needed to create interoperable solutions that operate across both traditional and blockchain-based systems, driving the future of decentralized finance and financial services.", + "denom_units": [ + { + "denom": "uKIMA", + "exponent": 0 + }, + { + "denom": "KIMA", + "exponent": 6 + } + ], + "base": "uKIMA", + "name": "KIMA", + "display": "KIMA", + "symbol": "KIMA", + "traces": [ + { + "type": "test-mintage", + "counterparty": { + "chain_name": "kimanetwork", + "base_denom": "uKIMA" + }, + "provider": "Kima Network" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.svg" + } + ], + "socials": { + "github": "https://github.com/kima-finance", + "medium": "https://medium.com/@kima_finance", + "telegram": "https://t.me/kimanetwork", + "twitter": "https://x.com/KimaNetwork", + "website": "https://www.kima.network/" + }, + "type_asset": "sdk.coin" + } + ] +} diff --git a/testnets/kimanetworktestnet/chain.json b/testnets/kimanetworktestnet/chain.json new file mode 100644 index 0000000000..ff5f090993 --- /dev/null +++ b/testnets/kimanetworktestnet/chain.json @@ -0,0 +1,94 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "kimanetworktestnet", + "status": "live", + "website": "https://www.kima.network/", + "network_type": "testnet", + "pretty_name": "Kima Network Testnet", + "chain_type": "cosmos", + "chain_id": "kima_testnet", + "bech32_prefix": "kima", + "daemon_name": "uKIMA", + "node_home": "$HOME/.kima", + "key_algos": ["secp256k1"], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uKIMA", + "fixed_min_gas_price": 0, + "low_gas_price": 0.0025, + "average_gas_price": 0.025, + "high_gas_price": 0.04 + } + ] + }, + "codebase": { + "git_repo": "https://github.com/kima-finance/kima-blockchain", + "recommended_version": "v0.4.3", + "compatible_versions": ["v0.4.3"], + "genesis": { + "genesis_url": "http://data-testnet.kima.finance/genesis.json" + }, + "versions": [ + { + "name": "v0.4.3", + "recommended_version": "v0.4.3", + "compatible_versions": ["v0.4.3"], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/cosmos/cosmos-sdk", + "version": "v0.47.4", + "tag": "v0.47.4" + } + } + ] + }, + "peers": { + "seeds": [ + { + "id": "cb88ded3ce56d5f58155028f74116e492d9b48d3", + "address": "137.135.97.61:26656", + "provider": "Kima Network" + } + ], + "persistent_peers": [ + { + "id": "63e795c7b06e04b59193d1cd5dd080324857be14", + "address": "172.173.165.59:26656", + "provider": "Kima Network" + }, + { + "id": "26f8f89e4d937d04b3a55e01c94757d531b21756", + "address": "52.233.74.60:26656", + "provider": "Kima Network" + }, + { + "id": "ed81adb437d1c74420eae069303acabe388621cc", + "address": "13.83.91.8:26656", + "provider": "Kima Network" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc-testnet.kima.finance/", + "provider": "Kima Network" + } + ], + "rest": [ + { + "address": "https://api-testnet.kima.finance", + "provider": "Kima Network" + } + ] + }, + "explorers": [ + { + "kind": "Kima Network", + "url": "https://explorer-testnet.kima.finance/", + "tx_page": "https://explorer-testnet.kima.finance/transactions/${txHash}" + } + ] +} diff --git a/testnets/kujiratestnet/assetlist.json b/testnets/kujiratestnet/assetlist.json index 7b64df87ae..d0f454774d 100644 --- a/testnets/kujiratestnet/assetlist.json +++ b/testnets/kujiratestnet/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kujiratestnet/images/kuji.png" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The testnet token of Fuzion", @@ -50,7 +51,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kujiratestnet/images/fuzn.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/kujiratestnet/chain.json b/testnets/kujiratestnet/chain.json index e450f4cc66..52260a2ed8 100644 --- a/testnets/kujiratestnet/chain.json +++ b/testnets/kujiratestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "kujiratestnet", + "chain_type": "cosmos", "chain_id": "harpoon-4", "pretty_name": "Kujira Harpoon", "status": "live", diff --git a/testnets/kyvedevnet/assetlist.json b/testnets/kyvedevnet/assetlist.json index 20a9be29e3..d1c5031555 100644 --- a/testnets/kyvedevnet/assetlist.json +++ b/testnets/kyvedevnet/assetlist.json @@ -39,9 +39,13 @@ "image_sync": { "chain_name": "kyve", "base_denom": "ukyve" + }, + "theme": { + "primary_color_hex": "#335350" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/kyvedevnet/chain.json b/testnets/kyvedevnet/chain.json index 0443c17b91..882edcdb0d 100644 --- a/testnets/kyvedevnet/chain.json +++ b/testnets/kyvedevnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "kyvedevnet", + "chain_type": "cosmos", "chain_id": "korellia-2", "pretty_name": "KYVE Korellia", "status": "live", diff --git a/testnets/kyvetestnet/assetlist.json b/testnets/kyvetestnet/assetlist.json index a55f3ce7c5..6469328e85 100644 --- a/testnets/kyvetestnet/assetlist.json +++ b/testnets/kyvetestnet/assetlist.json @@ -39,9 +39,13 @@ "image_sync": { "chain_name": "kyve", "base_denom": "ukyve" + }, + "theme": { + "primary_color_hex": "#335350" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/kyvetestnet/chain.json b/testnets/kyvetestnet/chain.json index aea83b2097..c0ef06a669 100644 --- a/testnets/kyvetestnet/chain.json +++ b/testnets/kyvetestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "kyvetestnet", + "chain_type": "cosmos", "chain_id": "kaon-1", "pretty_name": "KYVE Kaon", "status": "live", @@ -126,4 +127,4 @@ "account_page": "https://mintscan.io/kyve-testnet/account/${accountAddress}" } ] -} +} \ No newline at end of file diff --git a/testnets/lavatestnet/assetlist.json b/testnets/lavatestnet/assetlist.json index 783c4bea84..8661aae9e0 100644 --- a/testnets/lavatestnet/assetlist.json +++ b/testnets/lavatestnet/assetlist.json @@ -29,7 +29,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/lavatestnet/chain.json b/testnets/lavatestnet/chain.json index 51d357c3dd..87442ecf21 100644 --- a/testnets/lavatestnet/chain.json +++ b/testnets/lavatestnet/chain.json @@ -6,6 +6,7 @@ "network_type": "testnet", "website": "https://www.lavanet.xyz/", "pretty_name": "Lava Testnet", + "chain_type": "cosmos", "chain_id": "lava-testnet-2", "bech32_prefix": "lava@", "daemon_name": "lavad", @@ -18,8 +19,8 @@ "fee_tokens": [ { "denom": "ulava", - "fixed_min_gas_price": 0.000001, - "low_gas_price": 0.000001, + "fixed_min_gas_price": 1e-06, + "low_gas_price": 1e-06, "average_gas_price": 0.025, "high_gas_price": 0.04 } @@ -51,10 +52,6 @@ }, "cosmwasm_version": "0.30", "cosmwasm_enabled": false, - "ibc_go_version": "7.2.0", - "ics_enabled": [ - "ics20-1" - ], "genesis": { "name": "v0.21.1.2", "genesis_url": "https://raw.githubusercontent.com/lavanet/lava-config/main/testnet-2/genesis_json/genesis.json" @@ -158,15 +155,40 @@ "version": "0.37" }, "cosmwasm_enabled": false, - "ibc_go_version": "3.0.1", - "ics_enabled": [ - "ics20-1" - ], "binaries": { "linux/amd64": "https://github.com/lavanet/lava/releases/download/v1.0.1/lavad-v1.0.1-linux-amd64" + }, + "sdk": { + "type": "cosmos", + "version": "0.47.7" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "3.0.1", + "ics_enabled": [ + "ics20-1" + ] } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47.7" + }, + "ibc": { + "type": "go", + "version": "7.2.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "version": "0.30", + "enabled": false + } }, "images": [ { @@ -210,7 +232,7 @@ "apis": { "rpc": [ { - "address": "https://public-rpc-testnet2.lavanet.xyz:443/rpc/", + "address": "https://lav1.tendermintrpc.lava.build:443", "provider": "Lava" }, { @@ -228,7 +250,7 @@ ], "rest": [ { - "address": "https://public-rpc-testnet2.lavanet.xyz:443/rest/", + "address": "https://lav1.lava.build/", "provider": "Lava" }, { diff --git a/testnets/lavatestnet1/assetlist.json b/testnets/lavatestnet1/assetlist.json index d90866443b..70aa851670 100644 --- a/testnets/lavatestnet1/assetlist.json +++ b/testnets/lavatestnet1/assetlist.json @@ -29,7 +29,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/lavatestnet1/chain.json b/testnets/lavatestnet1/chain.json index 7da604ac89..44572c95b2 100644 --- a/testnets/lavatestnet1/chain.json +++ b/testnets/lavatestnet1/chain.json @@ -5,6 +5,7 @@ "network_type": "testnet", "website": "https://www.lavanet.xyz/", "pretty_name": "Lava", + "chain_type": "cosmos", "chain_id": "lava-testnet-1", "bech32_prefix": "lava@", "daemon_name": "lavad", @@ -47,10 +48,6 @@ }, "cosmwasm_version": "0.30", "cosmwasm_enabled": false, - "ibc_go_version": "v7.2.0", - "ics_enabled": [ - "ics20-1" - ], "genesis": { "name": "v0.3.0", "genesis_url": "https://raw.githubusercontent.com/lavanet/lava-config/main/testnet-1/genesis_json/genesis.json" @@ -133,12 +130,37 @@ "version": "0.34" }, "cosmwasm_enabled": false, - "ibc_go_version": "v7.2.0", - "ics_enabled": [ - "ics20-1" - ] + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v7.2.0", + "ics_enabled": [ + "ics20-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "ibc": { + "type": "go", + "version": "v7.2.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "version": "0.30", + "enabled": false + } }, "images": [ { diff --git a/testnets/likecointestnet/assetlist.json b/testnets/likecointestnet/assetlist.json index e73f630106..79f5479778 100644 --- a/testnets/likecointestnet/assetlist.json +++ b/testnets/likecointestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "likecointestnet", "assets": [ { @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/likecointestnet/chain.json b/testnets/likecointestnet/chain.json index f11fa1edef..5bbce2860c 100644 --- a/testnets/likecointestnet/chain.json +++ b/testnets/likecointestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "LikeCoin Testnet", + "chain_type": "cosmos", "chain_id": "likecoin-public-testnet-5", "bech32_prefix": "like", "daemon_name": "liked", @@ -52,12 +53,22 @@ "version": "0.34" }, "cosmwasm_enabled": false, - "ibc_go_version": "6.2.1", - "ics_enabled": [ - "ics20-1" - ], "genesis": { "genesis_url": "https://raw.githubusercontent.com/likecoin/testnets/aeba532ba9162a876a2180e925a49cbedba512e5/likecoin-public-testnet-5/genesis.json" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "6.2.1", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "enabled": false } }, "peers": { diff --git a/testnets/lumenxtestnet/assetlist.json b/testnets/lumenxtestnet/assetlist.json index f743ada4b8..618b8d53fc 100644 --- a/testnets/lumenxtestnet/assetlist.json +++ b/testnets/lumenxtestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "lumenxtestnet", "assets": [ { @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lumenxtestnet/images/lumen.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lumenxtestnet/images/lumen.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/lumenxtestnet/chain.json b/testnets/lumenxtestnet/chain.json index e0bd9dc25b..4da74b0e7d 100644 --- a/testnets/lumenxtestnet/chain.json +++ b/testnets/lumenxtestnet/chain.json @@ -1,9 +1,10 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "lumenxtestnet", "status": "live", "network_type": "testnet", "pretty_name": "LumenX-Test", + "chain_type": "cosmos", "chain_id": "lumenx-test", "bech32_prefix": "lumen", "daemon_name": "lumenxd", @@ -31,9 +32,12 @@ ] }, "codebase": { - "ics_enabled": [ - "ics20-1" - ] + "ibc": { + "type": "go", + "ics_enabled": [ + "ics20-1" + ] + } }, "peers": { "seeds": [], @@ -56,7 +60,7 @@ }, { "address": "https://testrpc-lumenx.cryptonet.pl/", - "provider": "CryptoNet" + "provider": "CryptoNet" } ], "rest": [ @@ -78,4 +82,4 @@ "tx_page": "https://testnet.explorer.chaintools.tech/lumenx/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/manifesttestnet/assetlist.json b/testnets/manifesttestnet/assetlist.json new file mode 100644 index 0000000000..bf4e77969f --- /dev/null +++ b/testnets/manifesttestnet/assetlist.json @@ -0,0 +1,62 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "manifesttestnet", + "assets": [ + { + "description": "Manifest testnet native token", + "denom_units": [ + { + "denom": "umfx", + "exponent": 0 + }, + { + "denom": "mfx", + "exponent": 6 + } + ], + "base": "umfx", + "name": "Manifest Testnet Token", + "display": "mfx", + "symbol": "MFX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.svg" + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Proof of Authority token for the Manifest testnet", + "denom_units": [ + { + "denom": "upoa", + "exponent": 0 + }, + { + "denom": "poa", + "exponent": 6 + } + ], + "base": "upoa", + "name": "Manifest Testnet Token", + "display": "poa", + "symbol": "POA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.svg" + } + ], + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/testnets/manifesttestnet/chain.json b/testnets/manifesttestnet/chain.json new file mode 100644 index 0000000000..7a61fd14ce --- /dev/null +++ b/testnets/manifesttestnet/chain.json @@ -0,0 +1,89 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "manifesttestnet", + "status": "live", + "network_type": "testnet", + "website": "https://liftedinit.org/", + "pretty_name": "Manifest Testnet", + "chain_id": "manifest-ledger-beta", + "chain_type": "cosmos", + "bech32_prefix": "manifest", + "daemon_name": "manifest", + "node_home": "$HOME/.manifest", + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "umfx", + "fixed_min_gas_price": 0.001, + "low_gas_price": 0.01, + "average_gas_price": 0.007, + "high_gas_price": 0.1 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "upoa" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/liftedinit/manifest-ledger", + "recommended_version": "v0.0.1-alpha.12", + "compatible_versions": [ + "v0.0.1-alpha.12" + ], + "binaries": { + "linux/amd64": "https://github.com/liftedinit/manifest-ledger/releases/download/v0.0.1-alpha.12/manifest-ledger_0.0.1-alpha.12_linux_amd64.tar.gz" + }, + "genesis": { + "genesis_url": "https://github.com/liftedinit/manifest-ledger/blob/main/network/manifest-1/manifest-1_genesis.json" + }, + "versions": [ + { + "name": "v0.0.1-alpha.12", + "recommended_version": "v0.0.1-alpha.12", + "compatible_versions": [ + "v0.0.1-alpha.12" + ] + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://nodes.chandrastation.com/rpc/manifest/", + "provider": "Chandra Station" + }, + { + "address": "https://manifest-beta-rpc.liftedinit.tech/", + "provider": "Lifted Initiative" + } + ], + "rest": [ + { + "address": "https://nodes.chandrastation.com/api/manifest/", + "provider": "Chandra Station" + }, + { + "address": "https://manifest-beta-rest.liftedinit.tech/", + "provider": "Lifted Initiative" + } + ], + "grpc": [ + { + "address": "https://manifest-beta-grpc.liftedinit.tech/", + "provider": "Lifted Initiative" + } + ] + }, + "explorers": [ + { + "kind": "Default Explorer", + "url": "https://manifest-explorer.vercel.app/", + "tx_page": "https://manifest-explorer.vercel.app/manifest/tx" + } + ] +} \ No newline at end of file diff --git a/testnets/manifesttestnet/images/manifest.png b/testnets/manifesttestnet/images/manifest.png new file mode 100644 index 0000000000..c722e91eed Binary files /dev/null and b/testnets/manifesttestnet/images/manifest.png differ diff --git a/testnets/manifesttestnet/images/manifest.svg b/testnets/manifesttestnet/images/manifest.svg new file mode 100644 index 0000000000..9f51128801 --- /dev/null +++ b/testnets/manifesttestnet/images/manifest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/testnets/mantrachaintestnet/assetlist.json b/testnets/mantrachaintestnet/assetlist.json index ac6097ce1c..9dc8b09072 100644 --- a/testnets/mantrachaintestnet/assetlist.json +++ b/testnets/mantrachaintestnet/assetlist.json @@ -45,10 +45,12 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg", "theme": { - "circle": true + "circle": true, + "primary_color_hex": "#fba0c1" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/mantrachaintestnet/chain.json b/testnets/mantrachaintestnet/chain.json index fe2a01620c..e37b4e20db 100644 --- a/testnets/mantrachaintestnet/chain.json +++ b/testnets/mantrachaintestnet/chain.json @@ -4,8 +4,9 @@ "status": "live", "network_type": "testnet", "pretty_name": "MANTRA Hongbai Testnet", + "chain_type": "cosmos", "chain_id": "mantra-hongbai-1", - "bech32_prefix": "uom", + "bech32_prefix": "mantra", "daemon_name": "mantrachaind", "node_home": "$HOME/.mantrachain", "key_algos": [ @@ -32,9 +33,9 @@ }, "codebase": { "git_repo": "https://github.com/MANTRA-Finance", - "recommended_version": "3.0.0", + "recommended_version": "1.0.0", "compatible_versions": [ - "3.0.0" + "1.0.0" ], "cosmos_sdk_version": "0.47.3", "consensus": { @@ -56,9 +57,25 @@ "version": "0.37" }, "cosmwasm_version": "0.41", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.47.3" + }, + "cosmwasm": { + "version": "0.41", + "enabled": true + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47.3" + }, + "cosmwasm": { + "version": "0.41", + "enabled": true + } }, "peers": { "seeds": [ @@ -131,7 +148,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg", "theme": { - "circle": true + "circle": true, + "primary_color_hex": "#fba0c1" } } ] diff --git a/testnets/marstestnet/assetlist.json b/testnets/marstestnet/assetlist.json index e3860b616f..66269210ee 100644 --- a/testnets/marstestnet/assetlist.json +++ b/testnets/marstestnet/assetlist.json @@ -19,15 +19,16 @@ "display": "mars", "symbol": "MARS", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/marstestnet/chain.json b/testnets/marstestnet/chain.json index 94ece50205..3581276e9a 100644 --- a/testnets/marstestnet/chain.json +++ b/testnets/marstestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Mars Hub Testnet", + "chain_type": "cosmos", "chain_id": "ares-1", "bech32_prefix": "mars", "key_algos": [ @@ -29,11 +30,14 @@ ] }, "codebase": { - "ics_enabled": [ - "ics20-1" - ], "genesis": { "genesis_url": "https://raw.githubusercontent.com/mars-protocol/networks/main/ares-1/genesis.json" + }, + "ibc": { + "type": "go", + "ics_enabled": [ + "ics20-1" + ] } }, "apis": { diff --git a/testnets/metanovaversetestnet/assetlist.json b/testnets/metanovaversetestnet/assetlist.json new file mode 100644 index 0000000000..794701d26d --- /dev/null +++ b/testnets/metanovaversetestnet/assetlist.json @@ -0,0 +1,32 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "metanovaversetestnet", + "assets": [ + { + "description": "MetaNova Verse Native Token", + "denom_units": [ + { + "denom": "amnv", + "exponent": 0 + }, + { + "denom": "mnv", + "exponent": 18 + } + ], + "base": "amnv", + "name": "MNV", + "display": "mnv", + "symbol": "MNV", + "type_asset": "sdk.coin", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/metanovaversetestnet/images/mnova.png" + } + ], + "socials": { + "website": "https://metanovaverse.com/" + } + } + ] +} \ No newline at end of file diff --git a/testnets/metanovaversetestnet/chain.json b/testnets/metanovaversetestnet/chain.json new file mode 100644 index 0000000000..5668728691 --- /dev/null +++ b/testnets/metanovaversetestnet/chain.json @@ -0,0 +1,28 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "metanovaversetestnet", + "status": "live", + "network_type": "testnet", + "website": "https://metanovaverse.com/", + "pretty_name": "Mnova", + "chain_type": "cosmos", + "chain_id": "mnova_10096-1", + "bech32_prefix": "mnova", + "node_home": "$HOME/.mnovad", + "daemon_name": "mnovad", + "key_algos": [ + "ethsecp256k1" + ], + "staking": { + "staking_tokens": [ + { + "denom": "amnv" + } + ] + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/metanovaversetestnet/images/mnova.png" + } + ] +} \ No newline at end of file diff --git a/testnets/metanovaversetestnet/images/mnova.png b/testnets/metanovaversetestnet/images/mnova.png new file mode 100644 index 0000000000..c42a1cc7e8 Binary files /dev/null and b/testnets/metanovaversetestnet/images/mnova.png differ diff --git a/testnets/migalootestnet/assetlist.json b/testnets/migalootestnet/assetlist.json index 96e717766d..6aa13960a9 100644 --- a/testnets/migalootestnet/assetlist.json +++ b/testnets/migalootestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "migalootestnet", "assets": [ { @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/migalootestnet/chain.json b/testnets/migalootestnet/chain.json index 187258f0c5..bcc77b3f9c 100644 --- a/testnets/migalootestnet/chain.json +++ b/testnets/migalootestnet/chain.json @@ -1,10 +1,11 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "migalootestnet", "status": "live", "network_type": "testnet", "website": "https://www.whitewhale.money/", "pretty_name": "Migaloo Testnet", + "chain_type": "cosmos", "chain_id": "narwhal-2", "bech32_prefix": "migaloo", "daemon_name": "migalood", @@ -64,9 +65,25 @@ "version": "0.34" }, "cosmwasm_version": "0.28", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.28", + "enabled": true + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.28", + "enabled": true + } }, "peers": { "seeds": [], diff --git a/testnets/neuradevnet/assetlist.json b/testnets/neuradevnet/assetlist.json index 1daf329d88..fb0067a5c3 100644 --- a/testnets/neuradevnet/assetlist.json +++ b/testnets/neuradevnet/assetlist.json @@ -36,7 +36,8 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ankr.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/neuradevnet/chain.json b/testnets/neuradevnet/chain.json index f4f62eae5d..f9f5423d6e 100644 --- a/testnets/neuradevnet/chain.json +++ b/testnets/neuradevnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "neuradevnet", + "chain_type": "cosmos", "chain_id": "neura_268-1", "bech32_prefix": "neura", "pretty_name": "Neura Devnet", @@ -44,7 +45,10 @@ "image_sync": { "chain_name": "neura" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neura/images/neura.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neura/images/neura.png", + "theme": { + "primary_color_hex": "#4e5afc" + } } ] } \ No newline at end of file diff --git a/testnets/neuratestnet/assetlist.json b/testnets/neuratestnet/assetlist.json index c851935f3f..d7efb1a7f6 100644 --- a/testnets/neuratestnet/assetlist.json +++ b/testnets/neuratestnet/assetlist.json @@ -36,7 +36,8 @@ }, "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ankr.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/neuratestnet/chain.json b/testnets/neuratestnet/chain.json index 2d5e78c0ad..18ed426190 100644 --- a/testnets/neuratestnet/chain.json +++ b/testnets/neuratestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "neuratestnet", + "chain_type": "cosmos", "chain_id": "neura_267-1", "bech32_prefix": "neura", "pretty_name": "Neura Testnet", @@ -64,7 +65,10 @@ "image_sync": { "chain_name": "neura" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neura/images/neura.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neura/images/neura.png", + "theme": { + "primary_color_hex": "#4e5afc" + } } ] } \ No newline at end of file diff --git a/testnets/neutrontestnet/assetlist.json b/testnets/neutrontestnet/assetlist.json index d02ea4053f..4e0146a6ac 100644 --- a/testnets/neutrontestnet/assetlist.json +++ b/testnets/neutrontestnet/assetlist.json @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/ntrn.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/ntrn.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The yield token for ATOM denominated vaults on Amulet Protocol", @@ -54,7 +55,51 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/amATOM.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/amATOM.svg" } - ] + ], + "type_asset": "sdk.coin" + }, + { + "type_asset": "sdk.coin", + "denom_units": [ + { + "denom": "factory/neutron1r3slyjlf7g76mz3na6gh7c8ek62rhssrzf60uh0emyw3x94rppyqfcs0pk/uarena", + "exponent": 0, + "aliases": [ + "uarena" + ] + }, + { + "denom": "arena", + "exponent": 6 + } + ], + "base": "factory/neutron1r3slyjlf7g76mz3na6gh7c8ek62rhssrzf60uh0emyw3x94rppyqfcs0pk/uarena", + "name": "Arena Token", + "display": "arena", + "symbol": "ARENA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron129ukd5cwahcjkccujz87rjemjukff7jf6sau72qrhva677xgz9gs4m4jeq/uarena" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.svg", + "theme": { + "circle": true, + "primary_color_hex": "#FF8000" + } + } + ], + "description": "The governance token of the Arena DAO on Neutron testnet", + "socials": { + "twitter": "https://x.com/ArenaDAO", + "website": "https://testnet.arenadao.org/" + } } ] } \ No newline at end of file diff --git a/testnets/neutrontestnet/chain.json b/testnets/neutrontestnet/chain.json index d0782dbad5..9fe0738125 100644 --- a/testnets/neutrontestnet/chain.json +++ b/testnets/neutrontestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Neutron Testnet", + "chain_type": "cosmos", "chain_id": "pion-1", "bech32_prefix": "neutron", "daemon_name": "neutrond", @@ -24,18 +25,17 @@ }, "codebase": { "git_repo": "https://github.com/neutron-org/neutron", - "recommended_version": "v4.0.0-rc3", + "recommended_version": "v4.2.2-testnet", "compatible_versions": [ - "v4.0.0-rc3" + "v4.2.2-testnet" ], "cosmos_sdk_version": "0.50", "consensus": { "type": "cometbft", - "version": "0.38.7" + "version": "0.38.11" }, - "cosmwasm_version": "0.52", + "cosmwasm_version": "0.51", "cosmwasm_enabled": true, - "ibc_go_version": "8.2.1", "genesis": { "genesis_url": "https://github.com/cosmos/testnets/raw/master/replicated-security/pion-1/pion-1-genesis.json" }, @@ -54,7 +54,18 @@ }, "cosmwasm_version": "0.31", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.0" + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "4.3.0" + } }, { "name": "v1.0.4", @@ -70,7 +81,18 @@ }, "cosmwasm_version": "0.31", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.1" + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "4.3.1" + } }, { "name": "v2.0.0", @@ -86,7 +108,18 @@ }, "cosmwasm_version": "0.45", "cosmwasm_enabled": true, - "ibc_go_version": "7.3.1" + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "version": "0.45", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } }, { "name": "v3.0.0", @@ -102,11 +135,22 @@ }, "cosmwasm_version": "0.45", "cosmwasm_enabled": true, - "ibc_go_version": "7.3.2" + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "version": "0.45", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.3.2" + } }, { "name": "v4.0.0-rc3", - "next_version_name": "", + "next_version_name": "v4.2.1-testnet", "recommended_version": "v4.0.0-rc3", "compatible_versions": [ "v4.0.0-rc3" @@ -118,9 +162,86 @@ }, "cosmwasm_version": "0.51", "cosmwasm_enabled": true, - "ibc_go_version": "8.2.1" + "sdk": { + "type": "cosmos", + "version": "0.50" + }, + "cosmwasm": { + "version": "0.51", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "8.2.1" + } + }, + { + "name": "v4.2.1-testnet", + "next_version_name": "", + "recommended_version": "v4.2.1-testnet", + "compatible_versions": [ + "v4.2.1-testnet" + ], + "cosmos_sdk_version": "0.50", + "consensus": { + "type": "cometbft", + "version": "0.38.11" + }, + "cosmwasm_version": "0.51", + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.50" + }, + "cosmwasm": { + "version": "0.51", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "8.2.1" + } + }, + { + "name": "v4.2.2-testnet", + "next_version_name": "", + "recommended_version": "v4.2.2-testnet", + "compatible_versions": [ + "v4.2.2-testnet" + ], + "cosmos_sdk_version": "0.50", + "consensus": { + "type": "cometbft", + "version": "0.38.11" + }, + "cosmwasm_version": "0.51", + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.50" + }, + "cosmwasm": { + "version": "0.51", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "8.2.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.50" + }, + "ibc": { + "type": "go", + "version": "8.2.1" + }, + "cosmwasm": { + "version": "0.51", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron-black-logo.png", diff --git a/testnets/nibirudevnet/assetlist.json b/testnets/nibirudevnet/assetlist.json index 5807ec0b89..f87f144b2d 100644 --- a/testnets/nibirudevnet/assetlist.json +++ b/testnets/nibirudevnet/assetlist.json @@ -1,9 +1,14 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "nibirudevnet", "assets": [ { "description": "The native token of Nibiru network", + "extended_description": "Nibiru hosts a variety of ecosystem partners in a wide variety of consumer sectors. From RWAs (Coded Estate) to DeFi (Constella, NOM) to Gaming (Blockchain Game Alliance, IntoTheVerse), Nibiru is advancing multiple emerging blockchain narratives that will onboard the next billion users.", + "socials": { + "website": "https://nibiru.fi", + "twitter": "https://twitter.com/nibiruchain" + }, "denom_units": [ { "denom": "unibi", @@ -12,6 +17,10 @@ { "denom": "nibi", "exponent": 6 + }, + { + "denom": "attonibi", + "exponent": 18 } ], "base": "unibi", @@ -25,9 +34,13 @@ "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg", + "theme": { + "primary_color_hex": "#14c0ce" + } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/nibirudevnet/chain.json b/testnets/nibirudevnet/chain.json index 16424a5aa5..6f434f092a 100644 --- a/testnets/nibirudevnet/chain.json +++ b/testnets/nibirudevnet/chain.json @@ -1,10 +1,11 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "nibirudevnet", "status": "live", "network_type": "devnet", "website": "https://nibiru.fi/", "pretty_name": "Nibiru", + "chain_type": "cosmos", "chain_id": "nibiru-devnet-1", "bech32_prefix": "nibi", "daemon_name": "nibid", @@ -53,7 +54,6 @@ }, "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", "genesis": { "genesis_url": "https://raw.githubusercontent.com/NibiruChain/Networks/main/Testnet/nibiru-devnet-1/genesis.json" }, @@ -73,13 +73,25 @@ "cosmos_sdk_version": "v0.45.5", "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", "cosmwasm_path": "$HOME/.nibid/data/wasm", "binaries": { "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_amd64.tar.gz", "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_arm64.tar.gz" }, - "next_version_name": "v1.0.1" + "next_version_name": "v1.0.1", + "sdk": { + "type": "cosmos", + "version": "v0.45.5" + }, + "cosmwasm": { + "version": "v0.44.0", + "path": "$HOME/.nibid/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v1.0.1", @@ -103,10 +115,33 @@ }, "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", @@ -116,7 +151,7 @@ "apis": { "wss": [ { - "address": "wss://hm-graphql.devnet-1.nibiru.fi/query", + "address": "wss://rpc.devnet-1.nibiru.fi/websocket", "provider": "Nibiru Foundation" } ], diff --git a/testnets/nibirudevnet2/assetlist.json b/testnets/nibirudevnet2/assetlist.json index 49a8c91234..196514d2d6 100644 --- a/testnets/nibirudevnet2/assetlist.json +++ b/testnets/nibirudevnet2/assetlist.json @@ -1,9 +1,14 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "nibirudevnet2", "assets": [ { "description": "The native token of Nibiru network", + "extended_description": "Nibiru hosts a variety of ecosystem partners in a wide variety of consumer sectors. From RWAs (Coded Estate) to DeFi (Constella, NOM) to Gaming (Blockchain Game Alliance, IntoTheVerse), Nibiru is advancing multiple emerging blockchain narratives that will onboard the next billion users.", + "socials": { + "website": "https://nibiru.fi", + "twitter": "https://twitter.com/nibiruchain" + }, "denom_units": [ { "denom": "unibi", @@ -12,6 +17,10 @@ { "denom": "nibi", "exponent": 6 + }, + { + "denom": "attonibi", + "exponent": 18 } ], "base": "unibi", @@ -25,9 +34,13 @@ "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg", + "theme": { + "primary_color_hex": "#14c0ce" + } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/nibirudevnet2/chain.json b/testnets/nibirudevnet2/chain.json index 606a7dd932..2ad9bbdc81 100644 --- a/testnets/nibirudevnet2/chain.json +++ b/testnets/nibirudevnet2/chain.json @@ -1,10 +1,11 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "nibirudevnet2", "status": "live", "network_type": "devnet", "website": "https://nibiru.fi/", "pretty_name": "Nibiru", + "chain_type": "cosmos", "chain_id": "nibiru-devnet-2", "bech32_prefix": "nibi", "daemon_name": "nibid", @@ -53,7 +54,6 @@ }, "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", "genesis": { "genesis_url": "https://raw.githubusercontent.com/NibiruChain/Networks/main/Testnet/nibiru-devnet-2/genesis.json" }, @@ -73,13 +73,25 @@ "cosmos_sdk_version": "v0.45.5", "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", "cosmwasm_path": "$HOME/.nibid/data/wasm", "binaries": { "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_amd64.tar.gz", "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_arm64.tar.gz" }, - "next_version_name": "v1.0.1" + "next_version_name": "v1.0.1", + "sdk": { + "type": "cosmos", + "version": "v0.45.5" + }, + "cosmwasm": { + "version": "v0.44.0", + "path": "$HOME/.nibid/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v1.0.1", @@ -103,10 +115,33 @@ }, "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", @@ -116,7 +151,7 @@ "apis": { "wss": [ { - "address": "wss://hm-graphql.devnet-2.nibiru.fi/query", + "address": "wss://rpc.devnet-2.nibiru.fi/websocket", "provider": "Nibiru Foundation" } ], diff --git a/testnets/nibirudevnet3/assetlist.json b/testnets/nibirudevnet3/assetlist.json new file mode 100644 index 0000000000..c1ee91c358 --- /dev/null +++ b/testnets/nibirudevnet3/assetlist.json @@ -0,0 +1,46 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "nibirudevnet3", + "assets": [ + { + "description": "The native token of Nibiru network", + "extended_description": "Nibiru hosts a variety of ecosystem partners in a wide variety of consumer sectors. From RWAs (Coded Estate) to DeFi (Constella, NOM) to Gaming (Blockchain Game Alliance, IntoTheVerse), Nibiru is advancing multiple emerging blockchain narratives that will onboard the next billion users.", + "socials": { + "website": "https://nibiru.fi", + "twitter": "https://twitter.com/nibiruchain" + }, + "denom_units": [ + { + "denom": "unibi", + "exponent": 0 + }, + { + "denom": "nibi", + "exponent": 6 + }, + { + "denom": "attonibi", + "exponent": 18 + } + ], + "base": "unibi", + "name": "Nibiru", + "display": "nibi", + "symbol": "NIBI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg", + "theme": { + "primary_color_hex": "#14c0ce" + } + } + ], + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/testnets/nibirudevnet3/chain.json b/testnets/nibirudevnet3/chain.json new file mode 100644 index 0000000000..996e3a289f --- /dev/null +++ b/testnets/nibirudevnet3/chain.json @@ -0,0 +1,193 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "nibirudevnet3", + "status": "live", + "network_type": "devnet", + "website": "https://nibiru.fi/", + "pretty_name": "Nibiru", + "chain_type": "cosmos", + "chain_id": "nibiru-devnet-3", + "bech32_prefix": "nibi", + "daemon_name": "nibid", + "node_home": "$HOME/.nibid", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "unibi", + "fixed_min_gas_price": 0.025, + "low_gas_price": 0.025, + "average_gas_price": 0.05, + "high_gas_price": 0.1 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "unibi" + } + ], + "lock_duration": { + "time": "1814400s" + } + }, + "codebase": { + "git_repo": "https://github.com/NibiruChain/nibiru", + "recommended_version": "v1.0.1", + "compatible_versions": [ + "v1.0.1" + ], + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_arm64.tar.gz" + }, + "cosmos_sdk_version": "v0.47.7", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "cosmwasm": { + "version": "v0.44.0", + "path": "$HOME/.nibid/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + }, + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/NibiruChain/Networks/main/Testnet/nibiru-devnet-2/genesis.json" + }, + "versions": [ + { + "name": "v1.0.0", + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v1.0.0" + ], + "tag": "v1.0.0", + "height": 1, + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "cosmos_sdk_version": "v0.45.5", + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.nibid/data/wasm", + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_arm64.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "v0.45.5" + }, + "cosmwasm": { + "version": "v0.44.0", + "path": "$HOME/.nibid/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + }, + "next_version_name": "v1.0.1" + }, + { + "name": "v1.0.1", + "recommended_version": "v1.0.1", + "compatible_versions": [ + "v1.0.1" + ], + "tag": "v1.0.1", + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_arm64.tar.gz" + }, + "proposal": 2, + "height": 2753803, + "cosmos_sdk_version": "v0.47.7", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "cosmwasm": { + "version": "v0.44.0", + "path": "$HOME/.nibid/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + }, + "next_version_name": "" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" + }, + "description": "A Web3 hub ushering in the next era of money", + "apis": { + "wss": [ + { + "address": "wss://rpc.devnet-3.nibiru.fi/websocket", + "provider": "Nibiru Foundation" + } + ], + "rpc": [ + { + "address": "https://rpc.devnet-3.nibiru.fi", + "provider": "Nibiru Foundation" + } + ], + "rest": [ + { + "address": "https://lcd.devnet-3.nibiru.fi", + "provider": "Nibiru Foundation" + } + ], + "grpc": [ + { + "address": "grpc.devnet-3.nibiru.fi:443", + "provider": "Nibiru Foundation" + } + ] + }, + "explorers": [ + { + "kind": "Nibiru Foundation", + "url": "https://explorer.nibiru.fi/nibiru-devnet-2", + "tx_page": "https://explorer.nibiru.fi/nibiru-devnet-2/tx/${txHash}", + "account_page": "https://explorer.nibiru.fi/nibiru-devnet-2/account/${accountAddress}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" + } + ] +} \ No newline at end of file diff --git a/testnets/nibirudevnet4/assetlist.json b/testnets/nibirudevnet4/assetlist.json new file mode 100644 index 0000000000..be17f3a72b --- /dev/null +++ b/testnets/nibirudevnet4/assetlist.json @@ -0,0 +1,122 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "nibirudevnet4", + "assets": [ + { + "description": "The native token of Nibiru network", + "extended_description": "Nibiru hosts a variety of ecosystem partners in a wide variety of consumer sectors. From RWAs (Coded Estate) to DeFi (Constella, NOM) to Gaming (Blockchain Game Alliance, IntoTheVerse), Nibiru is advancing multiple emerging blockchain narratives that will onboard the next billion users.", + "socials": { + "website": "https://nibiru.fi", + "twitter": "https://twitter.com/nibiruchain" + }, + "denom_units": [ + { + "denom": "unibi", + "exponent": 0 + }, + { + "denom": "nibi", + "exponent": 6 + }, + { + "denom": "attonibi", + "exponent": 18 + } + ], + "base": "unibi", + "name": "Nibiru", + "display": "nibi", + "symbol": "NIBI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg", + "theme": { + "primary_color_hex": "#14c0ce" + } + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "uoprek", + "denom_units": [ + { + "denom": "tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek", + "exponent": 0 + } + ], + "base": "tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek", + "name": "uoprek", + "display": "tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek", + "symbol": "UOPREK", + "type_asset": "sdk.coin" + }, + { + "description": "utestate", + "denom_units": [ + { + "denom": "tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate", + "exponent": 0 + } + ], + "base": "tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate", + "name": "utestate", + "display": "tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate", + "symbol": "UTESTATE", + "type_asset": "sdk.coin" + }, + { + "description": "npp", + "denom_units": [ + { + "denom": "tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP", + "exponent": 0 + } + ], + "base": "tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP", + "name": "npp", + "display": "tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP", + "symbol": "NPP", + "type_asset": "sdk.coin" + }, + { + "description": "Ether is the native fee token of the Ethereum network.", + "denom_units": [ + { + "denom": "wei", + "exponent": 0 + }, + { + "denom": "gwei", + "exponent": 9 + }, + { + "denom": "eth", + "exponent": 18, + "aliases": [ + "ether" + ] + } + ], + "base": "wei", + "name": "Ether", + "display": "eth", + "symbol": "ETH", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" + }, + "coingecko_id": "ethereum", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" + } + ], + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/testnets/nibirudevnet4/chain.json b/testnets/nibirudevnet4/chain.json new file mode 100644 index 0000000000..e2c294af94 --- /dev/null +++ b/testnets/nibirudevnet4/chain.json @@ -0,0 +1,193 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "nibirudevnet4", + "status": "live", + "network_type": "devnet", + "website": "https://nibiru.fi/", + "pretty_name": "Nibiru", + "chain_type": "cosmos", + "chain_id": "nibiru-devnet-3-evm", + "bech32_prefix": "nibi", + "daemon_name": "nibid", + "node_home": "$HOME/.nibid", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "unibi", + "fixed_min_gas_price": 0.025, + "low_gas_price": 0.025, + "average_gas_price": 0.05, + "high_gas_price": 0.1 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "unibi" + } + ], + "lock_duration": { + "time": "1814400s" + } + }, + "codebase": { + "git_repo": "https://github.com/NibiruChain/nibiru", + "recommended_version": "v1.0.1", + "compatible_versions": [ + "v1.0.1" + ], + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_arm64.tar.gz" + }, + "cosmos_sdk_version": "v0.47.7", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "cosmwasm": { + "version": "v0.44.0", + "path": "$HOME/.nibid/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + }, + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/NibiruChain/Networks/main/Testnet/nibiru-devnet-2/genesis.json" + }, + "versions": [ + { + "name": "v1.0.0", + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v1.0.0" + ], + "tag": "v1.0.0", + "height": 1, + "consensus": { + "type": "cometbft", + "version": "v0.37.2" + }, + "cosmos_sdk_version": "v0.45.5", + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "cosmwasm_path": "$HOME/.nibid/data/wasm", + "sdk": { + "type": "cosmos", + "version": "v0.45.5" + }, + "cosmwasm": { + "version": "v0.44.0", + "path": "$HOME/.nibid/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + }, + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_arm64.tar.gz" + }, + "next_version_name": "v1.0.1" + }, + { + "name": "v1.0.1", + "recommended_version": "v1.0.1", + "compatible_versions": [ + "v1.0.1" + ], + "tag": "v1.0.1", + "binaries": { + "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_amd64.tar.gz", + "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_linux_arm64.tar.gz", + "darwin/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_amd64.tar.gz", + "darwin/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.1/nibid_1.0.1_darwin_arm64.tar.gz" + }, + "proposal": 2, + "height": 2753803, + "cosmos_sdk_version": "v0.47.7", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "cosmwasm_version": "v0.44.0", + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "cosmwasm": { + "version": "v0.44.0", + "path": "$HOME/.nibid/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + }, + "next_version_name": "" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" + }, + "description": "A Web3 hub ushering in the next era of money", + "apis": { + "wss": [ + { + "address": "wss://evm-rpc.devnet-3.nibiru.fi/websocket", + "provider": "Nibiru Foundation" + } + ], + "rpc": [ + { + "address": "https://evm-rpc.devnet-3.nibiru.fi", + "provider": "Nibiru Foundation" + } + ], + "rest": [ + { + "address": "https://evm-lcd.devnet-3.nibiru.fi", + "provider": "Nibiru Foundation" + } + ], + "grpc": [ + { + "address": "grpc.devnet-3.nibiru.fi:443", + "provider": "Nibiru Foundation" + } + ] + }, + "explorers": [ + { + "kind": "Nibiru Foundation", + "url": "https://explorer.nibiru.fi/nibiru-devnet-2", + "tx_page": "https://explorer.nibiru.fi/nibiru-devnet-2/tx/${txHash}", + "account_page": "https://explorer.nibiru.fi/nibiru-devnet-2/account/${accountAddress}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" + } + ] +} \ No newline at end of file diff --git a/testnets/nibirutestnet/assetlist.json b/testnets/nibirutestnet/assetlist.json index f960fa34c4..a5b37f4653 100644 --- a/testnets/nibirutestnet/assetlist.json +++ b/testnets/nibirutestnet/assetlist.json @@ -1,9 +1,14 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "nibirutestnet", "assets": [ { "description": "The native token of Nibiru network", + "extended_description": "Nibiru hosts a variety of ecosystem partners in a wide variety of consumer sectors. From RWAs (Coded Estate) to DeFi (Constella, NOM) to Gaming (Blockchain Game Alliance, IntoTheVerse), Nibiru is advancing multiple emerging blockchain narratives that will onboard the next billion users.", + "socials": { + "website": "https://nibiru.fi", + "twitter": "https://twitter.com/nibiruchain" + }, "denom_units": [ { "denom": "unibi", @@ -12,6 +17,10 @@ { "denom": "nibi", "exponent": 6 + }, + { + "denom": "attonibi", + "exponent": 18 } ], "base": "unibi", @@ -25,9 +34,13 @@ "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg", + "theme": { + "primary_color_hex": "#14c0ce" + } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/nibirutestnet/chain.json b/testnets/nibirutestnet/chain.json index 598dd37270..aa01e6dd3a 100644 --- a/testnets/nibirutestnet/chain.json +++ b/testnets/nibirutestnet/chain.json @@ -1,10 +1,11 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "nibirutestnet", "status": "live", "network_type": "testnet", "website": "https://nibiru.fi/", "pretty_name": "Nibiru", + "chain_type": "cosmos", "chain_id": "nibiru-testnet-1", "bech32_prefix": "nibi", "daemon_name": "nibid", @@ -53,7 +54,6 @@ }, "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", "genesis": { "genesis_url": "https://raw.githubusercontent.com/NibiruChain/Networks/main/Testnet/nibiru-testnet-1/genesis.json" }, @@ -73,13 +73,25 @@ "cosmos_sdk_version": "v0.45.5", "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", "cosmwasm_path": "$HOME/.nibid/data/wasm", "binaries": { "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_amd64.tar.gz", "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_arm64.tar.gz" }, - "next_version_name": "v1.0.1" + "next_version_name": "v1.0.1", + "sdk": { + "type": "cosmos", + "version": "v0.45.5" + }, + "cosmwasm": { + "version": "v0.44.0", + "path": "$HOME/.nibid/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v1.0.1", @@ -103,10 +115,33 @@ }, "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", @@ -116,7 +151,7 @@ "apis": { "wss": [ { - "address": "wss://hm-graphql.testnet-1.nibiru.fi/query", + "address": "wss://rpc.testnet-1.nibiru.fi/websocket", "provider": "Nibiru Foundation" } ], diff --git a/testnets/nibirutestnet2/assetlist.json b/testnets/nibirutestnet2/assetlist.json index 57801cd1b7..8c20b99dfb 100644 --- a/testnets/nibirutestnet2/assetlist.json +++ b/testnets/nibirutestnet2/assetlist.json @@ -1,9 +1,14 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "nibirutestnet2", "assets": [ { "description": "The native token of Nibiru network", + "extended_description": "Nibiru hosts a variety of ecosystem partners in a wide variety of consumer sectors. From RWAs (Coded Estate) to DeFi (Constella, NOM) to Gaming (Blockchain Game Alliance, IntoTheVerse), Nibiru is advancing multiple emerging blockchain narratives that will onboard the next billion users.", + "socials": { + "website": "https://nibiru.fi", + "twitter": "https://twitter.com/nibiruchain" + }, "denom_units": [ { "denom": "unibi", @@ -12,6 +17,10 @@ { "denom": "nibi", "exponent": 6 + }, + { + "denom": "attonibi", + "exponent": 18 } ], "base": "unibi", @@ -25,9 +34,13 @@ "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg", + "theme": { + "primary_color_hex": "#14c0ce" + } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/nibirutestnet2/chain.json b/testnets/nibirutestnet2/chain.json index 10c60c94d3..f888d0de6b 100644 --- a/testnets/nibirutestnet2/chain.json +++ b/testnets/nibirutestnet2/chain.json @@ -1,10 +1,11 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "nibirutestnet2", "status": "live", "network_type": "testnet", "website": "https://nibiru.fi/", "pretty_name": "Nibiru", + "chain_type": "cosmos", "chain_id": "nibiru-testnet-2", "bech32_prefix": "nibi", "daemon_name": "nibid", @@ -53,7 +54,6 @@ }, "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", "genesis": { "genesis_url": "https://raw.githubusercontent.com/NibiruChain/Networks/main/Testnet/nibiru-testnet-2/genesis.json" }, @@ -73,13 +73,25 @@ "cosmos_sdk_version": "v0.45.5", "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", "cosmwasm_path": "$HOME/.nibid/data/wasm", "binaries": { "linux/amd64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_amd64.tar.gz", "linux/arm64": "https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_arm64.tar.gz" }, - "next_version_name": "v1.0.1" + "next_version_name": "v1.0.1", + "sdk": { + "type": "cosmos", + "version": "v0.45.5" + }, + "cosmwasm": { + "version": "v0.44.0", + "path": "$HOME/.nibid/data/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } }, { "name": "v1.0.1", @@ -103,10 +115,33 @@ }, "cosmwasm_version": "v0.44.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.7" + }, + "ibc": { + "type": "go", + "version": "v7.3.1" + }, + "cosmwasm": { + "version": "v0.44.0", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", @@ -116,7 +151,7 @@ "apis": { "wss": [ { - "address": "wss://hm-graphql.testnet-2.nibiru.fi/query", + "address": "wss://rpc.testnet-2.nibiru.fi/websocket", "provider": "Nibiru Foundation" } ], diff --git a/testnets/nilliontestnet/assetlist.json b/testnets/nilliontestnet/assetlist.json index b01bfff9fd..45bf8f402d 100644 --- a/testnets/nilliontestnet/assetlist.json +++ b/testnets/nilliontestnet/assetlist.json @@ -23,7 +23,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nilliontestnet/images/nil.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nilliontestnet/images/nil.svg" } - ] + ], + "type_asset": "sdk.coin" } ] -} +} \ No newline at end of file diff --git a/testnets/nilliontestnet/chain.json b/testnets/nilliontestnet/chain.json index 3680b26a53..3900964653 100644 --- a/testnets/nilliontestnet/chain.json +++ b/testnets/nilliontestnet/chain.json @@ -4,11 +4,14 @@ "status": "live", "network_type": "testnet", "pretty_name": "Nillion Testnet", + "chain_type": "cosmos", "chain_id": "nillion-chain-testnet-1", "bech32_prefix": "nillion", "daemon_name": "nilchaind", "node_home": "$HOME/.nillionapp", - "key_algos": ["ed25519"], + "key_algos": [ + "ed25519" + ], "slip44": 118, "fees": { "fee_tokens": [ @@ -30,14 +33,15 @@ "codebase": { "git_repo": "https://github.com/NillionNetwork/nilchain", "recommended_version": "v0.1.1", - "compatible_versions": ["v0.1.1"], + "compatible_versions": [ + "v0.1.1" + ], "cosmos_sdk_version": "v0.50.6", "consensus": { "type": "cometbft", - "version": " v0.38.6" + "version": "v0.38.6" }, "cosmwasm_enabled": false, - "ibc_go_version": "5.3.2", "genesis": { "genesis_url": "https://raw.githubusercontent.com/NillionNetwork/networks/main/nillion-chain-testnet-1/genesis.json" }, @@ -45,16 +49,39 @@ { "name": "v0.1.1", "recommended_version": "v0.1.1", - "compatible_versions": ["v0.1.1"], + "compatible_versions": [ + "v0.1.1" + ], "cosmos_sdk_version": "v0.50.6", "consensus": { "type": "cometbft", "version": "v0.38.6" }, "cosmwasm_enabled": false, - "ibc_go_version": "v8.2.0" + "sdk": { + "type": "cosmos", + "version": "v0.50.6" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v8.2.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.50.6" + }, + "ibc": { + "type": "go", + "version": "5.3.2" + }, + "cosmwasm": { + "enabled": false + } }, "peers": { "seeds": [ @@ -113,4 +140,4 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nilliontestnet/images/nil.png" } ] -} +} \ No newline at end of file diff --git a/testnets/nobletestnet/assetlist.json b/testnets/nobletestnet/assetlist.json index cb16a9a1aa..cc014ae720 100644 --- a/testnets/nobletestnet/assetlist.json +++ b/testnets/nobletestnet/assetlist.json @@ -20,7 +20,8 @@ "base": "ustake", "name": "Stake", "display": "stake", - "symbol": "STAKE" + "symbol": "STAKE", + "type_asset": "sdk.coin" }, { "description": "Love is a test tokenfactory asset controlled by the Strangelove Team", @@ -40,7 +41,8 @@ "base": "ulove", "display": "love", "name": "Love", - "symbol": "LOVE" + "symbol": "LOVE", + "type_asset": "sdk.coin" }, { "description": "USD Coin", @@ -72,13 +74,24 @@ } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Ondo US Dollar Yield", @@ -108,7 +121,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdy.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdy.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/nobletestnet/chain.json b/testnets/nobletestnet/chain.json index 063f74e1c4..3fcff0aaf6 100644 --- a/testnets/nobletestnet/chain.json +++ b/testnets/nobletestnet/chain.json @@ -1,6 +1,7 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "nobletestnet", + "chain_type": "cosmos", "chain_id": "grand-1", "website": "https://nobleassets.xyz/", "pretty_name": "Noble", @@ -52,10 +53,6 @@ "version": "0.34" }, "cosmwasm_enabled": false, - "ibc_go_version": "v3.4.0", - "ics_enabled": [ - "ics20-1" - ], "genesis": { "name": "v0.3.0", "genesis_url": "https://raw.githubusercontent.com/strangelove-ventures/noble-networks/main/testnet/grand-1/genesis.json" @@ -81,11 +78,21 @@ "version": "0.34" }, "cosmwasm_enabled": false, - "ibc_go_version": "v3.4.0", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "radon" + "next_version_name": "radon", + "sdk": { + "type": "cosmos", + "version": "v0.45" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v3.4.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "radon", @@ -93,7 +100,8 @@ "height": 645000, "recommended_version": "v0.5.1", "compatible_versions": [ - "v0.5.0", "v0.5.1" + "v0.5.0", + "v0.5.1" ], "cosmos_sdk_version": "v0.45", "consensus": { @@ -101,10 +109,20 @@ "version": "0.34" }, "cosmwasm_enabled": false, - "ibc_go_version": "v3.4.0 (fork)", - "ics_enabled": [ - "ics20-1" - ] + "sdk": { + "type": "cosmos", + "version": "v0.45" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v3.4.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v3.0.0", @@ -117,12 +135,36 @@ "version": "0.34" }, "cosmwasm_enabled": false, - "ibc_go_version": "v3.4.0 (fork)", - "ics_enabled": [ - "ics20-1" - ] + "sdk": { + "type": "cosmos", + "version": "v0.45" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "v3.4.0", + "ics_enabled": [ + "ics20-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.45" + }, + "ibc": { + "type": "go", + "version": "v3.4.0", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "enabled": false + } }, "peers": { "persistent_peers": [ @@ -193,4 +235,4 @@ "tx_page": "https://explore.strange.love/grand-1/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/noistestnet/assetlist.json b/testnets/noistestnet/assetlist.json index 865f2f0437..e1f2786547 100644 --- a/testnets/noistestnet/assetlist.json +++ b/testnets/noistestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "noistestnet", "assets": [ { @@ -33,7 +33,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/noistestnet/chain.json b/testnets/noistestnet/chain.json index 0f75f2ecde..eba0198df4 100644 --- a/testnets/noistestnet/chain.json +++ b/testnets/noistestnet/chain.json @@ -1,10 +1,11 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "noistestnet", "status": "live", "network_type": "testnet", "website": "https://nois.network", "pretty_name": "Nois", + "chain_type": "cosmos", "chain_id": "nois-testnet-005", "bech32_prefix": "nois", "daemon_name": "noisd", @@ -66,9 +67,25 @@ "version": "0.34" }, "cosmwasm_version": "0.30", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } }, "images": [ { diff --git a/testnets/nolustestnet/assetlist.json b/testnets/nolustestnet/assetlist.json index 0edd33eac9..7df2435058 100644 --- a/testnets/nolustestnet/assetlist.json +++ b/testnets/nolustestnet/assetlist.json @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/nolustestnet/chain.json b/testnets/nolustestnet/chain.json index 635cc2eb52..9297013204 100644 --- a/testnets/nolustestnet/chain.json +++ b/testnets/nolustestnet/chain.json @@ -5,6 +5,7 @@ "website": "https://nolus.io/", "network_type": "testnet", "pretty_name": "Nolus Testnet", + "chain_type": "cosmos", "chain_id": "rila-1", "bech32_prefix": "nolus", "daemon_name": "nolusd", @@ -44,11 +45,6 @@ }, "cosmwasm_version": "0.31", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "genesis": { "genesis_url": "https://raw.githubusercontent.com/nolus-protocol/nolus-networks/main/testnet/rila-1/genesis.json" }, @@ -60,13 +56,40 @@ "cosmos_sdk_version": "0.45", "cosmwasm_version": "0.31", "cosmwasm_enabled": true, - "ibc_go_version": "4.3.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ] + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "4.3.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "ibc": { + "type": "go", + "version": "4.3.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.png", diff --git a/testnets/nomictestnet/assetlist.json b/testnets/nomictestnet/assetlist.json new file mode 100644 index 0000000000..735e5ead66 --- /dev/null +++ b/testnets/nomictestnet/assetlist.json @@ -0,0 +1,96 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "nomictestnet", + "assets": [ + { + "description": "Nomic's native token.", + "denom_units": [ + { + "denom": "unom", + "exponent": 0 + }, + { + "denom": "nom", + "exponent": 6 + } + ], + "base": "unom", + "name": "Nomic", + "display": "nom", + "symbol": "NOM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg" + }, + "traces": [ + { + "type": "test-mintage", + "counterparty": { + "chain_name": "nomic", + "base_denom": "unom" + }, + "provider": "Nomic" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "nomic", + "base_denom": "unom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg", + "theme": { + "primary_color_hex": "#6404fc" + } + } + ], + "type_asset": "sdk.coin" + }, + { + "description": "Bitcoin. On Cosmos.", + "denom_units": [ + { + "denom": "usat", + "exponent": 0 + }, + { + "denom": "nbtc", + "exponent": 14 + } + ], + "base": "usat", + "name": "Nomic Bitcoin", + "display": "nbtc", + "symbol": "nBTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg" + }, + "traces": [ + { + "type": "bridge", + "counterparty": { + "chain_name": "bitcointestnet", + "base_denom": "sat" + }, + "provider": "Nomic" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "nomic", + "base_denom": "usat" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg", + "theme": { + "primary_color_hex": "#8436e6" + } + } + ], + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/testnets/nomictestnet/chain.json b/testnets/nomictestnet/chain.json new file mode 100644 index 0000000000..56a6ab6a72 --- /dev/null +++ b/testnets/nomictestnet/chain.json @@ -0,0 +1,122 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "nomictestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Nomic Testnet", + "website": "https://nomic.io/", + "chain_type": "cosmos", + "chain_id": "nomic-testnet-6", + "bech32_prefix": "nomic", + "daemon_name": "nomic", + "node_home": "$HOME/.nomic-testnet-6", + "slip44": 118, + "key_algos": [ + "secp256k1" + ], + "fees": { + "fee_tokens": [ + { + "denom": "unom", + "low_gas_price": 0, + "average_gas_price": 0, + "high_gas_price": 0 + }, + { + "denom": "usat", + "low_gas_price": 0, + "average_gas_price": 0, + "high_gas_price": 0 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "unom" + } + ], + "lock_duration": { + "time": "1209600s" + } + }, + "codebase": { + "git_repo": "https://github.com/nomic-io/nomic", + "recommended_version": "v9.1.0", + "compatible_versions": [ + "v9.1.0" + ], + "consensus": { + "type": "tendermint", + "version": "v0.34" + }, + "genesis": { + "genesis_url": "https://github.com/nomic-io/nomic/blob/v9.1.0/networks/testnet.toml" + }, + "versions": [ + { + "name": "v9.1.0", + "recommended_version": "v9.1.0", + "compatible_versions": [ + "v9.1.0" + ], + "consensus": { + "type": "tendermint", + "version": "v0.34" + }, + "next_version_name": "" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg" + }, + "description": "The superior way to use Bitcoin in Cosmos DeFi. Use IBC to securely and efficiently bridge your BTC to Osmosis and more.", + "peers": { + "seeds": [ + { + "id": "a07d56aa65e395c332a7bf226ec4e2f844519ffa", + "address": "147.182.171.216:26656", + "provider": "mappum" + } + ], + "persistent_peers": [] + }, + "apis": { + "rpc": [ + { + "address": "https://testnet-rpc.nomic.io:2096", + "provider": "nomic" + } + ], + "rest": [ + { + "address": "https://testnet-api.nomic.io:8443", + "provider": "nomic" + } + ] + }, + "explorers": [], + "images": [ + { + "image_sync": { + "chain_name": "nomic", + "base_denom": "unom" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg", + "theme": { + "primary_color_hex": "#6404fc" + } + } + ], + "bech32_config": { + "bech32PrefixAccAddr": "nomic", + "bech32PrefixAccPub": "nomic", + "bech32PrefixConsAddr": "nomic", + "bech32PrefixConsPub": "nomic", + "bech32PrefixValAddr": "nomic", + "bech32PrefixValPub": "nomic" + } +} \ No newline at end of file diff --git a/testnets/nyxtestnet/assetlist.json b/testnets/nyxtestnet/assetlist.json index 9c075f75f9..40a521c0d9 100644 --- a/testnets/nyxtestnet/assetlist.json +++ b/testnets/nyxtestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "nyxtestnet", "assets": [ { @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyxtestnet/images/nyx.png" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", @@ -64,7 +65,8 @@ "circle": true } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/nyxtestnet/chain.json b/testnets/nyxtestnet/chain.json index 2dd887abde..8e8c4d98aa 100644 --- a/testnets/nyxtestnet/chain.json +++ b/testnets/nyxtestnet/chain.json @@ -1,10 +1,11 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "nyxtestnet", "status": "live", "network_type": "testnet", "website": "https://nymtech.net/", "pretty_name": "Nym", + "chain_type": "cosmos", "chain_id": "sandbox", "bech32_prefix": "n", "daemon_name": "nyxd", @@ -63,9 +64,15 @@ "cosmwasm_enabled": true, "binaries": { "linux/amd64": "https://github.com/nymtech/nyxd/releases/tag/v0.43.0" + }, + "cosmwasm": { + "enabled": true } } - ] + ], + "cosmwasm": { + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyxtestnet/images/nym_token_light.png", diff --git a/testnets/ojotestnet/assetlist.json b/testnets/ojotestnet/assetlist.json index 3f5e8a0f52..97baf94ae0 100644 --- a/testnets/ojotestnet/assetlist.json +++ b/testnets/ojotestnet/assetlist.json @@ -25,7 +25,8 @@ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ojotestnet/images/ojo.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/okp4testnet/assetlist.json b/testnets/okp4testnet/assetlist.json index 4c6527af7d..9f62efb550 100644 --- a/testnets/okp4testnet/assetlist.json +++ b/testnets/okp4testnet/assetlist.json @@ -3,7 +3,7 @@ "chain_name": "okp4testnet", "assets": [ { - "description": "The native token of ØKP4.", + "description": "The native token of \u00d8KP4.", "denom_units": [ { "denom": "uknow", @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/okp4testnet/images/okp4.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/okp4testnet/chain.json b/testnets/okp4testnet/chain.json index 1b58ec1682..1ff77262a2 100644 --- a/testnets/okp4testnet/chain.json +++ b/testnets/okp4testnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "okp4testnet", + "chain_type": "cosmos", "chain_id": "okp4-nemeton-1", "website": "https://okp4.network/", "pretty_name": "OKP4 Nemeton", diff --git a/testnets/osmosistestnet/assetlist.json b/testnets/osmosistestnet/assetlist.json index 86f8fa7059..bd21bb9322 100644 --- a/testnets/osmosistestnet/assetlist.json +++ b/testnets/osmosistestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "osmosistestnet", "assets": [ { @@ -324,8 +324,8 @@ } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg" }, "images": [ { @@ -333,8 +333,8 @@ "chain_name": "marstestnet", "base_denom": "umars" }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg" } ] }, @@ -398,6 +398,7 @@ } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, "images": [ @@ -406,7 +407,12 @@ "chain_name": "nobletestnet", "base_denom": "uusdc" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } } ] }, @@ -512,6 +518,9 @@ "image_sync": { "chain_name": "kyve", "base_denom": "ukyve" + }, + "theme": { + "primary_color_hex": "#335350" } } ] @@ -814,7 +823,10 @@ "base_denom": "uixo" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg", + "theme": { + "primary_color_hex": "#2c4484" + } } ] }, @@ -845,13 +857,14 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "The yield token for ATOM denominated vaults on Amulet Protocol", "denom_units": [ { - "denom": "ibc/E972F89F57AF6BDE0CCC97CABFF4DD8D99408B8A741570E1E3D1C35465C98E5E", + "denom": "ibc/C86B92F7FCFC1993DAC4AB0D78D9BC080300354B823A57F12CD6E2FBB667214E", "exponent": 0 }, { @@ -859,7 +872,7 @@ "exponent": 6 } ], - "base": "ibc/E972F89F57AF6BDE0CCC97CABFF4DD8D99408B8A741570E1E3D1C35465C98E5E", + "base": "ibc/C86B92F7FCFC1993DAC4AB0D78D9BC080300354B823A57F12CD6E2FBB667214E", "name": "amATOM (Testnet)", "display": "amATOM", "symbol": "amATOM", diff --git a/testnets/osmosistestnet/chain.json b/testnets/osmosistestnet/chain.json index 10400c8823..fcdefaaefd 100644 --- a/testnets/osmosistestnet/chain.json +++ b/testnets/osmosistestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Osmosis Testnet", + "chain_type": "cosmos", "chain_id": "osmo-test-5", "bech32_prefix": "osmo", "daemon_name": "osmosisd", @@ -59,7 +60,15 @@ "version": "0.34" }, "cosmwasm_version": "0.29", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + } }, { "name": "v15.0.0-rc3", @@ -73,7 +82,15 @@ "version": "0.34" }, "cosmwasm_version": "0.29", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + } }, { "name": "v15.0.0", @@ -87,9 +104,25 @@ "version": "0.34" }, "cosmwasm_version": "0.30", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } }, "peers": { "seeds": [ diff --git a/testnets/osmosistestnet4/assetlist.json b/testnets/osmosistestnet4/assetlist.json index c6eda89a0f..242aacdc0b 100644 --- a/testnets/osmosistestnet4/assetlist.json +++ b/testnets/osmosistestnet4/assetlist.json @@ -34,7 +34,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -64,7 +65,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/osmosistestnet4/chain.json b/testnets/osmosistestnet4/chain.json index 4db72a367c..3d2fd1a007 100644 --- a/testnets/osmosistestnet4/chain.json +++ b/testnets/osmosistestnet4/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Osmosis Testnet", + "chain_type": "cosmos", "chain_id": "osmo-test-4", "bech32_prefix": "osmo", "daemon_name": "osmosisd", @@ -59,7 +60,15 @@ "version": "0.34" }, "cosmwasm_version": "0.29", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + } }, { "name": "v15.0.0-rc3", @@ -73,9 +82,25 @@ "version": "0.34" }, "cosmwasm_version": "0.29", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + } }, "peers": { "seeds": [ diff --git a/testnets/permtestnet/assetlist.json b/testnets/permtestnet/assetlist.json index a4e90d83c4..90f4f0dd28 100644 --- a/testnets/permtestnet/assetlist.json +++ b/testnets/permtestnet/assetlist.json @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/permtestnet/images/Perm.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/permtestnet/images/Perm.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/permtestnet/chain.json b/testnets/permtestnet/chain.json index ae9ea5eb69..d00e3bd295 100644 --- a/testnets/permtestnet/chain.json +++ b/testnets/permtestnet/chain.json @@ -1,113 +1,147 @@ { - "$schema": "../../chain.schema.json", - "chain_name": "permtestnet", - "status": "live", - "network_type": "testnet", - "pretty_name": "Perm Testnet", - "chain_id": "INVALID-ID-permtestnet-testnet-1", - "bech32_prefix": "perm", - "daemon_name": "permd", - "node_home": "$HOME/.perm", - "key_algos": [ - "secp256k1" + "$schema": "../../chain.schema.json", + "chain_name": "permtestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Perm Testnet", + "chain_type": "cosmos", + "chain_id": "INVALID-ID-permtestnet-testnet-1", + "bech32_prefix": "perm", + "daemon_name": "permd", + "node_home": "$HOME/.perm", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uperm", + "low_gas_price": 0.0025, + "average_gas_price": 0.0025, + "high_gas_price": 0.0024 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uperm" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/Loop-Protocol/perm.git", + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v1.0.0" ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "uperm", - "low_gas_price": 0.0025, - "average_gas_price": 0.0025, - "high_gas_price": 0.0024 - } - ] + "cosmos_sdk_version": "0.45", + "consensus": { + "type": "tendermint", + "version": "0.34" }, - "staking": { - "staking_tokens": [ - { - "denom": "uperm" - } - ] + "cosmwasm_version": "0.30", + "cosmwasm_enabled": true, + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/Loop-Protocol/testnet/main/genesis.json" }, - "codebase": { - "git_repo": "https://github.com/Loop-Protocol/perm.git", - "recommended_version": "v1.0.0", - "compatible_versions": [ - "v1.0.0" - ], - "cosmos_sdk_version": "0.45", - "consensus": { - "type": "tendermint", - "version": "0.34" - }, - "cosmwasm_version": "0.30", - "cosmwasm_enabled": true, - "ibc_go_version": "4.3.0", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/Loop-Protocol/testnet/main/genesis.json" + "versions": [ + { + "name": "v1.0.0", + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v1.0.0" + ], + "cosmos_sdk_version": "0.45", + "consensus": { + "type": "tendermint", + "version": "0.34" + }, + "cosmwasm_version": "0.30", + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "4.3.0" + } }, - "versions": [ - { - "name": "v1.0.0", - "recommended_version": "v1.0.0", - "compatible_versions": [ - "v1.0.0" - ], - "cosmos_sdk_version": "0.45", - "consensus": { - "type": "tendermint", - "version": "0.34" - }, - "cosmwasm_version": "0.30", - "cosmwasm_enabled": true, - "ibc_go_version": "4.3.0" + { + "name": "v1.0.0", + "recommended_version": "v1.0.0", + "compatible_versions": [ + "v1.0.0" + ], + "cosmos_sdk_version": "0.45", + "consensus": { + "type": "tendermint", + "version": "0.34" }, - { - "name": "v1.0.0", - "recommended_version": "v1.0.0", - "compatible_versions": [ - "v1.0.0" - ], - "cosmos_sdk_version": "0.45", - "consensus": { - "type": "tendermint", - "version": "0.34" - }, - "cosmwasm_version": "0.30", - "cosmwasm_enabled": true, - "ibc_go_version": "4.3.0" + "cosmwasm_version": "0.30", + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "4.3.0" } - ] - }, - "peers": { - "seeds": [], - "persistent_peers": [] + } + ], + "sdk": { + "type": "cosmos", + "version": "0.45" }, - "apis": { - "rpc": [ - { - "address": "https://rpc.3.finance/", - "provider": "Perm Network" - } - ], - "rest": [ - { - "address": "https://rest.3.finance/", - "provider": "Perm Network" - } - ], - "grpc": [ - { - "address": "https://grpc.3.finance/", - "provider": "Perm Network" - } - ] + "ibc": { + "type": "go", + "version": "4.3.0" }, - "explorers": [ + "cosmwasm": { + "version": "0.30", + "enabled": true + } + }, + "peers": { + "seeds": [], + "persistent_peers": [] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.3.finance/", + "provider": "Perm Network" + } + ], + "rest": [ + { + "address": "https://rest.3.finance/", + "provider": "Perm Network" + } + ], + "grpc": [ { - "kind": "bigdipper", - "url": "https://explorer.testnet.perm.ooo/", - "tx_page": "https://explorer.testnet.perm.ooo/transactions/${txHash}" + "address": "https://grpc.3.finance/", + "provider": "Perm Network" } ] - } + }, + "explorers": [ + { + "kind": "bigdipper", + "url": "https://explorer.testnet.perm.ooo/", + "tx_page": "https://explorer.testnet.perm.ooo/transactions/${txHash}" + } + ] +} \ No newline at end of file diff --git a/testnets/persistencetestnet/assetlist.json b/testnets/persistencetestnet/assetlist.json index 68b82211bc..c864a24752 100644 --- a/testnets/persistencetestnet/assetlist.json +++ b/testnets/persistencetestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "persistencetestnet", "assets": [ { @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "PSTAKE Liquid-Staked ATOM", @@ -59,7 +60,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/persistencetestnet/chain.json b/testnets/persistencetestnet/chain.json index 88b5738993..7311fdacd1 100644 --- a/testnets/persistencetestnet/chain.json +++ b/testnets/persistencetestnet/chain.json @@ -1,6 +1,7 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "persistencetestnet", + "chain_type": "cosmos", "chain_id": "test-core-1", "pretty_name": "Persistence Testnet", "status": "live", @@ -164,4 +165,4 @@ "account_page": "https://mintscan.io/persistence-testnet/account/${accountAddress}" } ] -} +} \ No newline at end of file diff --git a/testnets/persistencetestnet2/assetlist.json b/testnets/persistencetestnet2/assetlist.json index 31d789414e..7621006980 100644 --- a/testnets/persistencetestnet2/assetlist.json +++ b/testnets/persistencetestnet2/assetlist.json @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "PSTAKE Liquid-Staked ATOM", @@ -59,7 +60,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "PSTAKE Liquid-Staked OSMO", @@ -90,7 +92,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "PSTAKE Liquid-Staked DV4TNT", @@ -121,7 +124,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdv4tnt.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdv4tnt.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/persistencetestnet2/chain.json b/testnets/persistencetestnet2/chain.json index f9aa4dca09..d13f6475cd 100644 --- a/testnets/persistencetestnet2/chain.json +++ b/testnets/persistencetestnet2/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "persistencetestnet2", + "chain_type": "cosmos", "chain_id": "test-core-2", "pretty_name": "Persistence Testnet", "status": "live", @@ -69,10 +70,21 @@ "type": "tendermint", "version": "0.37" }, - "ibc_go_version": "v7.2.0", "cosmwasm_version": "0.40", "cosmwasm_enabled": true, - "next_version_name": "v8.1.0" + "next_version_name": "v8.1.0", + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "version": "0.40", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.2.0" + } }, { "name": "v8.1.0", @@ -86,10 +98,21 @@ "type": "tendermint", "version": "0.37" }, - "ibc_go_version": "v7.2.0", "cosmwasm_version": "0.40", "cosmwasm_enabled": true, - "next_version_name": "v9" + "next_version_name": "v9", + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "version": "0.40", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.2.0" + } }, { "name": "v9", @@ -105,10 +128,21 @@ "type": "tendermint", "version": "0.37" }, - "ibc_go_version": "v7.2.0", "cosmwasm_version": "0.40", "cosmwasm_enabled": true, - "next_version_name": "v9.1.0" + "next_version_name": "v9.1.0", + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "version": "0.40", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.2.0" + } }, { "name": "v9.1.0", @@ -120,12 +154,7 @@ "v9.1.1", "v9.1.0" ], - "cosmos_sdk_version": "v0.47.x-lsm", - "ibc_go_version": "v7.2.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], + "cosmos_sdk_version": "v0.47.0-lsm", "consensus": { "type": "cometbft", "version": "v0.37.2" @@ -135,6 +164,24 @@ "cosmwasm_path": "$HOME/.persistenceCore/wasm", "binaries": { "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v9.1.1/persistenceCore-v9.1.1-linux-amd64.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "v0.47.0", + "tag": "v0.47.0-lsm" + }, + "cosmwasm": { + "version": "v0.40.2", + "path": "$HOME/.persistenceCore/wasm", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.2.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] } } ] @@ -258,4 +305,4 @@ "account_page": "https://testnet-explorer.baryon.dev/test-core-2/account/${accountAddress}" } ] -} +} \ No newline at end of file diff --git a/testnets/planqtestnet/assetlist.json b/testnets/planqtestnet/assetlist.json index 271e0ba908..3df8492f81 100644 --- a/testnets/planqtestnet/assetlist.json +++ b/testnets/planqtestnet/assetlist.json @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/planqtestnet/chain.json b/testnets/planqtestnet/chain.json index 3bfd2fbdeb..8528411afb 100644 --- a/testnets/planqtestnet/chain.json +++ b/testnets/planqtestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Planq Atlas Testnet", + "chain_type": "cosmos", "chain_id": "planq_7077-1", "bech32_prefix": "plq", "daemon_name": "planqd", @@ -51,7 +52,6 @@ "type": "cometbft", "version": "0.34.33" }, - "ibc_go_version": "5.0.2", "genesis": { "genesis_url": "https://raw.githubusercontent.com/planq-network/networks/main/atlas-testnet/genesis.json" }, @@ -67,7 +67,6 @@ "type": "cometbft", "version": "0.34.33" }, - "ibc_go_version": "5.0.2", "binaries": { "linux/amd64": "https://github.com/planq-network/planq/releases/download/v1.1.2/planq_1.1.2_linux_amd64.tar.gz", "linux/arm64": "https://github.com/planq-network/planq/releases/download/v1.1.2/planq_1.1.2_linux_arm64.tar.gz", @@ -75,9 +74,25 @@ "darwin/arm64": "https://github.com/planq-network/planq/releases/download/v1.1.2/planq_1.1.2_darwin_arm64.tar.gz", "windows/amd64": "https://github.com/planq-network/planq/releases/download/v1.1.2/planq_1.1.2_windows_amd64.zip" }, - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.46.3" + }, + "ibc": { + "type": "go", + "version": "5.0.2" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.46.3" + }, + "ibc": { + "type": "go", + "version": "5.0.2" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.png", diff --git a/testnets/pryzmtestnet/assetlist.json b/testnets/pryzmtestnet/assetlist.json index 6b4ae84e1d..b1351b3b9a 100644 --- a/testnets/pryzmtestnet/assetlist.json +++ b/testnets/pryzmtestnet/assetlist.json @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/pryzmtestnet/chain.json b/testnets/pryzmtestnet/chain.json index 40ef2a18fc..0730617227 100644 --- a/testnets/pryzmtestnet/chain.json +++ b/testnets/pryzmtestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Pryzm Testnet", + "chain_type": "cosmos", "chain_id": "indigo-1", "bech32_prefix": "pryzm", "daemon_name": "pryzmd", @@ -41,7 +42,6 @@ "type": "tendermint", "version": "0.37" }, - "ibc_go_version": "7.3.1", "genesis": { "genesis_url": "https://storage.googleapis.com/pryzm-resources/indigo-1/genesis.json" }, @@ -57,9 +57,24 @@ "type": "tendermint", "version": "0.37" }, - "ibc_go_version": "7.3.1" + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "ibc": { + "type": "go", + "version": "7.3.1" + } }, "peers": { "seeds": [ diff --git a/testnets/quasartestnet/assetlist.json b/testnets/quasartestnet/assetlist.json index 742fd166b2..c24989bc3c 100644 --- a/testnets/quasartestnet/assetlist.json +++ b/testnets/quasartestnet/assetlist.json @@ -1,55 +1,60 @@ -{ - "$schema": "../../assetlist.schema.json", - "chain_name": "quasartestnet", - "assets": [ - { - "description": "The native token of Quasar", - "denom_units": [ - { - "denom": "uqsr", - "exponent": 0, - "aliases": [] - }, - { - "denom": "qsr", - "exponent": 6, - "aliases": [] - } - ], - "base": "uqsr", - "name": "Quasar", - "display": "qsr", - "symbol": "QSR" - },{ - "denom_units": [ - { - "denom": "uayy", - "exponent": 0 - }, - { - "denom": "ayy", - "exponent": 6 - } - ], - "base": "uayy", - "name": "AYY", - "display": "ayy", - "symbol": "AYY" - },{ - "denom_units": [ - { - "denom": "uoro", - "exponent": 0 - }, - { - "denom": "oro", - "exponent": 6 - } - ], - "base": "uoro", - "name": "oro", - "display": "oro", - "symbol": "ORO" - } - ] -} +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "quasartestnet", + "assets": [ + { + "description": "The native token of Quasar", + "denom_units": [ + { + "denom": "uqsr", + "exponent": 0, + "aliases": [] + }, + { + "denom": "qsr", + "exponent": 6, + "aliases": [] + } + ], + "base": "uqsr", + "name": "Quasar", + "display": "qsr", + "symbol": "QSR", + "type_asset": "sdk.coin" + }, + { + "denom_units": [ + { + "denom": "uayy", + "exponent": 0 + }, + { + "denom": "ayy", + "exponent": 6 + } + ], + "base": "uayy", + "name": "AYY", + "display": "ayy", + "symbol": "AYY", + "type_asset": "sdk.coin" + }, + { + "denom_units": [ + { + "denom": "uoro", + "exponent": 0 + }, + { + "denom": "oro", + "exponent": 6 + } + ], + "base": "uoro", + "name": "oro", + "display": "oro", + "symbol": "ORO", + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/testnets/quasartestnet/chain.json b/testnets/quasartestnet/chain.json index 30f3a7c853..e7879fff8c 100644 --- a/testnets/quasartestnet/chain.json +++ b/testnets/quasartestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Quasar Testnet", + "chain_type": "cosmos", "chain_id": "quasar-test-1", "bech32_prefix": "quasar", "daemon_name": "quasarnoded", @@ -32,16 +33,16 @@ }, "codebase": { "git_repo": "https://github.com/quasar-finance/quasar", - "recommended_version": "v1.0.1-rc-testnet", + "recommended_version": "v2.0.0-rc", "compatible_versions": [ - "v1.0.1-rc-testnet" + "v2.0.0-rc" ], - "cosmos_sdk_version": "0.45.16", + "cosmos_sdk_version": "0.47.12", "consensus": { - "type": "tendermint", - "version": "0.34.27" + "type": "cometbft", + "version": "0.37.6" }, - "cosmwasm_version": "0.31", + "cosmwasm_version": "0.45.0", "cosmwasm_enabled": true, "genesis": { "genesis_url": "https://raw.githubusercontent.com/quasar-finance/questnet/main/v04/definitive-genesis.json" @@ -59,9 +60,47 @@ "version": "0.34.27" }, "cosmwasm_version": "0.31", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45.16" + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + } + }, + { + "name": "v2.0.0-rc", + "recommended_version": "v2.0.0-rc", + "compatible_versions": [ + "v2.0.0-rc" + ], + "cosmos_sdk_version": "0.47.12", + "consensus": { + "type": "cometbft", + "version": "0.37.6" + }, + "cosmwasm_version": "0.45.0", + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.47.12" + }, + "cosmwasm": { + "version": "0.45.0", + "enabled": true + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47.12" + }, + "cosmwasm": { + "version": "0.45.0", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", @@ -78,60 +117,57 @@ "id": "58a7ede083714c51efd3f285c16ed613b49b83ee", "address": "154.26.158.158:18256", "provider": "Stake and Relax" + }, + { + "id": "3f472746f46493309650e5a033076689996c8881", + "address": "quasar-testnet.rpc.kjnodes.com:14859", + "provider": "KJNodes.com" } ], "persistent_peers": [ { - "id": "8a19aa6e874ed5720aad2e7d02567ec932d92d22", - "address": "141.94.248.63:26656" + "id": "f12f8926889753ba8bdaf508aa26b3b0f60693ad", + "address": "185.111.159.185:18256" }, { - "id": "444b80ce750976df59b88ac2e08d720e1dbbf230", - "address": "68.183.75.239:26666" + "id": "2383a34d61003c4b790583e157daee30e58cfa5e", + "address": "88.198.27.51:60656" }, { "id": "20b4f9207cdc9d0310399f848f057621f7251846", - "address": "222.106.187.13:40606" - }, - { - "id": "7ef67269c8ec37ff8a538a5ae83ca670fd2da686", - "address": "137.184.192.123:26656" + "address": "222.106.187.14:53700" }, { - "id": "19afe579cc0a2b38ca87143f779f45e9a7f18a2f", - "address": "18.134.191.148:26656" + "id": "d6ca455a4b55b4409e67ec2e0ba11f09f4afcdaa", + "address": "65.109.65.248:45656" }, { - "id": "a23f002bda10cb90fa441a9f2435802b35164441", - "address": "38.146.3.203:18256" + "id": "80b4581a599c13a67db327884d77b7716e47049c", + "address": "65.108.73.124:27656" }, { - "id": "bba6e85e3d1f1d9c127324e71a982ddd86af9a99", - "address": "88.99.3.158:18256" + "id": "52c2ec16b02f27926b15ce20369ecc89cc32143e", + "address": "65.108.226.183:18256" }, { - "id": "966acc999443bae0857604a9fce426b5e09a7409", - "address": "65.108.105.48:18256 " + "id": "d5519e378247dfb61dfe90652d1fe3e2b3005a5b", + "address": "65.109.68.190:14856" }, { - "id": "177144bed1e280a6f2435d253441e3e4f1699c6d", - "address": "65.109.85.226:8090" - }, - { - "id": "769ebaa9942375e70cebc21a75a2cfda41049d99", - "address": "135.181.210.186:26656" + "id": "58a7ede083714c51efd3f285c16ed613b49b83ee", + "address": "154.26.158.158:18256" }, { - "id": "8937bdacf1f0c8b2d1ffb4606554eaf08bd55df4", - "address": "5.75.255.107:26656" + "id": "265bc06fe615ee1851a11ca41c861bd0e501da56", + "address": "34.175.185.244:26656" }, { - "id": "99a0695a7358fa520e6fcd46f91492f7cf205d4d", - "address": "34.175.159.249:26656" + "id": "e220aee1ffc5de743772be6e9735248f24520aa3", + "address": "5.161.211.145:26656" }, { - "id": "47401f4ac3f934afad079ddbe4733e66b58b67da", - "address": "34.175.244.202:26656" + "id": "56e6e150fc9006e693d6261d0a473341b9b07111", + "address": "141.94.138.48:26661" } ] }, @@ -144,6 +180,10 @@ { "address": "https://quasar-testnet-rpc.stakeandrelax.net/", "provider": "Stake and Relax" + }, + { + "address": "https://quasar-testnet.rpc.kjnodes.com", + "provider": "KJNodes.com" } ], "rest": [ @@ -154,6 +194,10 @@ { "address": "https://quasar-testnet-api.stakeandrelax.net/", "provider": "Stake and Relax" + }, + { + "address": "https://quasar-testnet.api.kjnodes.com/", + "provider": "KJNodes.com" } ], "grpc": [ @@ -164,6 +208,10 @@ { "address": "http://quasar-testnet-grpc.stakeandrelax.net:18290/", "provider": "Stake and Relax" + }, + { + "address": "quasar-testnet.grpc.kjnodes.com:443", + "provider": "KJNodes.com" } ] }, diff --git a/testnets/quicksilvertestnet/assetlist.json b/testnets/quicksilvertestnet/assetlist.json index 2ae217e57f..35a137dce9 100644 --- a/testnets/quicksilvertestnet/assetlist.json +++ b/testnets/quicksilvertestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "quicksilvertestnet", "assets": [ { @@ -28,7 +28,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/quicksilvertestnet/chain.json b/testnets/quicksilvertestnet/chain.json index d7d4f618ab..152331a5f2 100644 --- a/testnets/quicksilvertestnet/chain.json +++ b/testnets/quicksilvertestnet/chain.json @@ -1,9 +1,10 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "quicksilvertestnet", "status": "live", "network_type": "testnet", "pretty_name": "Quicksilver Testnet", + "chain_type": "cosmos", "chain_id": "rhye-2", "bech32_prefix": "quick", "daemon_name": "quicksilverd", @@ -42,7 +43,6 @@ }, "cosmwasm_version": "0.29", "cosmwasm_enabled": true, - "ibc_go_version": "5.3.2", "genesis": { "genesis_url": "https://raw.githubusercontent.com/ingenuity-build/testnets/main/rhye-2/genesis.json" }, @@ -60,9 +60,32 @@ }, "cosmwasm_version": "0.29", "cosmwasm_enabled": true, - "ibc_go_version": "5.3.2" + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "5.3.2" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "5.3.2" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + } }, "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.svg" diff --git a/testnets/qwoyntestnet/assetlist.json b/testnets/qwoyntestnet/assetlist.json index 6eb09fb76b..d099b49eb2 100644 --- a/testnets/qwoyntestnet/assetlist.json +++ b/testnets/qwoyntestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "qwoyntestnet", "assets": [ { @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qwoyntestnet/images/qwoyn.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/qwoyntestnet/chain.json b/testnets/qwoyntestnet/chain.json index 6d85d8c995..3dfc194ca2 100644 --- a/testnets/qwoyntestnet/chain.json +++ b/testnets/qwoyntestnet/chain.json @@ -1,10 +1,11 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "qwoyntestnet", "status": "live", "network_type": "testnet", "website": "https://qwoyn.studio/", "pretty_name": "Qwoyn", + "chain_type": "cosmos", "chain_id": "earendel-1", "bech32_prefix": "qwoyn", "daemon_name": "qwoynd", @@ -41,11 +42,6 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "7.0.1", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "genesis": { "genesis_url": "https://raw.githubusercontent.com/cosmic-horizon/testnets/main/higgs-boson-1/genesis.json" }, @@ -61,16 +57,35 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "3.0.0", - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "binaries": { "linux/amd64": "https://github.com/cosmic-horizon/QWOYN/releases/download/v1.0.0/qwoynd_1.0.0_linux_amd64.zip" + }, + "sdk": { + "type": "cosmos", + "version": "0.42.10" + }, + "ibc": { + "type": "go", + "version": "3.0.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47.3" + }, + "ibc": { + "type": "go", + "version": "7.0.1", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, "peers": { "seeds": [], diff --git a/testnets/sagatestnet/assetlist.json b/testnets/sagatestnet/assetlist.json index 64e45cc579..570b4f0800 100644 --- a/testnets/sagatestnet/assetlist.json +++ b/testnets/sagatestnet/assetlist.json @@ -29,7 +29,8 @@ "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" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/sagatestnet/chain.json b/testnets/sagatestnet/chain.json index 04cca82192..e0a7ef8720 100644 --- a/testnets/sagatestnet/chain.json +++ b/testnets/sagatestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Saga Testnet", + "chain_type": "cosmos", "chain_id": "ssc-testnet-1", "bech32_prefix": "saga", "daemon_name": "sscd", @@ -63,9 +64,23 @@ "type": "tendermint", "version": "0.37" }, - "cosmwasm_enabled": false + "cosmwasm_enabled": false, + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "enabled": false + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "enabled": false + } }, "peers": { "seeds": [ diff --git a/testnets/secretnetworktestnet/assetlist.json b/testnets/secretnetworktestnet/assetlist.json index 234aed0727..c4c7464acc 100644 --- a/testnets/secretnetworktestnet/assetlist.json +++ b/testnets/secretnetworktestnet/assetlist.json @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/secretnetworktestnet/chain.json b/testnets/secretnetworktestnet/chain.json index f3a56a3830..2803e29089 100644 --- a/testnets/secretnetworktestnet/chain.json +++ b/testnets/secretnetworktestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Secret Network", + "chain_type": "cosmos", "chain_id": "pulsar-3", "pre_fork_chain_name": "secretnetworktestnet2", "bech32_prefix": "secret", @@ -104,4 +105,4 @@ "tx_page": "https://testnet.ping.pub/secret/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/secretnetworktestnet2/assetlist.json b/testnets/secretnetworktestnet2/assetlist.json index fe58387bfa..56c56aa2a2 100644 --- a/testnets/secretnetworktestnet2/assetlist.json +++ b/testnets/secretnetworktestnet2/assetlist.json @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/secretnetworktestnet2/chain.json b/testnets/secretnetworktestnet2/chain.json index aa9ef4d1a4..036815a6f7 100644 --- a/testnets/secretnetworktestnet2/chain.json +++ b/testnets/secretnetworktestnet2/chain.json @@ -4,6 +4,7 @@ "status": "killed", "network_type": "testnet", "pretty_name": "Secret Network Testnet", + "chain_type": "cosmos", "chain_id": "pulsar-2", "bech32_prefix": "secret", "daemon_name": "secretd", @@ -114,4 +115,4 @@ "tx_page": "https://testnet.ping.pub/secret/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/seidevnet3/assetlist.json b/testnets/seidevnet3/assetlist.json index 51caee7cef..954ae07460 100644 --- a/testnets/seidevnet3/assetlist.json +++ b/testnets/seidevnet3/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seidevnet3/images/sei.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/seidevnet3/chain.json b/testnets/seidevnet3/chain.json index 580d9f3c92..7c981bc57c 100644 --- a/testnets/seidevnet3/chain.json +++ b/testnets/seidevnet3/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "seidevnet3", + "chain_type": "cosmos", "chain_id": "sei-devnet-3", "pretty_name": "Sei Devnet 3", "status": "live", diff --git a/testnets/seitestnet/assetlist.json b/testnets/seitestnet/assetlist.json index 910be25c67..5c8d20603f 100644 --- a/testnets/seitestnet/assetlist.json +++ b/testnets/seitestnet/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet/images/sei.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/seitestnet/chain.json b/testnets/seitestnet/chain.json index 3b3a8b5f38..f5ce0af4df 100644 --- a/testnets/seitestnet/chain.json +++ b/testnets/seitestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "seitestnet", + "chain_type": "cosmos", "chain_id": "atlantic-1", "pretty_name": "Sei Atlantic", "status": "live", diff --git a/testnets/seitestnet2/assetlist.json b/testnets/seitestnet2/assetlist.json index f8f150386a..cbbc324c4e 100644 --- a/testnets/seitestnet2/assetlist.json +++ b/testnets/seitestnet2/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet2/images/sei.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/seitestnet2/chain.json b/testnets/seitestnet2/chain.json index fa30121a1f..ef76336982 100644 --- a/testnets/seitestnet2/chain.json +++ b/testnets/seitestnet2/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "seitestnet2", + "chain_type": "cosmos", "chain_id": "atlantic-2", "pretty_name": "Sei Atlantic 2", "status": "live", @@ -34,8 +35,8 @@ }, "versions": [ { - "name": "2.0.40beta", - "recommended_version": "2.0.40beta", + "name": "v5.7.5", + "recommended_version": "v5.7.5", "compatible_versions": [ "2.0.34beta", "2.0.37beta", @@ -59,16 +60,46 @@ { "address": "https://sei-testnet-2-rpc.brocha.in", "provider": "Brochain" + }, + { + "address": "https://rpc-testnet-sei.stingray.plus", + "provider": "StingRay" } ], "rest": [ { "address": "https://sei-testnet-2-rest.brocha.in", "provider": "Brochain" + }, + { + "address": "https://api-testnet-sei.stingray.plus", + "provider": "StingRay" + } + ], + "grpc": [ + { + "address": "https://grpc-testnet-sei.stingray.plus", + "provider": "StingRay" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://evm-rpc-testnet-sei.stingray.plus", + "provider": "StingRay" } ] }, "explorers": [ + { + "kind": "blockscout", + "url": "https://seitrace.com/?chain=atlantic-2", + "tx_page": "https://seitrace.com/tx/${txHash}?chain=atlantic-2" + }, + { + "kind": "celatone", + "url": "https://www.seiscan.app/atlantic-2", + "tx_page": "https://www.seiscan.app/atlantic-2/txs/${txHash}" + }, { "kind": "explorers.guru", "url": "https://testnet.sei.explorers.guru", @@ -80,4 +111,4 @@ "tx_page": "https://testnet-explorer.brocha.in/sei%20atlantic%202/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/selfchaindevnet/assetlist.json b/testnets/selfchaindevnet/assetlist.json index 38ec01d4dc..aa0a646620 100644 --- a/testnets/selfchaindevnet/assetlist.json +++ b/testnets/selfchaindevnet/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/selfchaindevnet/images/selfchain.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/selfchaindevnet/chain.json b/testnets/selfchaindevnet/chain.json index d0720e7c9d..c9061ed843 100644 --- a/testnets/selfchaindevnet/chain.json +++ b/testnets/selfchaindevnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "selfchaindevnet", + "chain_type": "cosmos", "chain_id": "self-dev-1", "pretty_name": "Devnet 1", "status": "live", @@ -76,4 +77,4 @@ "tx_page": "https://explorer-devnet.selfchain.xyz/self/transactions/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/sgetestnet/assetlist.json b/testnets/sgetestnet/assetlist.json index 078d4cb341..a351ff7b7f 100644 --- a/testnets/sgetestnet/assetlist.json +++ b/testnets/sgetestnet/assetlist.json @@ -27,7 +27,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/sgetestnet/chain.json b/testnets/sgetestnet/chain.json index 47f1a088d2..f85e62904e 100644 --- a/testnets/sgetestnet/chain.json +++ b/testnets/sgetestnet/chain.json @@ -1,6 +1,7 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "sgetestnet", + "chain_type": "cosmos", "chain_id": "sge-network-3", "pretty_name": "SGE Testnet", "status": "live", @@ -140,7 +141,10 @@ "chain_name": "sge" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg", + "theme": { + "primary_color_hex": "#b99952" + } } ], "logo_URIs": { diff --git a/testnets/sgetestnet4/assetlist.json b/testnets/sgetestnet4/assetlist.json index 782418eb22..971277bfe6 100644 --- a/testnets/sgetestnet4/assetlist.json +++ b/testnets/sgetestnet4/assetlist.json @@ -46,7 +46,8 @@ "circle": false } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/sgetestnet4/chain.json b/testnets/sgetestnet4/chain.json index 5a997ac6b4..b6d687333d 100644 --- a/testnets/sgetestnet4/chain.json +++ b/testnets/sgetestnet4/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "sgetestnet4", + "chain_type": "cosmos", "chain_id": "sge-network-4", "pretty_name": "SGE Testnet4", "status": "live", @@ -121,7 +122,10 @@ "chain_name": "sge" }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg", + "theme": { + "primary_color_hex": "#b99952" + } } ], "logo_URIs": { diff --git a/testnets/shentutestnet/assetlist.json b/testnets/shentutestnet/assetlist.json new file mode 100644 index 0000000000..d7fb95fc6e --- /dev/null +++ b/testnets/shentutestnet/assetlist.json @@ -0,0 +1,41 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "shentutestnet", + "assets": [ + { + "description": "The native token of Shentu", + "denom_units": [ + { + "denom": "uctk", + "exponent": 0 + }, + { + "denom": "ctk", + "exponent": 6 + } + ], + "base": "uctk", + "name": "Shentu", + "display": "ctk", + "symbol": "CTK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "shentu", + "base_denom": "uctk" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg", + "theme": { + "primary_color_hex": "#e4ac4c" + } + } + ], + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/testnets/shentutestnet/chain.json b/testnets/shentutestnet/chain.json new file mode 100644 index 0000000000..bcbc34dc39 --- /dev/null +++ b/testnets/shentutestnet/chain.json @@ -0,0 +1,217 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "shentutestnet", + "status": "live", + "network_type": "testnet", + "website": "https://www.shentu.org/", + "pretty_name": "Yulei", + "chain_type": "cosmos", + "chain_id": "yulei-2.1", + "bech32_prefix": "shentu", + "daemon_name": "shentud", + "node_home": "$HOME/.shentud", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uctk", + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.04 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uctk" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/ShentuChain/shentu", + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/shentufoundation/testnet/refs/heads/master/yulei-2.1/genesis.json" + }, + "recommended_version": "v2.11.0", + "compatible_versions": [ + "v2.11.0" + ], + "binaries": { + "linux/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.11.0/shentud_2.11.0_linux_amd64", + "darwin/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.11.0/shentud_2.11.0_arm64_macos", + "windows/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.11.0/shentud_2.11.0_win_x86_64.exe" + }, + "versions": [ + { + "name": "v2.6.0", + "height": 10485430, + "proposal": 14, + "tag": "v2.6.0", + "recommended_version": "v2.6.0", + "compatible_versions": [ + "v2.6.0" + ], + "binaries": { + "linux/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.6.0/shentud_2.6.0_linux_amd64", + "darwin/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.6.0/shentud_2.6.0_arm64_macos", + "windows/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.6.0/shentud_2.6.0_win_x86_64.exe" + }, + "next_version_name": "v2.7.0", + "ibc": { + "type": "go", + "version": "v4.2.0" + } + }, + { + "name": "v2.7.0", + "height": 12926000, + "proposal": 17, + "tag": "v2.7.0", + "recommended_version": "v2.7.0", + "compatible_versions": [ + "v2.7.0" + ], + "binaries": { + "linux/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.7.1/shentud_2.7.1_linux_amd64", + "darwin/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.7.1/shentud_2.7.1_arm64_macos", + "windows/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.7.1/shentud_2.7.1_win_x86_64.exe" + }, + "next_version_name": "v2.7.2", + "ibc": { + "type": "go", + "version": "v4.2.1", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "v2.7.2", + "height": 14875800, + "proposal": 21, + "tag": "v2.7.2", + "recommended_version": "v2.7.2", + "compatible_versions": [ + "v2.7.2" + ], + "binaries": { + "linux/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.7.2/shentud_2.7.2_linux_amd64", + "darwin/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.7.2/shentud_2.7.2_arm64_macos", + "windows/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.7.2/shentud_2.7.2_win_x86_64.exe" + }, + "next_version_name": "v2.8.0", + "ibc": { + "type": "go", + "version": "v4.2.1", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "v2.8.0", + "height": 15094300, + "proposal": 23, + "tag": "v2.8.0", + "recommended_version": "v2.8.0", + "compatible_versions": [ + "v2.8.0" + ], + "binaries": { + "linux/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.8.0/shentud_2.8.0_linux_amd64", + "darwin/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.8.0/shentud_2.8.0_arm64_macos", + "windows/amd64": "https://github.com/shentufoundation/shentu/releases/download/v2.8.0/shentud_2.8.0_win_x86_64.exe" + }, + "next_version_name": "", + "ibc": { + "type": "go", + "version": "v4.2.1", + "ics_enabled": [ + "ics20-1" + ] + } + } + ], + "ibc": { + "type": "go", + "version": "v7.4.0", + "ics_enabled": [ + "ics20-1" + ] + } + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg" + }, + "peers": { + "seeds": [ + { + "id": "8575cc152285b3eed0fd22807c2de0c10867b7f5", + "address": "47.252.117.255:26656", + "provider": "Shentu" + }, + { + "id": "877c98831847677a340e47a0108fafc733658ee8", + "address": "47.253.54.177:26656", + "provider": "Shentu" + } + ], + "persistent_peers": [ + { + "id": "2120f1d2e13a3093a84fb4c007e8391247ecff52", + "address": "47.253.90.228:26656", + "provider": "Shentu" + }, + { + "id": "751de0c3ef07652ae6e2b5a90469439584844ca2", + "address": "47.253.51.210:26656", + "provider": "Shentu" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://yulei-rpc.shentu.org:443", + "provider": "Shentu" + } + ], + "rest": [ + { + "address": "https://yulei-rest.shentu.org/", + "provider": "Shentu" + } + ], + "grpc": [ + { + "address": "yulei-grpc.shentu.org:443", + "provider": "Shentu" + } + ] + }, + "explorers": [ + { + "kind": "Shentu Explorer", + "url": "https://explorer.shentu.org/?chain=yulei-2.1", + "tx_page": "https://explorer.shentu.org/transactions/${txHash}?chain=yulei-2.1" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "shentutestnet", + "base_denom": "uctk" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg", + "theme": { + "primary_color_hex": "#e4ac4c" + } + } + ] +} \ No newline at end of file diff --git a/testnets/sixtestnet/assetlist.json b/testnets/sixtestnet/assetlist.json index 91f27ef4cd..a62821a36a 100644 --- a/testnets/sixtestnet/assetlist.json +++ b/testnets/sixtestnet/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sixtestnet/images/six.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/sixtestnet/chain.json b/testnets/sixtestnet/chain.json index 8407c36f43..b9ee9e3cbf 100644 --- a/testnets/sixtestnet/chain.json +++ b/testnets/sixtestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "SIX Fivenet", + "chain_type": "cosmos", "chain_id": "fivenet", "bech32_prefix": "6x", "daemon_name": "sixd", @@ -55,9 +56,17 @@ "consensus": { "type": "tendermint", "version": "0.34" + }, + "sdk": { + "type": "cosmos", + "version": "0.45" } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45" + } }, "peers": { "seeds": [ @@ -100,4 +109,4 @@ "sixprotocol", "testnet" ] -} +} \ No newline at end of file diff --git a/testnets/soarchaintestnet/assetlist.json b/testnets/soarchaintestnet/assetlist.json index 8287a735a5..e0e92df899 100644 --- a/testnets/soarchaintestnet/assetlist.json +++ b/testnets/soarchaintestnet/assetlist.json @@ -33,7 +33,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/soarchaintestnet/images/soarchain.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/soarchaintestnet/images/soarchain.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/soarchaintestnet/chain.json b/testnets/soarchaintestnet/chain.json index 4316ebc014..5f804203a3 100644 --- a/testnets/soarchaintestnet/chain.json +++ b/testnets/soarchaintestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "soarchaintestnet", + "chain_type": "cosmos", "chain_id": "soarchaintestnet", "pretty_name": "Soarchain Testnet", "status": "live", @@ -43,7 +44,6 @@ }, "cosmwasm_version": "0.27", "cosmwasm_enabled": true, - "ibc_go_version": "3.0.1", "genesis": { "genesis_url": "https://raw.githubusercontent.com/soar-robotics/testnet-validator-onboard/main/release/genesis.json" }, @@ -97,7 +97,19 @@ "v0.2.10" ] } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45.5" + }, + "ibc": { + "type": "go", + "version": "3.0.1" + }, + "cosmwasm": { + "version": "0.27", + "enabled": true + } }, "keywords": [ "DePin" diff --git a/testnets/sourcetestnet/assetlist.json b/testnets/sourcetestnet/assetlist.json index 06d8a76ce1..da40c3a2aa 100644 --- a/testnets/sourcetestnet/assetlist.json +++ b/testnets/sourcetestnet/assetlist.json @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sourcetestnet/images/source.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sourcetestnet/images/source.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/sourcetestnet/chain.json b/testnets/sourcetestnet/chain.json index 12dcdc865b..a032e72dd5 100644 --- a/testnets/sourcetestnet/chain.json +++ b/testnets/sourcetestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Source Testnet", + "chain_type": "cosmos", "chain_id": "sourcetest-1", "bech32_prefix": "source", "daemon_name": "sourced", @@ -59,7 +60,15 @@ "version": "0.34" }, "cosmwasm_version": "0.30", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } }, { "name": "v3.0.1", @@ -73,9 +82,25 @@ "version": "0.34" }, "cosmwasm_version": "0.30", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } }, "peers": { "seeds": [ @@ -109,6 +134,14 @@ }, "apis": { "rpc": [ + { + "address": "https://source-testnet-rpc.itrocket.net/", + "provider": "ITRocket" + }, + { + "address": "https://source-test.rpc.moonbridge.team/", + "provider": "MoonBridge" + }, { "address": "https://source-testnet-rpc.stake-town.com:443", "provider": "StakeTown" @@ -120,9 +153,21 @@ { "address": "https://source-testnet.rpc.kjnodes.com", "provider": "kjnodes" + }, + { + "address": "https://source_testnet_rpc.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "rest": [ + { + "address": "https://source-testnet-api.itrocket.net/", + "provider": "ITRocket" + }, + { + "address": "https://source-test.api.moonbridge.team/", + "provider": "MoonBridge" + }, { "address": "https://source-testnet-api.stake-town.com:443", "provider": "StakeTown" @@ -134,6 +179,10 @@ { "address": "https://source.api.t.stavr.tech", "provider": "πŸ”₯STAVRπŸ”₯" + }, + { + "address": "https://source_testnet_api.chain.whenmoonwhenlambo.money", + "provider": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯" } ], "grpc": [ @@ -162,6 +211,12 @@ "kind": "SR20DE", "url": "https://explorer.sr20de.xyz/Source-testnet", "tx_page": "https://explorer.sr20de.xyz/Source-testnet/txs/${txHash}" + }, + { + "kind": "πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯", + "url": "https://explorer.whenmoonwhenlambo.money/source-testnet", + "tx_page": "https://explorer.whenmoonwhenlambo.money/source-testnet/tx/${txHash}", + "account_page": "https://explorer.whenmoonwhenlambo.money/source-testnet/account/${accountAddress}" } ] -} +} \ No newline at end of file diff --git a/testnets/stargazetestnet/assetlist.json b/testnets/stargazetestnet/assetlist.json index f4ec082672..95d1ca362b 100644 --- a/testnets/stargazetestnet/assetlist.json +++ b/testnets/stargazetestnet/assetlist.json @@ -26,7 +26,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/stargazetestnet/chain.json b/testnets/stargazetestnet/chain.json index 26d742aac2..2cd40ec454 100644 --- a/testnets/stargazetestnet/chain.json +++ b/testnets/stargazetestnet/chain.json @@ -5,6 +5,7 @@ "network_type": "testnet", "website": "https://stargaze.zone/", "pretty_name": "Stargaze Testnet", + "chain_type": "cosmos", "chain_id": "elgafar-1", "bech32_prefix": "stars", "daemon_name": "starsd", @@ -49,9 +50,25 @@ "version": "0.34" }, "cosmwasm_version": "0.28", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.28", + "enabled": true + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.28", + "enabled": true + } }, "peers": { "seeds": [], @@ -112,4 +129,4 @@ "tx_page": "https://testnet-explorer.publicawesome.dev/stargaze/tx/${txHash}" } ] -} +} \ No newline at end of file diff --git a/testnets/statesettestnet/assetlist.json b/testnets/statesettestnet/assetlist.json index 9fe6a6763b..b62a98e58f 100644 --- a/testnets/statesettestnet/assetlist.json +++ b/testnets/statesettestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "statesettestnet", "assets": [ { @@ -19,7 +19,8 @@ "base": "ustate", "name": "Stateset", "display": "state", - "symbol": "STATE" + "symbol": "STATE", + "type_asset": "sdk.coin" } ] -} +} \ No newline at end of file diff --git a/testnets/statesettestnet/chain.json b/testnets/statesettestnet/chain.json index d1b3f11b78..99aa098d00 100644 --- a/testnets/statesettestnet/chain.json +++ b/testnets/statesettestnet/chain.json @@ -1,9 +1,10 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "statesettestnet", "status": "live", "network_type": "testnet", "pretty_name": "Stateset Testnet", + "chain_type": "cosmos", "chain_id": "stateset-1-testnet", "bech32_prefix": "stateset", "daemon_name": "statesetd", diff --git a/testnets/stridetestnet/assetlist.json b/testnets/stridetestnet/assetlist.json index 9e0c34017d..e4032f757b 100644 --- a/testnets/stridetestnet/assetlist.json +++ b/testnets/stridetestnet/assetlist.json @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/stridetestnet/chain.json b/testnets/stridetestnet/chain.json index 686f524970..9a7efad76b 100644 --- a/testnets/stridetestnet/chain.json +++ b/testnets/stridetestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Stride Testnet", + "chain_type": "cosmos", "chain_id": "stride-internal-1", "bech32_prefix": "stride", "daemon_name": "strided", @@ -38,7 +39,6 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "5.1.0", "genesis": { "genesis_url": "https://raw.githubusercontent.com/Stride-Labs/mainnet/main/testnet/genesis.json" }, @@ -54,9 +54,24 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "5.1.0" + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "5.1.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "5.1.0" + } }, "peers": { "seeds": [], diff --git a/testnets/sunrisetestnet/assetlist.json b/testnets/sunrisetestnet/assetlist.json index cfc5832bd7..f4f848d00c 100644 --- a/testnets/sunrisetestnet/assetlist.json +++ b/testnets/sunrisetestnet/assetlist.json @@ -35,7 +35,8 @@ "socials": { "website": "https://sunriselayer.io/", "twitter": "https://twitter.com/SunriseLayer" - } + }, + "type_asset": "sdk.coin" }, { "description": "The native token of the Sunrise network for fees.", @@ -70,7 +71,8 @@ "socials": { "website": "https://sunriselayer.io/", "twitter": "https://twitter.com/SunriseLayer" - } + }, + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/sunrisetestnet/chain.json b/testnets/sunrisetestnet/chain.json index 1b16316175..73f553878a 100644 --- a/testnets/sunrisetestnet/chain.json +++ b/testnets/sunrisetestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Sunrise Testnet", + "chain_type": "cosmos", "chain_id": "sunrise-test-0.1", "bech32_prefix": "sunrise", "daemon_name": "sunrised", @@ -42,9 +43,10 @@ "cosmos_sdk_version": "0.50.2", "consensus": { "type": "cometbft", - "version": "sunriselayer/sunrise-core v0.0.5-cmt-v0.38.2" + "version": "v0.0.5", + "repo": "https://github.com/sunriselayer/sunrise-core", + "tag": "v0.0.5-cmt-v0.38.2" }, - "ibc_go_version": "8.0.0", "versions": [ { "name": "v0.0.7", @@ -58,12 +60,21 @@ "cosmos_sdk_version": "0.50.2", "consensus": { "type": "cometbft", - "version": "sunriselayer/sunrise-core v0.0.5-cmt-v0.38.2" + "version": "v0.0.5", + "repo": "https://github.com/sunriselayer/sunrise-core", + "tag": "v0.0.5-cmt-v0.38.2" }, - "ibc_go_version": "8.0.0", - "ics_enabled": [ - "ics20-1" - ] + "sdk": { + "type": "cosmos", + "version": "0.50.2" + }, + "ibc": { + "type": "go", + "version": "8.0.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v0.0.8", @@ -77,12 +88,21 @@ "cosmos_sdk_version": "0.50.2", "consensus": { "type": "cometbft", - "version": "sunriselayer/sunrise-core v0.0.5-cmt-v0.38.2" + "version": "v0.0.5", + "repo": "https://github.com/sunriselayer/sunrise-core", + "tag": "v0.0.5-cmt-v0.38.2" + }, + "sdk": { + "type": "cosmos", + "version": "0.50.2" }, - "ibc_go_version": "8.0.0", - "ics_enabled": [ - "ics20-1" - ] + "ibc": { + "type": "go", + "version": "8.0.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v0.1.1", @@ -96,12 +116,21 @@ "cosmos_sdk_version": "0.50.2", "consensus": { "type": "cometbft", - "version": "sunriselayer/sunrise-core v0.0.5-cmt-v0.38.2" + "version": "v0.0.5", + "repo": "https://github.com/sunriselayer/sunrise-core", + "tag": "v0.0.5-cmt-v0.38.2" }, - "ibc_go_version": "8.0.0", - "ics_enabled": [ - "ics20-1" - ] + "sdk": { + "type": "cosmos", + "version": "0.50.2" + }, + "ibc": { + "type": "go", + "version": "8.0.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v0.1.2", @@ -115,14 +144,31 @@ "cosmos_sdk_version": "0.50.2", "consensus": { "type": "cometbft", - "version": "sunriselayer/sunrise-core v0.0.5-cmt-v0.38.2" + "version": "v0.0.5", + "repo": "https://github.com/sunriselayer/sunrise-core", + "tag": "v0.0.5-cmt-v0.38.2" + }, + "sdk": { + "type": "cosmos", + "version": "0.50.2" }, - "ibc_go_version": "8.0.0", - "ics_enabled": [ - "ics20-1" - ] + "ibc": { + "type": "go", + "version": "8.0.0", + "ics_enabled": [ + "ics20-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.50.2" + }, + "ibc": { + "type": "go", + "version": "8.0.0" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png", diff --git a/testnets/swisstroniktestnet/assetlist.json b/testnets/swisstroniktestnet/assetlist.json index 74769146a3..c6d1bd9e70 100644 --- a/testnets/swisstroniktestnet/assetlist.json +++ b/testnets/swisstroniktestnet/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/swisstroniktestnet/images/swisstronik.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/swisstroniktestnet/chain.json b/testnets/swisstroniktestnet/chain.json index 5f6bc2d874..9b2f480380 100644 --- a/testnets/swisstroniktestnet/chain.json +++ b/testnets/swisstroniktestnet/chain.json @@ -1,172 +1,201 @@ { - "$schema": "../../chain.schema.json", - "chain_name": "swisstroniktestnet", - "chain_id": "swisstronik_1291-1", - "pretty_name": "Swisstronik Testnet", - "status": "live", - "network_type": "testnet", - "bech32_prefix": "swtr", - "daemon_name": "swisstronikd", - "node_home": "$HOME/.swisstronik", - "key_algos": [ - "secp256k1" + "$schema": "../../chain.schema.json", + "chain_name": "swisstroniktestnet", + "chain_type": "cosmos", + "chain_id": "swisstronik_1291-1", + "pretty_name": "Swisstronik Testnet", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "swtr", + "daemon_name": "swisstronikd", + "node_home": "$HOME/.swisstronik", + "key_algos": [ + "secp256k1" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "aswtr", + "fixed_min_gas_price": 7 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "aswtr" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/SigmaGmbH/swisstronik-chain", + "recommended_version": "v1.0.2", + "compatible_versions": [ + "v1.0.2" ], - "slip44": 60, - "fees": { - "fee_tokens": [ - { - "denom": "aswtr", - "fixed_min_gas_price": 7 - } - ] + "binaries": { + "linux/amd64": "https://github.com/SigmaGmbH/swisstronik-chain/releases/download/testnet-v1.0.2/swisstronik_1.0.2_amd64.deb.zip" }, - "staking": { - "staking_tokens": [ - { - "denom": "aswtr" - } - ] + "cosmos_sdk_version": "0.47", + "consensus": { + "type": "cometbft", + "version": "0.37" }, - "codebase": { - "git_repo": "https://github.com/SigmaGmbH/swisstronik-chain", + "genesis": { + "genesis_url": "https://rpc.testnet.swisstronik.com/genesis" + }, + "versions": [ + { + "name": "v0.1.11-testnet", + "recommended_version": "v0.1.11-testnet", + "compatible_versions": [ + "v0.1.11-testnet" + ], + "cosmos_sdk_version": "0.47", + "consensus": { + "type": "cometbft", + "version": "0.37" + }, + "next_version_name": "v1.0.1", + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "ibc": { + "type": "go", + "version": "v7.2.0" + } + }, + { + "name": "v1.0.1", + "proposal": 1, + "height": 1969786, + "recommended_version": "v1.0.1", + "compatible_versions": [ + "v1.0.1" + ], + "cosmos_sdk_version": "0.47", + "consensus": { + "type": "cometbft", + "version": "0.37" + }, + "next_version_name": "v1.0.2", + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "ibc": { + "type": "go", + "version": "v7.2.0" + } + }, + { + "name": "v1.0.2", + "height": 5430000, "recommended_version": "v1.0.2", "compatible_versions": [ - "v1.0.2" + "v1.0.2" ], "binaries": { - "linux/amd64": "https://github.com/SigmaGmbH/swisstronik-chain/releases/download/testnet-v1.0.2/swisstronik_1.0.2_amd64.deb.zip" + "linux/amd64": "https://github.com/SigmaGmbH/swisstronik-chain/releases/download/testnet-v1.0.2/swisstronik_1.0.2_amd64.deb.zip" }, "cosmos_sdk_version": "0.47", "consensus": { - "type": "cometbft", - "version": "0.37" + "type": "cometbft", + "version": "0.37" }, - "ibc_go_version": "v7.2.0", - "genesis": { - "genesis_url": "https://rpc.testnet.swisstronik.com/genesis" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "0.47" }, - "versions": [ - { - "name": "v0.1.11-testnet", - "recommended_version": "v0.1.11-testnet", - "compatible_versions": [ - "v0.1.11-testnet" - ], - "cosmos_sdk_version": "0.47", - "consensus": { - "type": "cometbft", - "version": "0.37" - }, - "ibc_go_version": "v7.2.0", - "next_version_name": "v1.0.1" - }, - { - "name": "v1.0.1", - "proposal": 1, - "height": 1969786, - "recommended_version": "v1.0.1", - "compatible_versions": [ - "v1.0.1" - ], - "cosmos_sdk_version": "0.47", - "consensus": { - "type": "cometbft", - "version": "0.37" - }, - "ibc_go_version": "v7.2.0", - "next_version_name": "v1.0.2" - }, - { - "name": "v1.0.2", - "height": 5430000, - "recommended_version": "v1.0.2", - "compatible_versions": [ - "v1.0.2" - ], - "binaries": { - "linux/amd64": "https://github.com/SigmaGmbH/swisstronik-chain/releases/download/testnet-v1.0.2/swisstronik_1.0.2_amd64.deb.zip" - }, - "cosmos_sdk_version": "0.47", - "consensus": { - "type": "cometbft", - "version": "0.37" - }, - "ibc_go_version": "v7.2.0", - "next_version_name": "" - } - ] - }, - "peers": { - "seeds": [ - { - "id": "f7e652dc5bf5018ac2fe0ed696e94089f4639391", - "address": "148.113.8.228:26656", - "provider": "Swisstronik" - } - ], - "persistent_peers": [ - { - "id": "0c2d883d0259f2992b10b3238e96fdd406ebd0c3", - "address": "148.113.9.30:20656", - "provider": "genznodes" - } - ] - }, - "apis": { - "rpc": [ - { - "address": "https://rpc.testnet.swisstronik.com", - "provider": "Swisstronik" - }, - { - "address": "https://testnet-swisstronik-rpc.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://rpc.swisstronik.comunitynode.my.id", - "provider": "ComunityNode" - } - ], - "rest": [ - { - "address": "https://api.testnet.swisstronik.com", - "provider": "Swisstronik" - }, - { - "address": "https://testnet-swisstronik-api.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://rest.swisstronik.comunitynode.my.id/", - "provider": "Comunitynode" - } - ], - "grpc": [ - { - "address": "testnet-swisstronik-grpc.genznodes.dev:20090", - "provider": "genznodes" - } - ], - "evm-http-jsonrpc": [ - { - "address": "https://json-rpc.testnet.swisstronik.com", - "provider": "Swisstronik" - }, - { - "address": "https://testnet-swisstronik-rpc-evm.genznodes.dev", - "provider": "genznodes" - }, - { - "address": "https://evm.swisstronik.comunitynode.my.id", - "provider": "comunitynode" - } - ] - }, - "explorers": [ - { - "kind": "ping.pub", - "url": "https://explorer-cosmos.testnet.swisstronik.com/swisstronik", - "tx_page": "https://explorer-cosmos.testnet.swisstronik.com/swisstronik/tx/${txHash}" + "ibc": { + "type": "go", + "version": "v7.2.0" } + } + ], + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "ibc": { + "type": "go", + "version": "v7.2.0" + } + }, + "peers": { + "seeds": [ + { + "id": "f7e652dc5bf5018ac2fe0ed696e94089f4639391", + "address": "148.113.8.228:26656", + "provider": "Swisstronik" + } + ], + "persistent_peers": [ + { + "id": "0c2d883d0259f2992b10b3238e96fdd406ebd0c3", + "address": "148.113.9.30:20656", + "provider": "genznodes" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.testnet.swisstronik.com", + "provider": "Swisstronik" + }, + { + "address": "https://testnet-swisstronik-rpc.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://rpc.swisstronik.comunitynode.my.id", + "provider": "ComunityNode" + } + ], + "rest": [ + { + "address": "https://api.testnet.swisstronik.com", + "provider": "Swisstronik" + }, + { + "address": "https://testnet-swisstronik-api.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://rest.swisstronik.comunitynode.my.id/", + "provider": "Comunitynode" + } + ], + "grpc": [ + { + "address": "testnet-swisstronik-grpc.genznodes.dev:20090", + "provider": "genznodes" + } + ], + "evm-http-jsonrpc": [ + { + "address": "https://json-rpc.testnet.swisstronik.com", + "provider": "Swisstronik" + }, + { + "address": "https://testnet-swisstronik-rpc-evm.genznodes.dev", + "provider": "genznodes" + }, + { + "address": "https://evm.swisstronik.comunitynode.my.id", + "provider": "comunitynode" + } ] -} + }, + "explorers": [ + { + "kind": "ping.pub", + "url": "https://explorer-cosmos.testnet.swisstronik.com/swisstronik", + "tx_page": "https://explorer-cosmos.testnet.swisstronik.com/swisstronik/tx/${txHash}" + } + ] +} \ No newline at end of file diff --git a/testnets/symphonytestnet/assetlist.json b/testnets/symphonytestnet/assetlist.json index cc03cc4e50..0fdc112e93 100644 --- a/testnets/symphonytestnet/assetlist.json +++ b/testnets/symphonytestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "symphonytestnet", "assets": [ { @@ -13,22 +13,114 @@ { "denom": "mld", "exponent": 6, - "aliases": [] + "aliases": [ + "melody" + ] } ], "type_asset": "sdk.coin", "base": "note", - "name": "Symphony Testnet", + "name": "Melody", "display": "mld", "symbol": "MLD", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/mld.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/mld.png" + } + ] + }, + { + "description": "Harmonized USD", + "denom_units": [ + { + "denom": "uusd", + "exponent": 0, + "aliases": [] + }, + { + "denom": "husd", + "exponent": 6, + "aliases": [ + "harmony USD" + ] + } + ], + "type_asset": "sdk.coin", + "base": "uusd", + "name": "Harmony USD", + "display": "husd", + "symbol": "HUSD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/husd.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/husd.png" + } + ] + }, + { + "description": "Harmonized HKD", + "denom_units": [ + { + "denom": "ukhd", + "exponent": 0, + "aliases": [] + }, + { + "denom": "hkhd", + "exponent": 6, + "aliases": [ + "harmony HKD" + ] + } + ], + "type_asset": "sdk.coin", + "base": "ukhd", + "name": "Harmony HKD", + "display": "hkhd", + "symbol": "HKHD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/hhkd.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/hhkd.png" + } + ] + }, + { + "description": "Harmonized VND", + "denom_units": [ + { + "denom": "uvnd", + "exponent": 0, + "aliases": [] + }, + { + "denom": "hvnd", + "exponent": 6, + "aliases": [ + "harmony VND" + ] + } + ], + "type_asset": "sdk.coin", + "base": "uvnd", + "name": "Harmony VND", + "display": "hvnd", + "symbol": "HVND", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/hvnd.png" }, "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/hvnd.png" } ] } ] -} +} \ No newline at end of file diff --git a/testnets/symphonytestnet/chain.json b/testnets/symphonytestnet/chain.json index e271b753ae..13b57f1798 100644 --- a/testnets/symphonytestnet/chain.json +++ b/testnets/symphonytestnet/chain.json @@ -4,11 +4,14 @@ "status": "live", "network_type": "testnet", "pretty_name": "Symphony Testnet", - "chain_id": "symphony-testnet-1", + "chain_type": "cosmos", + "chain_id": "symphony-testnet-3", "bech32_prefix": "symphony", "daemon_name": "symphonyd", "node_home": "$HOME/.symphonyd", - "key_algos": ["secp256k1"], + "key_algos": [ + "secp256k1" + ], "slip44": 118, "fees": { "fee_tokens": [ @@ -29,9 +32,11 @@ ] }, "codebase": { - "git_repo": "https://github.com/Orchestra-Labs/symphony-osmosis", + "git_repo": "https://github.com/Orchestra-Labs/symphony", "recommended_version": "v23.0.5", - "compatible_versions": ["v23.0.5"], + "compatible_versions": [ + "v23.0.5" + ], "cosmos_sdk_version": "0.47.8", "consensus": { "type": "tendermint", @@ -46,60 +51,102 @@ { "name": "v23.0.5-rc1", "recommended_version": "v23.0.5-rc1", - "compatible_versions": ["v23.0.5-rc1"], + "compatible_versions": [ + "v23.0.5-rc1" + ], "cosmos_sdk_version": "0.47.8", "consensus": { "type": "tendermint", "version": "0.37.4" }, "cosmwasm_version": "0.29", - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.47.8" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47.8" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + } }, "peers": { "seeds": [ { "id": "10838131d11f546751178df1e1045597aad6366d", - "address": "34.41.169.77:26656" + "address": "34.28.113.153:26656" + }, + { + "id": "51010331020f17e7c31c5bd7cf4d464e082fb1fa", + "address": "78.46.19.116:29156" + }, + { + "id": "247a415a06766df181c30328d30a89aeb8822afe", + "address": "rpc.symphony-t.indonode.net:11856" } ], "persistent_peers": [ { - "id": "8df964c61393d33d11f7c821aba1a72f428c0d24", - "address": "34.41.129.120:26656" + "id": "eea2dc7e9abfd18787d4cc2c728689ad658cd3a2", + "address": "34.66.161.223:26656" }, { - "id": "eea2dc7e9abfd18787d4cc2c728689ad658cd3a2", - "address": "35.184.9.159:26656" + "id": "51010331020f17e7c31c5bd7cf4d464e082fb1fa", + "address": "78.46.19.116:29156" }, { - "id": "785f5e73e26623214269909c0be2df3f767fbe50", - "address": "35.225.73.240:26656" + "id": "247a415a06766df181c30328d30a89aeb8822afe", + "address": "rpc.symphony-t.indonode.net:11856" }, { - "id": "adc09b9238bc582916abda954b081220d6f9cbc2", - "address": "34.172.132.224:26656" + "id": "7ad8144f0459c54b56c96e56ff4b0ca9c4bc8794", + "address": "149.50.102.86:35656" + }, + { + "id": "3b8cd0dc5e61e36630a760ec1d3b1e05223624c0", + "address": "88.99.149.170:21656" } ] }, "apis": { "rpc": [ { - "address": "https://rpc.testnet.symphonychain.org/", - "provider": "Orchestra Labs" + "address": "https://symphony.test.rpc.nodeshub.online/", + "provider": "Nodes Hub" + }, + { + "address": "https://symphony-testnet-rpc.cogwheel.zone/", + "provider": "Cogwheel βš™οΈ" } ], "rest": [ { - "address": "https://lcd.testnet.symphonychain.org/", - "provider": "Orchestra Labs" + "address": "https://symphony.test.api.nodeshub.online/", + "provider": "Nodes Hub" + }, + { + "address": "https://symphony-testnet-api.cogwheel.zone/", + "provider": "Cogwheel βš™οΈ" } ], "grpc": [ { - "address": "grpc.testnet.symphonychain.org:9090", - "provider": "Orchestra Labs" + "address": "https://symphony.test.grpc.nodeshub.online/", + "provider": "Nodes Hub" + }, + { + "address": "https://symphony-testnet-grpc.cogwheel.zone:443", + "provider": "Cogwheel βš™οΈ" } ] }, @@ -111,4 +158,4 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/symphony_logo.png" } ] -} +} \ No newline at end of file diff --git a/testnets/symphonytestnet/images/hhkd.png b/testnets/symphonytestnet/images/hhkd.png new file mode 100644 index 0000000000..142bdc20f2 Binary files /dev/null and b/testnets/symphonytestnet/images/hhkd.png differ diff --git a/testnets/symphonytestnet/images/husd.png b/testnets/symphonytestnet/images/husd.png new file mode 100644 index 0000000000..ce41b682bf Binary files /dev/null and b/testnets/symphonytestnet/images/husd.png differ diff --git a/testnets/symphonytestnet/images/hvnd.png b/testnets/symphonytestnet/images/hvnd.png new file mode 100644 index 0000000000..85fb3a85e4 Binary files /dev/null and b/testnets/symphonytestnet/images/hvnd.png differ diff --git a/testnets/symphonytestnet/images/coin_icon.png b/testnets/symphonytestnet/images/mld.png similarity index 100% rename from testnets/symphonytestnet/images/coin_icon.png rename to testnets/symphonytestnet/images/mld.png diff --git a/testnets/synternettestnet/assetlist.json b/testnets/synternettestnet/assetlist.json new file mode 100644 index 0000000000..e66f3fbedb --- /dev/null +++ b/testnets/synternettestnet/assetlist.json @@ -0,0 +1,41 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "synternettestnet", + "assets": [ + { + "description": "The native staking and governance token of the testnet version of Synternet chain.", + "denom_units": [ + { + "denom": "uamber", + "exponent": 0 + }, + { + "denom": "AMBER", + "exponent": 6 + } + ], + "base": "uamber", + "name": "Synternet", + "display": "AMBER", + "symbol": "AMBER", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "synternet", + "base_denom": "usynt" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.svg", + "theme": { + "primary_color_hex": "#272d45" + } + } + ], + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/testnets/synternettestnet/chain.json b/testnets/synternettestnet/chain.json new file mode 100644 index 0000000000..219ed2e048 --- /dev/null +++ b/testnets/synternettestnet/chain.json @@ -0,0 +1,160 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "synternettestnet", + "chain_type": "cosmos", + "chain_id": "amber-2", + "pretty_name": "Amber Public Testnet", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "amber", + "daemon_name": "amberd", + "node_home": "$HOME/.amber", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uamber", + "fixed_min_gas_price": 0.01, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uamber" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/Synternet/synternet-chain-releases", + "recommended_version": "v0.8.0", + "compatible_versions": [ + "v0.8.0" + ], + "binaries": { + "linux/amd64": "https://github.com/Synternet/synternet-chain-releases/releases/download/v0.8.0/amberd-linux-amd64-v0.8.0-testnet" + }, + "genesis": { + "genesis_url": "https://github.com/Synternet/synternet-chain-releases/blob/main/networks/testnet/genesis.json" + }, + "versions": [ + { + "name": "v0.1", + "recommended_version": "v0.1.0", + "compatible_versions": [ + "v0.1.0" + ], + "binaries": { + "linux/amd64": "https://github.com/Synternet/synternet-chain-releases/releases/download/v0.0.1/amberd-linux-amd64-v0.1.0-testnet" + } + }, + { + "name": "v0.2", + "recommended_version": "v0.2.4", + "compatible_versions": [ + "v0.2.4" + ], + "binaries": { + "linux/amd64": "https://github.com/Synternet/synternet-chain-releases/releases/download/v0.2.4/amberd-linux-amd64-v0.2.4-testnet" + } + }, + { + "name": "v0.5", + "recommended_version": "v0.5.4", + "compatible_versions": [ + "v0.5.4" + ], + "binaries": { + "linux/amd64": "https://github.com/Synternet/synternet-chain-releases/releases/download/v0.5.4/amberd-linux-amd64-v0.5.4-testnet" + } + }, + { + "name": "v0.6", + "recommended_version": "v0.6.0", + "compatible_versions": [ + "v0.6.0" + ], + "binaries": { + "linux/amd64": "https://github.com/Synternet/synternet-chain-releases/releases/download/v0.6.0/amberd-linux-amd64-v0.6.0-testnet" + } + }, + { + "name": "v0.7", + "recommended_version": "v0.7.0", + "compatible_versions": [ + "v0.7.0" + ], + "binaries": { + "linux/amd64": "https://github.com/Synternet/synternet-chain-releases/releases/download/v0.7.0/amberd-linux-amd64-v0.7.0-testnet" + } + }, + { + "name": "v0.8", + "recommended_version": "v0.8.0", + "compatible_versions": [ + "v0.8.0" + ], + "binaries": { + "linux/amd64": "https://github.com/Synternet/synternet-chain-releases/releases/download/v0.8.0/amberd-linux-amd64-v0.8.0-testnet" + } + } + ] + }, + "peers": { + "seeds": [], + "persistent_peers": [ + { + "id": "750a26d7aa2620a9711e1a7e825b7f52123beee1", + "address": "34.88.24.42:26656", + "provider": "synternet.com" + }, + { + "id": "035e301a48203a1aa7cc60596e53595182b84431", + "address": "34.118.10.162:26656", + "provider": "synternet.com" + }, + { + "id": "735a175d641befa74a486233ce73a2725dc808c9", + "address": "34.139.195.120:26656", + "provider": "synternet.com" + }, + { + "id": "d9e518db57f8da3fabefdc89ca255f7cc627ad7f", + "address": "34.145.65.114:26656", + "provider": "synternet.com" + }, + { + "id": "f9b9746ad890478cda156065f0b6399d97907ad9", + "address": "34.84.104.47:26656", + "provider": "synternet.com" + } + ] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc-testnet.synternet.com/", + "provider": "Synternet" + } + ], + "rest": [ + { + "address": "https://api-testnet.synternet.com/", + "provider": "Synternet" + } + ] + }, + "explorers": [ + { + "kind": "Big Dipper", + "url": "https://explorer-testnet.synternet.com/", + "tx_page": "https://explorer-testnet.synternet.com/transactions/${txHash}" + } + ] +} \ No newline at end of file diff --git a/testnets/temporaltestnet/assetlist.json b/testnets/temporaltestnet/assetlist.json index c29da0e4ad..91698e6cb3 100644 --- a/testnets/temporaltestnet/assetlist.json +++ b/testnets/temporaltestnet/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/temporaltestnet/images/temporal.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/temporaltestnet/chain.json b/testnets/temporaltestnet/chain.json index 21839d9d66..b0e6ccf49d 100644 --- a/testnets/temporaltestnet/chain.json +++ b/testnets/temporaltestnet/chain.json @@ -1,6 +1,7 @@ { "$schema": "../../chain.schema.json", "chain_name": "temporaltestnet", + "chain_type": "cosmos", "chain_id": "temporal-test-2", "pretty_name": "Temporal Testnet", "status": "killed", diff --git a/testnets/terpnettestnet/assetlist.json b/testnets/terpnettestnet/assetlist.json index 299b349dec..e4330c7f32 100644 --- a/testnets/terpnettestnet/assetlist.json +++ b/testnets/terpnettestnet/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "terpnettestnet", "assets": [ { @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/terp.png" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Persy Gas Token (Persy) is the Terp Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", @@ -50,7 +51,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/terpnettestnet/chain.json b/testnets/terpnettestnet/chain.json index 9922f64aed..7ab9154291 100644 --- a/testnets/terpnettestnet/chain.json +++ b/testnets/terpnettestnet/chain.json @@ -1,9 +1,10 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "terpnettestnet", "status": "live", "network_type": "testnet", "pretty_name": "Terp-Network", + "chain_type": "cosmos", "chain_id": "90u-4", "bech32_prefix": "terp", "daemon_name": "terpd", @@ -30,7 +31,6 @@ } ] }, - "codebase": { "git_repo": "https://github.com/terpnetwork/terp-core", "recommended_version": "v4.2.2", @@ -65,7 +65,7 @@ "version": "0.37.2" } }, - { + { "name": "v4.2.2", "recommended_version": "v4.2.2", "compatible_versions": [], @@ -134,4 +134,4 @@ "account_page": "https://explorer.nodexcapital.com/terp/account/{$accountAddress}" } ] -} +} \ No newline at end of file diff --git a/testnets/terpnettestnet2/assetlist.json b/testnets/terpnettestnet2/assetlist.json index 2c6ea775df..077373dba2 100644 --- a/testnets/terpnettestnet2/assetlist.json +++ b/testnets/terpnettestnet2/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../assetlist.schema.json", + "$schema": "../../assetlist.schema.json", "chain_name": "terpnettestnet2", "assets": [ { @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/terp.png" } - ] + ], + "type_asset": "sdk.coin" }, { "description": "Persy Gas Token (Persy) is the Terp Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", @@ -50,7 +51,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/terpnettestnet2/chain.json b/testnets/terpnettestnet2/chain.json index bd16bd70b4..ba0b292cd6 100644 --- a/testnets/terpnettestnet2/chain.json +++ b/testnets/terpnettestnet2/chain.json @@ -1,9 +1,10 @@ { - "$schema": "../chain.schema.json", + "$schema": "../../chain.schema.json", "chain_name": "terpnettestnet2", "status": "live", "network_type": "testnet", "pretty_name": "Terp-Network", + "chain_type": "cosmos", "chain_id": "90u-2", "bech32_prefix": "terp", "daemon_name": "terpd", @@ -30,7 +31,6 @@ } ] }, - "codebase": { "git_repo": "https://github.com/terpnetwork/terp-core", "recommended_version": "v4.1.testnet", @@ -107,7 +107,7 @@ "name": "v2-pigeonfall", "recommended_version": "v2-pigeonfall", "compatible_versions": [ - "v2-pigeonfall" + "v2-pigeonfall" ], "consensus": { "type": "cometbft", @@ -118,7 +118,7 @@ "name": "v3-pigeonfall", "recommended_version": "v3-pigeonfall", "compatible_versions": [ - "v3-pigeonfall" + "v3-pigeonfall" ], "consensus": { "type": "cometbft", @@ -129,7 +129,7 @@ "name": "v4.1.testnet", "recommended_version": "v4.1.testnet", "compatible_versions": [ - "v4.1.testnet" + "v4.1.testnet" ], "consensus": { "type": "cometbft", @@ -188,4 +188,4 @@ "account_page": "https://explorer.nodexcapital.com/terp/account/{$accountAddress}" } ] -} +} \ No newline at end of file diff --git a/testnets/terra2testnet/assetlist.json b/testnets/terra2testnet/assetlist.json index 77d8705b72..48fd16b466 100644 --- a/testnets/terra2testnet/assetlist.json +++ b/testnets/terra2testnet/assetlist.json @@ -28,7 +28,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/terra2testnet/chain.json b/testnets/terra2testnet/chain.json index ff04ec1235..11bde7776b 100644 --- a/testnets/terra2testnet/chain.json +++ b/testnets/terra2testnet/chain.json @@ -5,6 +5,7 @@ "network_type": "testnet", "website": "https://www.terra.money/", "pretty_name": "Terra 2.0", + "chain_type": "cosmos", "chain_id": "pisco-1", "daemon_name": "terrad", "node_home": "$HOME/.terra", @@ -59,7 +60,6 @@ "cosmos_sdk_version": "0.46.9", "cosmwasm_enabled": true, "cosmwasm_version": "0.27.0", - "ibc_go_version": "3.0.0", "consensus": { "type": "tendermint", "version": "0.34.21" @@ -67,6 +67,18 @@ "next_version_name": "v2.2", "binaries": { "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.1.0-beta.1/terra_2.1.0-beta.1_Linux_x86_64.tar.gz?checksum=sha256:c6e6ace1d5b5f3f365f6d71489dbeda645f196ea10f8f03103fb9648131bfec1" + }, + "sdk": { + "type": "cosmos", + "version": "0.46.9" + }, + "cosmwasm": { + "version": "0.27.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "3.0.0" } }, { @@ -81,7 +93,6 @@ "cosmos_sdk_version": "0.46.11", "cosmwasm_enabled": true, "cosmwasm_version": "0.27.0", - "ibc_go_version": "3.4.0", "consensus": { "type": "tendermint", "version": "0.34.21" @@ -89,6 +100,18 @@ "next_version_name": "v2.3", "binaries": { "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.2.1/terra_2.2.1_Linux_x86_64.tar.gz?checksum=sha256:8a9353ae3c33a750ce2a9d236f00c12c5449c41fad96e9885a5c0b8678fcf8bc" + }, + "sdk": { + "type": "cosmos", + "version": "0.46.11" + }, + "cosmwasm": { + "version": "0.27.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "3.4.0" } }, { @@ -105,13 +128,24 @@ "cosmos_sdk_version": "v0.46.11", "cosmwasm_enabled": true, "cosmwasm_version": "v0.30.0", - "ibc_go_version": "v6.1.1", "consensus": { "type": "cometbft", "version": "v0.34.27" }, "binaries": { "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.3.4/terra_2.3.4_Linux_x86_64.tar.gz?checksum=sha256:3e737e1f1f9b8640ef0e73f412e9e11bedd494ea2c130630a1f5586e00da9ae7" + }, + "sdk": { + "type": "cosmos", + "version": "v0.46.11" + }, + "cosmwasm": { + "version": "v0.30.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v6.1.1" } }, { @@ -125,13 +159,24 @@ "cosmos_sdk_version": "v0.46.11", "cosmwasm_enabled": true, "cosmwasm_version": "v0.30.0", - "ibc_go_version": "v6.1.1", "consensus": { "type": "cometbft", "version": "v0.34.27" }, "binaries": { "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.4.0-rc5/terra_2.4.0-rc5_Linux_x86_64.tar.gz?checksum=sha256:c61c9c4ae8a0bcb9d7f9fc2197d84ba8b75b558c2cee3438ae2142eb97e0d771" + }, + "sdk": { + "type": "cosmos", + "version": "v0.46.11" + }, + "cosmwasm": { + "version": "v0.30.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v6.1.1" } } ] diff --git a/testnets/titantestnet/assetlist.json b/testnets/titantestnet/assetlist.json index 3aeb7d5e89..410c7a5d8f 100644 --- a/testnets/titantestnet/assetlist.json +++ b/testnets/titantestnet/assetlist.json @@ -46,7 +46,70 @@ ], "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png" - } + }, + "type_asset": "sdk.coin" + }, + { + "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", + "denom_units": [ + { + "denom": "ibc/7C0807A56073C4A27B0DE1C21BA3EB75DF75FD763F4AD37BC159917FC01145F0", + "exponent": 0, + "aliases": [ + "microusdc", + "uusdc" + ] + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/7C0807A56073C4A27B0DE1C21BA3EB75DF75FD763F4AD37BC159917FC01145F0", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", + "traces": [ + { + "type": "test-mintage", + "counterparty": { + "chain_name": "nobletestnet", + "base_denom": "uusdc" + }, + "provider": "Circle" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "nobletestnet", + "base_denom": "uusdc", + "channel_id": "channel-208" + }, + "chain": { + "channel_id": "channel-7", + "path": "transfer/channel-7/uusdc" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "nobletestnet", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } + } + ] } ] } \ No newline at end of file diff --git a/testnets/titantestnet/chain.json b/testnets/titantestnet/chain.json index f52ede7e4a..0aca5db07e 100644 --- a/testnets/titantestnet/chain.json +++ b/testnets/titantestnet/chain.json @@ -5,6 +5,7 @@ "network_type": "testnet", "website": "https://titanlab.io/", "pretty_name": "Titan Testnet", + "chain_type": "cosmos", "chain_id": "titan_18889-1", "bech32_prefix": "titan", "node_home": "$HOME/.titand", @@ -45,13 +46,8 @@ "type": "cometbft", "version": "0.37.4" }, - "ibc_go_version": "7.3.0", "cosmwasm_version": "0.45.0", "cosmwasm_enabled": true, - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "genesis": { "genesis_url": "https://raw.githubusercontent.com/titantkx/titan-testnets/main/public/genesis.json" }, @@ -71,13 +67,25 @@ "type": "cometbft", "version": "0.37.4" }, - "ibc_go_version": "7.3.0", "cosmwasm_version": "0.45.0", "cosmwasm_enabled": true, - "ics_enabled": [ - "ics20-1", - "ics27-1" - ] + "sdk": { + "type": "cosmos", + "version": "0.47.6", + "tag": "0.47.6-titan.3" + }, + "cosmwasm": { + "version": "0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.3.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v2.0.0", @@ -93,13 +101,25 @@ "type": "cometbft", "version": "0.37.4" }, - "ibc_go_version": "7.3.0", "cosmwasm_version": "0.45.0", "cosmwasm_enabled": true, - "ics_enabled": [ - "ics20-1", - "ics27-1" - ] + "sdk": { + "type": "cosmos", + "version": "0.47.6", + "tag": "0.47.6-titan.4" + }, + "cosmwasm": { + "version": "0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.3.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } }, { "name": "v2.0.1", @@ -114,15 +134,44 @@ "type": "cometbft", "version": "0.37.4" }, - "ibc_go_version": "7.3.0", "cosmwasm_version": "0.45.0", "cosmwasm_enabled": true, - "ics_enabled": [ - "ics20-1", - "ics27-1" - ] + "sdk": { + "type": "cosmos", + "version": "0.47.6", + "tag": "0.47.6-titan.4" + }, + "cosmwasm": { + "version": "0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.3.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47.6", + "tag": "0.47.6-titan.4" + }, + "ibc": { + "type": "go", + "version": "7.3.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + }, + "cosmwasm": { + "version": "0.45.0", + "enabled": true + } }, "images": [ { diff --git a/testnets/tucanatestnet/assetlist.json b/testnets/tucanatestnet/assetlist.json new file mode 100644 index 0000000000..e8f82fd0e8 --- /dev/null +++ b/testnets/tucanatestnet/assetlist.json @@ -0,0 +1,32 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "tucanatestnet", + "assets": [ + { + "description": "The native EVM, governance and staking token of the Tucana", + "denom_units": [ + { + "denom": "atuc", + "exponent": 0 + }, + { + "denom": "tuc", + "exponent": 18 + } + ], + "base": "atuc", + "name": "Tucana", + "display": "tuc", + "symbol": "TUC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/tucanatestnet/images/tucana.png" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/tucanatestnet/images/tucana.png" + } + ], + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/testnets/tucanatestnet/chain.json b/testnets/tucanatestnet/chain.json new file mode 100644 index 0000000000..7ce6ca7442 --- /dev/null +++ b/testnets/tucanatestnet/chain.json @@ -0,0 +1,104 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "tucanatestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Tucana Testnet", + "chain_type": "cosmos", + "chain_id": "tucana_712-1", + "bech32_prefix": "tuc", + "daemon_name": "tucanad", + "node_home": "$HOME/.tucanad", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "atuc", + "fixed_min_gas_price": 5000000000, + "low_gas_price": 10000000000, + "average_gas_price": 25000000000, + "high_gas_price": 30000000000 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "atuc" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/TucanaProtocol/Tucana", + "recommended_version": "v8.1.0", + "compatible_versions": [ + "v8.1.0" + ], + "cosmos_sdk_version": "v0.50.8", + "consensus": { + "type": "cometbft", + "version": "v0.38.9" + }, + "genesis": { + "genesis_url": "https://github.com/TucanaProtocol/testnets/raw/main/tucana_712-1/genesis.json" + }, + "versions": [ + { + "name": "v8.1.0", + "recommended_version": "v8.1.0", + "compatible_versions": [ + "v8.1.0" + ], + "cosmos_sdk_version": "v0.50.8", + "consensus": { + "type": "cometbft", + "version": "v0.38.9" + }, + "sdk": { + "type": "cosmos", + "version": "v0.50.8" + }, + "ibc": { + "type": "go", + "version": "v8.3.2" + } + } + ], + "sdk": { + "type": "cosmos", + "version": "v0.50.8" + }, + "ibc": { + "type": "go", + "version": "v8.3.2" + } + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.birdee-2.tucana.zone/", + "provider": "Tucana" + } + ], + "rest": [ + { + "address": "https://lcd.birdee-2.tucana.zone/", + "provider": "Tucana" + } + ], + "grpc": [] + }, + "explorers": [ + { + "kind": "Blockscout", + "url": "https://explorer.birdee-2.tucana.zone/", + "tx_page": "https://explorer.birdee-2.tucana.zone/tx/${txHash}" + } + ] +} \ No newline at end of file diff --git a/testnets/tucanatestnet/images/tucana.png b/testnets/tucanatestnet/images/tucana.png new file mode 100644 index 0000000000..2cb1f4c693 Binary files /dev/null and b/testnets/tucanatestnet/images/tucana.png differ diff --git a/testnets/ulastestnet/assetlist.json b/testnets/ulastestnet/assetlist.json index 72fc835f1d..2d8bd613fd 100644 --- a/testnets/ulastestnet/assetlist.json +++ b/testnets/ulastestnet/assetlist.json @@ -26,7 +26,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ulastestnet/images/logo.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/ulastestnet/chain.json b/testnets/ulastestnet/chain.json index 034196c17c..98a8b15453 100644 --- a/testnets/ulastestnet/chain.json +++ b/testnets/ulastestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "ULAS", + "chain_type": "cosmos", "chain_id": "ulas", "bech32_prefix": "ulas", "daemon_name": "ulasd", diff --git a/testnets/unificationtestnet/assetlist.json b/testnets/unificationtestnet/assetlist.json new file mode 100644 index 0000000000..fd6e200f7d --- /dev/null +++ b/testnets/unificationtestnet/assetlist.json @@ -0,0 +1,51 @@ +{ + "$schema": "../../assetlist.schema.json", + "chain_name": "unificationtestnet", + "assets": [ + { + "description": "Staking and governance coin for the Unification Testnet", + "denom_units": [ + { + "denom": "nund", + "exponent": 0 + }, + { + "denom": "FUND", + "exponent": 9 + } + ], + "base": "nund", + "name": "Unification Network", + "display": "FUND", + "symbol": "FUND", + "traces": [ + { + "type": "test-mintage", + "counterparty": { + "chain_name": "unification", + "base_denom": "nund" + }, + "provider": "Unification" + } + ], + "images": [ + { + "image_sync": { + "chain_name": "unification", + "base_denom": "nund" + }, + "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" + } + } + ], + "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" + }, + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/testnets/unificationtestnet/chain.json b/testnets/unificationtestnet/chain.json new file mode 100644 index 0000000000..3084c47d3d --- /dev/null +++ b/testnets/unificationtestnet/chain.json @@ -0,0 +1,277 @@ +{ + "$schema": "../../chain.schema.json", + "chain_name": "unificationtestnet", + "status": "live", + "network_type": "testnet", + "website": "https://unification.com/", + "pretty_name": "Unification Testnet", + "chain_type": "cosmos", + "chain_id": "FUND-TestNet-2", + "bech32_prefix": "und", + "daemon_name": "und", + "node_home": "$HOME/.und_mainchain", + "key_algos": [ + "secp256k1" + ], + "slip44": 5555, + "fees": { + "fee_tokens": [ + { + "denom": "nund", + "fixed_min_gas_price": 25, + "low_gas_price": 100, + "average_gas_price": 200, + "high_gas_price": 300 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "nund" + } + ], + "lock_duration": { + "time": "1814400s" + } + }, + "codebase": { + "git_repo": "https://github.com/unification-com/mainchain", + "recommended_version": "v1.10.1", + "compatible_versions": [ + "v1.10.0", + "v1.10.1" + ], + "binaries": { + "linux/amd64": "https://github.com/unification-com/mainchain/releases/download/v1.10.1/und_v1.10.1_linux_x86_64.tar.gz", + "darwin/amd64": "https://github.com/unification-com/mainchain/releases/download/v1.10.1/und_v1.10.1_darwin_x86_64.tar.gz", + "windows/amd64": "https://github.com/unification-com/mainchain/releases/download/v1.10.1/und_v1.10.1_windows_x86_64.tar.gz" + }, + "cosmos_sdk_version": "0.47.13", + "consensus": { + "type": "cometbft", + "version": "0.37.5" + }, + "cosmwasm_enabled": false, + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/unification-com/mainnet/master/latest/genesis.json" + }, + "versions": [ + { + "name": "1-ibc", + "tag": "v1.6.3", + "proposal": 4, + "height": 2410500, + "consensus": { + "type": "tendermint", + "version": "0.34.21" + }, + "cosmos_sdk_version": "0.45.9", + "cosmwasm_enabled": false, + "next_version_name": "v1.7.0", + "sdk": { + "type": "cosmos", + "version": "0.45.9" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "3.1.0", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "2-grog", + "tag": "v1.7.0", + "proposal": 7, + "height": 5840430, + "consensus": { + "type": "tendermint", + "version": "0.34.26" + }, + "cosmos_sdk_version": "0.45.14", + "cosmwasm_enabled": false, + "next_version_name": "v1.8.2", + "sdk": { + "type": "cosmos", + "version": "0.45.14" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "3.4.0", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "3-keyleth", + "tag": "v1.8.2", + "proposal": 8, + "height": 7841840, + "consensus": { + "type": "tendermint", + "version": "0.34.29" + }, + "cosmos_sdk_version": "0.46.15", + "cosmwasm_enabled": false, + "recommended_version": "v1.8.2", + "next_version_name": "v1.9.0", + "compatible_versions": [ + "v1.8.2" + ], + "sdk": { + "type": "cosmos", + "version": "0.46.15" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "5.3.1", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "4-percival", + "tag": "v1.9.0", + "proposal": 41, + "height": 11657000, + "consensus": { + "type": "tendermint", + "version": "0.34.29" + }, + "cosmos_sdk_version": "0.46.16", + "cosmwasm_enabled": false, + "next_version_name": "v1.10.1", + "recommended_version": "v1.9.0", + "compatible_versions": [ + "v1.9.0" + ], + "sdk": { + "type": "cosmos", + "version": "0.46.16" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "5.3.1", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "5-pike", + "tag": "v1.10.1", + "proposal": 43, + "height": 13910300, + "consensus": { + "type": "cometbft", + "version": "0.37.5" + }, + "cosmos_sdk_version": "0.47.13", + "cosmwasm_enabled": false, + "recommended_version": "v1.10.1", + "compatible_versions": [ + "v1.10.0", + "v1.10.1" + ], + "sdk": { + "type": "cosmos", + "version": "0.47.13" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "7.7.0", + "ics_enabled": [ + "ics20-1" + ] + } + } + ], + "sdk": { + "type": "cosmos", + "version": "0.47.13" + }, + "ibc": { + "type": "go", + "version": "7.7.0" + }, + "cosmwasm": { + "enabled": false + } + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg", + "theme": { + "primary_color_hex": "#2279c0" + } + } + ], + "peers": { + "seeds": [ + { + "id": "e428c5653865da4a55f5599d7ff3203789abadfd", + "address": "seed-testnet.unification.io:26656", + "provider": "Unification" + } + ], + "persistent_peers": [] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc-testnet.unification.io:443", + "provider": "Unification" + } + ], + "rest": [ + { + "address": "https://rest-testnet.unification.io", + "provider": "Unification" + } + ], + "wss": [ + { + "address": "wss://wss-testnet.unification.io", + "provider": "Unification" + } + ], + "grpc": [ + { + "address": "grpc-testnet.unification.io:443", + "provider": "Unification" + } + ] + }, + "explorers": [ + { + "kind": "ping.pub", + "url": "https://explorer-testnet.unification.io/u", + "tx_page": "https://explorer-testnet.unification.io/u/tx/${txHash}", + "account_page": "https://explorer-testnet.unification.io/u/account/${accountAddress}" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg" + } +} \ No newline at end of file diff --git a/testnets/uniontestnet/assetlist.json b/testnets/uniontestnet/assetlist.json index 0ea8e93177..b9c11c6619 100644 --- a/testnets/uniontestnet/assetlist.json +++ b/testnets/uniontestnet/assetlist.json @@ -28,7 +28,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/uniontestnet/images/union.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/uniontestnet/chain.json b/testnets/uniontestnet/chain.json index a6d646126c..e05b5d96d9 100644 --- a/testnets/uniontestnet/chain.json +++ b/testnets/uniontestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Union Testnet", + "chain_type": "cosmos", "chain_id": "union-testnet-8", "bech32_prefix": "union", "daemon_name": "uniond", @@ -42,8 +43,8 @@ "apis": { "rpc": [ { - "address": "https://rpc.testnet.bonlulu.uno", - "provider": "bonlulu" + "address": "https://rpc.testnet-8.union.build", + "provider": "union" }, { "address": "https://union-testnet-rpc.polkachu.com", @@ -60,8 +61,8 @@ ], "rest": [ { - "address": "https://api.testnet.bonlulu.uno", - "provider": "bonlulu" + "address": "https://rest.testnet-8.union.build", + "provider": "union" }, { "address": "https://union-testnet-api.polkachu.com", @@ -78,8 +79,8 @@ ], "grpc": [ { - "address": "https://grpc.testnet.bonlulu.uno", - "provider": "bonlulu" + "address": "grpc.testnet-8.union.build", + "provider": "union" }, { "address": "http://union-testnet-grpc.polkachu.com:24690", @@ -101,9 +102,9 @@ "explorers": [ { "kind": "ping.pub", - "url": "https://testnet.bonlulu.uno/union", - "tx_page": "https://testnet.bonlulu.uno/union/tx/${txHash}", - "account_page": "https://testnet.bonlulu.uno/union/account/${accountAddress}" + "url": "https://explorer.testnet-8.union.build/union", + "tx_page": "https://explorer.testnet-8.union.build/union/tx/${txHash}", + "account_page": "https://explorer.testnet-8.union.build/union/account/${accountAddress}" }, { "kind": "explorers.guru", diff --git a/testnets/upticktestnet/assetlist.json b/testnets/upticktestnet/assetlist.json index c2433b0397..86eca1f630 100644 --- a/testnets/upticktestnet/assetlist.json +++ b/testnets/upticktestnet/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/upticktestnet/images/uptick.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/upticktestnet/chain.json b/testnets/upticktestnet/chain.json index 440d5c34f1..2ddf49dd38 100644 --- a/testnets/upticktestnet/chain.json +++ b/testnets/upticktestnet/chain.json @@ -5,6 +5,7 @@ "network_type": "testnet", "website": "https://www.uptickproject.com/", "pretty_name": "Uptick", + "chain_type": "cosmos", "chain_id": "uptick_7000-2", "bech32_prefix": "uptick", "daemon_name": "uptickd", @@ -54,9 +55,17 @@ }, "binaries": { "linux/amd64": "https://github.com/UptickNetwork/uptick/releases/download/v0.2.6/uptick-linux-amd64-v0.2.6.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "0.46.5" } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.46.5" + } }, "peers": { "seeds": [], diff --git a/testnets/vincechaintestnet/assetlist.json b/testnets/vincechaintestnet/assetlist.json index 4ae9cef770..54909689f7 100644 --- a/testnets/vincechaintestnet/assetlist.json +++ b/testnets/vincechaintestnet/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/vincechaintestnet/images/vince.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/vincechaintestnet/chain.json b/testnets/vincechaintestnet/chain.json index 1eb0c587f7..62b61ad1d0 100644 --- a/testnets/vincechaintestnet/chain.json +++ b/testnets/vincechaintestnet/chain.json @@ -4,6 +4,7 @@ "status": "killed", "network_type": "testnet", "pretty_name": "VinceChain Testnet", + "chain_type": "cosmos", "chain_id": "vince_1903-1", "bech32_prefix": "vce", "node_home": "$HOME/.vinced", diff --git a/testnets/wardenprotocoltestnet/assetlist.json b/testnets/wardenprotocoltestnet/assetlist.json index 4ca0ef939b..9a518dd503 100644 --- a/testnets/wardenprotocoltestnet/assetlist.json +++ b/testnets/wardenprotocoltestnet/assetlist.json @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/wardenprotocoltestnet/chain.json b/testnets/wardenprotocoltestnet/chain.json index f56ddc4c71..4bbc04be31 100644 --- a/testnets/wardenprotocoltestnet/chain.json +++ b/testnets/wardenprotocoltestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "Warden Protocol Buenavista", + "chain_type": "cosmos", "chain_id": "buenavista-1", "bech32_prefix": "warden", "daemon_name": "wardend", @@ -57,9 +58,23 @@ "type": "cometbft", "version": "0.38" }, - "cosmwasm_enabled": false + "cosmwasm_enabled": false, + "sdk": { + "type": "cosmos", + "version": "0.50" + }, + "cosmwasm": { + "enabled": false + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.50" + }, + "cosmwasm": { + "enabled": false + } }, "peers": { "seeds": [], diff --git a/testnets/wavehashtestnet/assetlist.json b/testnets/wavehashtestnet/assetlist.json index 5ca1a8cb0f..b779504d98 100644 --- a/testnets/wavehashtestnet/assetlist.json +++ b/testnets/wavehashtestnet/assetlist.json @@ -25,7 +25,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/wavehashtestnet/images/WaveHash.png" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/wavehashtestnet/chain.json b/testnets/wavehashtestnet/chain.json index 7129e6dea0..2d5dd0c54e 100644 --- a/testnets/wavehashtestnet/chain.json +++ b/testnets/wavehashtestnet/chain.json @@ -1,98 +1,121 @@ { - "$schema": "../../chain.schema.json", - "chain_name": "wavehashtestnet", - "status": "live", - "network_type": "testnet", - "pretty_name": "wavehash Testnet", - "chain_id": "INVALID-ID-wavehashtestnet-testnet-1", - "bech32_prefix": "wavehash", - "daemon_name": "wavehashd", - "node_home": "$HOME/.wavehash", - "key_algos": [ - "secp256k1" + "$schema": "../../chain.schema.json", + "chain_name": "wavehashtestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "wavehash Testnet", + "chain_type": "cosmos", + "chain_id": "INVALID-ID-wavehashtestnet-testnet-1", + "bech32_prefix": "wavehash", + "daemon_name": "wavehashd", + "node_home": "$HOME/.wavehash", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uwahax", + "low_gas_price": 0.0025, + "average_gas_price": 0.0025, + "high_gas_price": 0.0024 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uwahax" + } + ] + }, + "codebase": { + "git_repo": "https://github.com/WaveHashProtocol/wavehash", + "recommended_version": "v6.0.0", + "compatible_versions": [ + "v6.0.0" ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "uwahax", - "low_gas_price": 0.0025, - "average_gas_price": 0.0025, - "high_gas_price": 0.0024 - } - ] + "cosmos_sdk_version": "0.45", + "consensus": { + "type": "tendermint", + "version": "0.34" }, - "staking": { - "staking_tokens": [ - { - "denom": "uwahax" - } - ] + "cosmwasm_version": "0.30", + "cosmwasm_enabled": true, + "genesis": { + "genesis_url": "https://raw.githubusercontent.com/WaveHashProtocol/testnet/main/testnet-1/genesis.json" }, - "codebase": { - "git_repo": "https://github.com/WaveHashProtocol/wavehash", - "recommended_version": "v6.0.0", - "compatible_versions": [ - "v6.0.0" - ], - "cosmos_sdk_version": "0.45", - "consensus": { - "type": "tendermint", - "version": "0.34" - }, - "cosmwasm_version": "0.30", - "cosmwasm_enabled": true, - "ibc_go_version": "4.3.0", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/WaveHashProtocol/testnet/main/testnet-1/genesis.json" - }, - "versions": [ - { - "name": "v6.0.0", - "recommended_version": "v6.0.0", - "compatible_versions": [ - "v6.0.0" - ], - "cosmos_sdk_version": "0.45", - "consensus": { - "type": "tendermint", - "version": "0.34" - }, - "cosmwasm_version": "0.30", - "cosmwasm_enabled": true, - "ibc_go_version": "4.3.0" + "versions": [ + { + "name": "v6.0.0", + "recommended_version": "v6.0.0", + "compatible_versions": [ + "v6.0.0" + ], + "cosmos_sdk_version": "0.45", + "consensus": { + "type": "tendermint", + "version": "0.34" + }, + "cosmwasm_version": "0.30", + "cosmwasm_enabled": true, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "4.3.0" } - ] - }, - "peers": { - "seeds": [], - "persistent_peers": [] + } + ], + "sdk": { + "type": "cosmos", + "version": "0.45" }, - "apis": { - "rpc": [ - { - "address": "https://rpc.wavehash.online/", - "provider": "WaveHash Network" - } - ], - "rest": [ - { - "address": "https://lcd.wavehash.online/", - "provider": "WaveHash Network" - } - ], - "grpc": [ - { - "address": "https://grpc.wavehash.online/", - "provider": "WaveHash Network" - } - ] + "ibc": { + "type": "go", + "version": "4.3.0" }, - "explorers": [ + "cosmwasm": { + "version": "0.30", + "enabled": true + } + }, + "peers": { + "seeds": [], + "persistent_peers": [] + }, + "apis": { + "rpc": [ + { + "address": "https://rpc.wavehash.online/", + "provider": "WaveHash Network" + } + ], + "rest": [ + { + "address": "https://lcd.wavehash.online/", + "provider": "WaveHash Network" + } + ], + "grpc": [ { - "kind": "atomscan", - "url": "https://atomscan.com/directory/testnet/wavehashtestnet", - "tx_page": "https://atomscan.com/directory/testnet/wavehashtestnet/transactions/${txHash}" + "address": "https://grpc.wavehash.online/", + "provider": "WaveHash Network" } ] - } + }, + "explorers": [ + { + "kind": "atomscan", + "url": "https://atomscan.com/directory/testnet/wavehashtestnet", + "tx_page": "https://atomscan.com/directory/testnet/wavehashtestnet/transactions/${txHash}" + } + ] +} \ No newline at end of file diff --git a/testnets/xiontestnet/assetlist.json b/testnets/xiontestnet/assetlist.json index 8f39323d9d..67dd8946df 100644 --- a/testnets/xiontestnet/assetlist.json +++ b/testnets/xiontestnet/assetlist.json @@ -31,7 +31,8 @@ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png" } - ] + ], + "type_asset": "sdk.coin" }, { "denom_units": [ @@ -168,10 +169,16 @@ "chain_name": "nobletestnet", "base_denom": "uusdc" }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } } ], "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } }, diff --git a/testnets/xiontestnet/chain.json b/testnets/xiontestnet/chain.json index 75d41a9429..a3bebfa31d 100644 --- a/testnets/xiontestnet/chain.json +++ b/testnets/xiontestnet/chain.json @@ -1,10 +1,12 @@ { "$schema": "../../chain.schema.json", "chain_name": "xiontestnet", + "chain_id": "xion-testnet-1", + "pretty_name": "Xion Testnet", + "website": "https://burnt.com", "status": "live", "network_type": "testnet", - "pretty_name": "Xion Testnet", - "chain_id": "xion-testnet-1", + "chain_type": "cosmos", "bech32_prefix": "xion", "daemon_name": "xiond", "node_home": "$HOME/.xiond", @@ -16,8 +18,8 @@ "fee_tokens": [ { "denom": "uxion", - "fixed_min_gas_price": 0, - "low_gas_price": 0, + "fixed_min_gas_price": 0.025, + "low_gas_price": 0.025, "average_gas_price": 0.025, "high_gas_price": 0.04 } @@ -32,117 +34,319 @@ }, "codebase": { "git_repo": "https://github.com/burnt-labs/xion", - "recommended_version": "v0.3.9", - "compatible_versions": [ - "v0.3.9" - ], - "cosmos_sdk_version": "0.47.10", - "consensus": { - "type": "cometbft", - "version": "0.37.4" - }, - "cosmwasm_version": "0.45.1", - "cosmwasm_enabled": true, "genesis": { "genesis_url": "https://raw.githubusercontent.com/burnt-labs/burnt-networks/main/testnets/xion-testnet-1/genesis.json" }, "versions": [ { "name": "v0.1.0", - "tag": "v0.1.0", - "height": 0, - "recommended_version": "v0.1.0", + "tag": "v1.0.0", + "height": 1, "cosmos_sdk_version": "0.47.0", "cosmwasm_enabled": true, "cosmwasm_version": "0.40.0-rc.0", - "ibc_go_version": "v7.0.0", "consensus": { "type": "cometbft", "version": "0.37.0" + }, + "sdk": { + "type": "cosmos", + "version": "0.47.0" + }, + "language": { + "type": "go", + "version": "1.19" + }, + "cosmwasm": { + "version": "0.40.0", + "enabled": true, + "tag": "0.40.0-rc.0" + }, + "ibc": { + "type": "go", + "version": "v7.0.0" } }, { "name": "v0.3.2", - "tag": "v0.3.2", + "tag": "v2.0.0", "height": 1929544, - "recommended_version": "v0.3.2", + "proposal": 4, "cosmos_sdk_version": "0.47.3", "cosmwasm_enabled": true, "cosmwasm_version": "0.40.1", - "ibc_go_version": "v7.2.0", "consensus": { "type": "cometbft", "version": "0.37.2" + }, + "sdk": { + "type": "cosmos", + "version": "0.47.3" + }, + "language": { + "type": "go", + "version": "1.19" + }, + "cosmwasm": { + "version": "0.40.1", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.2.0" } }, { "name": "v0.3.3", - "tag": "v0.3.3", + "tag": "v3.0.0", "height": 2147030, - "recommended_version": "v0.3.3", + "proposal": 7, "cosmos_sdk_version": "0.47.3", "cosmwasm_enabled": true, "cosmwasm_version": "0.40.1", - "ibc_go_version": "v7.2.0", "consensus": { "type": "cometbft", "version": "0.37.2" + }, + "sdk": { + "type": "cosmos", + "version": "0.47.3" + }, + "language": { + "type": "go", + "version": "1.19" + }, + "cosmwasm": { + "version": "0.40.1", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.2.0" } }, { "name": "v0.3.4", - "tag": "v0.3.4", + "tag": "v3.1.1", "height": 3278095, - "recommended_version": "v0.3.4", "cosmos_sdk_version": "0.47.5", "cosmwasm_enabled": true, "cosmwasm_version": "0.43.0", - "ibc_go_version": "v7.3.0", "consensus": { "type": "cometbft", "version": "0.37.2" + }, + "sdk": { + "type": "cosmos", + "version": "0.47.5" + }, + "language": { + "type": "go", + "version": "1.19" + }, + "cosmwasm": { + "version": "0.43.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.0" } }, { "name": "v0.3.7", - "tag": "v0.3.7", + "tag": "v4.0.0", + "proposal": 18, "height": 6887750, - "recommended_version": "v0.3.7", "cosmos_sdk_version": "0.47.10", "cosmwasm_enabled": true, "cosmwasm_version": "0.45.0", - "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", "version": "0.37.4" + }, + "binaries": { + "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v0.3.7/xiond-v0.3.7-linux-amd64:checksum=sha256:3d7626e971bf2ece28d4835d45ee6bd104a54ba6d652cd4982fc00ff8a6590de" + }, + "sdk": { + "type": "cosmos", + "version": "0.47.10" + }, + "language": { + "type": "go", + "version": "1.21" + }, + "cosmwasm": { + "version": "0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" } }, { "name": "v0.3.8", - "tag": "v0.3.8", + "tag": "v5.0.0", + "proposal": 19, "height": 7130100, - "recommended_version": "v0.3.8", "cosmos_sdk_version": "0.47.10", "cosmwasm_enabled": true, "cosmwasm_version": "0.45.0", - "ibc_go_version": "v7.3.1", "consensus": { "type": "cometbft", "version": "0.37.4" + }, + "binaries": { + "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v0.3.8/xiond-v0.3.8-linux-amd64:checksum=sha256:ef5112a6bb01e9dd297abf27ab423582004d3261f3300cef419937555bf8e281" + }, + "sdk": { + "type": "cosmos", + "version": "0.47.10" + }, + "language": { + "type": "go", + "version": "1.21" + }, + "cosmwasm": { + "version": "0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1" } }, { "name": "v0.3.9", - "tag": "v0.3.9", + "tag": "v6.0.0", "height": 7438800, - "recommended_version": "v0.3.9", + "proposal": 23, "cosmos_sdk_version": "0.47.10", "cosmwasm_enabled": true, "cosmwasm_version": "0.45.1", - "ibc_go_version": "v7.4.0", "consensus": { "type": "cometbft", "version": "0.37.4" + }, + "binaries": { + "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v0.3.9/xiond-v0.3.9-linux-amd64:checksum=sha256:476abdd10b6bde0e81e14f4e6d67bf7eecfeee887879316153c72c01b80ccb98" + }, + "sdk": { + "type": "cosmos", + "version": "0.47.10" + }, + "language": { + "type": "go", + "version": "1.21" + }, + "cosmwasm": { + "version": "0.45.1", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } + }, + { + "name": "v7.0.0", + "tag": "v7.0.0", + "height": 8457600, + "proposal": 29, + "cosmos_sdk_version": "0.47.10", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.45.0", + "consensus": { + "type": "cometbft", + "version": "0.37.4" + }, + "binaries": { + "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v7.0.0/xiond-v7.0.0-linux-amd64:checksum=sha256:e7431453c3e7adadb7d75516d6cdc27e0ab4e9bdbdb620f7af4697a72c0c71bb" + }, + "sdk": { + "type": "cosmos", + "version": "0.47.10" + }, + "language": { + "type": "go", + "version": "1.21" + }, + "cosmwasm": { + "version": "0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } + }, + { + "name": "v8.0.0", + "tag": "v8.0.1", + "height": 8903500, + "proposal": 38, + "cosmos_sdk_version": "0.47.10", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.45.0", + "consensus": { + "type": "cometbft", + "version": "0.37.4" + }, + "compatible_versions": [ + "v8.0.0", + "v8.0.1" + ], + "binaries": { + "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v8.0.1/xiond-v8.0.1-linux-amd64:checksum=sha256:253f0efd544d6accab95c761eb748b787b093e645e2e565c98e9e87763a19aa8" + }, + "sdk": { + "type": "cosmos", + "version": "0.47.10" + }, + "language": { + "type": "go", + "version": "1.21" + }, + "cosmwasm": { + "version": "0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } + }, + { + "name": "v9", + "tag": "v9.0.0", + "height": 8983000, + "proposal": 40, + "cosmos_sdk_version": "0.47.10", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.45.0", + "consensus": { + "type": "cometbft", + "version": "0.37.4" + }, + "binaries": { + "linux/amd64": "https://github.com/burnt-labs/xion/releases/download/v9.0.0/xiond-v9.0.0-linux-amd64?checksum=sha256:dc25db91e7a3e9befbc1e96c76f6537461812466a28df9484d71838e7c4967f1" + }, + "sdk": { + "type": "cosmos", + "version": "0.47.10" + }, + "language": { + "type": "go", + "version": "1.22" + }, + "cosmwasm": { + "version": "0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.4.0" } } ] @@ -150,14 +354,19 @@ "peers": { "seeds": [ { - "id": "7900d5f177228def24170f9631db76afab20278e", + "id": "eb029462c82b46d842a47122d860617bff627fdf", "address": "xion-testnet-1.burnt.com:11656", "provider": "burnt-labs" + }, + { + "id": "69e1aa5800ffa82615986eac5f99b77c2b8f1ccb", + "address": "burnt-testnet-seed.itrocket.net:55656", + "provider": "ITRocket" } ], "persistent_peers": [ { - "id": "93db3539d6cc9603bbb6b9e43bfb473bdaff7e4b", + "id": "6bb70718db6af0a473c9d76e82d9ade33618b20d", "address": "xion-testnet-1.burnt.com:32656", "provider": "burnt-labs" }, @@ -170,6 +379,11 @@ "id": "f684e3873191d62a74e5431202581d99fe3439b7", "address": "xion-testnet-1.burnt.com:34656", "provider": "burnt-labs" + }, + { + "id": "a386af218bd4e5d0a5f2dcfbcc1051eff63d059f", + "address": "burnt-testnet-peer.itrocket.net:55656", + "provider": "ITRocket" } ] }, @@ -182,6 +396,10 @@ { "address": "https://xion-testnet-rpc.polkachu.com", "provider": "polkachu" + }, + { + "address": "https://burnt-testnet-rpc.itrocket.net", + "provider": "ITRocket" } ], "rest": [ @@ -192,6 +410,10 @@ { "address": "https://xion-testnet-api.polkachu.com", "provider": "polkachu" + }, + { + "address": "https://burnt-testnet-api.itrocket.net", + "provider": "ITRocket" } ], "grpc": [ @@ -202,9 +424,18 @@ { "address": "xion-testnet-grpc.polkachu.com:22390", "provider": "polkachu" + }, + { + "address": "burnt-testnet-grpc.itrocket.net:443", + "provider": "ITRocket" } ] }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png" + } + ], "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png" }, @@ -213,9 +444,12 @@ "burnt", "testnet" ], - "images": [ + "explorers": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png" + "kind": "ITRocket", + "url": "https://testnet.itrocket.net/burnt", + "tx_page": "https://testnet.itrocket.net/burnt/tx/${txHash}", + "account_page": "https://testnet.itrocket.net/burnt/account/${accountAddress}" } ] } \ No newline at end of file diff --git a/testnets/zetachaintestnet/assetlist.json b/testnets/zetachaintestnet/assetlist.json index 4309f37d11..5851e14935 100644 --- a/testnets/zetachaintestnet/assetlist.json +++ b/testnets/zetachaintestnet/assetlist.json @@ -27,7 +27,8 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zetachaintestnet/images/zetachaintestnet.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zetachaintestnet/images/zetachaintestnet.svg" } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/testnets/zetachaintestnet/chain.json b/testnets/zetachaintestnet/chain.json index 0f118ae20d..b5dd94ce86 100644 --- a/testnets/zetachaintestnet/chain.json +++ b/testnets/zetachaintestnet/chain.json @@ -4,6 +4,7 @@ "status": "live", "network_type": "testnet", "pretty_name": "ZetaChain Testnet", + "chain_type": "cosmos", "chain_id": "athens_7001-1", "bech32_prefix": "zeta", "daemon_name": "zetacored", @@ -40,7 +41,6 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "v6.1.0", "genesis": { "genesis_url": "https://zetachain-athens.blockpi.network/rpc/v1/public/genesis" }, @@ -53,9 +53,24 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "v6.1.0" + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "v6.1.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "v6.1.0" + } }, "peers": { "persistent_peers": [ diff --git a/tgrade/assetlist.json b/tgrade/assetlist.json index 0e4ffbf5d4..4c71e41c20 100644 --- a/tgrade/assetlist.json +++ b/tgrade/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#a7248a" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/tgrade/chain.json b/tgrade/chain.json index ddd6cc823b..71db7f9277 100644 --- a/tgrade/chain.json +++ b/tgrade/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://tgrade.finance/", "pretty_name": "Tgrade", + "chain_type": "cosmos", "chain_id": "tgrade-mainnet-1", "bech32_prefix": "tgrade", "daemon_name": "tgrade", @@ -48,9 +49,15 @@ "compatible_versions": [ "v2.0.4" ], - "cosmwasm_enabled": true + "cosmwasm_enabled": true, + "cosmwasm": { + "enabled": true + } } - ] + ], + "cosmwasm": { + "enabled": true + } }, "peers": { "seeds": [ diff --git a/thorchain/assetlist.json b/thorchain/assetlist.json new file mode 100644 index 0000000000..d5b087bb68 --- /dev/null +++ b/thorchain/assetlist.json @@ -0,0 +1,35 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "thorchain", + "assets": [ + { + "description": "The native token of THORChain", + "denom_units": [ + { + "denom": "rune", + "exponent": 0 + }, + { + "denom": "RUNE", + "exponent": 8 + } + ], + "base": "rune", + "name": "THORChain RUNE", + "display": "RUNE", + "symbol": "RUNE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/rune.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/rune.svg" + }, + "coingecko_id": "thorchain", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/rune.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/rune.svg" + } + ], + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/thorchain/chain.json b/thorchain/chain.json index bf91f04f4f..c791bbcaff 100644 --- a/thorchain/chain.json +++ b/thorchain/chain.json @@ -5,29 +5,113 @@ "network_type": "mainnet", "website": "https://thorchain.org/", "pretty_name": "THORChain", - "chain_id": "thorchain-mainnet-v1", + "chain_type": "cosmos", + "chain_id": "thorchain-1", "bech32_prefix": "thor", "daemon_name": "thord", "node_home": "$HOME/.thornode", "slip44": 931, "codebase": { "git_repo": "https://gitlab.com/thorchain/thornode", - "recommended_version": "chaosnet-multichain", + "recommended_version": "v2.135.0", "compatible_versions": [ - "chaosnet-multichain" + "v2.135.0" ], + "cosmos_sdk_version": "v0.45.16", + "cosmwasm_enabled": false, "genesis": { - "genesis_url": "https://rpc.thorchain.info/genesis" + "genesis_url": "https://storage.googleapis.com/public-snapshots-ninerealms/genesis/17562000.json" }, "versions": [ { - "name": "chaosnet-multichain", - "recommended_version": "chaosnet-multichain", + "name": "v1.132.0", + "recommended_version": "v1.132.0", "compatible_versions": [ - "chaosnet-multichain" - ] + "v1.132.0" + ], + "cosmos_sdk_version": "v0.45.1", + "cosmwasm_enabled": false, + "sdk": { + "type": "cosmos", + "version": "v0.45.1" + }, + "ibc": { + "type": "go", + "version": "v2.0.3" + } + }, + { + "name": "v1.133.0", + "recommended_version": "v1.133.0", + "compatible_versions": [ + "v1.133.0" + ], + "cosmos_sdk_version": "v0.45.1", + "cosmwasm_enabled": false, + "sdk": { + "type": "cosmos", + "version": "v0.45.1" + }, + "ibc": { + "type": "go", + "version": "v2.0.3" + } + }, + { + "name": "v1.134.0", + "recommended_version": "v1.134.0", + "compatible_versions": [ + "v1.134.0" + ], + "cosmos_sdk_version": "v0.45.1", + "cosmwasm_enabled": false, + "sdk": { + "type": "cosmos", + "version": "v0.45.1" + }, + "ibc": { + "type": "go", + "version": "v2.0.3" + } + }, + { + "name": "v1.134.1", + "recommended_version": "v1.134.1", + "compatible_versions": [ + "v1.134.1" + ], + "cosmos_sdk_version": "v0.45.1", + "cosmwasm_enabled": false, + "sdk": { + "type": "cosmos", + "version": "v0.45.1" + }, + "ibc": { + "type": "go", + "version": "v2.0.3" + } + }, + { + "name": "v2.135.0", + "recommended_version": "v2.135.0", + "compatible_versions": [ + "v2.135.0" + ], + "cosmos_sdk_version": "v0.45.16", + "cosmwasm_enabled": false, + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.45.16" + }, + "cosmwasm": { + "enabled": false + } }, "peers": { "seeds": [ diff --git a/thorchain/images/rune.png b/thorchain/images/rune.png new file mode 100644 index 0000000000..96d8bf40cc Binary files /dev/null and b/thorchain/images/rune.png differ diff --git a/thorchain/images/rune.svg b/thorchain/images/rune.svg new file mode 100644 index 0000000000..716cf38d76 --- /dev/null +++ b/thorchain/images/rune.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/titan/assetlist.json b/titan/assetlist.json index 0e2d846767..9431f2697b 100644 --- a/titan/assetlist.json +++ b/titan/assetlist.json @@ -50,7 +50,66 @@ ], "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/titan/images/tkx.png" - } + }, + "type_asset": "sdk.coin" + }, + { + "description": "Noble USDC on Titan Chain.", + "denom_units": [ + { + "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "exponent": 0 + }, + { + "denom": "usdc", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "name": "USDC", + "display": "usdc", + "symbol": "USDC", + "traces": [ + { + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "provider": "Circle" + }, + { + "type": "ibc", + "counterparty": { + "chain_name": "noble", + "base_denom": "uusdc", + "channel_id": "channel-99" + }, + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/uusdc" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, + "images": [ + { + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true, + "primary_color_hex": "#2775CA" + } + } + ] } ] } \ No newline at end of file diff --git a/titan/chain.json b/titan/chain.json index 75d7ab46c5..3817b32404 100644 --- a/titan/chain.json +++ b/titan/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://titanlab.io/", "pretty_name": "Titan", + "chain_type": "cosmos", "chain_id": "titan_18888-1", "bech32_prefix": "titan", "node_home": "$HOME/.titand", @@ -45,13 +46,8 @@ "type": "cometbft", "version": "0.37.4" }, - "ibc_go_version": "7.3.0", "cosmwasm_version": "0.45.0", "cosmwasm_enabled": true, - "ics_enabled": [ - "ics20-1", - "ics27-1" - ], "genesis": { "genesis_url": "https://raw.githubusercontent.com/titantkx/titan-mainnet/main/public/genesis.json" }, @@ -69,15 +65,44 @@ "type": "cometbft", "version": "0.37.4" }, - "ibc_go_version": "7.3.0", "cosmwasm_version": "0.45.0", "cosmwasm_enabled": true, - "ics_enabled": [ - "ics20-1", - "ics27-1" - ] + "sdk": { + "type": "cosmos", + "version": "0.47.6", + "tag": "0.47.6-titan.4" + }, + "cosmwasm": { + "version": "0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.3.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47.6", + "tag": "0.47.6-titan.4" + }, + "ibc": { + "type": "go", + "version": "7.3.0", + "ics_enabled": [ + "ics20-1", + "ics27-1" + ] + }, + "cosmwasm": { + "version": "0.45.0", + "enabled": true + } }, "images": [ { @@ -99,6 +124,11 @@ "id": "a7e03c50f9b85ac2c9488d20913a37c2d1a9361c", "address": "titan-p2p-seed-1-seoul.titanlab.io:26656", "provider": "Titanlab.io" + }, + { + "id": "cec848e7d4c5a7ae305b27cda133d213435c110f", + "address": "seeds.ibs.team:16682", + "provider": "ibs.team" } ], "persistent_peers": [] @@ -120,6 +150,10 @@ { "address": "https://titan-rpc-hongkong.titanlab.io:443", "provider": "Titanlab.io" + }, + { + "address": "https://titan-rpc.ibs.team", + "provider": "ibs.team" } ], "rest": [ @@ -138,6 +172,10 @@ { "address": "https://titan-lcd-hongkong.titanlab.io:443", "provider": "Titanlab.io" + }, + { + "address": "https://titan-api.ibs.team", + "provider": "ibs.team" } ], "grpc": [ diff --git a/umee/assetlist.json b/umee/assetlist.json index dd1080eb8c..63d884191e 100644 --- a/umee/assetlist.json +++ b/umee/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#22f2e9" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/umee/chain.json b/umee/chain.json index 3d120f98f4..1895ddd39a 100644 --- a/umee/chain.json +++ b/umee/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://www.ux.xyz", "pretty_name": "UX Chain", + "chain_type": "cosmos", "chain_id": "umee-1", "bech32_prefix": "umee", "daemon_name": "umeed", @@ -44,7 +45,6 @@ }, "cosmwasm_version": "0.43", "cosmwasm_enabled": true, - "ibc_go_version": "7.3.2", "genesis": { "name": "v1.0.1", "genesis_url": "https://raw.githubusercontent.com/umee-network/mainnet/main/genesis.json" @@ -64,12 +64,19 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "2.0.3", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v1.0.1/umeed-v1.0.1-linux-amd64.tar.gz", "linux/arm64": "https://github.com/umee-network/umee/releases/download/v1.0.1/umeed-v1.0.1-linux-arm64.tar.gz", "darwin/amd64": "https://github.com/umee-network/umee/releases/download/v1.0.1/umeed-v1.0.1-darwin-amd64.tar.gz", "darwin/arm64": "https://github.com/umee-network/umee/releases/download/v1.0.1/umeed-v1.0.1-darwin-arm64.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "ibc": { + "type": "go", + "version": "2.0.3" } }, { @@ -86,12 +93,19 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "2.0.3", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v1.1.0/umeed-v1.1.0-linux-amd64.tar.gz", "linux/arm64": "https://github.com/umee-network/umee/releases/download/v1.1.0/umeed-v1.1.0-linux-arm64.tar.gz", "darwin/amd64": "https://github.com/umee-network/umee/releases/download/v1.1.0/umeed-v1.1.0-darwin-amd64.tar.gz", "darwin/arm64": "https://github.com/umee-network/umee/releases/download/v1.1.0/umeed-v1.1.0-darwin-arm64.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "0.45" + }, + "ibc": { + "type": "go", + "version": "2.0.3" } }, { @@ -108,12 +122,19 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "5.0.0", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v3.0.0/umeed-v3.0.0-linux-amd64.tar.gz", "linux/arm64": "https://github.com/umee-network/umee/releases/download/v3.0.0/umeed-v3.0.0-linux-arm64.tar.gz", "darwin/amd64": "https://github.com/umee-network/umee/releases/download/v3.0.0/umeed-v3.0.0-darwin-amd64.tar.gz", "darwin/arm64": "https://github.com/umee-network/umee/releases/download/v3.0.0/umeed-v3.0.0-darwin-arm64.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "5.0.0" } }, { @@ -130,12 +151,19 @@ "type": "tendermint", "version": "0.34" }, - "ibc_go_version": "5.0.0", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v3.1.0/umeed-v3.1.0-linux-amd64", "linux/arm64": "https://github.com/umee-network/umee/releases/download/v3.1.0/umeed-v3.1.0-linux-arm64", "darwin/amd64": "https://github.com/umee-network/umee/releases/download/v3.1.0/umeed-v3.1.0-darwin-amd64", "darwin/arm64": "https://github.com/umee-network/umee/releases/download/v3.1.0/umeed-v3.1.0-darwin-arm64" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "ibc": { + "type": "go", + "version": "5.0.0" } }, { @@ -154,9 +182,20 @@ }, "cosmwasm_version": "0.29", "cosmwasm_enabled": true, - "ibc_go_version": "5.2.0", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v3.3.0/umeed-v3.3.0-linux-amd64" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "5.2.0" } }, { @@ -175,9 +214,20 @@ }, "cosmwasm_version": "0.29", "cosmwasm_enabled": true, - "ibc_go_version": "5.2.0", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v4.0.0/umeed-v4.0.0-linux-amd64" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "5.2.0" } }, { @@ -196,9 +246,20 @@ }, "cosmwasm_version": "0.29", "cosmwasm_enabled": true, - "ibc_go_version": "5.2.0", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v4.0.1/umeed-v4.0.1-linux-amd64" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "5.2.0" } }, { @@ -217,9 +278,20 @@ }, "cosmwasm_version": "0.29", "cosmwasm_enabled": true, - "ibc_go_version": "5.2.0", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v4.1.0/umeed-v4.1.0-linux-amd64" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "5.2.0" } }, { @@ -238,9 +310,20 @@ }, "cosmwasm_version": "0.29", "cosmwasm_enabled": true, - "ibc_go_version": "5.2.0", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v4.2.0/umeed-v4.2.0-linux-amd64" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.29", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "5.2.0" } }, { @@ -258,9 +341,20 @@ }, "cosmwasm_version": "0.30", "cosmwasm_enabled": true, - "ibc_go_version": "6.1.0", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v4.3.0/umeed-v4.3.0-linux-amd64" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "6.1.0" } }, { @@ -279,9 +373,20 @@ }, "cosmwasm_version": "0.30", "cosmwasm_enabled": true, - "ibc_go_version": "6.1.0", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v4.4.0/umeed-v4.4.0-linux-amd64" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.30", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "6.1.0" } }, { @@ -299,9 +404,20 @@ }, "cosmwasm_version": "0.31", "cosmwasm_enabled": true, - "ibc_go_version": "6.1.1", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v5.0.1/umeed-v5.0.1-linux-amd64.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "6.1.1" } }, { @@ -319,9 +435,20 @@ }, "cosmwasm_version": "0.31", "cosmwasm_enabled": true, - "ibc_go_version": "6.2.0", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v5.1.0/umeed-v5.1.0-linux-amd64.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "6.2.0" } }, { @@ -339,9 +466,20 @@ }, "cosmwasm_version": "0.31", "cosmwasm_enabled": true, - "ibc_go_version": "6.2.0", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v5.2.0/umeed-v5.2.0-linux-amd64.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "6.2.0" } }, { @@ -359,9 +497,20 @@ }, "cosmwasm_version": "0.31", "cosmwasm_enabled": true, - "ibc_go_version": "6.2.0", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v6.0.2/umeed-v6.0.2-linux-amd64.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "6.2.0" } }, { @@ -379,9 +528,20 @@ }, "cosmwasm_version": "0.31", "cosmwasm_enabled": true, - "ibc_go_version": "6.2.0", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v6.1.0/umeed-v6.1.0-linux-amd64.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "0.46" + }, + "cosmwasm": { + "version": "0.31", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "6.2.0" } }, { @@ -399,9 +559,20 @@ }, "cosmwasm_version": "0.43", "cosmwasm_enabled": true, - "ibc_go_version": "7.3.1", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v6.2.0/umeed-v6.2.0-linux-amd64.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "version": "0.43", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.3.1" } }, { @@ -419,12 +590,35 @@ }, "cosmwasm_version": "0.43", "cosmwasm_enabled": true, - "ibc_go_version": "7.3.1", "binaries": { "linux/amd64": "https://github.com/umee-network/umee/releases/download/v6.3.0/umeed-v6.3.0-linux-amd64.tar.gz" + }, + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "version": "0.43", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.3.1" } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "ibc": { + "type": "go", + "version": "7.3.2" + }, + "cosmwasm": { + "version": "0.43", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", @@ -804,4 +998,4 @@ } } ] -} +} \ No newline at end of file diff --git a/unicorn/assetlist.json b/unicorn/assetlist.json new file mode 100644 index 0000000000..dbb62dc697 --- /dev/null +++ b/unicorn/assetlist.json @@ -0,0 +1,39 @@ +{ + "$schema": "../assetlist.schema.json", + "chain_name": "unicorn", + "assets": [ + { + "description": "The native token of Unicorn.", + "denom_units": [ + { + "denom": "uwunicorn", + "exponent": 0 + }, + { + "denom": "unicorn", + "exponent": 6 + } + ], + "base": "uwunicorn", + "name": "Unicorn", + "display": "unicorn", + "symbol": "UWU", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unicorn/images/uwu.png", + "theme": { + "primary_color_hex": "#D44CE6" + } + } + ], + "socials": { + "website": "https://unicorn.meme/", + "twitter": "https://x.com/unicornandmemes" + }, + "keywords": [ + "meme" + ], + "type_asset": "sdk.coin" + } + ] +} \ No newline at end of file diff --git a/unicorn/chain.json b/unicorn/chain.json new file mode 100644 index 0000000000..eb28d2853d --- /dev/null +++ b/unicorn/chain.json @@ -0,0 +1,29 @@ +{ + "$schema": "../chain.schema.json", + "chain_name": "unicorn", + "status": "live", + "network_type": "mainnet", + "website": "https://unicorn.meme/", + "pretty_name": "Unicorn", + "chain_type": "cosmos", + "chain_id": "unicorn-420", + "bech32_prefix": "unicorn", + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uwunicorn", + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "uwunicorn" + } + ] + } +} \ No newline at end of file diff --git a/unicorn/images/uwu.png b/unicorn/images/uwu.png new file mode 100644 index 0000000000..5f60669422 Binary files /dev/null and b/unicorn/images/uwu.png differ diff --git a/unification/assetlist.json b/unification/assetlist.json index f6895bc072..8507ae8806 100644 --- a/unification/assetlist.json +++ b/unification/assetlist.json @@ -36,7 +36,8 @@ "website": "https://unification.com", "twitter": "https://twitter.com/UnificationUND" }, - "coingecko_id": "unification" + "coingecko_id": "unification", + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/unification/chain.json b/unification/chain.json index 1f5cee6b40..8b157154b1 100644 --- a/unification/chain.json +++ b/unification/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://unification.com/", "pretty_name": "Unification", + "chain_type": "cosmos", "chain_id": "FUND-MainNet-2", "bech32_prefix": "und", "daemon_name": "und", @@ -36,29 +37,28 @@ }, "codebase": { "git_repo": "https://github.com/unification-com/mainchain", - "recommended_version": "v1.8.2", + "recommended_version": "v1.10.1", "compatible_versions": [ - "v1.8.1", - "v1.8.0" + "v1.10.0", + "v1.10.1" ], "binaries": { - "linux/amd64": "https://github.com/unification-com/mainchain/releases/download/v1.8.2/und_v1.8.2_linux_x86_64.tar.gz", - "darwin/amd64": "https://github.com/unification-com/mainchain/releases/download/v1.8.2/und_v1.8.2_darwin_x86_64.tar.gz", - "windows/amd64": "https://github.com/unification-com/mainchain/releases/download/v1.8.2/und_v1.8.2_windows_x86_64.tar.gz" + "linux/amd64": "https://github.com/unification-com/mainchain/releases/download/v1.10.1/und_v1.10.1_linux_x86_64.tar.gz", + "darwin/amd64": "https://github.com/unification-com/mainchain/releases/download/v1.10.1/und_v1.10.1_darwin_x86_64.tar.gz", + "windows/amd64": "https://github.com/unification-com/mainchain/releases/download/v1.10.1/und_v1.10.1_windows_x86_64.tar.gz" }, - "cosmos_sdk_version": "0.46.15", + "cosmos_sdk_version": "0.47.13", "consensus": { - "type": "tendermint", - "version": "0.34.29" + "type": "cometbft", + "version": "0.37.5" }, "cosmwasm_enabled": false, - "ibc_go_version": "5.3.1", "genesis": { "genesis_url": "https://raw.githubusercontent.com/unification-com/mainnet/master/latest/genesis.json" }, "versions": [ { - "name": "1-ibc", + "name": "1-init_ibc", "tag": "v1.6.3", "proposal": 6, "height": 2002620, @@ -67,12 +67,22 @@ "version": "0.34.21" }, "cosmos_sdk_version": "0.45.9", - "ibc_go_version": "3.1.0", - "ics_enabled": [ - "ics20-1" - ], "cosmwasm_enabled": false, - "next_version_name": "v1.7.0" + "next_version_name": "v1.7.0", + "sdk": { + "type": "cosmos", + "version": "0.45.9" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "3.1.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "2-grog", @@ -84,12 +94,22 @@ "version": "0.34.26" }, "cosmos_sdk_version": "0.45.14", - "ibc_go_version": "3.4.0", - "ics_enabled": [ - "ics20-1" - ], "cosmwasm_enabled": false, - "next_version_name": "v1.8.0" + "next_version_name": "v1.8.2", + "sdk": { + "type": "cosmos", + "version": "0.45.14" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "3.4.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "3-keyleth", @@ -101,18 +121,101 @@ "version": "0.34.29" }, "cosmos_sdk_version": "0.46.15", - "ibc_go_version": "5.3.1", - "ics_enabled": [ - "ics20-1" - ], "cosmwasm_enabled": false, "recommended_version": "v1.8.2", + "next_version_name": "v1.9.0", + "compatible_versions": [ + "v1.8.2" + ], + "sdk": { + "type": "cosmos", + "version": "0.46.15" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "5.3.1", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "4-percival", + "tag": "v1.9.0", + "proposal": 21, + "height": 9577300, + "consensus": { + "type": "tendermint", + "version": "0.34.29" + }, + "cosmos_sdk_version": "0.46.16", + "cosmwasm_enabled": false, + "next_version_name": "v1.10.1", + "recommended_version": "v1.9.0", + "compatible_versions": [ + "v1.9.0" + ], + "sdk": { + "type": "cosmos", + "version": "0.46.16" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "5.3.1", + "ics_enabled": [ + "ics20-1" + ] + } + }, + { + "name": "5-pike", + "tag": "v1.10.1", + "proposal": 25, + "height": 12210000, + "consensus": { + "type": "cometbft", + "version": "0.37.5" + }, + "cosmos_sdk_version": "0.47.13", + "cosmwasm_enabled": false, + "recommended_version": "v1.10.1", "compatible_versions": [ - "v1.8.1", - "v1.8.0" - ] + "v1.10.0", + "v1.10.1" + ], + "sdk": { + "type": "cosmos", + "version": "0.47.13" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "7.7.0", + "ics_enabled": [ + "ics20-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "0.47.13" + }, + "ibc": { + "type": "go", + "version": "7.7.0" + }, + "cosmwasm": { + "enabled": false + } }, "images": [ { @@ -157,7 +260,7 @@ "apis": { "rpc": [ { - "address": "https://rpc1.unification.io:443", + "address": "https://rpc.unification.io:443", "provider": "Unification" }, { @@ -175,6 +278,12 @@ "provider": "Chainmasters" } ], + "wss": [ + { + "address": "wss://wss.unification.io", + "provider": "Unification" + } + ], "grpc": [ { "address": "grpc.unification.io:443", @@ -188,10 +297,10 @@ }, "explorers": [ { - "kind": "bigdipper", - "url": "https://explorer.unification.io/", - "tx_page": "https://explorer.unification.io/transactions/${txHash}", - "account_page": "https://explorer.unification.io/accounts/${accountAddress}" + "kind": "ping.pub", + "url": "https://explorer.unification.io/u", + "tx_page": "https://explorer.unification.io/u/tx/${txHash}", + "account_page": "https://explorer.unification.io/u/account/${accountAddress}" }, { "kind": "ping.pub", diff --git a/ununifi/assetlist.json b/ununifi/assetlist.json index 26a171b5d6..74e1a9668f 100644 --- a/ununifi/assetlist.json +++ b/ununifi/assetlist.json @@ -36,7 +36,8 @@ "primary_color_hex": "#546c8c" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/ununifi/chain.json b/ununifi/chain.json index 98cfc8d184..ed51901baf 100644 --- a/ununifi/chain.json +++ b/ununifi/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://ununifi.io/", "pretty_name": "UnUniFi", + "chain_type": "cosmos", "chain_id": "ununifi-beta-v1", "bech32_prefix": "ununifi", "daemon_name": "ununifid", @@ -50,10 +51,6 @@ }, "cosmwasm_version": "v0.40.1", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", - "ics_enabled": [ - "ics20-1" - ], "genesis": { "name": "beta-v1", "genesis_url": "https://raw.githubusercontent.com/UnUniFi/network/main/launch/ununifi-beta-v1/genesis.json" @@ -75,11 +72,22 @@ }, "cosmwasm_version": "0.40", "cosmwasm_enabled": true, - "ibc_go_version": "7.0.0", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v2_1" + "next_version_name": "v2_1", + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "version": "0.40", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.0.0", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v2_1", @@ -99,11 +107,22 @@ }, "cosmwasm_version": "0.40", "cosmwasm_enabled": true, - "ibc_go_version": "7.0.1", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v2_2" + "next_version_name": "v2_2", + "sdk": { + "type": "cosmos", + "version": "0.47" + }, + "cosmwasm": { + "version": "0.40", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "7.0.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v2_2", @@ -123,11 +142,23 @@ }, "cosmwasm_version": "v0.40.1", "cosmwasm_enabled": true, - "ibc_go_version": "v7.0.1", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v3" + "next_version_name": "v3", + "sdk": { + "type": "cosmos", + "version": "v0.47.1", + "tag": "v0.47.1-bank-rc2" + }, + "cosmwasm": { + "version": "v0.40.1", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.0.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v3", @@ -147,11 +178,23 @@ }, "cosmwasm_version": "v0.40.1", "cosmwasm_enabled": true, - "ibc_go_version": "v7.0.1", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v3_1" + "next_version_name": "v3_1", + "sdk": { + "type": "cosmos", + "version": "v0.47.3", + "tag": "v0.47.3-custom-bank-1" + }, + "cosmwasm": { + "version": "v0.40.1", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.0.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v3_1", @@ -171,11 +214,23 @@ }, "cosmwasm_version": "v0.40.1", "cosmwasm_enabled": true, - "ibc_go_version": "v7.0.1", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v3_2_1" + "next_version_name": "v3_2_1", + "sdk": { + "type": "cosmos", + "version": "v0.47.3", + "tag": "v0.47.3-custom-bank-1" + }, + "cosmwasm": { + "version": "v0.40.1", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.0.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v3_2_1", @@ -195,11 +250,23 @@ }, "cosmwasm_version": "v0.40.1", "cosmwasm_enabled": true, - "ibc_go_version": "v7.0.1", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v3_2_2" + "next_version_name": "v3_2_2", + "sdk": { + "type": "cosmos", + "version": "v0.47.3", + "tag": "v0.47.3-custom-bank-1" + }, + "cosmwasm": { + "version": "v0.40.1", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.0.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v3_2_2", @@ -220,11 +287,23 @@ }, "cosmwasm_version": "v0.40.1", "cosmwasm_enabled": true, - "ibc_go_version": "v7.0.1", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v4" + "next_version_name": "v4", + "sdk": { + "type": "cosmos", + "version": "v0.47.3", + "tag": "v0.47.3-custom-bank-1" + }, + "cosmwasm": { + "version": "v0.40.1", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.0.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v4", @@ -244,11 +323,23 @@ }, "cosmwasm_version": "v0.40.1", "cosmwasm_enabled": true, - "ibc_go_version": "v7.0.1", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v4_0_1" + "next_version_name": "v4_0_1", + "sdk": { + "type": "cosmos", + "version": "v0.47.3", + "tag": "v0.47.3-custom-bank-1" + }, + "cosmwasm": { + "version": "v0.40.1", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.0.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v4_0_1", @@ -268,11 +359,23 @@ }, "cosmwasm_version": "v0.40.1", "cosmwasm_enabled": true, - "ibc_go_version": "v7.0.1", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "v4_0_2" + "next_version_name": "v4_0_2", + "sdk": { + "type": "cosmos", + "version": "v0.47.3", + "tag": "v0.47.3-custom-bank-1" + }, + "cosmwasm": { + "version": "v0.40.1", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.0.1", + "ics_enabled": [ + "ics20-1" + ] + } }, { "name": "v4_0_2", @@ -292,13 +395,43 @@ }, "cosmwasm_version": "v0.40.1", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.1", - "ics_enabled": [ - "ics20-1" - ], - "next_version_name": "" + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/ununifi/cosmos-sdk", + "version": "v0.47.3", + "tag": "v0.47.3-custom-bank-1" + }, + "cosmwasm": { + "version": "v0.40.1", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.1", + "ics_enabled": [ + "ics20-1" + ] + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/ununifi/cosmos-sdk", + "version": "v0.47.3", + "tag": "v0.47.3-custom-bank-1" + }, + "ibc": { + "type": "go", + "version": "v7.3.1", + "ics_enabled": [ + "ics20-1" + ] + }, + "cosmwasm": { + "version": "v0.40.1", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.png", @@ -366,11 +499,11 @@ "provider": "NodeStake" }, { - "address": "https://ununifi-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/ununifi", "provider": "Lavender.Five Nodes 🐝" }, { - "address": "https://ununifi-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/ununifi", "provider": "Lavender.Five Nodes 🐝" }, { @@ -392,7 +525,7 @@ "provider": "NodeStake" }, { - "address": "https://ununifi-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/ununifi", "provider": "Lavender.Five Nodes 🐝" }, { @@ -422,7 +555,7 @@ "provider": "Nodeist" }, { - "address": "https://ununifi-grpc.lavenderfive.com:443", + "address": "ununifi.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/uptick/assetlist.json b/uptick/assetlist.json index 39f54aa500..a180541f6d 100644 --- a/uptick/assetlist.json +++ b/uptick/assetlist.json @@ -30,7 +30,8 @@ "primary_color_hex": "#1f182f" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/uptick/chain.json b/uptick/chain.json index 00d9264a62..8f708844f4 100644 --- a/uptick/chain.json +++ b/uptick/chain.json @@ -5,6 +5,7 @@ "network_type": "mainnet", "website": "https://uptick.network/", "pretty_name": "Uptick", + "chain_type": "cosmos", "chain_id": "uptick_117-1", "bech32_prefix": "uptick", "daemon_name": "uptickd", @@ -43,11 +44,11 @@ "cosmos_sdk_version": "v0.47.5", "consensus": { "type": "cometbft", - "version": "v0.37.3-0.20230920093934-46df7b597e3c" + "version": "v0.37.3", + "tag": "v0.37.3-0.20230920093934-46df7b597e3c" }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "7.3.0", "genesis": { "genesis_url": "https://raw.githubusercontent.com/uptick-network/mainnet/main/genesis.json" }, @@ -67,8 +68,18 @@ "version": "0.34" }, "cosmwasm_enabled": false, - "ibc_go_version": "5.0.1", - "next_version_name": "v0.2.8" + "next_version_name": "v0.2.8", + "sdk": { + "type": "cosmos", + "version": "0.47.5" + }, + "cosmwasm": { + "enabled": false + }, + "ibc": { + "type": "go", + "version": "5.0.1" + } }, { "name": "v0.2.8", @@ -134,13 +145,37 @@ "cosmos_sdk_version": "0.47.5", "consensus": { "type": "cometbft", - "version": "v0.37.3-0.20230920093934-46df7b597e3c" + "version": "v0.37.3", + "tag": "v0.37.3-0.20230920093934-46df7b597e3c" }, "cosmwasm_version": "v0.45.0", "cosmwasm_enabled": true, - "ibc_go_version": "v7.3.0" + "sdk": { + "type": "cosmos", + "version": "0.47.5" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + }, + "ibc": { + "type": "go", + "version": "v7.3.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.5" + }, + "ibc": { + "type": "go", + "version": "7.3.0" + }, + "cosmwasm": { + "version": "v0.45.0", + "enabled": true + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.png", diff --git a/versions.schema.json b/versions.schema.json index 7e4bd9e69f..8e28802d51 100644 --- a/versions.schema.json +++ b/versions.schema.json @@ -61,24 +61,11 @@ "cosmos_sdk_version": { "type": "string" }, + "sdk": { + "$ref": "#/$defs/sdk" + }, "consensus": { - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "tendermint", - "cometbft" - ] - }, - "version": { - "type": "string" - } - }, - "additionalProperties": false + "$ref": "#/$defs/consensus" }, "cosmwasm_version": { "type": "string" @@ -91,11 +78,17 @@ "description": "Relative path to the cosmwasm directory. ex. $HOME/.juno/data/wasm", "pattern": "^\\$HOME.*$" }, + "cosmwasm": { + "$ref": "#/$defs/cosmwasm" + }, "ibc_go_version": { "type": "string" }, - "go_version": { - "type": "string" + "ibc": { + "$ref": "#/$defs/ibc" + }, + "language": { + "$ref": "#/$defs/language" }, "ics_enabled": { "type": "array", @@ -111,39 +104,191 @@ } }, "binaries": { - "type": "object", - "properties": { - "linux/amd64": { - "type": "string", - "format": "uri" - }, - "linux/arm64": { - "type": "string", - "format": "uri" - }, - "darwin/amd64": { - "type": "string", - "format": "uri" - }, - "darwin/arm64": { - "type": "string", - "format": "uri" - }, - "windows/amd64": { - "type": "string", - "format": "uri" - }, - "windows/arm64": { - "type": "string", - "format": "uri" - } - }, - "additionalProperties": false + "$ref": "#/$defs/binaries" } }, "additionalProperties": false } } }, - "additionalProperties": false + "additionalProperties": false, + "$defs": { + "repo": { + "type": "string", + "format": "uri", + "minLength": 1, + "description": "URL of the code repository." + }, + "version": { + "type": "string", + "minLength": 1, + "pattern": "^v?\\d+(\\.\\d+){0,2}$", + "description": "Simple version string (e.g., 'v1.0.0')." + }, + "tag": { + "type": "string", + "minLength": 1, + "pattern": "^v?\\d+(\\.\\d+){0,2}(-[\\w\\.\\-]+)?$", + "description": "Detailed version identifier (e.g., 'v1.0.0-a1s2f43g')." + }, + "sdk": { + "type": "object", + "required": [ "type" ], + "minProperties": 1, + "additionalProperties": false, + "properties": { + "type": { + "type": "string", + "minLength": 1, + "enum": ["cosmos", "penumbra", "other"] + }, + "version": { + "$ref": "#/$defs/version" + }, + "repo": { + "$ref": "#/$defs/repo" + }, + "tag": { + "$ref": "#/$defs/tag" + } + } + }, + "ibc": { + "type": "object", + "required": [ "type" ], + "minProperties": 1, + "additionalProperties": false, + "properties": { + "type": { + "type": "string", + "minLength": 1, + "enum": ["go", "rust", "other"] + }, + "version": { + "$ref": "#/$defs/version" + }, + "repo": { + "$ref": "#/$defs/repo" + }, + "tag": { + "$ref": "#/$defs/tag" + }, + "ics_enabled": { + "type": "array", + "description": "List of IBC apps (usually corresponding to a ICS standard) which have been enabled on the network.", + "items": { + "type": "string", + "minLength": 1, + "description": "IBC app or ICS standard.", + "enum": [ "ics20-1", "ics27-1", "mauth" ] + } + } + } + }, + "cosmwasm": { + "type": "object", + "minProperties": 1, + "additionalProperties": false, + "properties": { + "version": { + "$ref": "#/$defs/version" + }, + "repo": { + "$ref": "#/$defs/repo" + }, + "tag": { + "$ref": "#/$defs/tag" + }, + "enabled": { + "type": "boolean" + }, + "path": { + "type": "string", + "minLength": 1, + "description": "Relative path to the cosmwasm directory. ex. $HOME/.juno/data/wasm", + "pattern": "^\\$HOME.*$" + } + } + }, + "consensus": { + "type": "object", + "required": [ "type" ], + "properties": { + "type": { + "type": "string", + "minLength": 1, + "enum": [ "tendermint", "cometbft", "sei-tendermint" ] + }, + "version": { + "$ref": "#/$defs/version" + }, + "repo": { + "$ref": "#/$defs/repo" + }, + "tag": { + "$ref": "#/$defs/tag" + } + }, + "additionalProperties": false + }, + "language": { + "type": "object", + "required": [ "type" ], + "minProperties": 1, + "additionalProperties": false, + "properties": { + "type": { + "type": "string", + "minLength": 1, + "enum": ["go", "rust", "solidity", "other"] + }, + "version": { + "$ref": "#/$defs/version" + }, + "repo": { + "$ref": "#/$defs/repo" + }, + "tag": { + "$ref": "#/$defs/tag" + } + } + }, + "binaries": { + "type": "object", + "minProperties": 1, + "additionalProperties": false, + "properties": { + "linux/amd64": { + "type": "string", + "minLength": 1, + "format": "uri" + }, + "linux/arm64": { + "type": "string", + "minLength": 1, + "format": "uri" + }, + "darwin/amd64": { + "type": "string", + "minLength": 1, + "format": "uri" + }, + "darwin/arm64": { + "type": "string", + "minLength": 1, + "format": "uri" + }, + "windows/amd64": { + "type": "string", + "minLength": 1, + "format": "uri" + }, + "windows/arm64": { + "type": "string", + "minLength": 1, + "format": "uri" + } + } + } + } } diff --git a/vidulum/assetlist.json b/vidulum/assetlist.json index 2506601a62..fb7748215a 100644 --- a/vidulum/assetlist.json +++ b/vidulum/assetlist.json @@ -19,19 +19,38 @@ "display": "vdl", "symbol": "VDL", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg" + "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" }, "coingecko_id": "vidulum", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg", + "image_sync": { + "chain_name": "beezee", + "base_denom": "factory/bze13gzq40che93tgfm9kzmkpjamah5nj0j73pyhqk/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" } + }, + { + "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" } - ] + ], + "traces": [ + { + "type": "legacy-mintage", + "counterparty": { + "chain_name": "beezee", + "base_denom": "factory/bze13gzq40che93tgfm9kzmkpjamah5nj0j73pyhqk/uvdl" + }, + "provider": "Vidulum" + } + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/vidulum/chain.json b/vidulum/chain.json index fd1ab4728c..caea770b17 100644 --- a/vidulum/chain.json +++ b/vidulum/chain.json @@ -1,10 +1,11 @@ { "$schema": "../chain.schema.json", "chain_name": "vidulum", - "status": "live", + "status": "killed", "network_type": "mainnet", "website": "https://vidulum.app/", "pretty_name": "Vidulum", + "chain_type": "cosmos", "chain_id": "vidulum-1", "bech32_prefix": "vdl", "daemon_name": "vidulumd", diff --git a/xpla/assetlist.json b/xpla/assetlist.json index 61963890fb..647e244f64 100644 --- a/xpla/assetlist.json +++ b/xpla/assetlist.json @@ -31,7 +31,8 @@ "primary_color_hex": "#04b4fc" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/xpla/chain.json b/xpla/chain.json index 50f1d4e1f1..ff5fbb93f3 100644 --- a/xpla/chain.json +++ b/xpla/chain.json @@ -5,6 +5,7 @@ "website": "https://xpla.io", "network_type": "mainnet", "pretty_name": "XPLA", + "chain_type": "cosmos", "chain_id": "dimension_37-1", "bech32_prefix": "xpla", "daemon_name": "xplad", @@ -37,13 +38,12 @@ "compatible_versions": [ "v1.4.0" ], - "cosmos_sdk_version": "xpladev/cosmos-sdk v0.45.20-xpla", + "cosmos_sdk_version": "v0.47.13-xpla", "consensus": { "type": "cometbft", - "version": "0.34.29" + "version": "v0.37.5" }, - "ibc_go_version": "v4.5.1", - "cosmwasm_version": "v0.33.0", + "cosmwasm_version": "v0.46.0", "genesis": { "genesis_url": "https://raw.githubusercontent.com/xpladev/mainnet/main/dimension_37-1/genesis.json" }, @@ -60,7 +60,14 @@ "version": "0.34.21" }, "cosmwasm_version": "0.28.0", - "next_version_name": "Volunteer" + "next_version_name": "Volunteer", + "sdk": { + "type": "cosmos", + "version": "0.45.9" + }, + "cosmwasm": { + "version": "0.28.0" + } }, { "name": "volunteer", @@ -74,7 +81,14 @@ "version": "0.34.27" }, "cosmwasm_version": "0.33.0", - "next_version_name": "v1_4" + "next_version_name": "v1_4", + "sdk": { + "type": "cosmos", + "version": "0.45.16" + }, + "cosmwasm": { + "version": "0.33.0" + } }, { "name": "v1_4", @@ -87,11 +101,94 @@ "type": "cometbft", "version": "0.34.29" }, - "ibc_go_version": "v4.5.1", "cosmwasm_version": "v0.33.0", - "next_version_name": "" + "next_version_name": "v1_5", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/xpladev/cosmos-sdk", + "version": "v0.45.20", + "tag": "v0.45.20-xpla" + }, + "cosmwasm": { + "version": "v0.33.0" + }, + "ibc": { + "type": "go", + "version": "v4.5.1" + } + }, + { + "name": "v1_5", + "recommended_version": "v1.5.0", + "compatible_versions": [ + "v1.5.0" + ], + "proposal": 65, + "height": 10085200, + "cosmos_sdk_version": "v0.47.10-xpla", + "consensus": { + "type": "cometbft", + "version": "0.37.5" + }, + "cosmwasm_version": "v0.45.0", + "next_version_name": "v1_6", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/xpladev/cosmos-sdk", + "version": "v0.47.10", + "tag": "v0.47.10-xpla" + }, + "cosmwasm": { + "version": "v0.45.0" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } + }, + { + "name": "v1_6", + "recommended_version": "v1.6.0", + "compatible_versions": [ + "v1.6.0" + ], + "proposal": 66, + "height": 10491710, + "cosmos_sdk_version": "v0.47.13-xpla", + "consensus": { + "type": "cometbft", + "version": "v0.37.5" + }, + "cosmwasm_version": "v0.46.0", + "next_version_name": "", + "sdk": { + "type": "cosmos", + "repo": "https://github.com/xpladev/cosmos-sdk", + "version": "v0.47.13", + "tag": "v0.47.13-xplaa" + }, + "cosmwasm": { + "version": "v0.46.0" + }, + "ibc": { + "type": "go", + "version": "v7.7.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "repo": "https://github.com/xpladev/cosmos-sdk", + "version": "v0.47.13", + "tag": "v0.47.13-xpla" + }, + "ibc": { + "type": "go", + "version": "v7.7.0" + }, + "cosmwasm": { + "version": "v0.46.0" + } }, "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png", @@ -179,7 +276,7 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "https://xpla-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/xpla", "provider": "Lavender.Five Nodes 🐝" }, { @@ -201,7 +298,7 @@ "provider": "πŸ”₯STAVRπŸ”₯" }, { - "address": "https://xpla-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/xpla", "provider": "Lavender.Five Nodes 🐝" }, { diff --git a/zetachain/assetlist.json b/zetachain/assetlist.json index 60e5b868d5..9a4ac8a92a 100644 --- a/zetachain/assetlist.json +++ b/zetachain/assetlist.json @@ -1,5 +1,5 @@ { - "$schema": "../../assetlist.schema.json", + "$schema": "../assetlist.schema.json", "chain_name": "zetachain", "assets": [ { @@ -31,7 +31,8 @@ "primary_color_hex": "#045443" } } - ] + ], + "type_asset": "sdk.coin" } ] } \ No newline at end of file diff --git a/zetachain/chain.json b/zetachain/chain.json index c7859af14b..a329c73724 100644 --- a/zetachain/chain.json +++ b/zetachain/chain.json @@ -1,9 +1,10 @@ { - "$schema": "../../chain.schema.json", + "$schema": "../chain.schema.json", "chain_name": "zetachain", "status": "live", "network_type": "mainnet", "pretty_name": "ZetaChain", + "chain_type": "cosmos", "chain_id": "zetachain_7000-1", "bech32_prefix": "zeta", "daemon_name": "zetacored", @@ -34,18 +35,17 @@ }, "codebase": { "git_repo": "https://github.com/zeta-chain/node", - "recommended_version": "v14.0.0", + "recommended_version": "v20.0.0", "compatible_versions": [ - "v17.0.0" + "v20.0.0" ], "cosmos_sdk_version": "v0.47.10", "consensus": { "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "v7.4.0", "genesis": { - "genesis_url": "https://zetachain.blockpi.network/rpc/v1/public/genesis" + "genesis_url": "https://raw.githubusercontent.com/zeta-chain/network-config/main/mainnet/genesis.json" }, "versions": [ { @@ -59,8 +59,15 @@ "type": "cometbft", "version": "v0.34.28" }, - "ibc_go_version": "v6.1.0", - "next_version_name": "v12" + "next_version_name": "v12", + "sdk": { + "type": "cosmos", + "version": "v0.46.13" + }, + "ibc": { + "type": "go", + "version": "v6.1.0" + } }, { "name": "v12", @@ -73,8 +80,15 @@ "type": "cometbft", "version": "v0.34.28" }, - "ibc_go_version": "v6.1.0", - "next_version_name": "v12.1.0" + "next_version_name": "v12.1.0", + "sdk": { + "type": "cosmos", + "version": "v0.46.13" + }, + "ibc": { + "type": "go", + "version": "v6.1.0" + } }, { "name": "v12.1.0", @@ -87,8 +101,15 @@ "type": "cometbft", "version": "v0.34.28" }, - "ibc_go_version": "v6.1.0", - "next_version_name": "v12.2.0" + "next_version_name": "v12.2.0", + "sdk": { + "type": "cosmos", + "version": "v0.46.13" + }, + "ibc": { + "type": "go", + "version": "v6.1.0" + } }, { "name": "v12.2.0", @@ -101,8 +122,15 @@ "type": "cometbft", "version": "v0.34.28" }, - "ibc_go_version": "v6.1.0", - "next_version_name": "v14.0.0" + "next_version_name": "v14.0.0", + "sdk": { + "type": "cosmos", + "version": "v0.46.13" + }, + "ibc": { + "type": "go", + "version": "v6.1.0" + } }, { "name": "v14.0.1", @@ -117,8 +145,15 @@ "type": "cometbft", "version": "v0.34.28" }, - "ibc_go_version": "v6.1.0", - "next_version_name": "v17" + "next_version_name": "v17", + "sdk": { + "type": "cosmos", + "version": "v0.46.13" + }, + "ibc": { + "type": "go", + "version": "v6.1.0" + } }, { "name": "v17", @@ -128,15 +163,100 @@ "compatible_versions": [ "v17.0.0" ], + "cosmos_sdk_version": "v0.46.13", + "consensus": { + "type": "cometbft", + "version": "v0.34.28" + }, + "next_version_name": "v18", + "sdk": { + "type": "cosmos", + "version": "v0.46.13" + }, + "ibc": { + "type": "go", + "version": "v6.1.0" + } + }, + { + "name": "v18", + "proposal": 24, + "height": 4071400, + "recommended_version": "v18.0.0", + "compatible_versions": [ + "v18.0.0" + ], + "cosmos_sdk_version": "v0.46.13", + "consensus": { + "type": "cometbft", + "version": "v0.34.28" + }, + "next_version_name": "v19", + "sdk": { + "type": "cosmos", + "version": "v0.46.13" + }, + "ibc": { + "type": "go", + "version": "v6.1.0" + } + }, + { + "name": "v19", + "proposal": 33, + "height": 4696150, + "recommended_version": "v19.1.7", + "compatible_versions": [ + "v19.1.1", + "v19.1.7" + ], "cosmos_sdk_version": "v0.47.10", "consensus": { "type": "cometbft", "version": "v0.37.4" }, - "ibc_go_version": "v7.4.0", - "next_version_name": "" + "next_version_name": "v20", + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } + }, + { + "name": "20", + "proposal": 37, + "height": 5089400, + "recommended_version": "v20.0.0", + "compatible_versions": [ + "v20.0.0" + ], + "cosmos_sdk_version": "v0.47.10", + "consensus": { + "type": "cometbft", + "version": "v0.37.4" + }, + "next_version_name": "", + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } } - ] + ], + "sdk": { + "type": "cosmos", + "version": "v0.47.10" + }, + "ibc": { + "type": "go", + "version": "v7.4.0" + } }, "peers": { "seeds": [ @@ -170,7 +290,7 @@ "provider": "All That Node" }, { - "address": "https://zetachain-rpc.lavenderfive.com:443", + "address": "https://rpc.lavenderfive.com:443/zetachain", "provider": "Lavender.Five Nodes 🐝" }, { @@ -184,6 +304,10 @@ { "address": "https://zetachain.rpc.nodeshub.online:443", "provider": "Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…" + }, + { + "address": "https://zeta-chain.drpc.org", + "provider": "dRPC" } ], "rest": [ @@ -196,7 +320,7 @@ "provider": "All That Node" }, { - "address": "https://zetachain-api.lavenderfive.com:443", + "address": "https://rest.lavenderfive.com:443/zetachain", "provider": "Lavender.Five Nodes 🐝" }, { @@ -214,7 +338,7 @@ ], "grpc": [ { - "address": "https://zetachain-grpc.lavenderfive.com:443", + "address": "zetachain.lavenderfive.com:443", "provider": "Lavender.Five Nodes 🐝" }, {