diff --git a/.github/workflows/cron-job.yml b/.github/workflows/cron-job.yml index 6c9f63d21..fc332a1f3 100644 --- a/.github/workflows/cron-job.yml +++ b/.github/workflows/cron-job.yml @@ -25,6 +25,8 @@ jobs: continue-on-error: true run: | yarn ts-node src/schedule.ts + env: + PRICE_URL: ${{ secrets.PRICE_URL }} - name: Slack Alert Notification uses: slackapi/slack-github-action@v1.23.0 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d21456a75..84a63e8da 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,7 +13,7 @@ jobs: - name: Setup node uses: actions/setup-node@v3 with: - node-version: '18' + node-version: "18" registry-url: "https://registry.npmjs.org" - run: npm install --global yarn - name: Get yarn cache directory path @@ -51,8 +51,8 @@ jobs: AWS_REGION: us-west-2 AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - - run: yarn ts-node src/cms.ts - env: - WEBFLOW_TOKEN: ${{ secrets.WEBFLOW_TOKEN }} - WEBFLOW_COLLECTION_ID: ${{ secrets.WEBFLOW_COLLECTION_ID }} - + # Disable temporarily + # - run: yarn ts-node src/cms.ts + # env: + # WEBFLOW_TOKEN: ${{ secrets.WEBFLOW_TOKEN }} + # WEBFLOW_COLLECTION_ID: ${{ secrets.WEBFLOW_COLLECTION_ID }} diff --git a/.github/workflows/pull-request-validation.yml b/.github/workflows/pull-request-validation.yml index 9c0093f4b..326aadc8b 100644 --- a/.github/workflows/pull-request-validation.yml +++ b/.github/workflows/pull-request-validation.yml @@ -29,6 +29,7 @@ jobs: with: files: | cosmos/** + evm/** - name: Validate changed files run: | diff --git a/.prettierrc.js b/.prettierrc.js index 5b96425d9..5160c62a6 100644 --- a/.prettierrc.js +++ b/.prettierrc.js @@ -1,4 +1,5 @@ module.exports = { trailingComma: "all", tabWidth: 2, + endOfLine: "auto", }; diff --git a/README.md b/README.md index 8de691642..7682ea0c8 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,18 @@ > **Warning** -> +> > PLEASE RUN THE COMMANDS BELOW TO VERIFY CONFIGURATION IN YOUR LOCAL ENVIRONMENT BEFORE SUBMITTING PULL REQUESTS. +> > ```shell > # install node modules > yarn install -> -> # validate your json file (ex. yarn validate cosmos/osmosis.json) +> +> # validate your json file (for Cosmos-SDK-based chains or EVM chains) > yarn validate cosmos/{your file.json} +> yarn validate evm/{your file.json} > ``` -> +> > READ THE GUIDELINES BELLOW CAREFULLY, PAYING PARTICULAR ATTENTION TO THE "features" IN THE [[REQUIREMENT DETAILS](https://github.com/chainapsis/keplr-chain-registry#requirement-details)]. - # Guidelines for Community-Driven Non-Native Chain Integration Keplr team has always been at the leading edge of building secure and interoperable wallet infrastructure for the blooming cross-chain networks, placing its core mainly at the Cosmos ecosystem. @@ -24,7 +25,7 @@ To make a pull request, please carefully read and follow the guidelines below. A # Requirements and Preparation -This section outlines the basic information that is required for registering a chain to Keplr wallet. Please note that your request does not always guarantee integrations and updates; upon your submission, Keplr team will go through a minimal verification process to see if there is any security issue or any missing information. +This section outlines the basic information that is required for registering a chain to Keplr wallet. Please note that your request does not always guarantee integrations and updates; upon your submission, Keplr team will go through a minimal verification process to see if there is any security issue or any missing information. Once approved, the Keplr browser extension will show the tag “Community-Driven” on the chain connection page, to let the users be aware that the integration was requested and implemented by the community and the Keplr team has gone through the verification process. @@ -32,7 +33,7 @@ Once approved, the Keplr browser extension will show the tag “Community-Driven
-## Chain Registration Directory Structure +## Cosmos-SDK-based Chain Registration Directory Structure chainID is consisted of ({identifier}-{version}). **`chain-identifier`** therefore refers to a text identifier of a chain that comes before its version number. For example: @@ -58,7 +59,7 @@ Here’s an overview of the structure of the directory. Please provide the infor └── ... ``` -## Chain Registration Form +### Cosmos-SDK-based Chain Registration Form ```json { @@ -70,7 +71,7 @@ Here’s an overview of the structure of the directory. Please provide the infor "nodeProvider": { "name": "Blockapsis", "email": "infra@blockapsis.com", - "website":"https://blockapsis.com/" + "website": "https://blockapsis.com/" }, "bip44": { "coinType": 118 @@ -110,14 +111,11 @@ Here’s an overview of the structure of the directory. Please provide the infor "coinDecimals": 6, "coinGeckoId": "osmosis" }, - "features": [ - "cosmwasm", - "osmosis-txfees" - ] + "features": ["cosmwasm", "osmosis-txfees"] } ``` -## Requirement Details +### Cosmos-SDK-based Chain Registration Form Requirement Details - chainId: chainId in a form of {identifier}-{version} (ex. cosmoshub-4) - chainName: the name of the chain that will be displayed on the wallet @@ -127,31 +125,127 @@ Here’s an overview of the structure of the directory. Please provide the infor - rpc: URL of RPC endpoint of the chain - rest: URL of REST/API endpoint of the chain - nodeProvider: provide the details of the RPC/REST node providers - - name: name of the node provider - - email: email address of the node provider (To help other users reach out when there is an issue with the nodes’ status) - - website(optional): website address of the node provider + - name: name of the node provider + - email: email address of the node provider (To help other users reach out when there is an issue with the nodes’ status) + - website(optional): website address of the node provider - walletUrlForStaking(optional): the URL where the users are directed when they click on Staking button of the Keplr Wallet - bip44: BIP-44 coin type (118 highly recommended) - bech32Config: prefix used at the beginning of the address -- currencies: the list of the supported currencies +- currencies: the list of the supported currencies. If your chain uses replicated security, please place your main native token at the top of the currencies list. - feeCurrencies: the list of the tokens that are accepted by the validators for fees -- stakeCurrency: the staking token of the chain +- stakeCurrency: the staking token of the chain. Remove this item if your chain does not support native staking (e.g. your chain uses replicated security) or does not have a staking token. +- coinGeckoId(optional): the active API ID for Keplr to get the price from CoinGecko +- features: any other features that are additionally supported by the chain + - cosmwasm: supports CosmWasm smart contracts + - secretwasm: supports WASM smart contracts of Secret Network + - eth-address-gen: supports EVM account generation + - eth-key-sign: supports EVM signatures + - axelar-evm-bridge: supports EVM bridge provided by Axelar Network + - osmosis-txfees: supports paying fees in other currencies on Osmosis + +## EVM-based Chain Registration Directory Structure + +EVM-based chain identifier is consisted of eip155:{eip155-chain-id} which follows [CAIP-2](https://github.com/ChainAgnostic/CAIPs/blob/main/CAIPs/caip-2.md) + +``` + The chain identifier of `Ethereum` is `eip155:1`. + The chain identifier of `Optimism` is `eip155:10`. + The chain identifier of `Polygon` is `eip155:137`. +``` + +Here’s an overview of the structure of the directory. Please provide the information and files complying with the requirements. + +``` +. +├── evm +│ ├── eip155:1.json # Chains (Each file should be named `{chain-identifier}.json') +│ ├── eip155:10.json +│ └── ... +└── images # Collection of image assets + ├── eip155:1 # Image assets of Ethereum (Each directory should be named `{chain-identifier}`.) + │ ├── erc20 + │ │ └── {contract address}.png # Ethereum ERC20 token logo(png, 256x256px) + │ ├── chain.png # Ethereum logo(png, 256x256px) + │ └── ethereum-native.png # Etherem native token logo(png, 256x256px) + ├── eip155.10 + └── ... +``` + +### EVM-based Chain Registration Form + +```json +{ + "rpc": "https://evm-1.keplr.app", + "websocket": "wss://evm-1.keplr.app/websocket", + "nodeProvider": { + "name": "Keplr", + "email": "contact@keplr.app", + "website": "https://keplr.app" + }, + "chainId": "eip155:1", + "chainName": "Ethereum", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:1/chain.png", + "bip44": { + "coinType": 60 + }, + "currencies": [ + { + "coinDenom": "ETH", + "coinMinimalDenom": "ethereum-native", + "coinDecimals": 18, + "coinGeckoId": "ethereum", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:1/ethereum-native.png" + }, + { + "coinDenom": "USDC", + "coinMinimalDenom": "erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "coinDecimals": 6, + "coinGeckoId": "usd-coin", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:1/erc20/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "ETH", + "coinMinimalDenom": "ethereum-native", + "coinDecimals": 18, + "coinGeckoId": "ethereum", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:1/ethereum-native.png" + } + ], + "features": [] +} +``` + +### EVM-based Chain Registration Form Requirement Details + +- rpc: URL of RPC endpoint of the chain +- websocket: URL of WebSocket endpoint of the chain +- nodeProvider: provide the details of the RPC/WebSocket node providers + - name: name of the node provider + - email: email address of the node provider (To help other users reach out when there is an issue with the nodes’ status) + - website(optional): website address of the node provider +- chainId: chain identifier in a form of eip155:{evm-chain-id} (ex. eip155:1) +- chainName: the name of the chain that will be displayed on the wallet +- chainSymbolImageUrl: Image URL of the chain. + - https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/{chain-identifier}/{file-name}.png + - Please modify the chain-identifier and file-name from the link above and upload it. +- bip44: BIP-44 coin type (60 highly recommended) +- currencies: the list of the supported currencies. If your chain uses replicated security, please place your main native token at the top of the currencies list. +- feeCurrencies: the list of the tokens that are accepted for fees +- coinGeckoId(optional): the active API ID for Keplr to get the price from CoinGecko - features: any other features that are additionally supported by the chain - - cosmwasm: supports CosmWasm smart contracts - - secretwasm: supports WASM smart contracts of Secret Network - - eth-address-gen: supports EVM account generation - - eth-key-sign: supports EVM signatures - - axelar-evm-bridge: supports EVM bridge provided by Axelar Network - - osmosis-txfees: supports paying fees in other currencies on Osmosis + - op-stack-l1-data-fee: supports paying L1 data fee for OP stack based chain ## NOTE: - please check if the chain information file is in JSON format. - Chain logos should be in PNG format in 256x256px resolution. Please also note that the images will be automatically cropped into a circle to be displayed on the wallet (See the sample image above) -- RPC - - Please check if the RPC node is not currently experiencing any issues/errors. - - Please double-check if your chainId matches the RPC node’s chainId. - - Check if websocket connection is open. +- RPC / WebSocket + - Please check if the RPC node is not currently experiencing any issues/errors. + - Please double-check if your chainId matches the RPC node’s chainId. + - Check if websocket connection is open. - REST - - Please check if the REST node is not currently experiencing any issues/errors. - - Please double-check if your chainId matches the REST node’s chainId. + - Please check if the REST node is not currently experiencing any issues/errors. + - Please double-check if your chainId matches the REST node’s chainId. +- Please provide the CoinGecko ID only if the price for the token is available on CoinGecko. diff --git a/cosmos/90u.json b/cosmos/90u.json index d3d36cac0..308fdcd93 100644 --- a/cosmos/90u.json +++ b/cosmos/90u.json @@ -6,7 +6,7 @@ "email": "terp.network@skiff.com", "website":"https://itrocket.net/" }, - "chainId": "90u-2", + "chainId": "90u-4", "chainName": "Terp Testnet", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/90u/chain.png", "stakeCurrency": { diff --git a/cosmos/HICKORY.json b/cosmos/HICKORY.json new file mode 100644 index 000000000..730194f25 --- /dev/null +++ b/cosmos/HICKORY.json @@ -0,0 +1,50 @@ +{ + "chainId": "HICKORY", + "chainName": "HICKORY-TEST", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/HICKORY/logo_hic.png", + "rpc": "http://test.hickoryblockchain.com:26657/", + "rest": "http://test.hickoryblockchain.com:1317/", + "nodeProvider": { + "name": "Hickory Blockchain Development", + "email": "mail@hickoryblockchain.com", + "website":"https://www.hickoryblockchain.com/" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "hic", + "bech32PrefixAccPub": "hicpub", + "bech32PrefixValAddr": "hicvaloper", + "bech32PrefixValPub": "hicvaloperpub", + "bech32PrefixConsAddr": "hicvalcons", + "bech32PrefixConsPub": "hicvalconspub" + }, + "currencies": [ + { + "coinDenom": "HIC", + "coinMinimalDenom": "uhic", + "coinDecimals": 6 + } + ], + "feeCurrencies": [ + { + "coinDenom": "HIC", + "coinMinimalDenom": "uhic", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.01, + "average": 0.025, + "high": 0.03 + } + } + ], + "stakeCurrency": { + "coinDenom": "HIC", + "coinMinimalDenom": "uhic", + "coinDecimals": 6 + }, + "features": [ + "cosmwasm" + ] +} \ No newline at end of file diff --git a/cosmos/LumenX.json b/cosmos/LumenX.json index 9b8e39e49..0060c4751 100644 --- a/cosmos/LumenX.json +++ b/cosmos/LumenX.json @@ -2,12 +2,12 @@ "chainId": "LumenX", "chainName": "LumenX", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/LumenX/chain.png", - "rpc": "https://lumenx-rpc.kynraze.com", - "rest": "https://lumenx-api.kynraze.com", + "rpc": "https://rpc-lumenx.cryptonet.pl", + "rest": "https://api-lumenx.cryptonet.pl", "nodeProvider": { - "name": "Kynraze", - "email": "support@kynraze.com", - "website": "https://kynraze.com" + "name": "CryptoNet", + "email": "contact@cryptonet.pl", + "website": "https://cryptonet.pl" }, "walletUrlForStaking": "https://explorer.kynraze.com/lumenx/staking", "bip44": { diff --git a/cosmos/aggevm.json b/cosmos/aggevm.json deleted file mode 100644 index b1121062b..000000000 --- a/cosmos/aggevm.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "rpc": "https://aggevm-rpc.web3-idea.xyz", - "rest": "https://aggevm-api.web3-idea.xyz", - "nodeProvider": { - "name": "Web3 Idea", - "email": "zhangzhishun1024@gmail.com", - "website":"https://web3idea.xyz" - }, - "chainId": "aggevm", - "chainName": "Agg", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/aggevm/chain.png", - "stakeCurrency": { - "coinDenom": "AGG", - "coinMinimalDenom": "uagg", - "coinDecimals": 6, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/aggevm/uagg.png" - }, - "bip44": { - "coinType": 118 - }, - "bech32Config": { - "bech32PrefixAccAddr": "agg", - "bech32PrefixAccPub": "aggpub", - "bech32PrefixValAddr": "aggvaloper", - "bech32PrefixValPub": "aggvaloperpub", - "bech32PrefixConsAddr": "aggvalcons", - "bech32PrefixConsPub": "aggvalconspub" - }, - "currencies": [ - { - "coinDenom": "AGG", - "coinMinimalDenom": "uagg", - "coinDecimals": 6, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/aggevm/uagg.png" - } - ], - "feeCurrencies": [ - { - "coinDenom": "AGG", - "coinMinimalDenom": "uagg", - "coinDecimals": 6, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/aggevm/uagg.png", - "gasPriceStep": { - "low": 0.015, - "average": 0.025, - "high": 0.04 - } - } - ], - "features": [] -} \ No newline at end of file diff --git a/cosmos/aioz_168.json b/cosmos/aioz_168.json index 283ebc6fe..4179d1ecb 100644 --- a/cosmos/aioz_168.json +++ b/cosmos/aioz_168.json @@ -41,9 +41,9 @@ "coinDecimals": 18, "coinGeckoId": "aioz-network", "gasPriceStep": { - "low": 1000000000, - "average": 1000000000, - "high": 1500000000 + "low": 7000000000, + "average": 7000000000, + "high": 10000000000 } } ], diff --git a/cosmos/alfama.json b/cosmos/alfama.json new file mode 100644 index 000000000..1f7e84c90 --- /dev/null +++ b/cosmos/alfama.json @@ -0,0 +1,51 @@ +{ + "bech32Config": { + "bech32PrefixAccAddr": "warden", + "bech32PrefixAccPub": "wardenpub", + "bech32PrefixConsAddr": "wardenvalcons", + "bech32PrefixConsPub": "wardenvalconspub", + "bech32PrefixValAddr": "wardenvaloper", + "bech32PrefixValPub": "wardenvaloperpub" + }, + "bip44": { + "coinType": 118 + }, + "chainId": "alfama", + "chainName": "Warden Protocol Alfama Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/alfama/chain.png", + "currencies": [ + { + "coinDecimals": 6, + "coinDenom": "WARD", + "coinMinimalDenom": "uward", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/alfama/uward.png" + } + ], + "features": [], + "feeCurrencies": [ + { + "coinDecimals": 6, + "coinDenom": "WARD", + "coinMinimalDenom": "uward", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/alfama/uward.png", + "gasPriceStep": { + "average": 0.025, + "high": 0.03, + "low": 0.005 + } + } + ], + "rest": "https://rest.alfama.wardenprotocol.org", + "rpc": "https://rpc.alfama.wardenprotocol.org", + "nodeProvider": { + "name": "Warden Protocol", + "email": "tech@wardenprotocol.org", + "website":"https://wardenprotocol.org/" + }, + "stakeCurrency": { + "coinDecimals": 6, + "coinDenom": "WARD", + "coinMinimalDenom": "uward", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/alfama/uward.png" + } +} diff --git a/cosmos/arkh.json b/cosmos/arkh.json deleted file mode 100644 index fe6b4855d..000000000 --- a/cosmos/arkh.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "chainId": "arkh", - "chainName": "Arkhadian", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/arkh/chain.png", - "rpc": "https://rpc.arkh.nodestake.top", - "rest": "https://api.arkh.nodestake.top", - "nodeProvider": { - "name": "NodeStake", - "email": "info@nodestake.top", - "website": "https://nodestake.top" - }, - "walletUrl": "https://wallet.arkhadian.com", - "walletUrlForStaking": "https://explorer.nodestake.top/arkh", - "bip44": { - "coinType": 118 - }, - "bech32Config": { - "bech32PrefixAccAddr": "arkh", - "bech32PrefixAccPub": "arkhpub", - "bech32PrefixValAddr": "arkhvaloper", - "bech32PrefixValPub": "arkhvaloperpub", - "bech32PrefixConsAddr": "arkhvalcons", - "bech32PrefixConsPub": "arkhvalconspub" - }, - "currencies": [ - { - "coinDenom": "ARKH", - "coinMinimalDenom": "arkh", - "coinDecimals": 6 - }, - { - "coinDenom": "STAKE", - "coinMinimalDenom": "stake", - "coinDecimals": 6 - } - ], - "feeCurrencies": [ - { - "coinDenom": "ARKH", - "coinMinimalDenom": "arkh", - "coinDecimals": 6, - "gasPriceStep": { - "low": 0.01, - "average": 0.025, - "high": 0.03 - } - } - ], - "stakeCurrency": { - "coinDenom": "ARKH", - "coinMinimalDenom": "arkh", - "coinDecimals": 6 - }, - "features": [] -} diff --git a/cosmos/atlantic.json b/cosmos/atlantic.json index 9dd2c1d2c..580adfd7d 100644 --- a/cosmos/atlantic.json +++ b/cosmos/atlantic.json @@ -33,9 +33,9 @@ "coinMinimalDenom": "usei", "coinDecimals": 6, "gasPriceStep": { - "low": 0.1, - "average": 0.2, - "high": 0.3 + "low": 0.08, + "average": 0.1, + "high": 0.12 } } ] diff --git a/cosmos/xstaxy.json b/cosmos/aura_6322.json similarity index 85% rename from cosmos/xstaxy.json rename to cosmos/aura_6322.json index 36dc0d6e8..d08e301e1 100644 --- a/cosmos/xstaxy.json +++ b/cosmos/aura_6322.json @@ -1,7 +1,7 @@ { - "chainId": "xstaxy-1", + "chainId": "aura_6322-2", "chainName": "Aura Network", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/xstaxy/chain.png", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/aura_6322/chain.png", "rpc": "https://rpc.aura.network", "rest": "https://lcd.aura.network", "nodeProvider": { @@ -26,7 +26,7 @@ "coinMinimalDenom": "uaura", "coinDecimals": 6, "coinGeckoId": "aura-network", - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/xstaxy/uaura.png" + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/aura_6322/uaura.png" } ], "feeCurrencies": [ @@ -40,7 +40,7 @@ "average": 0.0025, "high": 0.004 }, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/xstaxy/uaura.png" + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/aura_6322/uaura.png" } ], @@ -49,7 +49,7 @@ "coinMinimalDenom": "uaura", "coinDecimals": 6, "coinGeckoId": "aura-network", - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/xstaxy/uaura.png" + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/aura_6322/uaura.png" }, "features": [ diff --git a/cosmos/axelar-dojo.json b/cosmos/axelar-dojo.json index 171d41583..3d81d3fe0 100644 --- a/cosmos/axelar-dojo.json +++ b/cosmos/axelar-dojo.json @@ -214,6 +214,12 @@ "coinDecimals": 18, "coinGeckoId": "arbitrum", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/axelar-dojo/arb-wei.png" + }, + { + "coinDenom": "YUM.axl", + "coinMinimalDenom": "yum-wei", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/axelar-dojo/yum-wei.png" } ], "feeCurrencies": [ diff --git a/cosmos/axelar-testnet-lisbon.json b/cosmos/axelar-testnet-lisbon.json index 51f9f22dd..3198060dc 100644 --- a/cosmos/axelar-testnet-lisbon.json +++ b/cosmos/axelar-testnet-lisbon.json @@ -3,12 +3,12 @@ "rest": "https://lcd-axelar-testnet.imperator.co", "chainId": "axelar-testnet-lisbon-3", "chainName": "Axelar Testnet", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/axelar-dojo/chain.png", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/axelar-testnet-lisbon/chain.png", "stakeCurrency": { "coinDenom": "AXL", "coinMinimalDenom": "uaxl", "coinDecimals": 6, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/axelar-dojo/uaxl.png" + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/axelar-testnet-lisbon/uaxl.png" }, "bip44": { "coinType": 118 @@ -26,7 +26,7 @@ "coinDenom": "AXL", "coinMinimalDenom": "uaxl", "coinDecimals": 6, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/axelar-dojo/uaxl.png" + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/axelar-testnet-lisbon/uaxl.png" }, { "coinDenom": "ETH", @@ -37,7 +37,7 @@ "coinDenom": "USDC", "coinMinimalDenom": "uusdc", "coinDecimals": 6, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/axelar-dojo/uusdc.png" + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/axelar-testnet-lisbon/uusdc.png" }, { "coinDenom": "FRAX", @@ -125,7 +125,7 @@ "coinDenom": "AXL", "coinMinimalDenom": "uaxl", "coinDecimals": 6, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/axelar-dojo/uaxl.png", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/axelar-testnet-lisbon/uaxl.png", "gasPriceStep": { "low": 0.007, "average": 0.007, diff --git a/cosmos/banksy-testnet.json b/cosmos/banksy-testnet.json index b630cec3f..c96cfe8a7 100644 --- a/cosmos/banksy-testnet.json +++ b/cosmos/banksy-testnet.json @@ -4,35 +4,33 @@ "nodeProvider": { "name": "Composable", "email": "jafar@composable.finance", - "website": "https://www.composable.finance/" + "website": "https://www.picasso.network/" }, "chainId": "banksy-testnet-5", - "chainName": "Banksy", + "chainName": "Picasso Testnet", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/banksy-testnet/chain.png", "stakeCurrency": { "coinDenom": "PICA", "coinMinimalDenom": "ppica", "coinDecimals": 12, - "coinGeckoId": "picasso", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/banksy-testnet/ppica.png" }, "bip44": { "coinType": 118 }, "bech32Config": { - "bech32PrefixAccAddr": "centauri", - "bech32PrefixAccPub": "centauripub", - "bech32PrefixValAddr": "centaurivaloper", - "bech32PrefixValPub": "centaurivaloperpub", - "bech32PrefixConsAddr": "centaurivalcons", - "bech32PrefixConsPub": "centaurivalconspub" + "bech32PrefixAccAddr": "pica", + "bech32PrefixAccPub": "picapub", + "bech32PrefixValAddr": "picavaloper", + "bech32PrefixValPub": "picavaloperpub", + "bech32PrefixConsAddr": "picavalcons", + "bech32PrefixConsPub": "picavalconspub" }, "currencies": [ { "coinDenom": "PICA", "coinMinimalDenom": "ppica", "coinDecimals": 12, - "coinGeckoId": "picasso", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/banksy-testnet/ppica.png" } ], @@ -41,7 +39,6 @@ "coinDenom": "PICA", "coinMinimalDenom": "ppica", "coinDecimals": 12, - "coinGeckoId": "picasso", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/banksy-testnet/ppica.png", "gasPriceStep": { "low": 0, diff --git a/cosmos/beezee.json b/cosmos/beezee.json index 6cc9394ba..69ac4cf7d 100644 --- a/cosmos/beezee.json +++ b/cosmos/beezee.json @@ -27,13 +27,28 @@ "bech32PrefixConsAddr": "bzevalcons", "bech32PrefixConsPub": "bzevalconspub" }, - "currencies": [{ + "currencies": [ + { "coinDenom": "BZE", "coinMinimalDenom": "ubze", "coinDecimals": 6, "coinGeckoId": "bzedge", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/beezee/chain.png" - }], + }, + { + "coinDenom": "VDL", + "coinMinimalDenom": "factory/bze13gzq40che93tgfm9kzmkpjamah5nj0j73pyhqk/uvdl", + "coinDecimals": 6, + "coinGeckoId": "vidulum", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/beezee/factory/bze13gzq40che93tgfm9kzmkpjamah5nj0j73pyhqk/uvdl.png" + }, + { + "coinDenom": "C2M", + "coinMinimalDenom": "factory/bze15pqjgk4la0mfphwddce00d05n3th3u66n3ptcv/2MARS", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/beezee/factory/bze15pqjgk4la0mfphwddce00d05n3th3u66n3ptcv/c2m.png" + } + ], "feeCurrencies": [{ "coinDenom": "BZE", "coinMinimalDenom": "ubze", diff --git a/cosmos/birdee.json b/cosmos/birdee.json new file mode 100644 index 000000000..23c557578 --- /dev/null +++ b/cosmos/birdee.json @@ -0,0 +1,52 @@ +{ + "rpc": "https://rpc.birdee-1.tucana.zone", + "rest": "https://lcd.birdee-1.tucana.zone", + "chainId": "birdee-1", + "chainName": "Tucana Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/birdee/chain.png", + "walletUrlForStaking": "https://testnet.keplr.app/chains/tucana", + "nodeProvider": { + "name": "Tucana", + "email": "infra@tucana.zone", + "website":"https://tucana.zone" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "init", + "bech32PrefixAccPub": "initpub", + "bech32PrefixValAddr": "initvaloper", + "bech32PrefixValPub": "initvaloperpub", + "bech32PrefixConsAddr": "initvalcons", + "bech32PrefixConsPub": "initvalconspub" + }, + "stakeCurrency": { + "coinDecimals": 6, + "coinDenom": "TUC", + "coinMinimalDenom": "utuc", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/birdee/chain.png" + }, + "currencies": [ + { + "coinDecimals": 6, + "coinDenom": "TUC", + "coinMinimalDenom": "utuc", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/birdee/chain.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "TUC", + "coinMinimalDenom": "utuc", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/birdee/chain.png", + "gasPriceStep": { + "low": 0.15, + "average": 0.3, + "high": 1 + } + } + ], + "features": [] +} diff --git a/cosmos/bitsong-2b.json b/cosmos/bitsong-2b.json index 74f00b2fa..01ccffa2a 100644 --- a/cosmos/bitsong-2b.json +++ b/cosmos/bitsong-2b.json @@ -20,6 +20,11 @@ "bip44": { "coinType": 639 }, + "alternativeBIP44s": [ + { + "coinType": 118 + } + ], "bech32Config": { "bech32PrefixAccAddr": "bitsong", "bech32PrefixAccPub": "bitsongpub", diff --git a/cosmos/blockspacerace.json b/cosmos/blockspacerace.json deleted file mode 100644 index ac653c1fb..000000000 --- a/cosmos/blockspacerace.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "rpc": "https://rpc-blockspacerace.pops.one", - "rest": "https://api-blockspacerace.pops.one", - "chainId": "blockspacerace-0", - "chainName": "Celestia Testnet", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg", - "bip44": { - "coinType": 118 - }, - "bech32Config": { - "bech32PrefixAccAddr": "celestia", - "bech32PrefixAccPub": "celestiapub", - "bech32PrefixConsAddr": "celestiavalcons", - "bech32PrefixConsPub": "celestiavalconspub", - "bech32PrefixValAddr": "celestiavaloper", - "bech32PrefixValPub": "celestiavaloperpub" - }, - "stakeCurrency": { - "coinDenom": "TIA", - "coinMinimalDenom": "utia", - "coinDecimals": 6 - }, - "currencies": [ - { - "coinDenom": "TIA", - "coinMinimalDenom": "utia", - "coinDecimals": 6 - } - ], - "feeCurrencies": [ - { - "coinDenom": "TIA", - "coinMinimalDenom": "utia", - "coinDecimals": 6, - "gasPriceStep": { - "low": 0.01, - "average": 0.025, - "high": 0.04 - } - } - ], - "features": [] -} diff --git a/cosmos/bluzelle-testnet.json b/cosmos/bluzelle-testnet.json index bd1790dab..45749d9f1 100644 --- a/cosmos/bluzelle-testnet.json +++ b/cosmos/bluzelle-testnet.json @@ -5,8 +5,8 @@ "name": "Bluzelle", "email": "support@bluzelle.com", "website":"https://bluzelle.com/" - }, - "chainId": "bluzelle-testnet-9", + }, + "chainId": "bluzelle-testnet-10", "chainName": "Bluzelle Testnet", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/bluzelle-testnet/chain.png", "stakeCurrency": { diff --git a/cosmos/buenavista.json b/cosmos/buenavista.json new file mode 100644 index 000000000..495ea5d15 --- /dev/null +++ b/cosmos/buenavista.json @@ -0,0 +1,51 @@ +{ + "bech32Config": { + "bech32PrefixAccAddr": "warden", + "bech32PrefixAccPub": "wardenpub", + "bech32PrefixConsAddr": "wardenvalcons", + "bech32PrefixConsPub": "wardenvalconspub", + "bech32PrefixValAddr": "wardenvaloper", + "bech32PrefixValPub": "wardenvaloperpub" + }, + "bip44": { + "coinType": 118 + }, + "chainId": "buenavista-1", + "chainName": "Warden Protocol Buenavista", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/buenavista/chain.png", + "currencies": [ + { + "coinDecimals": 6, + "coinDenom": "WARD", + "coinMinimalDenom": "uward", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/buenavista/uward.png" + } + ], + "features": [], + "feeCurrencies": [ + { + "coinDecimals": 6, + "coinDenom": "WARD", + "coinMinimalDenom": "uward", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/buenavista/uward.png", + "gasPriceStep": { + "average": 0.025, + "high": 0.03, + "low": 0.005 + } + } + ], + "rest": "https://api.buenavista.wardenprotocol.org", + "rpc": "https://rpc.buenavista.wardenprotocol.org", + "nodeProvider": { + "name": "Warden Protocol", + "email": "tech@wardenprotocol.org", + "website": "https://wardenprotocol.org/" + }, + "stakeCurrency": { + "coinDecimals": 6, + "coinDenom": "WARD", + "coinMinimalDenom": "uward", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/buenavista/uward.png" + } +} diff --git a/cosmos/bzetestnet.json b/cosmos/bzetestnet.json new file mode 100644 index 000000000..7b0bca57b --- /dev/null +++ b/cosmos/bzetestnet.json @@ -0,0 +1,60 @@ +{ + "chainId": "bzetestnet-2", + "chainName": "BeeZee Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/bzetestnet/chain.png", + "rpc": "https://testnet-rpc.getbze.com", + "rest": "https://testnet.getbze.com", + "nodeProvider": { + "name": "BZE Alpha Team", + "email": "alphateam@getbze.com", + "website":"https://getbze.com" + }, + "stakeCurrency": { + "coinDenom": "TBZE", + "coinMinimalDenom": "utbz", + "coinDecimals": 6, + "coinGeckoId": "bzedge", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/bzetestnet/chain.png" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "testbz", + "bech32PrefixAccPub": "testbzpub", + "bech32PrefixValAddr": "testbzvaloper", + "bech32PrefixValPub": "testbzvaloperpub", + "bech32PrefixConsAddr": "testbzvalcons", + "bech32PrefixConsPub": "testbzvalconspub" + }, + "currencies": [ + { + "coinDenom": "TBZE", + "coinMinimalDenom": "utbz", + "coinDecimals": 6, + "coinGeckoId": "bzedge", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/bzetestnet/chain.png" + }, + { + "coinDenom": "TVDL", + "coinMinimalDenom": "factory/testbz1z3mkcr2jz424w6m49frgjmy9uhlrx69p4cvrgf/vidulum", + "coinDecimals": 6, + "coinGeckoId": "vidulum", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/bzetestnet/factory/testbz1z3mkcr2jz424w6m49frgjmy9uhlrx69p4cvrgf/vidulum.png" + } + ], + "feeCurrencies": [{ + "coinDenom": "TBZE", + "coinMinimalDenom": "utbz", + "coinDecimals": 6, + "coinGeckoId": "bzedge", + "gasPriceStep": { + "low": 0.001, + "average": 0.01, + "high": 0.1 + }, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/bzetestnet/chain.png" + }], + "features": [ + ] +} diff --git a/cosmos/canto_7700.json b/cosmos/canto_7700.json index feb80045b..463c1ffe4 100644 --- a/cosmos/canto_7700.json +++ b/cosmos/canto_7700.json @@ -1,6 +1,6 @@ { - "rpc": "https://rpc.canto.nodestake.top/", - "rest": "https://mainnode.plexnode.org:1317", + "rpc": "http://canto.plexnode.dev:16657", + "rest": "https://canto-rest.plexnode.wtf", "chainId": "canto_7700-1", "chainName": "Canto", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/canto_7700/chain.png", diff --git a/cosmos/carbon.json b/cosmos/carbon.json index 42ee3ea0b..dc830074e 100644 --- a/cosmos/carbon.json +++ b/cosmos/carbon.json @@ -229,9 +229,9 @@ "coinDecimals": 6, "coinGeckoId": "kujira", "gasPriceStep": { - "low": 0.005, + "low": 0.005, "average": 0.005, - "high": 0.005 + "high": 0.005 } }, { diff --git a/cosmos/centauri.json b/cosmos/centauri.json index e0a44a843..8ab95c224 100644 --- a/cosmos/centauri.json +++ b/cosmos/centauri.json @@ -1,13 +1,13 @@ { - "rpc": "https://rpc-composable-ia.cosmosia.notional.ventures", - "rest": "https://api-composable-ia.cosmosia.notional.ventures", + "rpc": "https://composable-rpc.lavenderfive.com:443", + "rest": "https://composable-api.lavenderfive.com:443", "nodeProvider": { - "name": "Notional", - "email": "contact@notional.ventures", - "website": "https://notional.ventures/" + "name": "Lavender.Five Nodes", + "email": "hello@lavenderfive.com", + "website": "https://lavenderfive.com/" }, "chainId": "centauri-1", - "chainName": "Composable", + "chainName": "Picasso", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/chain.png", "stakeCurrency": { "coinDenom": "PICA", @@ -20,12 +20,12 @@ "coinType": 118 }, "bech32Config": { - "bech32PrefixAccAddr": "centauri", - "bech32PrefixAccPub": "centauripub", - "bech32PrefixValAddr": "centaurivaloper", - "bech32PrefixValPub": "centaurivaloperpub", - "bech32PrefixConsAddr": "centaurivalcons", - "bech32PrefixConsPub": "centaurivalconspub" + "bech32PrefixAccAddr": "pica", + "bech32PrefixAccPub": "picapub", + "bech32PrefixValAddr": "picavaloper", + "bech32PrefixValPub": "picavaloperpub", + "bech32PrefixConsAddr": "picavalcons", + "bech32PrefixConsPub": "picavalconspub" }, "currencies": [ { @@ -48,6 +48,153 @@ "coinDecimals": 10, "coinGeckoId": "polkadot", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/dot.png" + }, + { + "coinDenom": "ETH", + "coinMinimalDenom": "ibc/F9D075D4079FC56A9C49B601E54A45292C319D8B0E8CC0F8439041130AA7166C", + "coinDecimals": 18, + "coinGeckoId": "ethereum", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/eth.png" + }, + { + "coinDenom": "DAI", + "coinMinimalDenom": "ibc/A342F6F8D1CDE1D934C50E8EAFF91E813D971E1BFEED7E557F1674E01004A533", + "coinDecimals": 18, + "coinGeckoId": "dai", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/dai.png" + }, + { + "coinDenom": "FXS", + "coinMinimalDenom": "ibc/5F9BE030FC355733EC79307409FA98398BBFC747C9430B326C144A74F6808B29", + "coinDecimals": 18, + "coinGeckoId": "frax-share", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/fxs.png" + }, + { + "coinDenom": "FRAX", + "coinMinimalDenom": "ibc/4F20D68B51ED559F99C3CD658383E91F45486D884BF546E7B25337A058562CDB", + "coinDecimals": 18, + "coinGeckoId": "frax", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/frax.png" + }, + { + "coinDenom": "frxETH", + "coinMinimalDenom": "ibc/458032E654E41DB91EF98F13E2CE4F9E0FE86BA3E0CDBEC074A854E9F5229A90", + "coinDecimals": 18, + "coinGeckoId": "frax-ether", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/frxeth.png" + }, + { + "coinDenom": "sfrxETH", + "coinMinimalDenom": "ibc/4E0ECE7819D77B0F2B49F5C34B5E594A02D2BA8B1B0F103208F847B53EBFB69A", + "coinDecimals": 18, + "coinGeckoId": "staked-frax-ether", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/sfrxeth.png" + }, + { + "coinDenom": "sFRAX", + "coinMinimalDenom": "ibc/5BD7F23FE150D9CF3BCC944DB829380BCC51A4022A131151C4D13B3AFAC2D1D9", + "coinDecimals": 18, + "coinGeckoId": "staked-frax", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/sfrax.png" + }, + { + "coinDenom": "USDT", + "coinMinimalDenom": "ibc/37CC704EA53E96AB09A9C31D79142DE7DB252420F3AB18015F9870AE219947BD", + "coinDecimals": 6, + "coinGeckoId": "tether", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/usdt.png" + }, + { + "coinDenom": "USDe", + "coinMinimalDenom": "ibc/FFD9EB71B4480ED4D73F7370A2AEBDB48447A0AAE27265F8060A957F0FF71983", + "coinDecimals": 18, + "coinGeckoId": "ethena-usde", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/usde.png" + }, + { + "coinDenom": "ENA", + "coinMinimalDenom": "ibc/B089810D5A6316AD5E9C7808733DC4AB11C7BA3033221D28711FC7206BACB929", + "coinDecimals": 18, + "coinGeckoId": "ethena", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/ena.png" + }, + { + "coinDenom": "wSOL", + "coinMinimalDenom": "ibc/2CC39C8141F257EBBA250F65B9D0F31DC8D153C225E51EC192DE6E3F65D43F0C", + "coinDecimals": 9, + "coinGeckoId": "solana", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/sol.png" + }, + { + "coinDenom": "mSOL", + "coinMinimalDenom": "ibc/C280CB39B97E7CD33A0BF149CFD392C2A3F95FF896AFF89CFF2FA181479BED8D", + "coinDecimals": 9, + "coinGeckoId": "msol", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/msol.png" + }, + { + "coinDenom": "jitoSOL", + "coinMinimalDenom": "ibc/91A2FE07F8BDFC0552B1C9972FCCBF2CFD067DDE5F496D81E5132CE57762B0F2", + "coinDecimals": 9, + "coinGeckoId": "jito-staked-sol", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/jitosol.png" + }, + { + "coinDenom": "bSOL", + "coinMinimalDenom": "ibc/F52A71607B3AA7BBA8A222A9176E9939E92AB3656A094289CD218907D45DB716", + "coinDecimals": 9, + "coinGeckoId": "blazestake-staked-sol", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/bsol.png" + }, + { + "coinDenom": "LST", + "coinMinimalDenom": "ibc/55F5B582483FEFA5422794292B079B4D49A5BAB9881E7C801F9F271F1D234F1D", + "coinDecimals": 9, + "coinGeckoId": "liquid-staking-token", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/lst.png" + }, + { + "coinDenom": "edgeSOL", + "coinMinimalDenom": "ibc/BADB5950C4A81AC201696EBCB33CD295137FA86F0AA620CDDE946D3700E0208C", + "coinDecimals": 9, + "coinGeckoId": "edgevana-staked-sol", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/edgesol.png" + }, + { + "coinDenom": "hSOL", + "coinMinimalDenom": "ibc/531C52D572698BCBA29F44D959E73CD2148EE6542A3118F9E56621A28E1FF4C6", + "coinDecimals": 9, + "coinGeckoId": "helius-staked-sol", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/hsol.png" + }, + { + "coinDenom": "jupSOL", + "coinMinimalDenom": "ibc/6976998E24F1CFC373A9F799C9CE901F5EC32C3E33B2B09384A05774D9339626", + "coinDecimals": 9, + "coinGeckoId": "jupiter-staked-sol", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/jupsol.png" + }, + { + "coinDenom": "WIF", + "coinMinimalDenom": "ibc/BA34EAA22BBDA46C228DC70E4ED7E42A0867D5B051D625F953CC7B1CEF58C071", + "coinDecimals": 6, + "coinGeckoId": "dogwifcoin", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/wif.png" + }, + { + "coinDenom": "BONK", + "coinMinimalDenom": "ibc/A09E5A2B0DE6CB5E8EC67F1662C7EE4202CEC192923DA1D4FCAEA078B4FCF5AC", + "coinDecimals": 5, + "coinGeckoId": "bonk", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/bonk.png" + }, + { + "coinDenom": "USDT", + "coinMinimalDenom": "ibc/D105950618E47CA2AEC314282BC401625025F80A4F812808DEEBB1941C685575", + "coinDecimals": 6, + "coinGeckoId": "tether", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/usdt.png" } ], "feeCurrencies": [ @@ -65,4 +212,4 @@ } ], "features": [] - } \ No newline at end of file + } diff --git a/cosmos/chihuahua.json b/cosmos/chihuahua.json index 4b16588f3..5eac9e081 100644 --- a/cosmos/chihuahua.json +++ b/cosmos/chihuahua.json @@ -65,6 +65,12 @@ "coinMinimalDenom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso", "coinDecimals": 6, "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/chihuahua/factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/corso.png" + }, + { + "coinDenom": "ashHUAHUA", + "coinMinimalDenom": "factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/chihuahua/factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash.png" } ], "feeCurrencies": [ diff --git a/cosmos/cifer.json b/cosmos/cifer.json new file mode 100644 index 000000000..6e8b67377 --- /dev/null +++ b/cosmos/cifer.json @@ -0,0 +1,48 @@ +{ + "chainId": "cifer-2", + "chainName": "Cifer", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/cifer/cif.png", + "rpc": "https://cif_node.cifer.ai", + "rest": "https://api.cifer.ai", + "nodeProvider": { + "name": "Cifer", + "email": "info@cifer.ai", + "website":"https://www.cifer.ai" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "cife", + "bech32PrefixAccPub": "cifepub", + "bech32PrefixValAddr": "cifevaloper", + "bech32PrefixValPub": "cifevaloperpub", + "bech32PrefixConsAddr": "cifevalcons", + "bech32PrefixConsPub": "cifevalconspub" + }, + "currencies": [ + { + "coinDenom": "CIF", + "coinMinimalDenom": "ucif", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/cifer/cif.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "CIF", + "coinMinimalDenom": "ucif", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.0025, + "average": 0.025, + "high": 0.04 + } + } + ], + "stakeCurrency": { + "coinDenom": "CIF", + "coinMinimalDenom": "ucif", + "coinDecimals": 6 + } +} diff --git a/cosmos/columbus.json b/cosmos/columbus.json index 5b75460b9..8a03cc79e 100644 --- a/cosmos/columbus.json +++ b/cosmos/columbus.json @@ -72,5 +72,5 @@ } } ], - "features": ["terra-classic-fee"] + "features": ["terra-classic-fee", "cosmwasm"] } diff --git a/cosmos/constantine.json b/cosmos/constantine.json index f61a74d50..6618e8490 100644 --- a/cosmos/constantine.json +++ b/cosmos/constantine.json @@ -17,7 +17,6 @@ { "coinDecimals": 18, "coinDenom": "CONST", - "coinGeckoId": "constantine-network", "coinMinimalDenom": "aconst" } ], @@ -26,21 +25,19 @@ { "coinDecimals": 18, "coinDenom": "CONST", - "coinGeckoId": "constantine-network", "coinMinimalDenom": "aconst", "gasPriceStep": { - "low": 1000000000000, - "average": 1500000000000, - "high": 2000000000000 + "low": 140000000000, + "average": 196000000000, + "high": 225400000000 } } ], - "rest": "https://api.constantine.archway.tech", - "rpc": "https://rpc.constantine.archway.tech", + "rest": "https://api.constantine.archway.io", + "rpc": "https://rpc.constantine.archway.io", "stakeCurrency": { "coinDecimals": 18, "coinDenom": "CONST", - "coinGeckoId": "constantine-network", "coinMinimalDenom": "aconst" }, "nodeProvider": { @@ -48,4 +45,4 @@ "email": "support@philabs.xyz", "website":"https://philabs.xyz" } -} \ No newline at end of file +} diff --git a/cosmos/core.json b/cosmos/core.json index 16e49f8c2..08ebfb208 100644 --- a/cosmos/core.json +++ b/cosmos/core.json @@ -61,6 +61,18 @@ "coinMinimalDenom": "stk/ustars", "coinDecimals": 6, "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/core/stkstars.png" + }, + { + "coinDenom": "stkHUAHUA", + "coinMinimalDenom": "stk/uhuahua", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/core/stkhuahua.png" + }, + { + "coinDenom": "stkXPRT", + "coinMinimalDenom": "stk/uxprt", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/core/stkxprt.png" } ], "feeCurrencies": [ diff --git a/cosmos/coreum-testnet.json b/cosmos/coreum-testnet.json new file mode 100644 index 000000000..4578300b2 --- /dev/null +++ b/cosmos/coreum-testnet.json @@ -0,0 +1,54 @@ +{ + "chainId": "coreum-testnet-1", + "chainName": "Coreum Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/coreum-testnet/chain.png", + "rpc": "https://full-node.testnet-1.coreum.dev:26657", + "rest": "https://full-node.testnet-1.coreum.dev:1317", + "nodeProvider": { + "name": "Coreum Full Node", + "website":"https://www.coreum.com/", + "email": "hello@coreum.com" + }, + "bip44": { + "coinType": 990 + }, + "bech32Config": { + "bech32PrefixAccAddr": "testcore", + "bech32PrefixAccPub": "testcorepub", + "bech32PrefixValAddr": "testcorevaloper", + "bech32PrefixValPub": "testcorevaloperpub", + "bech32PrefixConsAddr": "testcorevalcons", + "bech32PrefixConsPub": "testcorevalconspub" + }, + "currencies": [ + { + "coinDenom": "TESTCORE", + "coinMinimalDenom": "utestcore", + "coinDecimals": 6, + "coinGeckoId": "coreum" + } + ], + "feeCurrencies": [ + { + "coinDenom": "TESTCORE", + "coinMinimalDenom": "utestcore", + "coinDecimals": 6, + "coinGeckoId": "coreum", + "gasPriceStep": { + "low": 0.0625, + "average": 0.0625, + "high": 0.0625 + } + } + ], + "stakeCurrency": { + "coinDenom": "TESTCORE", + "coinMinimalDenom": "utestcore", + "coinDecimals": 6, + "coinGeckoId": "coreum" + }, + "features": [ + "cosmwasm" + ] + } + diff --git a/cosmos/coss.json b/cosmos/coss.json index bbf35c06b..d5666ca3b 100644 --- a/cosmos/coss.json +++ b/cosmos/coss.json @@ -39,7 +39,8 @@ { "coinDenom": "COSS", "coinMinimalDenom": "ucoss", - "coinDecimals": 6 + "coinDecimals": 6, + "coinGeckoId": "coss-2" } ], "feeCurrencies": [ @@ -58,6 +59,7 @@ "coinDenom": "COSS", "coinMinimalDenom": "ucoss", "coinDecimals": 6, + "coinGeckoId": "coss-2", "gasPriceStep": { "low": 0.025, "average": 0.03, @@ -75,6 +77,5 @@ } } ], - "features": [ - ] + "features": [] } diff --git a/cosmos/cvn_2032.json b/cosmos/cvn_2032.json new file mode 100644 index 000000000..f03d2d51a --- /dev/null +++ b/cosmos/cvn_2032.json @@ -0,0 +1,54 @@ +{ + "rpc": "https://rpc.cvn.io", + "rest": "https://api.cvn.io", + "nodeProvider": { + "name": "consciousDao", + "email": "messages@consciousdao.com", + "website":"https://cvn.io" + }, + "chainId": "cvn_2032-1", + "chainName": "conscious", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/cvn_2032/chain.png", + "stakeCurrency": { + "coinDenom": "CVN", + "coinMinimalDenom": "acvnt", + "coinDecimals": 18, + "coinGeckoId": "consciousdao", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/cvn_2032/acvnt.png" + }, + "bip44": { + "coinType": 60 + }, + "bech32Config": { + "bech32PrefixAccAddr": "cvn", + "bech32PrefixAccPub": "cvnpub", + "bech32PrefixValAddr": "cvnvaloper", + "bech32PrefixValPub": "cvnvaloperpub", + "bech32PrefixConsAddr": "cvnvalcons", + "bech32PrefixConsPub": "cvnvalconspub" + }, + "currencies": [ + { + "coinDenom": "CVN", + "coinMinimalDenom": "acvnt", + "coinDecimals": 18, + "coinGeckoId": "consciousdao", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/cvn_2032/acvnt.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "CVN", + "coinMinimalDenom": "acvnt", + "coinDecimals": 18, + "coinGeckoId": "consciousdao", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/cvn_2032/acvnt.png", + "gasPriceStep": { + "low": 100000000, + "average": 200000000, + "high": 300000000 + } + } + ], + "features": ["eth-address-gen", "eth-key-sign"] +} diff --git a/cosmos/deardoge-testnet.json b/cosmos/deardoge-testnet.json deleted file mode 100644 index 5d7b54a12..000000000 --- a/cosmos/deardoge-testnet.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "rpc": "https://testnet-rpc.deardoge.org", - "rest": "https://testnet-rest.deardoge.org", - "nodeProvider": { - "name": "Dorafactory", - "email": "node-operation@mail.dorafactory.org", - "website": "https://dorafactory.org" - }, - "chainId": "deardoge-testnet", - "chainName": "Dear Doge Testnet", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/deardoge-testnet/chain.png", - "stakeCurrency": { - "coinDenom": "DEAR", - "coinMinimalDenom": "udear", - "coinDecimals": 6, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/deardoge-testnet/udear.png" - }, - "bip44": { - "coinType": 118 - }, - "bech32Config": { - "bech32PrefixAccAddr": "deardoge", - "bech32PrefixAccPub": "deardogepub", - "bech32PrefixValAddr": "deardogevaloper", - "bech32PrefixValPub": "deardogevaloperpub", - "bech32PrefixConsAddr": "deardogevalcons", - "bech32PrefixConsPub": "deardogevalconspub" - }, - "currencies": [ - { - "coinDenom": "DEAR", - "coinMinimalDenom": "udear", - "coinDecimals": 6, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/deardoge-testnet/udear.png" - } - ], - "feeCurrencies": [ - { - "coinDenom": "DEAR", - "coinMinimalDenom": "udear", - "coinDecimals": 6, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/deardoge-testnet/udear.png", - "gasPriceStep": { - "low": 0.25, - "average": 0.25, - "high": 0.25 - } - } - ], - "features": [] -} diff --git a/cosmos/dhealth-testnet.json b/cosmos/dhealth-testnet.json new file mode 100644 index 000000000..0aa0573a3 --- /dev/null +++ b/cosmos/dhealth-testnet.json @@ -0,0 +1,53 @@ +{ + "chainId": "dhealth-testnet-2", + "chainName": "dHealth Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/dhealth-testnet/chain.png", + "rpc": "https://rpc-testnet.dhealth.dev", + "rest": "https://lcd-testnet.dhealth.dev", + "nodeProvider": { + "name": "dHealth Network", + "email": "son@dhealth.com", + "website":"https://dhealth.com" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "tdh02", + "bech32PrefixAccPub": "tdh02pub", + "bech32PrefixValAddr": "tdh02valoper", + "bech32PrefixValPub": "tdh02valoperpub", + "bech32PrefixConsAddr": "tdh02valcons", + "bech32PrefixConsPub": "tdh02valconspub" + }, + "currencies": [ + { + "coinDenom": "tDHP", + "coinMinimalDenom": "utdhp", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/dhealth-testnet/chain.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "tDHP", + "coinMinimalDenom": "utdhp", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.01, + "average": 0.025, + "high": 0.03 + }, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/dhealth-testnet/chain.png" + } + ], + "stakeCurrency": { + "coinDenom": "tDHP", + "coinMinimalDenom": "utdhp", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/dhealth-testnet/chain.png" + }, + "features": [ + "cosmwasm" + ] +} \ No newline at end of file diff --git a/cosmos/dhealth.json b/cosmos/dhealth.json new file mode 100644 index 000000000..480131e75 --- /dev/null +++ b/cosmos/dhealth.json @@ -0,0 +1,56 @@ +{ + "chainId": "dhealth", + "chainName": "dHealth", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/dhealth/chain.png", + "rpc": "https://rpc.dhealth.com", + "rest": "https://lcd.dhealth.com", + "nodeProvider": { + "name": "dHealth Network", + "email": "son@dhealth.com", + "website":"https://dhealth.com" + }, + "bip44": { + "coinType": 10111 + }, + "bech32Config": { + "bech32PrefixAccAddr": "dh", + "bech32PrefixAccPub": "dhpub", + "bech32PrefixValAddr": "dhvaloper", + "bech32PrefixValPub": "dhvaloperpub", + "bech32PrefixConsAddr": "dhvalcons", + "bech32PrefixConsPub": "dhvalconspub" + }, + "currencies": [ + { + "coinDenom": "DHP", + "coinMinimalDenom": "udhp", + "coinDecimals": 6, + "coinGeckoId": "dhealth", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/dhealth/chain.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "DHP", + "coinMinimalDenom": "udhp", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.01, + "average": 0.025, + "high": 0.03 + }, + "coinGeckoId": "dhealth", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/dhealth/chain.png" + } + ], + "stakeCurrency": { + "coinDenom": "DHP", + "coinMinimalDenom": "udhp", + "coinDecimals": 6, + "coinGeckoId": "dhealth", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/dhealth/chain.png" + }, + "features": [ + "cosmwasm" + ] +} \ No newline at end of file diff --git a/cosmos/dimension_37.json b/cosmos/dimension_37.json index 66e3eaac1..46c2f3a23 100644 --- a/cosmos/dimension_37.json +++ b/cosmos/dimension_37.json @@ -1,20 +1,16 @@ { - "rpc": "https://dimension-rpc.xpla.dev", - "rest": "https://dimension-lcd.xpla.dev", + "rpc": "https://rpc-dimension.keplr.app", + "rest": "https://lcd-dimension.keplr.app", "chainId": "dimension_37-1", "chainName": "XPLA", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/dimension_37/chain.png", + "walletUrlForStaking": "https://wallet.keplr.app/chains/xpla", "stakeCurrency": { "coinDenom": "XPLA", "coinMinimalDenom": "axpla", "coinDecimals": 18, "coinGeckoId": "xpla", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/dimension_37/axpla.png" - }, - "nodeProvider": { - "name": "XPLA", - "email": "xpla_official@xpla.io", - "website":"https://xpla.io/" }, "bip44": { "coinType": 60 @@ -50,9 +46,5 @@ } } ], - "features": [ - "eth-address-gen", - "eth-key-sign", - "cosmwasm" - ] -} \ No newline at end of file + "features": ["eth-address-gen", "eth-key-sign", "cosmwasm"] +} diff --git a/cosmos/dymension_1100.json b/cosmos/dymension_1100.json index ec60b2b73..de563121e 100644 --- a/cosmos/dymension_1100.json +++ b/cosmos/dymension_1100.json @@ -4,6 +4,10 @@ "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/dymension_1100/chain.png", "rpc": "https://rpc-dymension.keplr.app", "rest": "https://lcd-dymension.keplr.app", + "evm": { + "chainId": 1100, + "rpc": "https://evm-dymension.keplr.app" + }, "currencies": [ { "coinMinimalDenom": "adym", diff --git a/cosmos/eightball.json b/cosmos/eightball.json deleted file mode 100644 index b33228344..000000000 --- a/cosmos/eightball.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "chainId": "eightball-1", - "chainName": "8ball", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eightball/chain.png", - "rpc": "https://rpc.8ball.info", - "rest": "https://rest.8ball.info", - "nodeProvider": { - "name": "8ball", - "email": "hi8ball@protonmail.com", - "website":"https://8ball.info" - }, - "bip44": { - "coinType": 118 - }, - "bech32Config": { - "bech32PrefixAccAddr": "8ball", - "bech32PrefixAccPub": "8ballpub", - "bech32PrefixValAddr": "8ballvaloper", - "bech32PrefixValPub": "8ballvaloperpub", - "bech32PrefixConsAddr": "8ballvalcons", - "bech32PrefixConsPub": "8ballvalconspub" - }, - "stakeCurrency": { - "coinDenom": "EBL", - "coinMinimalDenom": "uebl", - "coinDecimals": 6 - }, - "currencies": [ - { - "coinDenom": "EBL", - "coinMinimalDenom": "uebl", - "coinDecimals": 6 - } - ], - "feeCurrencies": [ - { - "coinDenom": "EBL", - "coinMinimalDenom": "uebl", - "coinDecimals": 6, - "coinGeckoId": "8ball" - } - ], - "features": [ - "cosmwasm" - ] -} diff --git a/cosmos/elystestnet.json b/cosmos/elystestnet.json index 5bf85d51f..a4ab4aad2 100644 --- a/cosmos/elystestnet.json +++ b/cosmos/elystestnet.json @@ -1,11 +1,12 @@ { "chainId": "elystestnet-1", - "chainName": "elys", + "chainName": "Elys Network Testnet", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/elystestnet/chain.png", - "rpc": "http://37.187.154.66:26657", + "rpc": "https://rpc.testnet.elys.network:443", "rest": "https://api.testnet.elys.network", + "walletUrlForStaking": "https://testnet.elys.network/earn/staking", "nodeProvider": { - "name": "Elys Node", + "name": "Elys Network", "email": "team@elys.network", "website": "https://elys.network" }, @@ -39,6 +40,30 @@ "high": 0.03 }, "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/elystestnet/chain.png" + }, + { + "coinDenom": "USDC", + "coinMinimalDenom": "ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65", + "coinDecimals": 6, + "coinGeckoId": "usd-coin", + "gasPriceStep": { + "low": 0.01, + "average": 0.025, + "high": 0.03 + }, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/elystestnet/uusdc.png" + }, + { + "coinDenom": "ATOM", + "coinMinimalDenom": "ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4", + "coinDecimals": 6, + "coinGeckoId": "cosmos", + "gasPriceStep": { + "low": 0.01, + "average": 0.025, + "high": 0.03 + }, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/elystestnet/uatom.png" } ], "stakeCurrency": { diff --git a/cosmos/empe-testnet.json b/cosmos/empe-testnet.json new file mode 100644 index 000000000..3a66643f2 --- /dev/null +++ b/cosmos/empe-testnet.json @@ -0,0 +1,50 @@ +{ + "chainId": "empe-testnet-2", + "chainName": "Empe Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/empe-testnet/empe.png", + "rpc": "https://rpc-testnet.empe.io/", + "rest": "https://lcd-testnet.empe.io/", + "nodeProvider": { + "name": "Empe Team", + "email": "dev@empe.io", + "website": "https://empe.io" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "empe", + "bech32PrefixAccPub": "empepub", + "bech32PrefixValAddr": "empevaloper", + "bech32PrefixValPub": "empevaloperpub", + "bech32PrefixConsAddr": "empevalcons", + "bech32PrefixConsPub": "empevalconspub" + }, + "currencies": [ + { + "coinDenom": "EMPE", + "coinMinimalDenom": "uempe", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/empe-testnet/empe.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "EMPE", + "coinMinimalDenom": "uempe", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/empe-testnet/empe.png", + "gasPriceStep": { + "low": 0.01, + "average": 0.025, + "high": 0.03 + } + } + ], + "stakeCurrency": { + "coinDenom": "EMPE", + "coinMinimalDenom": "uempe", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/empe-testnet/empe.png" + } +} \ No newline at end of file diff --git a/cosmos/evmos_9001.json b/cosmos/evmos_9001.json index ab9aac097..8cf9865f0 100644 --- a/cosmos/evmos_9001.json +++ b/cosmos/evmos_9001.json @@ -3,6 +3,10 @@ "rest": "https://lcd-evmos.keplr.app", "chainId": "evmos_9001-2", "chainName": "Evmos", + "evm": { + "chainId": 9001, + "rpc": "https://evm-evmos.keplr.app" + }, "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/evmos_9001/chain.png", "stakeCurrency": { "coinDenom": "EVMOS", diff --git a/cosmos/fairyring-testnet.json b/cosmos/fairyring-testnet.json new file mode 100644 index 000000000..ebd687e1c --- /dev/null +++ b/cosmos/fairyring-testnet.json @@ -0,0 +1,50 @@ +{ + "chainId": "fairyring-testnet-1", + "chainName": "Fairblock FairyRing Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/fairyring-testnet/chain.png", + "rpc": "https://testnet-rpc.fairblock.network", + "rest": "https://testnet-api.fairblock.network", + "nodeProvider": { + "name": "Fairblock", + "email": "hello@fairblock.network", + "website":"https://fairblock.network" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "fairy", + "bech32PrefixAccPub": "fairypub", + "bech32PrefixValAddr": "fairyvaloper", + "bech32PrefixValPub": "fairyvaloperpub", + "bech32PrefixConsAddr": "fairyvalcons", + "bech32PrefixConsPub": "fairyvalconspub" + }, + "currencies": [ + { + "coinDenom": "FAIRY", + "coinMinimalDenom": "ufairy", + "coinDecimals": 6 + } + ], + "feeCurrencies": [ + { + "coinDenom": "FAIRY", + "coinMinimalDenom": "ufairy", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.01, + "average": 0.025, + "high": 0.03 + } + } + ], + "stakeCurrency": { + "coinDenom": "FAIRY", + "coinMinimalDenom": "ufairy", + "coinDecimals": 6 + }, + "features": [ + "cosmwasm" + ] +} diff --git a/cosmos/fiamma-testnet.json b/cosmos/fiamma-testnet.json new file mode 100644 index 000000000..4eef6b9d2 --- /dev/null +++ b/cosmos/fiamma-testnet.json @@ -0,0 +1,52 @@ +{ + "chainId": "fiamma-testnet-1", + "chainName": "Fiamma Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/fiamma-testnet/chain.png", + "rpc": "https://testnet-rpc.fiammachain.io", + "rest": "https://testnet-api.fiammachain.io", + "nodeProvider": { + "name": "Fiammachain", + "email": "contact@fiammachain.io", + "website": "https://fiammachain.io/" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "fiamma", + "bech32PrefixAccPub": "fiammapub", + "bech32PrefixValAddr": "fiammavaloper", + "bech32PrefixValPub": "fiammavaloperpub", + "bech32PrefixConsAddr": "fiammavalcons", + "bech32PrefixConsPub": "fiammavalconspub" + }, + "currencies": [ + { + "coinDenom": "FIA", + "coinMinimalDenom": "ufia", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/fiamma-testnet/chain.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "FIA", + "coinMinimalDenom": "ufia", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/fiamma-testnet/chain.png", + "gasPriceStep": { + "low": 0.01, + "average": 0.02, + "high": 0.1 + } + } + ], + "stakeCurrency": { + "coinDenom": "FIA", + "coinMinimalDenom": "ufia", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/fiamma-testnet/chain.png" + }, + "features": ["cosmwasm"] + } + \ No newline at end of file diff --git a/cosmos/fivenet.json b/cosmos/fivenet.json index 021685d02..f493993d9 100644 --- a/cosmos/fivenet.json +++ b/cosmos/fivenet.json @@ -47,4 +47,4 @@ } ], "features": [] -} \ No newline at end of file +} diff --git a/cosmos/furya.json b/cosmos/furya.json index c2c6e51ea..dbf4de87c 100644 --- a/cosmos/furya.json +++ b/cosmos/furya.json @@ -2,12 +2,12 @@ "chainId": "furya-1", "chainName": "Furya", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/furya/chain.png", - "rpc": "https://rpc.furya.xyz", - "rest": "https://api.furya.xyz", + "rpc": "https://furya.rpc.nodeshub.online", + "rest": "https://furya.api.nodeshub.online", "nodeProvider": { "name": "Furya", - "email": "team@fury.fan", - "website": "https://one.furya.xyz/" + "email": "team@furya.network", + "website": "https://docs.furya.network" }, "bip44": { "coinType": 118 @@ -51,5 +51,5 @@ "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/furya/ufury.png" }, "features": ["cosmwasm"], - "walletUrlForStaking": "https://one.furya.xyz/staking" + "walletUrlForStaking": "https://explorer.furya.network/furya-1/staking" } diff --git a/cosmos/fxcore.json b/cosmos/fxcore.json index 48f2fa0d0..4dcdbc5c3 100644 --- a/cosmos/fxcore.json +++ b/cosmos/fxcore.json @@ -28,6 +28,13 @@ "coinDecimals": 18, "coinGeckoId": "fx-coin", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/fxcore/fx.png" + }, + { + "coinDenom": "PUNDIX", + "coinMinimalDenom": "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", + "coinDecimals": 18, + "coinGeckoId": "pundi-x-2", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/fxcore/pundix.png" } ], "feeCurrencies": [ diff --git a/cosmos/galactica_9302.json b/cosmos/galactica_9302.json new file mode 100644 index 000000000..7f131da98 --- /dev/null +++ b/cosmos/galactica_9302.json @@ -0,0 +1,55 @@ +{ + "chainId": "galactica_9302-1", + "chainName": "Galactica Reticulum Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/galactica_9302/chain.png", + "rpc": "https://rpc-reticulum.galactica.com", + "rest": "https://lcd-reticulum.galactica.com", + "nodeProvider": { + "name": "Galactica Network", + "email": "support@galactica.com", + "website":"https://galactica.com/" + }, + "evm": { + "chainId": 9302, + "rpc": "https://evm-rpc-http-reticulum.galactica.com" + }, + "stakeCurrency": { + "coinDenom": "GNET", + "coinMinimalDenom": "agnet", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/galactica_9302/agnet.png" + }, + "bip44": { + "coinType": 60 + }, + "bech32Config": { + "bech32PrefixAccAddr": "gala", + "bech32PrefixAccPub": "galapub", + "bech32PrefixValAddr": "galavaloper", + "bech32PrefixValPub": "galavaloperpub", + "bech32PrefixConsAddr": "galavalcons", + "bech32PrefixConsPub": "galavalconspub" + }, + "currencies": [ + { + "coinDenom": "GNET", + "coinMinimalDenom": "agnet", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/galactica_9302/agnet.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "GNET", + "coinMinimalDenom": "agnet", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/galactica_9302/agnet.png", + "gasPriceStep": { + "low": 10000, + "average": 500000, + "high": 10000000 + } + } + ], + "features": ["eth-address-gen", "eth-key-sign"] +} diff --git a/cosmos/gotabit-test.json b/cosmos/gotabit-test.json deleted file mode 100644 index 3a8f28855..000000000 --- a/cosmos/gotabit-test.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "chainId": "gotabit-test-1", - "chainName": "GotaBit-test", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gotabit-test/chain.png", - "rpc": "https://rpc-testnet.gotabit.dev:443", - "rest": "https://rest-testnet.gotabit.dev:443", - "nodeProvider": { - "name": "Gotabit team", - "website": "https://gotabit.io", - "email": "modes@gid.io" - }, - "bip44": { - "coinType": 118 - }, - "bech32Config": { - "bech32PrefixAccAddr": "gio", - "bech32PrefixAccPub": "giopub", - "bech32PrefixValAddr": "giovaloper", - "bech32PrefixValPub": "giovaloperpub", - "bech32PrefixConsAddr": "giovalcons", - "bech32PrefixConsPub": "giovalconspub" - }, - "currencies": [ - { - "coinDenom": "GTB", - "coinMinimalDenom": "ugtb", - "coinDecimals": 6 - } - ], - "feeCurrencies": [ - { - "coinDenom": "GTB", - "coinMinimalDenom": "ugtb", - "coinDecimals": 6, - "gasPriceStep": { - "low": 0.01, - "average": 0.025, - "high": 0.03 - } - } - ], - "stakeCurrency": { - "coinDenom": "GTB", - "coinMinimalDenom": "ugtb", - "coinDecimals": 6 - }, - "features": [ - "cosmwasm" - ] -} \ No newline at end of file diff --git a/cosmos/grand.json b/cosmos/grand.json index 1fde6c830..7d6f33a2e 100644 --- a/cosmos/grand.json +++ b/cosmos/grand.json @@ -1,12 +1,12 @@ { "chainId": "grand-1", "chainName": "Grand", - "rpc": "https://rpc.testnet.noble.strange.love", - "rest": "https://api.testnet.noble.strange.love/", + "rpc": "https://noble-testnet-rpc.polkachu.com", + "rest": "https://noble-testnet-api.polkachu.com", "nodeProvider": { - "name": "Strangelove", - "email": "support@strange.love", - "website": "https://strange.love/" + "name": "Polkachu", + "email": "hello@polkachu.com", + "website": "https://polkachu.com" }, "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/grand/chain.png", "stakeCurrency": { @@ -32,6 +32,12 @@ "coinDecimals": 6, "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/grand/uusdc.png" }, + { + "coinDenom": "USDY", + "coinMinimalDenom": "ausdy", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/grand/ausdy.png" + }, { "coinDenom": "STAKE", "coinMinimalDenom": "ustake", diff --git a/cosmos/gravity-bridge.json b/cosmos/gravity-bridge.json index 0d819ab88..ef8f00f28 100644 --- a/cosmos/gravity-bridge.json +++ b/cosmos/gravity-bridge.json @@ -38,6 +38,189 @@ "coinDecimals": 18, "coinGeckoId": "pstake-finance", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006.png" + }, + { + "coinDenom": "USDC", + "coinMinimalDenom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "coinDecimals": 6, + "coinGeckoId": "usd-coin", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48.png" + }, + { + "coinDenom": "USDT", + "coinMinimalDenom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0xdAC17F958D2ee523a2206206994597C13D831ec7.png" + }, + { + "coinDenom": "GTON", + "coinMinimalDenom": "gravity0x01e0E2e61f554eCAaeC0cC933E739Ad90f24a86d", + "coinDecimals": 18 + }, + { + "coinDenom": "EROWAN", + "coinMinimalDenom": "gravity0x07baC35846e5eD502aA91AdF6A9e7aA210F2DcbE", + "coinDecimals": 18 + }, + { + "coinDenom": "GEO", + "coinMinimalDenom": "gravity0x147faF8De9d8D8DAAE129B187F0D02D819126750", + "coinDecimals": 18 + }, + { + "coinDenom": "UNI", + "coinMinimalDenom": "gravity0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984.png" + }, + { + "coinDenom": "WBTC", + "coinMinimalDenom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599.png" + }, + { + "coinDenom": "WSCRT", + "coinMinimalDenom": "gravity0x2B89bF8ba858cd2FCee1faDa378D5cd6936968Be", + "coinDecimals": 6 + }, + { + "coinDenom": "stkETH", + "coinMinimalDenom": "gravity0x2C5Bcad9Ade17428874855913Def0A02D8bE2324", + "coinDecimals": 18 + }, + { + "coinDenom": "SD", + "coinMinimalDenom": "gravity0x30D20208d987713f46DFD34EF128Bb16C404D10f", + "coinDecimals": 18 + }, + { + "coinDenom": "WDOGE", + "coinMinimalDenom": "gravity0x35a532d376FFd9a705d0Bb319532837337A398E7", + "coinDecimals": 18 + }, + { + "coinDenom": "PAXG", + "coinMinimalDenom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78.png" + }, + { + "coinDenom": "AXL", + "coinMinimalDenom": "gravity0x467719aD09025FcC6cF6F8311755809d45a5E5f3", + "coinDecimals": 6 + }, + { + "coinDenom": "XKI", + "coinMinimalDenom": "gravity0x4f6103BAd230295baCF30f914FDa7D4273B7F585", + "coinDecimals": 6 + }, + { + "coinDenom": "LINK", + "coinMinimalDenom": "gravity0x514910771AF9Ca656af840dff83E8264EcF986CA", + "coinDecimals": 18 + }, + { + "coinDenom": "PAGE", + "coinMinimalDenom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "coinDecimals": 8 + }, + { + "coinDenom": "DAI", + "coinMinimalDenom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0x6B175474E89094C44Da98b954EedeAC495271d0F.png" + }, + { + "coinDenom": "MATIC", + "coinMinimalDenom": "gravity0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0.png" + }, + { + "coinDenom": "CUDOS", + "coinMinimalDenom": "gravity0x817bbDbC3e8A1204f3691d14bB44992841e3dB35", + "coinDecimals": 18 + }, + { + "coinDenom": "FRAX", + "coinMinimalDenom": "gravity0x853d955aCEf822Db058eb8505911ED77F175b99e", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0x853d955aCEf822Db058eb8505911ED77F175b99e.png" + }, + { + "coinDenom": "xFUND", + "coinMinimalDenom": "gravity0x892A6f9dF0147e5f079b0993F486F9acA3c87881", + "coinDecimals": 9 + }, + { + "coinDenom": "GET", + "coinMinimalDenom": "gravity0x8a854288a5976036A725879164Ca3e91d30c6A1B", + "coinDecimals": 18 + }, + { + "coinDenom": "WEVMOS", + "coinMinimalDenom": "gravity0x93581991f68DBaE1eA105233b67f7FA0D6BDeE7b", + "coinDecimals": 18 + }, + { + "coinDenom": "SHIB", + "coinMinimalDenom": "gravity0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE.png" + }, + { + "coinDenom": "CRO", + "coinMinimalDenom": "gravity0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b", + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b.png" + }, + { + "coinDenom": "STORJ", + "coinMinimalDenom": "gravity0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC", + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC.png" + }, + { + "coinDenom": "BAND", + "coinMinimalDenom": "gravity0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55", + "coinDecimals": 18 + }, + { + "coinDenom": "WETH", + "coinMinimalDenom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "coinDecimals": 18 + }, + { + "coinDenom": "USTC", + "coinMinimalDenom": "gravity0xa47c8bf37f92aBed4A126BDA807A7b7498661acD", + "coinDecimals": 18 + }, + { + "coinDenom": "somm", + "coinMinimalDenom": "gravity0xa670d7237398238DE01267472C6f13e5B8010FD1", + "coinDecimals": 6 + }, + { + "coinDenom": "UST", + "coinMinimalDenom": "gravity0xa693B19d2931d498c5B318dF961919BB4aee87a5", + "coinDecimals": 6 + }, + { + "coinDenom": "stETH", + "coinMinimalDenom": "gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84.png" + }, + { + "coinDenom": "FET", + "coinMinimalDenom": "gravity0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85", + "coinDecimals": 18 + }, + { + "coinDenom": "UMEE", + "coinMinimalDenom": "gravity0xc0a4Df35568F116C370E6a6A6022Ceb908eedDaC", + "coinDecimals": 6 } ], "feeCurrencies": [ @@ -67,7 +250,8 @@ "low": 0.0002, "average": 0.0005, "high": 0.0008 - } + }, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0xdAC17F958D2ee523a2206206994597C13D831ec7.png" }, { "coinDenom": "FUND", @@ -127,12 +311,14 @@ { "coinDenom": "UNI", "coinMinimalDenom": "gravity0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", - "coinDecimals": 18 + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984.png" }, { "coinDenom": "WBTC", "coinMinimalDenom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", - "coinDecimals": 8 + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599.png" }, { "coinDenom": "WSCRT", @@ -157,7 +343,8 @@ { "coinDenom": "PAXG", "coinMinimalDenom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", - "coinDecimals": 18 + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78.png" }, { "coinDenom": "AXL", @@ -182,12 +369,14 @@ { "coinDenom": "DAI", "coinMinimalDenom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", - "coinDecimals": 18 + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0x6B175474E89094C44Da98b954EedeAC495271d0F.png" }, { "coinDenom": "MATIC", "coinMinimalDenom": "gravity0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0", - "coinDecimals": 18 + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0.png" }, { "coinDenom": "CUDOS", @@ -197,18 +386,14 @@ { "coinDenom": "FRAX", "coinMinimalDenom": "gravity0x853d955aCEf822Db058eb8505911ED77F175b99e", - "coinDecimals": 18 + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0x853d955aCEf822Db058eb8505911ED77F175b99e.png" }, { "coinDenom": "xFUND", "coinMinimalDenom": "gravity0x892A6f9dF0147e5f079b0993F486F9acA3c87881", "coinDecimals": 9 }, - { - "coinDenom": "ATOM", - "coinMinimalDenom": "gravity0x8D983cb9388EaC77af0474fA441C4815500Cb7BB", - "coinDecimals": 6 - }, { "coinDenom": "GET", "coinMinimalDenom": "gravity0x8a854288a5976036A725879164Ca3e91d30c6A1B", @@ -222,17 +407,20 @@ { "coinDenom": "SHIB", "coinMinimalDenom": "gravity0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE", - "coinDecimals": 18 + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE.png" }, { "coinDenom": "CRO", "coinMinimalDenom": "gravity0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b", - "coinDecimals": 8 + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b.png" }, { "coinDenom": "STORJ", "coinMinimalDenom": "gravity0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC", - "coinDecimals": 8 + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC.png" }, { "coinDenom": "BAND", @@ -262,7 +450,8 @@ { "coinDenom": "stETH", "coinMinimalDenom": "gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", - "coinDecimals": 18 + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84.png" }, { "coinDenom": "FET", @@ -273,18 +462,7 @@ "coinDenom": "UMEE", "coinMinimalDenom": "gravity0xc0a4Df35568F116C370E6a6A6022Ceb908eedDaC", "coinDecimals": 6 - }, - { - "coinDenom": "ERC20", - "coinMinimalDenom": "gravity0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA", - "coinDecimals": 18 - }, - { - "coinDenom": "GRAV", - "coinMinimalDenom": "gravity0xd8e2F184EedC79A9bdE9Eb7E34B0fF34e98692B7", - "coinDecimals": 18, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/ugraviton.png" } ], "features": [] -} \ No newline at end of file +} diff --git a/cosmos/helichain.json b/cosmos/helichain.json new file mode 100644 index 000000000..54ff6d39e --- /dev/null +++ b/cosmos/helichain.json @@ -0,0 +1,59 @@ +{ + "chainId": "helichain", + "chainName": "HeliChain", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/helichain/chain.png", + "rpc": "https://rpc.helichain.com", + "rest": "https://lcd.helichain.com", + "nodeProvider": { + "name": "HeliChain", + "email": "support@helichain.com", + "website":"https://helichain.com/" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "heli", + "bech32PrefixAccPub": "helipub", + "bech32PrefixValAddr": "helivaloper", + "bech32PrefixValPub": "helivaloperpub", + "bech32PrefixConsAddr": "helivalcons", + "bech32PrefixConsPub": "helivalconspub" + }, + "currencies": [ + { + "coinDenom": "HELI", + "coinMinimalDenom": "uheli", + "coinDecimals": 6, + "coinGeckoId": "helichain", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/helichain/uheli.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "HELI", + "coinMinimalDenom": "uheli", + "coinDecimals": 6, + "coinGeckoId": "helichain", + "gasPriceStep": { + "low": 0.001, + "average": 0.0025, + "high": 0.004 + }, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/helichain/uheli.png" + + } + ], + "stakeCurrency": { + "coinDenom": "HELI", + "coinMinimalDenom": "uheli", + "coinDecimals": 6, + "coinGeckoId": "helichain", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/helichain/uheli.png" + + }, + "features": [ + "cosmwasm" + ], + "walletUrlForStaking": "https://explorer.helichain.com/Helichain/" +} diff --git a/cosmos/highbury_710.json b/cosmos/highbury_710.json deleted file mode 100644 index 377f63655..000000000 --- a/cosmos/highbury_710.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "rpc": "https://gridiron.furya.io", - "rest": "https://api-mainnet.furya.io", - "chainId": "highbury_710-1", - "chainName": "Highbury", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/highbury_710/chain.png", - "nodeProvider": { - "name": "Blackfury Genesis Validator", - "email": "blackfuryan@skiff.com", - "website":"https://fury.black/" - }, - "stakeCurrency": { - "coinDenom": "FURY", - "coinMinimalDenom": "ufury", - "coinDecimals": 6, - "coinGeckoId": "fanfury", - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/highbury_710/ufury.png" - }, - "bip44": { - "coinType": 118 - }, - "bech32Config": { - "bech32PrefixAccAddr": "fury", - "bech32PrefixAccPub": "furypub", - "bech32PrefixValAddr": "furyvaloper", - "bech32PrefixValPub": "furyvaloperpub", - "bech32PrefixConsAddr": "furyvalcons", - "bech32PrefixConsPub": "furyvalconspub" - }, - "currencies": [ - { - "coinDenom": "FURY", - "coinMinimalDenom": "ufury", - "coinDecimals": 6, - "coinGeckoId": "fanfury", - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/highbury_710/ufury.png" - } - ], - "feeCurrencies": [ - { - "coinDenom": "FURY", - "coinMinimalDenom": "ufury", - "coinDecimals": 6, - "coinGeckoId": "fanfury", - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/highbury_710/ufury.png", - "gasPriceStep": { - "low": 0.05, - "average": 0.1, - "high": 0.25 - } - } - ], - "features": ["eth-address-gen", "eth-key-sign", "authz-msg-revoke-fixed"] -} diff --git a/cosmos/humans_1089.json b/cosmos/humans_1089.json index efa545e35..3bcb9ca15 100644 --- a/cosmos/humans_1089.json +++ b/cosmos/humans_1089.json @@ -1,50 +1,50 @@ -{ - "rpc": "https://rpc.mainnet.humans.zone", - "rest": "https://api.mainnet.humans.zone", - "chainId": "humans_1089-1", - "chainName": "Humans.ai", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/humans_1089/logo.png", - "nodeProvider": { - "name": "Humans.ai", - "email": "contact@humans.ai", - "website": "https://humans.ai/" - }, - "stakeCurrency": { - "coinDenom": "HEART", - "coinMinimalDenom": "aheart", - "coinDecimals": 18, - "coinGeckoId": "humans-ai", - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/humans_1089/logo.png" - }, - "bip44": { - "coinType": 60 - }, - "bech32Config": { - "bech32PrefixAccAddr": "human", - "bech32PrefixAccPub": "humanpub", - "bech32PrefixValAddr": "humanvaloper", - "bech32PrefixValPub": "humanvaloperpub", - "bech32PrefixConsAddr": "humanvalcons", - "bech32PrefixConsPub": "humanvalconspub" - }, - "currencies": [ - { - "coinDenom": "HEART", - "coinMinimalDenom": "aheart", - "coinDecimals": 18 - } - ], - "feeCurrencies": [ - { - "coinDenom": "HEART", - "coinMinimalDenom": "aheart", - "coinDecimals": 18, - "gasPriceStep": { - "low": 80000000000, - "average": 120000000000, - "high": 160000000000 - } - } - ], - "features": ["eth-address-gen", "eth-key-sign"] -} +{ + "rpc": "https://humans.rpc.kjnodes.com/", + "rest": "https://humans.api.kjnodes.com/", + "chainId": "humans_1089-1", + "chainName": "Humans.ai", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/humans_1089/logo.png", + "nodeProvider": { + "name": "Humans.ai", + "email": "contact@humans.ai", + "website": "https://humans.ai/" + }, + "stakeCurrency": { + "coinDenom": "HEART", + "coinMinimalDenom": "aheart", + "coinDecimals": 18, + "coinGeckoId": "humans-ai", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/humans_1089/logo.png" + }, + "bip44": { + "coinType": 60 + }, + "bech32Config": { + "bech32PrefixAccAddr": "human", + "bech32PrefixAccPub": "humanpub", + "bech32PrefixValAddr": "humanvaloper", + "bech32PrefixValPub": "humanvaloperpub", + "bech32PrefixConsAddr": "humanvalcons", + "bech32PrefixConsPub": "humanvalconspub" + }, + "currencies": [ + { + "coinDenom": "HEART", + "coinMinimalDenom": "aheart", + "coinDecimals": 18 + } + ], + "feeCurrencies": [ + { + "coinDenom": "HEART", + "coinMinimalDenom": "aheart", + "coinDecimals": 18, + "gasPriceStep": { + "low": 80000000000, + "average": 120000000000, + "high": 160000000000 + } + } + ], + "features": ["eth-address-gen", "eth-key-sign"] +} diff --git a/cosmos/iconlake-testnet.json b/cosmos/iconlake-testnet.json index 739f549bf..ffaaf1d9d 100644 --- a/cosmos/iconlake-testnet.json +++ b/cosmos/iconlake-testnet.json @@ -52,9 +52,9 @@ "coinDecimals": 4, "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/iconlake-testnet/udrop.png", "gasPriceStep": { - "low": 0.01, - "average": 0.05, - "high": 0.1 + "low": 0.1, + "average": 0.5, + "high": 1 } }, { diff --git a/cosmos/iconlake.json b/cosmos/iconlake.json new file mode 100644 index 000000000..dfe158e59 --- /dev/null +++ b/cosmos/iconlake.json @@ -0,0 +1,73 @@ +{ + "rpc": "https://rpc.iconlake.com", + "rest": "https://lcd.iconlake.com", + "nodeProvider": { + "name": "iconLake", + "email": "support@iconlake.com", + "website": "https://iconlake.com/" + }, + "chainId": "iconlake-1", + "chainName": "iconLake", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/iconlake/logo.png", + "bip44": { + "coinType": 1009 + }, + "alternativeBIP44s": [ + { + "coinType": 118 + } + ], + "bech32Config": { + "bech32PrefixAccAddr": "iconlake", + "bech32PrefixAccPub": "iconlakepub", + "bech32PrefixValAddr": "iconlakevaloper", + "bech32PrefixValPub": "iconlakevaloperpub", + "bech32PrefixConsAddr": "iconlakevalcons", + "bech32PrefixConsPub": "iconlakevalconspub" + }, + "stakeCurrency": { + "coinDenom": "LAKE", + "coinMinimalDenom": "ulake", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/iconlake/ulake.png" + }, + "currencies": [ + { + "coinDenom": "LAKE", + "coinMinimalDenom": "ulake", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/iconlake/ulake.png" + }, + { + "coinDenom": "DROP", + "coinMinimalDenom": "udrop", + "coinDecimals": 4, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/iconlake/udrop.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "DROP", + "coinMinimalDenom": "udrop", + "coinDecimals": 4, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/iconlake/udrop.png", + "gasPriceStep": { + "low": 0.1, + "average": 0.5, + "high": 1 + } + }, + { + "coinDenom": "LAKE", + "coinMinimalDenom": "ulake", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/iconlake/ulake.png", + "gasPriceStep": { + "low": 0.01, + "average": 0.025, + "high": 0.04 + } + } + ], + "features": [] +} diff --git a/cosmos/icplaza_13141619.json b/cosmos/icplaza_13141619.json deleted file mode 100644 index 2619d776c..000000000 --- a/cosmos/icplaza_13141619.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "rpc": "https://cosrpc.icplaza.pro", - "rest": "https://node92.icplaza.pro", - "chainId": "icplaza_13141619-1", - "chainName": "ICPlaza", - "nodeProvider": { - "name": "ICPlaza Node", - "email": "0xf48892@gmail.com", - "website":"https://www.icplaza.pro/" - }, - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/icplaza_13141619/chain.png", - "stakeCurrency": { - "coinDenom": "ICT", - "coinMinimalDenom": "uict", - "coinDecimals": 18, - "coinGeckoId": "ict" - }, - "bip44": { - "coinType": 60 - }, - "bech32Config": { - "bech32PrefixAccAddr": "icplaza", - "bech32PrefixAccPub": "icplazapub", - "bech32PrefixValAddr": "icplazavaloper", - "bech32PrefixValPub": "icplazavaloperpub", - "bech32PrefixConsAddr": "icplazavalcons", - "bech32PrefixConsPub": "icplazavalconspub" - }, - "currencies": [ - { - "coinDenom": "ICT", - "coinMinimalDenom": "uict", - "coinDecimals": 18, - "coinGeckoId": "ict" - } - ], - "feeCurrencies": [ - { - "coinDenom": "ICT", - "coinMinimalDenom": "uict", - "coinDecimals": 18, - "coinGeckoId": "ict", - "gasPriceStep": { - "low": 25000000000, - "average": 25000000000, - "high": 40000000000 - } - } - ], - "features": [ - "eth-address-gen", - "eth-key-sign" - ] -} \ No newline at end of file diff --git a/cosmos/indigo.json b/cosmos/indigo.json new file mode 100644 index 000000000..dfdb0efd6 --- /dev/null +++ b/cosmos/indigo.json @@ -0,0 +1,74 @@ +{ + "rpc": "https://testnet-rpc.pryzm.zone", + "rest": "https://testnet-api.pryzm.zone", + "nodeProvider": { + "name": "PRYZM", + "email": "support@pryzm.zone", + "website": "https://pryzm.zone/" + }, + "chainId": "indigo-1", + "chainName": "pryzmtestnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/indigo/chain.png", + "stakeCurrency": { + "coinDenom": "PRYZM", + "coinMinimalDenom": "upryzm", + "coinDecimals": 6 + }, + "walletUrlForStaking": "https://testnets.cosmosrun.info/pryzm-indigo-1/staking", + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "pryzm", + "bech32PrefixAccPub": "pryzmpub", + "bech32PrefixValAddr": "pryzmvaloper", + "bech32PrefixValPub": "pryzmvaloperpub", + "bech32PrefixConsAddr": "pryzmvalcons", + "bech32PrefixConsPub": "pryzmvalconspub" + }, + "currencies": [ + { + "coinDenom": "PRYZM", + "coinMinimalDenom": "upryzm", + "coinDecimals": 6 + }, + { + "coinDenom": "USDSim", + "coinMinimalDenom": "factory/pryzm15k9s9p0ar0cx27nayrgk6vmhyec3lj7vkry7rx/uusdsim", + "coinDecimals": 6 + } + ], + "feeCurrencies": [ + { + "coinDenom": "PRYZM", + "coinMinimalDenom": "upryzm", + "coinDecimals": 6 + }, + { + "coinDenom": "PRYZM", + "coinMinimalDenom": "factory/pryzm15k9s9p0ar0cx27nayrgk6vmhyec3lj7vkry7rx/uusdsim", + "coinDecimals": 6 + }, + { + "coinDenom": "OSMO", + "coinMinimalDenom": "ibc/92E0120F15D037353CFB73C14651FC8930ADC05B93100FD7754D3A689E53B333", + "coinDecimals": 6 + }, + { + "coinDenom": "ATOM", + "coinMinimalDenom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "coinDecimals": 6 + }, + { + "coinDenom": "LUNA", + "coinMinimalDenom": "ibc/265435C653FE85CD659E88CD51D4A735BDD4D3804871400378A488C71D68C72B", + "coinDecimals": 6 + }, + { + "coinDenom": "INJ", + "coinMinimalDenom": "ibc/1704820C9E1F4A9925E0F23D3B92ED0E53DEE28726257E39FABD444BFC6B6AE3", + "coinDecimals": 18 + } + ], + "features": ["cosmwasm"] +} diff --git a/cosmos/initiation.json b/cosmos/initiation.json new file mode 100644 index 000000000..98104caa4 --- /dev/null +++ b/cosmos/initiation.json @@ -0,0 +1,50 @@ +{ + "rpc": "https://rpc-initia-testnet.keplr.app", + "rest": "https://lcd-initia-testnet.keplr.app", + "chainId": "initiation-1", + "chainName": "Initia Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/initiation/chain.png", + "walletUrlForStaking": "https://testnet.keplr.app/chains/initia", + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "init", + "bech32PrefixAccPub": "initpub", + "bech32PrefixValAddr": "initvaloper", + "bech32PrefixValPub": "initvaloperpub", + "bech32PrefixConsAddr": "initvalcons", + "bech32PrefixConsPub": "initvalconspub" + }, + "currencies": [ + { + "coinDenom": "INIT", + "coinMinimalDenom": "uinit", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/initiation/chain.png" + }, + { + "coinDenom": "GAS", + "coinMinimalDenom": "move/944f8dd8dc49f96c25fea9849f16436dcfa6d564eec802f3ef7f8b3ea85368ff", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/initiation/gas.png" + } + ], + "stakeCurrency": { + "coinDenom": "INIT", + "coinMinimalDenom": "uinit", + "coinDecimals": 6 + }, + "feeCurrencies": [ + { + "coinDenom": "GAS", + "coinMinimalDenom": "move/944f8dd8dc49f96c25fea9849f16436dcfa6d564eec802f3ef7f8b3ea85368ff", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.15, + "average": 0.3, + "high": 1 + } + } + ] +} diff --git a/cosmos/injective.json b/cosmos/injective.json index 93570d7ed..6ed54d8c8 100644 --- a/cosmos/injective.json +++ b/cosmos/injective.json @@ -51,6 +51,51 @@ "coinDecimals": 6, "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/injective/factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/hava.png" + }, + { + "coinDenom": "KIRA", + "coinDecimals": 6, + "coinMinimalDenom": "factory/inj1xy3kvlr4q4wdd6lrelsrw2fk2ged0any44hhwq/KIRA", + "coinGeckoId": "kira-the-injective-cat", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/injective/factory/inj1xy3kvlr4q4wdd6lrelsrw2fk2ged0any44hhwq/KIRA.png" + }, + { + "coinDenom": "HDRO", + "coinMinimalDenom": "factory/inj1etz0laas6h7vemg3qtd67jpr6lh8v7xz7gfzqw/hdro", + "coinDecimals": 6, + "coinGeckoId": "hydro-protocol-2", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/injective/factory/inj1etz0laas6h7vemg3qtd67jpr6lh8v7xz7gfzqw/hdro.png" + }, + { + "coinDenom": "QUNT", + "coinDecimals": 6, + "coinMinimalDenom": "factory/inj127l5a2wmkyvucxdlupqyac3y0v6wqfhq03ka64/qunt", + "coinGeckoId": "injective-quants", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/injective/factory/inj127l5a2wmkyvucxdlupqyac3y0v6wqfhq03ka64/QUNT.png" + }, + { + "coinDenom": "HOUND", + "coinDecimals": 6, + "coinMinimalDenom": "factory/inj1nccncwqx5q22lf4uh83dhe89e3f0sh8kljf055/HOUND", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/injective/factory/inj1nccncwqx5q22lf4uh83dhe89e3f0sh8kljf055/HOUND.png" + }, + { + "coinDenom": "bINJ", + "coinDecimals": 18, + "coinMinimalDenom": "factory/inj1dxp690rd86xltejgfq2fa7f2nxtgmm5cer3hvu/bINJ", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/injective/factory/inj1dxp690rd86xltejgfq2fa7f2nxtgmm5cer3hvu/bINJ.png" + }, + { + "coinDenom": "SYN", + "coinDecimals": 6, + "coinMinimalDenom": "factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/SYN", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/injective/factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/syn.png" + }, + { + "coinDenom": "ashSYN", + "coinMinimalDenom": "factory/inj1ej2f3lmpxj4djsmmuxvnfuvplrut7zmwrq7zj8/syn.ash", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/injective/factory/inj1ej2f3lmpxj4djsmmuxvnfuvplrut7zmwrq7zj8/syn.ash.png" } ], "feeCurrencies": [ diff --git a/cosmos/inns.json b/cosmos/inns.json index 62bbf14bd..75bb485bb 100644 --- a/cosmos/inns.json +++ b/cosmos/inns.json @@ -24,8 +24,7 @@ { "coinDenom": "INNS", "coinMinimalDenom": "uinns", - "coinDecimals": 6, - "coinGeckoId": "Inns" + "coinDecimals": 6 } ], "feeCurrencies": [ @@ -33,7 +32,6 @@ "coinDenom": "INNS", "coinMinimalDenom": "uinns", "coinDecimals": 6, - "coinGeckoId": "Inns", "gasPriceStep": { "low": 0.01, "average": 0.025, @@ -44,10 +42,9 @@ "stakeCurrency": { "coinDenom": "INNS", "coinMinimalDenom": "uinns", - "coinDecimals": 6, - "coinGeckoId": "Inns" + "coinDecimals": 6 }, "features": [ "cosmwasm" ] -} \ No newline at end of file +} diff --git a/cosmos/ixo.json b/cosmos/ixo.json index 92a40fc94..ff18a76d5 100644 --- a/cosmos/ixo.json +++ b/cosmos/ixo.json @@ -1,10 +1,10 @@ { - "rpc": "https://ixo-rpc.ibs.team", - "rest": "https://ixo-api.ibs.team", + "rpc": "https://ixo.rpc.m.stavr.tech", + "rest": "https://ixo.api.m.stavr.tech", "nodeProvider": { - "name": "Inter Blockchain Services", - "email": "contact@ibs.team", - "website": "https://ibs.team" + "name": "STAVR", + "email": "stavr.tech@gmail.com", + "website": "https://stavr-team.gitbook.io/" }, "chainId": "ixo-5", "chainName": "ixo", diff --git a/cosmos/joltify_1729.json b/cosmos/joltify_1729.json new file mode 100644 index 000000000..5edbb2419 --- /dev/null +++ b/cosmos/joltify_1729.json @@ -0,0 +1,55 @@ +{ + "rpc": "https://rpc.joltify.io", + "rest": "https://lcd.joltify.io", + "nodeProvider": { + "name": "Joltify", + "email": "contact@joltify.io", + "website":"https://joltify.io" + }, + "chainId": "joltify_1729-1", + "chainName": "Joltify", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/joltify_1729/chain.png", + "stakeCurrency": { + "coinDenom": "JOLT", + "coinMinimalDenom": "ujolt", + "coinDecimals": 6, + "coinGeckoId": "joltify", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/joltify_1729/ujolt.png" + }, + "walletUrlForStaking": "https://app.joltify.io/gov/validators", + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "jolt", + "bech32PrefixAccPub": "joltpub", + "bech32PrefixValAddr": "joltvaloper", + "bech32PrefixValPub": "joltvaloperpub", + "bech32PrefixConsAddr": "joltvalcons", + "bech32PrefixConsPub": "joltvalconspub" + }, + "currencies": [ + { + "coinDenom": "JOLT", + "coinMinimalDenom": "ujolt", + "coinDecimals": 6, + "coinGeckoId": "joltify", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/joltify_1729/ujolt.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "JOLT", + "coinMinimalDenom": "ujolt", + "coinDecimals": 6, + "coinGeckoId": "joltify", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/joltify_1729/ujolt.png", + "gasPriceStep": { + "low": 0, + "average": 0, + "high": 0.075 + } + } + ], + "features": [] +} diff --git a/cosmos/kaiyo.json b/cosmos/kaiyo.json index ef1ac20d9..f334ca909 100644 --- a/cosmos/kaiyo.json +++ b/cosmos/kaiyo.json @@ -34,11 +34,37 @@ "coinDecimals": 6, "coinGeckoId": "usk" }, - { + { "coinDenom": "MNTA", "coinMinimalDenom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", "coinDecimals": 6, "coinGeckoId": "mantadao" + }, + { + "coinDenom": "bKUJI", + "coinMinimalDenom": "factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/boneKuji", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/kaiyo/factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/bKUJI.png" + }, + { + "coinDenom": "AQLA", + "coinMinimalDenom": "factory/kujira1xe0awk5planmtsmjel5xtx2hzhqdw5p8z66yqd/uaqla", + "coinDecimals": 6, + "coinGeckoId": "aqualibre", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/kaiyo/factory/kujira1xe0awk5planmtsmjel5xtx2hzhqdw5p8z66yqd/AQLA.png" + }, + { + "coinDenom": "NAMI", + "coinMinimalDenom": "factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/unami", + "coinDecimals": 6, + "coinGeckoId": "nami-protocol", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/kaiyo/factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/unami.png" + }, + { + "coinDenom": "CORAL", + "coinMinimalDenom": "factory/kujira18uqsnxsvxdzg4lfz60tah2k0mdjg6scj8dxggk/CORAL", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/kaiyo/factory/kujira18uqsnxsvxdzg4lfz60tah2k0mdjg6scj8dxggk/CORAL.png" } ], "feeCurrencies": [ @@ -91,7 +117,7 @@ "coinDecimals": 6, "coinGeckoId": "juno-network" }, - { + { "coinDenom": "MNTA", "coinMinimalDenom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", "coinDecimals": 6, @@ -129,5 +155,7 @@ "coinGeckoId": "kujira", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/kaiyo/ukuji.png" }, - "features": ["cosmwasm"] -} + "features": [ + "cosmwasm" + ] +} \ No newline at end of file diff --git a/cosmos/kaon.json b/cosmos/kaon.json index f5c2af029..48993b427 100644 --- a/cosmos/kaon.json +++ b/cosmos/kaon.json @@ -1,9 +1,14 @@ { - "rpc": "https://rpc-eu-1.kaon.kyve.network", - "rest": "https://api-eu-1.kaon.kyve.network", + "rpc": "https://rpc-kyve-test.ecostake.com", + "rest": "https://rest-kyve-test.ecostake.com", + "nodeProvider": { + "name": "ecostake", + "email": "hello@ecostake.com", + "website":"https://www.ecostake.com/" + }, "chainId": "kaon-1", "chainName": "Kaon (Testnet)", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/kyve/chain.png", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/kaon/chain.png", "stakeCurrency": { "coinDenom": "KYVE", "coinMinimalDenom": "tkyve", diff --git a/cosmos/lambda_92000.json b/cosmos/lambda_92000.json new file mode 100644 index 000000000..5552316b9 --- /dev/null +++ b/cosmos/lambda_92000.json @@ -0,0 +1,61 @@ +{ + "rpc": "https://rpc.lambda.nodestake.org", + "rest": "https://rest.lambda.im", + "chainId": "lambda_92000-1", + "chainName": "Lambda", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/lambda_92000/lambda.png", + "evm": { + "chainId": 92000, + "rpc": "https://evm.lambda.im" + }, + "nodeProvider": { + "name": "NodeStake", + "email": "info@nodestake.top", + "website": "https://nodestake.top" + }, + "stakeCurrency": { + "coinDenom": "LAMB", + "coinMinimalDenom": "ulamb", + "coinDecimals": 18, + "coinGeckoId": "lambda", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/lambda_92000/lambda.png" + }, + "walletUrlForStaking": "https://app.lambda.im/staking", + "bip44": { + "coinType": 60 + }, + "bech32Config": { + "bech32PrefixAccAddr": "lamb", + "bech32PrefixAccPub": "lambpub", + "bech32PrefixValAddr": "lambvaloper", + "bech32PrefixValPub": "lambvaloperpub", + "bech32PrefixConsAddr": "lambvalcons", + "bech32PrefixConsPub": "lambvalconspub" + }, + "currencies": [ + { + "coinDenom": "LAMB", + "coinMinimalDenom": "ulamb", + "coinDecimals": 18, + "coinGeckoId": "lambda", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/lambda_92000/lambda.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "LAMB", + "coinMinimalDenom": "ulamb", + "coinDecimals": 18, + "coinGeckoId": "lambda", + "gasPriceStep": { + "low": 3750000000000, + "average": 3750000000000, + "high": 6000000000000 + } + } + ], + "features": [ + "eth-address-gen", + "eth-key-sign" + ] +} \ No newline at end of file diff --git a/cosmos/lava-mainnet.json b/cosmos/lava-mainnet.json new file mode 100644 index 000000000..6ffa627d7 --- /dev/null +++ b/cosmos/lava-mainnet.json @@ -0,0 +1,50 @@ +{ + "rpc": "https://rpc-lava.keplr.app", + "rest": "https://lcd-lava.keplr.app", + "chainId": "lava-mainnet-1", + "chainName": "Lava", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/lava-mainnet/chain.png", + "stakeCurrency": { + "coinDenom": "LAVA", + "coinMinimalDenom": "ulava", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/lava-mainnet/ulava.png", + "coinGeckoId": "lava-network" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "lava@", + "bech32PrefixAccPub": "lava@pub", + "bech32PrefixValAddr": "lava@valoper", + "bech32PrefixValPub": "lava@valoperpub", + "bech32PrefixConsAddr": "lava@valcons", + "bech32PrefixConsPub": "lava@valconspub" + }, + "currencies": [ + { + "coinDenom": "LAVA", + "coinMinimalDenom": "ulava", + "coinDecimals": 6, + "coinGeckoId": "lava-network", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/lava-mainnet/ulava.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "LAVA", + "coinMinimalDenom": "ulava", + "coinDecimals": 6, + "coinGeckoId": "lava-network", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/lava-mainnet/ulava.png", + "gasPriceStep": { + "low": 0.00002, + "average": 0.025, + "high": 0.05 + } + } + ], + "features": [], + "walletUrlForStaking": "https://wallet.keplr.app/chains/lava" +} diff --git a/cosmos/lava-testnet.json b/cosmos/lava-testnet.json new file mode 100644 index 000000000..95aa08478 --- /dev/null +++ b/cosmos/lava-testnet.json @@ -0,0 +1,51 @@ +{ + "rpc": "https://lav1.tendermintrpc.lava.build", + "rest": "https://lav1.rest.lava.build", + "chainId": "lava-testnet-2", + "chainName": "Lava Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/lava-testnet/chain.png", + "stakeCurrency": { + "coinDenom": "LAVA", + "coinMinimalDenom": "ulava", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/lava-testnet/ulava.png" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "lava@", + "bech32PrefixAccPub": "lava@pub", + "bech32PrefixValAddr": "lava@valoper", + "bech32PrefixValPub": "lava@valoperpub", + "bech32PrefixConsAddr": "lava@valcons", + "bech32PrefixConsPub": "lava@valconspub" + }, + "currencies": [ + { + "coinDenom": "LAVA", + "coinMinimalDenom": "ulava", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/lava-testnet/ulava.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "LAVA", + "coinMinimalDenom": "ulava", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/lava-testnet/ulava.png", + "gasPriceStep": { + "low": 0.00002, + "average": 0.025, + "high": 0.05 + } + } + ], + "features": [], + "nodeProvider": { + "name": "Lava", + "website": "https://www.lavanet.xyz/", + "email": "amir@lava.foundation" + } +} diff --git a/cosmos/loop.json b/cosmos/loop.json new file mode 100644 index 000000000..ac2b3668e --- /dev/null +++ b/cosmos/loop.json @@ -0,0 +1,51 @@ +{ + "rpc": "https://rpc.loop.pfc.zone", + "rest": "https://api.loop.pfc.zone", + "nodeProvider": { + "name": "PFC", + "website":"https://pfc.zone/", + "email": "pfc@pfc.zone" + }, + "chainId": "loop-1", + "chainName": "Loop Fans", + "stakeCurrency": { + "coinDenom": "TOKEN", + "coinMinimalDenom": "token", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/loop/token.png" + }, + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/loop/chain.png", + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "loop", + "bech32PrefixAccPub": "looppub", + "bech32PrefixValAddr": "loopvaloper", + "bech32PrefixValPub": "loopvaloperpub", + "bech32PrefixConsAddr": "loopvalcons", + "bech32PrefixConsPub": "loopvalconspub" + }, + "currencies": [ + { + "coinDenom": "TOKEN", + "coinMinimalDenom": "token", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/loop/token.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "TOKEN", + "coinMinimalDenom": "token", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/loop/token.png", + "gasPriceStep": { + "low": 0, + "average": 0, + "high": 0.0 + } + } + ], + "features": ["cosmwasm"] +} diff --git a/cosmos/lum-network.json b/cosmos/lum-network.json index 557e75ccd..df0908780 100644 --- a/cosmos/lum-network.json +++ b/cosmos/lum-network.json @@ -1,6 +1,6 @@ { - "rpc": "https://node0.mainnet.lum.network/rpc", - "rest": "https://node0.mainnet.lum.network/rest", + "rpc": "https://rpc.node0.mainnet.lum.network", + "rest": "https://rest.node0.mainnet.lum.network", "chainId": "lum-network-1", "chainName": "Lum Network", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/lum-network/chain.png", @@ -13,7 +13,7 @@ "nodeProvider": { "name": "Lum Network", "email": "contact@lum.network", - "website": "https://lum.network" + "website": "https://lum.network/" }, "walletUrlForStaking": "https://wallet.lum.network", "bip44": { @@ -53,4 +53,4 @@ } } ] -} \ No newline at end of file +} diff --git a/cosmos/mainnet-tura.json b/cosmos/mainnet-tura.json new file mode 100644 index 000000000..ca44bf266 --- /dev/null +++ b/cosmos/mainnet-tura.json @@ -0,0 +1,56 @@ +{ + "rpc": "https://rpc-beta1.turablockchain.com", + "rest": "https://lcd-beta1.turablockchain.com", + "chainId": "mainnet-tura", + "chainName": "Tura", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mainnet-tura/chain.png", + "stakeCurrency": { + "coinDenom": "TURA", + "coinMinimalDenom": "utura", + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mainnet-tura/utura.png" + }, + "nodeProvider": { + "name": "TuraBlockchain", + "email": "larryliu@roturalabs.com", + "website":"http://turablockchain.com/" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "tura", + "bech32PrefixAccPub": "turapub", + "bech32PrefixValAddr": "turavaloper", + "bech32PrefixValPub": "turavaloperpub", + "bech32PrefixConsAddr": "turavalcons", + "bech32PrefixConsPub": "turavalconspub" + }, + "currencies": [ + { + "coinDenom": "TURA", + "coinMinimalDenom": "utura", + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mainnet-tura/utura.png" + }, + { + "coinDenom": "TAGS", + "coinMinimalDenom": "utags", + "coinDecimals": 8 + } + ], + "feeCurrencies": [ + { + "coinDenom": "TURA", + "coinMinimalDenom": "utura", + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mainnet-tura/utura.png", + "gasPriceStep": { + "low": 0.01, + "average": 0.025, + "high": 0.04 + } + } + ], + "features": [] +} diff --git a/cosmos/mande_18071918.json b/cosmos/mande_18071918.json new file mode 100644 index 000000000..89237a788 --- /dev/null +++ b/cosmos/mande_18071918.json @@ -0,0 +1,52 @@ +{ + "rpc": "https://mande-mainnet-tendermint.public.blastapi.io", + "rest": "https://mande-mainnet-rest.public.blastapi.io", + "chainId": "mande_18071918-1", + "chainName": "Mande Network", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mande_18071918/chain.png", + "stakeCurrency": { + "coinDenom": "MAND", + "coinMinimalDenom": "amand", + "coinDecimals": 18 + }, + "nodeProvider": { + "name": "Bware Labs", + "email": "contact@bwarelabs.com", + "website": "https://bwarelabs.com" + }, + "walletUrlForStaking": "https://portal.dymension.xyz/rollapp/mande_18071918-1/staking", + "bip44": { + "coinType": 60 + }, + "bech32Config": { + "bech32PrefixAccAddr": "mande", + "bech32PrefixAccPub": "mandepub", + "bech32PrefixValAddr": "mandevaloper", + "bech32PrefixValPub": "mandevaloperpub", + "bech32PrefixConsAddr": "mandevalcons", + "bech32PrefixConsPub": "mandevalconspub" + }, + "currencies": [ + { + "coinDenom": "MAND", + "coinMinimalDenom": "amand", + "coinDecimals": 18 + } + ], + "feeCurrencies": [ + { + "coinDenom": "MAND", + "coinMinimalDenom": "amand", + "coinDecimals": 18, + "gasPriceStep": { + "average": 20000000000, + "high": 20000000000, + "low": 20000000000 + } + } + ], + "features": [ + "eth-address-gen", + "eth-key-sign" + ] +} diff --git a/cosmos/mantrachain-testnet.json b/cosmos/mantra-hongbai.json similarity index 66% rename from cosmos/mantrachain-testnet.json rename to cosmos/mantra-hongbai.json index 6a2055543..8d9a99fff 100644 --- a/cosmos/mantrachain-testnet.json +++ b/cosmos/mantra-hongbai.json @@ -1,9 +1,9 @@ { - "chainId": "mantrachain-testnet-1", - "chainName": "MANTRA Chain Testnet", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mantrachain-testnet/chain.png", - "rpc": "https://rpc.testnet.mantrachain.io", - "rest": "https://api.testnet.mantrachain.io", + "chainId": "mantra-hongbai-1", + "chainName": "MANTRA Hongbai Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mantra-hongbai/chain.png", + "rpc": "https://rpc.hongbai.mantrachain.io", + "rest": "https://api.hongbai.mantrachain.io", "nodeProvider": { "name": "MANTRA Chain", "email": "contact@mantrachain.io", @@ -22,15 +22,15 @@ }, "currencies": [ { - "coinDenom": "AUM", - "coinMinimalDenom": "uaum", + "coinDenom": "OM", + "coinMinimalDenom": "uom", "coinDecimals": 6 } ], "feeCurrencies": [ { - "coinDenom": "AUM", - "coinMinimalDenom": "uaum", + "coinDenom": "OM", + "coinMinimalDenom": "uom", "coinDecimals": 6, "gasPriceStep": { "low": 0.01, @@ -40,8 +40,8 @@ } ], "stakeCurrency": { - "coinDenom": "AUM", - "coinMinimalDenom": "uaum", + "coinDenom": "OM", + "coinMinimalDenom": "uom", "coinDecimals": 6 }, "features": [ diff --git a/cosmos/meme.json b/cosmos/meme.json index e522c10b7..7b9eb179d 100644 --- a/cosmos/meme.json +++ b/cosmos/meme.json @@ -29,14 +29,12 @@ "currencies": [{ "coinDenom": "MEME", "coinMinimalDenom": "umeme", - "coinDecimals": 6, - "coinGeckoId": "meme-netowrk" + "coinDecimals": 6 }], "feeCurrencies": [{ "coinDenom": "MEME", "coinMinimalDenom": "umeme", "coinDecimals": 6, - "coinGeckoId": "meme-network", "gasPriceStep": { "low": 0.025, "average": 0.035, diff --git a/cosmos/migaloo.json b/cosmos/migaloo.json index 676eaed51..8f3dc7f36 100644 --- a/cosmos/migaloo.json +++ b/cosmos/migaloo.json @@ -2,12 +2,12 @@ "chainId":"migaloo-1", "chainName":"Migaloo", "chainSymbolImageUrl":"https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/migaloo/chain.png", - "rpc":"https://rpc-whitewhale-ia.cosmosia.notional.ventures", - "rest":"https://api-whitewhale-ia.cosmosia.notional.ventures", + "rpc":"https://migaloo-rpc.polkachu.com:443", + "rest":"https://migaloo-api.polkachu.com:443", "nodeProvider":{ - "name":"Notional", - "email":"contact@notional.ventures", - "website":"https://notional.ventures/" + "name":"Polkachu", + "email":"hello@polkachu.com", + "website":"https://polkachu.com/" }, "bip44":{ "coinType":118 @@ -45,6 +45,30 @@ "coinMinimalDenom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark", "coinDecimals": 6, "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/migaloo/factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark.png" + }, + { + "coinDenom": "bWHALE", + "coinMinimalDenom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/migaloo/factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/bWHALE.png" + }, + { + "coinDenom": "RSTK", + "coinMinimalDenom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/migaloo/factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk.png" + }, + { + "coinDenom": "GRAC", + "coinMinimalDenom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/migaloo/factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/grac.png" + }, + { + "coinDenom": "ampGASH", + "coinMinimalDenom": "factory/migaloo1nsskhvvh0msm7d5ke2kfg24a8d4jecsnxd28s27h0uz5kf9ap60shlqmcl/ampGASH", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/migaloo/factory/migaloo1nsskhvvh0msm7d5ke2kfg24a8d4jecsnxd28s27h0uz5kf9ap60shlqmcl/ampGASH.png" } ], "feeCurrencies":[ diff --git a/cosmos/mineplex-mainnet.json b/cosmos/mineplex-mainnet.json new file mode 100644 index 000000000..449a48bd4 --- /dev/null +++ b/cosmos/mineplex-mainnet.json @@ -0,0 +1,56 @@ +{ + "rpc": "https://tendermint-rpc.xfi.ms/", + "rest": "https://cosmos-api.xfi.ms/", + "chainId": "mineplex-mainnet-1", + "chainName": "MinePlex Mainnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mineplex-mainnet/mineplex.png", + "nodeProvider": { + "name": "CrossFi Foundation", + "website":"https://crossfi.org/", + "email": "info@crossfi.org" + }, + "stakeCurrency": { + "coinDenom": "MPX", + "coinMinimalDenom": "mpx", + "coinDecimals": 18 + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "mx", + "bech32PrefixAccPub": "mxpub", + "bech32PrefixValAddr": "mxvaloper", + "bech32PrefixValPub": "mxvaloperpub", + "bech32PrefixConsAddr": "mxvalcons", + "bech32PrefixConsPub": "mxvalconspub" + }, + "currencies": [ + { + "coinDenom": "MPX", + "coinMinimalDenom": "mpx", + "coinDecimals": 18 + },{ + "coinDenom": "XFI", + "coinMinimalDenom": "xfi", + "coinDecimals": 18 + },{ + "coinDenom": "XFT", + "coinMinimalDenom": "xft", + "coinDecimals": 18 + } + ], + "feeCurrencies": [ + { + "coinDenom": "MPX", + "coinMinimalDenom": "mpx", + "coinDecimals": 18, + "gasPriceStep": { + "low": 10000000000000, + "average": 15000000000000, + "high": 20000000000000 + } + } + ], + "features": [] +} diff --git a/cosmos/mutelandia1.json b/cosmos/mutelandia1.json new file mode 100644 index 000000000..b30cbdd1f --- /dev/null +++ b/cosmos/mutelandia1.json @@ -0,0 +1,51 @@ +{ + "bech32Config": { + "bech32PrefixAccAddr": "mute", + "bech32PrefixAccPub": "mutepub", + "bech32PrefixConsAddr": "mutevalcons", + "bech32PrefixConsPub": "mutevalconspub", + "bech32PrefixValAddr": "mutevaloper", + "bech32PrefixValPub": "mutevaloperpub" + }, + "bip44": { + "coinType": 118 + }, + "chainId": "mutelandia1", + "chainName": "Mutelandia Network", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mutelandia1/chain.png", + "nodeProvider": { + "name": "Mutelandia", + "email": "mutecoin@proton.me", + "website":"https://app.mutelandia.xyz" + }, + "currencies": [ + { + "coinDecimals": 6, + "coinDenom": "MUTE", + "coinMinimalDenom": "umute", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mutelandia1/chain.png" + } + ], + "features": [], + "feeCurrencies": [ + { + "coinDecimals": 6, + "coinDenom": "MUTE", + "coinMinimalDenom": "umute", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mutelandia1/chain.png", + "gasPriceStep": { + "low": 0.01, + "average": 0.02, + "high": 0.1 + } + } + ], + "rpc": "https://rpc.mutelandia.xyz/", + "rest": "https://api.mutelandia.xyz/", + "stakeCurrency": { + "coinDecimals": 6, + "coinDenom": "MUTE", + "coinMinimalDenom": "umute", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mutelandia1/chain.png" + } +} diff --git a/cosmos/neutron.json b/cosmos/neutron.json index edb9aa7c5..3dbd7adb7 100644 --- a/cosmos/neutron.json +++ b/cosmos/neutron.json @@ -114,6 +114,30 @@ "coinMinimalDenom": "factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel", "coinDecimals": 6, "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/neutron/factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel.png" + }, + { + "coinDenom": "MOO", + "coinMinimalDenom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/MOO", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/neutron/factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/MOO.png" + }, + { + "coinDenom": "SCRAP", + "coinMinimalDenom": "factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/scrap", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/neutron/factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/SCRAP.png" + }, + { + "coinDenom": "WEIRD", + "coinMinimalDenom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/neutron/factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD.png" + }, + { + "coinDenom": "SIN", + "coinMinimalDenom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sin", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/neutron/factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sinToken.png" } ], "feeCurrencies": [ diff --git a/cosmos/nibiru-itn.json b/cosmos/nibiru-devnet.json similarity index 70% rename from cosmos/nibiru-itn.json rename to cosmos/nibiru-devnet.json index 46c8e01b1..1dd09fe86 100644 --- a/cosmos/nibiru-itn.json +++ b/cosmos/nibiru-devnet.json @@ -1,13 +1,13 @@ { - "chainId": "nibiru-itn-3", - "chainName": "Nibiru Testnet", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-itn/chain.png", - "rpc": "https://rpc.itn-3.nibiru.fi/", - "rest": "https://lcd.itn-3.nibiru.fi/", + "chainId": "nibiru-devnet-1", + "chainName": "nibirudevnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-devnet/chain.png", + "rpc": "https://rpc.devnet-1.nibiru.fi/", + "rest": "https://lcd.devnet-1.nibiru.fi/", "nodeProvider": { "name": "Nibiru Team", "email": "dev@nibiru.fi", - "website": "https://app.nibiru.fi" + "website": "https://nibiru.fi" }, "bip44": { "coinType": 118 @@ -25,7 +25,7 @@ "coinDenom": "NIBI", "coinMinimalDenom": "unibi", "coinDecimals": 6, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-itn/chain.png" + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-devnet/chain.png" } ], "feeCurrencies": [ @@ -33,7 +33,7 @@ "coinDenom": "NIBI", "coinMinimalDenom": "unibi", "coinDecimals": 6, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-itn/chain.png", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-devnet/chain.png", "gasPriceStep": { "low": 0.05, "average": 0.125, @@ -45,9 +45,7 @@ "coinDenom": "NIBI", "coinMinimalDenom": "unibi", "coinDecimals": 6, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-itn/chain.png" + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-devnet/chain.png" }, - "features": [ - "cosmwasm" - ] -} \ No newline at end of file + "features": ["cosmwasm"] +} diff --git a/cosmos/nibiru-testnet.json b/cosmos/nibiru-testnet.json new file mode 100644 index 000000000..146678708 --- /dev/null +++ b/cosmos/nibiru-testnet.json @@ -0,0 +1,51 @@ +{ + "chainId": "nibiru-testnet-1", + "chainName": "nibirutestnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-testnet/chain.png", + "rpc": "https://rpc.testnet-1.nibiru.fi/", + "rest": "https://lcd.testnet-1.nibiru.fi/", + "nodeProvider": { + "name": "Nibiru Team", + "email": "dev@nibiru.fi", + "website": "https://nibiru.fi" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "nibi", + "bech32PrefixAccPub": "nibipub", + "bech32PrefixValAddr": "nibivaloper", + "bech32PrefixValPub": "nibivaloperpub", + "bech32PrefixConsAddr": "nibivalcons", + "bech32PrefixConsPub": "nibivalconspub" + }, + "currencies": [ + { + "coinDenom": "NIBI", + "coinMinimalDenom": "unibi", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-testnet/chain.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "NIBI", + "coinMinimalDenom": "unibi", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-testnet/chain.png", + "gasPriceStep": { + "low": 0.05, + "average": 0.125, + "high": 0.2 + } + } + ], + "stakeCurrency": { + "coinDenom": "NIBI", + "coinMinimalDenom": "unibi", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-testnet/chain.png" + }, + "features": ["cosmwasm"] +} diff --git a/cosmos/nillion-chain-testnet.json b/cosmos/nillion-chain-testnet.json new file mode 100644 index 000000000..659fc42aa --- /dev/null +++ b/cosmos/nillion-chain-testnet.json @@ -0,0 +1,51 @@ +{ + "rpc": "https://testnet-nillion-rpc.lavenderfive.com", + "rest": "https://testnet-nillion-api.lavenderfive.com", + "nodeProvider": { + "name": "Lavender.Five", + "email": "hello@lavenderfive.com", + "website": "https://www.lavenderfive.com/" + }, + "chainId": "nillion-chain-testnet-1", + "chainName": "Nillion Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nillion-chain-testnet/nil.png", + "stakeCurrency": { + "coinDenom": "NIL", + "coinMinimalDenom": "unil", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nillion-chain-testnet/nil.png" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "nillion", + "bech32PrefixAccPub": "nillionpub", + "bech32PrefixValAddr": "nillionvaloper", + "bech32PrefixValPub": "nillionvaloperpub", + "bech32PrefixConsAddr": "nillionvalcons", + "bech32PrefixConsPub": "nillionvalconspub" + }, + "currencies": [ + { + "coinDenom": "NIL", + "coinMinimalDenom": "unil", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nillion-chain-testnet/nil.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "NIL", + "coinMinimalDenom": "unil", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nillion-chain-testnet/nil.png", + "gasPriceStep": { + "low": 0.001, + "average": 0.001, + "high": 0.01 + } + } + ], + "features": [] +} diff --git a/cosmos/nim_1122.json b/cosmos/nim_1122.json new file mode 100644 index 000000000..50f81f7d7 --- /dev/null +++ b/cosmos/nim_1122.json @@ -0,0 +1,52 @@ +{ + "rpc": "https://nim-mainnet-tendermint.public.blastapi.io", + "rest": "https://nim-mainnet-rest.public.blastapi.io", + "chainId": "nim_1122-1", + "chainName": "NIM Network", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nim_1122/chain.png", + "stakeCurrency": { + "coinDenom": "NIM", + "coinMinimalDenom": "anim", + "coinDecimals": 18 + }, + "nodeProvider": { + "name": "Bware Labs", + "email": "contact@bwarelabs.com", + "website": "https://bwarelabs.com" + }, + "walletUrlForStaking": "https://portal.dymension.xyz/rollapp/nim_1122-1/staking", + "bip44": { + "coinType": 60 + }, + "bech32Config": { + "bech32PrefixAccAddr": "nim", + "bech32PrefixAccPub": "nimpub", + "bech32PrefixValAddr": "nimvaloper", + "bech32PrefixValPub": "nimvaloperpub", + "bech32PrefixConsAddr": "nimvalcons", + "bech32PrefixConsPub": "nimvalconspub" + }, + "currencies": [ + { + "coinDenom": "NIM", + "coinMinimalDenom": "anim", + "coinDecimals": 18 + } + ], + "feeCurrencies": [ + { + "coinDenom": "NIM", + "coinMinimalDenom": "anim", + "coinDecimals": 18, + "gasPriceStep": { + "average": 20000000000, + "high": 20000000000, + "low": 20000000000 + } + } + ], + "features": [ + "eth-address-gen", + "eth-key-sign" + ] +} diff --git a/cosmos/noble.json b/cosmos/noble.json index c73123a59..b05b1890e 100644 --- a/cosmos/noble.json +++ b/cosmos/noble.json @@ -23,6 +23,13 @@ "coinGeckoId": "usd-coin", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/noble/uusdc.png" }, + { + "coinDenom": "USDY", + "coinMinimalDenom": "ausdy", + "coinDecimals": 18, + "coinGeckoId": "ondo-us-dollar-yield", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/noble/ausdy.png" + }, { "coinDenom": "FRNZ", "coinMinimalDenom": "ufrienzies", diff --git a/cosmos/nubit-alphatestnet.json b/cosmos/nubit-alphatestnet.json new file mode 100644 index 000000000..0bbbf996a --- /dev/null +++ b/cosmos/nubit-alphatestnet.json @@ -0,0 +1,48 @@ +{ + "chainId": "nubit-alphatestnet-1", + "chainName": "Nubit Alpha Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nubit-alphatestnet/chain.png", + "rpc": "https://validator.nubit-alphatestnet-1.com:26657", + "rest": "https://validator.nubit-alphatestnet-1.com:1317", + "nodeProvider": { + "name": "Nubit", + "email": "developers@riema.xyz", + "website": "https://nubit.org" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "nubit", + "bech32PrefixAccPub": "nubitpub", + "bech32PrefixValAddr": "nubitvaloper", + "bech32PrefixValPub": "nubitvaloperpub", + "bech32PrefixConsAddr": "nubitvalcons", + "bech32PrefixConsPub": "nubitvalconspub" + }, + "currencies": [ + { + "coinDenom": "NUB", + "coinMinimalDenom": "unub", + "coinDecimals": 6 + } + ], + "feeCurrencies": [ + { + "coinDenom": "NUB", + "coinMinimalDenom": "unub", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.01, + "average": 0.02, + "high": 0.1 + } + } + ], + "stakeCurrency": { + "coinDenom": "NUB", + "coinMinimalDenom": "unub", + "coinDecimals": 6 + }, + "features": [] +} diff --git a/cosmos/nyx.json b/cosmos/nyx.json index 88c30abe4..f7d65a0ba 100644 --- a/cosmos/nyx.json +++ b/cosmos/nyx.json @@ -43,12 +43,22 @@ "coinDenom": "nym", "coinMinimalDenom": "unym", "coinDecimals": 6, - "coinGeckoId": "nym" + "coinGeckoId": "nym", + "gasPriceStep": { + "low": 0.025, + "average": 0.025, + "high": 0.04 + } }, { "coinDenom": "nyx", "coinMinimalDenom": "unyx", - "coinDecimals": 6 + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.025, + "average": 0.025, + "high": 0.04 + } } ], "features": ["cosmwasm"] diff --git a/cosmos/osmosis.json b/cosmos/osmosis.json index 8fdae7019..ce45d016e 100644 --- a/cosmos/osmosis.json +++ b/cosmos/osmosis.json @@ -100,6 +100,7 @@ "coinDenom": "WBTC", "coinMinimalDenom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", "coinDecimals": 8, + "coinGeckoId": "wrapped-bitcoin", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/osmosis/factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc.png" }, { @@ -107,6 +108,44 @@ "coinMinimalDenom": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", "coinDecimals": 6, "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/osmosis/factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos.png" + }, + { + "coinDenom": "bOSMO", + "coinMinimalDenom": "factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/osmosis/factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/bOSMO.png" + }, + { + "coinDenom": "LAB", + "coinMinimalDenom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/osmosis/factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB.png" + }, + { + "coinDenom": "TORO", + "coinMinimalDenom": "factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/osmosis/factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro.png" + }, + { + "coinDenom": "BERNESE", + "coinMinimalDenom": "factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/osmosis/factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE.png" + }, + { + "coinDenom": "USDT", + "coinMinimalDenom": "factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT", + "coinDecimals": 6, + "coinGeckoId": "tether", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/osmosis/factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT.png" + }, + { + "coinDenom": "allBTC", + "coinMinimalDenom": "factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC", + "coinDecimals": 8, + "coinGeckoId": "bitcoin", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/osmosis/factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC.png" } ], "feeCurrencies": [ diff --git a/cosmos/ovg.json b/cosmos/ovg.json new file mode 100644 index 000000000..90dc5822b --- /dev/null +++ b/cosmos/ovg.json @@ -0,0 +1,53 @@ +{ + "chainId": "ovg", + "chainName": "ovg", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ovg/chain.png", + "rpc": "https://rpc.chain.overgold.app", + "rest": "https://api.chain.overgold.app", + "nodeProvider": { + "name": "Overgold", + "email": "info@overgold.app", + "website": "https://overgold.io" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "ovg", + "bech32PrefixAccPub": "ovgpub", + "bech32PrefixValAddr": "ovgvaloper", + "bech32PrefixValPub": "ovgvaloperpub", + "bech32PrefixConsAddr": "ovgvalcons", + "bech32PrefixConsPub": "ovgvalconspub" + }, + "currencies": [ + { + "coinDenom": "OVG", + "coinMinimalDenom": "ovg", + "coinDecimals": 8 + }, + { + "coinDenom": "STOVG", + "coinMinimalDenom": "stovg", + "coinDecimals": 8 + } + ], + "feeCurrencies": [ + { + "coinDenom": "OVG", + "coinMinimalDenom": "ovg", + "coinDecimals": 8, + "gasPriceStep": { + "low": 1, + "average": 1, + "high": 14 + } + } + ], + "stakeCurrency": { + "coinDenom": "STOVG", + "coinMinimalDenom": "stovg", + "coinDecimals": 8 + }, + "features": [] +} diff --git a/cosmos/perun.json b/cosmos/perun.json new file mode 100644 index 000000000..ca8e2f23f --- /dev/null +++ b/cosmos/perun.json @@ -0,0 +1,56 @@ +{ + "chainId": "perun-1", + "chainName": "Chain4Energy", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/perun/chain.png", + "rpc": "https://rpc.c4e.io", + "rest": "https://lcd.c4e.io", + "nodeProvider": { + "name": "C4E", + "email": "intergation.support@c4e.io", + "website":"https://c4e.io" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "c4e", + "bech32PrefixAccPub": "c4epub", + "bech32PrefixValAddr": "c4evaloper", + "bech32PrefixValPub": "c4evaloperpub", + "bech32PrefixConsAddr": "c4evalcons", + "bech32PrefixConsPub": "c4evalconspub" + }, + "currencies": [ + { + "coinDenom": "C4E", + "coinMinimalDenom": "uc4e", + "coinDecimals": 6, + "coinGeckoId": "chain4energy", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/perun/chain.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "C4E", + "coinMinimalDenom": "uc4e", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.01, + "average": 0.025, + "high": 0.03 + }, + "coinGeckoId": "chain4energy", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/perun/chain.png" + } + ], + "stakeCurrency": { + "coinDenom": "C4E", + "coinMinimalDenom": "uc4e", + "coinDecimals": 6, + "coinGeckoId": "chain4energy", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/perun/chain.png" + }, + "features": [ + "cosmwasm" + ] + } diff --git a/cosmos/phoenix.json b/cosmos/phoenix.json index 7924246ed..cdb96eb1d 100644 --- a/cosmos/phoenix.json +++ b/cosmos/phoenix.json @@ -27,6 +27,12 @@ "coinDecimals": 6, "coinGeckoId": "terra-luna-2", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/phoenix/uluna.png" + }, + { + "coinDenom": "ashLUNA", + "coinMinimalDenom": "factory/terra1f5cfm48gcezl3cx25l64ngc4yktnmx7rcpj3kggu6v273742sqqs5yn5ks/luna.ash", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/phoenix/factory/terra1f5cfm48gcezl3cx25l64ngc4yktnmx7rcpj3kggu6v273742sqqs5yn5ks/luna.ash.png" } ], "feeCurrencies": [ @@ -37,7 +43,7 @@ "coinGeckoId": "terra-luna-2", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/phoenix/uluna.png", "gasPriceStep": { - "low": 0.015, + "low": 0.02, "average": 0.02, "high": 0.04 } diff --git a/cosmos/pion.json b/cosmos/pion.json index 46d94f6dc..e2702bf93 100644 --- a/cosmos/pion.json +++ b/cosmos/pion.json @@ -3,7 +3,7 @@ "rest": "https://rest-palvus.pion-1.ntrn.tech", "chainId": "pion-1", "chainName": "Neutron Testnet", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/neutron/chain.png", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/pion/chain.png", "bip44": { "coinType": 118 }, @@ -20,6 +20,17 @@ "coinDenom": "NTRN", "coinMinimalDenom": "untrn", "coinDecimals": 6 + }, + { + "coinDenom": "amATOM", + "coinMinimalDenom": "factory/neutron15lku24mqhvy4v4gryrqs4662n9v9q4ux9tayn89cmdzldjcgawushxvm76/amatom", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/pion/factory/neutron15lku24mqhvy4v4gryrqs4662n9v9q4ux9tayn89cmdzldjcgawushxvm76/amATOM.png" + }, + { + "coinDenom": "dATOM", + "coinMinimalDenom": "factory/neutron1wgtjgeprg53wthczzlzpg0vrytuvfl9j59lpf87qd3mtj2dq6xysxvwcxd/drop", + "coinDecimals": 6 } ], "feeCurrencies": [ diff --git a/cosmos/pirin.json b/cosmos/pirin.json index 576d4985e..272d55c3d 100644 --- a/cosmos/pirin.json +++ b/cosmos/pirin.json @@ -1,6 +1,6 @@ { - "rpc": "https://nolus-rpc.lavenderfive.com:443", - "rest": "https://nolus-api.lavenderfive.com:443", + "rpc": "https://pirin-cl.nolus.network:26657", + "rest": "https://pirin-cl.nolus.network:1317", "nodeProvider": { "name": "Nolus", "email": "register@nolus.io", diff --git a/cosmos/planq_7077.json b/cosmos/planq_7077.json new file mode 100644 index 000000000..8e89130b8 --- /dev/null +++ b/cosmos/planq_7077.json @@ -0,0 +1,51 @@ +{ + "chainId": "planq_7077-1", + "chainName": "Planq Atlas Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/planq_7077/chain.png", + "rpc": "https://rpc-atlas.planq.network", + "rest": "https://rest-atlas.planq.network", + "nodeProvider": { + "name": "Planq", + "email": "info@planq.network", + "website":"https://planq.network/" + }, + "bip44": { + "coinType": 60 + }, + "bech32Config": { + "bech32PrefixAccAddr": "plq", + "bech32PrefixAccPub": "plqpub", + "bech32PrefixValAddr": "plqvaloper", + "bech32PrefixValPub": "plqvaloperpub", + "bech32PrefixConsAddr": "plqvalcons", + "bech32PrefixConsPub": "plqvalconspub" + }, + "currencies": [ + { + "coinDenom": "tPLQ", + "coinMinimalDenom": "atplanq", + "coinDecimals": 18 + } + ], + "feeCurrencies": [ + { + "coinDenom": "tPLQ", + "coinMinimalDenom": "atplanq", + "coinDecimals": 18, + "gasPriceStep": { + "low": 30000000000, + "average": 35000000000, + "high": 40000000000 + } + } + ], + "stakeCurrency": { + "coinDenom": "tPLQ", + "coinMinimalDenom": "atplanq", + "coinDecimals": 18 + }, + "features": [ + "eth-address-gen", + "eth-key-sign" + ] +} diff --git a/cosmos/pryzm.json b/cosmos/pryzm.json new file mode 100644 index 000000000..aeb7af056 --- /dev/null +++ b/cosmos/pryzm.json @@ -0,0 +1,150 @@ +{ + "rpc": "https://rpc-pryzm.keplr.app", + "rest": "https://lcd-pryzm.keplr.app", + "chainId": "pryzm-1", + "chainName": "Pryzm", + "walletUrlForStaking": "https://wallet.keplr.app/chains/pryzm", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/pryzm/chain.png", + "stakeCurrency": { + "coinDenom": "PRYZM", + "coinMinimalDenom": "upryzm", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/pryzm/upryzm.png", + "coinDecimals": 6 + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "pryzm", + "bech32PrefixAccPub": "pryzmpub", + "bech32PrefixValAddr": "pryzmvaloper", + "bech32PrefixValPub": "pryzmvaloperpub", + "bech32PrefixConsAddr": "pryzmvalcons", + "bech32PrefixConsPub": "pryzmvalconspub" + }, + "currencies": [ + { + "coinDenom": "PRYZM", + "coinMinimalDenom": "upryzm", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/pryzm/upryzm.png" + }, + { + "coinDenom": "AUUU", + "coinMinimalDenom": "factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/pryzm/uauuu.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "AUUU", + "coinMinimalDenom": "factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.01, + "average": 0.015, + "high": 0.02 + } + }, + { + "coinDenom": "ATOM", + "coinMinimalDenom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "coinDecimals": 6, + "coinGeckoId": "cosmos", + "gasPriceStep": { + "low": 0.0025, + "average": 0.003, + "high": 0.004 + } + }, + { + "coinDenom": "OSMO", + "coinMinimalDenom": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", + "coinDecimals": 6, + "coinGeckoId": "osmosis", + "gasPriceStep": { + "low": 0.025, + "average": 0.03, + "high": 0.04 + } + }, + { + "coinDenom": "INJ", + "coinMinimalDenom": "ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255", + "coinDecimals": 18, + "coinGeckoId": "injective-protocol", + "gasPriceStep": { + "low": 500000000, + "average": 600000000, + "high": 700000000 + } + }, + { + "coinDenom": "TIA", + "coinMinimalDenom": "ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676", + "coinDecimals": 6, + "coinGeckoId": "celestia", + "gasPriceStep": { + "low": 0.002, + "average": 0.003, + "high": 0.004 + } + }, + { + "coinDenom": "LUNA", + "coinMinimalDenom": "ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395", + "coinDecimals": 6, + "coinGeckoId": "terra-luna-2", + "gasPriceStep": { + "low": 0.015, + "average": 0.02, + "high": 0.03 + } + }, + { + "coinDenom": "USDC", + "coinMinimalDenom": "ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65", + "coinDecimals": 6, + "coinGeckoId": "usd-coin", + "gasPriceStep": { + "low": 0.02, + "average": 0.03, + "high": 0.04 + } + }, + { + "coinDenom": "DYDX", + "coinMinimalDenom": "ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858", + "coinDecimals": 18, + "gasPriceStep": { + "low": 10000000000, + "average": 12000000000, + "high": 14000000000 + } + }, + { + "coinDenom": "stTIA", + "coinMinimalDenom": "ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.002, + "average": 0.003, + "high": 0.004 + } + }, + { + "coinDenom": "stDYDX", + "coinMinimalDenom": "ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE", + "coinDecimals": 18, + "gasPriceStep": { + "low": 10000000000, + "average": 12000000000, + "high": 14000000000 + } + } + ], + "features": [ + "cosmwasm" + ] +} diff --git a/cosmos/realionetwork_3301.json b/cosmos/realionetwork_3301.json index 415d65496..c6d11598c 100644 --- a/cosmos/realionetwork_3301.json +++ b/cosmos/realionetwork_3301.json @@ -1,10 +1,10 @@ { - "rpc": "https://realio-rpc.genznodes.dev", - "rest": "https://realio-api.genznodes.dev", + "rpc": "https://rpc.realio.network/", + "rest": "https://api.realio.network/", "nodeProvider": { - "name": "Genznodes", - "email": "genzbit@genznodes.dev", - "website": "https://genznodes.dev/" + "name": "Realio", + "email": "devops@realio.fund", + "website": "https://realio.network" }, "chainId": "realionetwork_3301-1", "chainName": "Realio", @@ -59,4 +59,4 @@ "eth-address-gen", "eth-key-sign" ] -} +} \ No newline at end of file diff --git a/cosmos/router_9600.json b/cosmos/router_9600.json new file mode 100644 index 000000000..1f9269087 --- /dev/null +++ b/cosmos/router_9600.json @@ -0,0 +1,57 @@ +{ + "rpc": "https://sentry.tm.rpc.routerprotocol.com", + "rest": "https://sentry.lcd.routerprotocol.com", + "chainId": "router_9600-1", + "chainName": "Router", + "evm": { + "chainId": 9600, + "rpc": "https://sentry.evm.rpc.routerprotocol.com" + }, + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/router_9600/chain.png", + "stakeCurrency": { + "coinDenom": "ROUTE", + "coinMinimalDenom": "route", + "coinDecimals": 18, + "coinGeckoId": "route", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/router_9600/chain.png" + }, + "walletUrlForStaking": "https://hub.routerprotocol.com/staking", + "bip44": { "coinType": 60 }, + "bech32Config": { + "bech32PrefixAccAddr": "router", + "bech32PrefixAccPub": "routerpub", + "bech32PrefixValAddr": "routervaloper", + "bech32PrefixValPub": "routervaloperpub", + "bech32PrefixConsAddr": "routervalcons", + "bech32PrefixConsPub": "routervalconspub" + }, + "currencies": [ + { + "coinDenom": "ROUTE", + "coinMinimalDenom": "route", + "coinDecimals": 18, + "coinGeckoId": "route", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/router_9600/chain.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "ROUTE", + "coinMinimalDenom": "route", + "coinDecimals": 18, + "coinGeckoId": "route", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/router_9600/chain.png", + "gasPriceStep": { + "low": 5000000000, + "average": 25000000000, + "high": 50000000000 + } + } + ], + "nodeProvider": { + "name": "Router Node", + "email": "siva@routerprotocol.com", + "website": "https://www.routerprotocol.com" + }, + "features": ["eth-address-gen", "eth-key-sign"] +} diff --git a/cosmos/sandbox.json b/cosmos/sandbox.json deleted file mode 100644 index 3776cb593..000000000 --- a/cosmos/sandbox.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "chainId": "sandbox", - "chainName": "sandbox", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/sandbox/chain.png", - "rpc": "https://rpc.sandbox.nymtech.net", - "rest": "https://api.sandbox.nymtech.net", - "nodeProvider": { - "name": "Nym", - "email": "info@nymtech.net", - "website": "https://nymtech.net" - }, - "bip44": { - "coinType": 118 - }, - "bech32Config": { - "bech32PrefixAccAddr": "n", - "bech32PrefixAccPub": "npub", - "bech32PrefixValAddr": "nvaloper", - "bech32PrefixValPub": "nvaloperpub", - "bech32PrefixConsAddr": "nvalcons", - "bech32PrefixConsPub": "nvalconspub" - }, - "stakeCurrency": { - "coinDenom": "nyx", - "coinMinimalDenom": "unyx", - "coinDecimals": 6 - }, - "currencies": [ - { - "coinDenom": "NYM", - "coinMinimalDenom": "unym", - "coinDecimals": 6, - "coinGeckoId": "nym" - }, - { - "coinDenom": "NYX", - "coinMinimalDenom": "unyx", - "coinDecimals": 6 - } - ], - "feeCurrencies": [ - { - "coinDenom": "nym", - "coinMinimalDenom": "unym", - "coinDecimals": 6, - "coinGeckoId": "nym" - }, - { - "coinDenom": "nyx", - "coinMinimalDenom": "unyx", - "coinDecimals": 6 - } - ], - "features": ["cosmwasm"] -} diff --git a/cosmos/scorum.json b/cosmos/scorum.json index 3487beee4..f652387d9 100644 --- a/cosmos/scorum.json +++ b/cosmos/scorum.json @@ -2,8 +2,8 @@ "chainId": "scorum-1", "chainName": "Scorum Cosmos Network", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/scorum/chain.png", - "rpc": "https://scorum-blockchain-mainnet-rpc-1.scorum.com", - "rest": "https://scorum-blockchain-mainnet-api-1.scorum.com", + "rpc": "https://scorum-blockchain-mainnet-rpc.scorum.com", + "rest": "https://scorum-blockchain-mainnet-api.scorum.com", "nodeProvider": { "name": "Scorum Network", "email": "admin@scorum.com", @@ -25,6 +25,7 @@ "coinDenom": "SCR", "coinMinimalDenom": "nscr", "coinDecimals": 9, + "coinGeckoId": "scorum", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/scorum/scr.png" }, { diff --git a/cosmos/seda-1-testnet.json b/cosmos/seda-1-testnet.json new file mode 100644 index 000000000..74d6e581d --- /dev/null +++ b/cosmos/seda-1-testnet.json @@ -0,0 +1,46 @@ +{ + "chainId": "seda-1-testnet", + "chainName": "SEDA (TESTNET)", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/seda-1-testnet/chain.png", + "rpc": "https://rpc.testnet.seda.xyz", + "rest": "https://lcd.testnet.seda.xyz", + "nodeProvider": { + "name": "SEDA", + "email": "info@seda.xyz", + "website": "https://www.seda.xyz/" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "seda", + "bech32PrefixAccPub": "sedapub", + "bech32PrefixValAddr": "sedavaloper", + "bech32PrefixValPub": "sedavaloperpub", + "bech32PrefixConsAddr": "sedavalcons", + "bech32PrefixConsPub": "sedavalconspub" + }, + "currencies": [ + { + "coinDenom": "SEDA", + "coinMinimalDenom": "aseda", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/seda-1-testnet/chain.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "SEDA", + "coinMinimalDenom": "aseda", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/seda-1-testnet/chain.png" + } + ], + "stakeCurrency": { + "coinDenom": "SEDA", + "coinMinimalDenom": "aseda", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/seda-1-testnet/chain.png" + }, + "features": ["cosmwasm"] +} diff --git a/cosmos/seda.json b/cosmos/seda.json new file mode 100644 index 000000000..f456f3633 --- /dev/null +++ b/cosmos/seda.json @@ -0,0 +1,52 @@ +{ + "chainId": "seda-1", + "chainName": "SEDA", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/seda/chain.png", + "rpc": "https://rpc-seda.keplr.app", + "rest": "https://lcd-seda.keplr.app", + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "seda", + "bech32PrefixAccPub": "sedapub", + "bech32PrefixValAddr": "sedavaloper", + "bech32PrefixValPub": "sedavaloperpub", + "bech32PrefixConsAddr": "sedavalcons", + "bech32PrefixConsPub": "sedavalconspub" + }, + "currencies": [ + { + "coinDenom": "SEDA", + "coinMinimalDenom": "aseda", + "coinDecimals": 18, + "coinGeckoId": "seda-2", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/seda/chain.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "SEDA", + "coinMinimalDenom": "aseda", + "coinDecimals": 18, + "coinGeckoId": "seda-2", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/seda/chain.png", + "gasPriceStep": { + "low": 10000000000, + "average": 15000000000, + "high": 20000000000 + } + } + ], + "stakeCurrency": { + "coinDenom": "SEDA", + "coinMinimalDenom": "aseda", + "coinDecimals": 18, + "coinGeckoId": "seda-2", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/seda/chain.png" + }, + "walletUrlForStaking": "https://wallet.keplr.app/chains/seda", + "features": [ + "cosmwasm" + ] +} \ No newline at end of file diff --git a/cosmos/self.json b/cosmos/self.json new file mode 100644 index 000000000..943458a23 --- /dev/null +++ b/cosmos/self.json @@ -0,0 +1,51 @@ +{ + "chainId": "self-1", + "chainName": "Self Chain", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/self/chain.png", + "rpc": "https://rpc.selfchain.io:26657", + "rest": "https://api.selfchain.io", + "nodeProvider": { + "name": "Self Chain", + "email": "hello@frontier.xyz", + "website":"https://selfchain.xyz" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "self", + "bech32PrefixAccPub": "selfpub", + "bech32PrefixValAddr": "selfvaloper", + "bech32PrefixValPub": "selfvaloperpub", + "bech32PrefixConsAddr": "selfvalcons", + "bech32PrefixConsPub": "selfvalconspub" + }, + "currencies": [ + { + "coinDenom": "SLF", + "coinMinimalDenom": "uslf", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/self/chain.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "SLF", + "coinMinimalDenom": "uslf", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/self/chain.png", + "gasPriceStep": { + "low": 0.005, + "average": 0.025, + "high": 0.03 + } + } + ], + "stakeCurrency": { + "coinDenom": "SLF", + "coinMinimalDenom": "uslf", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/self/chain.png" + }, + "features": [] +} \ No newline at end of file diff --git a/cosmos/sge-network.json b/cosmos/sge-network.json new file mode 100644 index 000000000..ad5f93171 --- /dev/null +++ b/cosmos/sge-network.json @@ -0,0 +1,49 @@ +{ "chainId": "sge-network-4", + "chainName": "SGE Network Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/sge-network/chain.png", + "rpc": "https://test-sge-rpc.kingnodes.com/", + "rest": "https://test-sge-rest.kingnodes.com/", + "nodeProvider": { + "name": "kingnodes", + "email": "jerome@kingnodes.com", + "website":"https://www.kingnodes.com/" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "sge", + "bech32PrefixAccPub": "sgepub", + "bech32PrefixValAddr": "sgevaloper", + "bech32PrefixValPub": "sgevaloperpub", + "bech32PrefixConsAddr": "sgevalcons", + "bech32PrefixConsPub": "sgevalconspub" + }, + "currencies": [ + { + "coinDenom": "SGE", + "coinMinimalDenom": "usge", + "coinDecimals": 6 + } + ], + "feeCurrencies": [ + { + "coinDenom": "SGE", + "coinMinimalDenom": "usge", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.1, + "average": 0.25, + "high": 0.5 + } + } + ], + "stakeCurrency": { + "coinDenom": "SGE", + "coinMinimalDenom": "usge", + "coinDecimals": 6 + }, + "features": [ + "cosmwasm" + ] + } diff --git a/cosmos/shido_9007.json b/cosmos/shido_9007.json new file mode 100644 index 000000000..e4c54872b --- /dev/null +++ b/cosmos/shido_9007.json @@ -0,0 +1,56 @@ +{ + "rpc": "https://testnet-tendermint.shidoscan.com", + "rest": "https://testnet-swagger.shidoscan.com", + "chainId": "shido_9007-1", + "chainName": "Shido-Testnet", + "evm": { + "chainId": 9007, + "rpc": "https://rpc-testnet-nodes.shidoscan.com" + }, + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/shido_9007/chain.png", + "stakeCurrency": { + "coinDenom": "SHIDO", + "coinMinimalDenom": "shido", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/shido_9007/shido.png" + }, + "nodeProvider":{ + "name":"Shido", + "email":"info@shido.finance", + "website":"https://shido.io/" + }, + "bip44": { + "coinType": 60 + }, + "bech32Config": { + "bech32PrefixAccAddr": "shido", + "bech32PrefixAccPub": "shidopub", + "bech32PrefixValAddr": "shidovaloper", + "bech32PrefixValPub": "shidovaloperpub", + "bech32PrefixConsAddr": "shidovalcons", + "bech32PrefixConsPub": "shidovalconspub" + }, + "currencies": [ + { + "coinDenom": "SHIDO", + "coinMinimalDenom": "shido", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/shido_9007/shido.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "SHIDO", + "coinMinimalDenom": "shido", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/shido_9007/shido.png", + "gasPriceStep": { + "low": 80000000000, + "average": 80000000000, + "high": 80000000000 + } + } + ], + "features": ["eth-address-gen", "eth-key-sign","cosmwasm"] + } + \ No newline at end of file diff --git a/cosmos/shido_9008.json b/cosmos/shido_9008.json new file mode 100644 index 000000000..8fc5b1a4d --- /dev/null +++ b/cosmos/shido_9008.json @@ -0,0 +1,58 @@ +{ + "rpc": "https://tendermint.shidoscan.com", + "rest": "https://swagger.shidoscan.com", + "chainId": "shido_9008-1", + "chainName": "Shido", + "evm": { + "chainId": 9008, + "rpc": "https://rpc-nodes.shidoscan.com" + }, + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/shido_9008/chain.png", + "stakeCurrency": { + "coinDenom": "SHIDO", + "coinMinimalDenom": "shido", + "coinDecimals": 18, + "coinGeckoId": "shido-2", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/shido_9008/shido.png" + }, + "nodeProvider":{ + "name":"Shido", + "email":"info@shido.finance", + "website":"https://shido.io/" + }, + "bip44": { + "coinType": 60 + }, + "bech32Config": { + "bech32PrefixAccAddr": "shido", + "bech32PrefixAccPub": "shidopub", + "bech32PrefixValAddr": "shidovaloper", + "bech32PrefixValPub": "shidovaloperpub", + "bech32PrefixConsAddr": "shidovalcons", + "bech32PrefixConsPub": "shidovalconspub" + }, + "currencies": [ + { + "coinDenom": "SHIDO", + "coinMinimalDenom": "shido", + "coinDecimals": 18, + "coinGeckoId": "shido-2", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/shido_9008/shido.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "SHIDO", + "coinMinimalDenom": "shido", + "coinDecimals": 18, + "coinGeckoId": "shido-2", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/shido_9008/shido.png", + "gasPriceStep": { + "low": 80000000000, + "average": 80000000000, + "high": 80000000000 + } + } + ], + "features": ["eth-address-gen", "eth-key-sign","cosmwasm"] +} diff --git a/cosmos/soarchaintestnet.json b/cosmos/soarchaintestnet.json new file mode 100644 index 000000000..6ed5e9fcc --- /dev/null +++ b/cosmos/soarchaintestnet.json @@ -0,0 +1,55 @@ +{ + "rpc": "https://soarchain-testnet.rpc.kjnodes.com", + "rest": "https://soarchain-testnet.api.kjnodes.com", + "chainId": "soarchaintestnet", + "chainName": "Soarchain Testnet", + "nodeProvider": { + "name": "soarchain", + "email": "alperen@soarrobotics.com", + "website":"https://www.soarchain.com" + }, + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/soarchaintestnet/chain.png", + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "soar", + "bech32PrefixAccPub": "soarpub", + "bech32PrefixValAddr": "soarvaloper", + "bech32PrefixValPub": "soarvaloperpub", + "bech32PrefixConsAddr": "soarvalcons", + "bech32PrefixConsPub": "soarvalconspub" + }, + "currencies": [ + { + "coinDenom": "TSOAR", + "coinMinimalDenom": "utsoar", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/soarchaintestnet/chain.png" + + } + ], + "feeCurrencies": [ + { + "coinDenom": "TSOAR", + "coinMinimalDenom": "utsoar", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.01, + "average": 0.025, + "high": 0.03 + }, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/soarchaintestnet/chain.png" + + } + ], + "stakeCurrency": { + "coinDenom": "TSOAR", + "coinMinimalDenom": "utsoar", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/soarchaintestnet/chain.png" + }, + "features": [ + "cosmwasm" + ] +} \ No newline at end of file diff --git a/cosmos/source-testnet b/cosmos/source-testnet new file mode 100644 index 000000000..4e1486aab --- /dev/null +++ b/cosmos/source-testnet @@ -0,0 +1,50 @@ +{ + "chainId": "sourcetest-1", + "chainName": "Source Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/source/source.png", + "rpc": "https://testnet.sourceprotocol.io:26657/", + "rest": "https://testnet.sourceprotocol.io:1317/", + "nodeProvider": { + "name": "Source Protocol", + "email": "hello@sourceprotocol.io", + "website":"https://www.sourceprotocol.io/" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "source", + "bech32PrefixAccPub": "sourcepub", + "bech32PrefixValAddr": "sourcevaloper", + "bech32PrefixValPub": "sourcevaloperpub", + "bech32PrefixConsAddr": "sourcevalcons", + "bech32PrefixConsPub": "sourcevalconspub" + }, + "currencies": [ + { + "coinDenom": "SOURCE", + "coinMinimalDenom": "usource", + "coinDecimals": 6 + } + ], + "feeCurrencies": [ + { + "coinDenom": "SOURCE", + "coinMinimalDenom": "usource", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.025, + "average": 0.05, + "high": 0.075 + } + } + ], + "stakeCurrency": { + "coinDenom": "SOURCE", + "coinMinimalDenom": "usource", + "coinDecimals": 6 + }, + "features": [ + "cosmwasm" + ] +} diff --git a/cosmos/ssc-testnet.json b/cosmos/ssc-testnet.json index bcc4ea771..78d3d87c6 100644 --- a/cosmos/ssc-testnet.json +++ b/cosmos/ssc-testnet.json @@ -1,8 +1,8 @@ { - "chainId": "ssc-testnet-1", - "chainName": "Saga Testnet", - "rpc": "https://testnet-keplr.sagarpc.io", - "rest": "https://testnet-keplr-lcd.sagarpc.io", + "chainId": "ssc-testnet-2", + "chainName": "Saga Testnet v2", + "rpc": "https://testnet2-keplr.sagarpc.io", + "rest": "https://testnet2-keplr-lcd.sagarpc.io", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ssc-testnet/chain.png", "bip44": { "coinType": 118 diff --git a/cosmos/ssc.json b/cosmos/ssc.json new file mode 100644 index 000000000..1d07dbf0b --- /dev/null +++ b/cosmos/ssc.json @@ -0,0 +1,49 @@ +{ + "chainId": "ssc-1", + "chainName": "Saga", + "rpc": "https://rpc-saga.keplr.app", + "rest": "https://lcd-saga.keplr.app", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ssc/chain.png", + "bip44": { + "coinType": 118 + }, + "walletUrlForStaking": "https://wallet.keplr.app/chains/saga", + "bech32Config": { + "bech32PrefixAccAddr": "saga", + "bech32PrefixAccPub": "sagapub", + "bech32PrefixValAddr": "sagavaloper", + "bech32PrefixValPub": "sagavaloperpub", + "bech32PrefixConsAddr": "sagavalcons", + "bech32PrefixConsPub": "sagavalconspub" + }, + "currencies": [ + { + "coinDenom": "SAGA", + "coinMinimalDenom": "usaga", + "coinDecimals": 6, + "coinGeckoId": "saga-2", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ssc/chain.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "SAGA", + "coinMinimalDenom": "usaga", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.01, + "average": 0.025, + "high": 0.04 + }, + "coinGeckoId": "saga-2", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ssc/chain.png" + } + ], + "stakeCurrency": { + "coinDenom": "SAGA", + "coinMinimalDenom": "usaga", + "coinDecimals": 6, + "coinGeckoId": "saga-2", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ssc/chain.png" + } +} diff --git a/cosmos/stargaze.json b/cosmos/stargaze.json index 0771ee5d1..56130153b 100644 --- a/cosmos/stargaze.json +++ b/cosmos/stargaze.json @@ -61,6 +61,30 @@ "coinMinimalDenom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", "coinDecimals": 6, "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stargaze/factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/sneaky.png" + }, + { + "coinDenom": "PLEB", + "coinMinimalDenom": "factory/stars1k7qsxdxh8calmt4txk75e6hdntefslegwddqnlwjjqgjkmcfqy0qa97sn8/pleb", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stargaze/factory/stars1k7qsxdxh8calmt4txk75e6hdntefslegwddqnlwjjqgjkmcfqy0qa97sn8/pleb.png" + }, + { + "coinDenom": "KINGSHIT", + "coinMinimalDenom": "factory/stars133a6mnkp9d3pkt48y699hy0tvq5xngpz7cwak0qr4suq0cj9zpfslvt0em/kingshit", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stargaze/factory/stars133a6mnkp9d3pkt48y699hy0tvq5xngpz7cwak0qr4suq0cj9zpfslvt0em/kingshit.png" + }, + { + "coinDenom": "BOTZ", + "coinMinimalDenom": "factory/stars132jrwxjps93usq3ejy7cq6qqc7j3gtx3mu8jhaj5nnk3p0ste2ssqsndvj/botz", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stargaze/factory/stars132jrwxjps93usq3ejy7cq6qqc7j3gtx3mu8jhaj5nnk3p0ste2ssqsndvj/botz.png" + }, + { + "coinDenom": "COCKS", + "coinMinimalDenom": "factory/stars14mfk0sd6rlajkvgpgrvfk9lfhjwmkrzvednekvcn32jzy3drjy5sfem9p7/cocks", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stargaze/factory/stars14mfk0sd6rlajkvgpgrvfk9lfhjwmkrzvednekvcn32jzy3drjy5sfem9p7/cocks.png" } ], "feeCurrencies": [ diff --git a/cosmos/stratos.json b/cosmos/stratos.json index 4a32e9c9a..21307afd4 100644 --- a/cosmos/stratos.json +++ b/cosmos/stratos.json @@ -39,9 +39,9 @@ "coinGeckoId": "stratos", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stratos/stos.png", "gasPriceStep": { - "low": 1, - "average": 1.1, - "high": 1.2 + "low": 1000000000, + "average": 1200000000, + "high": 1600000000 } } ], diff --git a/cosmos/stride-internal.json b/cosmos/stride-internal.json new file mode 100644 index 000000000..dcb23c25b --- /dev/null +++ b/cosmos/stride-internal.json @@ -0,0 +1,61 @@ +{ + "rpc": "https://stride.testnet-1.stridenet.co", + "rest": "https://stride.testnet-1.stridenet.co/api", + "chainId": "stride-internal-1", + "chainName": "Stride Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stride-internal/chain.png", + "nodeProvider": { + "name": "Stride Labs", + "email": "hello@stridelabs.co", + "website":"https://stride.zone/" + }, + "stakeCurrency": { + "coinDenom": "STRD", + "coinMinimalDenom": "ustrd", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stride-internal/ustrd.png" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "stride", + "bech32PrefixAccPub": "stridepub", + "bech32PrefixValAddr": "stridevaloper", + "bech32PrefixValPub": "stridevaloperpub", + "bech32PrefixConsAddr": "stridevalcons", + "bech32PrefixConsPub": "stridevalconspub" + }, + "currencies": [ + { + "coinDenom": "STRD", + "coinMinimalDenom": "ustrd", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stride-internal/ustrd.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "STRD", + "coinMinimalDenom": "ustrd", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stride-internal/ustrd.png", + "gasPriceStep": { + "low": 0.0005, + "average": 0.005, + "high": 0.05 + } + }, + { + "coinDenom": "TIA", + "coinMinimalDenom": "ibc/1A7653323C1A9E267FF7BEBF40B3EEA8065E8F069F47F2493ABC3E0B621BF793", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.01, + "average": 0.01, + "high": 0.01 + } + } + ], + "features": [] +} diff --git a/cosmos/stride.json b/cosmos/stride.json index 120d26895..40a93eb0b 100644 --- a/cosmos/stride.json +++ b/cosmos/stride.json @@ -94,6 +94,12 @@ "coinGeckoId": "stride-staked-tia", "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stride/sttia.png" }, + { + "coinDenom": "stSAGA", + "coinMinimalDenom": "stusaga", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stride/stusaga.png" + }, { "coinDenom": "stUMEE", "coinMinimalDenom": "stuumee", @@ -113,153 +119,212 @@ "coinMinimalDenom": "stusomm", "coinDecimals": 6, "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stride/stusomm.png" + }, + { + "coinDenom": "stDYM", + "coinMinimalDenom": "stadym", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stride/stadym.png" + }, + { + "coinDenom": "stISLM", + "coinMinimalDenom": "staISLM", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stride/staISLM.png" + }, + { + "coinDenom": "stBAND", + "coinMinimalDenom": "stuband", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stride/stuband.png" } ], - "feeCurrencies": [ - { - "coinDenom": "STRD", - "coinMinimalDenom": "ustrd", - "coinDecimals": 6, - "coinGeckoId": "stride", - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stride/ustrd.png", - "gasPriceStep": { - "low": 0.0005, - "average": 0.005, - "high": 0.05 - } - }, - { - "coinDenom": "ATOM", - "coinMinimalDenom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "coinDecimals": 6, - "coinGeckoId": "cosmos", - "gasPriceStep": { - "low": 0.0001, - "average": 0.001, - "high": 0.01 - } - }, - { - "coinDenom": "OSMO", - "coinMinimalDenom": "ibc/D24B4564BCD51D3D02D9987D92571EAC5915676A9BD6D9B0C1D0254CB8A5EA34", - "coinDecimals": 6, - "coinGeckoId": "osmosis", - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stride/uosmo.png", - "gasPriceStep": { - "low": 0.001, - "average": 0.01, - "high": 0.1 - } - }, - { - "coinDenom": "stOSMO", - "coinMinimalDenom": "stuosmo", - "coinDecimals": 6, - "coinGeckoId": "stride-staked-osmo", - "gasPriceStep": { - "low": 0.001, - "average": 0.01, - "high": 0.1 - } - }, - { - "coinDenom": "stATOM", - "coinMinimalDenom": "stuatom", - "coinDecimals": 6, - "coinGeckoId": "stride-staked-atom", - "gasPriceStep": { - "low": 0.0001, - "average": 0.001, - "high": 0.01 - } - }, - { - "coinDenom": "INJ", - "coinMinimalDenom": "ibc/A7454562FF29FE068F42F9DE4805ABEF54F599D1720B345D6518D9B5C64EA6D2", - "coinDecimals": 18, - "coinGeckoId": "injective-protocol", - "gasPriceStep": { - "low": 500000000, - "average": 500000000, - "high": 500000000 - } - }, - { - "coinDenom": "stINJ", - "coinMinimalDenom": "stinj", - "coinDecimals": 18, - "coinGeckoId": "stride-staked-injective", - "gasPriceStep": { - "low": 500000000, - "average": 500000000, - "high": 500000000 - } - }, - { - "coinDenom": "EVMOS", - "coinMinimalDenom": "ibc/4B322204B4F59D770680FE4D7A565DDC3F37BFF035474B717476C66A4F83DD72", - "coinDecimals": 18, - "coinGeckoId": "evmos", - "gasPriceStep": { - "low": 20000000000, - "average": 20000000000, - "high": 20000000000 - } - }, - { - "coinDenom": "stEVMOS", - "coinMinimalDenom": "staevmos", - "coinDecimals": 18, - "gasPriceStep": { - "low": 20000000000, - "average": 20000000000, - "high": 20000000000 - } - }, - { - "coinDenom": "TIA", - "coinMinimalDenom": "ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801", - "coinDecimals": 6, - "coinGeckoId": "celestia", - "gasPriceStep": { - "low": 0.01, - "average": 0.01, - "high": 0.01 - } - }, - { - "coinDenom": "stTIA", - "coinMinimalDenom": "stutia", - "coinDecimals": 6, - "coinGeckoId": "stride-staked-tia", - "gasPriceStep": { - "low": 0.01, - "average": 0.01, - "high": 0.01 - } - }, - { - "coinDenom": "DYDX", - "coinMinimalDenom": "ibc/561C70B20188A047BFDE6F9946BDDC5D8AC172B9BE04FF868DFABF819E5A9CCE", - "coinDecimals": 18, - "coinGeckoId": "dydx-chain", - "gasPriceStep": { - "low": 15000000000, - "average": 15000000000, - "high": 15000000000 - } - }, - { - "coinDenom": "stDYDX", - "coinMinimalDenom": "stadydx", - "coinDecimals": 18, - "coinGeckoId": "stride-staked-dydx", - "gasPriceStep": { - "low": 15000000000, - "average": 15000000000, - "high": 15000000000 - } + "feeCurrencies": [ + { + "coinDenom": "STRD", + "coinMinimalDenom": "ustrd", + "coinDecimals": 6, + "coinGeckoId": "stride", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stride/ustrd.png", + "gasPriceStep": { + "low": 0.005, + "average": 0.005, + "high": 0.05 + } + }, + { + "coinDenom": "ATOM", + "coinMinimalDenom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "coinDecimals": 6, + "coinGeckoId": "cosmos", + "gasPriceStep": { + "low": 0.0001, + "average": 0.001, + "high": 0.01 + } + }, + { + "coinDenom": "OSMO", + "coinMinimalDenom": "ibc/D24B4564BCD51D3D02D9987D92571EAC5915676A9BD6D9B0C1D0254CB8A5EA34", + "coinDecimals": 6, + "coinGeckoId": "osmosis", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stride/uosmo.png", + "gasPriceStep": { + "low": 0.001, + "average": 0.01, + "high": 0.1 + } + }, + { + "coinDenom": "stOSMO", + "coinMinimalDenom": "stuosmo", + "coinDecimals": 6, + "coinGeckoId": "stride-staked-osmo", + "gasPriceStep": { + "low": 0.001, + "average": 0.01, + "high": 0.1 + } + }, + { + "coinDenom": "stATOM", + "coinMinimalDenom": "stuatom", + "coinDecimals": 6, + "coinGeckoId": "stride-staked-atom", + "gasPriceStep": { + "low": 0.0001, + "average": 0.001, + "high": 0.01 + } + }, + { + "coinDenom": "INJ", + "coinMinimalDenom": "ibc/A7454562FF29FE068F42F9DE4805ABEF54F599D1720B345D6518D9B5C64EA6D2", + "coinDecimals": 18, + "coinGeckoId": "injective-protocol", + "gasPriceStep": { + "low": 500000000, + "average": 500000000, + "high": 500000000 + } + }, + { + "coinDenom": "stINJ", + "coinMinimalDenom": "stinj", + "coinDecimals": 18, + "coinGeckoId": "stride-staked-injective", + "gasPriceStep": { + "low": 500000000, + "average": 500000000, + "high": 500000000 } - ], + }, + { + "coinDenom": "EVMOS", + "coinMinimalDenom": "ibc/4B322204B4F59D770680FE4D7A565DDC3F37BFF035474B717476C66A4F83DD72", + "coinDecimals": 18, + "coinGeckoId": "evmos", + "gasPriceStep": { + "low": 20000000000, + "average": 20000000000, + "high": 20000000000 + } + }, + { + "coinDenom": "stEVMOS", + "coinMinimalDenom": "staevmos", + "coinDecimals": 18, + "gasPriceStep": { + "low": 20000000000, + "average": 20000000000, + "high": 20000000000 + } + }, + { + "coinDenom": "TIA", + "coinMinimalDenom": "ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801", + "coinDecimals": 6, + "coinGeckoId": "celestia", + "gasPriceStep": { + "low": 0.01, + "average": 0.01, + "high": 0.01 + } + }, + { + "coinDenom": "stTIA", + "coinMinimalDenom": "stutia", + "coinDecimals": 6, + "coinGeckoId": "stride-staked-tia", + "gasPriceStep": { + "low": 0.01, + "average": 0.01, + "high": 0.01 + } + }, + { + "coinDenom": "DYDX", + "coinMinimalDenom": "ibc/561C70B20188A047BFDE6F9946BDDC5D8AC172B9BE04FF868DFABF819E5A9CCE", + "coinDecimals": 18, + "coinGeckoId": "dydx-chain", + "gasPriceStep": { + "low": 15000000000, + "average": 15000000000, + "high": 15000000000 + } + }, + { + "coinDenom": "stDYDX", + "coinMinimalDenom": "stadydx", + "coinDecimals": 18, + "coinGeckoId": "stride-staked-dydx", + "gasPriceStep": { + "low": 15000000000, + "average": 15000000000, + "high": 15000000000 + } + }, + { + "coinDenom": "DYM", + "coinMinimalDenom": "ibc/E1C22332C083574F3418481359733BA8887D171E76C80AD9237422AEABB66018", + "coinDecimals": 18, + "coinGeckoId": "dymension", + "gasPriceStep": { + "low": 15000000000, + "average": 15000000000, + "high": 50000000000 + } + }, + { + "coinDenom": "stDYM", + "coinMinimalDenom": "stadym", + "coinDecimals": 18, + "gasPriceStep": { + "low": 15000000000, + "average": 15000000000, + "high": 50000000000 + } + }, + { + "coinDenom": "stSAGA", + "coinMinimalDenom": "stusaga", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.01, + "average": 0.01, + "high": 0.01 + } + }, + { + "coinDenom": "SAGA", + "coinMinimalDenom": "ibc/520D9C4509027DE66C737A1D6A6021915A3071E30DBA8F758B46532B060D7AA5", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.01, + "average": 0.01, + "high": 0.01 + } + } + ], "features": [] -} \ No newline at end of file +} diff --git a/cosmos/stwart_test_1.json b/cosmos/stwart_test_1.json new file mode 100644 index 000000000..390f8ebe1 --- /dev/null +++ b/cosmos/stwart_test_1.json @@ -0,0 +1,57 @@ +{ + "rpc": "https://rpc.dev.stalwart.dev", + "rest": "https://api.dev.stalwart.dev", + "nodeProvider": { + "name": "Algoritmic Lab", + "email": "snemesh@algoritmiclab.ai", + "website":"https://www.algoritmiclab.ai" + }, + "chainId": "stwart_test_1", + "chainName": "Stalwart Dev", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stwart_test_1/chain.png", + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "stwart", + "bech32PrefixAccPub": "stwartpub", + "bech32PrefixValAddr": "stwartvaloper", + "bech32PrefixValPub": "stwartvaloperpub", + "bech32PrefixConsAddr": "stwartvalcons", + "bech32PrefixConsPub": "stwartvalconspub" + }, + "stakeCurrency": { + "coinDenom": "STW", + "coinMinimalDenom": "stw", + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stwart_test_1/stw.png" + }, + "currencies": [ + { + "coinDenom": "STW", + "coinMinimalDenom": "stw", + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stwart_test_1/stw.png" + }, + { + "coinDenom": "SSC", + "coinMinimalDenom": "ssc", + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stwart_test_1/ssc.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "STW", + "coinMinimalDenom": "stw", + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stwart_test_1/stw.png", + "gasPriceStep": { + "low": 0.25, + "average": 2.5, + "high": 4.0 + } + } + ], + "features": [] +} diff --git a/cosmos/stwart_testnet_1.json b/cosmos/stwart_testnet_1.json new file mode 100644 index 000000000..1df835a2f --- /dev/null +++ b/cosmos/stwart_testnet_1.json @@ -0,0 +1,57 @@ +{ + "rpc": "https://rpc.testnet.stalwart.dev", + "rest": "https://api.testnet.stalwart.dev", + "nodeProvider": { + "name": "Algoritmic Lab", + "email": "snemesh@algoritmiclab.ai", + "website":"https://www.algoritmiclab.ai" + }, + "chainId": "stwart_testnet_1", + "chainName": "Stalwart Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stwart_testnet_1/chain.png", + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "stwart", + "bech32PrefixAccPub": "stwartpub", + "bech32PrefixValAddr": "stwartvaloper", + "bech32PrefixValPub": "stwartvaloperpub", + "bech32PrefixConsAddr": "stwartvalcons", + "bech32PrefixConsPub": "stwartvalconspub" + }, + "stakeCurrency": { + "coinDenom": "STW", + "coinMinimalDenom": "stw", + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stwart_testnet_1/stw.png" + }, + "currencies": [ + { + "coinDenom": "STW", + "coinMinimalDenom": "stw", + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stwart_testnet_1/stw.png" + }, + { + "coinDenom": "SSC", + "coinMinimalDenom": "ssc", + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stwart_testnet_1/ssc.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "STW", + "coinMinimalDenom": "stw", + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stwart_testnet_1/stw.png", + "gasPriceStep": { + "low": 0.25, + "average": 2.5, + "high": 4.0 + } + } + ], + "features": [] +} diff --git a/cosmos/swisstronik_1291.json b/cosmos/swisstronik_1291.json new file mode 100644 index 000000000..ad1d74c26 --- /dev/null +++ b/cosmos/swisstronik_1291.json @@ -0,0 +1,52 @@ +{ + "chainId": "swisstronik_1291-1", + "chainName": "Swisstronik", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/swisstronik_1291/chain.png", + "rpc": "https://rpc.testnet.swisstronik.com", + "rest": "https://api.testnet.swisstronik.com", + "nodeProvider": { + "name": "Swisstronik Node", + "email": "contact@swisstronik.com", + "website": "https://www.swisstronik.com" + }, + "currencies": [ + { + "coinMinimalDenom": "aswtr", + "coinDenom": "SWTR", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/swisstronik_1291/chain.png" + } + ], + "bip44": { + "coinType": 60 + }, + "bech32Config": { + "bech32PrefixAccAddr": "swtr", + "bech32PrefixAccPub": "swtrpub", + "bech32PrefixValAddr": "swtraloper", + "bech32PrefixValPub": "swtrvaloperpub", + "bech32PrefixConsAddr": "swtrvalcons", + "bech32PrefixConsPub": "swtrvalconspub" + }, + "stakeCurrency": { + "coinMinimalDenom": "aswtr", + "coinDenom": "SWTR", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/swisstronik_1291/chain.png" + }, + "feeCurrencies": [ + { + "coinMinimalDenom": "aswtr", + "coinDenom": "SWTR", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/swisstronik_1291/chain.png", + "gasPriceStep": { + "average": 30000000000, + "high": 30000000000, + "low": 30000000000 + } + } + ], + "walletUrlForStaking": "https://explorer-cosmos.testnet.swisstronik.com/swisstronik/staking", + "features": ["eth-address-gen", "eth-key-sign"] +} diff --git a/cosmos/symphony-testnet.json b/cosmos/symphony-testnet.json new file mode 100644 index 000000000..0d6a3e1dc --- /dev/null +++ b/cosmos/symphony-testnet.json @@ -0,0 +1,51 @@ +{ + "chainId": "symphony-testnet-1", + "chainName": "Symphony Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/symphony-testnet/chain.png", + "rpc": "https://rpc.testnet.symphonychain.org", + "rest": "https://lcd.testnet.symphonychain.org", + "nodeProvider": { + "name": "Orchestra Labs", + "email": "dblackstone@orchestralabs.org", + "website": "https://www.orchestralabs.org" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "symphony", + "bech32PrefixAccPub": "symphonypub", + "bech32PrefixValAddr": "symphonyvaloper", + "bech32PrefixValPub": "symphonyvaloperpub", + "bech32PrefixConsAddr": "symphonyvalcons", + "bech32PrefixConsPub": "symphonyvalconspub" + }, + "currencies": [ + { + "coinDenom": "MLD", + "coinMinimalDenom": "note", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/symphony-testnet/melody.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "MLD", + "coinMinimalDenom": "note", + "coinDecimals": 6, + "gasPriceStep": { + "low": 0.0025, + "average": 0.025, + "high": 0.04 + }, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/symphony-testnet/melody.png" + } + ], + "stakeCurrency": { + "coinDenom": "MLD", + "coinMinimalDenom": "note", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/symphony-testnet/melody.png" + }, + "features": ["cosmwasm", "osmosis-txfees"] +} diff --git a/cosmos/test-core.json b/cosmos/test-core.json index 9eee7470f..77ecfeab4 100644 --- a/cosmos/test-core.json +++ b/cosmos/test-core.json @@ -31,7 +31,7 @@ "coinDenom": "stkATOM", "coinMinimalDenom": "stk/uatom", "coinDecimals": 6, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/test-core/stkosmo.png" + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/test-core/stkatom.png" }, { "coinDenom": "stkOSMO", diff --git a/cosmos/titan-test.json b/cosmos/titan-test.json new file mode 100644 index 000000000..3d62ab37f --- /dev/null +++ b/cosmos/titan-test.json @@ -0,0 +1,75 @@ +{ + "bech32Config": { + "bech32PrefixAccAddr": "titan", + "bech32PrefixAccPub": "titanpub", + "bech32PrefixConsAddr": "titanvalcons", + "bech32PrefixConsPub": "titanvalconspub", + "bech32PrefixValAddr": "titanvaloper", + "bech32PrefixValPub": "titanvaloperpub" + }, + "bip44": { + "coinType": 118 + }, + "chainId": "titan-test-2", + "chainName": "Titan Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/titan-test/chain.png", + "currencies": [ + { + "coinDecimals": 6, + "coinDenom": "TTNT", + "coinMinimalDenom": "uttnt", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/titan-test/uttnt.png" + }, + { + "coinDecimals": 6, + "coinDenom": "TNT1", + "coinMinimalDenom": "utnt1", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/titan-test/utnt1.png" + }, + { + "coinDecimals": 6, + "coinDenom": "TNT2", + "coinMinimalDenom": "utnt2", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/titan-test/utnt1.png" + }, + { + "coinDecimals": 6, + "coinDenom": "TCP", + "coinMinimalDenom": "utcp", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/titan-test/utnt1.png" + }, + { + "coinDecimals": 6, + "coinDenom": "TGCTC", + "coinMinimalDenom": "utgctc", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/titan-test/utnt1.png" + } + ], + "features": [], + "feeCurrencies": [ + { + "coinDecimals": 6, + "coinDenom": "TTNT", + "coinMinimalDenom": "uttnt", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/titan-test/uttnt.png", + "gasPriceStep": { + "average": 0.025, + "high": 0.03, + "low": 0.005 + } + } + ], + "rest": "https://lcd.titannet.io", + "rpc": "https://rpc.titannet.io", + "stakeCurrency": { + "coinDecimals": 6, + "coinDenom": "TTNT", + "coinMinimalDenom": "uttnt", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/titan-test/uttnt.png" + }, + "nodeProvider": { + "name": "titan", + "email": "info@titannet.io", + "website": "https://titannet.io" + } +} diff --git a/cosmos/titan_18888.json b/cosmos/titan_18888.json new file mode 100644 index 000000000..523352392 --- /dev/null +++ b/cosmos/titan_18888.json @@ -0,0 +1,56 @@ +{ + "rpc": "https://titan-rpc.titanlab.io", + "rest": "https://titan-lcd.titanlab.io", + "chainId": "titan_18888-1", + "chainName": "Titan", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/titan_18888/chain.png", + "nodeProvider": { + "name": "Titanlab", + "email": "info@titanlab.io", + "website": "https://titanlab.io" + }, + "bip44": { + "coinType": 60 + }, + "bech32Config": { + "bech32PrefixAccAddr": "titan", + "bech32PrefixAccPub": "titanpub", + "bech32PrefixValAddr": "titanvaloper", + "bech32PrefixValPub": "titanvaloperpub", + "bech32PrefixConsAddr": "titanvalcons", + "bech32PrefixConsPub": "titanvalconspub" + }, + "currencies": [ + { + "coinDenom": "TKX", + "coinMinimalDenom": "atkx", + "coinDecimals": 18, + "coinGeckoId": "tokenize-xchange", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/titan_18888/tkx.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "TKX", + "coinMinimalDenom": "atkx", + "coinDecimals": 18, + "coinGeckoId": "tokenize-xchange", + "gasPriceStep": { + "low": 100000000000, + "average": 110000000000, + "high": 200000000000 + } + } + ], + "stakeCurrency": { + "coinDenom": "TKX", + "coinMinimalDenom": "atkx", + "coinDecimals": 18, + "coinGeckoId": "tokenize-xchange" + }, + "features": [ + "cosmwasm", + "eth-address-gen", + "eth-key-sign" + ] +} diff --git a/cosmos/titan_18889.json b/cosmos/titan_18889.json index ce6fb5926..a968e3729 100644 --- a/cosmos/titan_18889.json +++ b/cosmos/titan_18889.json @@ -1,13 +1,13 @@ { - "rpc": "https://titan-testnet-rpc-1.tokenize-dev.com", - "rest": "https://titan-testnet-lcd-1.tokenize-dev.com", + "rpc": "https://titan-testnet-rpc.titanlab.io", + "rest": "https://titan-testnet-lcd.titanlab.io", "chainId": "titan_18889-1", "chainName": "Titan Testnet", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/titan_18889/chain.png", "nodeProvider": { - "name": "Tokenize", - "email": "tranquocphuong@tokenize.exchange", - "website": "https://tokenize.exchange/" + "name": "Titanlab", + "email": "info@titanlab.io", + "website": "https://titanlab.io" }, "bip44": { "coinType": 60 @@ -50,4 +50,4 @@ "eth-address-gen", "eth-key-sign" ] -} \ No newline at end of file +} diff --git a/cosmos/messenger.json b/cosmos/tumbler.json similarity index 82% rename from cosmos/messenger.json rename to cosmos/tumbler.json index 732e594db..74771a8a3 100644 --- a/cosmos/messenger.json +++ b/cosmos/tumbler.json @@ -1,7 +1,7 @@ { - "chainId": "messenger", + "chainId": "tumbler", "chainName": "Paloma", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/messenger/chain.png", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/tumbler/chain.png", "rpc": "https://rpc-1.paloma.nodes.guru", "rest": "https://api-1.paloma.nodes.guru", "nodeProvider": { @@ -24,8 +24,7 @@ { "coinDenom": "GRAIN", "coinMinimalDenom": "ugrain", - "coinDecimals": 6, - "coinGeckoId": "paloma" + "coinDecimals": 6 } ], "feeCurrencies": [ @@ -33,7 +32,6 @@ "coinDenom": "GRAIN", "coinMinimalDenom": "ugrain", "coinDecimals": 6, - "coinGeckoId": "paloma", "gasPriceStep": { "low": 0.00, "average": 0.01, @@ -44,8 +42,7 @@ "stakeCurrency": { "coinDenom": "GRAIN", "coinMinimalDenom": "ugrain", - "coinDecimals": 6, - "coinGeckoId": "paloma" + "coinDecimals": 6 }, "features": [ "cosmwasm" diff --git a/cosmos/umee.json b/cosmos/umee.json index 5a6fe6943..9bd929c81 100644 --- a/cosmos/umee.json +++ b/cosmos/umee.json @@ -2,10 +2,10 @@ "rpc": "https://rpc-umee.keplr.app", "rest": "https://lcd-umee.keplr.app", "chainId": "umee-1", - "chainName": "Umee", + "chainName": "UX", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/umee/chain.png", "stakeCurrency": { - "coinDenom": "UMEE", + "coinDenom": "UX", "coinMinimalDenom": "uumee", "coinDecimals": 6, "coinGeckoId": "umee", @@ -26,7 +26,7 @@ }, "currencies": [ { - "coinDenom": "UMEE", + "coinDenom": "UX", "coinMinimalDenom": "uumee", "coinDecimals": 6, "coinGeckoId": "umee", @@ -35,7 +35,7 @@ ], "feeCurrencies": [ { - "coinDenom": "UMEE", + "coinDenom": "UX", "coinMinimalDenom": "uumee", "coinDecimals": 6, "coinGeckoId": "umee", diff --git a/cosmos/union-testnet.json b/cosmos/union-testnet.json index d19f2be5a..19da1de8c 100644 --- a/cosmos/union-testnet.json +++ b/cosmos/union-testnet.json @@ -1,14 +1,14 @@ { - "chainId": "union-testnet-6", + "chainId": "union-testnet-8", + "chainName": "Union Testnet", "nodeProvider": { - "name": "bonlulu", - "email": "validator@luelo.dev", - "website": "https://testnet.bonlulu.uno" + "name": "union", + "email": "ben@union.build", + "website": "https://explorer.testnet-8.union.build" }, - "chainName": "uniont-testnet", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/union-testnet/chain.png", - "rpc": "https://rpc.testnet.bonlulu.uno", - "rest": "https://api.testnet.bonlulu.uno", + "rest": "https://rest.testnet-8.union.build", + "rpc": "https://rpc.testnet-8.union.build", "bip44": { "coinType": 118 }, @@ -24,7 +24,8 @@ { "coinDenom": "UNO", "coinMinimalDenom": "muno", - "coinDecimals": 6 + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/union-testnet/chain.png" } ], "feeCurrencies": [ @@ -36,13 +37,15 @@ "low": 0.0025, "average": 0.025, "high": 0.04 - } + }, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/union-testnet/chain.png" } ], "stakeCurrency": { "coinDenom": "UNO", "coinMinimalDenom": "muno", - "coinDecimals": 6 + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/union-testnet/chain.png" }, "features": [] } diff --git a/cosmos/vota-vk.json b/cosmos/vota-vk.json deleted file mode 100644 index 4d2eb86f0..000000000 --- a/cosmos/vota-vk.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "rpc": "https://vota-vk-rpc.dorafactory.org", - "rest": "https://vota-vk-rest.dorafactory.org", - "nodeProvider": { - "name": "Dorafactory", - "email": "node-operation@mail.dorafactory.org", - "website": "https://dorafactory.org" - }, - "chainId": "vota-vk", - "chainName": "Dora Vota Incentive Testnet", - "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/vota-vk/chain.png", - "stakeCurrency": { - "coinDenom": "DORA", - "coinMinimalDenom": "peaka", - "coinDecimals": 18, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/vota-vk/peaka.png" - }, - "bip44": { - "coinType": 118 - }, - "bech32Config": { - "bech32PrefixAccAddr": "dora", - "bech32PrefixAccPub": "dorapub", - "bech32PrefixValAddr": "doravaloper", - "bech32PrefixValPub": "doravaloperpub", - "bech32PrefixConsAddr": "doravalcons", - "bech32PrefixConsPub": "doravalconspub" - }, - "currencies": [ - { - "coinDenom": "DORA", - "coinMinimalDenom": "peaka", - "coinDecimals": 18, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/vota-vk/peaka.png" - } - ], - "feeCurrencies": [ - { - "coinDenom": "DORA", - "coinMinimalDenom": "peaka", - "coinDecimals": 18, - "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/vota-vk/peaka.png", - "gasPriceStep": { - "low": 100000000000, - "average": 100000000000, - "high": 100000000000 - } - } - ], - "features": [] -} diff --git a/cosmos/wormchain.json b/cosmos/wormchain.json new file mode 100644 index 000000000..ef430a71d --- /dev/null +++ b/cosmos/wormchain.json @@ -0,0 +1,128 @@ +{ + "rpc": "https://tncnt-eu-wormchain-main-01.rpc.p2p.world", + "rest": "https://tncnt-eu-wormchain-main-01.rpc.p2p.world/lcd", + "nodeProvider": { + "name": "Wormhole", + "email": "contact@wormhole.com", + "website": "https://wormhole.com" + }, + "chainId": "wormchain", + "chainName": "Wormhole Gateway", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/wormchain/chain.png", + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "wormhole", + "bech32PrefixAccPub": "wormholepub", + "bech32PrefixValAddr": "wormholevaloper", + "bech32PrefixValPub": "wormholevaloperpub", + "bech32PrefixConsAddr": "wormholevalcons", + "bech32PrefixConsPub": "wormholevalconspub" + }, + "currencies": [ + { + "coinDenom": "TEST", + "coinMinimalDenom": "utest", + "coinDecimals": 6 + }, + { + "coinDenom": "SUI", + "coinMinimalDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh", + "coinDecimals": 8, + "coinGeckoId": "sui", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh.png" + }, + { + "coinDenom": "WETH", + "coinMinimalDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", + "coinDecimals": 8, + "coinGeckoId": "weth", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp.png" + }, + { + "coinDenom": "wstETH", + "coinMinimalDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b", + "coinDecimals": 8, + "coinGeckoId": "wrapped-steth", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b.png" + }, + { + "coinDenom": "APT", + "coinMinimalDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", + "coinDecimals": 8, + "coinGeckoId": "aptos", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r.png" + }, + { + "coinDenom": "USDT", + "coinMinimalDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", + "coinDecimals": 6, + "coinGeckoId": "tether", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi.png" + }, + { + "coinDenom": "SOL", + "coinMinimalDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "coinDecimals": 8, + "coinGeckoId": "solana", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA.png" + }, + { + "coinDenom": "BONK", + "coinMinimalDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR", + "coinDecimals": 5, + "coinGeckoId": "bonk", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR.png" + }, + { + "coinDenom": "WBTC", + "coinMinimalDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd", + "coinDecimals": 8, + "coinGeckoId": "wrapped-bitcoin", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd.png" + }, + { + "coinDenom": "tBTC", + "coinMinimalDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw", + "coinDecimals": 8, + "coinGeckoId": "tbtc", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw.png" + }, + { + "coinDenom": "DAI", + "coinMinimalDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1", + "coinDecimals": 8, + "coinGeckoId": "dai", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1.png" + }, + { + "coinDenom": "USDC", + "coinMinimalDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", + "coinDecimals": 6, + "coinGeckoId": "usd-coin", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt.png" + }, + { + "coinDenom": "ASG", + "coinMinimalDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/54RgtKyJuM9boEu4G7Dzp2mMrg6w5MuctfU95HoHHeL3", + "coinDecimals": 8, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/54RgtKyJuM9boEu4G7Dzp2mMrg6w5MuctfU95HoHHeL3.png" + } + + ], + "feeCurrencies": [ + { + "coinDenom": "TEST", + "coinMinimalDenom": "utest", + "coinDecimals": 6, + "gasPriceStep": { + "low": 1, + "average": 1, + "high": 1 + } + } + ], + "features": ["cosmwasm"], + "hideInUI": true +} diff --git a/cosmos/xion-testnet.json b/cosmos/xion-testnet.json new file mode 100644 index 000000000..303f207a6 --- /dev/null +++ b/cosmos/xion-testnet.json @@ -0,0 +1,53 @@ +{ + "rpc": "https://rpc.xion-testnet-1.burnt.com/", + "rest": "https://api.xion-testnet-1.burnt.com/", + "chainId": "xion-testnet-1", + "chainName": "Xion Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/xion-testnet/chain.png", + "stakeCurrency": { + "coinDenom": "XION", + "coinMinimalDenom": "uxion", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/xion-testnet/chain.png" + }, + "bip44": { + "coinType": 118 + }, + "bech32Config": { + "bech32PrefixAccAddr": "xion", + "bech32PrefixAccPub": "xionpub", + "bech32PrefixValAddr": "xionvaloper", + "bech32PrefixValPub": "xionvaloperpub", + "bech32PrefixConsAddr": "xionvalcons", + "bech32PrefixConsPub": "xionvalconspub" + }, + "currencies": [ + { + "coinDenom": "XION", + "coinMinimalDenom": "uxion", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/xion-testnet/chain.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "XION", + "coinMinimalDenom": "uxion", + "coinDecimals": 6, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/xion-testnet/chain.png", + "gasPriceStep": { + "low": 0.005, + "average": 0.01, + "high": 0.02 + } + } + ], + "features": [ + "cosmwasm" + ], + "nodeProvider": { + "name": "Dylan Schultzie", + "email": "security@lavenderfive.com", + "website": "https://lavenderfive.com" + } +} diff --git a/cosmos/zetachain_7000.json b/cosmos/zetachain_7000.json index 80f97817b..98768b7bd 100644 --- a/cosmos/zetachain_7000.json +++ b/cosmos/zetachain_7000.json @@ -1,18 +1,20 @@ { - "rpc": "https://zetachain.blockpi.network/rpc/v1/public", - "rest": "https://zetachain.blockpi.network/lcd/v1/public", + "rpc": "https://rpc-zetachain.keplr.app", + "rest": "https://lcd-zetachain.keplr.app", + "evm": { + "chainId": 7000, + "rpc": "https://evm-zetachain.keplr.app", + "websocket": "wss://ws-evm-zetachain.keplr.app" + }, "chainId": "zetachain_7000-1", "chainName": "ZetaChain", "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/zetachain_7000/chain.png", "stakeCurrency": { "coinDenom": "ZETA", "coinMinimalDenom": "azeta", - "coinDecimals": 18 - }, - "nodeProvider": { - "name": "BlockPI", - "email": "help@blockpi.io", - "website": "https://blockpi.io/" + "coinDecimals": 18, + "coinGeckoId": "zetachain", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/zetachain_7000/chain.png" }, "bip44": { "coinType": 60 @@ -29,7 +31,9 @@ { "coinDenom": "ZETA", "coinMinimalDenom": "azeta", - "coinDecimals": 18 + "coinDecimals": 18, + "coinGeckoId": "zetachain", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/zetachain_7000/chain.png" } ], "feeCurrencies": [ @@ -37,6 +41,8 @@ "coinDenom": "ZETA", "coinMinimalDenom": "azeta", "coinDecimals": 18, + "coinGeckoId": "zetachain", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/zetachain_7000/chain.png", "gasPriceStep": { "low": 80000000000, "average": 80000000000, @@ -44,8 +50,6 @@ } } ], - "features": [ - "eth-address-gen", - "eth-key-sign" - ] -} \ No newline at end of file + "features": ["eth-address-gen", "eth-key-sign"], + "walletUrlForStaking": "https://wallet.keplr.app/chains/zetachain" +} diff --git a/evm/eip155:1.json b/evm/eip155:1.json new file mode 100644 index 000000000..a5d306c8d --- /dev/null +++ b/evm/eip155:1.json @@ -0,0 +1,36 @@ +{ + "rpc": "https://evm-1.keplr.app", + "websocket": "wss://evm-1.keplr.app/websocket", + "chainId": "eip155:1", + "chainName": "Ethereum", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:1/chain.png", + "bip44": { + "coinType": 60 + }, + "currencies": [ + { + "coinDenom": "ETH", + "coinMinimalDenom": "ethereum-native", + "coinDecimals": 18, + "coinGeckoId": "ethereum", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:1/ethereum-native.png" + }, + { + "coinDenom": "USDC", + "coinMinimalDenom": "erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "coinDecimals": 6, + "coinGeckoId": "usd-coin", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:1/erc20/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "ETH", + "coinMinimalDenom": "ethereum-native", + "coinDecimals": 18, + "coinGeckoId": "ethereum", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:1/ethereum-native.png" + } + ], + "features": [] +} diff --git a/evm/eip155:10.json b/evm/eip155:10.json new file mode 100644 index 000000000..55ddbd836 --- /dev/null +++ b/evm/eip155:10.json @@ -0,0 +1,36 @@ +{ + "rpc": "https://evm-10.keplr.app", + "websocket": "wss://evm-10.keplr.app/websocket", + "chainId": "eip155:10", + "chainName": "Optimism", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:10/chain.png", + "bip44": { + "coinType": 60 + }, + "currencies": [ + { + "coinDenom": "ETH", + "coinMinimalDenom": "optimism-native", + "coinDecimals": 18, + "coinGeckoId": "ethereum", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:10/optimism-native.png" + }, + { + "coinDenom": "USDC", + "coinMinimalDenom": "erc20:0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "coinDecimals": 6, + "coinGeckoId": "usd-coin", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:10/erc20/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "ETH", + "coinMinimalDenom": "optimism-native", + "coinDecimals": 18, + "coinGeckoId": "ethereum", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:10/optimism-native.png" + } + ], + "features": [] +} diff --git a/evm/eip155:1329.json b/evm/eip155:1329.json new file mode 100644 index 000000000..3161448e4 --- /dev/null +++ b/evm/eip155:1329.json @@ -0,0 +1,37 @@ +{ + "rpc": "https://evm-rpc.sei-apis.com", + "nodeProvider": { + "name": "Sei", + "email": "ecosystem@seinetwork.io", + "website": "https://sei.io" + }, + "chainId": "eip155:1329", + "chainName": "Sei EVM", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:1329/chain.png", + "bip44": { + "coinType": 60 + }, + "stakeCurrency": { + "coinDenom": "SEI", + "coinMinimalDenom": "sei-native", + "coinDecimals": 18, + "coinGeckoId": "sei-network" + }, + "currencies": [ + { + "coinDenom": "SEI", + "coinMinimalDenom": "sei-native", + "coinDecimals": 18, + "coinGeckoId": "sei-network" + } + ], + "feeCurrencies": [ + { + "coinDenom": "SEI", + "coinMinimalDenom": "sei-native", + "coinDecimals": 18, + "coinGeckoId": "sei-network" + } + ], + "features": [] +} diff --git a/evm/eip155:137.json b/evm/eip155:137.json new file mode 100644 index 000000000..7d2995f74 --- /dev/null +++ b/evm/eip155:137.json @@ -0,0 +1,36 @@ +{ + "rpc": "https://evm-137.keplr.app", + "websocket": "wss://evm-137.keplr.app/websocket", + "chainId": "eip155:137", + "chainName": "Polygon", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:137/chain.png", + "bip44": { + "coinType": 60 + }, + "currencies": [ + { + "coinDenom": "MATIC", + "coinMinimalDenom": "polygon-native", + "coinDecimals": 18, + "coinGeckoId": "matic-network", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:137/polygon-native.png" + }, + { + "coinDenom": "USDC", + "coinMinimalDenom": "erc20:0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "coinDecimals": 6, + "coinGeckoId": "usd-coin", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:137/erc20/0x3c499c542cef5e3811e1192ce70d8cc03d5c3359.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "MATIC", + "coinMinimalDenom": "polygon-native", + "coinDecimals": 18, + "coinGeckoId": "matic-network", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:137/polygon-native.png" + } + ], + "features": [] +} diff --git a/evm/eip155:42161.json b/evm/eip155:42161.json new file mode 100644 index 000000000..9c65c043e --- /dev/null +++ b/evm/eip155:42161.json @@ -0,0 +1,36 @@ +{ + "rpc": "https://evm-42161.keplr.app", + "websocket": "wss://evm-42161.keplr.app/websocket", + "chainId": "eip155:42161", + "chainName": "Arbitrum", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:42161/chain.png", + "bip44": { + "coinType": 60 + }, + "currencies": [ + { + "coinDenom": "ETH", + "coinMinimalDenom": "arbitrum-native", + "coinDecimals": 18, + "coinGeckoId": "ethereum", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:42161/arbitrum-native.png" + }, + { + "coinDenom": "USDC", + "coinMinimalDenom": "erc20:0xaf88d065e77c8cc2239327c5edb3a432268e5831", + "coinDecimals": 6, + "coinGeckoId": "usd-coin", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:42161/erc20/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "ETH", + "coinMinimalDenom": "arbitrum-native", + "coinDecimals": 18, + "coinGeckoId": "ethereum", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:42161/arbitrum-native.png" + } + ], + "features": [] +} diff --git a/evm/eip155:43114.json b/evm/eip155:43114.json new file mode 100644 index 000000000..ed71408ef --- /dev/null +++ b/evm/eip155:43114.json @@ -0,0 +1,50 @@ +{ + "rpc": "https://evm-43114.keplr.app", + "websocket": "wss://evm-43114.keplr.app/websocket", + "chainId": "eip155:43114", + "chainName": "Avalanche", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:43114/chain.png", + "bip44": { + "coinType": 60 + }, + "currencies": [ + { + "coinDenom": "AVAX", + "coinMinimalDenom": "avalanche-native", + "coinDecimals": 18, + "coinGeckoId": "avalanche-2", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:43114/avalanche-native.png" + }, + { + "coinDenom": "USDC", + "coinMinimalDenom": "erc20:0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "coinDecimals": 6, + "coinGeckoId": "usd-coin", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:43114/erc20/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png" + }, + { + "coinDenom": "WETH", + "coinMinimalDenom": "erc20:0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab", + "coinDecimals": 18, + "coinGeckoId": "weth", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:43114/erc20/0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab.png" + }, + { + "coinDenom": "USDT", + "coinMinimalDenom": "erc20:0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", + "coinDecimals": 6, + "coinGeckoId": "tether", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:43114/erc20/0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "AVAX", + "coinMinimalDenom": "avalanche-native", + "coinDecimals": 18, + "coinGeckoId": "avalanche-2", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:43114/avalanche-native.png" + } + ], + "features": [] +} diff --git a/evm/eip155:56.json b/evm/eip155:56.json new file mode 100644 index 000000000..62a0aad7d --- /dev/null +++ b/evm/eip155:56.json @@ -0,0 +1,50 @@ +{ + "rpc": "https://evm-56.keplr.app", + "websocket": "wss://evm-56.keplr.app/websocket", + "chainId": "eip155:56", + "chainName": "BNB Smart Chain", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:56/chain.png", + "bip44": { + "coinType": 60 + }, + "currencies": [ + { + "coinDenom": "BNB", + "coinMinimalDenom": "binance-native", + "coinDecimals": 18, + "coinGeckoId": "binancecoin", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:56/binance-native.png" + }, + { + "coinDenom": "USDC", + "coinMinimalDenom": "erc20:0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d", + "coinDecimals": 18, + "coinGeckoId": "usd-coin", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:56/erc20/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d.png" + }, + { + "coinDenom": "WETH", + "coinMinimalDenom": "erc20:0x2170ed0880ac9a755fd29b2688956bd959f933f8", + "coinDecimals": 18, + "coinGeckoId": "weth", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:56/erc20/0x2170ed0880ac9a755fd29b2688956bd959f933f8.png" + }, + { + "coinDenom": "USDT", + "coinMinimalDenom": "erc20:0x55d398326f99059fF775485246999027B3197955", + "coinDecimals": 18, + "coinGeckoId": "tether", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:56/erc20/0x55d398326f99059fF775485246999027B3197955.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "BNB", + "coinMinimalDenom": "binance-native", + "coinDecimals": 18, + "coinGeckoId": "binancecoin", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:56/binance-native.png" + } + ], + "features": [] +} diff --git a/evm/eip155:80084.json b/evm/eip155:80084.json new file mode 100644 index 000000000..60271f7e0 --- /dev/null +++ b/evm/eip155:80084.json @@ -0,0 +1,43 @@ +{ + "rpc": "https://bartio.rpc.berachain.com", + "chainId": "eip155:80084", + "chainName": "Berachain bArtio Testnet", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:80084/chain.png", + "nodeProvider": { + "name": "Berachain", + "website": "https://berachain.com", + "discord": "https://discord.com/invite/berachain" + }, + "bip44": { + "coinType": 60 + }, + "currencies": [ + { + "coinDenom": "BERA", + "coinMinimalDenom": "berachain-native", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:80084/berachain-native.png" + }, + { + "coinDenom": "BGT", + "coinMinimalDenom": "erc20:0xbDa130737BDd9618301681329bF2e46A016ff9Ad", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:80084/erc20/0xbDa130737BDd9618301681329bF2e46A016ff9Ad.png" + }, + { + "coinDenom": "HONEY", + "coinMinimalDenom": "erc20:0x0E4aaF1351de4c0264C5c7056Ef3777b41BD8e03", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:80084/erc20/0x0E4aaF1351de4c0264C5c7056Ef3777b41BD8e03.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "BERA", + "coinMinimalDenom": "berachain-native", + "coinDecimals": 18, + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:80084/berachain-native.png" + } + ], + "features": [] +} diff --git a/evm/eip155:81457.json b/evm/eip155:81457.json new file mode 100644 index 000000000..c0e5c4b27 --- /dev/null +++ b/evm/eip155:81457.json @@ -0,0 +1,50 @@ +{ + "rpc": "https://evm-81457.keplr.app", + "websocket": "wss://evm-81457.keplr.app/websocket", + "chainId": "eip155:81457", + "chainName": "Blast", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:81457/chain.png", + "bip44": { + "coinType": 60 + }, + "currencies": [ + { + "coinDenom": "ETH", + "coinMinimalDenom": "blast-native", + "coinDecimals": 18, + "coinGeckoId": "ethereum", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:81457/blast-native.png" + }, + { + "coinDenom": "USDB", + "coinMinimalDenom": "erc20:0x4300000000000000000000000000000000000003", + "coinDecimals": 18, + "coinGeckoId": "usdb", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:81457/erc20/0x4300000000000000000000000000000000000003.png" + }, + { + "coinDenom": "WETH", + "coinMinimalDenom": "erc20:0x4300000000000000000000000000000000000004", + "coinDecimals": 18, + "coinGeckoId": "weth", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:81457/erc20/0x4300000000000000000000000000000000000004.png" + }, + { + "coinDenom": "BLAST", + "coinMinimalDenom": "erc20:0xb1a5700fA2358173Fe465e6eA4Ff52E36e88E2ad", + "coinDecimals": 18, + "coinGeckoId": "blast", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:81457/erc20/0xb1a5700fA2358173Fe465e6eA4Ff52E36e88E2ad.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "ETH", + "coinMinimalDenom": "blast-native", + "coinDecimals": 18, + "coinGeckoId": "ethereum", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:81457/blast-native.png" + } + ], + "features": [] +} diff --git a/evm/eip155:8453.json b/evm/eip155:8453.json new file mode 100644 index 000000000..f8460b44a --- /dev/null +++ b/evm/eip155:8453.json @@ -0,0 +1,36 @@ +{ + "rpc": "https://evm-8453.keplr.app", + "websocket": "wss://evm-8453.keplr.app/websocket", + "chainId": "eip155:8453", + "chainName": "Base", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:8453/chain.png", + "bip44": { + "coinType": 60 + }, + "currencies": [ + { + "coinDenom": "ETH", + "coinMinimalDenom": "base-native", + "coinDecimals": 18, + "coinGeckoId": "ethereum", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:8453/base-native.png" + }, + { + "coinDenom": "USDC", + "coinMinimalDenom": "erc20:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "coinDecimals": 6, + "coinGeckoId": "usd-coin", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "ETH", + "coinMinimalDenom": "base-native", + "coinDecimals": 18, + "coinGeckoId": "ethereum", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:8453/base-native.png" + } + ], + "features": [] +} diff --git a/evm/eip155:9790.json b/evm/eip155:9790.json new file mode 100644 index 000000000..aca748dde --- /dev/null +++ b/evm/eip155:9790.json @@ -0,0 +1,31 @@ +{ + "rpc": "https://evm-api.carbon.network", + "nodeProvider": { + "name": "Switcheo Labs", + "email": "info@switcheo.network", + "website": "https://www.switcheo.com/" + }, + "chainId": "eip155:9790", + "chainName": "Carbon EVM", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:9790/chain.png", + "bip44": { + "coinType": 60 + }, + "currencies": [ + { + "coinDenom": "SWTH", + "coinMinimalDenom": "swth", + "coinDecimals": 18, + "coinGeckoId": "switcheo" + } + ], + "feeCurrencies": [ + { + "coinDenom": "SWTH", + "coinMinimalDenom": "swth", + "coinDecimals": 18, + "coinGeckoId": "switcheo" + } + ], + "features": [] +} diff --git a/evm/eip155:984122.json b/evm/eip155:984122.json new file mode 100644 index 000000000..5d8dab27d --- /dev/null +++ b/evm/eip155:984122.json @@ -0,0 +1,34 @@ +{ + "rpc": "https://rpc.forma.art", + "websocket": "wss://ws.forma.art", + "nodeProvider": { + "name": "Forma", + "email": "support@cocodelabs.com", + "website": "https://forma.art" + }, + "chainId": "eip155:984122", + "chainName": "Forma", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:984122/chain.png", + "bip44": { + "coinType": 60 + }, + "currencies": [ + { + "coinDenom": "TIA", + "coinMinimalDenom": "forma-native", + "coinDecimals": 18, + "coinGeckoId": "celestia", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:984122/utia.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "TIA", + "coinMinimalDenom": "forma-native", + "coinDecimals": 18, + "coinGeckoId": "celestia", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:984122/utia.png" + } + ], + "features": [] +} diff --git a/evm/eip155:984123.json b/evm/eip155:984123.json new file mode 100644 index 000000000..4c3b77a71 --- /dev/null +++ b/evm/eip155:984123.json @@ -0,0 +1,34 @@ +{ + "rpc": "https://rpc.sketchpad-1.forma.art", + "websocket": "wss://ws.sketchpad-1.forma.art", + "nodeProvider": { + "name": "Forma", + "email": "support@cocodelabs.com", + "website": "https://forma.art" + }, + "chainId": "eip155:984123", + "chainName": "Forma Sketchpad", + "chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:984123/chain.png", + "bip44": { + "coinType": 60 + }, + "currencies": [ + { + "coinDenom": "TIA", + "coinMinimalDenom": "forma-native", + "coinDecimals": 18, + "coinGeckoId": "celestia", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:984123/utia.png" + } + ], + "feeCurrencies": [ + { + "coinDenom": "TIA", + "coinMinimalDenom": "forma-native", + "coinDecimals": 18, + "coinGeckoId": "celestia", + "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/eip155:984123/utia.png" + } + ], + "features": [] +} diff --git a/images/HICKORY/logo_hic.png b/images/HICKORY/logo_hic.png new file mode 100644 index 000000000..b38a75108 Binary files /dev/null and b/images/HICKORY/logo_hic.png differ diff --git a/images/Oraichain/chain.png b/images/Oraichain/chain.png index af1944e1e..a9303ca33 100644 Binary files a/images/Oraichain/chain.png and b/images/Oraichain/chain.png differ diff --git a/images/Oraichain/factory/orai1lus0f0rhx8s03gdllx2n6vhkmf0536dv57wfge/oraix.png b/images/Oraichain/factory/orai1lus0f0rhx8s03gdllx2n6vhkmf0536dv57wfge/oraix.png index 30bff1a36..ef7b30182 100644 Binary files a/images/Oraichain/factory/orai1lus0f0rhx8s03gdllx2n6vhkmf0536dv57wfge/oraix.png and b/images/Oraichain/factory/orai1lus0f0rhx8s03gdllx2n6vhkmf0536dv57wfge/oraix.png differ diff --git a/images/Oraichain/orai.png b/images/Oraichain/orai.png index af1944e1e..a9303ca33 100644 Binary files a/images/Oraichain/orai.png and b/images/Oraichain/orai.png differ diff --git a/images/aggevm/chain.png b/images/aggevm/chain.png deleted file mode 100644 index d055a01ef..000000000 Binary files a/images/aggevm/chain.png and /dev/null differ diff --git a/images/aggevm/uagg.png b/images/aggevm/uagg.png deleted file mode 100644 index d055a01ef..000000000 Binary files a/images/aggevm/uagg.png and /dev/null differ diff --git a/images/alfama/chain.png b/images/alfama/chain.png new file mode 100644 index 000000000..27a918ceb Binary files /dev/null and b/images/alfama/chain.png differ diff --git a/images/alfama/uward.png b/images/alfama/uward.png new file mode 100644 index 000000000..494e739e5 Binary files /dev/null and b/images/alfama/uward.png differ diff --git a/images/arkh/chain.png b/images/arkh/chain.png deleted file mode 100644 index 20db075a7..000000000 Binary files a/images/arkh/chain.png and /dev/null differ diff --git a/images/xstaxy/chain.png b/images/aura_6322/chain.png similarity index 100% rename from images/xstaxy/chain.png rename to images/aura_6322/chain.png diff --git a/images/xstaxy/uaura.png b/images/aura_6322/uaura.png similarity index 100% rename from images/xstaxy/uaura.png rename to images/aura_6322/uaura.png diff --git a/images/axelar-dojo/yum-wei.png b/images/axelar-dojo/yum-wei.png new file mode 100644 index 000000000..10d935de4 Binary files /dev/null and b/images/axelar-dojo/yum-wei.png differ diff --git a/images/axelar-testnet-lisbon/chain.png b/images/axelar-testnet-lisbon/chain.png new file mode 100644 index 000000000..72f422504 Binary files /dev/null and b/images/axelar-testnet-lisbon/chain.png differ diff --git a/images/axelar-testnet-lisbon/uaxl.png b/images/axelar-testnet-lisbon/uaxl.png new file mode 100644 index 000000000..41d396e51 Binary files /dev/null and b/images/axelar-testnet-lisbon/uaxl.png differ diff --git a/images/axelar-testnet-lisbon/uusdc.png b/images/axelar-testnet-lisbon/uusdc.png new file mode 100644 index 000000000..a798d2417 Binary files /dev/null and b/images/axelar-testnet-lisbon/uusdc.png differ diff --git a/images/beezee/factory/bze13gzq40che93tgfm9kzmkpjamah5nj0j73pyhqk/uvdl.png b/images/beezee/factory/bze13gzq40che93tgfm9kzmkpjamah5nj0j73pyhqk/uvdl.png new file mode 100644 index 000000000..097c829cc Binary files /dev/null and b/images/beezee/factory/bze13gzq40che93tgfm9kzmkpjamah5nj0j73pyhqk/uvdl.png differ diff --git a/images/beezee/factory/bze15pqjgk4la0mfphwddce00d05n3th3u66n3ptcv/c2m.png b/images/beezee/factory/bze15pqjgk4la0mfphwddce00d05n3th3u66n3ptcv/c2m.png new file mode 100644 index 000000000..92d7d460b Binary files /dev/null and b/images/beezee/factory/bze15pqjgk4la0mfphwddce00d05n3th3u66n3ptcv/c2m.png differ diff --git a/images/birdee/chain.png b/images/birdee/chain.png new file mode 100644 index 000000000..2cb1f4c69 Binary files /dev/null and b/images/birdee/chain.png differ diff --git a/images/buenavista/chain.png b/images/buenavista/chain.png new file mode 100644 index 000000000..27a918ceb Binary files /dev/null and b/images/buenavista/chain.png differ diff --git a/images/buenavista/uward.png b/images/buenavista/uward.png new file mode 100644 index 000000000..494e739e5 Binary files /dev/null and b/images/buenavista/uward.png differ diff --git a/images/bzetestnet/chain.png b/images/bzetestnet/chain.png new file mode 100644 index 000000000..c7364f4ef Binary files /dev/null and b/images/bzetestnet/chain.png differ diff --git a/images/bzetestnet/factory/testbz1z3mkcr2jz424w6m49frgjmy9uhlrx69p4cvrgf/vidulum.png b/images/bzetestnet/factory/testbz1z3mkcr2jz424w6m49frgjmy9uhlrx69p4cvrgf/vidulum.png new file mode 100644 index 000000000..097c829cc Binary files /dev/null and b/images/bzetestnet/factory/testbz1z3mkcr2jz424w6m49frgjmy9uhlrx69p4cvrgf/vidulum.png differ diff --git a/images/cataclysm/chain.png b/images/cataclysm/chain.png index 6d492cf7f..ee75feab6 100644 Binary files a/images/cataclysm/chain.png and b/images/cataclysm/chain.png differ diff --git a/images/centauri/bonk.png b/images/centauri/bonk.png new file mode 100644 index 000000000..d65e3745d Binary files /dev/null and b/images/centauri/bonk.png differ diff --git a/images/centauri/bsol.png b/images/centauri/bsol.png new file mode 100644 index 000000000..d12172f8a Binary files /dev/null and b/images/centauri/bsol.png differ diff --git a/images/centauri/chain.png b/images/centauri/chain.png index 5f252a9fc..201f00c00 100644 Binary files a/images/centauri/chain.png and b/images/centauri/chain.png differ diff --git a/images/centauri/dai.png b/images/centauri/dai.png new file mode 100644 index 000000000..96bf039b4 Binary files /dev/null and b/images/centauri/dai.png differ diff --git a/images/centauri/edgesol.png b/images/centauri/edgesol.png new file mode 100644 index 000000000..ddcaa05f3 Binary files /dev/null and b/images/centauri/edgesol.png differ diff --git a/images/centauri/ena.png b/images/centauri/ena.png new file mode 100644 index 000000000..a66d92f3e Binary files /dev/null and b/images/centauri/ena.png differ diff --git a/images/centauri/eth.png b/images/centauri/eth.png new file mode 100644 index 000000000..7dd7d6775 Binary files /dev/null and b/images/centauri/eth.png differ diff --git a/images/centauri/frax.png b/images/centauri/frax.png new file mode 100644 index 000000000..762d2dd36 Binary files /dev/null and b/images/centauri/frax.png differ diff --git a/images/centauri/frxeth.png b/images/centauri/frxeth.png new file mode 100644 index 000000000..b5590ae68 Binary files /dev/null and b/images/centauri/frxeth.png differ diff --git a/images/centauri/fxs.png b/images/centauri/fxs.png new file mode 100644 index 000000000..5072baa50 Binary files /dev/null and b/images/centauri/fxs.png differ diff --git a/images/centauri/hsol.png b/images/centauri/hsol.png new file mode 100644 index 000000000..5053ecfc5 Binary files /dev/null and b/images/centauri/hsol.png differ diff --git a/images/centauri/jitosol.png b/images/centauri/jitosol.png new file mode 100644 index 000000000..bbf8335a4 Binary files /dev/null and b/images/centauri/jitosol.png differ diff --git a/images/centauri/jupsol.png b/images/centauri/jupsol.png new file mode 100644 index 000000000..364cbe5cd Binary files /dev/null and b/images/centauri/jupsol.png differ diff --git a/images/centauri/lst.png b/images/centauri/lst.png new file mode 100644 index 000000000..d02af50a9 Binary files /dev/null and b/images/centauri/lst.png differ diff --git a/images/centauri/msol.png b/images/centauri/msol.png new file mode 100644 index 000000000..92dfc55ca Binary files /dev/null and b/images/centauri/msol.png differ diff --git a/images/centauri/sfrax.png b/images/centauri/sfrax.png new file mode 100644 index 000000000..841ecfc3f Binary files /dev/null and b/images/centauri/sfrax.png differ diff --git a/images/centauri/sfrxeth.png b/images/centauri/sfrxeth.png new file mode 100644 index 000000000..15c2d974e Binary files /dev/null and b/images/centauri/sfrxeth.png differ diff --git a/images/centauri/sol.png b/images/centauri/sol.png new file mode 100644 index 000000000..e3cdebef7 Binary files /dev/null and b/images/centauri/sol.png differ diff --git a/images/centauri/usde.png b/images/centauri/usde.png new file mode 100644 index 000000000..9b42bbbd2 Binary files /dev/null and b/images/centauri/usde.png differ diff --git a/images/centauri/usdt.png b/images/centauri/usdt.png new file mode 100644 index 000000000..19543e8ab Binary files /dev/null and b/images/centauri/usdt.png differ diff --git a/images/centauri/wif.png b/images/centauri/wif.png new file mode 100644 index 000000000..dcd5d2285 Binary files /dev/null and b/images/centauri/wif.png differ diff --git a/images/chihuahua/factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash.png b/images/chihuahua/factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash.png new file mode 100644 index 000000000..ea08415dd Binary files /dev/null and b/images/chihuahua/factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash.png differ diff --git a/images/cifer/cif.png b/images/cifer/cif.png new file mode 100644 index 000000000..b91fd35a3 Binary files /dev/null and b/images/cifer/cif.png differ diff --git a/images/core/stkhuahua.png b/images/core/stkhuahua.png new file mode 100644 index 000000000..b86ed9dc5 Binary files /dev/null and b/images/core/stkhuahua.png differ diff --git a/images/core/stkxprt.png b/images/core/stkxprt.png new file mode 100644 index 000000000..c11cea3b3 Binary files /dev/null and b/images/core/stkxprt.png differ diff --git a/images/coreum-testnet/chain.png b/images/coreum-testnet/chain.png new file mode 100644 index 000000000..1aa741c9a Binary files /dev/null and b/images/coreum-testnet/chain.png differ diff --git a/images/cvn_2032/acvnt.png b/images/cvn_2032/acvnt.png new file mode 100644 index 000000000..258ef4798 Binary files /dev/null and b/images/cvn_2032/acvnt.png differ diff --git a/images/cvn_2032/chain.png b/images/cvn_2032/chain.png new file mode 100644 index 000000000..258ef4798 Binary files /dev/null and b/images/cvn_2032/chain.png differ diff --git a/images/deardoge-testnet/chain.png b/images/deardoge-testnet/chain.png deleted file mode 100644 index c7cec5765..000000000 Binary files a/images/deardoge-testnet/chain.png and /dev/null differ diff --git a/images/deardoge-testnet/udear.png b/images/deardoge-testnet/udear.png deleted file mode 100644 index c7cec5765..000000000 Binary files a/images/deardoge-testnet/udear.png and /dev/null differ diff --git a/images/dhealth-testnet/chain.png b/images/dhealth-testnet/chain.png new file mode 100644 index 000000000..2c1b58576 Binary files /dev/null and b/images/dhealth-testnet/chain.png differ diff --git a/images/dhealth/chain.png b/images/dhealth/chain.png new file mode 100644 index 000000000..2c1b58576 Binary files /dev/null and b/images/dhealth/chain.png differ diff --git a/images/eightball/chain.png b/images/eightball/chain.png deleted file mode 100644 index 47ae24118..000000000 Binary files a/images/eightball/chain.png and /dev/null differ diff --git a/images/eip155:1/chain.png b/images/eip155:1/chain.png new file mode 100644 index 000000000..e3f5ef2e1 Binary files /dev/null and b/images/eip155:1/chain.png differ diff --git a/images/eip155:1/erc20/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png b/images/eip155:1/erc20/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png new file mode 100644 index 000000000..c76974d2d Binary files /dev/null and b/images/eip155:1/erc20/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png differ diff --git a/images/eip155:1/ethereum-native.png b/images/eip155:1/ethereum-native.png new file mode 100644 index 000000000..e3f5ef2e1 Binary files /dev/null and b/images/eip155:1/ethereum-native.png differ diff --git a/images/eip155:10/chain.png b/images/eip155:10/chain.png new file mode 100644 index 000000000..103aff57c Binary files /dev/null and b/images/eip155:10/chain.png differ diff --git a/images/eip155:10/erc20/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png b/images/eip155:10/erc20/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png new file mode 100644 index 000000000..c76974d2d Binary files /dev/null and b/images/eip155:10/erc20/0x0b2c639c533813f4aa9d7837caf62653d097ff85.png differ diff --git a/images/eip155:10/optimism-native.png b/images/eip155:10/optimism-native.png new file mode 100644 index 000000000..e3f5ef2e1 Binary files /dev/null and b/images/eip155:10/optimism-native.png differ diff --git a/images/eip155:1329/chain.png b/images/eip155:1329/chain.png new file mode 100644 index 000000000..288978bcf Binary files /dev/null and b/images/eip155:1329/chain.png differ diff --git a/images/eip155:137/chain.png b/images/eip155:137/chain.png new file mode 100644 index 000000000..a2b509d04 Binary files /dev/null and b/images/eip155:137/chain.png differ diff --git a/images/eip155:137/erc20/0x3c499c542cef5e3811e1192ce70d8cc03d5c3359.png b/images/eip155:137/erc20/0x3c499c542cef5e3811e1192ce70d8cc03d5c3359.png new file mode 100644 index 000000000..c76974d2d Binary files /dev/null and b/images/eip155:137/erc20/0x3c499c542cef5e3811e1192ce70d8cc03d5c3359.png differ diff --git a/images/eip155:137/polygon-native.png b/images/eip155:137/polygon-native.png new file mode 100644 index 000000000..a2b509d04 Binary files /dev/null and b/images/eip155:137/polygon-native.png differ diff --git a/images/eip155:42161/arbitrum-native.png b/images/eip155:42161/arbitrum-native.png new file mode 100644 index 000000000..e3f5ef2e1 Binary files /dev/null and b/images/eip155:42161/arbitrum-native.png differ diff --git a/images/eip155:42161/chain.png b/images/eip155:42161/chain.png new file mode 100644 index 000000000..03c6429bf Binary files /dev/null and b/images/eip155:42161/chain.png differ diff --git a/images/eip155:42161/erc20/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png b/images/eip155:42161/erc20/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png new file mode 100644 index 000000000..c76974d2d Binary files /dev/null and b/images/eip155:42161/erc20/0xaf88d065e77c8cc2239327c5edb3a432268e5831.png differ diff --git a/images/eip155:43114/avalanche-native.png b/images/eip155:43114/avalanche-native.png new file mode 100644 index 000000000..710828fb3 Binary files /dev/null and b/images/eip155:43114/avalanche-native.png differ diff --git a/images/eip155:43114/chain.png b/images/eip155:43114/chain.png new file mode 100644 index 000000000..710828fb3 Binary files /dev/null and b/images/eip155:43114/chain.png differ diff --git a/images/eip155:43114/erc20/0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab.png b/images/eip155:43114/erc20/0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab.png new file mode 100644 index 000000000..be6fdbb43 Binary files /dev/null and b/images/eip155:43114/erc20/0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab.png differ diff --git a/images/eip155:43114/erc20/0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7.png b/images/eip155:43114/erc20/0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7.png new file mode 100644 index 000000000..011994d5b Binary files /dev/null and b/images/eip155:43114/erc20/0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7.png differ diff --git a/images/eip155:43114/erc20/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png b/images/eip155:43114/erc20/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png new file mode 100644 index 000000000..c76974d2d Binary files /dev/null and b/images/eip155:43114/erc20/0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e.png differ diff --git a/images/eip155:56/binance-native.png b/images/eip155:56/binance-native.png new file mode 100644 index 000000000..1ca3ee993 Binary files /dev/null and b/images/eip155:56/binance-native.png differ diff --git a/images/eip155:56/chain.png b/images/eip155:56/chain.png new file mode 100644 index 000000000..dea9a174a Binary files /dev/null and b/images/eip155:56/chain.png differ diff --git a/images/eip155:56/erc20/0x2170ed0880ac9a755fd29b2688956bd959f933f8.png b/images/eip155:56/erc20/0x2170ed0880ac9a755fd29b2688956bd959f933f8.png new file mode 100644 index 000000000..be6fdbb43 Binary files /dev/null and b/images/eip155:56/erc20/0x2170ed0880ac9a755fd29b2688956bd959f933f8.png differ diff --git a/images/eip155:56/erc20/0x55d398326f99059fF775485246999027B3197955.png b/images/eip155:56/erc20/0x55d398326f99059fF775485246999027B3197955.png new file mode 100644 index 000000000..011994d5b Binary files /dev/null and b/images/eip155:56/erc20/0x55d398326f99059fF775485246999027B3197955.png differ diff --git a/images/eip155:56/erc20/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d.png b/images/eip155:56/erc20/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d.png new file mode 100644 index 000000000..c76974d2d Binary files /dev/null and b/images/eip155:56/erc20/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d.png differ diff --git a/images/eip155:80084/berachain-native.png b/images/eip155:80084/berachain-native.png new file mode 100644 index 000000000..c04963590 Binary files /dev/null and b/images/eip155:80084/berachain-native.png differ diff --git a/images/eip155:80084/chain.png b/images/eip155:80084/chain.png new file mode 100644 index 000000000..e76c19ee4 Binary files /dev/null and b/images/eip155:80084/chain.png differ diff --git a/images/eip155:80084/erc20/0x0E4aaF1351de4c0264C5c7056Ef3777b41BD8e03.png b/images/eip155:80084/erc20/0x0E4aaF1351de4c0264C5c7056Ef3777b41BD8e03.png new file mode 100644 index 000000000..1f3c4a1a3 Binary files /dev/null and b/images/eip155:80084/erc20/0x0E4aaF1351de4c0264C5c7056Ef3777b41BD8e03.png differ diff --git a/images/eip155:80084/erc20/0xbDa130737BDd9618301681329bF2e46A016ff9Ad.png b/images/eip155:80084/erc20/0xbDa130737BDd9618301681329bF2e46A016ff9Ad.png new file mode 100644 index 000000000..b6edb976a Binary files /dev/null and b/images/eip155:80084/erc20/0xbDa130737BDd9618301681329bF2e46A016ff9Ad.png differ diff --git a/images/eip155:81457/blast-native.png b/images/eip155:81457/blast-native.png new file mode 100644 index 000000000..e3f5ef2e1 Binary files /dev/null and b/images/eip155:81457/blast-native.png differ diff --git a/images/eip155:81457/chain.png b/images/eip155:81457/chain.png new file mode 100644 index 000000000..f8764fcb1 Binary files /dev/null and b/images/eip155:81457/chain.png differ diff --git a/images/eip155:81457/erc20/0x4300000000000000000000000000000000000003.png b/images/eip155:81457/erc20/0x4300000000000000000000000000000000000003.png new file mode 100644 index 000000000..c6a9daca6 Binary files /dev/null and b/images/eip155:81457/erc20/0x4300000000000000000000000000000000000003.png differ diff --git a/images/eip155:81457/erc20/0x4300000000000000000000000000000000000004.png b/images/eip155:81457/erc20/0x4300000000000000000000000000000000000004.png new file mode 100644 index 000000000..be6fdbb43 Binary files /dev/null and b/images/eip155:81457/erc20/0x4300000000000000000000000000000000000004.png differ diff --git a/images/eip155:81457/erc20/0xb1a5700fA2358173Fe465e6eA4Ff52E36e88E2ad.png b/images/eip155:81457/erc20/0xb1a5700fA2358173Fe465e6eA4Ff52E36e88E2ad.png new file mode 100644 index 000000000..c6a9daca6 Binary files /dev/null and b/images/eip155:81457/erc20/0xb1a5700fA2358173Fe465e6eA4Ff52E36e88E2ad.png differ diff --git a/images/eip155:8453/base-native.png b/images/eip155:8453/base-native.png new file mode 100644 index 000000000..e3f5ef2e1 Binary files /dev/null and b/images/eip155:8453/base-native.png differ diff --git a/images/eip155:8453/chain.png b/images/eip155:8453/chain.png new file mode 100644 index 000000000..fa5226479 Binary files /dev/null and b/images/eip155:8453/chain.png differ diff --git a/images/eip155:8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png b/images/eip155:8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png new file mode 100644 index 000000000..c76974d2d Binary files /dev/null and b/images/eip155:8453/erc20/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913.png differ diff --git a/images/eip155:9790/chain.png b/images/eip155:9790/chain.png new file mode 100644 index 000000000..ac2250b77 Binary files /dev/null and b/images/eip155:9790/chain.png differ diff --git a/images/eip155:984122/chain.png b/images/eip155:984122/chain.png new file mode 100644 index 000000000..b870715c5 Binary files /dev/null and b/images/eip155:984122/chain.png differ diff --git a/images/eip155:984122/utia.png b/images/eip155:984122/utia.png new file mode 100644 index 000000000..af0d9c637 Binary files /dev/null and b/images/eip155:984122/utia.png differ diff --git a/images/eip155:984123/chain.png b/images/eip155:984123/chain.png new file mode 100644 index 000000000..48064c63c Binary files /dev/null and b/images/eip155:984123/chain.png differ diff --git a/images/eip155:984123/utia.png b/images/eip155:984123/utia.png new file mode 100644 index 000000000..af0d9c637 Binary files /dev/null and b/images/eip155:984123/utia.png differ diff --git a/images/elystestnet/uatom.png b/images/elystestnet/uatom.png new file mode 100644 index 000000000..165a818e5 Binary files /dev/null and b/images/elystestnet/uatom.png differ diff --git a/images/elystestnet/uusdc.png b/images/elystestnet/uusdc.png new file mode 100644 index 000000000..c76974d2d Binary files /dev/null and b/images/elystestnet/uusdc.png differ diff --git a/images/empe-testnet/empe.png b/images/empe-testnet/empe.png new file mode 100644 index 000000000..c6cc5e8e9 Binary files /dev/null and b/images/empe-testnet/empe.png differ diff --git a/images/fairyring-testnet/chain.png b/images/fairyring-testnet/chain.png new file mode 100644 index 000000000..a1ccec19d Binary files /dev/null and b/images/fairyring-testnet/chain.png differ diff --git a/images/fiamma-testnet/chain.png b/images/fiamma-testnet/chain.png new file mode 100644 index 000000000..0063df28e Binary files /dev/null and b/images/fiamma-testnet/chain.png differ diff --git a/images/fxcore/pundix.png b/images/fxcore/pundix.png new file mode 100644 index 000000000..86d49480a Binary files /dev/null and b/images/fxcore/pundix.png differ diff --git a/images/galactica_9302/agnet.png b/images/galactica_9302/agnet.png new file mode 100644 index 000000000..40f0b03e6 Binary files /dev/null and b/images/galactica_9302/agnet.png differ diff --git a/images/galactica_9302/chain.png b/images/galactica_9302/chain.png new file mode 100644 index 000000000..40f0b03e6 Binary files /dev/null and b/images/galactica_9302/chain.png differ diff --git a/images/gotabit-test/chain.png b/images/gotabit-test/chain.png deleted file mode 100644 index b1c99ae40..000000000 Binary files a/images/gotabit-test/chain.png and /dev/null differ diff --git a/images/grand/ausdy.png b/images/grand/ausdy.png new file mode 100644 index 000000000..06792d279 Binary files /dev/null and b/images/grand/ausdy.png differ diff --git a/images/grand/chain.png b/images/grand/chain.png index f9c049719..6d82a51c4 100644 Binary files a/images/grand/chain.png and b/images/grand/chain.png differ diff --git a/images/grand/ustake.png b/images/grand/ustake.png index f9c049719..6d82a51c4 100644 Binary files a/images/grand/ustake.png and b/images/grand/ustake.png differ diff --git a/images/gravity-bridge/gravity0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984.png b/images/gravity-bridge/gravity0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984.png new file mode 100644 index 000000000..4e2366bae Binary files /dev/null and b/images/gravity-bridge/gravity0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984.png differ diff --git a/images/gravity-bridge/gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599.png b/images/gravity-bridge/gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599.png new file mode 100644 index 000000000..fd2bedf55 Binary files /dev/null and b/images/gravity-bridge/gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599.png differ diff --git a/images/gravity-bridge/gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78.png b/images/gravity-bridge/gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78.png new file mode 100644 index 000000000..ddaf21019 Binary files /dev/null and b/images/gravity-bridge/gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78.png differ diff --git a/images/gravity-bridge/gravity0x6B175474E89094C44Da98b954EedeAC495271d0F.png b/images/gravity-bridge/gravity0x6B175474E89094C44Da98b954EedeAC495271d0F.png new file mode 100644 index 000000000..40d9724ff Binary files /dev/null and b/images/gravity-bridge/gravity0x6B175474E89094C44Da98b954EedeAC495271d0F.png differ diff --git a/images/gravity-bridge/gravity0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0.png b/images/gravity-bridge/gravity0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0.png new file mode 100644 index 000000000..af8d36b2f Binary files /dev/null and b/images/gravity-bridge/gravity0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0.png differ diff --git a/images/gravity-bridge/gravity0x853d955aCEf822Db058eb8505911ED77F175b99e.png b/images/gravity-bridge/gravity0x853d955aCEf822Db058eb8505911ED77F175b99e.png new file mode 100644 index 000000000..b1d8b828b Binary files /dev/null and b/images/gravity-bridge/gravity0x853d955aCEf822Db058eb8505911ED77F175b99e.png differ diff --git a/images/gravity-bridge/gravity0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE.png b/images/gravity-bridge/gravity0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE.png new file mode 100644 index 000000000..aedcf2e7e Binary files /dev/null and b/images/gravity-bridge/gravity0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE.png differ diff --git a/images/gravity-bridge/gravity0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b.png b/images/gravity-bridge/gravity0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b.png new file mode 100644 index 000000000..0bc58a8bd Binary files /dev/null and b/images/gravity-bridge/gravity0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b.png differ diff --git a/images/gravity-bridge/gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48.png b/images/gravity-bridge/gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48.png index a798d2417..ae34547fb 100644 Binary files a/images/gravity-bridge/gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48.png and b/images/gravity-bridge/gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48.png differ diff --git a/images/gravity-bridge/gravity0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC.png b/images/gravity-bridge/gravity0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC.png new file mode 100644 index 000000000..0b513a6e7 Binary files /dev/null and b/images/gravity-bridge/gravity0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC.png differ diff --git a/images/gravity-bridge/gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84.png b/images/gravity-bridge/gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84.png new file mode 100644 index 000000000..4530196be Binary files /dev/null and b/images/gravity-bridge/gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84.png differ diff --git a/images/gravity-bridge/gravity0xdAC17F958D2ee523a2206206994597C13D831ec7.png b/images/gravity-bridge/gravity0xdAC17F958D2ee523a2206206994597C13D831ec7.png new file mode 100644 index 000000000..37198395d Binary files /dev/null and b/images/gravity-bridge/gravity0xdAC17F958D2ee523a2206206994597C13D831ec7.png differ diff --git a/images/gravity-bridge/gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006.png b/images/gravity-bridge/gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006.png index 22d1278c8..cd8228195 100644 Binary files a/images/gravity-bridge/gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006.png and b/images/gravity-bridge/gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006.png differ diff --git a/images/helichain/chain.png b/images/helichain/chain.png new file mode 100644 index 000000000..ed3bfe2f9 Binary files /dev/null and b/images/helichain/chain.png differ diff --git a/images/helichain/uheli.png b/images/helichain/uheli.png new file mode 100644 index 000000000..ed3bfe2f9 Binary files /dev/null and b/images/helichain/uheli.png differ diff --git a/images/highbury_710/chain.png b/images/highbury_710/chain.png deleted file mode 100644 index 03be1e22b..000000000 Binary files a/images/highbury_710/chain.png and /dev/null differ diff --git a/images/highbury_710/ufury.png b/images/highbury_710/ufury.png deleted file mode 100644 index 03be1e22b..000000000 Binary files a/images/highbury_710/ufury.png and /dev/null differ diff --git a/images/highbury_710/ujinx.png b/images/highbury_710/ujinx.png deleted file mode 100644 index f8d05fdc9..000000000 Binary files a/images/highbury_710/ujinx.png and /dev/null differ diff --git a/images/iconlake/logo.png b/images/iconlake/logo.png new file mode 100644 index 000000000..adae730d6 Binary files /dev/null and b/images/iconlake/logo.png differ diff --git a/images/iconlake/udrop.png b/images/iconlake/udrop.png new file mode 100644 index 000000000..38ce29f41 Binary files /dev/null and b/images/iconlake/udrop.png differ diff --git a/images/iconlake/ulake.png b/images/iconlake/ulake.png new file mode 100644 index 000000000..7465f0f84 Binary files /dev/null and b/images/iconlake/ulake.png differ diff --git a/images/icplaza_13141619/chain.png b/images/icplaza_13141619/chain.png deleted file mode 100644 index 3c653f318..000000000 Binary files a/images/icplaza_13141619/chain.png and /dev/null differ diff --git a/images/indigo/chain.png b/images/indigo/chain.png new file mode 100644 index 000000000..c42e84bca Binary files /dev/null and b/images/indigo/chain.png differ diff --git a/images/initiation/chain.png b/images/initiation/chain.png new file mode 100644 index 000000000..a42ceee49 Binary files /dev/null and b/images/initiation/chain.png differ diff --git a/images/initiation/gas.png b/images/initiation/gas.png new file mode 100644 index 000000000..3f25b1c38 Binary files /dev/null and b/images/initiation/gas.png differ diff --git a/images/injective/factory/inj127l5a2wmkyvucxdlupqyac3y0v6wqfhq03ka64/QUNT.png b/images/injective/factory/inj127l5a2wmkyvucxdlupqyac3y0v6wqfhq03ka64/QUNT.png new file mode 100644 index 000000000..498033ab6 Binary files /dev/null and b/images/injective/factory/inj127l5a2wmkyvucxdlupqyac3y0v6wqfhq03ka64/QUNT.png differ diff --git a/images/injective/factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/syn.png b/images/injective/factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/syn.png new file mode 100644 index 000000000..6aa7c9436 Binary files /dev/null and b/images/injective/factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/syn.png differ diff --git a/images/injective/factory/inj1dxp690rd86xltejgfq2fa7f2nxtgmm5cer3hvu/bINJ.png b/images/injective/factory/inj1dxp690rd86xltejgfq2fa7f2nxtgmm5cer3hvu/bINJ.png new file mode 100644 index 000000000..32a43d776 Binary files /dev/null and b/images/injective/factory/inj1dxp690rd86xltejgfq2fa7f2nxtgmm5cer3hvu/bINJ.png differ diff --git a/images/injective/factory/inj1ej2f3lmpxj4djsmmuxvnfuvplrut7zmwrq7zj8/syn.ash.png b/images/injective/factory/inj1ej2f3lmpxj4djsmmuxvnfuvplrut7zmwrq7zj8/syn.ash.png new file mode 100644 index 000000000..e6a3cc843 Binary files /dev/null and b/images/injective/factory/inj1ej2f3lmpxj4djsmmuxvnfuvplrut7zmwrq7zj8/syn.ash.png differ diff --git a/images/injective/factory/inj1etz0laas6h7vemg3qtd67jpr6lh8v7xz7gfzqw/hdro.png b/images/injective/factory/inj1etz0laas6h7vemg3qtd67jpr6lh8v7xz7gfzqw/hdro.png new file mode 100644 index 000000000..b022704af Binary files /dev/null and b/images/injective/factory/inj1etz0laas6h7vemg3qtd67jpr6lh8v7xz7gfzqw/hdro.png differ diff --git a/images/injective/factory/inj1nccncwqx5q22lf4uh83dhe89e3f0sh8kljf055/HOUND.png b/images/injective/factory/inj1nccncwqx5q22lf4uh83dhe89e3f0sh8kljf055/HOUND.png new file mode 100644 index 000000000..e3a7adbf1 Binary files /dev/null and b/images/injective/factory/inj1nccncwqx5q22lf4uh83dhe89e3f0sh8kljf055/HOUND.png differ diff --git a/images/injective/factory/inj1xy3kvlr4q4wdd6lrelsrw2fk2ged0any44hhwq/KIRA.png b/images/injective/factory/inj1xy3kvlr4q4wdd6lrelsrw2fk2ged0any44hhwq/KIRA.png new file mode 100644 index 000000000..78178017d Binary files /dev/null and b/images/injective/factory/inj1xy3kvlr4q4wdd6lrelsrw2fk2ged0any44hhwq/KIRA.png differ diff --git a/images/joltify_1729/chain.png b/images/joltify_1729/chain.png new file mode 100644 index 000000000..612d9b638 Binary files /dev/null and b/images/joltify_1729/chain.png differ diff --git a/images/joltify_1729/ujolt.png b/images/joltify_1729/ujolt.png new file mode 100644 index 000000000..612d9b638 Binary files /dev/null and b/images/joltify_1729/ujolt.png differ diff --git a/images/kaiyo/factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/unami.png b/images/kaiyo/factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/unami.png new file mode 100644 index 000000000..38a011823 Binary files /dev/null and b/images/kaiyo/factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/unami.png differ diff --git a/images/kaiyo/factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/bKUJI.png b/images/kaiyo/factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/bKUJI.png new file mode 100644 index 000000000..987193db0 Binary files /dev/null and b/images/kaiyo/factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/bKUJI.png differ diff --git a/images/kaiyo/factory/kujira18uqsnxsvxdzg4lfz60tah2k0mdjg6scj8dxggk/CORAL.png b/images/kaiyo/factory/kujira18uqsnxsvxdzg4lfz60tah2k0mdjg6scj8dxggk/CORAL.png new file mode 100644 index 000000000..a38d69fae Binary files /dev/null and b/images/kaiyo/factory/kujira18uqsnxsvxdzg4lfz60tah2k0mdjg6scj8dxggk/CORAL.png differ diff --git a/images/kaiyo/factory/kujira1xe0awk5planmtsmjel5xtx2hzhqdw5p8z66yqd/AQLA.png b/images/kaiyo/factory/kujira1xe0awk5planmtsmjel5xtx2hzhqdw5p8z66yqd/AQLA.png new file mode 100644 index 000000000..10fd3617f Binary files /dev/null and b/images/kaiyo/factory/kujira1xe0awk5planmtsmjel5xtx2hzhqdw5p8z66yqd/AQLA.png differ diff --git a/images/kaon/chain.png b/images/kaon/chain.png new file mode 100644 index 000000000..1a8983dfe Binary files /dev/null and b/images/kaon/chain.png differ diff --git a/images/lambda_92000/lambda.png b/images/lambda_92000/lambda.png new file mode 100644 index 000000000..8b3a071c2 Binary files /dev/null and b/images/lambda_92000/lambda.png differ diff --git a/images/lava-mainnet/chain.png b/images/lava-mainnet/chain.png new file mode 100644 index 000000000..852bab6aa Binary files /dev/null and b/images/lava-mainnet/chain.png differ diff --git a/images/lava-mainnet/ulava.png b/images/lava-mainnet/ulava.png new file mode 100644 index 000000000..01f1ebb7e Binary files /dev/null and b/images/lava-mainnet/ulava.png differ diff --git a/images/lava-testnet/chain.png b/images/lava-testnet/chain.png new file mode 100644 index 000000000..852bab6aa Binary files /dev/null and b/images/lava-testnet/chain.png differ diff --git a/images/lava-testnet/ulava.png b/images/lava-testnet/ulava.png new file mode 100644 index 000000000..01f1ebb7e Binary files /dev/null and b/images/lava-testnet/ulava.png differ diff --git a/images/loop/chain.png b/images/loop/chain.png new file mode 100644 index 000000000..c5d40cd12 Binary files /dev/null and b/images/loop/chain.png differ diff --git a/images/loop/token.png b/images/loop/token.png new file mode 100644 index 000000000..b545285f8 Binary files /dev/null and b/images/loop/token.png differ diff --git a/images/mainnet-tura/chain.png b/images/mainnet-tura/chain.png new file mode 100644 index 000000000..0120380e1 Binary files /dev/null and b/images/mainnet-tura/chain.png differ diff --git a/images/mainnet-tura/utura.png b/images/mainnet-tura/utura.png new file mode 100644 index 000000000..0120380e1 Binary files /dev/null and b/images/mainnet-tura/utura.png differ diff --git a/images/mande_18071918/chain.png b/images/mande_18071918/chain.png new file mode 100644 index 000000000..c5b647d61 Binary files /dev/null and b/images/mande_18071918/chain.png differ diff --git a/images/mantrachain-testnet/chain.png b/images/mantra-hongbai/chain.png similarity index 100% rename from images/mantrachain-testnet/chain.png rename to images/mantra-hongbai/chain.png diff --git a/images/migaloo/factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk.png b/images/migaloo/factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk.png new file mode 100644 index 000000000..f96e0e48e Binary files /dev/null and b/images/migaloo/factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk.png differ diff --git a/images/migaloo/factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/grac.png b/images/migaloo/factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/grac.png new file mode 100644 index 000000000..db1104c28 Binary files /dev/null and b/images/migaloo/factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/grac.png differ diff --git a/images/migaloo/factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/bWHALE.png b/images/migaloo/factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/bWHALE.png new file mode 100644 index 000000000..4674f1437 Binary files /dev/null and b/images/migaloo/factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/bWHALE.png differ diff --git a/images/migaloo/factory/migaloo1nsskhvvh0msm7d5ke2kfg24a8d4jecsnxd28s27h0uz5kf9ap60shlqmcl/ampGASH.png b/images/migaloo/factory/migaloo1nsskhvvh0msm7d5ke2kfg24a8d4jecsnxd28s27h0uz5kf9ap60shlqmcl/ampGASH.png new file mode 100644 index 000000000..ef7aa94fe Binary files /dev/null and b/images/migaloo/factory/migaloo1nsskhvvh0msm7d5ke2kfg24a8d4jecsnxd28s27h0uz5kf9ap60shlqmcl/ampGASH.png differ diff --git a/images/mineplex-mainnet/mineplex.png b/images/mineplex-mainnet/mineplex.png new file mode 100644 index 000000000..eca9a00f1 Binary files /dev/null and b/images/mineplex-mainnet/mineplex.png differ diff --git a/images/mutelandia1/chain.png b/images/mutelandia1/chain.png new file mode 100644 index 000000000..f86ac1c23 Binary files /dev/null and b/images/mutelandia1/chain.png differ diff --git a/images/neutron/factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/MOO.png b/images/neutron/factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/MOO.png new file mode 100644 index 000000000..7e4ad0515 Binary files /dev/null and b/images/neutron/factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/MOO.png differ diff --git a/images/neutron/factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD.png b/images/neutron/factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD.png new file mode 100644 index 000000000..f963430d1 Binary files /dev/null and b/images/neutron/factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD.png differ diff --git a/images/neutron/factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sinToken.png b/images/neutron/factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sinToken.png new file mode 100644 index 000000000..02c1a1c35 Binary files /dev/null and b/images/neutron/factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sinToken.png differ diff --git a/images/neutron/factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/SCRAP.png b/images/neutron/factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/SCRAP.png new file mode 100644 index 000000000..8361e2ca6 Binary files /dev/null and b/images/neutron/factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/SCRAP.png differ diff --git a/images/nibiru-devnet/chain.png b/images/nibiru-devnet/chain.png new file mode 100644 index 000000000..ee75feab6 Binary files /dev/null and b/images/nibiru-devnet/chain.png differ diff --git a/images/nibiru-itn/chain.png b/images/nibiru-itn/chain.png deleted file mode 100644 index 6d492cf7f..000000000 Binary files a/images/nibiru-itn/chain.png and /dev/null differ diff --git a/images/nibiru-testnet/chain.png b/images/nibiru-testnet/chain.png new file mode 100644 index 000000000..ee75feab6 Binary files /dev/null and b/images/nibiru-testnet/chain.png differ diff --git a/images/nibiru/chain.png b/images/nibiru/chain.png new file mode 100644 index 000000000..ee75feab6 Binary files /dev/null and b/images/nibiru/chain.png differ diff --git a/images/nillion-chain-testnet/nil.png b/images/nillion-chain-testnet/nil.png new file mode 100644 index 000000000..6fa53d30e Binary files /dev/null and b/images/nillion-chain-testnet/nil.png differ diff --git a/images/nim_1122/chain.png b/images/nim_1122/chain.png new file mode 100644 index 000000000..470c72bfe Binary files /dev/null and b/images/nim_1122/chain.png differ diff --git a/images/noble/ausdy.png b/images/noble/ausdy.png new file mode 100644 index 000000000..06792d279 Binary files /dev/null and b/images/noble/ausdy.png differ diff --git a/images/noble/chain.png b/images/noble/chain.png index 655312fcf..6d82a51c4 100644 Binary files a/images/noble/chain.png and b/images/noble/chain.png differ diff --git a/images/noble/ustake.png b/images/noble/ustake.png index 655312fcf..6d82a51c4 100644 Binary files a/images/noble/ustake.png and b/images/noble/ustake.png differ diff --git a/images/nubit-alphatestnet/chain.png b/images/nubit-alphatestnet/chain.png new file mode 100644 index 000000000..16ea1b7a5 Binary files /dev/null and b/images/nubit-alphatestnet/chain.png differ diff --git a/images/osmosis/factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB.png b/images/osmosis/factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB.png new file mode 100644 index 000000000..dc0d9abbb Binary files /dev/null and b/images/osmosis/factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB.png differ diff --git a/images/osmosis/factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT.png b/images/osmosis/factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT.png new file mode 100644 index 000000000..e3bfd7d64 Binary files /dev/null and b/images/osmosis/factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT.png differ diff --git a/images/osmosis/factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro.png b/images/osmosis/factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro.png new file mode 100644 index 000000000..cd7b8bc14 Binary files /dev/null and b/images/osmosis/factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro.png differ diff --git a/images/osmosis/factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/bOSMO.png b/images/osmosis/factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/bOSMO.png new file mode 100644 index 000000000..a93752f9e Binary files /dev/null and b/images/osmosis/factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/bOSMO.png differ diff --git a/images/osmosis/factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE.png b/images/osmosis/factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE.png new file mode 100644 index 000000000..249aa1efd Binary files /dev/null and b/images/osmosis/factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE.png differ diff --git a/images/osmosis/factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC.png b/images/osmosis/factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC.png new file mode 100644 index 000000000..e8f2527f6 Binary files /dev/null and b/images/osmosis/factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC.png differ diff --git a/images/ovg/chain.png b/images/ovg/chain.png new file mode 100644 index 000000000..7219f75df Binary files /dev/null and b/images/ovg/chain.png differ diff --git a/images/perun/chain.png b/images/perun/chain.png new file mode 100644 index 000000000..ab2c3dc1f Binary files /dev/null and b/images/perun/chain.png differ diff --git a/images/phoenix/factory/terra1f5cfm48gcezl3cx25l64ngc4yktnmx7rcpj3kggu6v273742sqqs5yn5ks/luna.ash.png b/images/phoenix/factory/terra1f5cfm48gcezl3cx25l64ngc4yktnmx7rcpj3kggu6v273742sqqs5yn5ks/luna.ash.png new file mode 100644 index 000000000..6bc31ebc9 Binary files /dev/null and b/images/phoenix/factory/terra1f5cfm48gcezl3cx25l64ngc4yktnmx7rcpj3kggu6v273742sqqs5yn5ks/luna.ash.png differ diff --git a/images/pion/chain.png b/images/pion/chain.png new file mode 100644 index 000000000..c44d91494 Binary files /dev/null and b/images/pion/chain.png differ diff --git a/images/pion/factory/neutron15lku24mqhvy4v4gryrqs4662n9v9q4ux9tayn89cmdzldjcgawushxvm76/amATOM.png b/images/pion/factory/neutron15lku24mqhvy4v4gryrqs4662n9v9q4ux9tayn89cmdzldjcgawushxvm76/amATOM.png new file mode 100644 index 000000000..294b86e21 Binary files /dev/null and b/images/pion/factory/neutron15lku24mqhvy4v4gryrqs4662n9v9q4ux9tayn89cmdzldjcgawushxvm76/amATOM.png differ diff --git a/images/planq_7077/chain.png b/images/planq_7077/chain.png new file mode 100644 index 000000000..ceb68a4e5 Binary files /dev/null and b/images/planq_7077/chain.png differ diff --git a/images/pryzm/chain.png b/images/pryzm/chain.png new file mode 100644 index 000000000..c42e84bca Binary files /dev/null and b/images/pryzm/chain.png differ diff --git a/images/pryzm/uauuu.png b/images/pryzm/uauuu.png new file mode 100644 index 000000000..047959aab Binary files /dev/null and b/images/pryzm/uauuu.png differ diff --git a/images/pryzm/upryzm.png b/images/pryzm/upryzm.png new file mode 100644 index 000000000..876692495 Binary files /dev/null and b/images/pryzm/upryzm.png differ diff --git a/images/router_9600/chain.png b/images/router_9600/chain.png new file mode 100644 index 000000000..1cb2124b8 Binary files /dev/null and b/images/router_9600/chain.png differ diff --git a/images/sandbox/chain.png b/images/sandbox/chain.png deleted file mode 100644 index 9c3272dfd..000000000 Binary files a/images/sandbox/chain.png and /dev/null differ diff --git a/images/scorum/gas.png b/images/scorum/gas.png index f41a8d4b7..aa418a17d 100644 Binary files a/images/scorum/gas.png and b/images/scorum/gas.png differ diff --git a/images/scorum/scr.png b/images/scorum/scr.png index b83f0c581..1b21776c1 100644 Binary files a/images/scorum/scr.png and b/images/scorum/scr.png differ diff --git a/images/scorum/sp.png b/images/scorum/sp.png index f41a8d4b7..ecbc4a40f 100644 Binary files a/images/scorum/sp.png and b/images/scorum/sp.png differ diff --git a/images/seda-1-testnet/chain.png b/images/seda-1-testnet/chain.png new file mode 100644 index 000000000..83983024d Binary files /dev/null and b/images/seda-1-testnet/chain.png differ diff --git a/images/seda/chain.png b/images/seda/chain.png new file mode 100644 index 000000000..83983024d Binary files /dev/null and b/images/seda/chain.png differ diff --git a/images/self/chain.png b/images/self/chain.png new file mode 100644 index 000000000..8016ae25c Binary files /dev/null and b/images/self/chain.png differ diff --git a/images/sge-network/chain.png b/images/sge-network/chain.png new file mode 100644 index 000000000..df92bb08c Binary files /dev/null and b/images/sge-network/chain.png differ diff --git a/images/shido_9007/chain.png b/images/shido_9007/chain.png new file mode 100644 index 000000000..daf3e154f Binary files /dev/null and b/images/shido_9007/chain.png differ diff --git a/images/shido_9007/shido.png b/images/shido_9007/shido.png new file mode 100644 index 000000000..daf3e154f Binary files /dev/null and b/images/shido_9007/shido.png differ diff --git a/images/shido_9008/chain.png b/images/shido_9008/chain.png new file mode 100644 index 000000000..daf3e154f Binary files /dev/null and b/images/shido_9008/chain.png differ diff --git a/images/shido_9008/shido.png b/images/shido_9008/shido.png new file mode 100644 index 000000000..daf3e154f Binary files /dev/null and b/images/shido_9008/shido.png differ diff --git a/images/soarchaintestnet/chain.png b/images/soarchaintestnet/chain.png new file mode 100644 index 000000000..2bf6ccbc9 Binary files /dev/null and b/images/soarchaintestnet/chain.png differ diff --git a/images/ssc/chain.png b/images/ssc/chain.png new file mode 100644 index 000000000..0813f98cc Binary files /dev/null and b/images/ssc/chain.png differ diff --git a/images/stargaze/chain.png b/images/stargaze/chain.png index 4951b11fa..bb922fe38 100644 Binary files a/images/stargaze/chain.png and b/images/stargaze/chain.png differ diff --git a/images/stargaze/factory/stars132jrwxjps93usq3ejy7cq6qqc7j3gtx3mu8jhaj5nnk3p0ste2ssqsndvj/botz.png b/images/stargaze/factory/stars132jrwxjps93usq3ejy7cq6qqc7j3gtx3mu8jhaj5nnk3p0ste2ssqsndvj/botz.png new file mode 100644 index 000000000..3bcf5bc22 Binary files /dev/null and b/images/stargaze/factory/stars132jrwxjps93usq3ejy7cq6qqc7j3gtx3mu8jhaj5nnk3p0ste2ssqsndvj/botz.png differ diff --git a/images/stargaze/factory/stars133a6mnkp9d3pkt48y699hy0tvq5xngpz7cwak0qr4suq0cj9zpfslvt0em/kingshit.png b/images/stargaze/factory/stars133a6mnkp9d3pkt48y699hy0tvq5xngpz7cwak0qr4suq0cj9zpfslvt0em/kingshit.png new file mode 100644 index 000000000..b026bebbb Binary files /dev/null and b/images/stargaze/factory/stars133a6mnkp9d3pkt48y699hy0tvq5xngpz7cwak0qr4suq0cj9zpfslvt0em/kingshit.png differ diff --git a/images/stargaze/factory/stars14mfk0sd6rlajkvgpgrvfk9lfhjwmkrzvednekvcn32jzy3drjy5sfem9p7/cocks.png b/images/stargaze/factory/stars14mfk0sd6rlajkvgpgrvfk9lfhjwmkrzvednekvcn32jzy3drjy5sfem9p7/cocks.png new file mode 100644 index 000000000..b6c491325 Binary files /dev/null and b/images/stargaze/factory/stars14mfk0sd6rlajkvgpgrvfk9lfhjwmkrzvednekvcn32jzy3drjy5sfem9p7/cocks.png differ diff --git a/images/stargaze/factory/stars1k7qsxdxh8calmt4txk75e6hdntefslegwddqnlwjjqgjkmcfqy0qa97sn8/pleb.png b/images/stargaze/factory/stars1k7qsxdxh8calmt4txk75e6hdntefslegwddqnlwjjqgjkmcfqy0qa97sn8/pleb.png new file mode 100644 index 000000000..3cbbf6ae9 Binary files /dev/null and b/images/stargaze/factory/stars1k7qsxdxh8calmt4txk75e6hdntefslegwddqnlwjjqgjkmcfqy0qa97sn8/pleb.png differ diff --git a/images/stargaze/ustars.png b/images/stargaze/ustars.png index b0fb83ae5..bb922fe38 100644 Binary files a/images/stargaze/ustars.png and b/images/stargaze/ustars.png differ diff --git a/images/stride-internal/chain.png b/images/stride-internal/chain.png new file mode 100644 index 000000000..33c562f45 Binary files /dev/null and b/images/stride-internal/chain.png differ diff --git a/images/stride-internal/ustrd.png b/images/stride-internal/ustrd.png new file mode 100644 index 000000000..33c562f45 Binary files /dev/null and b/images/stride-internal/ustrd.png differ diff --git a/images/stride/staISLM.png b/images/stride/staISLM.png new file mode 100644 index 000000000..28c193b99 Binary files /dev/null and b/images/stride/staISLM.png differ diff --git a/images/stride/stadym.png b/images/stride/stadym.png new file mode 100644 index 000000000..b340e7d31 Binary files /dev/null and b/images/stride/stadym.png differ diff --git a/images/stride/stuband.png b/images/stride/stuband.png new file mode 100644 index 000000000..5dfe98b7a Binary files /dev/null and b/images/stride/stuband.png differ diff --git a/images/stride/stusaga.png b/images/stride/stusaga.png new file mode 100644 index 000000000..21daa5dd2 Binary files /dev/null and b/images/stride/stusaga.png differ diff --git a/images/stwart_test_1/chain.png b/images/stwart_test_1/chain.png new file mode 100644 index 000000000..e10caee7d Binary files /dev/null and b/images/stwart_test_1/chain.png differ diff --git a/images/stwart_test_1/ssc.png b/images/stwart_test_1/ssc.png new file mode 100644 index 000000000..1e32c287c Binary files /dev/null and b/images/stwart_test_1/ssc.png differ diff --git a/images/stwart_test_1/stw.png b/images/stwart_test_1/stw.png new file mode 100644 index 000000000..f8a301fc0 Binary files /dev/null and b/images/stwart_test_1/stw.png differ diff --git a/images/stwart_testnet_1/chain.png b/images/stwart_testnet_1/chain.png new file mode 100644 index 000000000..ae2896ddc Binary files /dev/null and b/images/stwart_testnet_1/chain.png differ diff --git a/images/stwart_testnet_1/ssc.png b/images/stwart_testnet_1/ssc.png new file mode 100644 index 000000000..bd23e47e6 Binary files /dev/null and b/images/stwart_testnet_1/ssc.png differ diff --git a/images/stwart_testnet_1/stw.png b/images/stwart_testnet_1/stw.png new file mode 100644 index 000000000..bed63f7c4 Binary files /dev/null and b/images/stwart_testnet_1/stw.png differ diff --git a/images/swisstronik_1291/chain.png b/images/swisstronik_1291/chain.png new file mode 100644 index 000000000..acd2d9501 Binary files /dev/null and b/images/swisstronik_1291/chain.png differ diff --git a/images/symphony-testnet/chain.png b/images/symphony-testnet/chain.png new file mode 100644 index 000000000..b4a8d1825 Binary files /dev/null and b/images/symphony-testnet/chain.png differ diff --git a/images/symphony-testnet/melody.png b/images/symphony-testnet/melody.png new file mode 100644 index 000000000..b4a8d1825 Binary files /dev/null and b/images/symphony-testnet/melody.png differ diff --git a/images/titan-test/chain.png b/images/titan-test/chain.png new file mode 100644 index 000000000..4192d73ca Binary files /dev/null and b/images/titan-test/chain.png differ diff --git a/images/titan-test/utnt1.png b/images/titan-test/utnt1.png new file mode 100644 index 000000000..4192d73ca Binary files /dev/null and b/images/titan-test/utnt1.png differ diff --git a/images/titan-test/uttnt.png b/images/titan-test/uttnt.png new file mode 100644 index 000000000..4192d73ca Binary files /dev/null and b/images/titan-test/uttnt.png differ diff --git a/images/titan_18888/chain.png b/images/titan_18888/chain.png new file mode 100644 index 000000000..89edaaed4 Binary files /dev/null and b/images/titan_18888/chain.png differ diff --git a/images/titan_18888/tkx.png b/images/titan_18888/tkx.png new file mode 100644 index 000000000..d825f15ec Binary files /dev/null and b/images/titan_18888/tkx.png differ diff --git a/images/messenger/chain.png b/images/tumbler/chain.png similarity index 100% rename from images/messenger/chain.png rename to images/tumbler/chain.png diff --git a/images/vota-vk/chain.png b/images/vota-vk/chain.png deleted file mode 100644 index c7cec5765..000000000 Binary files a/images/vota-vk/chain.png and /dev/null differ diff --git a/images/vota-vk/peaka.png b/images/vota-vk/peaka.png deleted file mode 100644 index c7cec5765..000000000 Binary files a/images/vota-vk/peaka.png and /dev/null differ diff --git a/images/wormchain/chain.png b/images/wormchain/chain.png new file mode 100644 index 000000000..54921ee88 Binary files /dev/null and b/images/wormchain/chain.png differ diff --git a/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh.png b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh.png new file mode 100644 index 000000000..0b90796f3 Binary files /dev/null and b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh.png differ diff --git a/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/54RgtKyJuM9boEu4G7Dzp2mMrg6w5MuctfU95HoHHeL3.png b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/54RgtKyJuM9boEu4G7Dzp2mMrg6w5MuctfU95HoHHeL3.png new file mode 100644 index 000000000..80e105242 Binary files /dev/null and b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/54RgtKyJuM9boEu4G7Dzp2mMrg6w5MuctfU95HoHHeL3.png differ diff --git a/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp.png b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp.png new file mode 100644 index 000000000..6dbe7f65b Binary files /dev/null and b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp.png differ diff --git a/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b.png b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b.png new file mode 100644 index 000000000..cc113c982 Binary files /dev/null and b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b.png differ diff --git a/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r.png b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r.png new file mode 100644 index 000000000..1cf864648 Binary files /dev/null and b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r.png differ diff --git a/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi.png b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi.png new file mode 100644 index 000000000..e4f37ae29 Binary files /dev/null and b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi.png differ diff --git a/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA.png b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA.png new file mode 100644 index 000000000..7b77dd551 Binary files /dev/null and b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA.png differ diff --git a/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR.png b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR.png new file mode 100644 index 000000000..d87669fbd Binary files /dev/null and b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR.png differ diff --git a/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd.png b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd.png new file mode 100644 index 000000000..7c48b4223 Binary files /dev/null and b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd.png differ diff --git a/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw.png b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw.png new file mode 100644 index 000000000..fd556f9a9 Binary files /dev/null and b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw.png differ diff --git a/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1.png b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1.png new file mode 100644 index 000000000..39513347d Binary files /dev/null and b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1.png differ diff --git a/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt.png b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt.png new file mode 100644 index 000000000..6c4e2830a Binary files /dev/null and b/images/wormchain/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt.png differ diff --git a/images/xion-testnet/chain.png b/images/xion-testnet/chain.png new file mode 100644 index 000000000..8e6078f22 Binary files /dev/null and b/images/xion-testnet/chain.png differ diff --git a/package.json b/package.json index 037b94524..fce04f1d5 100644 --- a/package.json +++ b/package.json @@ -14,8 +14,8 @@ "build": "next build", "start": "next start", "lint": "next lint", - "build:server": "tsc -p ./server/tsconfig.json && mkdir -p ./server/build/static && cp -r ./cosmos ./server/build/static", - "bundle:server": "rm -rf ./server/bundle && esbuild ./server/src/index.ts --bundle --minify --sourcemap --platform=node --target=node18 --outdir=./server/bundle && mkdir -p ./server/bundle/static && cp -r ./cosmos ./server/bundle/static", + "build:server": "tsc -p ./server/tsconfig.json && mkdir -p ./server/build/static && cp -r ./cosmos ./server/build/static && cp -r ./evm ./server/build/static", + "bundle:server": "rm -rf ./server/bundle && esbuild ./server/src/index.ts --bundle --minify --sourcemap --platform=node --target=node18 --outdir=./server/bundle && mkdir -p ./server/bundle/static && cp -r ./cosmos ./server/bundle/static && cp -r ./evm ./server/bundle/static", "bundle:zip": "cd ./server && zip -r ../bundle.zip ./bundle" }, "pre-commit": [ @@ -25,10 +25,11 @@ "author": "", "license": "Apache-2.0", "dependencies": { - "@keplr-wallet/chain-validator": "0.12.42", - "@keplr-wallet/common": "0.12.42", - "@keplr-wallet/cosmos": "0.12.42", - "@keplr-wallet/types": "0.12.42", + "@actions/core": "^1.10.1", + "@keplr-wallet/chain-validator": "v0.12.118-rc.0", + "@keplr-wallet/common": "v0.12.118-rc.0", + "@keplr-wallet/cosmos": "v0.12.118-rc.0", + "@keplr-wallet/types": "v0.12.118-rc.0", "axios": "^0.27.2", "cors": "^2.8.5", "esbuild": "^0.19.5", diff --git a/pages/api/chains.ts b/pages/api/chains.ts index c6f4a720d..f50193dd2 100644 --- a/pages/api/chains.ts +++ b/pages/api/chains.ts @@ -28,16 +28,40 @@ export default async function ( }); }); - const jsonDirectory = path.join(process.cwd(), "cosmos"); - - const fetchChains = (await fs.readdir(jsonDirectory)).map((fileName) => - fs.readFile(`${jsonDirectory}/${fileName}`, "utf8"), + const cosmosChainsDirectory = path.join(process.cwd(), "cosmos"); + const cosmosChains = (await fs.readdir(cosmosChainsDirectory)).map( + (fileName) => fs.readFile(`${cosmosChainsDirectory}/${fileName}`, "utf8"), ); - - const chainInfos: ChainInfo[] = (await Promise.all(fetchChains)).map( + const cosmosChainInfos: ChainInfo[] = (await Promise.all(cosmosChains)).map( (chainInfo) => JSON.parse(chainInfo), ); - //Return the content of the data file in json format - res.status(200).json({ chains: chainInfos }); + const evmChainsDirectory = path.join(process.cwd(), "evm"); + const evmChains = await Promise.all( + ( + await fs.readdir(evmChainsDirectory) + ).map((fileName) => + fs.readFile(`${evmChainsDirectory}/${fileName}`, "utf8"), + ), + ); + const evmChainInfos: ChainInfo[] = (await Promise.all(evmChains)).map( + (chainInfo) => { + const evmChainInfo = JSON.parse(chainInfo); + const evmChainId = parseInt(evmChainInfo.chainId.replace("eip155:", "")); + const { websocket, features, ...restEVMChainInfo } = evmChainInfo; + return { + ...restEVMChainInfo, + rest: evmChainInfo.rpc, + evm: { + chainId: evmChainId, + rpc: evmChainInfo.rpc, + websocket, + }, + features: ["eth-address-gen", "eth-key-sign"].concat(features ?? []), + }; + }, + ); + + // Return the content of the data file in json format + res.status(200).json({ chains: cosmosChainInfos.concat(evmChainInfos) }); } diff --git a/pulumi/index.ts b/pulumi/index.ts index bae2400c7..20fb2ac64 100644 --- a/pulumi/index.ts +++ b/pulumi/index.ts @@ -18,11 +18,23 @@ const role = new aws.iam.Role(`chain-registry-lambda-role-${stack}`, { ], }, }); +const policy = new aws.iam.Policy(`chain-registry-lambda-policy-${stack}`, { + policy: { + Version: "2012-10-17", + Statement: [ + { + Effect: "Allow", + Action: ["s3:GetObject", "s3:PutObject"], + Resource: "arn:aws:s3:::*", + }, + ], + }, +}); new aws.iam.RolePolicyAttachment( `chain-registry-lambda-role-attachment-${stack}`, { role, - policyArn: aws.iam.ManagedPolicies.AWSLambdaExecute, + policyArn: policy.arn, }, ); diff --git a/src/chain-list.js b/src/chain-list.js index bba49a93e..e66b7f4a7 100644 --- a/src/chain-list.js +++ b/src/chain-list.js @@ -56,7 +56,10 @@ async function init() { const response = await fetch( "https://keplr-chain-registry.vercel.app/api/chains", ); - const chainInfos = await response.json(); + const _chainInfos = await response.json(); + const chainInfos = _chainInfos.chains.filter((chainInfo) => { + return !chainInfo.hideInUI; + }); let registeredChainIds = []; if (keplr) { @@ -65,19 +68,19 @@ async function init() { (chainInfo) => parse(chainInfo.chainId).identifier, ); } else { - registeredChainIds = chainInfos.chains + registeredChainIds = chainInfos .filter((chainInfo) => !chainInfo.nodeProvider) .map((chainInfo) => parse(chainInfo.chainId).identifier); } removeChainListChild(); - const filteredChainInfos = chainInfos.chains.filter( + const filteredChainInfos = chainInfos.filter( (chainInfo) => !registeredChainIds.includes(parse(chainInfo.chainId).identifier), ); - const registeredChainInfos = chainInfos.chains + const registeredChainInfos = chainInfos .filter((chainInfo) => chainInfo.nodeProvider) .filter((chainInfo) => registeredChainIds.includes(parse(chainInfo.chainId).identifier), @@ -153,9 +156,11 @@ function createChainCurrency(chainItemDiv, chainInfo) { const chainCurrencyDiv = document.createElement("div"); chainCurrencyDiv.className = "chain-currency"; - const chainCurrencyText = document.createTextNode( - chainInfo.currencies[0].coinDenom, - ); + const chainCurrency = chainInfo.stakeCurrency + ? chainInfo.stakeCurrency + : chainInfo.currencies[0]; + + const chainCurrencyText = document.createTextNode(chainCurrency.coinDenom); chainCurrencyDiv.appendChild(chainCurrencyText); chainItemDiv.appendChild(chainCurrencyDiv); @@ -177,22 +182,39 @@ function createNodeProvider(chainItemDiv, chainInfo) { ); providerLinkA.appendChild(providerNameText); - const providerEmailDiv = document.createElement("div"); - providerEmailDiv.className = "provider-email"; + const providerContactDiv = document.createElement("div"); + providerContactDiv.className = "provider-email"; - const providerEmailText = document.createTextNode( - chainInfo.nodeProvider.email, + const isEmail = chainInfo.nodeProvider.email != null; + const isDiscord = chainInfo.nodeProvider.discord != null; + + const providerContactText = document.createTextNode( + isEmail + ? chainInfo.nodeProvider.email + : isDiscord + ? chainInfo.nodeProvider.discord + : "", ); - providerEmailDiv.appendChild(providerEmailText); + providerContactDiv.appendChild(providerContactText); + providerContactDiv.onclick = function () { + window.location = isEmail + ? `mailto:${chainInfo.nodeProvider.email}` + : isDiscord + ? chainInfo.nodeProvider.discord + : ""; + }; nodeProviderDiv.appendChild(providerLinkA); - nodeProviderDiv.appendChild(providerEmailDiv); + nodeProviderDiv.appendChild(providerContactDiv); chainItemDiv.appendChild(nodeProviderDiv); } else { const nodeProviderDiv = document.createElement("div"); nodeProviderDiv.className = "native-node-provider"; + const providerNameText = document.createTextNode("Keplr Node"); + nodeProviderDiv.appendChild(providerNameText); + chainItemDiv.appendChild(nodeProviderDiv); } } @@ -207,8 +229,16 @@ function createRegisterButton(chainItemDiv, chainInfo, keplr) { registerButton.onclick = async () => { try { if (keplr) { + registerButton.classList.add("button-loading"); + registerButton.textContent = "Loading"; + await window.keplr.experimentalSuggestChain(chainInfo); - init(); + + setTimeout(() => { + registerButton.classList.remove("button-loading"); + registerButton.textContent = "Add to Keplr"; + init(); + }, 1000); } else { const keplrNotInstalledDiv = document.getElementById( "keplr-not-installed", @@ -216,6 +246,11 @@ function createRegisterButton(chainItemDiv, chainInfo, keplr) { keplrNotInstalledDiv.style.display = "flex"; } } catch (e) { + setTimeout(() => { + registerButton.classList.remove("button-loading"); + registerButton.textContent = "Add to Keplr"; + }, 300); + console.error(e); } }; diff --git a/src/cms.ts b/src/cms.ts index 795ff2b88..3ba142b67 100644 --- a/src/cms.ts +++ b/src/cms.ts @@ -77,7 +77,7 @@ const main = async () => { .replace(/(\ |\.)/g, "-"), "chain-identifier": chainIdentifier, token: chainInfo.currencies[0].coinDenom, - "short-address": chainInfo.bech32Config.bech32PrefixAccAddr, + "short-address": chainInfo.bech32Config?.bech32PrefixAccAddr, label: { url: chainInfo?.chainSymbolImageUrl, }, @@ -103,7 +103,7 @@ const main = async () => { name: chainInfo.chainName, "chain-identifier": chainIdentifier, token: chainInfo.currencies[0].coinDenom, - "short-address": chainInfo.bech32Config.bech32PrefixAccAddr, + "short-address": chainInfo.bech32Config?.bech32PrefixAccAddr, label: { url: chainInfo?.chainSymbolImageUrl, }, diff --git a/src/constants.ts b/src/constants.ts index 969c0d1c7..0dd614955 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -8,14 +8,11 @@ export const nativeMainnetChainIdentifiers: string[] = [ "bostrom", "core", "evmos_9001", - "gravity-bridge", "irishub", "kava_2222", "regen", "secret", "sentinelhub", - "shentu-2.2", - "sifchain", "sommelier", "stargaze", "stride", @@ -31,13 +28,26 @@ export const nativeMainnetChainIdentifiers: string[] = [ "omniflixhub", "kyve", "neutron", - "gitopia", "likecoin-mainnet", "dydx-mainnet", "celestia", "passage", "dymension_1100", "chihuahua", + "ssc", + "seda", + "dimension_37", + "pryzm", + "zetachain_7000", + "lava-mainnet", + "eip155:1", + "eip155:10", + "eip155:56", + "eip155:137", + "eip155:8453", + "eip155:42161", + "eip155:43114", + "eip155:81457", ]; export const nativeTestnetChainIdentifiers: string[] = [ @@ -54,4 +64,8 @@ export const nativeTestnetChainIdentifiers: string[] = [ "ssc-testnet", "test-core", "govgen", + "seda-1-testnet", + "initiation", + "nillion-chain-testnet", + "athens_7001", ]; diff --git a/src/index.ts b/src/index.ts index 230c80630..1d5a18254 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,8 @@ -import { checkImageSize, validateChainInfoFromPath } from "./validate"; +import { + checkImageSize, + validateCosmosChainInfoFromPath, + validateEvmChainInfoFromPath, +} from "./validate"; import libPath from "path"; import { ChainIdHelper } from "@keplr-wallet/cosmos"; import { @@ -17,7 +21,11 @@ const main = async () => { const path = args[0]; - const chainInfo = await validateChainInfoFromPath(path); + const isEVMOnlyChain = path.includes("eip155:"); + + const chainInfo = isEVMOnlyChain + ? await validateEvmChainInfoFromPath(path) + : await validateCosmosChainInfoFromPath(path); const isNativeSupported = (() => { const chainIdentifier = ChainIdHelper.parse(chainInfo.chainId).identifier; diff --git a/src/schedule.ts b/src/schedule.ts index c4ced7547..059f2a7e6 100644 --- a/src/schedule.ts +++ b/src/schedule.ts @@ -1,8 +1,14 @@ import { readdirSync } from "fs"; -import { validateChainInfoFromPath } from "./validate"; +import { + validateCosmosChainInfoFromPath, + validateEvmChainInfoFromPath, +} from "./validate"; +import * as core from "@actions/core"; const main = async () => { - const jsonFiles = readdirSync("cosmos"); + const cosmosJsonFiles = readdirSync("cosmos"); + const evmJsonFiles = readdirSync("evm"); + core.setOutput("hasError", false); let errorMessages: ( | { @@ -11,18 +17,32 @@ const main = async () => { } | undefined )[] = await Promise.all( - jsonFiles.map(async (file) => { - try { - await validateChainInfoFromPath(`cosmos/${file}`); - } catch (e) { - return { - file, - error: e, - }; - } + cosmosJsonFiles + .map(async (file) => { + try { + await validateCosmosChainInfoFromPath(`cosmos/${file}`); + } catch (e) { + return { + file, + error: e, + }; + } - return undefined; - }), + return undefined; + }) + .concat( + evmJsonFiles.map(async (file) => { + try { + await validateEvmChainInfoFromPath(`evm/${file}`); + } catch (e) { + return { + file, + error: e, + }; + } + return undefined; + }), + ), ); errorMessages = errorMessages.filter((e) => e != null); @@ -32,6 +52,13 @@ const main = async () => { } if (errorMessages.length !== 0) { + core.setOutput("hasError", true); + core.setOutput( + "errorMessage", + errorMessages + .map((e) => `${e?.file}: ${e?.error?.message || e?.error}`) + .join("\\n \\n"), + ); process.exit(1); } }; diff --git a/src/validate.ts b/src/validate.ts index 1fddaa99a..626340c39 100644 --- a/src/validate.ts +++ b/src/validate.ts @@ -2,6 +2,7 @@ import sizeOf from "image-size"; import { readFileSync } from "fs"; import { ChainInfo } from "@keplr-wallet/types"; import { + checkEvmRpcConnectivity, checkRestConnectivity, checkRPCConnectivity, NonRecognizableChainFeatures, @@ -18,7 +19,7 @@ export const fileToChainInfo = (filePath: string) => { return chainInfo; }; -export const validateChainInfoFromPath = async ( +export const validateCosmosChainInfoFromPath = async ( path: string, ): Promise