diff --git a/.github/workflows/action_lint.yml b/.github/workflows/action_lint.yml new file mode 100644 index 000000000000..5fbabf8e0fa0 --- /dev/null +++ b/.github/workflows/action_lint.yml @@ -0,0 +1,8 @@ +name: Github-Action linter +on: [pull_request] +jobs: + actionlint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4.2.2 + - uses: reviewdog/action-actionlint@v1 \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 82bf4d26b0f7..6ddfb961eaed 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,13 +5,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2.3.1 + uses: actions/checkout@v4.2.2 with: submodules: recursive - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v41 + uses: step-security/changed-files@v45.0.1 - name: Check changed files run: | diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 36dcf968cda1..d634b4d1b031 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -7,14 +7,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2.3.1 + uses: actions/checkout@v4.2.2 with: submodules: recursive - name: Build run: | ./gradlew run - name: Set Node.js 18.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4.2.0 with: node-version: 18.x - name: Run yarn install diff --git a/.github/workflows/pr_checks.yml b/.github/workflows/pr_checks.yml deleted file mode 100644 index a95936d70595..000000000000 --- a/.github/workflows/pr_checks.yml +++ /dev/null @@ -1,141 +0,0 @@ -name: Run PR Checks - -on: - pull_request: - -jobs: - validate_icons: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - uses: nrwl/nx-set-shas@v3 - id: last_successful_commit_push - with: - main-branch-name: master - workflow-id: 'pr_checks.yml' - - - name: Get changed icons - id: changed-icons - uses: tj-actions/changed-files@v41 - with: - files: _data/icons/*.json - base_sha: ${{ steps.last_successful_commit_push.outputs.base }} - - - name: Get changed icon blobs - id: changed-icon-blobs - uses: tj-actions/changed-files@v41 - with: - files: _data/iconsDownload/* - base_sha: ${{ steps.last_successful_commit_push.outputs.base }} - - - run: sudo apt-get -y install jq curl exiftool - - - name: Verify the changed icons - if: steps.changed-icons.outputs.any_changed == 'true' - run: | - set -euo pipefail - - BAD=0 - - CHANGED_ICON_BLOBS=(${{ steps.changed-icon-blobs.outputs.all_changed_files }}) - - for CHANGED_FILE in ${{ steps.changed-icons.outputs.all_changed_files }}; do - echo "Checking icon $CHANGED_FILE" - URL=$(cat "$CHANGED_FILE" | jq '.[0].url' -r) - if [[ "$URL" =~ ^ipfs://([A-Za-z0-9]+)$ ]]; then - IPFS_HASH=${BASH_REMATCH[1]} - - if [[ "${CHANGED_ICON_BLOBS[*]} " =~ "_data/iconsDownload/$IPFS_HASH " ]]; then - TARGET_FILE="_data/iconsDownload/$IPFS_HASH" - else - echo "Trying to download the image..." - TARGET_FILE=icon - curl -Lo icon "https://cloudflare-ipfs.com/ipfs/$IPFS_HASH" 2>/dev/null - fi - - METADATA=$(exiftool $TARGET_FILE -json) - - SCHEMA_WIDTH=$(cat "$CHANGED_FILE" | jq '.[0].width' -r) - SCHEMA_HEIGHT=$(cat "$CHANGED_FILE" | jq '.[0].height' -r) - SCHEMA_TYPE=$(cat "$CHANGED_FILE" | jq '.[0].format' -r) - META_WIDTH=$(echo "$METADATA" | jq '.[0].ImageWidth' -r) - META_HEIGHT=$(echo "$METADATA" | jq '.[0].ImageHeight' -r) - META_TYPE=$(echo "$METADATA" | jq '.[0].FileTypeExtension' -r) - - if [ "$SCHEMA_WIDTH" != "$META_WIDTH" ]; then - echo "Expected width $SCHEMA_WIDTH, got $META_WIDTH" - BAD=1 - fi - - if [ "$SCHEMA_HEIGHT" != "$META_HEIGHT" ]; then - echo "Expected height $SCHEMA_HEIGHT, got $META_HEIGHT" - BAD=1 - fi - - case "$SCHEMA_TYPE" in - png) - if [ "$META_TYPE" != "png" ]; then - echo "Expected type png, got $META_TYPE" - BAD=1 - fi - ;; - jpg) - if [ "$META_TYPE" != "jpg" ]; then - echo "Expected type jpg, got $META_TYPE" - BAD=1 - fi - ;; - svg) - if [ "$META_TYPE" != "svg" ]; then - echo "Expected type svg, got $META_TYPE" - BAD=1 - fi - ;; - *) - echo "Expected type png, jpg, or svg, got $SCHEMA_TYPE" - BAD=1 - ;; - esac - else - echo "Expected an IPFS URL, got $URL" - BAD=1 - fi - done - exit $BAD - - validate_formatting: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - uses: nrwl/nx-set-shas@v3 - id: last_successful_commit_push - with: - main-branch-name: master - workflow-id: 'pr_checks.yml' - - - name: Get changed files - id: changed-files - uses: tj-actions/changed-files@v41 - with: - files: _data/*/*.json - base_sha: ${{ steps.last_successful_commit_push.outputs.base }} - - - run: sudo npm i -g prettier - - - name: Verify the changed icons - if: steps.changed-files.outputs.any_changed == 'true' - run: | - set -euo pipefail - - BAD=0 - - for CHANGED_FILE in ${{ steps.changed-files.outputs.all_changed_files }}; do - echo "Checking $CHANGED_FILE" - diff -u "$CHANGED_FILE" <(prettier "$CHANGED_FILE") - done diff --git a/.github/workflows/pr_intro_comment.yml b/.github/workflows/pr_intro_comment.yml new file mode 100644 index 000000000000..a9e7d2e74cb0 --- /dev/null +++ b/.github/workflows/pr_intro_comment.yml @@ -0,0 +1,14 @@ +on: + pull_request_target: + types: [opened] +jobs: + comment_on_pr: + runs-on: ubuntu-latest + name: Comment after PR is submitted + steps: + - name: Comment PR + uses: thollander/actions-comment-pull-request@v2 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + message: | + You successfully submitted a PR! Due to the amount of PRs coming in: we will only look at PRs that the CI is happy with. We can also not hold your hand getting the CI green - just look how others that where merged did it and RTFM. So as long as there is any CI check that reports an error - no human will look at this. You might be able to ask for some support after supporting the project - e.g. by sending funds to lists.eth. When you fixed things after a requested change - then you also need to (re-)request a review. \ No newline at end of file diff --git a/.github/workflows/prettier_check.yml b/.github/workflows/prettier_check.yml index 5ae78968a4d2..da06c98ae042 100644 --- a/.github/workflows/prettier_check.yml +++ b/.github/workflows/prettier_check.yml @@ -2,14 +2,15 @@ name: Run prettier check on: push: + pull_request: jobs: prettier: runs-on: ubuntu-latest steps: - name: Check out repo - uses: actions/checkout@v2 - - uses: actions/cache@v2 + uses: actions/checkout@v4.2.2 + - uses: actions/cache@v4 name: Configure npm caching with: path: ~/.npm diff --git a/.github/workflows/prettier_write.yml b/.github/workflows/prettier_write.yml deleted file mode 100644 index ef54c4b975e0..000000000000 --- a/.github/workflows/prettier_write.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Run prettier write - -on: - pull_request: - -jobs: - prettier: - runs-on: ubuntu-latest - steps: - - name: Check out repo - uses: actions/checkout@v2 - env: - PAT: ${{ secrets.PAT }} - with: - token: ${{ PAT }} - repository: ${{ github.event.pull_request.head.repo.full_name }} - ref: ${{ github.event.pull_request.head.ref }} - - uses: actions/cache@v2 - name: Configure npm caching - with: - path: ~/.npm - key: ${{ runner.os }}-npm-${{ hashFiles('**/workflows/prettier.yml') }} - restore-keys: | - ${{ runner.os }}-npm- - - name: Run prettier - run: |- - npx prettier --write '_data/*/*.json' - - name: Commit changes - uses: EndBug/add-and-commit@v9 - with: - message: 'Fix formatting' diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml index 040b5247afe0..9bdfd725911b 100644 --- a/.github/workflows/rebase.yml +++ b/.github/workflows/rebase.yml @@ -14,7 +14,7 @@ jobs: ) steps: - name: Checkout the latest code - uses: actions/checkout@v2 + uses: actions/checkout@v4.2.2 with: token: ${{ secrets.GITHUB_TOKEN }} fetch-depth: 0 # otherwise, you will fail to push refs to dest repo diff --git a/.github/workflows/validate_json.yml b/.github/workflows/validate_json.yml index 493033306a23..fa3229890893 100644 --- a/.github/workflows/validate_json.yml +++ b/.github/workflows/validate_json.yml @@ -9,8 +9,8 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repo - uses: actions/checkout@v2 - - uses: actions/cache@v2 + uses: actions/checkout@v4.2.2 + - uses: actions/cache@v4 name: Configure npm caching with: path: ~/.npm @@ -21,4 +21,4 @@ jobs: working-directory: ./tools run: |- npm install - node schemaCheck.js \ No newline at end of file + node schemaCheck.js diff --git a/LICENSE b/LICENSE index ab602974d200..2be05532ba02 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 +Copyright (c) 2025 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index bd22433c843e..e0e2b71b8889 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ The source data is in _data/chains. Each chain has its own file with the filename being the [CAIP-2](https://github.com/ChainAgnostic/CAIPs/blob/master/CAIPs/caip-2.md) representation as name and `.json` as extension. -## Example +## Example: ```json { @@ -33,7 +33,8 @@ The source data is in _data/chains. Each chain has its own file with the filenam } ``` -when an icon is used in either the network or an explorer there must be a json in _data/icons with the name used (e.g. in the above example there must be a `ethereum.json` and a `etherscan.json` in there) - the icon jsons look like this: +When an icon is used in either the network or an explorer, there must be a JSON in _data/icons with the name used. +(e.g. in the above example there must be a `ethereum.json` and a `etherscan.json` in there) - The icon JSON files look like this: ```json @@ -49,9 +50,10 @@ when an icon is used in either the network or an explorer there must be a json i ``` where: - * the URL must be an IPFS url that is publicly resolvable - * width and height are positive integers + * The URL MUST be publicly resolvable through IPFS + * width and height MUST be positive integers * format is either "png", "jpg" or "svg" + * size MUST be less than 250kb If the chain is an L2 or a shard of another chain you can link it to the parent chain like this: @@ -67,7 +69,7 @@ If the chain is an L2 or a shard of another chain you can link it to the parent } ``` -where you need to specify type 2 and the reference to an existing parent. The field about bridges is optional. +where you need to specify the type and the reference to an existing parent. The field about bridges is optional. You can add a `status` field e.g. to deprecate (via status `deprecated`) a chain (a chain should never be deleted as this would open the door to replay attacks) Other options for `status` are `active` (default) or `incubating` @@ -82,7 +84,7 @@ There are also aggregated json files with all chains automatically assembled: * the shortName and name MUST be unique - see e.g. EIP-3770 on why * if referencing a parent chain - the chain MUST exist in the repo - * if using a IPFS CID for the icon - the CID MUST be retrievable via `ipfs get` - not only through some gateway (means please do not use pinata for now) + * if using an IPFS CID for the icon - the CID MUST be retrievable via `ipfs get` - not only through some gateway (means please do not use pinata for now) * for more constraints you can look into the CI ## Collision management @@ -90,12 +92,12 @@ There are also aggregated json files with all chains automatically assembled: We cannot allow more than one chain with the same chainID - this would open the door to replay attacks. The first pull request gets the chainID assigned. When creating a chain we can expect that you read EIP155 which states this repo. All pull requests trying to replace a chainID because they think their chain is better than the other will be closed. - The only way to get a chain reassigned is when the old chain gets deprecated. This can e.g. be used for testnets that are short-lived. But then you will get the redFlag "reusedChaiID" that should be displayed in clients to warn them about the dangers here. + The only way to get a chain reassigned is when the old chain gets deprecated. This can e.g. be used for testnets that are short-lived. But then you will get the redFlag "reusedChainID" that should be displayed in clients to warn them about the dangers here. ## Getting your PR merged ### before PR is submitted -Before submitting a PR, please verify that checks pass with: +Before submitting a PR, please ensure all checks pass by running: ```bash $ ./gradlew run @@ -104,7 +106,7 @@ BUILD SUCCESSFUL in 7s 9 actionable tasks: 9 executed ``` -Also please run the prettier to format your json according to the style [defined here ](https://github.com/ethereum-lists/chains/blob/master/.prettierrc.json) +Additionally, run Prettier to format your JSON according to the style [defined here ](https://github.com/ethereum-lists/chains/blob/master/.prettierrc.json) e.g. run ``` @@ -117,7 +119,7 @@ npx prettier --write _data/*/*.json * When making changes that fix the CI problems - please re-request a review - otherwise it is too much work to track such changes with so many PRs daily ## Usages -### Tools +### Tools * [MESC](https://paradigmxyz.github.io/mesc) ### Explorers @@ -145,6 +147,7 @@ npx prettier --write _data/*/*.json * [evmchainlist.org](https://evmchainlist.org) * [networks.vercel.app](https://networks.vercel.app) * [Wagmi compatible chain configurations](https://spenhouet.com/chains) + * [chainlist.simplr.sh - Info packaged single pager](https://chainlist.simplr.sh) ### Other * [FaucETH](https://github.com/komputing/FaucETH) diff --git a/_data/chains/eip155-1.json b/_data/chains/eip155-1.json index b2c6bd6f5618..647a94f5133c 100644 --- a/_data/chains/eip155-1.json +++ b/_data/chains/eip155-1.json @@ -19,7 +19,8 @@ "https://rpc.mevblocker.io/noreverts", "https://rpc.mevblocker.io/fullprivacy", "https://eth.drpc.org", - "wss://eth.drpc.org" + "wss://eth.drpc.org", + "https://api.securerpc.com/v1" ], "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": [], @@ -53,6 +54,11 @@ "url": "https://ethereum.dex.guru", "icon": "dexguru", "standard": "EIP3091" + }, + { + "name": "Routescan", + "url": "https://ethereum.routescan.io", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-10.json b/_data/chains/eip155-10.json index 2776f0b55c0d..64c3c0388fcc 100644 --- a/_data/chains/eip155-10.json +++ b/_data/chains/eip155-10.json @@ -38,6 +38,11 @@ "url": "https://optimism.dex.guru", "icon": "dexguru", "standard": "EIP3091" + }, + { + "name": "Routescan", + "url": "https://mainnet.superscan.network", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-100000000.json b/_data/chains/eip155-100000000.json new file mode 100644 index 000000000000..62e4aa47936e --- /dev/null +++ b/_data/chains/eip155-100000000.json @@ -0,0 +1,25 @@ +{ + "name": "Ethos", + "chain": "ETHOS", + "rpc": ["https://rpc.ethos.cool"], + "faucets": ["https://faucet.ethos.cool"], + "nativeCurrency": { + "name": "ETHOS", + "symbol": "ETHOS", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://ethos.cool", + "shortName": "ETHOS", + "chainId": 100000000, + "networkId": 100000000, + "icon": "ethos", + "explorers": [ + { + "name": "ethos scan", + "url": "https://scan.ethos.cool", + "icon": "ethos", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1000000003.json b/_data/chains/eip155-1000000003.json new file mode 100644 index 000000000000..a94dffbc27ec --- /dev/null +++ b/_data/chains/eip155-1000000003.json @@ -0,0 +1,23 @@ +{ + "name": "DeInfra Devnet3", + "chain": "DeInfraDev3", + "rpc": ["https://c3n1.thepower.io/jsonrpc"], + "faucets": ["https://faucet.thepower.io/"], + "nativeCurrency": { + "name": "dev3SK", + "symbol": "dSK", + "decimals": 18 + }, + "icon": "deinfra", + "infoURL": "https://deinfra.net", + "shortName": "deinfra-dev3", + "chainId": 1000000003, + "networkId": 1000000003, + "explorers": [ + { + "name": "Deinfra Devnet Chain 3 Network Explorer", + "url": "https://bs.thepower.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-100009.json b/_data/chains/eip155-100009.json index 973cf3c4e239..167902191aa4 100644 --- a/_data/chains/eip155-100009.json +++ b/_data/chains/eip155-100009.json @@ -1,7 +1,7 @@ { "name": "VeChain", "chain": "VeChain", - "rpc": [], + "rpc": ["https://rpc-mainnet.vechain.energy"], "faucets": [], "nativeCurrency": { "name": "VeChain", diff --git a/_data/chains/eip155-100010.json b/_data/chains/eip155-100010.json index 2eef981c4dfe..d2fddbdbe032 100644 --- a/_data/chains/eip155-100010.json +++ b/_data/chains/eip155-100010.json @@ -1,7 +1,7 @@ { "name": "VeChain Testnet", "chain": "VeChain", - "rpc": [], + "rpc": ["https://rpc-testnet.vechain.energy"], "faucets": ["https://faucet.vecha.in"], "nativeCurrency": { "name": "VeChain", diff --git a/_data/chains/eip155-100011.json b/_data/chains/eip155-100011.json new file mode 100644 index 000000000000..6401831d92c5 --- /dev/null +++ b/_data/chains/eip155-100011.json @@ -0,0 +1,19 @@ +{ + "name": "QuarkChain L2 Mainnet", + "chain": "QuarkChain", + "rpc": ["https://mainnet-l2-ethapi.quarkchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-l2", + "chainId": 100011, + "networkId": 100011, + "parent": { + "type": "L2", + "chain": "eip155-100000" + } +} diff --git a/_data/chains/eip155-1001.json b/_data/chains/eip155-1001.json index bab04aee9fc4..6e6899ab1c98 100644 --- a/_data/chains/eip155-1001.json +++ b/_data/chains/eip155-1001.json @@ -1,30 +1,27 @@ { - "name": "Klaytn Testnet Baobab", - "chain": "KLAY", - "rpc": [ - "https://public-en-baobab.klaytn.net", - "https://api.baobab.klaytn.net:8651" - ], - "faucets": ["https://baobab.wallet.klaytn.com/access?next=faucet"], + "name": "Kaia Kairos Testnet", + "chain": "KAIA", + "rpc": ["https://public-en-kairos.node.kaia.io"], + "faucets": ["https://faucet.kaia.io"], "nativeCurrency": { - "name": "KLAY", - "symbol": "KLAY", + "name": "KAIA", + "symbol": "KAIA", "decimals": 18 }, - "infoURL": "https://klaytn.foundation", - "shortName": "Baobab", + "infoURL": "https://kaia.io/", + "shortName": "kaia-kairos", "chainId": 1001, "networkId": 1001, "slip44": 1, "explorers": [ { - "name": "Klaytnscope", - "url": "https://baobab.klaytnscope.com", + "name": "Kaiascope", + "url": "https://kairos.kaiascope.com", "standard": "EIP3091" }, { - "name": "Klaytnfinder", - "url": "https://baobab.klaytnfinder.io", + "name": "Kaiascan", + "url": "https://kairos.kaiascan.io", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-10010.json b/_data/chains/eip155-10010.json new file mode 100644 index 000000000000..bfed5adefdbb --- /dev/null +++ b/_data/chains/eip155-10010.json @@ -0,0 +1,19 @@ +{ + "name": "Warden Testnet", + "chain": "WARD", + "rpc": [ + "https://evm.chiado.wardenprotocol.org", + "wss://evm-ws.chiado.wardenprotocol.org" + ], + "faucets": ["https://faucet.chiado.wardenprotocol.org"], + "nativeCurrency": { + "name": "WARD", + "symbol": "WARD", + "decimals": 18 + }, + "infoURL": "https://wardenprotocol.org", + "icon": "warden", + "shortName": "ward", + "chainId": 10010, + "networkId": 10010 +} diff --git a/_data/chains/eip155-10011.json b/_data/chains/eip155-10011.json new file mode 100644 index 000000000000..86ffbfba0a0c --- /dev/null +++ b/_data/chains/eip155-10011.json @@ -0,0 +1,16 @@ +{ + "name": "DeepSafe Beta Mainnet", + "chain": "DeepSafe", + "rpc": ["https://betamainnet-rpc-node-http.deepsafe.network"], + "faucets": [], + "nativeCurrency": { + "name": "DeepSafe Native Token", + "symbol": "DEF", + "decimals": 18 + }, + "infoURL": "https://deepsafe.network/", + "shortName": "DeepSafe", + "chainId": 10011, + "networkId": 10011, + "icon": "deepsafe" +} diff --git a/_data/chains/eip155-10025.json b/_data/chains/eip155-10025.json new file mode 100644 index 000000000000..0a3448ce4e3c --- /dev/null +++ b/_data/chains/eip155-10025.json @@ -0,0 +1,23 @@ +{ + "name": "AEON Chain", + "chain": "AEON Chain", + "icon": "aeon", + "rpc": ["https://node.aeon.xyz/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "AEON Token", + "symbol": "AEON", + "decimals": 18 + }, + "infoURL": "", + "shortName": "aeon", + "chainId": 10025, + "networkId": 10025, + "explorers": [ + { + "name": "AEON Explorer", + "url": "https://scan.aeon.xyz", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1005.json b/_data/chains/eip155-1005.json new file mode 100644 index 000000000000..874bf3dcafda --- /dev/null +++ b/_data/chains/eip155-1005.json @@ -0,0 +1,19 @@ +{ + "name": "LemonChainTestnet", + "chain": "tLEMX", + "rpc": [ + "https://rpc.testnet.lemonchain.io", + "https://rpc.testnet.allthingslemon.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "testnet LEMX", + "symbol": "tLEMX", + "decimals": 18 + }, + "infoURL": "https://dapp.allthingslemon.io/home", + "shortName": "tlemx", + "chainId": 1005, + "networkId": 1005, + "explorers": [] +} diff --git a/_data/chains/eip155-100501.json b/_data/chains/eip155-100501.json new file mode 100644 index 000000000000..ab4dc3b3e4eb --- /dev/null +++ b/_data/chains/eip155-100501.json @@ -0,0 +1,23 @@ +{ + "name": "DeInfra Mainnet", + "chain": "DeInfraMainnet", + "rpc": ["https://c100501n3.deinfra.net:443/jsonrpc"], + "faucets": [], + "nativeCurrency": { + "name": "SK", + "symbol": "SK", + "decimals": 18 + }, + "icon": "deinfra", + "infoURL": "https://deinfra.net", + "shortName": "deinfra-mainnet", + "chainId": 100501, + "networkId": 100501, + "explorers": [ + { + "name": "Deinfra Mainnet Network Explorer", + "url": "https://explorer.deinfra.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-10058111.json b/_data/chains/eip155-10058111.json new file mode 100644 index 000000000000..340713fbd092 --- /dev/null +++ b/_data/chains/eip155-10058111.json @@ -0,0 +1,16 @@ +{ + "name": "Spotlight", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://spotlightchain.com/", + "shortName": "spotlight", + "chainId": 10058111, + "networkId": 10058111, + "status": "incubating" +} diff --git a/_data/chains/eip155-10058112.json b/_data/chains/eip155-10058112.json new file mode 100644 index 000000000000..a95055517096 --- /dev/null +++ b/_data/chains/eip155-10058112.json @@ -0,0 +1,16 @@ +{ + "name": "Spotlight Sepolia Testnet", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://spotlightchain.com/", + "shortName": "spotlightsep", + "chainId": 10058112, + "networkId": 10058112, + "status": "incubating" +} diff --git a/_data/chains/eip155-1006.json b/_data/chains/eip155-1006.json new file mode 100644 index 000000000000..294a3c6e55f6 --- /dev/null +++ b/_data/chains/eip155-1006.json @@ -0,0 +1,16 @@ +{ + "name": "LemonChain", + "chain": "LEMX", + "rpc": ["https://rpc.lemonchain.io", "https://rpc.allthingslemon.io"], + "faucets": [], + "nativeCurrency": { + "name": "LEMX", + "symbol": "LEMX", + "decimals": 18 + }, + "infoURL": "https://dapp.allthingslemon.io/home", + "shortName": "lemx", + "chainId": 1006, + "networkId": 1006, + "explorers": [] +} diff --git a/_data/chains/eip155-100610.json b/_data/chains/eip155-100610.json new file mode 100644 index 000000000000..4d25fb23178a --- /dev/null +++ b/_data/chains/eip155-100610.json @@ -0,0 +1,25 @@ +{ + "name": "Monsoon ", + "chain": "MONSOON", + "rpc": ["https://monsoon.rainfall.one"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "RDP", + "symbol": "RDP", + "decimals": 18 + }, + "infoURL": "", + "shortName": "monsoon", + "chainId": 100610, + "networkId": 100610, + "icon": "monsoon", + "explorers": [ + { + "name": "Monsoon Scan", + "url": "https://scout.monsoon.rainfall.one", + "icon": "monsoon", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-10066.json b/_data/chains/eip155-10066.json new file mode 100644 index 000000000000..dec6d0acb7d2 --- /dev/null +++ b/_data/chains/eip155-10066.json @@ -0,0 +1,15 @@ +{ + "name": "Chain Opera Testnet", + "chain": "Chain Opera Testnet", + "rpc": ["http://40.78.123.6:8545"], + "faucets": [], + "nativeCurrency": { + "name": "coai", + "symbol": "CO", + "decimals": 18 + }, + "infoURL": "https://chainopera.ai/", + "shortName": "chainopera-testnet", + "chainId": 10066, + "networkId": 10066 +} diff --git a/_data/chains/eip155-10081.json b/_data/chains/eip155-10081.json index c0d4a40379e8..3e52d89f9e3b 100644 --- a/_data/chains/eip155-10081.json +++ b/_data/chains/eip155-10081.json @@ -3,7 +3,8 @@ "chain": "JOCT", "rpc": [ "https://rpc-1.testnet.japanopenchain.org:8545", - "https://rpc-2.testnet.japanopenchain.org:8545" + "https://rpc-2.testnet.japanopenchain.org:8545", + "https://rpc-3.testnet.japanopenchain.org" ], "faucets": [], "nativeCurrency": { @@ -15,6 +16,7 @@ "shortName": "joct", "chainId": 10081, "networkId": 10081, + "icon": "joct", "slip44": 1, "explorers": [ { diff --git a/_data/chains/eip155-10085.json b/_data/chains/eip155-10085.json new file mode 100644 index 000000000000..d2fc1274250d --- /dev/null +++ b/_data/chains/eip155-10085.json @@ -0,0 +1,25 @@ +{ + "name": "Volcano Chain Mainnet", + "chain": "Volcano", + "icon": "volcano", + "rpc": ["https://mainnet.vchain.pro", "wss://wss.mainnet.vchain.pro"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Volcano Coin", + "symbol": "VC", + "decimals": 18 + }, + "infoURL": "https://vex.pro", + "shortName": "volcanochain", + "chainId": 10085, + "networkId": 10085, + "explorers": [ + { + "name": "blockscout", + "url": "https://vchainscan.com", + "icon": "volcano", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1008686.json b/_data/chains/eip155-1008686.json new file mode 100644 index 000000000000..d8910ca80131 --- /dev/null +++ b/_data/chains/eip155-1008686.json @@ -0,0 +1,24 @@ +{ + "name": "Naga Testnet", + "chain": "Naga", + "rpc": ["https://rpc.nagafintech.com", "wss://rpc.nagafintech.com"], + "faucets": [], + "nativeCurrency": { + "name": "Naga", + "symbol": "Naga", + "decimals": 18 + }, + "infoURL": "https://stablecoin.nagafintech.com/#/app/home", + "shortName": "Naga", + "chainId": 1008686, + "networkId": 1008686, + "icon": "naga", + "explorers": [ + { + "name": "Naga Explorer Testnet", + "url": "https://explorer.nagafintech.com", + "icon": "naga", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1009.json b/_data/chains/eip155-1009.json index f3a0b02b5cbb..7b6d63af1857 100644 --- a/_data/chains/eip155-1009.json +++ b/_data/chains/eip155-1009.json @@ -1,7 +1,12 @@ { "name": "Jumbochain Mainnet", "chain": "Jumbo", - "rpc": ["https://rpcpriv.jumbochain.org"], + "rpc": [ + "https://rpcpriv.jumbochain.org", + "https://rpc-datajumbo1.jumbochain.org", + "https://rpc-datajumbo2.jumbochain.org", + "https://rpc-datajumbo3.jumbochain.org" + ], "faucets": [], "nativeCurrency": { "name": "JNFTC", diff --git a/_data/chains/eip155-10096.json b/_data/chains/eip155-10096.json new file mode 100644 index 000000000000..9b89452ebc6e --- /dev/null +++ b/_data/chains/eip155-10096.json @@ -0,0 +1,28 @@ +{ + "name": "MetaNova Verse", + "chain": "MNV", + "rpc": ["https://web3.metanovaverse.com"], + "faucets": [], + "nativeCurrency": { + "name": "MNV", + "symbol": "MNV", + "decimals": 18 + }, + "features": [], + "infoURL": "https://metanovaverse.com/", + "shortName": "mnv", + "chainId": 10096, + "networkId": 10096, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.metanovaverse.com", + "standard": "EIP3091" + }, + { + "name": "Cosmos Explorer (Ping)", + "url": "https://ping.metanovaverse.com/metanovaverse", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-101003.json b/_data/chains/eip155-101003.json new file mode 100644 index 000000000000..a3b161108e42 --- /dev/null +++ b/_data/chains/eip155-101003.json @@ -0,0 +1,25 @@ +{ + "name": "Socotra JUNE-Chain", + "chain": "Socotra JUNE-Chain", + "rpc": ["https://rpc.socotra-testnet.network/ext/bc/JUNE/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Socotra JUNE", + "symbol": "JUNE", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://juneo.com/", + "shortName": "Socotra-JUNE", + "chainId": 101003, + "networkId": 101003, + "icon": "juneoSocotraTestnet", + "explorers": [ + { + "name": "Juneo Scan", + "url": "https://socotra.juneoscan.io/chain/2", + "icon": "juneomainnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-101088.json b/_data/chains/eip155-101088.json new file mode 100644 index 000000000000..145ce23cdf08 --- /dev/null +++ b/_data/chains/eip155-101088.json @@ -0,0 +1,17 @@ +{ + "name": "Xitcoin", + "chain": "XITCOIN", + "faucets": [], + "rpc": ["https://network.xitcoin.org"], + "nativeCurrency": { + "name": "Xitcoin", + "symbol": "$XTC", + "decimals": 8 + }, + "infoURL": "https://docs.xitcoin.org/", + "shortName": "Xitcoin", + "chainId": 101088, + "networkId": 101088, + "icon": "xitcoin", + "explorers": [] +} diff --git a/_data/chains/eip155-1011.json b/_data/chains/eip155-1011.json index 110e4ffb0d76..e0a8995f898f 100644 --- a/_data/chains/eip155-1011.json +++ b/_data/chains/eip155-1011.json @@ -1,23 +1,23 @@ { - "name": "Rebus Mainnet", + "name": "Rebus Classic Mainnet", "title": "Rebuschain Mainnet", "chain": "REBUS", "rpc": ["https://apievm.rebuschain.com/rpc"], "faucets": [], "nativeCurrency": { - "name": "Rebus", + "name": "Rebus Classic", "symbol": "REBUS", "decimals": 18 }, "infoURL": "https://www.rebuschain.com", - "shortName": "rebus", + "shortName": "rebusclassic", "chainId": 1011, "networkId": 1011, - "icon": "rebus", + "icon": "rebusc", "explorers": [ { "name": "Rebus EVM Explorer (Blockscout)", - "url": "https://evm.rebuschain.com", + "url": "https://evm-l1.rebuschain.com", "icon": "rebus", "standard": "none" }, diff --git a/_data/chains/eip155-10143.json b/_data/chains/eip155-10143.json new file mode 100644 index 000000000000..82b462f790bf --- /dev/null +++ b/_data/chains/eip155-10143.json @@ -0,0 +1,25 @@ +{ + "name": "Monad Testnet", + "chain": "MON", + "icon": "monad", + "rpc": ["https://testnet-rpc.monad.xyz"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Testnet MON Token", + "symbol": "MON", + "decimals": 18 + }, + "infoURL": "https://monad.xyz", + "shortName": "mon-testnet", + "chainId": 10143, + "networkId": 10143, + "slip44": 1, + "explorers": [ + { + "name": "Monad Testnet Explorer", + "url": "https://testnet.monadexplorer.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-102030.json b/_data/chains/eip155-102030.json new file mode 100644 index 000000000000..0f3f7592be8e --- /dev/null +++ b/_data/chains/eip155-102030.json @@ -0,0 +1,32 @@ +{ + "name": "Creditcoin", + "chain": "CTC", + "icon": "creditcoin", + "rpc": ["https://mainnet3.creditcoin.network"], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "CTC", + "symbol": "CTC", + "decimals": 18 + }, + "infoURL": "https://creditcoin.org", + "shortName": "ctc", + "chainId": 102030, + "networkId": 102030, + "faucets": [], + "explorers": [ + { + "name": "blockscout", + "url": "https://creditcoin.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-102032.json b/_data/chains/eip155-102032.json new file mode 100644 index 000000000000..0a3864982751 --- /dev/null +++ b/_data/chains/eip155-102032.json @@ -0,0 +1,32 @@ +{ + "name": "Creditcoin Devnet", + "chain": "CTC", + "icon": "creditcoin", + "rpc": ["https://rpc.cc3-devnet.creditcoin.network"], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "Devnet CTC", + "symbol": "devCTC", + "decimals": 18 + }, + "infoURL": "https://creditcoin.org", + "shortName": "ctcdev", + "chainId": 102032, + "networkId": 102032, + "faucets": [], + "explorers": [ + { + "name": "blockscout", + "url": "https://creditcoin-devnet.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-10218.json b/_data/chains/eip155-10218.json new file mode 100644 index 000000000000..c85f5b4372e4 --- /dev/null +++ b/_data/chains/eip155-10218.json @@ -0,0 +1,28 @@ +{ + "name": "Tea Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://tea-sepolia.g.alchemy.com/public"], + "faucets": ["https://faucet-sepolia.tea.xyz"], + "explorers": [ + { + "name": "blockscout", + "url": "https://sepolia.tea.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "nativeCurrency": { + "name": "Sepolia Tea", + "symbol": "TEA", + "decimals": 18 + }, + "infoURL": "https://tea.xyz", + "shortName": "teasep", + "chainId": 10218, + "networkId": 10218, + "parent": { + "type": "L2", + "chain": "eip155-11155111" + }, + "status": "active" +} diff --git a/_data/chains/eip155-10222.json b/_data/chains/eip155-10222.json new file mode 100644 index 000000000000..e73479ed308c --- /dev/null +++ b/_data/chains/eip155-10222.json @@ -0,0 +1,25 @@ +{ + "name": "GLScan", + "chain": "GLC", + "icon": "glc", + "rpc": ["https://glc-dataseed.glscan.io/"], + "faucets": [], + "nativeCurrency": { + "name": "GLC", + "symbol": "GLC", + "decimals": 18 + }, + "infoURL": "https://glscan.io/", + "shortName": "glc", + "chainId": 10222, + "networkId": 10222, + "slip44": 1, + "explorers": [ + { + "name": "GLScan Explorer", + "url": "https://glscan.io", + "standard": "none", + "icon": "glc" + } + ] +} diff --git a/_data/chains/eip155-10241024.json b/_data/chains/eip155-10241024.json new file mode 100644 index 000000000000..d6bfdc4884ad --- /dev/null +++ b/_data/chains/eip155-10241024.json @@ -0,0 +1,23 @@ +{ + "name": "AlienX Mainnet", + "chain": "AlienX Mainnet", + "rpc": ["https://rpc.alienxchain.io/http"], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://alienxchain.io/home", + "shortName": "AlienX", + "chainId": 10241024, + "networkId": 10241024, + "icon": "alienx", + "explorers": [ + { + "name": "AlienXChain Explorer", + "url": "https://explorer.alienxchain.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1028.json b/_data/chains/eip155-1028.json index 4c26581cc1bb..b84bf36be9ec 100644 --- a/_data/chains/eip155-1028.json +++ b/_data/chains/eip155-1028.json @@ -3,13 +3,14 @@ "chain": "BTTC", "rpc": ["https://testrpc.bittorrentchain.io/"], "faucets": [], + "status": "deprecated", "nativeCurrency": { "name": "BitTorrent", "symbol": "BTT", "decimals": 18 }, "infoURL": "https://bittorrentchain.io/", - "shortName": "tbtt", + "shortName": "tbtt-deprecated", "chainId": 1028, "networkId": 1028, "slip44": 1, diff --git a/_data/chains/eip155-1029.json b/_data/chains/eip155-1029.json new file mode 100644 index 000000000000..4a2f3d260561 --- /dev/null +++ b/_data/chains/eip155-1029.json @@ -0,0 +1,24 @@ +{ + "name": "BitTorrent Chain Donau", + "chain": "BTTC", + "icon": "bttc", + "rpc": ["https://pre-rpc.bt.io"], + "faucets": ["https://testfaucet.bt.io"], + "nativeCurrency": { + "name": "BitTorrent", + "symbol": "BTT", + "decimals": 18 + }, + "infoURL": "https://bt.io", + "shortName": "tBTT", + "chainId": 1029, + "networkId": 1029, + "slip44": 1, + "explorers": [ + { + "name": "BitTorrent Chain Donau Explorer", + "url": "https://testnet.bttcscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-105363.json b/_data/chains/eip155-105363.json new file mode 100644 index 000000000000..7ea952646627 --- /dev/null +++ b/_data/chains/eip155-105363.json @@ -0,0 +1,26 @@ +{ + "name": "Lumoz Chain Testnet", + "chain": "ETH", + "rpc": ["https://testnet-rpc.lumoz.org"], + "faucets": [], + "nativeCurrency": { + "name": "Lumoz Testnet Token", + "symbol": "MOZ", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://lumoz.org", + "shortName": "Lumoz-Chain-Testnet", + "chainId": 105363, + "networkId": 105363, + "slip44": 1, + "icon": "opside-new", + "explorers": [ + { + "name": "LumozTestInfo", + "url": "https://testnet-scan.lumoz.info", + "icon": "opside-new", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1071.json b/_data/chains/eip155-1071.json index 0c3a367da2ee..362d666aabd6 100644 --- a/_data/chains/eip155-1071.json +++ b/_data/chains/eip155-1071.json @@ -1,29 +1,26 @@ { - "name": "ShimmerEVM Testnet Deprecated", - "title": "ShimmerEVM Testnet Deprecated", - "chain": "ShimmerEVM", - "icon": "shimmerevm", - "rpc": [], - "faucets": [ - "https://evm-toolkit.evm.testnet.shimmer.network", - "https://evm-faucet.testnet.shimmer.network" - ], + "name": "OpenGPU Mainnet", + "chain": "OGPU", + "icon": "ogpu", + "rpc": ["https://mainnet-rpc.ogpuscan.io", "wss://mainnet-rpc.ogpuscan.io"], + "faucets": [], "nativeCurrency": { - "name": "SMR", - "symbol": "SMR", + "name": "OGPU", + "symbol": "OGPU", "decimals": 18 }, - "infoURL": "https://shimmer.network", - "shortName": "shimmerevm-testnet-deprecated", + "features": [{ "name": "EIP155" }], + "infoURL": "https://opengpu.network", + "shortName": "ogpu", "chainId": 1071, "networkId": 1071, - "slip44": 1, + "redFlags": ["reusedChainId"], "explorers": [ { - "name": "explorer", - "url": "https://explorer.evm.testnet.shimmer.network", + "name": "OpenGPU Explorer", + "url": "https://ogpuscan.io", + "icon": "ogpu", "standard": "EIP3091" } - ], - "status": "deprecated" + ] } diff --git a/_data/chains/eip155-10849.json b/_data/chains/eip155-10849.json new file mode 100644 index 000000000000..54919e9e620b --- /dev/null +++ b/_data/chains/eip155-10849.json @@ -0,0 +1,28 @@ +{ + "name": "Lamina1", + "chain": "Lamina1", + "rpc": ["https://subnets.avax.network/lamina1/mainnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "L1", + "symbol": "L1", + "decimals": 18 + }, + "infoURL": "https://www.lamina1.com/", + "shortName": "lamina1", + "chainId": 10849, + "networkId": 10849, + "slip44": 1, + "explorers": [ + { + "name": "Lamina1 Explorer", + "url": "https://subnets.avax.network/lamina1", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-10850.json b/_data/chains/eip155-10850.json new file mode 100644 index 000000000000..49b4bdaa9094 --- /dev/null +++ b/_data/chains/eip155-10850.json @@ -0,0 +1,28 @@ +{ + "name": "Lamina1 Identity", + "chain": "Lamina1 Identity", + "rpc": ["https://subnets.avax.network/lamina1id/mainnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "L1 ID", + "symbol": "L1ID", + "decimals": 18 + }, + "infoURL": "https://www.lamina1.com/", + "shortName": "lamina1id", + "chainId": 10850, + "networkId": 10850, + "slip44": 1, + "explorers": [ + { + "name": "Lamina1 Identity Explorer", + "url": "https://subnets.avax.network/lamina1id", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1088.json b/_data/chains/eip155-1088.json index d8ed7774dcd8..50824e545b1f 100644 --- a/_data/chains/eip155-1088.json +++ b/_data/chains/eip155-1088.json @@ -4,7 +4,9 @@ "rpc": [ "https://andromeda.metis.io/?owner=1088", "https://metis.drpc.org", - "wss://metis.drpc.org" + "wss://metis.drpc.org", + "https://metis-rpc.publicnode.com", + "wss://metis-rpc.publicnode.com" ], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-10888.json b/_data/chains/eip155-10888.json new file mode 100644 index 000000000000..ac90c3d9d0a9 --- /dev/null +++ b/_data/chains/eip155-10888.json @@ -0,0 +1,33 @@ +{ + "name": "GameSwift Chain Testnet", + "title": "GameSwift Chain Testnet", + "chain": "gameswift-chain-testnet", + "rpc": ["https://rpc-testnet.gameswift.io", "wss://ws-testnet.gameswift.io"], + "nativeCurrency": { + "name": "TGameSwift", + "symbol": "tGS", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/gameswift-chain-testnet", + "faucets": [], + "shortName": "gameswift-chain-testnet", + "chainId": 10888, + "networkId": 10888, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.gameswift.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://testnet-bridge-gelato.gameswift.io/bridge/gameswift-chain-testnet" + } + ] + } +} diff --git a/_data/chains/eip155-109.json b/_data/chains/eip155-109.json index a4ba5c7784b1..38a81787e6d5 100644 --- a/_data/chains/eip155-109.json +++ b/_data/chains/eip155-109.json @@ -2,7 +2,11 @@ "name": "Shibarium", "chain": "Shibarium", "icon": "shibarium", - "rpc": ["https://www.shibrpc.com"], + "rpc": [ + "https://www.shibrpc.com", + "https://rpc.shibrpc.com", + "https://shib.nownodes.io" + ], "faucets": [], "nativeCurrency": { "name": "BONE Shibarium", diff --git a/_data/chains/eip155-10920.json b/_data/chains/eip155-10920.json new file mode 100644 index 000000000000..383c124b057c --- /dev/null +++ b/_data/chains/eip155-10920.json @@ -0,0 +1,22 @@ +{ + "name": "Fuse Flash Testnet", + "chain": "Fuse Flash", + "rpc": [], + "faucets": ["https://faucet.quicknode.com"], + "nativeCurrency": { + "name": "Fuse", + "symbol": "FUSE", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://www.fuse.io", + "shortName": "fuseflash", + "chainId": 10920, + "networkId": 10920, + "icon": "fuse", + "parent": { + "type": "L2", + "chain": "eip155-11155111" + }, + "status": "incubating" +} diff --git a/_data/chains/eip155-11000.json b/_data/chains/eip155-11000.json new file mode 100644 index 000000000000..aa95e01838e5 --- /dev/null +++ b/_data/chains/eip155-11000.json @@ -0,0 +1,23 @@ +{ + "name": "KB Chain", + "chain": "KB", + "rpc": ["https://mainnet-rpc.kbcfoundation.com"], + "faucets": [], + "features": [{ "name": "EIP155" }], + "nativeCurrency": { + "name": "KBC", + "symbol": "KBC", + "decimals": 18 + }, + "infoURL": "https://kbcfoundation.com", + "shortName": "KBC", + "chainId": 11000, + "networkId": 11000, + "explorers": [ + { + "name": "KBC Explorer", + "url": "https://scan.kbcfoundation.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-110011.json b/_data/chains/eip155-110011.json new file mode 100644 index 000000000000..85ee482f2692 --- /dev/null +++ b/_data/chains/eip155-110011.json @@ -0,0 +1,19 @@ +{ + "name": "QuarkChain L2 Testnet", + "chain": "QuarkChain", + "rpc": ["https://testnet-l2-ethapi.quarkchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-l2-t", + "chainId": 110011, + "networkId": 110011, + "parent": { + "type": "L2", + "chain": "eip155-110000" + } +} diff --git a/_data/chains/eip155-11011.json b/_data/chains/eip155-11011.json new file mode 100644 index 000000000000..f3f6441ed6cc --- /dev/null +++ b/_data/chains/eip155-11011.json @@ -0,0 +1,24 @@ +{ + "name": "Shape Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://sepolia.shape.network"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://shape.network", + "shortName": "shapesep", + "chainId": 11011, + "networkId": 11011, + "icon": "shapeTestnet", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer-sepolia.shape.network", + "standard": "EIP3091" + } + ], + "slip44": 1 +} diff --git a/_data/chains/eip155-110110.json b/_data/chains/eip155-110110.json new file mode 100644 index 000000000000..851fa5abc8a1 --- /dev/null +++ b/_data/chains/eip155-110110.json @@ -0,0 +1,22 @@ +{ + "name": "Mars Credit", + "chain": "MARS", + "rpc": [ + "https://node99-production-dd5f.up.railway.app:443", + "https://rpc.marscredit.xyz:443" + ], + "faucets": [], + "nativeCurrency": { + "name": "Mars Credit", + "symbol": "MARS", + "decimals": 18 + }, + "infoURL": "https://marscredit.xyz/", + "shortName": "mars", + "chainId": 110110, + "networkId": 110110, + "slip44": 1, + "icon": "marscredit", + "explorers": [], + "redFlags": [] +} diff --git a/_data/chains/eip155-11100.json b/_data/chains/eip155-11100.json new file mode 100644 index 000000000000..39fc1bda2611 --- /dev/null +++ b/_data/chains/eip155-11100.json @@ -0,0 +1,16 @@ +{ + "name": "Bool Network Beta Mainnet", + "chain": "BOOL", + "rpc": ["https://beta-rpc-node-http.bool.network"], + "faucets": [], + "nativeCurrency": { + "name": "BOL", + "symbol": "BOL", + "decimals": 18 + }, + "infoURL": "https://bool.network/", + "shortName": "BOL", + "chainId": 11100, + "networkId": 11100, + "icon": "boolnetwork" +} diff --git a/_data/chains/eip155-111188.json b/_data/chains/eip155-111188.json index b63239ce9b58..d63ceeee028c 100644 --- a/_data/chains/eip155-111188.json +++ b/_data/chains/eip155-111188.json @@ -2,7 +2,13 @@ "name": "re.al", "title": "re.al Real-World Assets network", "chain": "re.al", - "rpc": ["https://real.drpc.org", "wss://real.drpc.org"], + "rpc": [ + "https://rpc.realforreal.gelato.digital", + "wss://ws.realforreal.gelato.digital", + "https://tangible-real.gateway.tenderly.co", + "https://real.drpc.org", + "wss://real.drpc.org" + ], "nativeCurrency": { "name": "re.al Ether", "symbol": "reETH", diff --git a/_data/chains/eip155-11124.json b/_data/chains/eip155-11124.json new file mode 100644 index 000000000000..8ac2b32a8d35 --- /dev/null +++ b/_data/chains/eip155-11124.json @@ -0,0 +1,27 @@ +{ + "name": "Abstract Sepolia Testnet", + "chain": "Abstract Sepolia Testnet", + "rpc": ["https://api.testnet.abs.xyz"], + "faucets": ["https://faucet.triangleplatform.com/abstract/testnet"], + "chainId": 11124, + "networkId": 11124, + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://abs.xyz/", + "shortName": "abstract-sepolia", + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://portal.testnet.abs.xyz/bridge" }] + }, + "explorers": [ + { + "name": "Abstract Sepolia Testnet Explorer", + "url": "https://sepolia.abscan.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1114.json b/_data/chains/eip155-1114.json new file mode 100644 index 000000000000..5299f0fa340b --- /dev/null +++ b/_data/chains/eip155-1114.json @@ -0,0 +1,26 @@ +{ + "name": "Core Blockchain Testnet2", + "chain": "Core", + "icon": "core", + "rpc": ["https://rpc.test2.btcs.network/"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://scan.test2.btcs.network/faucet"], + "nativeCurrency": { + "name": "Core Blockchain Testnet2 Native Token", + "symbol": "tCORE2", + "decimals": 18 + }, + "infoURL": "https://www.coredao.org", + "shortName": "tcore2", + "chainId": 1114, + "networkId": 1114, + "slip44": 1, + "explorers": [ + { + "name": "Core Scan Testnet2", + "url": "https://scan.test2.btcs.network", + "icon": "core", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-11142220.json b/_data/chains/eip155-11142220.json new file mode 100644 index 000000000000..37059f963172 --- /dev/null +++ b/_data/chains/eip155-11142220.json @@ -0,0 +1,34 @@ +{ + "name": "Celo Sepolia Testnet", + "chainId": 11142220, + "shortName": "celo-sep", + "chain": "CELO", + "networkId": 11142220, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "slip44": 60, + "nativeCurrency": { + "name": "CELO-S", + "symbol": "CELO", + "decimals": 18 + }, + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://superbridge.app/?fromChainId=11155111&toChainId=11142220" + } + ] + }, + "rpc": ["https://forno.celo-sepolia.celo-testnet.org"], + "faucets": ["https://faucet.celo.org"], + "infoURL": "https://docs.celo.org", + "explorers": [ + { + "name": "Celo Sepolia Explorer", + "url": "https://celo-sepolia.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-111451.json b/_data/chains/eip155-111451.json new file mode 100644 index 000000000000..f247fab2f18c --- /dev/null +++ b/_data/chains/eip155-111451.json @@ -0,0 +1,27 @@ +{ + "name": "eGold Chain Testnet", + "chain": "EGC", + "icon": "egoldchain", + "rpc": [ + "https://rpc-testnet.egoldchain.com", + "wss://rpc-testnet.egoldchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Aurum", + "symbol": "XAU", + "decimals": 18 + }, + "infoURL": "https://www.egoldchain.com", + "shortName": "egoldchaint", + "chainId": 111451, + "networkId": 111451, + "explorers": [ + { + "name": "eGold Chain Block Explorer", + "url": "http://testnet.egoldscan.io", + "standard": "none", + "icon": "egoldchain" + } + ] +} diff --git a/_data/chains/eip155-11145513.json b/_data/chains/eip155-11145513.json new file mode 100644 index 000000000000..e8458977fbf7 --- /dev/null +++ b/_data/chains/eip155-11145513.json @@ -0,0 +1,35 @@ +{ + "name": "Blessnet Sepolia", + "chain": "ETH", + "rpc": [ + "https://blessnet-sepolia-testnet.rpc.caldera.xyz/http", + "wss://blessnet-sepolia-testnet.rpc.caldera.xyz/ws" + ], + "faucets": ["https://blessnet-sepolia-testnet.hub.caldera.xyz"], + "nativeCurrency": { + "name": "Bless", + "symbol": "BLESS", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://blessnet.io", + "shortName": "bless-sepolia", + "chainId": 11145513, + "networkId": 11145513, + "icon": "bless", + "explorers": [ + { + "name": "blockscout", + "url": "https://blessnet-sepolia-testnet.explorer.caldera.xyz", + "icon": "bless", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-421614", + "bridges": [ + { "url": "https://blessnet-sepolia-testnet.bridge.caldera.xyz" } + ] + } +} diff --git a/_data/chains/eip155-1115.json b/_data/chains/eip155-1115.json index b886221af460..3139d9571c96 100644 --- a/_data/chains/eip155-1115.json +++ b/_data/chains/eip155-1115.json @@ -3,6 +3,7 @@ "chain": "Core", "icon": "core", "rpc": ["https://rpc.test.btcs.network/"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": ["https://scan.test.btcs.network/faucet"], "nativeCurrency": { "name": "Core Blockchain Testnet Native Token", diff --git a/_data/chains/eip155-11155111.json b/_data/chains/eip155-11155111.json index 6839a11fd959..103459468d7d 100644 --- a/_data/chains/eip155-11155111.json +++ b/_data/chains/eip155-11155111.json @@ -1,11 +1,10 @@ { - "name": "Sepolia", + "name": "Ethereum Sepolia", "title": "Ethereum Testnet Sepolia", "chain": "ETH", "rpc": [ "https://rpc.sepolia.org", "https://rpc2.sepolia.org", - "https://rpc-sepolia.rockx.com", "https://rpc.sepolia.ethpandaops.io", "https://sepolia.infura.io/v3/${INFURA_API_KEY}", "wss://sepolia.infura.io/v3/${INFURA_API_KEY}", @@ -15,7 +14,7 @@ "wss://ethereum-sepolia-rpc.publicnode.com", "https://sepolia.drpc.org", "wss://sepolia.drpc.org", - "https://rpc-sepolia.rockx.com" + "https://eth-sepolia.g.alchemy.com/v2/WddzdzI2o9S3COdT73d5w6AIogbKq4X-" ], "faucets": ["http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}"], "nativeCurrency": { @@ -38,6 +37,11 @@ "name": "otterscan-sepolia", "url": "https://sepolia.otterscan.io", "standard": "EIP3091" + }, + { + "name": "Routescan", + "url": "https://11155111.testnet.routescan.io", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-111551119090.json b/_data/chains/eip155-111551119090.json new file mode 100644 index 000000000000..4ada3f0da63d --- /dev/null +++ b/_data/chains/eip155-111551119090.json @@ -0,0 +1,25 @@ +{ + "name": "Thanos Sepolia", + "chain": "ETH", + "rpc": [ + "https://rpc.thanos-sepolia.tokamak.network", + "wss://rpc.thanos-sepolia.tokamak.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tokamak Network", + "symbol": "TON", + "decimals": 18 + }, + "infoURL": "https://tokamak.network", + "shortName": "thanos-sepolia", + "chainId": 111551119090, + "networkId": 111551119090, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.thanos-sepolia.tokamak.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-11155420.json b/_data/chains/eip155-11155420.json index 954f7a230970..195c73c1effb 100644 --- a/_data/chains/eip155-11155420.json +++ b/_data/chains/eip155-11155420.json @@ -18,6 +18,11 @@ "networkId": 11155420, "slip44": 1, "explorers": [ + { + "name": "etherscan-sepolia-optimism", + "url": "https://sepolia-optimism.etherscan.io", + "standard": "EIP3091" + }, { "name": "opscout", "url": "https://optimism-sepolia.blockscout.com", diff --git a/_data/chains/eip155-11155931.json b/_data/chains/eip155-11155931.json new file mode 100644 index 000000000000..c8bade1a7108 --- /dev/null +++ b/_data/chains/eip155-11155931.json @@ -0,0 +1,30 @@ +{ + "name": "RISE Testnet", + "chain": "ETH", + "rpc": ["https://testnet.riselabs.xyz", "wss://testnet.riselabs.xyz/ws"], + "faucets": ["https://faucet.testnet.riselabs.xyz"], + "nativeCurrency": { + "name": "RISE Testnet Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.riselabs.xyz/", + "shortName": "rise-testnet", + "chainId": 11155931, + "networkId": 11155931, + "icon": "rise", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.testnet.riselabs.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://bridge-ui.testnet.riselabs.xyz" }] + } +} diff --git a/_data/chains/eip155-1116.json b/_data/chains/eip155-1116.json index 5ca9853ebe78..190c3e7fd926 100644 --- a/_data/chains/eip155-1116.json +++ b/_data/chains/eip155-1116.json @@ -8,6 +8,7 @@ "https://core.drpc.org", "wss://core.drpc.org" ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": [], "nativeCurrency": { "name": "Core Blockchain Native Token", diff --git a/_data/chains/eip155-11166111.json b/_data/chains/eip155-11166111.json new file mode 100644 index 000000000000..41a8246338c5 --- /dev/null +++ b/_data/chains/eip155-11166111.json @@ -0,0 +1,22 @@ +{ + "name": "R0AR Testnet", + "chain": "R0AR Testnet", + "rpc": ["https://testnet.rpc-r0ar.io"], + "faucets": ["https://testnet.r0arfaucet.io"], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://testnet.r0arscan.io", + "shortName": "R0AR-Test-Chain", + "chainId": 11166111, + "networkId": 11166111, + "explorers": [ + { + "name": "tracehawk", + "url": "https://testnet.r0arscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1123.json b/_data/chains/eip155-1123.json index b569ea7b1f72..4eff7aa27497 100644 --- a/_data/chains/eip155-1123.json +++ b/_data/chains/eip155-1123.json @@ -2,7 +2,11 @@ "name": "B2 Testnet", "title": "B2 Testnet", "chain": "Habitat", - "rpc": ["https://b2-testnet.alt.technology"], + "rpc": [ + "https://b2-testnet.alt.technology", + "https://rpc.ankr.com/b2_testnet", + "https://testnet-rpc.bsquared.network" + ], "faucets": [], "nativeCurrency": { "name": "Bitcoin", diff --git a/_data/chains/eip155-1125.json b/_data/chains/eip155-1125.json new file mode 100644 index 000000000000..af316b100091 --- /dev/null +++ b/_data/chains/eip155-1125.json @@ -0,0 +1,24 @@ +{ + "name": "Taker Chain Mainnet", + "chain": "Taker", + "icon": "taker", + "rpc": ["https://rpc-mainnet.taker.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Taker", + "symbol": "TAKER", + "decimals": 18 + }, + "infoURL": "https://www.taker.xyz", + "shortName": "taker", + "chainId": 1125, + "networkId": 1125, + "explorers": [ + { + "name": "TakerScan", + "url": "https://explorer.taker.xyz", + "icon": "taker", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1134.json b/_data/chains/eip155-1134.json new file mode 100644 index 000000000000..b9b2ce7c16a3 --- /dev/null +++ b/_data/chains/eip155-1134.json @@ -0,0 +1,25 @@ +{ + "name": "StateMesh", + "icon": "statemesh", + "chain": "MESH", + "rpc": ["https://rpc.statemesh.net"], + "faucets": [], + "nativeCurrency": { + "name": "StateMesh", + "symbol": "MESH", + "decimals": 18 + }, + "infoURL": "https://statemesh.net", + "shortName": "mesh", + "chainId": 1134, + "networkId": 1134, + "slip44": 1134, + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.statemesh.net", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-11343.json b/_data/chains/eip155-11343.json new file mode 100644 index 000000000000..3fdbdce30ccc --- /dev/null +++ b/_data/chains/eip155-11343.json @@ -0,0 +1,24 @@ +{ + "name": "StateMesh Testnet", + "icon": "statemesh", + "chain": "MESH", + "rpc": ["https://rpc-test.statemesh.net"], + "faucets": ["https://faucet.statemesh.net"], + "nativeCurrency": { + "name": "StateMesh", + "symbol": "MESH", + "decimals": 18 + }, + "infoURL": "https://statemesh.net", + "shortName": "mesh-test", + "chainId": 11343, + "networkId": 11343, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer-test.statemesh.net", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1135.json b/_data/chains/eip155-1135.json index 3f431ee291b5..e1b9f18cb26a 100644 --- a/_data/chains/eip155-1135.json +++ b/_data/chains/eip155-1135.json @@ -1,6 +1,7 @@ { "name": "Lisk", "chain": "ETH", + "icon": "lisk", "rpc": ["https://rpc.api.lisk.com"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-114.json b/_data/chains/eip155-114.json index 69772494c59a..be0d607cec21 100644 --- a/_data/chains/eip155-114.json +++ b/_data/chains/eip155-114.json @@ -30,7 +30,7 @@ "standard": "EIP3091" }, { - "name": "flarescan", + "name": "Routescan", "url": "https://coston2.testnet.flarescan.com", "standard": "EIP3091" } diff --git a/_data/chains/eip155-11451.json b/_data/chains/eip155-11451.json new file mode 100644 index 000000000000..cfa4aa367147 --- /dev/null +++ b/_data/chains/eip155-11451.json @@ -0,0 +1,24 @@ +{ + "name": "eGold Chain", + "chain": "EGC", + "icon": "egoldchain", + "rpc": ["https://rpc.egoldchain.com", "wss://rpc.egoldchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Aurum", + "symbol": "XAU", + "decimals": 18 + }, + "infoURL": "https://www.egoldchain.com", + "shortName": "egoldchain", + "chainId": 11451, + "networkId": 11451, + "explorers": [ + { + "name": "eGold Chain Block Explorer", + "url": "https://egoldscan.io", + "standard": "none", + "icon": "egoldchain" + } + ] +} diff --git a/_data/chains/eip155-11501.json b/_data/chains/eip155-11501.json index 0b85eea3cd03..e83e5f2aac0f 100644 --- a/_data/chains/eip155-11501.json +++ b/_data/chains/eip155-11501.json @@ -1,22 +1,30 @@ { - "name": "BEVM Mainnet", - "chain": "BEVM", - "rpc": ["https://rpc-mainnet-1.bevm.io/", "https://rpc-mainnet-2.bevm.io/"], + "name": "GEB Mainnet", + "chain": "GEB", + "rpc": [ + "https://rpc-mainnet-1.geb.network/", + "https://rpc-mainnet-2.geb.network/" + ], "faucets": [], "nativeCurrency": { "name": "BTC", "symbol": "BTC", "decimals": 18 }, - "infoURL": "https://bevm.io", - "shortName": "bevm", + "infoURL": "https://geb.network", + "shortName": "geb", "chainId": 11501, "networkId": 11501, - "icon": "bevm", + "icon": "geb", "explorers": [ { - "name": "bevm mainnet scan", - "url": "https://scan-mainnet.bevm.io", + "name": "geb mainnet scan", + "url": "https://scan.geb.network", + "standard": "none" + }, + { + "name": "bevm mainnet oklink", + "url": "https://www.oklink.com/bevm", "standard": "none" } ] diff --git a/_data/chains/eip155-11504.json b/_data/chains/eip155-11504.json new file mode 100644 index 000000000000..8196ce55e64b --- /dev/null +++ b/_data/chains/eip155-11504.json @@ -0,0 +1,23 @@ +{ + "name": "GEB Signet", + "chain": "GEB", + "rpc": ["https://signet.geb.network/"], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://geb.network", + "shortName": "geb-signet", + "chainId": 11504, + "networkId": 11504, + "icon": "geb", + "explorers": [ + { + "name": "geb signet scan", + "url": "https://scan-signet.geb.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-11521.json b/_data/chains/eip155-11521.json new file mode 100644 index 000000000000..c84eb2e64f2a --- /dev/null +++ b/_data/chains/eip155-11521.json @@ -0,0 +1,23 @@ +{ + "name": "SatsChain", + "chain": "SatsChain", + "rpc": ["https://rpc-satschain-1.bevm.io"], + "faucets": [], + "nativeCurrency": { + "name": "SATS", + "symbol": "SATS", + "decimals": 18 + }, + "infoURL": "https://github.com/BTCSatsNetwork", + "shortName": "satschain", + "chainId": 11521, + "networkId": 11521, + "icon": "satschain", + "explorers": [ + { + "name": "satschain scan", + "url": "https://scan-satschain.bevm.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1174.json b/_data/chains/eip155-1174.json new file mode 100644 index 000000000000..7b1b8265037c --- /dev/null +++ b/_data/chains/eip155-1174.json @@ -0,0 +1,22 @@ +{ + "name": "Litheum Test Network", + "chain": "Litheum", + "rpc": ["https://testnet.litheum.com"], + "faucets": [], + "nativeCurrency": { + "name": "Lith", + "symbol": "LTH", + "decimals": 18 + }, + "infoURL": "https://litheum.com", + "shortName": "lith", + "chainId": 1174, + "networkId": 1174, + "explorers": [ + { + "name": "Litheum Test Network Explorer", + "url": "https://explorer.litheum.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-11820.json b/_data/chains/eip155-11820.json new file mode 100644 index 000000000000..bd912caaae46 --- /dev/null +++ b/_data/chains/eip155-11820.json @@ -0,0 +1,23 @@ +{ + "name": "Artela Mainnet", + "chain": "Artela", + "rpc": ["https://node-euro.artela.network/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "ART", + "symbol": "ART", + "decimals": 18 + }, + "infoURL": "https://artela.network/", + "shortName": "artela-mainnet", + "chainId": 11820, + "networkId": 11820, + "icon": "artela", + "explorers": [ + { + "name": "ArtelaScan", + "url": "https://artscan.artela.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-11822.json b/_data/chains/eip155-11822.json new file mode 100644 index 000000000000..d1d8ace28d74 --- /dev/null +++ b/_data/chains/eip155-11822.json @@ -0,0 +1,27 @@ +{ + "name": "Artela Testnet", + "chain": "Artela", + "rpc": ["https://betanet-rpc1.artela.network"], + "faucets": [], + "nativeCurrency": { + "name": "ART", + "symbol": "ART", + "decimals": 18 + }, + "infoURL": "https://artela.network/", + "shortName": "Artela", + "chainId": 11822, + "networkId": 11822, + "explorers": [ + { + "name": "ArtelaScan", + "url": "https://betanet-scan.artela.network", + "standard": "EIP3091" + }, + { + "name": "OKXExplorer", + "url": "https://www.okx.com/web3/explorer/artela-testnet", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-11888.json b/_data/chains/eip155-11888.json index a8fcdb12eecf..40d172b3a594 100644 --- a/_data/chains/eip155-11888.json +++ b/_data/chains/eip155-11888.json @@ -1,15 +1,16 @@ { - "name": "Santiment Intelligence Network", - "chain": "Santiment Intelligence Network", + "status": "deprecated", + "name": "Santiment Intelligence Network DEPRECATED", + "chain": "Santiment Intelligence Network DEPRECATED", "rpc": ["https://sanrchain-node.santiment.net"], "faucets": [], "nativeCurrency": { - "name": "SANR", - "symbol": "SANR", + "name": "SANold", + "symbol": "SANold", "decimals": 18 }, "infoURL": "https://sanr.app", - "shortName": "SAN", + "shortName": "SANold", "chainId": 11888, "networkId": 11888, "icon": "sanrchain", diff --git a/_data/chains/eip155-1200.json b/_data/chains/eip155-1200.json new file mode 100644 index 000000000000..cebdefb79d3f --- /dev/null +++ b/_data/chains/eip155-1200.json @@ -0,0 +1,26 @@ +{ + "name": "Cuckoo Chain", + "title": "Cuckoo Chain", + "chain": "CuckooAI", + "rpc": [ + "https://mainnet-rpc.cuckoo.network", + "wss://mainnet-rpc.cuckoo.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "CuckooAI", + "symbol": "CAI", + "decimals": 18 + }, + "infoURL": "https://cuckoo.network", + "shortName": "cai", + "chainId": 1200, + "networkId": 1200, + "explorers": [ + { + "name": "Cuckoo Chain Explorer", + "url": "https://scan.cuckoo.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-12001.json b/_data/chains/eip155-12001.json new file mode 100644 index 000000000000..24aa66267e66 --- /dev/null +++ b/_data/chains/eip155-12001.json @@ -0,0 +1,22 @@ +{ + "name": "Fuse Testnet", + "chain": "Fuse", + "rpc": ["https://rpc.flash.fuse.io"], + "faucets": ["https://faucet.flash.fuse.io"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "fuseZK", + "chainId": 12001, + "networkId": 12001, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.flash.fuse.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-12020498.json b/_data/chains/eip155-12020498.json new file mode 100644 index 000000000000..ef94f445e4df --- /dev/null +++ b/_data/chains/eip155-12020498.json @@ -0,0 +1,23 @@ +{ + "name": "Lummio Network", + "chain": "Lummio Network", + "rpc": ["https://rpc.lummio.net"], + "faucets": [], + "nativeCurrency": { + "name": "Lummio Reward Points", + "symbol": "LRPO", + "decimals": 18 + }, + "infoURL": "https://lummio.net", + "shortName": "lummio", + "chainId": 12020498, + "networkId": 12020498, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.lummio.net", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-12052024.json b/_data/chains/eip155-12052024.json new file mode 100644 index 000000000000..47f52c517846 --- /dev/null +++ b/_data/chains/eip155-12052024.json @@ -0,0 +1,22 @@ +{ + "name": "Memento Testnet", + "chain": "Memento", + "rpc": ["https://test-rpc.mementoblockchain.com/IRkghvI3FfEArEJMr4zC/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "memento-test", + "chainId": 12052024, + "networkId": 12052024, + "explorers": [ + { + "name": "Tracehawk", + "url": "https://test-explorer.mementoblockchain.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-120893.json b/_data/chains/eip155-120893.json new file mode 100644 index 000000000000..bdd1086bbcb6 --- /dev/null +++ b/_data/chains/eip155-120893.json @@ -0,0 +1,25 @@ +{ + "name": "Sova Sepolia Testnet", + "chain": "ETH", + "icon": "sova", + "rpc": ["https://rpc.testnet.sova.io"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://sova.io", + "shortName": "sovasep", + "chainId": 120893, + "networkId": 120893, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.testnet.sova.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1210.json b/_data/chains/eip155-1210.json new file mode 100644 index 000000000000..ba72bdf2a492 --- /dev/null +++ b/_data/chains/eip155-1210.json @@ -0,0 +1,20 @@ +{ + "name": "Cuckoo Sepolia", + "title": "Cuckoo AI Testnet Sepolia", + "chain": "CuckooAI", + "rpc": [ + "https://testnet-rpc.cuckoo.network", + "wss://testnet-rpc.cuckoo.network" + ], + "faucets": ["https://cuckoo.network/portal/faucet/"], + "nativeCurrency": { + "name": "CuckooAI", + "symbol": "CAI", + "decimals": 18 + }, + "infoURL": "https://cuckoo.network", + "shortName": "caisepolia", + "chainId": 1210, + "networkId": 1210, + "explorers": [] +} diff --git a/_data/chains/eip155-1212.json b/_data/chains/eip155-1212.json new file mode 100644 index 000000000000..4183b941c690 --- /dev/null +++ b/_data/chains/eip155-1212.json @@ -0,0 +1,24 @@ +{ + "name": "ADF Chain Testnet", + "chain": "ADF Chain Testnet", + "icon": "addfilltest", + "rpc": ["https://testnet.adftechnology.com/"], + "faucets": [], + "nativeCurrency": { + "name": "ADDFILL Testnet", + "symbol": "tADF", + "decimals": 18 + }, + "infoURL": "https://www.adfstarworld.com/", + "shortName": "tADF", + "chainId": 1212, + "networkId": 1212, + "explorers": [ + { + "name": "ADF Testnet explorer", + "url": "https://testnet-explorer.adftechnology.com", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-1212101.json b/_data/chains/eip155-1212101.json new file mode 100644 index 000000000000..33e4537bd58f --- /dev/null +++ b/_data/chains/eip155-1212101.json @@ -0,0 +1,17 @@ +{ + "name": "1Money Network Testnet", + "chain": "1Money Testnet", + "rpc": ["https://testnet.1money.network"], + "faucets": [], + "nativeCurrency": { + "name": "USD1", + "symbol": "USD1", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://1money.com", + "shortName": "1money-testnet", + "chainId": 1212101, + "networkId": 1212101, + "explorers": [] +} diff --git a/_data/chains/eip155-121212.json b/_data/chains/eip155-121212.json new file mode 100644 index 000000000000..226424125fbd --- /dev/null +++ b/_data/chains/eip155-121212.json @@ -0,0 +1,25 @@ +{ + "name": "Rome Devnet Esquiline", + "chain": "ROME", + "rpc": ["https://esquiline-i.devnet.romeprotocol.xyz"], + "faucets": ["https://deposit.devnet.romeprotocol.xyz"], + "nativeCurrency": { + "name": "RSOL", + "symbol": "RSOL", + "decimals": 18 + }, + "infoURL": "https://rome.builders", + "shortName": "rome-devnet-esquiline", + "chainId": 121212, + "networkId": 121212, + "icon": "rome", + "explorers": [ + { + "name": "Rome Devnet Esquiline Explorer", + "url": "https://romescout-esquiline-i.devnet.romeprotocol.xyz", + "icon": "rome", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-121213.json b/_data/chains/eip155-121213.json new file mode 100644 index 000000000000..c8f0ac968e4c --- /dev/null +++ b/_data/chains/eip155-121213.json @@ -0,0 +1,25 @@ +{ + "name": "Rome Devnet Subura", + "chain": "ROME", + "rpc": ["https://subura-i.devnet.romeprotocol.xyz"], + "faucets": ["https://deposit.devnet.romeprotocol.xyz"], + "nativeCurrency": { + "name": "RSOL", + "symbol": "RSOL", + "decimals": 18 + }, + "infoURL": "https://rome.builders", + "shortName": "rome-devnet-subura", + "chainId": 121213, + "networkId": 121213, + "icon": "rome", + "explorers": [ + { + "name": "Rome Devnet Subura Explorer", + "url": "https://romescout-subura-i.devnet.romeprotocol.xyz", + "icon": "rome", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-121214.json b/_data/chains/eip155-121214.json new file mode 100644 index 000000000000..755328452e6a --- /dev/null +++ b/_data/chains/eip155-121214.json @@ -0,0 +1,25 @@ +{ + "name": "Rome Testnet Martius", + "chain": "ROME", + "rpc": ["https://martius-i.testnet.romeprotocol.xyz"], + "faucets": ["https://deposit.testnet.romeprotocol.xyz"], + "nativeCurrency": { + "name": "RSOL", + "symbol": "RSOL", + "decimals": 18 + }, + "infoURL": "https://rome.builders", + "shortName": "rome-testnet-martius", + "chainId": 121214, + "networkId": 121214, + "icon": "rome", + "explorers": [ + { + "name": "Rome Testnet Martius Explorer", + "url": "https://romescout-martius-i.testnet.romeprotocol.xyz", + "icon": "rome", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-121215.json b/_data/chains/eip155-121215.json new file mode 100644 index 000000000000..706c31bc4ac8 --- /dev/null +++ b/_data/chains/eip155-121215.json @@ -0,0 +1,25 @@ +{ + "name": "Rome Testnet Caelian", + "chain": "ROME", + "rpc": ["https://caelian-i.testnet.romeprotocol.xyz"], + "faucets": ["https://deposit.testnet.romeprotocol.xyz"], + "nativeCurrency": { + "name": "RSOL", + "symbol": "RSOL", + "decimals": 18 + }, + "infoURL": "https://rome.builders", + "shortName": "rome-testnet-caelian", + "chainId": 121215, + "networkId": 121215, + "icon": "rome", + "explorers": [ + { + "name": "Rome Testnet Caelian Explorer", + "url": "https://romescout-caelian-i.testnet.romeprotocol.xyz", + "icon": "rome", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-121224.json b/_data/chains/eip155-121224.json new file mode 100644 index 000000000000..e6bccd763c87 --- /dev/null +++ b/_data/chains/eip155-121224.json @@ -0,0 +1,27 @@ +{ + "name": "Fushuma", + "chain": "Fushuma", + "rpc": ["https://rpc.fushuma.com"], + "faucets": [], + "nativeCurrency": { + "name": "FUSHUMA", + "symbol": "FUMA", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "", + "shortName": "fushuma", + "chainId": 121224, + "networkId": 121224, + "explorers": [ + { + "name": "FumaScan", + "url": "https://fumascan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1215.json b/_data/chains/eip155-1215.json new file mode 100644 index 000000000000..158a1380c25b --- /dev/null +++ b/_data/chains/eip155-1215.json @@ -0,0 +1,24 @@ +{ + "name": "ADF Chain", + "chain": "ADF Chain", + "icon": "addfillmain", + "rpc": ["https://mainnet.adftechnology.com/"], + "faucets": [], + "nativeCurrency": { + "name": "ADDFILL", + "symbol": "ADF", + "decimals": 18 + }, + "infoURL": "https://www.adfstarworld.com/", + "shortName": "ADF", + "chainId": 1215, + "networkId": 1215, + "explorers": [ + { + "name": "ADF explorer", + "url": "https://explorer.adftechnology.com", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-12227331.json b/_data/chains/eip155-12227331.json new file mode 100644 index 000000000000..d8c9a4be02e4 --- /dev/null +++ b/_data/chains/eip155-12227331.json @@ -0,0 +1,24 @@ +{ + "name": "NeoX Testnet T3", + "chain": "NeoX", + "rpc": ["https://neoxseed1.ngd.network/"], + "faucets": [], + "nativeCurrency": { + "name": "Gas", + "symbol": "GAS", + "decimals": 18 + }, + "infoURL": "https://neo.org/", + "shortName": "neox", + "chainId": 12227331, + "networkId": 12227331, + "icon": "neox", + "explorers": [ + { + "name": "neox-scan", + "url": "https://testnet.scan.banelabs.org", + "standard": "EIP3091" + } + ], + "status": "deprecated" +} diff --git a/_data/chains/eip155-12227332.json b/_data/chains/eip155-12227332.json new file mode 100644 index 000000000000..8381a030f4ad --- /dev/null +++ b/_data/chains/eip155-12227332.json @@ -0,0 +1,24 @@ +{ + "name": "Neo X Testnet T4", + "chain": "Neo X", + "rpc": ["https://testnet.rpc.banelabs.org/"], + "faucets": [], + "nativeCurrency": { + "name": "Gas", + "symbol": "GAS", + "decimals": 18 + }, + "infoURL": "https://neo.org/", + "shortName": "neox-t4", + "chainId": 12227332, + "networkId": 12227332, + "icon": "neox", + "explorers": [ + { + "name": "neox-scan", + "url": "https://xt4scan.ngd.network", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-1223.json b/_data/chains/eip155-1223.json new file mode 100644 index 000000000000..e31f2ea3187b --- /dev/null +++ b/_data/chains/eip155-1223.json @@ -0,0 +1,16 @@ +{ + "name": "Cycle Network Testnet Jellyfish", + "chain": "ETH", + "rpc": ["https://jellyfish-rpc-testnet.cyclenetwork.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.cyclenetwork.io/", + "shortName": "cyclej", + "chainId": 1223, + "networkId": 1223, + "icon": "cycle" +} diff --git a/_data/chains/eip155-1224.json b/_data/chains/eip155-1224.json index aba488177f0a..de860cdbed13 100644 --- a/_data/chains/eip155-1224.json +++ b/_data/chains/eip155-1224.json @@ -1,5 +1,5 @@ { - "name": "Hybrid Testnet", + "name": "Hybrid Testnet (Deprecated)", "chain": "HYB", "icon": "hybridIcon", "rpc": ["https://testnet-rpc.buildonhybrid.com"], @@ -10,8 +10,9 @@ "decimals": 18 }, "infoURL": "https://buildonhybrid.com", - "shortName": "hyb", + "shortName": "hyb_deprecated", "chainId": 1224, + "status": "deprecated", "networkId": 1224, "explorers": [ { diff --git a/_data/chains/eip155-1225.json b/_data/chains/eip155-1225.json new file mode 100644 index 000000000000..d67f3afffcfe --- /dev/null +++ b/_data/chains/eip155-1225.json @@ -0,0 +1,27 @@ +{ + "name": "Hybrid Testnet", + "chain": "HYB", + "icon": "hybridIcon", + "rpc": [ + "https://hybrid-testnet.rpc.caldera.xyz/http", + "wss://hybrid-testnet.rpc.caldera.xyz/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Hybrid", + "symbol": "HYB", + "decimals": 18 + }, + "infoURL": "https://buildonhybrid.com", + "shortName": "hyb", + "chainId": 1225, + "networkId": 1225, + "explorers": [ + { + "name": "Hybrid Testnet", + "url": "https://explorer.buildonhybrid.com", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-1227.json b/_data/chains/eip155-1227.json new file mode 100644 index 000000000000..df45349393af --- /dev/null +++ b/_data/chains/eip155-1227.json @@ -0,0 +1,24 @@ +{ + "name": "Bitcoin Protocol Testnet", + "chain": "BTCP Testnet", + "icon": "btcprotocol", + "rpc": ["https://testnet-chain.btcprotocol.io/"], + "faucets": [], + "nativeCurrency": { + "name": "BTC Protocol", + "symbol": "BTCP", + "decimals": 18 + }, + "infoURL": "https://btcprotocol.io/", + "shortName": "BTCP", + "chainId": 1227, + "networkId": 1227, + "explorers": [ + { + "name": "BTCP explorer", + "url": "https://explorer.btcprotocol.io", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-1228.json b/_data/chains/eip155-1228.json new file mode 100644 index 000000000000..33296a51b728 --- /dev/null +++ b/_data/chains/eip155-1228.json @@ -0,0 +1,16 @@ +{ + "name": "Cycle Network Testnet Cuttlefish", + "chain": "ETH", + "rpc": ["https://cuttlefish-rpc-testnet.cyclenetwork.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.cyclenetwork.io/", + "shortName": "cyclec", + "chainId": 1228, + "networkId": 1228, + "icon": "cycle" +} diff --git a/_data/chains/eip155-12323.json b/_data/chains/eip155-12323.json new file mode 100644 index 000000000000..bf7194876046 --- /dev/null +++ b/_data/chains/eip155-12323.json @@ -0,0 +1,31 @@ +{ + "name": "Huddle01 dRTC Chain", + "chain": "huddle01", + "rpc": ["https://huddle01.calderachain.xyz/http"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://huddle01.com/", + "shortName": "huddle01", + "chainId": 12323, + "networkId": 12323, + "icon": "huddle01", + "explorers": [ + { + "name": "Huddle01 Caldera Explorer", + "url": "https://huddle01.calderaexplorer.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-123321.json b/_data/chains/eip155-123321.json new file mode 100644 index 000000000000..0e95b74ebace --- /dev/null +++ b/_data/chains/eip155-123321.json @@ -0,0 +1,23 @@ +{ + "name": "Gemchain", + "chain": "Gemchain", + "rpc": ["https://evm-rpc.gemchain.org"], + "faucets": [], + "nativeCurrency": { + "name": "GEM", + "symbol": "GEM", + "decimals": 18 + }, + "infoURL": "https://gemchain.org", + "shortName": "gemchain", + "chainId": 123321, + "networkId": 123321, + "slip44": 1, + "explorers": [ + { + "name": "Gemchain Scan", + "url": "https://scan.gemchain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-123420000220.json b/_data/chains/eip155-123420000220.json new file mode 100644 index 000000000000..64a50d0cc1cb --- /dev/null +++ b/_data/chains/eip155-123420000220.json @@ -0,0 +1,26 @@ +{ + "name": "Fluence Stage", + "chain": "Fluence Stage (Testnet)", + "rpc": ["https://rpc.stage.fluence.dev", "wss://ws.stage.fluence.dev"], + "faucets": [], + "nativeCurrency": { + "name": "tFLT", + "symbol": "tFLT", + "decimals": 18 + }, + "infoURL": "https://fluence.network/", + "shortName": "fluence-stage", + "chainId": 123420000220, + "networkId": 123420000220, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.stage.fluence.dev", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } +} diff --git a/_data/chains/eip155-123420000558.json b/_data/chains/eip155-123420000558.json new file mode 100644 index 000000000000..ab5bc409f5a8 --- /dev/null +++ b/_data/chains/eip155-123420000558.json @@ -0,0 +1,37 @@ +{ + "name": "PIN", + "title": "PIN", + "chain": "PIN", + "rpc": [ + "https://rpc.pin.t.raas.gelato.cloud", + "wss://ws.pin.t.raas.gelato.cloud" + ], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/pin", + "faucets": [], + "shortName": "PIN", + "chainId": 123420000558, + "networkId": 123420000558, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.pin.t.raas.gelato.cloud", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://testnet-bridge.gelato.network/bridge/pin/bridge/pin" + } + ] + } +} diff --git a/_data/chains/eip155-123420000586.json b/_data/chains/eip155-123420000586.json new file mode 100644 index 000000000000..852574d19eb3 --- /dev/null +++ b/_data/chains/eip155-123420000586.json @@ -0,0 +1,37 @@ +{ + "name": "sivo-defi-testnet", + "title": "Sivo Defi Testnet", + "chain": "sivo-defi-testnet", + "rpc": [ + "https://rpc.sivo-defi-testnet.t.raas.gelato.cloud", + "wss://ws.sivo-defi-testnet.t.raas.gelato.cloud" + ], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/sivo-defi-testnet", + "faucets": [], + "shortName": "sivo-defi-testnet", + "chainId": 123420000586, + "networkId": 123420000586, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://sivo-defi-testnet.cloud.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://testnet-bridge.gelato.network/bridge/sivo-defi-testnet" + } + ] + } +} diff --git a/_data/chains/eip155-123420000588.json b/_data/chains/eip155-123420000588.json new file mode 100644 index 000000000000..609da0317a33 --- /dev/null +++ b/_data/chains/eip155-123420000588.json @@ -0,0 +1,34 @@ +{ + "name": "volmex", + "title": "Volmex", + "chain": "volmex", + "rpc": [ + "https://rpc.volmex.t.raas.gelato.cloud", + "wss://ws.volmex.t.raas.gelato.cloud" + ], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/volmex", + "faucets": [], + "shortName": "volmex", + "chainId": 123420000588, + "networkId": 123420000588, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://volmex.cloud.blockscout.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-84532", + "bridges": [ + { "url": "https://testnet-bridge.gelato.network/bridge/volmex" } + ] + } +} diff --git a/_data/chains/eip155-123420001114.json b/_data/chains/eip155-123420001114.json new file mode 100644 index 000000000000..168b8a0c4140 --- /dev/null +++ b/_data/chains/eip155-123420001114.json @@ -0,0 +1,26 @@ +{ + "name": "Basecamp", + "chain": "CAMP", + "icon": "camp", + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "rpc": ["https://rpc.basecamp.t.raas.gelato.cloud"], + "faucets": ["https://www.campnetwork.xyz/faucet_l1"], + "nativeCurrency": { + "name": "Camp", + "symbol": "CAMP", + "decimals": 18 + }, + "infoURL": "https://docs.campnetwork.xyz/", + "shortName": "Basecamp", + "chainId": 123420001114, + "networkId": 123420001114, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://basecamp.cloud.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1234567.json b/_data/chains/eip155-1234567.json new file mode 100644 index 000000000000..9b73cf7e546f --- /dev/null +++ b/_data/chains/eip155-1234567.json @@ -0,0 +1,25 @@ +{ + "name": "Sharecle Mainnet", + "chain": "SHARECLE", + "icon": "sharecle", + "rpc": ["https://mainnet.sharecle.com"], + "faucets": [], + "nativeCurrency": { + "name": "SHARECLE COIN", + "symbol": "SHR", + "decimals": 18 + }, + "infoURL": "https://sharecle.com/", + "shortName": "shr", + "chainId": 1234567, + "networkId": 1234567, + "slip44": 1, + "explorers": [ + { + "name": "Etherscan", + "url": "https://etherscan.io", + "standard": "none", + "icon": "sharecle" + } + ] +} diff --git a/_data/chains/eip155-1235.json b/_data/chains/eip155-1235.json new file mode 100644 index 000000000000..fa679cba6fd1 --- /dev/null +++ b/_data/chains/eip155-1235.json @@ -0,0 +1,22 @@ +{ + "name": "ITX Mainnet", + "chain": "ITX", + "rpc": ["https://rpc.itxchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "ITX", + "symbol": "ITX", + "decimals": 18 + }, + "infoURL": "https://explorer.itxchain.com", + "shortName": "itx", + "chainId": 1235, + "networkId": 1235, + "explorers": [ + { + "name": "ITX Mainnet Explorer (Blockscout)", + "url": "https://explorer.itxchain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-12358.json b/_data/chains/eip155-12358.json new file mode 100644 index 000000000000..f9fb019a10ed --- /dev/null +++ b/_data/chains/eip155-12358.json @@ -0,0 +1,22 @@ +{ + "name": "GDPR Mainnet", + "chain": "GDPR", + "rpc": ["https://rpc.gdprchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "GDPR", + "symbol": "GDPR", + "decimals": 18 + }, + "infoURL": "https://explorer.gdprchain.com", + "shortName": "gdpr", + "chainId": 12358, + "networkId": 12358, + "explorers": [ + { + "name": "GDPR Mainnet Explorer (Blockscout)", + "url": "https://explorer.gdprchain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-124832.json b/_data/chains/eip155-124832.json new file mode 100644 index 000000000000..a7d75d01feb9 --- /dev/null +++ b/_data/chains/eip155-124832.json @@ -0,0 +1,22 @@ +{ + "name": "Mitosis Testnet", + "chain": "Mitosis Testnet", + "rpc": ["https://rpc.testnet.mitosis.org"], + "faucets": ["https://testnet.mitosis.org/faucet"], + "nativeCurrency": { + "name": "MITO", + "symbol": "MITO", + "decimals": 18 + }, + "infoURL": "https://mitosis.org", + "shortName": "mitosis-testnet", + "chainId": 124832, + "networkId": 124832, + "explorers": [ + { + "name": "mitosis testnet explorer", + "url": "https://testnet.mitosiscan.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1260.json b/_data/chains/eip155-1260.json new file mode 100644 index 000000000000..aa3421b4b3f0 --- /dev/null +++ b/_data/chains/eip155-1260.json @@ -0,0 +1,24 @@ +{ + "name": "Metacces Testnet", + "chain": "Metacces Testnet", + "icon": "metacces", + "rpc": ["https://tapi.accesscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "Metacces", + "symbol": "ACCES", + "decimals": 18 + }, + "infoURL": "https://metacces.com", + "shortName": "ACCESt", + "chainId": 1260, + "networkId": 1260, + "explorers": [ + { + "name": "accesscan", + "url": "https://testnet.accesscan.io", + "icon": "metacces", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1278060416.json b/_data/chains/eip155-1278060416.json new file mode 100644 index 000000000000..6a5224dc8d4d --- /dev/null +++ b/_data/chains/eip155-1278060416.json @@ -0,0 +1,32 @@ +{ + "name": "OFFICIAL VASYL", + "title": "OFFICIAL VASYL", + "chain": "Official-Vasyl", + "rpc": ["https://rpc.official-vasyl.network"], + "faucets": ["https://faucet.official-vasyl.network"], + "nativeCurrency": { + "name": "OFFICIAL VASYL", + "symbol": "VASYL", + "decimals": 18 + }, + "infoURL": "official-vasyl.network", + "shortName": "Vasyl", + "chainId": 1278060416, + "networkId": 1278060416, + "icon": "vasyl", + "explorers": [ + { + "name": "Official Vasyl Explorer", + "url": "https://explorer.official-vasyl.network", + "icon": "vasyl", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://bridge.official-vasyl.network" }] + }, + "features": [{ "name": "EIP155" }], + "status": "active" +} diff --git a/_data/chains/eip155-128123.json b/_data/chains/eip155-128123.json index b1c4c014c1f9..968cf298c4d5 100644 --- a/_data/chains/eip155-128123.json +++ b/_data/chains/eip155-128123.json @@ -17,7 +17,7 @@ "explorers": [ { "name": "Etherlink Testnet Explorer", - "url": "https://testnet-explorer.etherlink.com", + "url": "https://testnet.explorer.etherlink.com", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-1284.json b/_data/chains/eip155-1284.json index f32632c3042c..e7ab364846d8 100644 --- a/_data/chains/eip155-1284.json +++ b/_data/chains/eip155-1284.json @@ -1,6 +1,7 @@ { "name": "Moonbeam", "chain": "MOON", + "icon": "moonbeam", "rpc": [ "https://rpc.api.moonbeam.network", "wss://wss.api.moonbeam.network", diff --git a/_data/chains/eip155-1285.json b/_data/chains/eip155-1285.json index 06d1fe074d70..15e749633f25 100644 --- a/_data/chains/eip155-1285.json +++ b/_data/chains/eip155-1285.json @@ -1,6 +1,7 @@ { "name": "Moonriver", "chain": "MOON", + "icon": "moonriver", "rpc": [ "https://rpc.api.moonriver.moonbeam.network", "wss://wss.api.moonriver.moonbeam.network", diff --git a/_data/chains/eip155-1287.json b/_data/chains/eip155-1287.json index bf484763496e..e393ced0410e 100644 --- a/_data/chains/eip155-1287.json +++ b/_data/chains/eip155-1287.json @@ -1,6 +1,7 @@ { "name": "Moonbase Alpha", "chain": "MOON", + "icon": "moonbasealpha", "rpc": [ "https://rpc.api.moonbase.moonbeam.network", "wss://wss.api.moonbase.moonbeam.network", @@ -15,7 +16,7 @@ "https://moonbase-alpha.drpc.org", "wss://moonbase-alpha.drpc.org" ], - "faucets": [], + "faucets": ["https://faucet.moonbeam.network/"], "nativeCurrency": { "name": "Dev", "symbol": "DEV", diff --git a/_data/chains/eip155-1291.json b/_data/chains/eip155-1291.json index 138ae02f1fc9..e5619aad4723 100644 --- a/_data/chains/eip155-1291.json +++ b/_data/chains/eip155-1291.json @@ -1,6 +1,6 @@ { "name": "Swisstronik Testnet", - "chain": "SWTR", + "chain": "SWTR Testnet", "rpc": ["https://json-rpc.testnet.swisstronik.com"], "faucets": ["https://faucet.testnet.swisstronik.com"], "nativeCurrency": { @@ -10,7 +10,7 @@ }, "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "infoURL": "https://www.swisstronik.com", - "shortName": "swtr", + "shortName": "swtr-testnet", "chainId": 1291, "networkId": 1291, "slip44": 1, diff --git a/_data/chains/eip155-129399.json b/_data/chains/eip155-129399.json new file mode 100644 index 000000000000..dabcd67bf204 --- /dev/null +++ b/_data/chains/eip155-129399.json @@ -0,0 +1,25 @@ +{ + "name": "Tatara Testnet", + "chain": "Tatara", + "rpc": ["https://rpc.tatara.katanarpc.com/"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "", + "shortName": "Tatara", + "chainId": 129399, + "networkId": 129399, + "icon": "ethereum", + "explorers": [ + { + "name": "Tatara explorer", + "url": "https://explorer.tatara.katana.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1298.json b/_data/chains/eip155-1298.json new file mode 100644 index 000000000000..30cedb74cdf1 --- /dev/null +++ b/_data/chains/eip155-1298.json @@ -0,0 +1,26 @@ +{ + "name": "Argochain Testnet", + "chain": "Argochain", + "icon": "argochain", + "rpc": [ + "https://rpc-testnet.devolvedai.com", + "https://test-rpc.devolvedai.com" + ], + "faucets": ["https://faucet.argoscan.net"], + "nativeCurrency": { + "name": "Argocoin", + "symbol": "AGC", + "decimals": 18 + }, + "infoURL": "https://devolvedai.com", + "shortName": "tAGC", + "chainId": 1298, + "networkId": 1298, + "explorers": [ + { + "name": "Argochain Test Scanner", + "url": "https://test-scanner.devolvedai.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1299.json b/_data/chains/eip155-1299.json new file mode 100644 index 000000000000..325953f4260f --- /dev/null +++ b/_data/chains/eip155-1299.json @@ -0,0 +1,23 @@ +{ + "name": "Argochain", + "chain": "Argochain", + "icon": "argochain", + "rpc": ["https://rpc.devolvedai.com", "https://rpc-mainnet.devolvedai.com"], + "faucets": [], + "nativeCurrency": { + "name": "Argocoin", + "symbol": "AGC", + "decimals": 18 + }, + "infoURL": "https://devolvedai.com", + "shortName": "AGC", + "chainId": 1299, + "networkId": 1299, + "explorers": [ + { + "name": "Argochain Scanner", + "url": "https://scanner.argoscan.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-130.json b/_data/chains/eip155-130.json new file mode 100644 index 000000000000..75c9db271428 --- /dev/null +++ b/_data/chains/eip155-130.json @@ -0,0 +1,32 @@ +{ + "name": "Unichain", + "chain": "ETH", + "rpc": [ + "https://mainnet.unichain.org", + "https://unichain-rpc.publicnode.com", + "wss://unichain-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://unichain.org", + "shortName": "unichain", + "chainId": 130, + "networkId": 130, + "icon": "unichain", + "explorers": [ + { + "name": "Unichain Mainnet Explorer", + "url": "https://uniscan.xyz", + "standard": "EIP3091" + }, + { + "name": "Unichain Mainnet Explorer", + "url": "https://unichain.blockscout.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1300.json b/_data/chains/eip155-1300.json new file mode 100644 index 000000000000..75f00c46c697 --- /dev/null +++ b/_data/chains/eip155-1300.json @@ -0,0 +1,24 @@ +{ + "name": "Glue Mainnet", + "chain": "GLUE", + "rpc": ["https://rpc.glue.net"], + "faucets": [], + "nativeCurrency": { + "name": "Glue", + "symbol": "GLUE", + "decimals": 18 + }, + "infoURL": "https://glue.net/", + "shortName": "glue", + "chainId": 1300, + "networkId": 1300, + "icon": "glue", + "explorers": [ + { + "name": "Glue Explorer", + "url": "https://explorer.glue.net", + "icon": "glue", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1301.json b/_data/chains/eip155-1301.json new file mode 100644 index 000000000000..c0c496c13d32 --- /dev/null +++ b/_data/chains/eip155-1301.json @@ -0,0 +1,32 @@ +{ + "name": "Unichain Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.unichain.org", + "https://unichain-sepolia-rpc.publicnode.com", + "wss://unichain-sepolia-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://unichain.org", + "shortName": "unichain-sep", + "chainId": 1301, + "networkId": 1301, + "icon": "unichain-testnet", + "explorers": [ + { + "name": "Unichain Sepolia Testnet Explorer", + "url": "https://unichain-sepolia.blockscout.com", + "standard": "EIP3091" + }, + { + "name": "Unichain Sepolia Testnet Explorer", + "url": "https://sepolia.uniscan.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1310.json b/_data/chains/eip155-1310.json new file mode 100644 index 000000000000..b9befa58f050 --- /dev/null +++ b/_data/chains/eip155-1310.json @@ -0,0 +1,24 @@ +{ + "name": "COINZAX", + "chain": "ZAX", + "icon": "coinzaxIcon", + "rpc": ["https://rpc.coinzax.com"], + "faucets": [], + "nativeCurrency": { + "name": "COINZAX", + "symbol": "ZAX", + "decimals": 18 + }, + "infoURL": "https://coinzax.com", + "shortName": "zax", + "chainId": 1310, + "networkId": 1310, + "status": "active", + "explorers": [ + { + "name": "COINZAX Explorer", + "url": "https://explorer.coinzax.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1313.json b/_data/chains/eip155-1313.json new file mode 100644 index 000000000000..fdc0d26fe080 --- /dev/null +++ b/_data/chains/eip155-1313.json @@ -0,0 +1,23 @@ +{ + "name": "JaiHo Chain", + "chain": "JaiHoChain", + "icon": "jaihoIcon", + "rpc": ["https://rpc.jaihochain.com"], + "faucets": [], + "nativeCurrency": { + "name": "JaiHo", + "symbol": "JaiHo", + "decimals": 18 + }, + "infoURL": "https://jaihochain.com", + "shortName": "JHC", + "chainId": 1313, + "networkId": 1313, + "explorers": [ + { + "name": "JaiHo Chain Explorer", + "url": "https://jaihochain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1313161554.json b/_data/chains/eip155-1313161554.json index ceccc1305777..d887b330506b 100644 --- a/_data/chains/eip155-1313161554.json +++ b/_data/chains/eip155-1313161554.json @@ -18,8 +18,8 @@ "networkId": 1313161554, "explorers": [ { - "name": "aurorascan.dev", - "url": "https://aurorascan.dev", + "name": "Aurora Explorer", + "url": "https://explorer.aurora.dev", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-1313161555.json b/_data/chains/eip155-1313161555.json index ff3abdda1d7c..b4b1d8318c3d 100644 --- a/_data/chains/eip155-1313161555.json +++ b/_data/chains/eip155-1313161555.json @@ -19,8 +19,8 @@ "slip44": 1, "explorers": [ { - "name": "aurorascan.dev", - "url": "https://testnet.aurorascan.dev", + "name": "Aurora Explorer", + "url": "https://explorer.testnet.aurora.dev", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-1313161567.json b/_data/chains/eip155-1313161567.json new file mode 100644 index 000000000000..746d82581bf6 --- /dev/null +++ b/_data/chains/eip155-1313161567.json @@ -0,0 +1,23 @@ +{ + "name": "Turbo", + "chain": "NEAR", + "rpc": ["https://rpc-0x4e45415f.aurora-cloud.dev"], + "icon": "turbo", + "faucets": [], + "nativeCurrency": { + "name": "Turbo", + "symbol": "TURBO", + "decimals": 18 + }, + "infoURL": "https://turbotoken.io", + "shortName": "turbo", + "chainId": 1313161567, + "networkId": 1313161567, + "explorers": [ + { + "name": "Turbo explorer", + "url": "https://explorer.turbo.aurora.dev", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1313161573.json b/_data/chains/eip155-1313161573.json new file mode 100644 index 000000000000..2d5d35297f80 --- /dev/null +++ b/_data/chains/eip155-1313161573.json @@ -0,0 +1,23 @@ +{ + "name": "Tuxappcoin", + "chain": "NEAR", + "rpc": ["https://rpc-0x4e454165.aurora-cloud.dev"], + "icon": "tuxa", + "faucets": [], + "nativeCurrency": { + "name": "TUXA", + "symbol": "TUXA", + "decimals": 18 + }, + "infoURL": "https://x.com/tuxapp_coin", + "shortName": "tuxa", + "chainId": 1313161573, + "networkId": 1313161573, + "explorers": [ + { + "name": "TUXA explorer", + "url": "https://explorer.tuxa.aurora.dev", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1315.json b/_data/chains/eip155-1315.json new file mode 100644 index 000000000000..e05767bde755 --- /dev/null +++ b/_data/chains/eip155-1315.json @@ -0,0 +1,23 @@ +{ + "name": "Story Aeneid Testnet", + "chain": "Story Aeneid Testnet", + "rpc": ["https://aeneid.storyrpc.io"], + "faucets": [], + "nativeCurrency": { + "name": "IP Token", + "symbol": "IP", + "decimals": 18 + }, + "infoURL": "https://story.foundation/", + "icon": "story", + "shortName": "story-aeneid", + "chainId": 1315, + "networkId": 1315, + "explorers": [ + { + "name": "blockscout", + "url": "https://aeneid.storyscan.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1328.json b/_data/chains/eip155-1328.json new file mode 100644 index 000000000000..892dfb22ef3b --- /dev/null +++ b/_data/chains/eip155-1328.json @@ -0,0 +1,26 @@ +{ + "name": "Sei Testnet", + "chain": "Sei", + "rpc": [ + "https://evm-rpc-testnet.sei-apis.com", + "wss://evm-ws-testnet.sei-apis.com" + ], + "faucets": ["https://atlantic-2.app.sei.io/faucet"], + "nativeCurrency": { + "name": "Sei", + "symbol": "SEI", + "decimals": 18 + }, + "infoURL": "https://www.sei.io", + "shortName": "sei-testnet", + "chainId": 1328, + "networkId": 1328, + "icon": "sei", + "explorers": [ + { + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1329.json b/_data/chains/eip155-1329.json new file mode 100644 index 000000000000..1e3bde157e85 --- /dev/null +++ b/_data/chains/eip155-1329.json @@ -0,0 +1,24 @@ +{ + "name": "Sei Network", + "chain": "Sei", + "rpc": ["https://evm-rpc.sei-apis.com", "wss://evm-ws.sei-apis.com"], + "faucets": [], + "nativeCurrency": { + "name": "Sei", + "symbol": "SEI", + "decimals": 18 + }, + "infoURL": "https://www.sei.io", + "shortName": "sei", + "chainId": 1329, + "networkId": 1329, + "slip44": 19000118, + "icon": "seiv2", + "explorers": [ + { + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-132902.json b/_data/chains/eip155-132902.json new file mode 100644 index 000000000000..6f1083ebdfc0 --- /dev/null +++ b/_data/chains/eip155-132902.json @@ -0,0 +1,43 @@ +{ + "name": "Form Testnet", + "title": "Form Testnet", + "chain": "formtestnet", + "rpc": [ + "https://sepolia-rpc.form.network/http", + "wss://sepolia-rpc.form.network/ws" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": ["https://info.form.network/faucet"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://sepolia-info.form.network", + "shortName": "formtestnet", + "chainId": 132902, + "networkId": 132902, + "explorers": [ + { + "name": "Form Testnet explorer", + "url": "https://sepolia-explorer.form.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://sepolia-op-bridge.form.network" + } + ] + } +} diff --git a/_data/chains/eip155-133.json b/_data/chains/eip155-133.json index 72209d62229f..e31af4100357 100644 --- a/_data/chains/eip155-133.json +++ b/_data/chains/eip155-133.json @@ -2,7 +2,7 @@ "name": "HashKey Chain Testnet", "title": "HashKey Chain Testnet", "chain": "HashKey Chain Testnet", - "rpc": [], + "rpc": ["https://hashkeychain-testnet.alt.technology"], "faucets": [], "nativeCurrency": { "name": "HashKey EcoPoints", @@ -13,7 +13,14 @@ "shortName": "HSKT", "chainId": 133, "networkId": 133, - "explorers": [], + "explorers": [ + { + "name": "blockscout", + "url": "https://hashkeychain-testnet-explorer.alt.technology", + "icon": "blockscout", + "standard": "EIP3091" + } + ], "parent": { "type": "L2", "chain": "eip155-11155111" diff --git a/_data/chains/eip155-1336.json b/_data/chains/eip155-1336.json new file mode 100644 index 000000000000..7785aa66652e --- /dev/null +++ b/_data/chains/eip155-1336.json @@ -0,0 +1,25 @@ +{ + "name": "Kii Testnet Oro", + "chain": "KII", + "rpc": ["https://json-rpc.uno.sentry.testnet.v3.kiivalidator.com"], + "faucets": ["https://explorer.kiichain.io/testnet/faucet"], + "nativeCurrency": { + "name": "Kii", + "symbol": "KII", + "decimals": 18 + }, + "features": [], + "infoURL": "https://kiichain.io", + "shortName": "kiioro", + "chainId": 1336, + "networkId": 1336, + "icon": "kii", + "explorers": [ + { + "name": "KiiExplorer", + "url": "https://explorer.kiichain.io/testnet", + "icon": "kii", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-13370.json b/_data/chains/eip155-13370.json new file mode 100644 index 000000000000..044bd593e1c9 --- /dev/null +++ b/_data/chains/eip155-13370.json @@ -0,0 +1,16 @@ +{ + "name": "Cannon Testnet", + "title": "Cannon Private Testnet", + "chain": "ETH", + "rpc": ["http://127.0.0.1:8545"], + "faucets": [], + "nativeCurrency": { + "name": "Cannon Testnet Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://usecannon.com", + "shortName": "cannon", + "chainId": 13370, + "networkId": 13370 +} diff --git a/_data/chains/eip155-1338.json b/_data/chains/eip155-1338.json index 5c536c5e1a98..c9dcfdebf38e 100644 --- a/_data/chains/eip155-1338.json +++ b/_data/chains/eip155-1338.json @@ -1,24 +1,23 @@ { "name": "Elysium Testnet", "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged", - "chain": "Elysium", - "rpc": ["https://elysium-test-rpc.vulcanforged.com"], - "faucets": [], + "chain": "Atlantis", + "rpc": ["https://rpc.atlantischain.network"], + "faucets": ["https://faucet.atlantischain.network"], "nativeCurrency": { - "name": "LAVA", - "symbol": "LAVA", + "name": "ELY", + "symbol": "ELY", "decimals": 18 }, - "infoURL": "https://elysiumscan.vulcanforged.com", - "shortName": "ELST", + "infoURL": "https://elysiumchain.tech", + "shortName": "ATL", "chainId": 1338, "networkId": 1338, - "slip44": 1, "explorers": [ { - "name": "Elysium testnet explorer", - "url": "https://elysium-explorer.vulcanforged.com", - "standard": "none" + "name": "Atlantis explorer", + "url": "https://blockscout.atlantischain.network", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-1339.json b/_data/chains/eip155-1339.json index 88da3760fbc9..6f25dcd554e7 100644 --- a/_data/chains/eip155-1339.json +++ b/_data/chains/eip155-1339.json @@ -1,23 +1,29 @@ { "name": "Elysium Mainnet", - "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged", + "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain.", "chain": "Elysium", - "rpc": ["https://rpc.elysiumchain.tech/"], - "faucets": [], + "rpc": ["https://rpc.elysiumchain.tech", "https://rpc.elysiumchain.us"], + "faucets": ["https://faucet.elysiumchain.tech"], "nativeCurrency": { - "name": "LAVA", - "symbol": "LAVA", + "name": "ELY", + "symbol": "ELY", "decimals": 18 }, - "infoURL": "https://elysiumscan.vulcanforged.com", - "shortName": "ELSM", + "infoURL": "https://elysiumchain.tech/", + "shortName": "ELY", "chainId": 1339, "networkId": 1339, + "icon": "elysium", "explorers": [ { "name": "Elysium mainnet explorer", "url": "https://explorer.elysiumchain.tech", - "standard": "none" + "standard": "EIP3091" + }, + { + "name": "Elysium blockscout explorer", + "url": "https://blockscout.elysiumchain.tech", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-13505.json b/_data/chains/eip155-13505.json index 752bfba42757..a6893dc5ce40 100644 --- a/_data/chains/eip155-13505.json +++ b/_data/chains/eip155-13505.json @@ -5,7 +5,7 @@ "faucets": [], "nativeCurrency": { "name": "Sepolia Gravity", - "symbol": "G.", + "symbol": "G", "decimals": 18 }, "features": [ diff --git a/_data/chains/eip155-137.json b/_data/chains/eip155-137.json index 569896a6b2c2..33be861bc64e 100644 --- a/_data/chains/eip155-137.json +++ b/_data/chains/eip155-137.json @@ -18,12 +18,12 @@ ], "faucets": [], "nativeCurrency": { - "name": "MATIC", - "symbol": "MATIC", + "name": "POL", + "symbol": "POL", "decimals": 18 }, "infoURL": "https://polygon.technology/", - "shortName": "matic", + "shortName": "pol", "chainId": 137, "networkId": 137, "slip44": 966, diff --git a/_data/chains/eip155-13746.json b/_data/chains/eip155-13746.json new file mode 100644 index 000000000000..8f8eaacaa9ae --- /dev/null +++ b/_data/chains/eip155-13746.json @@ -0,0 +1,31 @@ +{ + "name": "Game7 Testnet", + "title": "Game7 Testnet", + "chain": "Game7", + "rpc": [ + "https://testnet-rpc.game7.io", + "wss://testnet-rpc.game7.io", + "https://testnet-rpc.game7.build", + "wss://testnet-rpc.game7.build" + ], + "faucets": [], + "nativeCurrency": { + "name": "TG7T", + "symbol": "TG7T", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://game7.io", + "shortName": "g7t", + "chainId": 13746, + "networkId": 13746, + "icon": "game7testnet", + "explorers": [ + { + "name": "Blockscout", + "url": "https://testnet.game7.io", + "icon": "game7testnet", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1398243.json b/_data/chains/eip155-1398243.json index 449e33c472de..658e52822237 100644 --- a/_data/chains/eip155-1398243.json +++ b/_data/chains/eip155-1398243.json @@ -1,11 +1,14 @@ { "name": "Automata Testnet", "chain": "Automata Testnet", - "rpc": [], + "rpc": [ + "https://rpc-testnet.ata.network", + "https://automata-testnet.alt.technology" + ], "faucets": [], "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", + "name": "ATA", + "symbol": "ATA", "decimals": 18 }, "infoURL": "https://ata.network", @@ -13,5 +16,11 @@ "chainId": 1398243, "networkId": 1398243, "icon": "automata", - "explorers": [] + "explorers": [ + { + "name": "Automata Testnet Explorer", + "url": "https://explorer-testnet.ata.network", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-1398244.json b/_data/chains/eip155-1398244.json new file mode 100644 index 000000000000..d66740ecfa20 --- /dev/null +++ b/_data/chains/eip155-1398244.json @@ -0,0 +1,23 @@ +{ + "name": "Automata Orbit Testnet", + "chain": "Automata Orbit Testnet", + "rpc": ["https://rpc-orbit-testnet.ata.network"], + "faucets": [], + "nativeCurrency": { + "name": "ATA", + "symbol": "ATA", + "decimals": 18 + }, + "infoURL": "https://ata.network", + "shortName": "automataorbittestnet", + "chainId": 1398244, + "networkId": 1398244, + "icon": "automata", + "explorers": [ + { + "name": "Automata Orbit Testnet Explorer", + "url": "https://automata-orbit-testnet-explorer.alt.technology", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-14.json b/_data/chains/eip155-14.json index 9cb445bc06c9..db645dee67af 100644 --- a/_data/chains/eip155-14.json +++ b/_data/chains/eip155-14.json @@ -9,7 +9,7 @@ "https://rpc.ankr.com/flare", "https://01-gravelines-003-01.rpc.tatum.io/ext/bc/C/rpc", "https://01-vinthill-003-02.rpc.tatum.io/ext/bc/C/rpc", - "https://rpc.ftso.au/flare", + "https://rpc.au.cc/flare", "https://flare.enosys.global/ext/C/rpc", "https://flare.solidifi.app/ext/C/rpc" ], @@ -31,7 +31,7 @@ "standard": "EIP3091" }, { - "name": "flarescan", + "name": "Routescan", "url": "https://mainnet.flarescan.com", "standard": "EIP3091" } diff --git a/_data/chains/eip155-140.json b/_data/chains/eip155-140.json index 1c5624efa1ca..fb9b7d127cb1 100644 --- a/_data/chains/eip155-140.json +++ b/_data/chains/eip155-140.json @@ -1,19 +1,24 @@ { - "name": "EternalCoin Mainnet", - "chain": "Eter", - "icon": "eternal", - "rpc": [ - "https://mainnet.eternalcoin.io/v1", - "ws://mainnet.eternalcoin.io/v1/ws" - ], + "name": "Eteria Mainnet", + "chain": "ERA", + "icon": "eteria", + "rpc": ["https://mainnet.eteria.io/v1"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": [], "nativeCurrency": { - "name": "Eternal", - "symbol": "Eter", + "name": "Eteria", + "symbol": "ERA", "decimals": 18 }, - "infoURL": "https://eternalcoin.io", - "shortName": "Eter", + "infoURL": "https://eteria.io", + "shortName": "ERA", "chainId": 140, - "networkId": 140 + "networkId": 140, + "explorers": [ + { + "name": "eteriascan", + "url": "https://explorer.eteria.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-14088.json b/_data/chains/eip155-14088.json new file mode 100644 index 000000000000..3575aa0cba97 --- /dev/null +++ b/_data/chains/eip155-14088.json @@ -0,0 +1,24 @@ +{ + "name": "Zeroth Testnet", + "chain": "Zeroth", + "icon": "zeroth", + "rpc": ["https://test-my.zeroth.run"], + "faucets": [], + "nativeCurrency": { + "name": "Zeroth", + "symbol": "ZRHt", + "decimals": 18 + }, + "infoURL": "https://www.zeroth.foundation", + "shortName": "ZRHt", + "chainId": 14088, + "networkId": 14088, + "explorers": [ + { + "name": "Zeroth Explorer", + "url": "https://test-scan.zeroth.run", + "icon": "zeroth", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1414.json b/_data/chains/eip155-1414.json index cc4b9eb1c0fd..4d9834b02a6f 100644 --- a/_data/chains/eip155-1414.json +++ b/_data/chains/eip155-1414.json @@ -1,6 +1,6 @@ { - "name": "Silicon zkEVM Sepolia Testnet", - "title": "Silicon zkEVM Sepolia Testnet", + "name": "Silicon zkEVM Sepolia Testnet(Deprecated)", + "title": "Silicon zkEVM Sepolia Testnet(Deprecated)", "chain": "Silicon", "rpc": [], "faucets": [], @@ -10,7 +10,7 @@ "decimals": 18 }, "infoURL": "", - "shortName": "silicon-sepolia-testnet", + "shortName": "silicon-sepolia-testnet-deprecated", "chainId": 1414, "networkId": 1414, "icon": "silicon", @@ -20,5 +20,5 @@ "chain": "eip155-11155111", "bridges": [] }, - "status": "incubating" + "status": "deprecated" } diff --git a/_data/chains/eip155-14149.json b/_data/chains/eip155-14149.json new file mode 100644 index 000000000000..a984fd3dab2f --- /dev/null +++ b/_data/chains/eip155-14149.json @@ -0,0 +1,28 @@ +{ + "name": "Bitharvest Chain Mainnet", + "chain": "Bitharvest Chain Mainnet", + "rpc": ["https://rpc.bthscan.io/"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitharvest Mainnet Native Token", + "symbol": "BTH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "BitharvestMainnet", + "chainId": 14149, + "networkId": 14149, + "explorers": [ + { + "name": "Bitharvest Mainnet Scan", + "url": "https://bthscan.io", + "standard": "EIP3091" + } + ], + "icon": "bth" +} diff --git a/_data/chains/eip155-141491.json b/_data/chains/eip155-141491.json new file mode 100644 index 000000000000..85cbb6650642 --- /dev/null +++ b/_data/chains/eip155-141491.json @@ -0,0 +1,28 @@ +{ + "name": "Bitharvest Chain Testnet", + "chain": "Bitharvest Chain Testnet", + "rpc": ["https://rpc-testnet.bthscan.io/"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitharvest Testnet Native Token", + "symbol": "BTH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "BitharvestTestnet", + "chainId": 141491, + "networkId": 141491, + "explorers": [ + { + "name": "Bitharvest Testnet Scan", + "url": "https://testnet.bthscan.io", + "standard": "EIP3091" + } + ], + "icon": "bth" +} diff --git a/_data/chains/eip155-1417429182.json b/_data/chains/eip155-1417429182.json new file mode 100644 index 000000000000..f79b15f12d4b --- /dev/null +++ b/_data/chains/eip155-1417429182.json @@ -0,0 +1,30 @@ +{ + "name": "Zephyr Testnet", + "title": "Zephyr Testnet", + "chain": "Zephyr-testnet", + "rpc": ["https://zephyr-rpc.eu-north-2.gateway.fm"], + "faucets": ["https://zephyr-faucet.eu-north-2.gateway.fm"], + "nativeCurrency": { + "name": "ZERO", + "symbol": "Z", + "decimals": 18 + }, + "infoURL": "https://zero.tech", + "shortName": "zephyr", + "chainId": 1417429182, + "networkId": 1417429182, + "icon": "zephyr", + "explorers": [ + { + "name": "blockscout", + "url": "https://zephyr-blockscout.eu-north-2.gateway.fm", + "icon": "zephyr", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://zephyr-bridge.eu-north-2.gateway.fm" }] + } +} diff --git a/_data/chains/eip155-14235.json b/_data/chains/eip155-14235.json new file mode 100644 index 000000000000..0b26615b22ba --- /dev/null +++ b/_data/chains/eip155-14235.json @@ -0,0 +1,31 @@ +{ + "name": "Bitlazer", + "chain": "bitlazer", + "rpc": ["https://bitlazer.calderachain.xyz/http"], + "faucets": [], + "nativeCurrency": { + "name": "lzrBTC", + "symbol": "lzrBTC", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://bitlazer.hub.caldera.xyz", + "shortName": "bitlazer", + "chainId": 14235, + "networkId": 14235, + "icon": "bitlazer", + "explorers": [ + { + "name": "Bitlazer Caldera Explorer", + "url": "https://bitlazer.calderaexplorer.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1424.json b/_data/chains/eip155-1424.json new file mode 100644 index 000000000000..71804d9b6b3d --- /dev/null +++ b/_data/chains/eip155-1424.json @@ -0,0 +1,32 @@ +{ + "name": "Perennial", + "chain": "perennial", + "rpc": ["https://rpc.perennial.foundation"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://perennial.finance", + "shortName": "perennial", + "chainId": 1424, + "networkId": 1424, + "icon": "perennial", + "explorers": [ + { + "name": "Perennial Explorer", + "url": "https://explorer.perennial.foundation", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-8453", + "bridges": [ + { + "url": "https://bridge.perennial.foundation" + } + ] + } +} diff --git a/_data/chains/eip155-1425.json b/_data/chains/eip155-1425.json new file mode 100644 index 000000000000..af3dcda0fbaa --- /dev/null +++ b/_data/chains/eip155-1425.json @@ -0,0 +1,24 @@ +{ + "name": "ONINO Mainnet", + "chain": "ONI", + "rpc": ["https://rpc.onino.io"], + "faucets": ["https://faucet.onino.io"], + "nativeCurrency": { + "name": "ONI", + "symbol": "ONI", + "decimals": 18 + }, + "infoURL": "https://onino.io", + "shortName": "onino", + "chainId": 1425, + "networkId": 1425, + "icon": "onino", + "explorers": [ + { + "name": "onino", + "url": "https://explorer.onino.io", + "icon": "onino", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-143.json b/_data/chains/eip155-143.json new file mode 100644 index 000000000000..6e3259d4544d --- /dev/null +++ b/_data/chains/eip155-143.json @@ -0,0 +1,19 @@ +{ + "name": "Monad Mainnet", + "chain": "MON", + "icon": "monad", + "rpc": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "MON Token", + "symbol": "MON", + "decimals": 18 + }, + "infoURL": "https://monad.xyz", + "shortName": "mon", + "chainId": 143, + "networkId": 143, + "slip44": 1, + "explorers": [] +} diff --git a/_data/chains/eip155-1440002.json b/_data/chains/eip155-1440002.json new file mode 100644 index 000000000000..ef2de930bd7f --- /dev/null +++ b/_data/chains/eip155-1440002.json @@ -0,0 +1,25 @@ +{ + "name": "XRPL EVM Sidechain Devnet", + "chain": "XRPLEVM Devnet", + "icon": "xrplevm", + "rpc": ["https://rpc.xrplevm.org", "https://ws.xrplevm.org"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://faucet.xrplevm.org"], + "nativeCurrency": { + "name": "XRP", + "symbol": "XRP", + "decimals": 18 + }, + "infoURL": "https://xrplevm.org", + "shortName": "xrplevmdevnet", + "chainId": 1440002, + "networkId": 1440002, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.xrplevm.org", + "icon": "xrplevm", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1449000.json b/_data/chains/eip155-1449000.json new file mode 100644 index 000000000000..196bf00435ae --- /dev/null +++ b/_data/chains/eip155-1449000.json @@ -0,0 +1,25 @@ +{ + "name": "XRPL EVM Sidechain Testnet", + "chain": "XRPLEVM Testnet", + "icon": "xrplevm", + "rpc": ["https://rpc.testnet.xrplevm.org", "https://ws.testnet.xrplevm.org"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://faucet.xrplevm.org"], + "nativeCurrency": { + "name": "XRP", + "symbol": "XRP", + "decimals": 18 + }, + "infoURL": "https://xrplevm.org", + "shortName": "xrplevmtestnet", + "chainId": 1449000, + "networkId": 1449000, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.testnet.xrplevm.org", + "icon": "xrplevm", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1456.json b/_data/chains/eip155-1456.json new file mode 100644 index 000000000000..adfa49d88d8e --- /dev/null +++ b/_data/chains/eip155-1456.json @@ -0,0 +1,31 @@ +{ + "name": "ZKBase Mainnet", + "chain": "ETH", + "rpc": ["https://mainnet-rpc.zkbase.app"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zkbase.org/", + "shortName": "zkbase", + "chainId": 1456, + "networkId": 1456, + "slip44": 1, + "icon": "zkbase", + "explorers": [ + { + "name": "ZKbase Block Explorer", + "url": "https://explorer.zkbase.app", + "icon": "zkbase", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://portal.zkbase.app/" }] + }, + "redFlags": ["reusedChainId"] +} diff --git a/_data/chains/eip155-146.json b/_data/chains/eip155-146.json new file mode 100644 index 000000000000..7b0de43c0d89 --- /dev/null +++ b/_data/chains/eip155-146.json @@ -0,0 +1,29 @@ +{ + "name": "Sonic Mainnet", + "chain": "sonic", + "rpc": [ + "https://rpc.soniclabs.com", + "https://sonic-rpc.publicnode.com", + "wss://sonic-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sonic", + "symbol": "S", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://soniclabs.com", + "shortName": "sonic", + "chainId": 146, + "networkId": 146, + "icon": "sonic", + "explorers": [ + { + "name": "sonic", + "url": "https://explorer.soniclabs.com", + "icon": "sonic", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1480.json b/_data/chains/eip155-1480.json new file mode 100644 index 000000000000..a487b3a89ab4 --- /dev/null +++ b/_data/chains/eip155-1480.json @@ -0,0 +1,24 @@ +{ + "name": "Vana", + "chain": "Vana", + "rpc": ["https://rpc.vana.org/"], + "nativeCurrency": { + "name": "Vana", + "symbol": "VANA", + "decimals": 18 + }, + "faucets": ["https://faucet.vana.org/"], + "infoURL": "https://vana.org", + "shortName": "vana", + "chainId": 1480, + "networkId": 1480, + "icon": "vana", + "explorers": [ + { + "name": "Vana Block Explorer", + "url": "https://vanascan.io", + "icon": "vana", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-14800.json b/_data/chains/eip155-14800.json new file mode 100644 index 000000000000..89d1c1f8bb51 --- /dev/null +++ b/_data/chains/eip155-14800.json @@ -0,0 +1,23 @@ +{ + "name": "Vana Moksha Testnet", + "chain": "Vana Moksha Testnet", + "rpc": ["https://rpc.moksha.vana.org"], + "nativeCurrency": { + "name": "VANA", + "symbol": "VANA", + "decimals": 18 + }, + "faucets": [], + "infoURL": "", + "shortName": "vana-moksha", + "chainId": 14800, + "networkId": 14800, + "explorers": [ + { + "name": "Vana Moksha Testnet", + "url": "https://vanascan.io", + "icon": "vanamoksha", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-14801.json b/_data/chains/eip155-14801.json new file mode 100644 index 000000000000..817a4ee4b626 --- /dev/null +++ b/_data/chains/eip155-14801.json @@ -0,0 +1,22 @@ +{ + "name": "Vana Satori Testnet", + "chain": "Satori", + "rpc": ["http://rpc.satori.vana.org"], + "faucets": ["https://faucet.vana.org"], + "nativeCurrency": { + "name": "DAT", + "symbol": "DAT", + "decimals": 18 + }, + "infoURL": "https://satori.vana.org", + "shortName": "satori", + "chainId": 14801, + "networkId": 14801, + "explorers": [ + { + "name": "satoriscan", + "url": "https://satori.vanascan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-15.json b/_data/chains/eip155-15.json index 6372889a2eba..5d102d03e5d2 100644 --- a/_data/chains/eip155-15.json +++ b/_data/chains/eip155-15.json @@ -1,4 +1,5 @@ { + "icon": "diode", "name": "Diode Prenet", "chain": "DIODE", "rpc": ["https://prenet.diode.io:8443/", "wss://prenet.diode.io:8443/ws"], diff --git a/_data/chains/eip155-1501869.json b/_data/chains/eip155-1501869.json new file mode 100644 index 000000000000..3bb5eca4db7a --- /dev/null +++ b/_data/chains/eip155-1501869.json @@ -0,0 +1,29 @@ +{ + "name": "Waterfall 9 Test Network", + "chain": "Waterfall TestNet9", + "rpc": ["https://rpc.testnet9.waterfall.network"], + "faucets": ["https://faucet.testnet9.waterfall.network"], + "nativeCurrency": { + "name": "WATER", + "symbol": "WATER", + "decimals": 18 + }, + "features": [ + { + "name": "EIP1559" + } + ], + "infoURL": "https://waterfall.network", + "shortName": "water9", + "chainId": 1501869, + "networkId": 1501869, + "icon": "waterfall", + "explorers": [ + { + "name": "Waterfall Explorer Testnet9", + "url": "https://explorer.testnet9.waterfall.network", + "icon": "waterfall", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-151.json b/_data/chains/eip155-151.json index 38a119bad89c..ec03928ea748 100644 --- a/_data/chains/eip155-151.json +++ b/_data/chains/eip155-151.json @@ -5,7 +5,8 @@ "chainId": 151, "networkId": 151, "slip44": 824, - "rpc": [], + "icon": "redbelly", + "rpc": ["https://governors.mainnet.redbelly.network"], "faucets": [], "infoURL": "https://redbelly.network", "nativeCurrency": { @@ -13,5 +14,12 @@ "symbol": "RBNT", "decimals": 18 }, - "status": "incubating" + "status": "active", + "explorers": [ + { + "name": "Routescan", + "url": "https://redbelly.routescan.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-1511670449.json b/_data/chains/eip155-1511670449.json new file mode 100644 index 000000000000..5b000e9d484f --- /dev/null +++ b/_data/chains/eip155-1511670449.json @@ -0,0 +1,29 @@ +{ + "name": "GPT Mainnet", + "chain": "GPT Protocol", + "icon": "gpt", + "rpc": ["https://rpc.gptprotocol.io"], + "faucets": [], + "chainId": 1511670449, + "networkId": 1511670449, + "nativeCurrency": { + "name": "GPT", + "symbol": "GPT", + "decimals": 18 + }, + "infoURL": "https://gptprotocol.com", + "shortName": "GPT", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.gptprotocol.io" }] + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.gptprotocol.io", + "standard": "EIP3091", + "icon": "blockscout" + } + ] +} diff --git a/_data/chains/eip155-1513.json b/_data/chains/eip155-1513.json new file mode 100644 index 000000000000..ad3f0e4af225 --- /dev/null +++ b/_data/chains/eip155-1513.json @@ -0,0 +1,22 @@ +{ + "name": "Story Testnet", + "chain": "Story Testnet", + "rpc": ["https://testnet.storyrpc.io"], + "faucets": ["https://faucet.story.foundation"], + "chainId": 1513, + "networkId": 1513, + "nativeCurrency": { + "name": "IP", + "symbol": "IP", + "decimals": 18 + }, + "infoURL": "https://www.story.foundation", + "shortName": "Story", + "explorers": [ + { + "name": "Story Iliad Network explorer", + "url": "https://testnet.storyscan.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1514.json b/_data/chains/eip155-1514.json new file mode 100644 index 000000000000..2fedce7fa2be --- /dev/null +++ b/_data/chains/eip155-1514.json @@ -0,0 +1,23 @@ +{ + "name": "Story", + "chain": "STORY", + "rpc": ["https://mainnet.storyrpc.io"], + "faucets": [], + "nativeCurrency": { + "name": "IP Token", + "symbol": "IP", + "decimals": 18 + }, + "infoURL": "https://story.foundation/", + "icon": "story", + "shortName": "sty", + "chainId": 1514, + "networkId": 1514, + "explorers": [ + { + "name": "blockscout", + "url": "https://mainnet.storyscan.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1516.json b/_data/chains/eip155-1516.json new file mode 100644 index 000000000000..bb59732f3391 --- /dev/null +++ b/_data/chains/eip155-1516.json @@ -0,0 +1,22 @@ +{ + "name": "Story Odyssey Testnet", + "chain": "Story Odyssey Testnet", + "rpc": ["https://odyssey.storyrpc.io"], + "faucets": [], + "chainId": 1516, + "networkId": 1516, + "nativeCurrency": { + "name": "IP", + "symbol": "IP", + "decimals": 18 + }, + "infoURL": "https://www.story.foundation", + "shortName": "story-testnet", + "explorers": [ + { + "name": "Story Odyssey Network explorer", + "url": "https://odyssey-testnet-explorer.storyscan.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1523903251.json b/_data/chains/eip155-1523903251.json new file mode 100644 index 000000000000..97cb70fa898b --- /dev/null +++ b/_data/chains/eip155-1523903251.json @@ -0,0 +1,32 @@ +{ + "name": "Haust Network Testnet", + "title": "Haust Network Testnet", + "chain": "haust-network-testnet", + "rpc": ["https://rpc-testnet.haust.app"], + "features": [{ "name": "EIP155" }], + "faucets": ["https://faucet.haust.app"], + "status": "active", + "nativeCurrency": { + "name": "HAUST", + "symbol": "HAUST", + "decimals": 18 + }, + "infoURL": "https://haust.network/", + "shortName": "HaustTestnet", + "chainId": 1523903251, + "networkId": 1523903251, + "icon": "haust", + "explorers": [ + { + "name": "Haust Network Testnet Explorer", + "url": "https://explorer-testnet.haust.app", + "icon": "haust", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://bridge-testnet.haust.app" }] + } +} diff --git a/_data/chains/eip155-153.json b/_data/chains/eip155-153.json index 3fa4decc1fef..f828ee939d72 100644 --- a/_data/chains/eip155-153.json +++ b/_data/chains/eip155-153.json @@ -4,6 +4,7 @@ "chain": "RBN", "chainId": 153, "networkId": 153, + "icon": "redbelly", "slip44": 1, "rpc": ["https://governors.testnet.redbelly.network"], "faucets": [], @@ -15,9 +16,9 @@ }, "explorers": [ { - "name": "Redbelly Network Testnet Explorer", - "url": "https://explorer.testnet.redbelly.network", - "standard": "none" + "name": "Routescan", + "url": "https://redbelly.testnet.routescan.io", + "standard": "EIP3091" } ], "status": "active" diff --git a/_data/chains/eip155-153153.json b/_data/chains/eip155-153153.json new file mode 100644 index 000000000000..bb117c464bb7 --- /dev/null +++ b/_data/chains/eip155-153153.json @@ -0,0 +1,24 @@ +{ + "name": "Odyssey Chain Mainnet", + "chain": "DIONE", + "rpc": ["https://node.dioneprotocol.com/ext/bc/D/rpc"], + "faucets": [], + "features": [{ "name": "EIP155" }], + "infoURL": "https://www.dioneprotocol.com", + "shortName": "Odyssey", + "chainId": 153153, + "networkId": 153153, + "icon": "odysseyChain", + "nativeCurrency": { + "name": "DIONE", + "symbol": "DIONE", + "decimals": 18 + }, + "explorers": [ + { + "name": "Odyssey Scan", + "url": "https://odysseyscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-15430.json b/_data/chains/eip155-15430.json new file mode 100644 index 000000000000..6c3a5c0a6407 --- /dev/null +++ b/_data/chains/eip155-15430.json @@ -0,0 +1,24 @@ +{ + "name": "KYMTC Mainnet", + "chain": "KYMTC", + "icon": "kymtc", + "rpc": ["https://mainnet-rpc.kymaticscan.online"], + "faucets": [], + "nativeCurrency": { + "name": "KYMTC", + "symbol": "KYMTC", + "decimals": 18 + }, + "infoURL": "https://kymaticscan.online", + "shortName": "KYMTC", + "chainId": 15430, + "networkId": 15430, + "explorers": [ + { + "name": "KYMTC Mainnet Explorer", + "url": "https://kymaticscan.online", + "icon": "kymtc", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1555.json b/_data/chains/eip155-1555.json new file mode 100644 index 000000000000..61bb3c7d55aa --- /dev/null +++ b/_data/chains/eip155-1555.json @@ -0,0 +1,23 @@ +{ + "name": "Datacore Smart Chain", + "chain": "Datacore Smart Chain", + "icon": "dscscan", + "rpc": ["https://rpc01.dscscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "Datacore Smart Chain", + "symbol": "DSC", + "decimals": 18 + }, + "infoURL": "https://rpc01.dscscan.io", + "shortName": "DSCs", + "chainId": 1555, + "networkId": 1555, + "explorers": [ + { + "name": "Datacore Smart Chain", + "url": "https://dscscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-15557.json b/_data/chains/eip155-15557.json index b6f666e48ff4..c386f3a03fa7 100644 --- a/_data/chains/eip155-15557.json +++ b/_data/chains/eip155-15557.json @@ -20,10 +20,5 @@ "url": "https://explorer.testnet.evm.eosnetwork.com", "standard": "EIP3091" } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [{ "url": "https://bridge.testnet.evm.eosnetwork.com" }] - } + ] } diff --git a/_data/chains/eip155-157.json b/_data/chains/eip155-157.json index 857f91ed7094..304103300ae9 100644 --- a/_data/chains/eip155-157.json +++ b/_data/chains/eip155-157.json @@ -1,9 +1,9 @@ { - "name": "Puppynet Shibarium", - "chain": "Puppynet Shibarium", + "name": "Puppynet", + "chain": "Puppynet", "icon": "shibarium", "rpc": ["https://puppynet.shibrpc.com"], - "faucets": ["https://beta.shibariumtech.com/faucet"], + "faucets": ["https://shibarium.shib.io/faucet"], "nativeCurrency": { "name": "BONE", "symbol": "BONE", diff --git a/_data/chains/eip155-1570.json b/_data/chains/eip155-1570.json new file mode 100644 index 000000000000..50f5058e3a9e --- /dev/null +++ b/_data/chains/eip155-1570.json @@ -0,0 +1,23 @@ +{ + "name": "StarCHAIN Testnet", + "chain": "StarCHAIN", + "rpc": ["https://testnet-rpc1.starworksglobal.com"], + "features": [{ "name": "EIP155" }], + "faucets": [], + "nativeCurrency": { + "name": "STARX", + "symbol": "STARX", + "decimals": 18 + }, + "infoURL": "https://www.starworksglobal.com", + "shortName": "starchain-testnet", + "chainId": 1570, + "networkId": 1570, + "explorers": [ + { + "name": "StarCHAIN Explorer", + "url": "https://testnet.starchainscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1570754601.json b/_data/chains/eip155-1570754601.json new file mode 100644 index 000000000000..313c735a3d1a --- /dev/null +++ b/_data/chains/eip155-1570754601.json @@ -0,0 +1,30 @@ +{ + "name": "Haust Testnet", + "title": "Haust Testnet", + "chain": "Haust-testnet", + "rpc": ["https://rpc-test.haust.network"], + "faucets": ["https://haust-testnet-faucet.eu-north-2.gateway.fm"], + "nativeCurrency": { + "name": "HAUST", + "symbol": "HAUST", + "decimals": 18 + }, + "infoURL": "https://haust.network/", + "shortName": "hst-test", + "chainId": 1570754601, + "networkId": 1570754601, + "icon": "haust", + "explorers": [ + { + "name": "blockscout", + "url": "https://haust-testnet-blockscout.eu-north-2.gateway.fm", + "icon": "haust", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://haust-testnet-bridge.eu-north-2.gateway.fm" }] + } +} diff --git a/_data/chains/eip155-1578.json b/_data/chains/eip155-1578.json new file mode 100644 index 000000000000..1b6066ef691c --- /dev/null +++ b/_data/chains/eip155-1578.json @@ -0,0 +1,23 @@ +{ + "name": "StarCHAIN", + "chain": "StarCHAIN", + "rpc": ["https://rpc.starworksglobal.com"], + "features": [{ "name": "EIP155" }], + "faucets": [], + "nativeCurrency": { + "name": "STARX", + "symbol": "STARX", + "decimals": 18 + }, + "infoURL": "https://www.starworksglobal.com", + "shortName": "starchain", + "chainId": 1578, + "networkId": 1578, + "explorers": [ + { + "name": "StarCHAIN Explorer", + "url": "https://starchainscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-158245.json b/_data/chains/eip155-158245.json new file mode 100644 index 000000000000..ff2591524fee --- /dev/null +++ b/_data/chains/eip155-158245.json @@ -0,0 +1,30 @@ +{ + "name": "CryptoX", + "chain": "XCOIN", + "rpc": ["https://rpc-xcoin.cryptoxnetwork.io"], + "faucets": [], + "nativeCurrency": { + "name": "XCOIN", + "symbol": "XCOIN", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://cryptoxnetwork.io", + "shortName": "cryptox", + "chainId": 158245, + "networkId": 158245, + "explorers": [ + { + "name": "CryptoX explorer", + "url": "https://cryptoxscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-158345.json b/_data/chains/eip155-158345.json new file mode 100644 index 000000000000..579631d7b1e9 --- /dev/null +++ b/_data/chains/eip155-158345.json @@ -0,0 +1,30 @@ +{ + "name": "XCOIN", + "chain": "XCOIN", + "rpc": ["https://rpc-xcoin.cryptoxnetwork.io"], + "faucets": [], + "nativeCurrency": { + "name": "XCOIN", + "symbol": "XCOIN", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://cryptoxnetwork.io", + "shortName": "xcoin", + "chainId": 158345, + "networkId": 158345, + "explorers": [ + { + "name": "CryptoX explorer", + "url": "https://cryptoxscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1597.json b/_data/chains/eip155-1597.json new file mode 100644 index 000000000000..2b839ba82eb9 --- /dev/null +++ b/_data/chains/eip155-1597.json @@ -0,0 +1,25 @@ +{ + "name": "Reactive Mainnet", + "title": "Reactive Network", + "chain": "REACT", + "rpc": ["https://mainnet-rpc.rnk.dev"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "React", + "symbol": "REACT", + "decimals": 18 + }, + "infoURL": "https://reactive.network", + "shortName": "react", + "icon": "reactive", + "chainId": 1597, + "networkId": 1597, + "explorers": [ + { + "name": "Reactscan", + "url": "https://reactscan.net", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-16.json b/_data/chains/eip155-16.json index e5551b50debf..17988af3f7ee 100644 --- a/_data/chains/eip155-16.json +++ b/_data/chains/eip155-16.json @@ -29,7 +29,7 @@ "standard": "EIP3091" }, { - "name": "flarescan", + "name": "Routescan", "url": "https://coston.testnet.flarescan.com", "standard": "EIP3091" } diff --git a/_data/chains/eip155-1605.json b/_data/chains/eip155-1605.json new file mode 100644 index 000000000000..0daa5e238c4f --- /dev/null +++ b/_data/chains/eip155-1605.json @@ -0,0 +1,24 @@ +{ + "name": "Betherance", + "chain": "Beth", + "rpc": ["https://rpc.bethscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "Betherance", + "symbol": "BETH", + "decimals": 18 + }, + "infoURL": "https://rpc.bethscan.io", + "shortName": "Beth", + "chainId": 1605, + "networkId": 1605, + "icon": "betherance", + "explorers": [ + { + "name": "bethscan", + "url": "https://bethscan.io", + "icon": "betherance", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1612.json b/_data/chains/eip155-1612.json new file mode 100644 index 000000000000..eafafcd2fab9 --- /dev/null +++ b/_data/chains/eip155-1612.json @@ -0,0 +1,32 @@ +{ + "name": "OpenLedger Mainnet", + "chain": "OpenLedger", + "rpc": ["https://rpc.openledger.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Open", + "symbol": "OPEN", + "decimals": 18 + }, + "infoURL": "https://www.openledger.xyz", + "shortName": "open", + "chainId": 1612, + "networkId": 1612, + "icon": "openledger", + "explorers": [ + { + "name": "OpenLedger Explorer", + "url": "https://scan.openledger.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.openledger.xyz/" + } + ] + } +} diff --git a/_data/chains/eip155-161201.json b/_data/chains/eip155-161201.json new file mode 100644 index 000000000000..e5547f01717c --- /dev/null +++ b/_data/chains/eip155-161201.json @@ -0,0 +1,23 @@ +{ + "name": "OpenLedger Testnet", + "chain": "OpenLedger Testnet", + "rpc": ["https://rpctn.openledger.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Openledger", + "symbol": "OPN", + "decimals": 18 + }, + "infoURL": "https://www.openledger.xyz", + "shortName": "openledgertest", + "chainId": 161201, + "networkId": 161201, + "icon": "openledger", + "explorers": [ + { + "name": "OpenLedger Testnet Explorer", + "url": "https://scantn.openledger.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-161221135.json b/_data/chains/eip155-161221135.json index 11e358596843..42b5867b85fa 100644 --- a/_data/chains/eip155-161221135.json +++ b/_data/chains/eip155-161221135.json @@ -1,34 +1,24 @@ { - "name": "Plume Testnet", - "title": "Plume Sepolia Rollup Testnet", - "chain": "ETH", - "rpc": [ - "https://testnet-rpc.plumenetwork.xyz/http", - "wss://testnet-rpc.plumenetwork.xyz/ws" - ], + "name": "Plume Testnet (Legacy)", + "title": "Plume Sepolia L2 Rollup Testnet (Legacy)", + "chain": "PLUME Testnet Legacy", + "rpc": [], "faucets": [], "nativeCurrency": { "name": "Plume Sepolia Ether", "symbol": "ETH", "decimals": 18 }, - "infoURL": "https://www.plumenetwork.xyz/", - "shortName": "plume-testnet", + "infoURL": "https://plume.org", + "shortName": "plume-testnet-legacy", "chainId": 161221135, "networkId": 161221135, "slip44": 1, "icon": "plume", - "explorers": [ - { - "name": "Blockscout", - "url": "https://testnet-explorer.plumenetwork.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } - ], + "status": "deprecated", + "explorers": [], "parent": { "type": "L2", - "chain": "eip155-11155111", - "bridges": [{ "url": "https://testnet-bridge.plumenetwork.xyz" }] + "chain": "eip155-11155111" } } diff --git a/_data/chains/eip155-16166.json b/_data/chains/eip155-16166.json new file mode 100644 index 000000000000..23792ea4f100 --- /dev/null +++ b/_data/chains/eip155-16166.json @@ -0,0 +1,22 @@ +{ + "name": "Cypherium Mainnet", + "chain": "CPH", + "rpc": ["https://pubnodes.cypherium.io/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Cypherium", + "symbol": "CPH", + "decimals": 18 + }, + "infoURL": "https://www.cypherium.io/", + "shortName": "cph", + "chainId": 16166, + "networkId": 16166, + "explorers": [ + { + "name": "Testnet Block Explorer", + "url": "https://cypherium.tryethernal.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-16180.json b/_data/chains/eip155-16180.json new file mode 100644 index 000000000000..d22a88ea52bf --- /dev/null +++ b/_data/chains/eip155-16180.json @@ -0,0 +1,23 @@ +{ + "name": "PLYR PHI", + "chain": "PLYR", + "icon": "plyr", + "rpc": ["https://subnets.avax.network/plyr/mainnet/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "PLYR", + "symbol": "PLYR", + "decimals": 18 + }, + "infoURL": "https://plyr.network", + "shortName": "plyr-phi", + "chainId": 16180, + "networkId": 16180, + "explorers": [ + { + "name": "PLYR PHI Explorer", + "url": "https://explorer.plyr.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-161803.json b/_data/chains/eip155-161803.json new file mode 100644 index 000000000000..bec2e2aeeebe --- /dev/null +++ b/_data/chains/eip155-161803.json @@ -0,0 +1,32 @@ +{ + "name": "Eventum Mainnet", + "shortName": "Eventum", + "chain": "Eventum", + "icon": "eventum", + "networkId": 161803, + "chainId": 161803, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": ["https://mainnet-rpc.evedex.com"], + "faucets": [], + "explorers": [ + { + "name": "Eventum Mainnet Explorer", + "url": "https://explorer.evedex.com", + "standard": "EIP3091" + } + ], + "infoURL": "https://evedex.com", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + } +} diff --git a/_data/chains/eip155-16182.json b/_data/chains/eip155-16182.json new file mode 100644 index 000000000000..a233f142564d --- /dev/null +++ b/_data/chains/eip155-16182.json @@ -0,0 +1,34 @@ +{ + "name": "Eventum Testnet", + "title": "Eventum Testnet", + "chain": "eventum-testnet", + "rpc": ["https://testnet-rpc.eh-dev.app", "wss://testnet-ws.eh-dev.app"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/event-horizon-eventum-testnet", + "faucets": [], + "shortName": "eventum-testnet", + "chainId": 16182, + "networkId": 16182, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-blockscout.eh-dev.app", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-421614", + "bridges": [ + { + "url": "https://testnet-bridge.eh-dev.app/bridge/event-horizon-eventum-testnet" + } + ] + }, + "status": "active" +} diff --git a/_data/chains/eip155-1625.json b/_data/chains/eip155-1625.json index 07914d02fe3d..fd62d23b9c31 100644 --- a/_data/chains/eip155-1625.json +++ b/_data/chains/eip155-1625.json @@ -1,11 +1,11 @@ { "name": "Gravity Alpha Mainnet", "chain": "Gravity", - "rpc": ["https://rpc.gravity.xyz"], + "rpc": ["https://rpc.gravity.xyz", "https://rpc.ankr.com/gravity"], "faucets": [], "nativeCurrency": { "name": "Gravity", - "symbol": "G.", + "symbol": "G", "decimals": 18 }, "features": [ @@ -23,6 +23,16 @@ "name": "Gravity Alpha Mainnet Explorer", "url": "https://explorer.gravity.xyz", "standard": "EIP3091" + }, + { + "name": "gscan", + "url": "https://gscan.xyz", + "standard": "EIP3091" + }, + { + "name": "OKLink", + "url": "https://www.oklink.com/gravity-alpha", + "standard": "EIP3091" } ], "parent": { diff --git a/_data/chains/eip155-16350.json b/_data/chains/eip155-16350.json new file mode 100644 index 000000000000..f35ee88a725e --- /dev/null +++ b/_data/chains/eip155-16350.json @@ -0,0 +1,16 @@ +{ + "name": "Incentiv Devnet", + "chain": "Incentiv", + "rpc": ["https://rpc.ankr.com/incentiv_devnet"], + "faucets": ["https://faucet.incentiv-dev.ankr.network"], + "nativeCurrency": { + "name": "Testnet INC", + "symbol": "INC", + "decimals": 18 + }, + "infoURL": "https://incentiv.net", + "shortName": "tIncentiv", + "chainId": 16350, + "networkId": 16350, + "slip44": 1 +} diff --git a/_data/chains/eip155-1637450.json b/_data/chains/eip155-1637450.json new file mode 100644 index 000000000000..0de1733e959d --- /dev/null +++ b/_data/chains/eip155-1637450.json @@ -0,0 +1,22 @@ +{ + "name": "Xterio Testnet", + "chain": "Xterio Testnet", + "rpc": ["https://xterio-testnet.alt.technology"], + "faucets": [], + "nativeCurrency": { + "name": "tBNB", + "symbol": "tBNB", + "decimals": 18 + }, + "infoURL": "https://xter.io", + "shortName": "xteriotest", + "chainId": 1637450, + "networkId": 1637450, + "explorers": [ + { + "name": "Xterio Testnet Explorer", + "url": "https://testnet.xterscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-164.json b/_data/chains/eip155-164.json index 31a05037634c..ac1a8b7c9848 100644 --- a/_data/chains/eip155-164.json +++ b/_data/chains/eip155-164.json @@ -1,8 +1,8 @@ { - "name": "Omni Testnet", + "name": "Omni Omega Testnet", "chain": "Omni", "status": "active", - "rpc": ["https://testnet.omni.network"], + "rpc": ["https://omega.omni.network", "wss://wss.omega.omni.network"], "features": [{ "name": "EIP155" }], "faucets": [], "nativeCurrency": { @@ -11,24 +11,15 @@ "decimals": 18 }, "infoURL": "https://docs.omni.network", - "shortName": "omni_testnet", + "shortName": "omni_omega", "chainId": 164, "networkId": 164, "slip44": 1, + "icon": "omni", "explorers": [ { - "name": "Omni X-Explorer", - "url": "https://explorer.testnet.omni.network", - "standard": "none" - }, - { - "name": "Omni EVM Explorer on Blockscout", - "url": "https://omni-testnet.blockscout.com", - "standard": "EIP3091" - }, - { - "name": "Omni EVM Explorer on Routescan", - "url": "https://testnet.omniscan.network", + "name": "Omni EVM and cross-chain Explorer", + "url": "https://omega.omniscan.network", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-1648.json b/_data/chains/eip155-1648.json new file mode 100644 index 000000000000..b3a05e827913 --- /dev/null +++ b/_data/chains/eip155-1648.json @@ -0,0 +1,22 @@ +{ + "name": "Pivotal Mainnet", + "chainId": 1648, + "networkId": 1648, + "chain": "Pivotal", + "rpc": ["https://mainnet.pivotalprotocol.com"], + "faucets": [], + "shortName": "pivotal-mainnet", + "nativeCurrency": { + "name": "Pivotal ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "http://thepivotal.xyz/", + "explorers": [ + { + "name": "Pivotal Scan", + "url": "https://pivotalscan.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-16481.json b/_data/chains/eip155-16481.json new file mode 100644 index 000000000000..02b53a1047fe --- /dev/null +++ b/_data/chains/eip155-16481.json @@ -0,0 +1,22 @@ +{ + "name": "Pivotal Sepolia", + "chainId": 16481, + "networkId": 16481, + "chain": "Pivotal", + "rpc": ["https://sepolia.pivotalprotocol.com"], + "faucets": [], + "shortName": "pivotal-sepolia", + "nativeCurrency": { + "name": "Pivotal ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "http://thepivotal.xyz/", + "explorers": [ + { + "name": "Pivotal Scan", + "url": "https://sepolia.pivotalscan.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-166.json b/_data/chains/eip155-166.json index 6e06361bf6c6..750bda3bb8a6 100644 --- a/_data/chains/eip155-166.json +++ b/_data/chains/eip155-166.json @@ -1,8 +1,8 @@ { "name": "Omni", "chain": "Omni", - "status": "incubating", - "rpc": [], + "status": "active", + "rpc": ["https://mainnet.omni.network", "wss://wss.mainnet.omni.network"], "features": [{ "name": "EIP155" }], "faucets": [], "nativeCurrency": { @@ -10,9 +10,17 @@ "symbol": "OMNI", "decimals": 18 }, - "infoURL": "https://docs.omni.network/", + "infoURL": "https://docs.omni.network", "shortName": "omni", "chainId": 166, "networkId": 166, - "slip44": 1 + "slip44": 1, + "icon": "omni", + "explorers": [ + { + "name": "Omni EVM and cross-chain Explorer", + "url": "https://omniscan.network", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-16600.json b/_data/chains/eip155-16600.json new file mode 100644 index 000000000000..58978f0f8d01 --- /dev/null +++ b/_data/chains/eip155-16600.json @@ -0,0 +1,23 @@ +{ + "name": "0G-Newton-Testnet", + "chain": "0G-Testnet", + "rpc": ["https://evmrpc-testnet.0g.ai"], + "faucets": ["https://faucet.0g.ai"], + "nativeCurrency": { + "name": "A0GI", + "symbol": "A0GI", + "decimals": 18 + }, + "infoURL": "https://0g.ai", + "shortName": "0gai-testnet", + "chainId": 16600, + "networkId": 16600, + "icon": "0gai", + "explorers": [ + { + "name": "0G BlockChain Explorer", + "url": "https://chainscan-newton.0g.ai", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-16604737732183.json b/_data/chains/eip155-16604737732183.json new file mode 100644 index 000000000000..4a34a74a78f6 --- /dev/null +++ b/_data/chains/eip155-16604737732183.json @@ -0,0 +1,25 @@ +{ + "name": "Flame Testnet", + "chain": "Flame", + "rpc": ["https://rpc.flame.dawn-1.astria.org"], + "faucets": [], + "nativeCurrency": { + "name": "TIA", + "symbol": "TIA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://astria.org", + "shortName": "flame-testnet", + "chainId": 16604737732183, + "networkId": 16604737732183, + "icon": "flame", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.flame.dawn-1.astria.org", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1660990954.json b/_data/chains/eip155-1660990954.json new file mode 100644 index 000000000000..a8c2a46cba54 --- /dev/null +++ b/_data/chains/eip155-1660990954.json @@ -0,0 +1,35 @@ +{ + "name": "Status Network Sepolia", + "title": "Status Network Sepolia", + "chain": "ETH", + "rpc": ["https://public.sepolia.rpc.status.network"], + "faucets": ["https://faucet.status.network/"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://status.network", + "shortName": "sn-sepolia", + "chainId": 1660990954, + "networkId": 1660990954, + "icon": "sn", + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.status.network" + } + ] + }, + "explorers": [ + { + "name": "Blockscout", + "url": "https://sepoliascan.status.network", + "standard": "EIP3091", + "icon": "sn" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-1666600000.json b/_data/chains/eip155-1666600000.json index 5375a741d64c..ebca587b4985 100644 --- a/_data/chains/eip155-1666600000.json +++ b/_data/chains/eip155-1666600000.json @@ -7,7 +7,6 @@ "https://api.s0.t.hmny.io", "https://rpc.ankr.com/harmony", - "https://harmony.api.onfinality.io/public", "https://1rpc.io/one", "https://harmony-0.drpc.org", "wss://harmony-0.drpc.org" diff --git a/_data/chains/eip155-167000.json b/_data/chains/eip155-167000.json index ed9778b517e5..421de542cdc0 100644 --- a/_data/chains/eip155-167000.json +++ b/_data/chains/eip155-167000.json @@ -1,9 +1,13 @@ { - "name": "Taiko Mainnet", + "name": "Taiko Alethia", "chain": "ETH", "status": "active", "icon": "taiko", - "rpc": ["https://rpc.mainnet.taiko.xyz", "wss://ws.mainnet.taiko.xyz"], + "rpc": [ + "https://rpc.mainnet.taiko.xyz", + "https://taiko-rpc.publicnode.com", + "wss://taiko-rpc.publicnode.com" + ], "faucets": [], "nativeCurrency": { "name": "Ether", @@ -19,6 +23,11 @@ "name": "etherscan", "url": "https://taikoscan.io", "standard": "EIP3091" + }, + { + "name": "Routescan", + "url": "https://taikoexplorer.com", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-167008.json b/_data/chains/eip155-167008.json index 678f54ded40d..5a1284a5773b 100644 --- a/_data/chains/eip155-167008.json +++ b/_data/chains/eip155-167008.json @@ -1,14 +1,9 @@ { "name": "Taiko Katla L2", "chain": "ETH", - "status": "active", + "status": "deprecated", "icon": "taiko", - "rpc": [ - "https://rpc.katla.taiko.xyz", - "wss://ws.katla.taiko.xyz", - "https://taiko-katla.drpc.org", - "wss://taiko-katla.drpc.org" - ], + "rpc": [], "faucets": [], "nativeCurrency": { "name": "Ether", @@ -19,11 +14,5 @@ "shortName": "tko-katla", "chainId": 167008, "networkId": 167008, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.katla.taiko.xyz", - "standard": "EIP3091" - } - ] + "explorers": [] } diff --git a/_data/chains/eip155-167009.json b/_data/chains/eip155-167009.json index d551c9dfe810..e3586e004d6d 100644 --- a/_data/chains/eip155-167009.json +++ b/_data/chains/eip155-167009.json @@ -1,9 +1,14 @@ { - "name": "Taiko Hekla L2", + "name": "Taiko Hekla", "chain": "ETH", "status": "active", "icon": "taiko", - "rpc": ["https://rpc.hekla.taiko.xyz", "wss://ws.hekla.taiko.xyz"], + "rpc": [ + "https://rpc.hekla.taiko.xyz", + "wss://ws.hekla.taiko.xyz", + "https://taiko-hekla-rpc.publicnode.com", + "wss://taiko-hekla-rpc.publicnode.com" + ], "faucets": [], "nativeCurrency": { "name": "Ether", @@ -21,8 +26,8 @@ "standard": "EIP3091" }, { - "name": "routescan", - "url": "https://hekla.taikoscan.network", + "name": "Routescan", + "url": "https://hekla.taikoexplorer.com", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-168168.json b/_data/chains/eip155-168168.json new file mode 100644 index 000000000000..e77218180155 --- /dev/null +++ b/_data/chains/eip155-168168.json @@ -0,0 +1,23 @@ +{ + "name": "Zchains", + "chain": "Zchains", + "rpc": ["https://rpc.zchains.com"], + "faucets": [], + "nativeCurrency": { + "name": "ZCD", + "symbol": "ZCD", + "decimals": 18 + }, + "infoURL": "https://www.zchains.com/", + "shortName": "zchains", + "chainId": 168168, + "networkId": 168168, + "icon": "zchain", + "explorers": [ + { + "name": "zchains", + "url": "https://scan.zchains.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-168169.json b/_data/chains/eip155-168169.json new file mode 100644 index 000000000000..88ca1e6a95dd --- /dev/null +++ b/_data/chains/eip155-168169.json @@ -0,0 +1,25 @@ +{ + "name": "MUD Chain", + "chain": "MUD", + "rpc": ["https://rpc.mud.network"], + "faucets": ["https://faucet.mud.network"], + "nativeCurrency": { + "name": "MUD", + "symbol": "MUD", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://mud.network", + "shortName": "MUD", + "chainId": 168169, + "networkId": 168169, + "icon": "mud", + "explorers": [ + { + "name": "MUD Chain Scan", + "url": "https://scan.mud.network", + "icon": "mud", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1686.json b/_data/chains/eip155-1686.json index d98890d03723..7dc42bedb62d 100644 --- a/_data/chains/eip155-1686.json +++ b/_data/chains/eip155-1686.json @@ -12,6 +12,7 @@ "shortName": "minttest", "chainId": 1686, "networkId": 1686, + "status": "deprecated", "icon": "mintTestnet", "explorers": [ { diff --git a/_data/chains/eip155-1687.json b/_data/chains/eip155-1687.json index 3e5a4c83f9ec..3e66f5437e0e 100644 --- a/_data/chains/eip155-1687.json +++ b/_data/chains/eip155-1687.json @@ -23,7 +23,7 @@ ], "parent": { "type": "L2", - "chain": "eip155-1", + "chain": "eip155-11155111", "bridges": [{ "url": "https://sepolia-testnet-bridge.mintchain.io" }] } } diff --git a/_data/chains/eip155-1689.json b/_data/chains/eip155-1689.json new file mode 100644 index 000000000000..848d31ea0c2d --- /dev/null +++ b/_data/chains/eip155-1689.json @@ -0,0 +1,24 @@ +{ + "name": "NERO Mainnet", + "chain": "NERO Chain", + "rpc": ["https://rpc.nerochain.io", "wss://ws.nerochain.io"], + "faucets": [], + "nativeCurrency": { + "name": "NERO", + "symbol": "NERO", + "decimals": 18 + }, + "infoURL": "https://docs.nerochain.io/", + "shortName": "NERO", + "chainId": 1689, + "networkId": 1689, + "slip44": 1, + "icon": "nero", + "explorers": [ + { + "name": "nero mainnet scan", + "url": "https://www.neroscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-16969696.json b/_data/chains/eip155-16969696.json new file mode 100644 index 000000000000..579d6a9929bf --- /dev/null +++ b/_data/chains/eip155-16969696.json @@ -0,0 +1,27 @@ +{ + "name": "Privix Chain Mainnet", + "chain": "PRIVIX", + "rpc": [ + "https://mainnet-rpc.privixchain.xyz/", + "wss://mainnet-rpc.privixchain.xyz/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Privix Coin", + "symbol": "PRIVIX", + "decimals": 18 + }, + "infoURL": "https://privix.co/", + "shortName": "mpsc", + "chainId": 16969696, + "networkId": 16969696, + "icon": "privix", + "explorers": [ + { + "name": "blockscout", + "url": "https://privixscan.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1698369.json b/_data/chains/eip155-1698369.json new file mode 100644 index 000000000000..56b386293a3d --- /dev/null +++ b/_data/chains/eip155-1698369.json @@ -0,0 +1,22 @@ +{ + "name": "Primea Network Testnet", + "chain": "Primea Network Testnet", + "rpc": [ + "http://test-rpc.primeanetwork.com/rpc-http", + "https://test-rpc.primeanetwork.com/rpc-https", + "ws://test-rpc.primeanetwork.com/rpc-ws", + "wss://test-rpc.primeanetwork.com/rpc-wss" + ], + "faucets": [], + "nativeCurrency": { + "name": "GoldPrimeaNetwork Test", + "symbol": "GOLDPN", + "decimals": 18 + }, + "infoURL": "https://primeanetwork.com", + "shortName": "test-goldpn", + "chainId": 1698369, + "networkId": 1698369, + "icon": "prim", + "explorers": [] +} diff --git a/_data/chains/eip155-1702448187.json b/_data/chains/eip155-1702448187.json new file mode 100644 index 000000000000..a3a071e3ca95 --- /dev/null +++ b/_data/chains/eip155-1702448187.json @@ -0,0 +1,32 @@ +{ + "name": "WITNESS CHAIN", + "title": "WITNESS CHAIN", + "chain": "Witness-Chain", + "rpc": ["https://sequencer.witnesschain.com"], + "nativeCurrency": { + "name": "ETHER", + "symbol": "ETH", + "decimals": 18 + }, + "faucets": [], + "infoURL": "https://www.witnesschain.com", + "shortName": "Witness", + "chainId": 1702448187, + "networkId": 1702448187, + "icon": "witness", + "explorers": [ + { + "name": "Witness Chain Explorer", + "url": "https://explorer.witnesschain.com", + "icon": "witness", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.witnesschain.com" }] + }, + "features": [{ "name": "EIP155" }], + "status": "active" +} diff --git a/_data/chains/eip155-17071.json b/_data/chains/eip155-17071.json new file mode 100644 index 000000000000..4c780c09863a --- /dev/null +++ b/_data/chains/eip155-17071.json @@ -0,0 +1,28 @@ +{ + "name": "Onchain Points", + "chain": "POP", + "rpc": [ + "https://rpc.onchainpoints.xyz", + "https://rpc-onchain-points-8n0qkkpr2j.t.conduit.xyz/{CONDUIT_API_KEY}" + ], + "faucets": [], + "nativeCurrency": { + "name": "OnchainPoints.xyz", + "symbol": "POP", + "decimals": 18 + }, + "infoURL": "https://onchainpoints.xyz", + "shortName": "pop", + "chainId": 17071, + "networkId": 17071, + "icon": "pop", + "status": "incubating", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.onchainpoints.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-171.json b/_data/chains/eip155-171.json new file mode 100644 index 000000000000..ec68b06019b2 --- /dev/null +++ b/_data/chains/eip155-171.json @@ -0,0 +1,24 @@ +{ + "name": "CO2e Chain", + "chain": "CO2E", + "rpc": ["https://rpc.co2e.cc", "https://rpc.co2ledger.xyz"], + "faucets": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "nativeCurrency": { + "name": "CO2e Token", + "symbol": "CO2E", + "decimals": 18 + }, + "infoURL": "https://co2e.cc", + "shortName": "CO2e", + "chainId": 171, + "networkId": 171, + "icon": "co2e", + "explorers": [ + { + "name": "CO2e Explorer", + "url": "https://exp.co2e.cc", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-171000.json b/_data/chains/eip155-171000.json new file mode 100644 index 000000000000..1b0cbe2e556e --- /dev/null +++ b/_data/chains/eip155-171000.json @@ -0,0 +1,16 @@ +{ + "name": "Fair Testnet", + "chain": "FAIR", + "rpc": ["https://rpc-testnet.xfair.ai", "wss://rpc-testnet.xfair.ai"], + "faucets": [], + "nativeCurrency": { + "name": "FAIR", + "symbol": "FAIR", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://xfair.ai", + "shortName": "fairt", + "chainId": 171000, + "networkId": 171000 +} diff --git a/_data/chains/eip155-171717.json b/_data/chains/eip155-171717.json new file mode 100644 index 000000000000..1e813669a782 --- /dev/null +++ b/_data/chains/eip155-171717.json @@ -0,0 +1,24 @@ +{ + "name": "Wadzchain Mainnet", + "title": "Wadzchain Mainnet", + "chain": "Wadzchain-Mainnet", + "icon": "wadz", + "rpc": ["https://rpc.wadzchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "WadzChain Token", + "symbol": "WCO", + "decimals": 18 + }, + "infoURL": "https://www.wadzchain-network.io", + "shortName": "wadzchain-mainnet", + "chainId": 171717, + "networkId": 171717, + "explorers": [ + { + "name": "Wadzchain Mainnet Explorer", + "url": "https://scan.wadzchain.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1722641160.json b/_data/chains/eip155-1722641160.json new file mode 100644 index 000000000000..acf2d7b9f71b --- /dev/null +++ b/_data/chains/eip155-1722641160.json @@ -0,0 +1,33 @@ +{ + "name": "Silicon zkEVM Sepolia Testnet", + "title": "Silicon zkEVM Sepolia Testnet", + "chain": "Silicon", + "rpc": [ + "https://rpc-sepolia.silicon.network", + "https://silicon-testnet.nodeinfra.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.silicon.network", + "shortName": "silicon-sepolia-testnet", + "chainId": 1722641160, + "networkId": 1722641160, + "icon": "silicon", + "explorers": [ + { + "name": "siliconscope-sepolia", + "url": "https://scope-sepolia.silicon.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://bridge-sepolia.silicon.network" }] + }, + "status": "active" +} diff --git a/_data/chains/eip155-1727.json b/_data/chains/eip155-1727.json new file mode 100644 index 000000000000..30266d52eaea --- /dev/null +++ b/_data/chains/eip155-1727.json @@ -0,0 +1,25 @@ +{ + "name": "Ethpar Mainnet", + "chain": "ETP", + "rpc": ["https://rpc01.ethpar.net/"], + "faucets": [], + "nativeCurrency": { + "name": "Ethpar", + "symbol": "ETP", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://ethpar.com", + "shortName": "ethpar", + "chainId": 1727, + "networkId": 1727, + "icon": "ethpar", + "explorers": [ + { + "name": "Ethpar Mainnet Explorer", + "url": "https://dora.ethpar.net", + "icon": "ethpar", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-173.json b/_data/chains/eip155-173.json new file mode 100644 index 000000000000..5719fe08a4a2 --- /dev/null +++ b/_data/chains/eip155-173.json @@ -0,0 +1,23 @@ +{ + "name": "ENI Mainnet", + "chain": "ENI", + "rpc": ["https://rpc.eniac.network"], + "faucets": [], + "nativeCurrency": { + "name": "EGAS", + "symbol": "EGAS", + "decimals": 18 + }, + "infoURL": "https://eniac.network/", + "shortName": "eni", + "chainId": 173, + "networkId": 173, + "icon": "eni", + "explorers": [ + { + "name": "ENI Explorer", + "url": "https://scan.eniac.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1732.json b/_data/chains/eip155-1732.json new file mode 100644 index 000000000000..4aea38c3bb0a --- /dev/null +++ b/_data/chains/eip155-1732.json @@ -0,0 +1,18 @@ +{ + "name": "Fuga Mainnet", + "chain": "Fuga", + "rpc": ["https://rpc.fuga.blue"], + "faucets": [], + "nativeCurrency": { + "name": "FUGA", + "symbol": "FUGA", + "decimals": 18 + }, + "infoURL": "https://fuga.one", + "shortName": "FUGA", + "chainId": 1732, + "networkId": 1732, + "slip44": 732, + "explorers": [], + "status": "incubating" +} diff --git a/_data/chains/eip155-1733.json b/_data/chains/eip155-1733.json new file mode 100644 index 000000000000..a485d68fd5a3 --- /dev/null +++ b/_data/chains/eip155-1733.json @@ -0,0 +1,18 @@ +{ + "name": "Fuga Testnet", + "chain": "Fuga", + "rpc": ["https://rpc-testnet.fuga.blue"], + "faucets": [], + "nativeCurrency": { + "name": "FUGA", + "symbol": "FUGA", + "decimals": 18 + }, + "infoURL": "https://fuga.one", + "shortName": "FUGA_T", + "chainId": 1733, + "networkId": 1733, + "slip44": 1, + "explorers": [], + "status": "incubating" +} diff --git a/_data/chains/eip155-1734.json b/_data/chains/eip155-1734.json new file mode 100644 index 000000000000..aa8cd2070c24 --- /dev/null +++ b/_data/chains/eip155-1734.json @@ -0,0 +1,18 @@ +{ + "name": "Fuga Develop", + "chain": "Fuga", + "rpc": ["https://rpc-develop.fuga.blue"], + "faucets": [], + "nativeCurrency": { + "name": "FUGA", + "symbol": "FUGA", + "decimals": 18 + }, + "infoURL": "https://fuga.one", + "shortName": "FUGA_D", + "chainId": 1734, + "networkId": 1734, + "slip44": 1, + "explorers": [], + "status": "incubating" +} diff --git a/_data/chains/eip155-175.json b/_data/chains/eip155-175.json new file mode 100644 index 000000000000..56142a290ca0 --- /dev/null +++ b/_data/chains/eip155-175.json @@ -0,0 +1,17 @@ +{ + "name": "OTC", + "chain": "OTC", + "faucets": [], + "icon": "otc", + "rpc": ["https://rpc.otc.run", "wss://rpc.otc.run"], + "nativeCurrency": { + "name": "OTC", + "symbol": "OTC", + "decimals": 18 + }, + "infoURL": "https://otc.network", + "shortName": "OTC", + "chainId": 175, + "networkId": 175, + "slip44": 511 +} diff --git a/_data/chains/eip155-175177.json b/_data/chains/eip155-175177.json new file mode 100644 index 000000000000..b3c2e8e784f2 --- /dev/null +++ b/_data/chains/eip155-175177.json @@ -0,0 +1,24 @@ +{ + "name": "Chronicle - Lit Protocol Testnet", + "chain": "LPC", + "icon": "lit", + "rpc": ["https://chain-rpc.litprotocol.com/http"], + "faucets": ["https://faucet.litprotocol.com"], + "nativeCurrency": { + "name": "Test LIT", + "symbol": "tstLIT", + "decimals": 18 + }, + "infoURL": "https://developer.litprotocol.com/v3/network/rollup", + "shortName": "lpc", + "chainId": 175177, + "networkId": 175177, + "explorers": [ + { + "name": "Lit Chronicle Explorer", + "url": "https://chain.litprotocol.com", + "icon": "lit", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-175188.json b/_data/chains/eip155-175188.json new file mode 100644 index 000000000000..dc6f0f9739d6 --- /dev/null +++ b/_data/chains/eip155-175188.json @@ -0,0 +1,24 @@ +{ + "name": "Chronicle Yellowstone - Lit Protocol Testnet", + "chain": "LPY", + "icon": "lit", + "rpc": ["https://yellowstone-rpc.litprotocol.com"], + "faucets": ["https://developer.litprotocol.com/support/intro"], + "nativeCurrency": { + "name": "Test LPX", + "symbol": "tstLPX", + "decimals": 18 + }, + "infoURL": "https://litprotocol.com", + "shortName": "lpy", + "chainId": 175188, + "networkId": 175188, + "explorers": [ + { + "name": "Lit Chronicle Yellowstone Explorer", + "url": "https://yellowstone-explorer.litprotocol.com", + "icon": "lit", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-175190.json b/_data/chains/eip155-175190.json new file mode 100644 index 000000000000..7b153a2cc0c3 --- /dev/null +++ b/_data/chains/eip155-175190.json @@ -0,0 +1,24 @@ +{ + "name": "Chronicle Loa - Lit Protocol Testnet", + "chain": "LPL", + "icon": "lit", + "rpc": ["https://loa-rpc.litprotocol.com"], + "faucets": ["https://developer.litprotocol.com/support/intro"], + "nativeCurrency": { + "name": "Test Lit", + "symbol": "tLit", + "decimals": 18 + }, + "infoURL": "https://litprotocol.com", + "shortName": "lpl", + "chainId": 175190, + "networkId": 175190, + "explorers": [ + { + "name": "Lit Chronicle Loa Explorer", + "url": "https://loa-explorer.litprotocol.com", + "icon": "lit", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-177.json b/_data/chains/eip155-177.json new file mode 100644 index 000000000000..af0ad2010219 --- /dev/null +++ b/_data/chains/eip155-177.json @@ -0,0 +1,34 @@ +{ + "name": "HashKey Chain", + "title": "HashKey Chain", + "chain": "HashKey Chain", + "rpc": ["https://mainnet.hsk.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "HashKey EcoPoints", + "symbol": "HSK", + "decimals": 18 + }, + "infoURL": "https://hsk.xyz", + "shortName": "hsk", + "chainId": 177, + "networkId": 177, + "explorers": [ + { + "name": "blockscout", + "url": "https://hashkey.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://explorer.hsk.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + } +} diff --git a/_data/chains/eip155-17735.json b/_data/chains/eip155-17735.json new file mode 100644 index 000000000000..1120dcb9785a --- /dev/null +++ b/_data/chains/eip155-17735.json @@ -0,0 +1,23 @@ +{ + "name": "Esports Chain", + "chain": "ESPT", + "icon": "esports", + "rpc": ["https://esportsblock.org/rpc/"], + "faucets": [], + "nativeCurrency": { + "name": "Esport Token", + "symbol": "ESPT", + "decimals": 18 + }, + "infoURL": "https://esportsblock.org", + "shortName": "Esports", + "chainId": 17735, + "networkId": 17735, + "explorers": [ + { + "name": "esportsblock_explorer", + "url": "https://esportsblock.org/explorer", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-17777.json b/_data/chains/eip155-17777.json index b72a3cdd8b12..1bb60b25d64d 100644 --- a/_data/chains/eip155-17777.json +++ b/_data/chains/eip155-17777.json @@ -19,13 +19,5 @@ "url": "https://explorer.evm.eosnetwork.com", "standard": "EIP3091" } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { "url": "https://bridge.evm.eosnetwork.com" }, - { "url": "https://app.multichain.org" } - ] - } + ] } diff --git a/_data/chains/eip155-178.json b/_data/chains/eip155-178.json new file mode 100644 index 000000000000..00b1e6084f4f --- /dev/null +++ b/_data/chains/eip155-178.json @@ -0,0 +1,25 @@ +{ + "name": "Abey Testnet", + "chain": "Abey", + "rpc": ["https://testrpc.abeychain.com"], + "features": [{ "name": "EIP155" }], + "faucets": ["https://testnet-faucet.abeychain.com"], + "nativeCurrency": { + "name": "ABEY", + "symbol": "tABEY", + "decimals": 18 + }, + "infoURL": "https://abey.com", + "shortName": "abeyt", + "chainId": 178, + "networkId": 178, + "icon": "abey", + "explorers": [ + { + "name": "abeyscan-testnet", + "url": "https://testnet.abeyscan.com", + "icon": "abey", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1789.json b/_data/chains/eip155-1789.json index 4710bd8f5d0c..5a73bf8b1b9d 100644 --- a/_data/chains/eip155-1789.json +++ b/_data/chains/eip155-1789.json @@ -25,7 +25,7 @@ "parent": { "type": "L2", "chain": "eip155-1", - "bridges": [{ "url": "https://portral.zkbase.app/" }] + "bridges": [{ "url": "https://portal.zkbase.app/" }] }, "redFlags": ["reusedChainId"] } diff --git a/_data/chains/eip155-179.json b/_data/chains/eip155-179.json new file mode 100644 index 000000000000..88c59cbd606d --- /dev/null +++ b/_data/chains/eip155-179.json @@ -0,0 +1,25 @@ +{ + "name": "Abey Mainnet", + "chain": "Abey", + "rpc": ["https://rpc.abeychain.com"], + "features": [{ "name": "EIP155" }], + "faucets": [], + "nativeCurrency": { + "name": "ABEY", + "symbol": "ABEY", + "decimals": 18 + }, + "infoURL": "https://abey.com", + "shortName": "abey", + "chainId": 179, + "networkId": 179, + "icon": "abey", + "explorers": [ + { + "name": "abeyscan", + "url": "https://abeyscan.com", + "icon": "abey", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1802203764.json b/_data/chains/eip155-1802203764.json index e381fd6c8dcf..90af1822568f 100644 --- a/_data/chains/eip155-1802203764.json +++ b/_data/chains/eip155-1802203764.json @@ -1,8 +1,8 @@ { - "name": "Kakarot Sepolia", + "name": "Kakarot Sepolia (Deprecated)", "chain": "ETH", "icon": "kakarot", - "rpc": ["https://sepolia-rpc.kakarot.org"], + "rpc": [], "faucets": [], "nativeCurrency": { "name": "Ether", diff --git a/_data/chains/eip155-18071918.json b/_data/chains/eip155-18071918.json new file mode 100644 index 000000000000..263a4422884c --- /dev/null +++ b/_data/chains/eip155-18071918.json @@ -0,0 +1,24 @@ +{ + "name": "Mande Network Mainnet", + "chain": "Mande", + "rpc": ["https://mande-mainnet.public.blastapi.io"], + "faucets": [], + "nativeCurrency": { + "name": "Mand", + "symbol": "MAND", + "decimals": 18 + }, + "infoURL": "https://mande.network/", + "shortName": "Mande", + "chainId": 18071918, + "networkId": 18071918, + "icon": "mande", + "explorers": [ + { + "name": "FYI", + "url": "https://dym.fyi/r/mande", + "icon": "fyi", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-181.json b/_data/chains/eip155-181.json new file mode 100644 index 000000000000..d58dc3ad9a16 --- /dev/null +++ b/_data/chains/eip155-181.json @@ -0,0 +1,22 @@ +{ + "name": "Waterfall Network", + "chain": "Waterfall Network", + "rpc": ["https://rpc.waterfall.network/"], + "faucets": [], + "nativeCurrency": { + "name": "WATER", + "symbol": "WATER", + "decimals": 18 + }, + "features": [ + { + "name": "EIP1559" + } + ], + "infoURL": "https://waterfall.network", + "shortName": "water", + "chainId": 181, + "networkId": 181, + "icon": "waterfall-main", + "explorers": [] +} diff --git a/_data/chains/eip155-1811.json b/_data/chains/eip155-1811.json new file mode 100644 index 000000000000..8a717ad27ea3 --- /dev/null +++ b/_data/chains/eip155-1811.json @@ -0,0 +1,24 @@ +{ + "name": "Lif3 Chain Testnet", + "chain": "lif3chain", + "rpc": ["https://testnet-evm.lif3.com"], + "features": [{ "name": "EIP155" }], + "faucets": [], + "nativeCurrency": { + "name": "LIF3", + "symbol": "LIF3", + "decimals": 18 + }, + "infoURL": "https://docs.lif3.com/", + "shortName": "lif3-testnet", + "icon": "lif3", + "chainId": 1811, + "networkId": 1811, + "explorers": [ + { + "name": "lif3scout", + "url": "https://testnet.lif3scout.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-182.json b/_data/chains/eip155-182.json new file mode 100644 index 000000000000..f0de57066b4f --- /dev/null +++ b/_data/chains/eip155-182.json @@ -0,0 +1,33 @@ +{ + "name": "IOST Mainnet", + "chain": "iost", + "rpc": ["https://l2-mainnet.iost.io", "wss://l2-mainnet.iost.io"], + "faucets": [], + "nativeCurrency": { + "name": "BNB Chain Native Token", + "symbol": "BNB", + "decimals": 18 + }, + "infoURL": "https://iost.io", + "shortName": "iost", + "chainId": 182, + "networkId": 182, + "icon": "bnbchain", + "slip44": 714, + "explorers": [ + { + "name": "IOSTscan", + "url": "https://l2-scan.iost.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-56", + "bridges": [ + { + "url": "https://l2-bridge.iost.io" + } + ] + } +} diff --git a/_data/chains/eip155-1829.json b/_data/chains/eip155-1829.json new file mode 100644 index 000000000000..8e344859ce1d --- /dev/null +++ b/_data/chains/eip155-1829.json @@ -0,0 +1,32 @@ +{ + "name": "PlayBlock", + "chain": "playblock", + "rpc": ["https://rpc.playblock.io", "wss://ws.playblock.io"], + "faucets": [], + "nativeCurrency": { + "name": "PlayBlock", + "symbol": "PBG", + "decimals": 18 + }, + "infoURL": "https://www.playnance.com", + "shortName": "playblock", + "chainId": 1829, + "slip44": 60, + "networkId": 1829, + "explorers": [ + { + "name": "PlayBlock", + "url": "https://explorer.playblock.io", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [ + { + "url": "https://bridge.gelato.network/bridge/playblock" + } + ] + } +} diff --git a/_data/chains/eip155-183.json b/_data/chains/eip155-183.json new file mode 100644 index 000000000000..50739923c9bf --- /dev/null +++ b/_data/chains/eip155-183.json @@ -0,0 +1,23 @@ +{ + "name": "Ethernity", + "chain": "Ethernity", + "rpc": ["https://mainnet.ethernitychain.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "ethernity", + "infoURL": "https://www.ethernity.io", + "shortName": "ethernity-mainnet", + "chainId": 183, + "networkId": 183, + "explorers": [ + { + "name": "Ethernity Explorer", + "url": "https://ernscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1833.json b/_data/chains/eip155-1833.json new file mode 100644 index 000000000000..ba832c67dd40 --- /dev/null +++ b/_data/chains/eip155-1833.json @@ -0,0 +1,37 @@ +{ + "name": "Verify testnet", + "title": "Verify Testnet", + "chain": "verify-testnet", + "rpc": [ + "https://rpc.verify-testnet.gelato.digital", + "wss://ws.verify-testnet.gelato.digital" + ], + "nativeCurrency": { + "name": "Matic", + "symbol": "MATIC", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/verify-testnet", + "faucets": [], + "shortName": "verify-testnet", + "chainId": 1833, + "networkId": 1833, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://verify-testnet.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-80002", + "bridges": [ + { + "url": "https://bridge.gelato.network/bridge/verify-testnet" + } + ] + } +} diff --git a/_data/chains/eip155-184.json b/_data/chains/eip155-184.json new file mode 100644 index 000000000000..7970005cbe56 --- /dev/null +++ b/_data/chains/eip155-184.json @@ -0,0 +1,23 @@ +{ + "name": "Dojima Testnet", + "chain": "Dojima", + "rpc": ["https://rpc-test-d11k.dojima.network"], + "faucets": [], + "nativeCurrency": { + "name": "Dojima", + "symbol": "DOJ", + "decimals": 18 + }, + "icon": "dojima", + "infoURL": "https://www.dojima.network/", + "shortName": "dojtestnet", + "chainId": 184, + "networkId": 184, + "explorers": [ + { + "name": "Dojima Testnet Explorer", + "url": "https://explorer-test.dojima.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1848.json b/_data/chains/eip155-1848.json new file mode 100644 index 000000000000..5b61b05891b9 --- /dev/null +++ b/_data/chains/eip155-1848.json @@ -0,0 +1,42 @@ +{ + "name": "Swisstronik Mainnet", + "chain": "SWTR", + "rpc": [ + "https://json-rpc.mainnet.swisstronik.com/unencrypted/", + "https://json-rpc.mainnet.swisstronik.com", + "wss://ws-rpc.mainnet.swisstronik.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Swisstronik", + "symbol": "SWTR", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.swisstronik.com", + "shortName": "swtr", + "chainId": 1848, + "networkId": 1848, + "slip44": 1, + "icon": "swisstronik", + "explorers": [ + { + "name": "Swisstronik EVM Explorer", + "url": "https://explorer-evm.mainnet.swisstronik.com", + "standard": "EIP3091", + "icon": "ethernal" + }, + { + "name": "Swisstronik Cosmos Explorer", + "url": "https://explorer-cosmos.mainnet.swisstronik.com/swisstronik", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1853.json b/_data/chains/eip155-1853.json new file mode 100644 index 000000000000..76e0be5cd680 --- /dev/null +++ b/_data/chains/eip155-1853.json @@ -0,0 +1,28 @@ +{ + "name": "HighOctane Subnet", + "chain": "HighOctane Subnet", + "rpc": [ + "https://subnets.avax.network/highoctane/mainnet/rpc", + "wss://subnets.avax.network/highoctane/mainnet/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "HighOctane", + "symbol": "HO", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://subnets.avax.network/highoctane/details", + "shortName": "HighOctane", + "chainId": 1853, + "networkId": 1853, + "icon": "highOctane", + "explorers": [ + { + "name": "HighOctane Subnet Explorer", + "url": "https://subnets.avax.network/highoctane", + "icon": "highOctane", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1868.json b/_data/chains/eip155-1868.json new file mode 100644 index 000000000000..f3abc68237d1 --- /dev/null +++ b/_data/chains/eip155-1868.json @@ -0,0 +1,40 @@ +{ + "name": "Soneium", + "shortName": "soneium", + "title": "Soneium mainnet", + "chain": "ETH", + "rpc": ["https://rpc.soneium.org"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://soneium.org", + "chainId": 1868, + "networkId": 1868, + "status": "active", + "explorers": [ + { + "name": "blockscout", + "url": "https://soneium.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "OKLink", + "url": "https://www.okx.com/web3/explorer/soneium", + "standard": "EIP3091" + }, + { + "name": "SlamVision", + "url": "https://soneium.slam.vision", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://superbridge.app/soneium" }] + } +} diff --git a/_data/chains/eip155-187.json b/_data/chains/eip155-187.json new file mode 100644 index 000000000000..8aa49895716a --- /dev/null +++ b/_data/chains/eip155-187.json @@ -0,0 +1,23 @@ +{ + "name": "Dojima", + "chain": "Dojima", + "rpc": ["https://rpc-d11k.dojima.network"], + "faucets": [], + "nativeCurrency": { + "name": "Dojima", + "symbol": "DOJ", + "decimals": 18 + }, + "icon": "dojima", + "infoURL": "https://www.dojima.network/", + "shortName": "dojima", + "chainId": 187, + "networkId": 187, + "explorers": [ + { + "name": "Dojima Explorer", + "url": "https://explorer.dojima.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-18880.json b/_data/chains/eip155-18880.json new file mode 100644 index 000000000000..f3aa617098f4 --- /dev/null +++ b/_data/chains/eip155-18880.json @@ -0,0 +1,23 @@ +{ + "name": "EXPchain Testnet", + "chain": "EXPCHAIN", + "rpc": ["https://rpc1-testnet.expchain.ai"], + "faucets": [], + "nativeCurrency": { + "name": "tZKJ", + "symbol": "tZKJ", + "decimals": 18 + }, + "infoURL": "https://expchain.ai", + "shortName": "expchain", + "chainId": 18880, + "networkId": 18880, + "icon": "expchain", + "explorers": [ + { + "name": "EXPchain Testnet Explorer", + "url": "https://blockscout-testnet.expchain.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-18881.json b/_data/chains/eip155-18881.json new file mode 100644 index 000000000000..72b7be766a6a --- /dev/null +++ b/_data/chains/eip155-18881.json @@ -0,0 +1,24 @@ +{ + "name": "Ultra EVM Network Testnet", + "chain": "Ultra", + "icon": "ultra", + "rpc": ["https://evm.test.ultra.eosusa.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ultra Token", + "symbol": "UOS", + "decimals": 18 + }, + "infoURL": "https://ultra.io/", + "shortName": "ultra-testnet", + "chainId": 18881, + "networkId": 18881, + "slip44": 1, + "explorers": [ + { + "name": "Ultra EVM Testnet Explorer", + "url": "https://evmexplorer.testnet.ultra.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1899.json b/_data/chains/eip155-1899.json new file mode 100644 index 000000000000..bd242400650f --- /dev/null +++ b/_data/chains/eip155-1899.json @@ -0,0 +1,24 @@ +{ + "name": "ReDeFi Layer 2", + "chain": "ReDeFi", + "icon": "redefi", + "rpc": ["https://layer2.redefi.world"], + "faucets": [], + "nativeCurrency": { + "name": "RED", + "symbol": "RED", + "decimals": 18 + }, + "infoURL": "https://redefi.world", + "shortName": "red", + "chainId": 1899, + "networkId": 1899, + "slip44": 1899, + "explorers": [ + { + "name": "ReDeFi Scan", + "url": "https://scanlayer2.redefi.world", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-19.json b/_data/chains/eip155-19.json index 6cd271c45f04..92a7effe2a85 100644 --- a/_data/chains/eip155-19.json +++ b/_data/chains/eip155-19.json @@ -7,7 +7,7 @@ "https://01-gravelines-006-01.rpc.tatum.io/ext/bc/C/rpc", "https://01-vinthill-006-02.rpc.tatum.io/ext/bc/C/rpc", "https://02-tokyo-006-03.rpc.tatum.io/ext/bc/C/rpc", - "https://rpc.ftso.au/songbird", + "https://rpc.au.cc/songbird", "https://songbird.enosys.global/ext/C/rpc", "https://songbird.solidifi.app/ext/C/rpc" ], @@ -29,7 +29,7 @@ "standard": "EIP3091" }, { - "name": "flarescan", + "name": "Routescan", "url": "https://songbird.flarescan.com", "standard": "EIP3091" } diff --git a/_data/chains/eip155-190.json b/_data/chains/eip155-190.json new file mode 100644 index 000000000000..775425241073 --- /dev/null +++ b/_data/chains/eip155-190.json @@ -0,0 +1,22 @@ +{ + "name": "CMDAO BBQ Chain", + "chain": "Underchain 1", + "rpc": ["https://bbqchain-rpc.commudao.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "CommuDAO", + "symbol": "CMD", + "decimals": 18 + }, + "infoURL": "https://commudao.xyz", + "shortName": "cmdao-bbq-chain", + "chainId": 190, + "networkId": 190, + "explorers": [ + { + "name": "bbqchain-explorer", + "url": "https://bbqchain-exp.commudao.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1903648807.json b/_data/chains/eip155-1903648807.json new file mode 100644 index 000000000000..5674d2d710dd --- /dev/null +++ b/_data/chains/eip155-1903648807.json @@ -0,0 +1,31 @@ +{ + "name": "Gemuchain Testnet", + "chain": "Gemuchain", + "rpc": ["https://gemutest-rpc.gemuchain.io"], + "faucets": ["https://faucet.gemuchain.io/"], + "nativeCurrency": { + "name": "Gemuchain", + "symbol": "GEMU", + "decimals": 18 + }, + "infoURL": "https://gemuchain.io/", + "shortName": "Gemuchain", + "chainId": 1903648807, + "networkId": 1903648807, + "explorers": [ + { + "name": "Gemuchain Explorer (Blockscout)", + "url": "https://gemutest-explorer.gemuchain.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://gemutest-bridge.gemuchain.io/login" + } + ] + } +} diff --git a/_data/chains/eip155-19077.json b/_data/chains/eip155-19077.json new file mode 100644 index 000000000000..dabcadebd27d --- /dev/null +++ b/_data/chains/eip155-19077.json @@ -0,0 +1,28 @@ +{ + "name": "BlockX Atlantis Testnet", + "chain": "blockx", + "rpc": ["https://atlantis-web3.blockxnet.com"], + "faucets": ["https://ping.blockxnet.com/blockx-atlantis-testnet/faucet"], + "nativeCurrency": { + "name": "BCX", + "symbol": "BCX", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.blockxnet.com/", + "shortName": "tbcx", + "chainId": 19077, + "networkId": 19077, + "explorers": [ + { + "name": "BlockX EVM Explorer (Blockscout)", + "url": "https://testnet-explorer.blockxnet.com", + "standard": "EIP3091" + }, + { + "name": "BlockX Cosmos Explorer (Ping)", + "url": "https://ping.blockxnet.com/blockx-atlantis-testnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-19180.json b/_data/chains/eip155-19180.json new file mode 100644 index 000000000000..8385430d7bc3 --- /dev/null +++ b/_data/chains/eip155-19180.json @@ -0,0 +1,24 @@ +{ + "name": "LocaChain Mainnet", + "chain": "LocaChain", + "rpc": ["https://tgrpntwm.locachain.io"], + "faucets": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "nativeCurrency": { + "name": "LocaCoin", + "symbol": "LCC", + "decimals": 18 + }, + "infoURL": "https://locachain.io", + "shortName": "locachain", + "chainId": 19180, + "networkId": 19180, + "icon": "locacoin", + "explorers": [ + { + "name": "Locachain Explorer", + "url": "https://explorer.locachain.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-19191.json b/_data/chains/eip155-19191.json new file mode 100644 index 000000000000..4a1da14d5c1e --- /dev/null +++ b/_data/chains/eip155-19191.json @@ -0,0 +1,28 @@ +{ + "name": "BlockX Mainnet", + "chain": "blockx", + "rpc": ["https://web3.blockxnet.com"], + "faucets": ["https://ping.blockxnet.com/blockx/faucet"], + "nativeCurrency": { + "name": "BCX", + "symbol": "BCX", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.blockxnet.com/", + "shortName": "bcx", + "chainId": 19191, + "networkId": 19191, + "explorers": [ + { + "name": "BlockX EVM Explorer (Blockscout)", + "url": "https://explorer.blockxnet.com", + "standard": "EIP3091" + }, + { + "name": "BlockX Cosmos Explorer (Ping)", + "url": "https://ping.blockxnet.com/blockx", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-191919.json b/_data/chains/eip155-191919.json new file mode 100644 index 000000000000..0c99385e1255 --- /dev/null +++ b/_data/chains/eip155-191919.json @@ -0,0 +1,24 @@ +{ + "name": "Altblockscan Mainnet", + "chain": "ALTB", + "rpc": ["https://rpc.altblockscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Altblockscan", + "symbol": "ALTB", + "decimals": 18 + }, + "infoURL": "https://altblockscan.com", + "shortName": "altb", + "chainId": 191919, + "networkId": 191919, + "icon": "altb", + "explorers": [ + { + "name": "altblockscan", + "url": "https://scan.altblockscan.com", + "icon": "altb", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1923.json b/_data/chains/eip155-1923.json new file mode 100644 index 000000000000..765e261a8e77 --- /dev/null +++ b/_data/chains/eip155-1923.json @@ -0,0 +1,23 @@ +{ + "name": "Swellchain", + "chain": "ETH", + "rpc": ["https://swell-mainnet.alt.technology", "https://rpc.ankr.com/swell"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://app.swellnetwork.io/layer2/swell-l2", + "shortName": "swellchain", + "chainId": 1923, + "networkId": 1923, + "icon": "swell", + "explorers": [ + { + "name": "Swellchain Explorer", + "url": "https://explorer.swellnetwork.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1924.json b/_data/chains/eip155-1924.json new file mode 100644 index 000000000000..2d19635cf755 --- /dev/null +++ b/_data/chains/eip155-1924.json @@ -0,0 +1,27 @@ +{ + "name": "Swellchain Testnet", + "chain": "ETH", + "rpc": [ + "https://swell-testnet.alt.technology", + "https://rpc.ankr.com/swell-testnet" + ], + + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://app.swellnetwork.io/layer2/swell-l2", + "shortName": "swellchain-sep", + "chainId": 1924, + "networkId": 1924, + "icon": "swell", + "explorers": [ + { + "name": "Swellchain Testnet Explorer", + "url": "https://swell-testnet-explorer.alt.technology", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1927.json b/_data/chains/eip155-1927.json new file mode 100644 index 000000000000..eac45278f4a0 --- /dev/null +++ b/_data/chains/eip155-1927.json @@ -0,0 +1,27 @@ +{ + "name": "Arvix Testnet", + "chain": "Arvix", + "rpc": [ + "https://rpc-testnet-market.arvix.network", + "https://rpc-dev-testnet.arvix.network" + ], + "faucets": ["https://claim-faucet.arvix.network"], + "nativeCurrency": { + "name": "Arvix Testnet Native Token", + "symbol": "tARV", + "decimals": 18 + }, + "infoURL": "https://arvix.network", + "shortName": "arvix", + "chainId": 1927, + "networkId": 1927, + "icon": "arvix", + "explorers": [ + { + "name": "Arvix Explorer Testnet", + "url": "https://testnet.arvixscan.com", + "standard": "EIP3091", + "icon": "arvix" + } + ] +} diff --git a/_data/chains/eip155-192940.json b/_data/chains/eip155-192940.json index 33e5e00d992c..dda6166fa428 100644 --- a/_data/chains/eip155-192940.json +++ b/_data/chains/eip155-192940.json @@ -7,8 +7,8 @@ ], "faucets": [], "nativeCurrency": { - "name": "FHE", - "symbol": "FHE", + "name": "Ether", + "symbol": "ETH", "decimals": 18 }, "features": [{ "name": "EIP155" }], diff --git a/_data/chains/eip155-193939.json b/_data/chains/eip155-193939.json new file mode 100644 index 000000000000..617567d1aae7 --- /dev/null +++ b/_data/chains/eip155-193939.json @@ -0,0 +1,22 @@ +{ + "name": "R0AR Chain", + "chain": "R0AR Chain", + "rpc": ["https://rpc-r0ar.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://r0arscan.io", + "shortName": "R0AR-Chain", + "chainId": 193939, + "networkId": 193939, + "explorers": [ + { + "name": "tracehawk", + "url": "https://r0arscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-194.json b/_data/chains/eip155-194.json new file mode 100644 index 000000000000..75f52c99b280 --- /dev/null +++ b/_data/chains/eip155-194.json @@ -0,0 +1,24 @@ +{ + "name": "firachain", + "chain": "FIR", + "icon": "firachainIcon", + "rpc": ["https://rpc.firachain.com"], + "faucets": [], + "nativeCurrency": { + "name": "firachain", + "symbol": "FIR", + "decimals": 18 + }, + "infoURL": "https://firachain.com", + "shortName": "FIR", + "chainId": 194, + "networkId": 194, + "status": "active", + "explorers": [ + { + "name": "FiraChain Explorer", + "url": "https://block.firachain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1946.json b/_data/chains/eip155-1946.json new file mode 100644 index 000000000000..07e8910174fc --- /dev/null +++ b/_data/chains/eip155-1946.json @@ -0,0 +1,33 @@ +{ + "name": "Soneium Testnet Minato", + "shortName": "soneium-minato", + "title": "Soneium Testnet Minato", + "chain": "ETH", + "icon": "minato", + "rpc": ["https://rpc.minato.soneium.org"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://soneium.org", + "chainId": 1946, + "networkId": 1946, + "explorers": [ + { + "name": "Blockscout Minato explorer", + "url": "https://soneium-minato.blockscout.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.soneium.org/testnet" + } + ] + } +} diff --git a/_data/chains/eip155-1949.json b/_data/chains/eip155-1949.json new file mode 100644 index 000000000000..376c1c8aa2c5 --- /dev/null +++ b/_data/chains/eip155-1949.json @@ -0,0 +1,23 @@ +{ + "name": "Bionix Testnet", + "chain": "Bionix", + "rpc": ["https://testnet-chain.bionixnetwork.com"], + "faucets": [], + "nativeCurrency": { + "name": "Bionix", + "symbol": "tBIO", + "decimals": 18 + }, + "icon": "bionix", + "infoURL": "https://bionixnetwork.com", + "shortName": "tbio", + "chainId": 1949, + "networkId": 1949, + "explorers": [ + { + "name": "Bionix Testnet Explorer", + "url": "https://testnet.bionixnetwork.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-19515.json b/_data/chains/eip155-19515.json new file mode 100644 index 000000000000..998fdd3d11d4 --- /dev/null +++ b/_data/chains/eip155-19515.json @@ -0,0 +1,23 @@ +{ + "name": "SEC Testnet", + "chain": "SEC", + "icon": "secIcon", + "rpc": ["https://testnet-rpc.secexplorer.io"], + "faucets": ["https://faucet.secexplorer.io"], + "nativeCurrency": { + "name": "SEP", + "symbol": "SEP", + "decimals": 18 + }, + "infoURL": "https://smartenergychain.org", + "shortName": "SEPt", + "chainId": 19515, + "networkId": 19515, + "explorers": [ + { + "name": "SEC Testnet Explorer", + "url": "https://testnet.secexplorer.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-19516.json b/_data/chains/eip155-19516.json new file mode 100644 index 000000000000..e628f2980aba --- /dev/null +++ b/_data/chains/eip155-19516.json @@ -0,0 +1,23 @@ +{ + "name": "SEC Mainnet", + "chain": "SEC", + "icon": "secIcon", + "rpc": ["https://rpc.secexplorer.io"], + "faucets": [], + "nativeCurrency": { + "name": "SEP", + "symbol": "SEP", + "decimals": 18 + }, + "infoURL": "https://smartenergychain.org", + "shortName": "SECm", + "chainId": 19516, + "networkId": 19516, + "explorers": [ + { + "name": "SEC Mainnet Explorer", + "url": "https://secexplorer.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1952959480.json b/_data/chains/eip155-1952959480.json new file mode 100644 index 000000000000..d7a98f2e8479 --- /dev/null +++ b/_data/chains/eip155-1952959480.json @@ -0,0 +1,35 @@ +{ + "name": "Lumia Testnet", + "shortName": "lumiatestnet", + "title": "Lumia Testnet", + "chain": "ETH", + "icon": "lumia", + "rpc": ["https://testnet-rpc.lumia.org"], + "faucets": ["https://testnet-faucet.lumia.org"], + "nativeCurrency": { + "name": "Lumia", + "symbol": "LUMIA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://lumia.org", + "chainId": 1952959480, + "networkId": 1952959480, + "explorers": [ + { + "name": "Lumia Testnet Explorer", + "url": "https://testnet-explorer.lumia.org", + "icon": "lumia", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://testnet-bridge.lumia.org" + } + ] + } +} diff --git a/_data/chains/eip155-1953.json b/_data/chains/eip155-1953.json index 85c0181de767..8f374bfaac25 100644 --- a/_data/chains/eip155-1953.json +++ b/_data/chains/eip155-1953.json @@ -1,10 +1,7 @@ { "name": "Selendra Network Testnet", "chain": "tSEL", - "rpc": [ - "https://rpc0-testnet.selendra.org", - "https://rpc1-testnet.selendra.org" - ], + "rpc": ["https://rpc-testnet.selendra.org"], "faucets": [], "nativeCurrency": { "name": "Selendra", @@ -15,5 +12,12 @@ "shortName": "tSEL", "chainId": 1953, "networkId": 1953, - "icon": "selendra" + "icon": "selendra", + "explorers": [ + { + "name": "Selendra Portal", + "url": "https://explorer.selendra.org", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-19546.json b/_data/chains/eip155-19546.json new file mode 100644 index 000000000000..dcf62e3f3ead --- /dev/null +++ b/_data/chains/eip155-19546.json @@ -0,0 +1,23 @@ +{ + "name": "Zytron Linea Testnet", + "chain": "ETH", + "icon": "zytron", + "rpc": ["https://linea-testnet-zytron.zypher.game/"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zytron.zypher.network/", + "shortName": "zytron-linea-testnet", + "chainId": 19546, + "networkId": 19546, + "explorers": [ + { + "name": "blockscout", + "url": "https://linea-testnet-zytron-blockscout.zypher.game", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1961.json b/_data/chains/eip155-1961.json index 942481ea74a5..1b59d4a511bd 100644 --- a/_data/chains/eip155-1961.json +++ b/_data/chains/eip155-1961.json @@ -1,7 +1,7 @@ { "name": "Selendra Network Mainnet", "chain": "SEL", - "rpc": ["https://rpc0.selendra.org", "https://rpc1.selendra.org"], + "rpc": ["https://rpc.selendra.org", "https://rpc2.selendra.org"], "faucets": [], "nativeCurrency": { "name": "Selendra", @@ -15,8 +15,8 @@ "icon": "selendra", "explorers": [ { - "name": "Selendra Scan", - "url": "https://scan.selendra.org", + "name": "Selendra Portal", + "url": "https://explorer.selendra.org", "standard": "none" } ] diff --git a/_data/chains/eip155-1962.json b/_data/chains/eip155-1962.json new file mode 100644 index 000000000000..66785277c43d --- /dev/null +++ b/_data/chains/eip155-1962.json @@ -0,0 +1,23 @@ +{ + "name": "T-Rex Testnet", + "chain": "T-Rex", + "rpc": ["https://testnetrpc.trex.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://trex.xyz/", + "shortName": "TREX", + "chainId": 1962, + "networkId": 1962, + "icon": "trex", + "explorers": [ + { + "name": "T-Rex Testnet explorer", + "url": "https://testnet.trex.xyz", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-197710212030.json b/_data/chains/eip155-197710212030.json index 4804841c1831..b8d7c83ee65d 100644 --- a/_data/chains/eip155-197710212030.json +++ b/_data/chains/eip155-197710212030.json @@ -15,8 +15,8 @@ "icon": "ntity", "explorers": [ { - "name": "Ntity Blockscout", - "url": "https://blockscout.ntity.io", + "name": "Ntity Explorer", + "url": "https://explorer.ntity.io", "icon": "ntity", "standard": "EIP3091" } diff --git a/_data/chains/eip155-197710212031.json b/_data/chains/eip155-197710212031.json index 09044d917bb1..0e4ad68b40a4 100644 --- a/_data/chains/eip155-197710212031.json +++ b/_data/chains/eip155-197710212031.json @@ -9,16 +9,16 @@ "decimals": 18 }, "infoURL": "https://ntity.io", - "shortName": "ntt-haradev", + "shortName": "haradev", "chainId": 197710212031, "networkId": 197710212031, "slip44": 1, - "icon": "ntity", + "icon": "haradev", "explorers": [ { - "name": "Ntity Haradev Blockscout", - "url": "https://blockscout.haradev.com", - "icon": "ntity", + "name": "Haradev Explorer", + "url": "https://explorer.haradev.com", + "icon": "haradev", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-19777.json b/_data/chains/eip155-19777.json new file mode 100644 index 000000000000..72262b661f66 --- /dev/null +++ b/_data/chains/eip155-19777.json @@ -0,0 +1,24 @@ +{ + "name": "Astra Sepolia", + "chain": "Astra Sepolia", + "icon": "astrasepolia", + "rpc": ["https://rpc-astra-9on2f72wzn.t.conduit.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Astra", + "symbol": "ATX", + "decimals": 18 + }, + "infoURL": "https://explorer-astra-9on2f72wzn.t.conduit.xyz", + "shortName": "astra-sepolia", + "chainId": 19777, + "networkId": 19777, + "slip44": 1, + "explorers": [ + { + "name": "Astra Sepolia Explorer", + "url": "https://explorer-astra-9on2f72wzn.t.conduit.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-19850818.json b/_data/chains/eip155-19850818.json new file mode 100644 index 000000000000..fe4fed606587 --- /dev/null +++ b/_data/chains/eip155-19850818.json @@ -0,0 +1,26 @@ +{ + "name": "DeepBrainChain Testnet", + "chain": "DeepBrainChain", + "rpc": ["https://rpc-testnet.dbcwallet.io"], + "faucets": [], + "nativeCurrency": { + "name": "DeepBrainChain", + "symbol": "tDBC", + "decimals": 18 + }, + "infoURL": "https://www.deepbrainchain.org", + "shortName": "tDBC", + "chainId": 19850818, + "icon": "dbc", + "networkId": 19850818, + "slip44": 1, + + "explorers": [ + { + "name": "DeepBrainChain Testnet", + "url": "https://testnet.dbcscan.io", + "icon": "dbc", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-19880818.json b/_data/chains/eip155-19880818.json new file mode 100644 index 000000000000..37d8f6ee96e7 --- /dev/null +++ b/_data/chains/eip155-19880818.json @@ -0,0 +1,26 @@ +{ + "name": "DeepBrainChain Mainnet", + "chain": "DeepBrainChain", + "rpc": ["https://rpc.dbcwallet.io"], + "faucets": [], + "nativeCurrency": { + "name": "DeepBrainChain", + "symbol": "DBC", + "decimals": 18 + }, + "infoURL": "https://www.deepbrainchain.org", + "shortName": "DBC", + "chainId": 19880818, + "networkId": 19880818, + "icon": "dbc", + "slip44": 1, + + "explorers": [ + { + "name": "DeepBrainChain Mainnet", + "url": "https://www.dbcscan.io", + "icon": "dbc", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1989.json b/_data/chains/eip155-1989.json new file mode 100644 index 000000000000..e7c9eec6533c --- /dev/null +++ b/_data/chains/eip155-1989.json @@ -0,0 +1,15 @@ +{ + "name": "Lydia Coin", + "chain": "LYDIA", + "rpc": ["https://rpc.lydiacoins.com"], + "faucets": [], + "nativeCurrency": { + "name": "Lydia Coin", + "symbol": "BSW", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/lydia-coin", + "shortName": "lydia", + "chainId": 1989, + "networkId": 1989 +} diff --git a/_data/chains/eip155-198989.json b/_data/chains/eip155-198989.json new file mode 100644 index 000000000000..492b504ec13a --- /dev/null +++ b/_data/chains/eip155-198989.json @@ -0,0 +1,15 @@ +{ + "name": "Lydia Coin Testnet", + "chain": "LYDIA-TESTNET", + "rpc": ["https://testnet-rpc.lydiacoins.com"], + "faucets": ["https://faucet.lydiacoins.com/"], + "nativeCurrency": { + "name": "Lydia Token", + "symbol": "BSW", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/lydia-coin-testnet", + "shortName": "lydia-testnet", + "chainId": 198989, + "networkId": 198989 +} diff --git a/_data/chains/eip155-199.json b/_data/chains/eip155-199.json index 032722603b43..bddf2c83867e 100644 --- a/_data/chains/eip155-199.json +++ b/_data/chains/eip155-199.json @@ -1,6 +1,7 @@ { "name": "BitTorrent Chain Mainnet", "chain": "BTTC", + "icon": "bttc", "rpc": [ "https://rpc.bt.io", "https://bittorrent.drpc.org", diff --git a/_data/chains/eip155-1992.json b/_data/chains/eip155-1992.json index 398ade17e85a..043d60426acf 100644 --- a/_data/chains/eip155-1992.json +++ b/_data/chains/eip155-1992.json @@ -22,11 +22,5 @@ "chainId": 1992, "networkId": 1992, "slip44": 60, - "explorers": [ - { - "name": "routescan", - "url": "https://explorer.hubble.exchange", - "standard": "EIP3091" - } - ] + "explorers": [] } diff --git a/_data/chains/eip155-1993.json b/_data/chains/eip155-1993.json new file mode 100644 index 000000000000..792926f7758c --- /dev/null +++ b/_data/chains/eip155-1993.json @@ -0,0 +1,23 @@ +{ + "name": "B3 Sepolia Testnet", + "chain": "B3 Sepolia Testnet", + "icon": "b3", + "rpc": ["https://sepolia.b3.fun"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://b3.fun", + "shortName": "b3-sepolia", + "chainId": 1993, + "networkId": 1993, + "explorers": [ + { + "name": "Blockscout", + "url": "https://sepolia.explorer.b3.fun", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1995.json b/_data/chains/eip155-1995.json index e20c8b6b627d..16422e9acdad 100644 --- a/_data/chains/eip155-1995.json +++ b/_data/chains/eip155-1995.json @@ -1,25 +1,22 @@ { "name": "edeXa Testnet", - "chain": "edeXa TestNetwork", - "rpc": [ - "https://testnet.edexa.network/rpc", - "https://io-dataseed1.testnet.edexa.io-market.com/rpc" - ], + "chain": "edeXa", + "rpc": ["https://rpc.testnet.edexa.network", "https://rpc.testnet.edexa.com"], "faucets": ["https://faucet.edexa.com/"], "nativeCurrency": { - "name": "EDEXA", - "symbol": "EDX", + "name": "edeXa", + "symbol": "tEDX", "decimals": 18 }, "infoURL": "https://edexa.network/", - "shortName": "edx", + "shortName": "edxt", "chainId": 1995, "networkId": 1995, "slip44": 1, "icon": "edexa", "explorers": [ { - "name": "edexa-testnet", + "name": "edexa-testnet-explorer", "url": "https://explorer.testnet.edexa.network", "standard": "EIP3091" } diff --git a/_data/chains/eip155-1997.json b/_data/chains/eip155-1997.json new file mode 100644 index 000000000000..3ff402a8e173 --- /dev/null +++ b/_data/chains/eip155-1997.json @@ -0,0 +1,24 @@ +{ + "name": "Kyoto", + "chain": "KYOTO", + "rpc": ["https://rpc.kyotochain.io"], + "faucets": [], + "nativeCurrency": { + "name": "Kyoto", + "symbol": "KYOTO", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://kyotoprotocol.io", + "shortName": "kyoto", + "chainId": 1997, + "networkId": 1997, + "slip44": 1, + "explorers": [ + { + "name": "Kyotoscan", + "url": "https://kyotoscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1998991.json b/_data/chains/eip155-1998991.json new file mode 100644 index 000000000000..8aa96e3cd8a8 --- /dev/null +++ b/_data/chains/eip155-1998991.json @@ -0,0 +1,22 @@ +{ + "name": "Xphere Testnet", + "chain": "Xphere Testnet", + "icon": "xphere", + "rpc": ["http://testnet.x-phere.com"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Xphere Testnet", + "symbol": "XPT", + "decimals": 18 + }, + "infoURL": "https://x-phere.com/", + "shortName": "xp-test", + "chainId": 1998991, + "networkId": 1998991, + "explorers": [] +} diff --git a/_data/chains/eip155-19991.json b/_data/chains/eip155-19991.json new file mode 100644 index 000000000000..767e9e3adbd7 --- /dev/null +++ b/_data/chains/eip155-19991.json @@ -0,0 +1,23 @@ +{ + "name": "Ultra EVM Network", + "chain": "Ultra", + "icon": "ultra", + "rpc": ["https://evm.ultra.eosusa.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ultra Token", + "symbol": "UOS", + "decimals": 18 + }, + "infoURL": "https://ultra.io", + "shortName": "ultra", + "chainId": 19991, + "networkId": 19991, + "explorers": [ + { + "name": "Ultra EVM Explorer", + "url": "https://evmexplorer.ultra.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-199991.json b/_data/chains/eip155-199991.json new file mode 100644 index 000000000000..0420c03bb3c5 --- /dev/null +++ b/_data/chains/eip155-199991.json @@ -0,0 +1,23 @@ +{ + "name": "MAZZE Testnet", + "chain": "MAZZE Testnet", + "icon": "mazze", + "rpc": ["https://testnet-rpc.mazze.io/"], + "faucets": ["https://faucet.mazze.io/"], + "nativeCurrency": { + "name": "MAZZE Testnet", + "symbol": "MAZZE", + "decimals": 18 + }, + "infoURL": "https://mazze.io/", + "shortName": "MAZZE", + "chainId": 199991, + "networkId": 199991, + "explorers": [ + { + "name": "MAZZE Testnet Explorer", + "url": "https://mazzescan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-200200.json b/_data/chains/eip155-200200.json new file mode 100644 index 000000000000..3eba9d0ea8f0 --- /dev/null +++ b/_data/chains/eip155-200200.json @@ -0,0 +1,28 @@ +{ + "name": "Zoo Mainnet", + "chain": "Zoo", + "icon": "zoo", + "rpc": ["https://api.zoo.network"], + "faucets": ["https://faucet.zoo-test.network"], + "nativeCurrency": { + "name": "Zoo", + "symbol": "ZOO", + "decimals": 18 + }, + "infoURL": "https://zoo.network", + "shortName": "zoo", + "chainId": 200200, + "networkId": 200200, + "explorers": [ + { + "name": "Zoo Network Explorer", + "url": "https://explore.zoo.network", + "standard": "EIP3091" + }, + { + "name": "Zoo Network Explorer", + "url": "https://explore.zoo-test.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2004.json b/_data/chains/eip155-2004.json new file mode 100644 index 000000000000..c139c8f0ef6b --- /dev/null +++ b/_data/chains/eip155-2004.json @@ -0,0 +1,23 @@ +{ + "name": "MetaLink Network", + "chain": "MetaLink", + "rpc": ["http://77.237.237.69:9933"], + "icon": "metaLink", + "faucets": [], + "shortName": "mtl", + "nativeCurrency": { + "name": "MetaLink", + "symbol": "MTL", + "decimals": 18 + }, + "infoURL": "http://totwo3.com:3000", + "chainId": 2004, + "networkId": 2004, + "explorers": [ + { + "name": "MetaScan", + "url": "http://twoto3.com:3000", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-20041.json b/_data/chains/eip155-20041.json new file mode 100644 index 000000000000..bd5bb6d3f77f --- /dev/null +++ b/_data/chains/eip155-20041.json @@ -0,0 +1,23 @@ +{ + "name": "Niza Chain Mainnet", + "chain": "NIZA", + "icon": "niza", + "rpc": ["https://nizascan.io/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Niza Global", + "symbol": "NIZA", + "decimals": 18 + }, + "infoURL": "https://niza.io", + "shortName": "niza", + "chainId": 20041, + "networkId": 20041, + "explorers": [ + { + "name": "NizaScan", + "url": "https://nizascan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-20073.json b/_data/chains/eip155-20073.json new file mode 100644 index 000000000000..854a1fc926c0 --- /dev/null +++ b/_data/chains/eip155-20073.json @@ -0,0 +1,23 @@ +{ + "name": "Niza Chain Testnet", + "chain": "NIZA", + "icon": "niza", + "rpc": ["https://testnet.nizascan.io/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Niza Global", + "symbol": "NIZA", + "decimals": 18 + }, + "infoURL": "https://niza.io", + "shortName": "niza_testnet", + "chainId": 20073, + "networkId": 20073, + "explorers": [ + { + "name": "NizaScan", + "url": "https://testnet.nizascan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-200810.json b/_data/chains/eip155-200810.json index 24612a354d6a..5a26ab32c92f 100644 --- a/_data/chains/eip155-200810.json +++ b/_data/chains/eip155-200810.json @@ -23,8 +23,8 @@ "explorers": [ { "name": "bitlayer testnet scan", - "url": "https://testnet-scan.bitlayer.org", - "standard": "none" + "url": "https://testnet.btrscan.com", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-2014.json b/_data/chains/eip155-2014.json index 69e5f862b9e1..b0a0dd4a14bf 100644 --- a/_data/chains/eip155-2014.json +++ b/_data/chains/eip155-2014.json @@ -1,22 +1,22 @@ { - "name": "NOW Chain", + "name": "NOW Chain Testnet", "chain": "NOW", "icon": "nowchain", - "rpc": ["https://rpc.nowscan.io"], - "faucets": [], + "rpc": ["https://rpc-testnet.nowscan.io"], + "faucets": ["https://faucet.nowchain.co"], "nativeCurrency": { "name": "NOW Coin", "symbol": "NOW", "decimals": 18 }, "infoURL": "https://nowchain.co", - "shortName": "now", + "shortName": "tnow", "chainId": 2014, "networkId": 2014, "explorers": [ { - "name": "nowscan", - "url": "https://nowscan.io", + "name": "nowscan testnet", + "url": "https://testnet.nowscan.io", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-20143.json b/_data/chains/eip155-20143.json new file mode 100644 index 000000000000..8a5f7a792c3c --- /dev/null +++ b/_data/chains/eip155-20143.json @@ -0,0 +1,19 @@ +{ + "name": "Monad Devnet", + "chain": "MON", + "icon": "monad", + "rpc": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Devnet MON Token", + "symbol": "MON", + "decimals": 18 + }, + "infoURL": "https://monad.xyz", + "shortName": "mon-devnet", + "chainId": 20143, + "networkId": 20143, + "slip44": 1, + "explorers": [] +} diff --git a/_data/chains/eip155-2020.json b/_data/chains/eip155-2020.json index ce5acf41605d..23d01de4e1a4 100644 --- a/_data/chains/eip155-2020.json +++ b/_data/chains/eip155-2020.json @@ -1,23 +1,23 @@ { - "name": "PublicMint Mainnet", - "title": "Public Mint Mainnet", - "chain": "PublicMint", - "rpc": ["https://rpc.publicmint.io:8545"], + "name": "Ronin Mainnet", + "title": "Ronin", + "chain": "ronin", + "rpc": ["https://api.roninchain.com/rpc"], "faucets": [], "nativeCurrency": { - "name": "USD", - "symbol": "USD", + "name": "RON", + "symbol": "RON", "decimals": 18 }, - "infoURL": "https://publicmint.com", - "shortName": "pmint", + "infoURL": "https://roninchain.com", + "shortName": "ron", "chainId": 2020, "networkId": 2020, - "slip44": 60, + "redFlags": ["reusedChainId"], "explorers": [ { - "name": "PublicMint Explorer", - "url": "https://explorer.publicmint.io", + "name": "Ronin Block Explorer", + "url": "https://app.roninchain.com", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-202105.json b/_data/chains/eip155-202105.json new file mode 100644 index 000000000000..99b7d546b5dd --- /dev/null +++ b/_data/chains/eip155-202105.json @@ -0,0 +1,34 @@ +{ + "name": "DuckChain Testnet", + "title": "DuckChain Testnet", + "chain": "DuckChain", + "icon": "duckchain", + "rpc": [ + "https://testnet-rpc.duckchain.io", + "https://testnet-rpc-hk.duckchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "TON", + "symbol": "TON", + "decimals": 18 + }, + "infoURL": "https://duckchain.io", + "shortName": "Duck-Chain-Testnet", + "chainId": 202105, + "networkId": 202105, + "explorers": [ + { + "name": "DuckChain Scan", + "url": "https://www.okx.com/web3/explorer/duckchain-testnet", + "icon": "duckchain", + "standard": "EIP3091" + }, + { + "name": "DuckChain Scan", + "url": "https://www.oklink.com/duckchain-testnet", + "icon": "duckchain", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-202202.json b/_data/chains/eip155-202202.json new file mode 100644 index 000000000000..33e41147ea1c --- /dev/null +++ b/_data/chains/eip155-202202.json @@ -0,0 +1,30 @@ +{ + "name": "Bethel Sydney", + "chain": "Bethel", + "rpc": ["https://rpc-sydney.bethel.network"], + "faucets": ["https://faucet-sydney.bethel.network"], + "nativeCurrency": { + "name": "Bethel", + "symbol": "BECX", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "", + "shortName": "bethel-sydney", + "chainId": 202202, + "networkId": 202202, + "explorers": [ + { + "name": "Betehl Sydney Explorer", + "url": "https://sydney.bethel.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-202209.json b/_data/chains/eip155-202209.json new file mode 100644 index 000000000000..a5c031ef5f91 --- /dev/null +++ b/_data/chains/eip155-202209.json @@ -0,0 +1,16 @@ +{ + "name": "Alterscope", + "chain": "Alterscope", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "RISK", + "symbol": "RISK", + "decimals": 18 + }, + "infoURL": "https://alterscope.org", + "shortName": "Alterscope", + "chainId": 202209, + "networkId": 202209, + "status": "incubating" +} diff --git a/_data/chains/eip155-2022091.json b/_data/chains/eip155-2022091.json new file mode 100644 index 000000000000..f65af1f04092 --- /dev/null +++ b/_data/chains/eip155-2022091.json @@ -0,0 +1,16 @@ +{ + "name": "Alterscope Testnet", + "chain": "AlterscopeTest", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "RISK Test Token", + "symbol": "RISKT", + "decimals": 18 + }, + "infoURL": "https://alterscope.org", + "shortName": "AlterscopeTest", + "chainId": 2022091, + "networkId": 2022091, + "status": "incubating" +} diff --git a/_data/chains/eip155-20221001.json b/_data/chains/eip155-20221001.json new file mode 100644 index 000000000000..2327f66ff779 --- /dev/null +++ b/_data/chains/eip155-20221001.json @@ -0,0 +1,31 @@ +{ + "name": "SoonChain Sepolia Devnet", + "chain": "SoonChain Devnet Sepolia", + "rpc": ["https://sepolia.rpc.soonchain.ai"], + "faucets": ["https://console.optimism.io/faucet"], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://soonchain.ai", + "shortName": "Soon-Devnet", + "chainId": 20221001, + "networkId": 20221001, + "icon": "soonchain", + "explorers": [ + { + "name": "Soon Scan", + "url": "https://sepolia.explorer.soonchain.ai", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-20230825.json b/_data/chains/eip155-20230825.json new file mode 100644 index 000000000000..477c9eba1e2e --- /dev/null +++ b/_data/chains/eip155-20230825.json @@ -0,0 +1,25 @@ +{ + "name": "Vcity Testnet", + "chain": "VCITY", + "rpc": ["http://testnet-rpc.vcity.app"], + "faucets": [], + "nativeCurrency": { + "name": "Testnet Vcity Token", + "symbol": "VCT", + "decimals": 18 + }, + "features": [], + "infoURL": "https://vcity.app", + "shortName": "Vcitytestnet", + "chainId": 20230825, + "networkId": 20230825, + "icon": "vcity", + "explorers": [ + { + "name": "Vcity Explorer", + "url": "https://scan.vcity.app", + "icon": "vcity", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2024.json b/_data/chains/eip155-2024.json index 51ba3430e0de..d899e4bbe1d7 100644 --- a/_data/chains/eip155-2024.json +++ b/_data/chains/eip155-2024.json @@ -9,7 +9,7 @@ "decimals": 18 }, "infoURL": "https://swanchain.io/", - "shortName": "swan", + "shortName": "saturn", "chainId": 2024, "networkId": 2024 } diff --git a/_data/chains/eip155-202402181627.json b/_data/chains/eip155-202402181627.json new file mode 100644 index 000000000000..2b4b4583a4d1 --- /dev/null +++ b/_data/chains/eip155-202402181627.json @@ -0,0 +1,22 @@ +{ + "name": "GM Network Testnet", + "chain": "GM Network Testnet", + "rpc": ["https://gmnetwork-testnet.alt.technology/"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://gmnetwork.ai", + "shortName": "gmnetwork-testnet", + "chainId": 202402181627, + "networkId": 202402181627, + "explorers": [ + { + "name": "gmnetwork-testnet", + "url": "https://gmnetwork-testnet-explorer.alt.technology", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-20240603.json b/_data/chains/eip155-20240603.json new file mode 100644 index 000000000000..8bf13cc28933 --- /dev/null +++ b/_data/chains/eip155-20240603.json @@ -0,0 +1,23 @@ +{ + "name": "DBK Chain", + "chain": "DBK Chain", + "rpc": ["https://rpc.mainnet.dbkchain.io"], + "icon": "dbkchain", + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.dbkchain.io", + "shortName": "dbkchain", + "chainId": 20240603, + "networkId": 20240603, + "explorers": [ + { + "name": "DBK Chain Explorer", + "url": "https://scan.dbkchain.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-202424.json b/_data/chains/eip155-202424.json new file mode 100644 index 000000000000..4ee22275a2ed --- /dev/null +++ b/_data/chains/eip155-202424.json @@ -0,0 +1,22 @@ +{ + "name": "Blockfit", + "chain": "202424", + "rpc": ["https://rpc.blockfitscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "BFIT", + "symbol": "BFIT", + "decimals": 18 + }, + "infoURL": "https://blockfit.io", + "shortName": "Blockfit", + "chainId": 202424, + "networkId": 202424, + "explorers": [ + { + "name": "Tracehawk", + "url": "https://blockfitscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-20250217.json b/_data/chains/eip155-20250217.json new file mode 100644 index 000000000000..99e1aa267e30 --- /dev/null +++ b/_data/chains/eip155-20250217.json @@ -0,0 +1,24 @@ +{ + "name": "Xphere Mainnet", + "chain": "Xphere", + "icon": "xphere", + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "rpc": ["https://en-bkk.x-phere.com"], + "faucets": [], + "nativeCurrency": { + "name": "Xphere", + "symbol": "XP", + "decimals": 18 + }, + "infoURL": "https://x-phere.com/", + "shortName": "xp", + "chainId": 20250217, + "networkId": 20250217, + "explorers": [ + { + "name": "Tamsa", + "url": "https://xp.tamsa.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-20250825.json b/_data/chains/eip155-20250825.json new file mode 100644 index 000000000000..dc2eaf3e294e --- /dev/null +++ b/_data/chains/eip155-20250825.json @@ -0,0 +1,25 @@ +{ + "name": "Vcitychain Mainnet", + "chain": "Vcitychain", + "rpc": ["https://mainnet-rpc.vcity.app"], + "faucets": [], + "nativeCurrency": { + "name": "Vcity Coin", + "symbol": "VCITY", + "decimals": 18 + }, + "features": [], + "infoURL": "https://vcity.app", + "shortName": "vcity", + "chainId": 20250825, + "networkId": 20250825, + "icon": "vcitychain", + "explorers": [ + { + "name": "Vcitychain Explorer", + "url": "https://blockchain.vcity.app", + "icon": "vcitychain", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-20256789.json b/_data/chains/eip155-20256789.json new file mode 100644 index 000000000000..041930a0b403 --- /dev/null +++ b/_data/chains/eip155-20256789.json @@ -0,0 +1,24 @@ +{ + "name": "ETP Mainnet", + "chain": "ETP", + "rpc": ["https://rpc.etpscan.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "ETP Chain Native Token", + "symbol": "ETP", + "decimals": 18 + }, + "infoURL": "https://www.etposchain.com", + "shortName": "ETP", + "chainId": 20256789, + "networkId": 20256789, + "icon": "etpchain", + "explorers": [ + { + "name": "ETPScan", + "url": "https://etpscan.xyz", + "icon": "etpchain", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-203.json b/_data/chains/eip155-203.json new file mode 100644 index 000000000000..401a965e0d37 --- /dev/null +++ b/_data/chains/eip155-203.json @@ -0,0 +1,25 @@ +{ + "name": "WowChain Mainnet", + "title": "WowChain Mainnet", + "chain": "WowChain", + "rpc": ["https://rpc.wowchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 + }, + "infoURL": "https://wowchain.io", + "shortName": "wow", + "chainId": 203, + "networkId": 203, + "icon": "wowchain", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.wowchain.io", + "icon": "wowchain", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2030232745.json b/_data/chains/eip155-2030232745.json new file mode 100644 index 000000000000..3d6d95cfebe6 --- /dev/null +++ b/_data/chains/eip155-2030232745.json @@ -0,0 +1,35 @@ +{ + "name": "Lumia Beam Testnet", + "shortName": "lumia-beam-testnet", + "title": "Lumia Beam Testnet", + "chain": "ETH", + "icon": "lumia", + "rpc": ["https://beam-rpc.lumia.org"], + "faucets": ["https://beam-faucet.lumia.org/"], + "nativeCurrency": { + "name": "Lumia", + "symbol": "LUMIA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://lumia.org", + "chainId": 2030232745, + "networkId": 2030232745, + "explorers": [ + { + "name": "Lumia Beam Testnet Explorer", + "url": "https://beam-explorer.lumia.org", + "icon": "lumia", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://beam-bridge.lumia.org" + } + ] + } +} diff --git a/_data/chains/eip155-2035.json b/_data/chains/eip155-2035.json index eaa4c152f48f..64096095bfee 100644 --- a/_data/chains/eip155-2035.json +++ b/_data/chains/eip155-2035.json @@ -1,15 +1,16 @@ { "name": "Phala Network", - "chain": "PHA", + "chain": "ETH", "rpc": [], "faucets": [], "nativeCurrency": { - "name": "Phala", - "symbol": "PHA", + "name": "Ether", + "symbol": "ETH", "decimals": 18 }, "infoURL": "https://phala.network", - "shortName": "pha", + "shortName": "phala", "chainId": 2035, - "networkId": 2035 + "networkId": 2035, + "status": "incubating" } diff --git a/_data/chains/eip155-2039.json b/_data/chains/eip155-2039.json index 7731a7ebb595..2a7c4c4d9c04 100644 --- a/_data/chains/eip155-2039.json +++ b/_data/chains/eip155-2039.json @@ -1,6 +1,6 @@ { - "name": "Aleph Zero Testnet", - "chain": "Aleph Zero Testnet", + "name": "Aleph Zero", + "chain": "Aleph Zero", "icon": "aleph", "rpc": [ "https://rpc.alephzero-testnet.gelato.digital", @@ -12,14 +12,14 @@ "symbol": "TZERO", "decimals": 18 }, - "infoURL": "https://testnet.alephzero.org", + "infoURL": "https://alephzero.org/", "shortName": "aleph", "chainId": 2039, "networkId": 2039, "explorers": [ { - "name": "Aleph Zero Testnet", - "url": "https://test.azero.dev/#/explorer", + "name": "Aleph Zero", + "url": "https://evm-explorer-testnet.alephzero.org", "icon": "aleph", "standard": "none" } diff --git a/_data/chains/eip155-2043.json b/_data/chains/eip155-2043.json index ab95c0d06fc8..8b4f703c2350 100644 --- a/_data/chains/eip155-2043.json +++ b/_data/chains/eip155-2043.json @@ -1,18 +1,18 @@ { - "name": "OriginTrail Parachain", - "chain": "OTP", + "name": "NeuroWeb", + "chain": "NEUROWEB", "rpc": [ "https://astrosat.origintrail.network", "wss://parachain-rpc.origin-trail.network" ], "faucets": [], "nativeCurrency": { - "name": "OriginTrail Parachain Token", - "symbol": "OTP", + "name": "NeuroWeb Token", + "symbol": "NEURO", "decimals": 12 }, - "infoURL": "https://parachain.origintrail.io", - "shortName": "otp", + "infoURL": "https://neuroweb.ai", + "shortName": "NEURO", "chainId": 2043, "networkId": 2043 } diff --git a/_data/chains/eip155-20441.json b/_data/chains/eip155-20441.json new file mode 100644 index 000000000000..49adfbfb6e5c --- /dev/null +++ b/_data/chains/eip155-20441.json @@ -0,0 +1,24 @@ +{ + "name": "XUSD ONE StableChain Mainnet", + "chain": "XUSD ONE", + "icon": "xusd", + "rpc": ["https://xusd.live"], + "faucets": [], + "nativeCurrency": { + "name": "XUSD ONE", + "symbol": "X1", + "decimals": 18 + }, + "infoURL": "https://xusd.co", + "shortName": "xusd", + "chainId": 20441, + "networkId": 20441, + "explorers": [ + { + "name": "xusdscan", + "url": "https://xusdscan.com", + "icon": "xusdscan", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-205.json b/_data/chains/eip155-205.json new file mode 100644 index 000000000000..54d5cf908a8d --- /dev/null +++ b/_data/chains/eip155-205.json @@ -0,0 +1,17 @@ +{ + "name": "EKAASH", + "chain": "EKAASH", + "rpc": ["https://mainnet.ekaash.biz"], + "faucets": [], + "nativeCurrency": { + "name": "Global Mobile Money Gateway", + "symbol": "$EKH", + "decimals": 18 + }, + "infoURL": "https://ekaash.biz", + "shortName": "ekaash", + "chainId": 205, + "networkId": 205, + "slip44": 1, + "explorers": [] +} diff --git a/_data/chains/eip155-2071.json b/_data/chains/eip155-2071.json new file mode 100644 index 000000000000..4b5c376cf0ff --- /dev/null +++ b/_data/chains/eip155-2071.json @@ -0,0 +1,24 @@ +{ + "name": "Metacces Mainnet", + "chain": "Metacces Mainnet", + "icon": "metacces", + "rpc": ["https://oli.accesscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "Metacces", + "symbol": "ACCES", + "decimals": 18 + }, + "infoURL": "https://metacces.com", + "shortName": "ACCES", + "chainId": 2071, + "networkId": 2071, + "explorers": [ + { + "name": "accesscan", + "url": "https://accesscan.io", + "icon": "metacces", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-20993.json b/_data/chains/eip155-20993.json new file mode 100644 index 000000000000..9b34689c1a6e --- /dev/null +++ b/_data/chains/eip155-20993.json @@ -0,0 +1,22 @@ +{ + "name": "Fluent Developer Preview", + "chain": "Fluent", + "rpc": ["https://rpc.dev.gblend.xyz"], + "faucets": ["https://faucet.dev.gblend.xyz"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://fluent.xyz", + "shortName": "fluent-dev-net", + "chainId": 20993, + "networkId": 20993, + "explorers": [ + { + "name": "Fluent Blockscout Explorer", + "url": "https://blockscout.dev.gblend.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-210.json b/_data/chains/eip155-210.json index 4b55da8ba918..310188040662 100644 --- a/_data/chains/eip155-210.json +++ b/_data/chains/eip155-210.json @@ -2,14 +2,20 @@ "name": "Bitnet", "chain": "BTN", "icon": "bitnet", - "rpc": ["https://rpc.bitnet.money", "https://rpc.btnscan.com"], + "rpc": [ + "https://rpc.bitnet.money", + "https://rpc.btnscan.com", + "https://rpc.btn.network", + "https://rpc.bitnetmoney.com", + "https://rpc.btn-network.org" + ], "faucets": [], "nativeCurrency": { "name": "Bitnet", "symbol": "BTN", "decimals": 18 }, - "infoURL": "https://bitnet.money", + "infoURL": "https://bitnet.technology", "shortName": "BTN", "chainId": 210, "networkId": 210, diff --git a/_data/chains/eip155-21000.json b/_data/chains/eip155-21000.json new file mode 100644 index 000000000000..840bdac29db6 --- /dev/null +++ b/_data/chains/eip155-21000.json @@ -0,0 +1,25 @@ +{ + "name": "Action Mainnet", + "chain": "Action", + "icon": "action", + "rpc": ["https://rpc.actionblockchain.org"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Action", + "symbol": "ACTN", + "decimals": 18 + }, + "infoURL": "https://docs.actioncoin.com", + "shortName": "ACTN", + "chainId": 21000, + "networkId": 21000, + "explorers": [ + { + "name": "Action Mainnet Explorer", + "url": "http://exp.actionblockchain.org", + "icon": "action", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-21000000.json b/_data/chains/eip155-21000000.json new file mode 100644 index 000000000000..256d4c121a5f --- /dev/null +++ b/_data/chains/eip155-21000000.json @@ -0,0 +1,36 @@ +{ + "name": "Corn", + "chain": "BTCN", + "rpc": [ + "https://mainnet.corn-rpc.com", + "https://rpc.ankr.com/corn_maizenet", + "https://maizenet-rpc.usecorn.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcorn", + "symbol": "BTCN", + "decimals": 18 + }, + "infoURL": "https://usecorn.com", + "shortName": "corn", + "chainId": 21000000, + "networkId": 21000000, + "icon": "corn", + "explorers": [ + { + "name": "Corn Explorer", + "url": "https://cornscan.io", + "standard": "EIP3091" + }, + { + "name": "Corn Blockscout", + "url": "https://maizenet-explorer.usecorn.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + } +} diff --git a/_data/chains/eip155-21000001.json b/_data/chains/eip155-21000001.json new file mode 100644 index 000000000000..87a47430e564 --- /dev/null +++ b/_data/chains/eip155-21000001.json @@ -0,0 +1,35 @@ +{ + "name": "Corn Testnet", + "chain": "BTCN", + "rpc": [ + "https://testnet.corn-rpc.com", + "https://rpc.ankr.com/corn_testnet", + "https://testnet-rpc.usecorn.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcorn", + "symbol": "BTCN", + "decimals": 18 + }, + "infoURL": "https://usecorn.com", + "shortName": "corn-testnet", + "chainId": 21000001, + "networkId": 21000001, + "explorers": [ + { + "name": "Corn Testnet Explorer", + "url": "https://testnet.cornscan.io", + "standard": "EIP3091" + }, + { + "name": "Corn Testnet Blockscout", + "url": "https://testnet-explorer.usecorn.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } +} diff --git a/_data/chains/eip155-210209.json b/_data/chains/eip155-210209.json new file mode 100644 index 000000000000..92545a312dc3 --- /dev/null +++ b/_data/chains/eip155-210209.json @@ -0,0 +1,25 @@ +{ + "name": "Sorian", + "chain": "SOR", + "rpc": ["https://rpc.sorian.io"], + "faucets": [], + "nativeCurrency": { + "name": "Sorian", + "symbol": "SOR", + "decimals": 18 + }, + + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://sorian.io", + "shortName": "sorian", + "chainId": 210209, + "networkId": 210209, + "explorers": [] +} diff --git a/_data/chains/eip155-210210.json b/_data/chains/eip155-210210.json new file mode 100644 index 000000000000..912f8eb29df9 --- /dev/null +++ b/_data/chains/eip155-210210.json @@ -0,0 +1,26 @@ +{ + "name": "Sorian Testnet", + "chain": "tSOR", + "rpc": ["https://testnet-rpc.sorian.io", "https://testnet.rpc.sorian.io"], + "faucets": [], + "icon": "sorianTestnet", + "nativeCurrency": { + "name": "Sorian Testnet", + "symbol": "tSOR", + "decimals": 18 + }, + + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://mint.sorian.io", + "shortName": "sorianTestnet", + "chainId": 210210, + "networkId": 210210, + "explorers": [] +} diff --git a/_data/chains/eip155-21097.json b/_data/chains/eip155-21097.json new file mode 100644 index 000000000000..c67d60b5e5d7 --- /dev/null +++ b/_data/chains/eip155-21097.json @@ -0,0 +1,28 @@ +{ + "name": "Rivest Testnet", + "chain": "Inco", + "rpc": [ + "https://validator.rivest.inco.org", + "https://gateway.rivest.inco.org" + ], + "faucets": ["https://faucet.rivest.inco.org"], + "nativeCurrency": { + "name": "test-Inco", + "symbol": "tINCO", + "decimals": 18 + }, + "infoURL": "https://inco.org", + "shortName": "rivest-testnet", + "chainId": 21097, + "networkId": 21097, + "slip44": 1, + "icon": "inco", + "explorers": [ + { + "name": "Rivest Testnet Explorer", + "url": "https://explorer.rivest.inco.org", + "standard": "EIP3091", + "icon": "inco" + } + ] +} diff --git a/_data/chains/eip155-212013.json b/_data/chains/eip155-212013.json new file mode 100644 index 000000000000..bf5d15e58ed1 --- /dev/null +++ b/_data/chains/eip155-212013.json @@ -0,0 +1,28 @@ +{ + "name": "Heima", + "chain": "Heima", + "rpc": [ + "https://rpc.heima-parachain.heima.network", + "wss://rpc.heima-parachain.heima.network", + "https://litentry-rpc.dwellir.com", + "wss://litentry-rpc.dwellir.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Heima", + "symbol": "HEI", + "decimals": 18 + }, + "infoURL": "https://heima.network", + "shortName": "heima", + "chainId": 212013, + "networkId": 212013, + "icon": "heima", + "explorers": [ + { + "name": "heima statescan", + "url": "https://heima.statescan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-21210.json b/_data/chains/eip155-21210.json new file mode 100644 index 000000000000..dc829265093d --- /dev/null +++ b/_data/chains/eip155-21210.json @@ -0,0 +1,17 @@ +{ + "name": "1Money Network Mainnet", + "chain": "1Money Network", + "rpc": ["https://mainnet.1money.network"], + "faucets": [], + "nativeCurrency": { + "name": "USD1", + "symbol": "USD1", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://1money.com", + "shortName": "1money", + "chainId": 21210, + "networkId": 21210, + "explorers": [] +} diff --git a/_data/chains/eip155-2136.json b/_data/chains/eip155-2136.json index 025ae3f50b58..0ededf1f88f8 100644 --- a/_data/chains/eip155-2136.json +++ b/_data/chains/eip155-2136.json @@ -1,7 +1,10 @@ { "name": "BigShortBets Testnet", "chain": "BIGSB Testnet", - "rpc": ["https://test-market.bigsb.io", "wss://test-market.bigsb.io"], + "rpc": [ + "https://test-market.bigsb.network", + "wss://test-market.bigsb.network" + ], "faucets": [], "nativeCurrency": { "name": "Dolarz", diff --git a/_data/chains/eip155-21363.json b/_data/chains/eip155-21363.json new file mode 100644 index 000000000000..6a767ba18431 --- /dev/null +++ b/_data/chains/eip155-21363.json @@ -0,0 +1,24 @@ +{ + "name": "Lestnet", + "chain": "LETH", + "rpc": ["https://service.lestnet.org"], + "faucets": [], + "nativeCurrency": { + "name": "Lestnet Ether", + "symbol": "LETH", + "decimals": 18 + }, + "infoURL": "https://lestnet.org", + "shortName": "leth", + "chainId": 21363, + "networkId": 21363, + "icon": "lestnet", + "explorers": [ + { + "name": "Lestnet Explorer", + "url": "https://explore.lestnet.org", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-215.json b/_data/chains/eip155-215.json new file mode 100644 index 000000000000..47c576c9bebe --- /dev/null +++ b/_data/chains/eip155-215.json @@ -0,0 +1,27 @@ +{ + "name": "IDN Mainnet", + "chain": "IDN", + "icon": "idn", + "rpc": [ + "https://dataseed1.idn-rpc.com", + "https://dataseed2.idn-rpc.com", + "https://dataseed3.idn-rpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "IDN", + "symbol": "IDN", + "decimals": 18 + }, + "infoURL": "https://www.idn.world", + "shortName": "IDN", + "chainId": 215, + "networkId": 215, + "explorers": [ + { + "name": "Idn Explorer", + "url": "https://scan.idn-network.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-216.json b/_data/chains/eip155-216.json new file mode 100644 index 000000000000..95e403f0bb35 --- /dev/null +++ b/_data/chains/eip155-216.json @@ -0,0 +1,22 @@ +{ + "name": "Happychain Testnet", + "chainId": 216, + "networkId": 216, + "chain": "Happychain Testnet", + "rpc": ["https://rpc.testnet.happy.tech/http"], + "faucets": [], + "nativeCurrency": { + "name": "Happy", + "symbol": "HAPPY", + "decimals": 18 + }, + "shortName": "happytestnet", + "infoURL": "https://testnet.happy.tech", + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.testnet.happy.tech", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2162.json b/_data/chains/eip155-2162.json new file mode 100644 index 000000000000..922d0e2cce49 --- /dev/null +++ b/_data/chains/eip155-2162.json @@ -0,0 +1,22 @@ +{ + "name": "Animechain Testnet", + "chain": "Animechain", + "rpc": ["https://rpc.kanda.animechain.ai"], + "faucets": [], + "nativeCurrency": { + "name": "Coin", + "symbol": "COIN", + "decimals": 18 + }, + "infoURL": "https://animechain.ai", + "shortName": "animechaint", + "chainId": 2162, + "networkId": 2162, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.kanda.animechain.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2187.json b/_data/chains/eip155-2187.json new file mode 100644 index 000000000000..f98dbaa1d61d --- /dev/null +++ b/_data/chains/eip155-2187.json @@ -0,0 +1,31 @@ +{ + "name": "Game7", + "title": "Game7", + "chain": "Game7", + "rpc": [ + "https://mainnet-rpc.game7.io", + "wss://mainnet-rpc.game7.io", + "https://mainnet-rpc.game7.build", + "wss://mainnet-rpc.game7.build" + ], + "faucets": [], + "nativeCurrency": { + "name": "G7", + "symbol": "G7", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://game7.io/", + "shortName": "g7", + "chainId": 2187, + "networkId": 2187, + "icon": "game7", + "explorers": [ + { + "name": "Blockscout", + "url": "https://mainnet.game7.io", + "icon": "game7", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2192.json b/_data/chains/eip155-2192.json new file mode 100644 index 000000000000..12a492cf049f --- /dev/null +++ b/_data/chains/eip155-2192.json @@ -0,0 +1,24 @@ +{ + "name": "SnaxChain", + "chain": "ETH", + "rpc": ["https://mainnet.snaxchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://synthetix.io", + "shortName": "snax", + "chainId": 2192, + "networkId": 2192, + "icon": "snax", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.snaxchain.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-221.json b/_data/chains/eip155-221.json new file mode 100644 index 000000000000..077376799760 --- /dev/null +++ b/_data/chains/eip155-221.json @@ -0,0 +1,22 @@ +{ + "name": "BlockEx Mainnet", + "chain": "BlockEx", + "rpc": ["https://rpc.blockex.biz"], + "faucets": [], + "nativeCurrency": { + "name": "BlockEx", + "symbol": "XBE", + "decimals": 18 + }, + "infoURL": "https://blockex.biz", + "shortName": "BlockEx", + "chainId": 221, + "networkId": 221, + "explorers": [ + { + "name": "BlockEx Scan", + "url": "http://explorer.blockex.biz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-222222.json b/_data/chains/eip155-222222.json index 25e1994e42e7..749b59d275b9 100644 --- a/_data/chains/eip155-222222.json +++ b/_data/chains/eip155-222222.json @@ -1,18 +1,41 @@ { - "name": "HydraDX", + "name": "Hydration", "chain": "HDX", - "rpc": ["https://rpc.hydradx.cloud", "wss://rpc.hydradx.cloud"], + "rpc": [ + "https://rpc.hydradx.cloud", + "wss://rpc.hydradx.cloud", + "https://hydration-rpc.n.dwellir.com", + "wss://hydration-rpc.n.dwellir.com", + "https://rpc.helikon.io/hydradx", + "wss://rpc.helikon.io/hydradx", + "https://hydration.dotters.network", + "wss://hydration.dotters.network", + "https://hydration.ibp.network", + "wss://hydration.ibp.network", + "https://rpc.cay.hydration.cloud", + "wss://rpc.cay.hydration.cloud", + "https://rpc.parm.hydration.cloud", + "wss://rpc.parm.hydration.cloud", + "https://rpc.roach.hydration.cloud", + "wss://rpc.roach.hydration.cloud", + "https://rpc.zipp.hydration.cloud", + "wss://rpc.zipp.hydration.cloud", + "https://rpc.sin.hydration.cloud", + "wss://rpc.sin.hydration.cloud", + "https://rpc.coke.hydration.cloud", + "wss://rpc.coke.hydration.cloud" + ], "faucets": [], "nativeCurrency": { "name": "Wrapped ETH", "symbol": "WETH", "decimals": 18 }, - "infoURL": "https://hydradx.io", + "infoURL": "https://hydration.net/", "shortName": "hdx", "chainId": 222222, "networkId": 222222, - "icon": "hydradx", + "icon": "hydration", "explorers": [ { "name": "blockscout", diff --git a/_data/chains/eip155-2222222.json b/_data/chains/eip155-2222222.json new file mode 100644 index 000000000000..d08836f1bd14 --- /dev/null +++ b/_data/chains/eip155-2222222.json @@ -0,0 +1,24 @@ +{ + "name": "Coinweb BNB shard", + "title": "Coinweb BNB shard", + "chain": "CWEB BNB", + "rpc": ["https://api-cloud.coinweb.io/eth-rpc-service/bnb"], + "faucets": [], + "nativeCurrency": { + "name": "CWEB", + "symbol": "CWEB", + "decimals": 18 + }, + "infoURL": "https://coinweb.io", + "shortName": "cweb-bnb", + "chainId": 2222222, + "networkId": 2222222, + "slip44": 1, + "explorers": [ + { + "name": "Coinweb block explorer", + "url": "https://explorer.coinweb.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-223.json b/_data/chains/eip155-223.json index 7d37fd8fbb41..114ac39415e8 100644 --- a/_data/chains/eip155-223.json +++ b/_data/chains/eip155-223.json @@ -6,7 +6,8 @@ "https://mainnet.b2-rpc.com", "https://rpc.bsquared.network", "https://b2-mainnet.alt.technology", - "https://b2-mainnet-public.s.chainbase.com" + "https://b2-mainnet-public.s.chainbase.com", + "https://rpc.ankr.com/b2" ], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-223344.json b/_data/chains/eip155-223344.json new file mode 100644 index 000000000000..7a262d6b7126 --- /dev/null +++ b/_data/chains/eip155-223344.json @@ -0,0 +1,24 @@ +{ + "name": "B20 Testnet", + "chain": "B20", + "rpc": ["https://rpc.beonescan.com"], + "faucets": ["https://faucet.beonechain.com/"], + "nativeCurrency": { + "name": "B20", + "symbol": "TBOC", + "decimals": 18 + }, + "infoURL": "https://rpc.beonescan.com", + "shortName": "B20", + "chainId": 223344, + "networkId": 223344, + "icon": "b20", + "explorers": [ + { + "name": "beonescan", + "url": "https://beonescan.com", + "icon": "b20", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-224400.json b/_data/chains/eip155-224400.json new file mode 100644 index 000000000000..ed392fbcd7c6 --- /dev/null +++ b/_data/chains/eip155-224400.json @@ -0,0 +1,25 @@ +{ + "name": "CONET Mainnet", + "chain": "CONET Mainnet", + "rpc": ["https://mainnet-rpc.conet.network"], + "faucets": [], + "nativeCurrency": { + "name": "CONET ETH", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://conet.network", + "shortName": "conet-mainnet", + "chainId": 224400, + "networkId": 224400, + "slip44": 2147708048, + "icon": "conet", + "explorers": [ + { + "name": "CONET Mainnet Explorer", + "url": "https://mainnet.conet.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-224433.json b/_data/chains/eip155-224433.json index e4a855cd4c23..7375726e1ecd 100644 --- a/_data/chains/eip155-224433.json +++ b/_data/chains/eip155-224433.json @@ -1,24 +1,24 @@ { - "name": "CONET Holesky", - "chain": "CONET Holesky", + "name": "CONET Cancun", + "chain": "CONET Cancun", "rpc": ["https://rpc.conet.network"], "faucets": [], "nativeCurrency": { - "name": "CONET Holesky", + "name": "CONET Cancun", "symbol": "CONET", "decimals": 18 }, "features": [{ "name": "EIP155" }], "infoURL": "https://conet.network", - "shortName": "conet-holesky", + "shortName": "conet-cancun", "chainId": 224433, "networkId": 224433, "slip44": 2147708081, "icon": "conet", "explorers": [ { - "name": "CONET Holesky Scan", - "url": "https://scan.conet.network", + "name": "CONET Cancun Scan", + "url": "https://cancun.conet.network", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-227.json b/_data/chains/eip155-227.json new file mode 100644 index 000000000000..c3086b6bc04f --- /dev/null +++ b/_data/chains/eip155-227.json @@ -0,0 +1,28 @@ +{ + "name": "Prom", + "chain": "Prom", + "icon": "prom", + "rpc": ["https://prom-rpc.eu-north-2.gateway.fm"], + "faucets": [], + "nativeCurrency": { + "name": "Prom", + "symbol": "PROM", + "decimals": 18 + }, + "infoURL": "https://prom.io", + "shortName": "PROM", + "chainId": 227, + "networkId": 227, + "explorers": [ + { + "name": "blockscout", + "url": "https://prom-blockscout.eu-north-2.gateway.fm", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://prom-bridge.eu-north-2.gateway.fm/" }] + } +} diff --git a/_data/chains/eip155-228.json b/_data/chains/eip155-228.json index 298a5b8c4abf..a4070939ab2e 100644 --- a/_data/chains/eip155-228.json +++ b/_data/chains/eip155-228.json @@ -2,13 +2,13 @@ "name": "Mind Network Mainnet", "chain": "FHE", "rpc": [ - "https://rpc_mainnet.mindnetwork.xyz", - "wss://rpc_mainnet.mindnetwork.xyz" + "https://rpc-mainnet.mindnetwork.xyz", + "wss://rpc-mainnet.mindnetwork.xyz" ], "faucets": [], "nativeCurrency": { - "name": "FHE", - "symbol": "FHE", + "name": "Ether", + "symbol": "ETH", "decimals": 18 }, "features": [{ "name": "EIP155" }], diff --git a/_data/chains/eip155-229772.json b/_data/chains/eip155-229772.json new file mode 100644 index 000000000000..4fc34969162e --- /dev/null +++ b/_data/chains/eip155-229772.json @@ -0,0 +1,25 @@ +{ + "name": "Abyss Protocol", + "chain": "Abyss Protocol Testnet", + "rpc": ["https://testnet.rpc.abyssprotocol.ai/"], + "faucets": ["https://faucet.abyssprotocol.ai/"], + "nativeCurrency": { + "name": "AbyssETH", + "symbol": "aETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://abyssprotocol.ai/", + "shortName": "abyss", + "chainId": 229772, + "networkId": 229772, + "icon": "abyss", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.abyssprotocol.ai", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-23023.json b/_data/chains/eip155-23023.json new file mode 100644 index 000000000000..3b1eedafc76b --- /dev/null +++ b/_data/chains/eip155-23023.json @@ -0,0 +1,27 @@ +{ + "name": "PremiumBlock", + "chain": "PBLK", + "rpc": ["https://rpc.premiumblock.org"], + "faucets": [], + "nativeCurrency": { + "name": "Premium Block", + "symbol": "PBLK", + "decimals": 18 + }, + "infoURL": "https://scan.premiumblock.org", + "shortName": "pblk", + "chainId": 23023, + "networkId": 23023, + "explorers": [ + { + "name": "PremiumBlocks Explorer", + "url": "https://scan.premiumblock.org", + "standard": "EIP3091" + } + ], + "features": [ + { + "name": "EIP1559" + } + ] +} diff --git a/_data/chains/eip155-2310.json b/_data/chains/eip155-2310.json new file mode 100644 index 000000000000..c9506630847b --- /dev/null +++ b/_data/chains/eip155-2310.json @@ -0,0 +1,27 @@ +{ + "name": "CratD2C", + "chain": "CRATD2C", + "rpc": [ + "https://node1.cratd2csmartchain.io", + "https://node2.cratd2csmartchain.io", + "https://node3.cratd2csmartchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "CRATD2C", + "symbol": "CRAT", + "decimals": 18 + }, + "infoURL": "https://cratd2csmartchain.io", + "shortName": "cratd2c", + "chainId": 2310, + "networkId": 2310, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.cratd2csmartchain.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2311.json b/_data/chains/eip155-2311.json new file mode 100644 index 000000000000..1c16407faf1b --- /dev/null +++ b/_data/chains/eip155-2311.json @@ -0,0 +1,24 @@ +{ + "name": "Chronicle Vesuvius - Lit Protocol Testnet", + "chain": "LPV", + "icon": "lit", + "rpc": ["https://vesuvius-rpc.litprotocol.com"], + "faucets": ["https://developer.litprotocol.com/support/intro"], + "nativeCurrency": { + "name": "Test LPX", + "symbol": "tstLPX", + "decimals": 18 + }, + "infoURL": "https://litprotocol.com", + "shortName": "lpv", + "chainId": 2311, + "networkId": 2311, + "explorers": [ + { + "name": "Lit Chronicle Vesuvius Explorer", + "url": "https://vesuvius-explorer.litprotocol.com", + "icon": "lit", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-232.json b/_data/chains/eip155-232.json new file mode 100644 index 000000000000..7a984b6a8fb1 --- /dev/null +++ b/_data/chains/eip155-232.json @@ -0,0 +1,32 @@ +{ + "name": "Lens", + "title": "Lens mainnet", + "chain": "Lens", + "rpc": ["https://rpc.lens.xyz"], + "faucets": [], + "chainId": 232, + "networkId": 232, + "nativeCurrency": { + "name": "GHO", + "symbol": "GHO", + "decimals": 18 + }, + "icon": "lens", + "infoURL": "https://lens.xyz", + "shortName": "lens", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { "url": "https://app.across.to/bridge?destinationChainId=232" } + ] + }, + "explorers": [ + { + "name": "Lens Block Explorer", + "url": "https://explorer.lens.xyz", + "icon": "lens", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-233.json b/_data/chains/eip155-233.json new file mode 100644 index 000000000000..7c9ad313c07d --- /dev/null +++ b/_data/chains/eip155-233.json @@ -0,0 +1,22 @@ +{ + "name": "Ethernity Testnet", + "chain": "Ethernity", + "rpc": ["https://testnet.ethernitychain.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.ethernity.io", + "shortName": "ethernity-testnet", + "chainId": 233, + "networkId": 233, + "explorers": [ + { + "name": "Ethernity Testnet Explorer", + "url": "https://testnet.ernscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2340.json b/_data/chains/eip155-2340.json index a45a38b34dba..6430e5ae0b94 100644 --- a/_data/chains/eip155-2340.json +++ b/_data/chains/eip155-2340.json @@ -1,25 +1,35 @@ { "name": "Atleta Olympia", - "chain": "Atleta", + "chain": "Atleta Testnet Olympia", "rpc": [ - "wss://testnet-rpc.atleta.network:9944", - "https://testnet-rpc.atleta.network:9944" + "https://testnet-rpc.atleta.network", + "https://rpc.ankr.com/atleta_olympia", + "wss://testnet-rpc.atleta.network", + "https://atleta-testnet.htw.tech/", + "https://public-atleta.nownodes.io", + "https://public-atla-testnet.fastnode.io" ], - "faucets": ["https://faucet.atleta.network"], + "faucets": ["https://app-olympia.atleta.network/faucet"], "nativeCurrency": { - "name": "Atla", + "name": "Atla Olympia", "symbol": "ATLA", "decimals": 18 }, "infoURL": "https://atleta.network", - "shortName": "atla", + "shortName": "olym", "chainId": 2340, "networkId": 2340, "slip44": 1, "icon": "atleta", "explorers": [ { - "name": "Atleta Testnet Explorer", + "name": "Atleta Olympia Explorer", + "icon": "atleta", + "url": "https://blockscout.testnet-v2.atleta.network", + "standard": "none" + }, + { + "name": "Atleta Olympia Polka Explorer", "icon": "atleta", "url": "https://polkadot-explorer.atleta.network/#/explorer", "standard": "none" diff --git a/_data/chains/eip155-2345.json b/_data/chains/eip155-2345.json new file mode 100644 index 000000000000..41abff7f2ee5 --- /dev/null +++ b/_data/chains/eip155-2345.json @@ -0,0 +1,24 @@ +{ + "name": "GOAT Network", + "title": "GOAT Network", + "chain": "GOAT", + "rpc": ["https://rpc.goat.network"], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://www.goat.network", + "shortName": "goat", + "chainId": 2345, + "networkId": 2345, + "icon": "goat", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.goat.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2355.json b/_data/chains/eip155-2355.json index a811f44a19f3..f025c51439b8 100644 --- a/_data/chains/eip155-2355.json +++ b/_data/chains/eip155-2355.json @@ -2,23 +2,35 @@ "name": "Silicon zkEVM", "title": "Silicon zkEVM Mainnet", "chain": "Silicon", - "rpc": [], + "rpc": [ + "https://rpc.silicon.network", + "https://silicon-mainnet.nodeinfra.com" + ], "faucets": [], "nativeCurrency": { "name": "Ether", "symbol": "ETH", "decimals": 18 }, - "infoURL": "", + "infoURL": "https://docs.silicon.network", "shortName": "silicon-zk", "chainId": 2355, "networkId": 2355, "icon": "silicon", - "explorers": [], + "explorers": [ + { + "name": "siliconscope", + "url": "https://scope.silicon.network", + "standard": "EIP3091" + } + ], "parent": { "type": "L2", "chain": "eip155-1", - "bridges": [] + "bridges": [ + { "url": "https://bridge.silicon.network" }, + { "url": "https://bridge.orbitchain.io" } + ] }, - "status": "incubating" + "status": "active" } diff --git a/_data/chains/eip155-235711.json b/_data/chains/eip155-235711.json new file mode 100644 index 000000000000..b8970db0bd40 --- /dev/null +++ b/_data/chains/eip155-235711.json @@ -0,0 +1,23 @@ +{ + "name": "Universe Testnet", + "chain": "Universe", + "rpc": ["https://blockchain.dev-universe-bank.com"], + "faucets": [], + "nativeCurrency": { + "name": "Universe Token", + "symbol": "UNI", + "decimals": 18 + }, + "infoURL": "https://www.universe-bank.com/universal-ledger-system", + "shortName": "unitestnet", + "chainId": 235711, + "networkId": 235711, + "icon": "universe", + "explorers": [ + { + "name": "Universe Testnet Explorer", + "url": "https://blockchain-explorer.dev-universe-bank.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-2368.json b/_data/chains/eip155-2368.json new file mode 100644 index 000000000000..338d1bae8251 --- /dev/null +++ b/_data/chains/eip155-2368.json @@ -0,0 +1,24 @@ +{ + "name": "KiteAI Testnet", + "chain": "KiteAI", + "icon": "kite", + "rpc": ["https://rpc-testnet.gokite.ai"], + "faucets": ["https://faucet.gokite.ai/"], + "nativeCurrency": { + "name": "Kite", + "symbol": "KITE", + "decimals": 18 + }, + "infoURL": "https://gokite.ai/", + "shortName": "KiteAI", + "chainId": 2368, + "networkId": 1, + "slip44": 1, + "explorers": [ + { + "name": "Kitescan", + "url": "https://testnet.kitescan.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-238.json b/_data/chains/eip155-238.json index 10149c0ab284..04b965f7d6fa 100644 --- a/_data/chains/eip155-238.json +++ b/_data/chains/eip155-238.json @@ -2,21 +2,21 @@ "name": "Blast Mainnet", "chain": "ETH", "icon": "blastIcon", - "rpc": ["https://rpc.blastblockchain.com"], + "rpc": ["https://zkevmrpc.blastchain.org"], "faucets": [], "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", + "name": "One World Chain", + "symbol": "OWCT", "decimals": 18 }, - "infoURL": "https://docs.blastblockchain.com", + "infoURL": "https://docs.blastchain.org", "shortName": "blast", "chainId": 238, "networkId": 238, "explorers": [ { "name": "Blast Mainnet", - "url": "https://scan.blastblockchain.com", + "url": "https://blastchain.org", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-239.json b/_data/chains/eip155-239.json new file mode 100644 index 000000000000..9ad09e98211c --- /dev/null +++ b/_data/chains/eip155-239.json @@ -0,0 +1,34 @@ +{ + "name": "TAC Mainnet", + "title": "TAC Mainnet", + "chain": "TAC", + "icon": "tac", + "rpc": [ + "https://rpc.tac.build", + "https://rpc.ankr.com/tac", + "https://ws.rpc.tac.build" + ], + "faucets": [], + "nativeCurrency": { + "name": "TAC", + "symbol": "TAC", + "decimals": 18 + }, + "infoURL": "https://tac.build/", + "shortName": "tacchain_239-1", + "slip44": 60, + "chainId": 239, + "networkId": 239, + "explorers": [ + { + "name": "TAC Explorer", + "url": "https://explorer.tac.build", + "standard": "EIP3091" + }, + { + "name": "Blockscout", + "url": "https://tac.blockscout.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2390.json b/_data/chains/eip155-2390.json new file mode 100644 index 000000000000..33df10863f17 --- /dev/null +++ b/_data/chains/eip155-2390.json @@ -0,0 +1,29 @@ +{ + "name": "TAC Turin", + "title": "TAC Testnet Turin", + "chain": "TAC", + "icon": "tactestnet", + "rpc": [ + "https://turin.rpc.tac.build", + "https://rpc.ankr.com/tac_turin", + "https://turin-ws.rpc.tac.build" + ], + "faucets": ["https://turin.faucet.tac.build/"], + "nativeCurrency": { + "name": "TAC", + "symbol": "TAC", + "decimals": 18 + }, + "infoURL": "https://tac.build/", + "shortName": "tacchain_2390-1", + "chainId": 2390, + "networkId": 2390, + "slip44": 60, + "explorers": [ + { + "name": "TAC Turin Blockscout", + "url": "https://turin.explorer.tac.build", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2391.json b/_data/chains/eip155-2391.json new file mode 100644 index 000000000000..00f512f7f4e0 --- /dev/null +++ b/_data/chains/eip155-2391.json @@ -0,0 +1,29 @@ +{ + "name": "TAC Saint Petersburg", + "title": "TAC Testnet SPB", + "chain": "TAC", + "icon": "tactestnet", + "rpc": [ + "https://spb.rpc.tac.build", + "https://rpc.ankr.com/tac_spb", + "https://spb-ws.rpc.tac.build" + ], + "faucets": ["https://spb.faucet.tac.build/"], + "nativeCurrency": { + "name": "TAC", + "symbol": "TAC", + "decimals": 18 + }, + "infoURL": "https://tac.build/", + "shortName": "tacchain_2391-1", + "chainId": 2391, + "networkId": 2391, + "slip44": 60, + "explorers": [ + { + "name": "TAC SPB Explorer", + "url": "https://spb.explorer.tac.build", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-240.json b/_data/chains/eip155-240.json new file mode 100644 index 000000000000..223c2c379117 --- /dev/null +++ b/_data/chains/eip155-240.json @@ -0,0 +1,23 @@ +{ + "name": "Cronos zkEVM Testnet", + "chain": "CronosZkEVMTestnet", + "rpc": ["https://testnet.zkevm.cronos.org"], + "faucets": ["https://zkevm.cronos.org/faucet"], + "nativeCurrency": { + "name": "Cronos zkEVM Test Coin", + "symbol": "zkTCRO", + "decimals": 18 + }, + "infoURL": "https://docs-zkevm.cronos.org", + "shortName": "zkTCRO", + "chainId": 240, + "networkId": 240, + "slip44": 1, + "explorers": [ + { + "name": "Cronos zkEVM Testnet Explorer", + "url": "https://explorer.zkevm.cronos.org/testnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-240240.json b/_data/chains/eip155-240240.json new file mode 100644 index 000000000000..957e049cd484 --- /dev/null +++ b/_data/chains/eip155-240240.json @@ -0,0 +1,28 @@ +{ + "name": "Studio Testnet", + "chain": "STO", + "icon": "studio", + "rpc": [ + "https://rpc.studio-blockchain.com", + "wss://ws.studio-blockchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Studio Token", + "symbol": "STO", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://studio-blockchain.com", + "shortName": "sto", + "chainId": 240240, + "networkId": 240240, + "explorers": [ + { + "name": "Studio Scan", + "url": "https://studio-scan.com", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-240241.json b/_data/chains/eip155-240241.json new file mode 100644 index 000000000000..9d64297e0c74 --- /dev/null +++ b/_data/chains/eip155-240241.json @@ -0,0 +1,36 @@ +{ + "name": "Studio Blockchain Mainnet", + "chain": "STO", + "icon": "studio", + "rpc": [ + "https://mainnet.studio-blockchain.com", + "https://mainnet2.studio-blockchain.com", + "https://mainnet3.studio-blockchain.com", + "https://mainnet.studio-scan.com", + "https://mainnet2.studio-scan.com", + "wss://mainnet.studio-blockchain.com:8547" + ], + "faucets": [], + "nativeCurrency": { + "name": "Studio Token", + "symbol": "STO", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://studio-blockchain.com", + "shortName": "stom", + "chainId": 240241, + "networkId": 240241, + "explorers": [ + { + "name": "Studio Scan", + "url": "https://studio-scan.com", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-240515.json b/_data/chains/eip155-240515.json new file mode 100644 index 000000000000..531c83d5c08d --- /dev/null +++ b/_data/chains/eip155-240515.json @@ -0,0 +1,25 @@ +{ + "name": "Orange Chain Testnet", + "title": "Orange Chain Testnet", + "chain": "Orange Chain", + "rpc": ["https://testnet-rpc.orangechain.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://orangechain.xyz", + "shortName": "Orange-Chain-Testnet", + "chainId": 240515, + "networkId": 240515, + "icon": "orange", + "explorers": [ + { + "name": "Blockscout", + "url": "https://testnet-scan.orangechain.xyz", + "icon": "orange", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-24076.json b/_data/chains/eip155-24076.json new file mode 100644 index 000000000000..af45bd904760 --- /dev/null +++ b/_data/chains/eip155-24076.json @@ -0,0 +1,24 @@ +{ + "name": "KYMTC Testnet", + "chain": "KYMTC", + "icon": "kymtc", + "rpc": ["https://testnet-rpc.kymaticscan.online"], + "faucets": ["https://faucet.kymaticscan.online"], + "nativeCurrency": { + "name": "KYMTC", + "symbol": "KYMTC", + "decimals": 18 + }, + "infoURL": "https://testnet-explorer.kymaticscan.online", + "shortName": "tKYMTC", + "chainId": 24076, + "networkId": 24076, + "explorers": [ + { + "name": "KYMTC Testnet Explorer", + "url": "https://testnet-explorer.kymaticscan.online", + "icon": "kymtc", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2410.json b/_data/chains/eip155-2410.json index 9531bb33553b..9483543e243d 100644 --- a/_data/chains/eip155-2410.json +++ b/_data/chains/eip155-2410.json @@ -1,6 +1,6 @@ { - "name": "Karak Mainnet", - "chain": "Karak", + "name": "K2 Mainnet", + "chain": "K2", "icon": "karak", "rpc": ["https://rpc.karak.network"], "faucets": [], @@ -10,12 +10,12 @@ "decimals": 18 }, "infoURL": "https://karak.network", - "shortName": "karak-mainnet", + "shortName": "K2-mainnet", "chainId": 2410, "networkId": 2410, "explorers": [ { - "name": "Karak Mainnet Explorer", + "name": "K2 Mainnet Explorer", "url": "https://explorer.karak.network", "standard": "EIP3091" } diff --git a/_data/chains/eip155-241120.json b/_data/chains/eip155-241120.json new file mode 100644 index 000000000000..78f5a03b83be --- /dev/null +++ b/_data/chains/eip155-241120.json @@ -0,0 +1,37 @@ +{ + "name": "Anomaly Andromeda Testnet", + "title": "Anomaly Andromeda Testnet", + "chain": "anomaly-andromeda-testnet", + "rpc": [ + "https://rpc.anomaly-andromeda.anomalygames.io", + "wss://ws.anomaly-andromeda.anomalygames.io" + ], + "nativeCurrency": { + "name": "TestNom", + "symbol": "tNOM", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/anomaly-andromeda-testnet", + "faucets": [], + "shortName": "anomaly-andromeda-testnet", + "chainId": 241120, + "networkId": 241120, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://andromeda.anomalyscan.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-421614", + "bridges": [ + { + "url": "https://bridge.gelato.network/bridge/anomaly-andromeda-testnet" + } + ] + } +} diff --git a/_data/chains/eip155-24116.json b/_data/chains/eip155-24116.json new file mode 100644 index 000000000000..2467b2dafd80 --- /dev/null +++ b/_data/chains/eip155-24116.json @@ -0,0 +1,25 @@ +{ + "name": "Amauti", + "title": "Rails Network Testnet Amauti", + "chain": "RAILS", + "icon": "railsTestnet", + "rpc": ["https://testnet.steamexchange.io"], + "faucets": ["https://depot.steamexchange.io/faucet"], + "nativeCurrency": { + "name": "SteamX", + "symbol": "STEAMX", + "decimals": 18 + }, + "infoURL": "https://steamexchange.io", + "shortName": "railst", + "chainId": 24116, + "networkId": 24116, + "explorers": [ + { + "name": "blockscout", + "url": "https://build.steamexchange.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-24125.json b/_data/chains/eip155-24125.json new file mode 100644 index 000000000000..1ca32cbd79b6 --- /dev/null +++ b/_data/chains/eip155-24125.json @@ -0,0 +1,23 @@ +{ + "name": "Nexurachain", + "chain": "nexurachain", + "icon": "xuraIcon", + "rpc": ["https://rpc.nexurachain.io"], + "faucets": [], + "nativeCurrency": { + "name": "XURA", + "symbol": "XURA", + "decimals": 18 + }, + "infoURL": "https://nexurachain.io", + "shortName": "XURAm", + "chainId": 24125, + "networkId": 24125, + "explorers": [ + { + "name": "Nexurachain Explorer", + "url": "https://explorer.nexurachain.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-24132016.json b/_data/chains/eip155-24132016.json new file mode 100644 index 000000000000..093907ffc0a8 --- /dev/null +++ b/_data/chains/eip155-24132016.json @@ -0,0 +1,16 @@ +{ + "name": "XMTP", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "USDC", + "symbol": "USDC", + "decimals": 18 + }, + "infoURL": "https://xmtp.org", + "shortName": "xmtp", + "chainId": 24132016, + "networkId": 24132016, + "status": "incubating" +} diff --git a/_data/chains/eip155-241320161.json b/_data/chains/eip155-241320161.json new file mode 100644 index 000000000000..87cec46d0dbb --- /dev/null +++ b/_data/chains/eip155-241320161.json @@ -0,0 +1,16 @@ +{ + "name": "XMTP Sepolia", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "USDC", + "symbol": "USDC", + "decimals": 18 + }, + "infoURL": "https://xmtp.org", + "shortName": "xmtp-sepolia", + "chainId": 241320161, + "networkId": 241320161, + "status": "incubating" +} diff --git a/_data/chains/eip155-2420.json b/_data/chains/eip155-2420.json new file mode 100644 index 000000000000..f9404595e099 --- /dev/null +++ b/_data/chains/eip155-2420.json @@ -0,0 +1,31 @@ +{ + "name": "Rufus", + "chain": "rufus", + "rpc": ["https://rufus.calderachain.xyz/http"], + "faucets": [], + "nativeCurrency": { + "name": "Dogelon", + "symbol": "ELON", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://rufus.hub.caldera.xyz", + "shortName": "rufus", + "chainId": 2420, + "networkId": 2420, + "icon": "rufus", + "explorers": [ + { + "name": "Rufus Caldera Explorer", + "url": "https://rufus.calderaexplorer.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2424.json b/_data/chains/eip155-2424.json new file mode 100644 index 000000000000..41e6466b168d --- /dev/null +++ b/_data/chains/eip155-2424.json @@ -0,0 +1,18 @@ +{ + "name": "inEVM Testnet", + "chain": "inEVM testnet", + "icon": "inevm", + "rpc": ["https://testnet.rpc.inevm.com/http"], + "faucets": [], + "nativeCurrency": { + "name": "Injective", + "symbol": "INJ", + "decimals": 18 + }, + "infoURL": "https://inevm.com", + "shortName": "inevm-testnet", + "chainId": 2424, + "networkId": 2424, + "explorers": [], + "status": "active" +} diff --git a/_data/chains/eip155-2425.json b/_data/chains/eip155-2425.json index d17a3b789060..a319e0a58a57 100644 --- a/_data/chains/eip155-2425.json +++ b/_data/chains/eip155-2425.json @@ -1,24 +1,24 @@ { - "name": "King Of Legends Devnet", - "title": "King Of Legends Devnet", - "chain": "KOL", + "name": "King Of Legends Mainnet", + "title": "King Of Legends Mainnet", + "chain": "KCC", "icon": "kol", - "rpc": ["https://rpc-devnet.kinggamer.org/"], + "rpc": ["https://rpc-mainnet.kinggamer.org/"], "faucets": [], "nativeCurrency": { "name": "King Of Legends", - "symbol": "KOL", + "symbol": "KCC", "decimals": 18 }, "infoURL": "https://kingoflegends.net/", - "shortName": "kol", + "shortName": "kcc", "chainId": 2425, "networkId": 2425, "slip44": 1, "explorers": [ { - "name": "King Of Legends Devnet Explorer", - "url": "https://devnet.kingscan.org", + "name": "King Of Legends Mainnet Explorer", + "url": "https://kingscan.org", "icon": "kol", "standard": "EIP3091" } diff --git a/_data/chains/eip155-2426.json b/_data/chains/eip155-2426.json new file mode 100644 index 000000000000..a099b445417f --- /dev/null +++ b/_data/chains/eip155-2426.json @@ -0,0 +1,16 @@ +{ + "name": "Standard Testnet", + "chain": "STND Testnet", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Standard", + "symbol": "STND", + "decimals": 18 + }, + "infoURL": "https://standardweb3.com", + "shortName": "stndtestnet", + "chainId": 2426, + "networkId": 2426, + "status": "incubating" +} diff --git a/_data/chains/eip155-2440.json b/_data/chains/eip155-2440.json new file mode 100644 index 000000000000..ccbc8209305b --- /dev/null +++ b/_data/chains/eip155-2440.json @@ -0,0 +1,34 @@ +{ + "name": "Atleta Network", + "chain": "Atleta", + "rpc": [ + "https://rpc.mainnet.atleta.network", + "wss://rpc.mainnet.atleta.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Atla", + "symbol": "ATLA", + "decimals": 18 + }, + "infoURL": "https://atleta.network", + "shortName": "atla", + "chainId": 2440, + "networkId": 2440, + "slip44": 965, + "icon": "atleta", + "explorers": [ + { + "name": "Atleta Explorer", + "icon": "atleta", + "url": "https://blockscout.atleta.network", + "standard": "none" + }, + { + "name": "Atleta Polka Explorer", + "icon": "atleta", + "url": "https://polkadot-explorer.atleta.network/#/explorer", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-2442.json b/_data/chains/eip155-2442.json index 756d75cecdf7..c85dfde97f91 100644 --- a/_data/chains/eip155-2442.json +++ b/_data/chains/eip155-2442.json @@ -23,7 +23,7 @@ ], "parent": { "type": "L2", - "chain": "eip155-1", + "chain": "eip155-11155111", "bridges": [{ "url": "https://bridge-ui.cardona.zkevm-rpc.com" }] } } diff --git a/_data/chains/eip155-245022929.json b/_data/chains/eip155-245022929.json new file mode 100644 index 000000000000..fad715fc8e76 --- /dev/null +++ b/_data/chains/eip155-245022929.json @@ -0,0 +1,17 @@ +{ + "name": "Neon EVM Devnet Rollup", + "chain": "Solana", + "rpc": ["https://devnet.rollup.neonevm.org/"], + "faucets": [], + "icon": "neon", + "nativeCurrency": { + "name": "Neon", + "symbol": "NEON", + "decimals": 18 + }, + "infoURL": "https://neonevm.org/", + "shortName": "neonevm-devnet-rollup", + "chainId": 245022929, + "networkId": 245022929, + "explorers": [] +} diff --git a/_data/chains/eip155-247.json b/_data/chains/eip155-247.json new file mode 100644 index 000000000000..1be7a8adc136 --- /dev/null +++ b/_data/chains/eip155-247.json @@ -0,0 +1,24 @@ +{ + "name": "ChooChain", + "title": "ChooChain Mainnet", + "chain": "CHOO", + "rpc": ["https://rpc.choochain.io"], + "faucets": [], + "nativeCurrency": { + "name": "ChooChain Token", + "symbol": "CHOO", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://github.com/Trinketz/ChooChain", + "shortName": "choo", + "chainId": 247, + "networkId": 247, + "explorers": [ + { + "name": "ChooChain Explorer", + "url": "https://blocks.choochain.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2477.json b/_data/chains/eip155-2477.json new file mode 100644 index 000000000000..db93ca779ef3 --- /dev/null +++ b/_data/chains/eip155-2477.json @@ -0,0 +1,28 @@ +{ + "name": "6Degree of Outreach", + "chain": "6DO", + "rpc": [ + "https://rpc.6dochain.com", + "https://rpc2.6dochain.com", + "https://rpc3.6dochain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "6Degree Coin", + "symbol": "6DO", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://6do.world", + "shortName": "6do", + "chainId": 2477, + "networkId": 2477, + "icon": "6do", + "explorers": [ + { + "name": "6Degree Chain Explorer", + "url": "https://explorer.6dochain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-24772477.json b/_data/chains/eip155-24772477.json new file mode 100644 index 000000000000..d0f685362c72 --- /dev/null +++ b/_data/chains/eip155-24772477.json @@ -0,0 +1,31 @@ +{ + "name": "6Degree of Outreach - Testnet", + "chain": "6DO", + "rpc": ["https://rpc-testnet.6dochain.com"], + "faucets": [], + "nativeCurrency": { + "name": "6Degree-Testnet Coin", + "symbol": "6DO-T", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://6do.world", + "shortName": "6dotest", + "chainId": 24772477, + "networkId": 24772477, + "icon": "6do", + "explorers": [ + { + "name": "6Degree Testnet Chain Explorer", + "url": "https://explorer-testnet.6dochain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2478899481.json b/_data/chains/eip155-2478899481.json new file mode 100644 index 000000000000..ad20357a1f63 --- /dev/null +++ b/_data/chains/eip155-2478899481.json @@ -0,0 +1,24 @@ +{ + "name": "Accumulate Kermit", + "shortName": "Kermit", + "title": "Accumulate Kermit Testnet", + "chain": "Accumulate", + "chainId": 2478899481, + "networkId": 2478899481, + "infoURL": "https://accumulate.org", + "slip44": 2147483929, + "rpc": ["https://kermit.accumulatenetwork.io/eth"], + "nativeCurrency": { + "name": "ACME", + "symbol": "ACME", + "decimals": 18 + }, + "faucets": ["https://kermit.explorer.accumulatenetwork.io/faucet"], + "explorers": [ + { + "name": "accumulate-explorer-kermit", + "url": "https://kermit.explorer.accumulatenetwork.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-24816.json b/_data/chains/eip155-24816.json new file mode 100644 index 000000000000..6ddbebca09dd --- /dev/null +++ b/_data/chains/eip155-24816.json @@ -0,0 +1,17 @@ +{ + "name": "Recall", + "chain": "Recall", + "rpc": ["https://evm.node-0.mainnet.recall.network"], + "faucets": [], + "nativeCurrency": { + "name": "Recall", + "symbol": "RECALL", + "decimals": 18 + }, + "infoURL": "https://recall.network", + "shortName": "recall", + "chainId": 24816, + "networkId": 24816, + + "explorers": [] +} diff --git a/_data/chains/eip155-2481632.json b/_data/chains/eip155-2481632.json new file mode 100644 index 000000000000..327f661a5fdf --- /dev/null +++ b/_data/chains/eip155-2481632.json @@ -0,0 +1,23 @@ +{ + "name": "Recall Testnet", + "chain": "Recall Testnet", + "rpc": ["https://evm.v013.node-0.testnet.recall.network"], + "faucets": ["faucet.recall.network"], + "nativeCurrency": { + "name": "Recall", + "symbol": "RECALL", + "decimals": 18 + }, + "infoURL": "https://recall.network", + "shortName": "trecall", + "chainId": 2481632, + "networkId": 2481632, + + "explorers": [ + { + "name": "Recall testnet explorer", + "url": "https://explorer.testnet.recall.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2488.json b/_data/chains/eip155-2488.json new file mode 100644 index 000000000000..e1b2abdc7b94 --- /dev/null +++ b/_data/chains/eip155-2488.json @@ -0,0 +1,24 @@ +{ + "name": "NOW Chain Mainnet", + "chain": "NOW", + "icon": "nowchain", + "rpc": ["https://rpc.nowscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "NOW Coin", + "symbol": "NOW", + "decimals": 18 + }, + "infoURL": "https://nowchain.co", + "shortName": "now", + "chainId": 2488, + "networkId": 2488, + "explorers": [ + { + "name": "NOW Scan", + "url": "https://nowscan.io", + "icon": "nowchain", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2494104990.json b/_data/chains/eip155-2494104990.json new file mode 100644 index 000000000000..9f9a98de71ab --- /dev/null +++ b/_data/chains/eip155-2494104990.json @@ -0,0 +1,24 @@ +{ + "name": "Tron Shasta", + "chain": "TRON", + "rpc": ["https://api.shasta.trongrid.io/jsonrpc"], + "faucets": [], + "nativeCurrency": { + "name": "Tron", + "symbol": "TRX", + "decimals": 6 + }, + "infoURL": "https://tron.network", + "shortName": "tron-shasta", + "chainId": 2494104990, + "networkId": 2494104990, + "icon": "tron", + "explorers": [ + { + "name": "shasta tronscan", + "url": "https://shasta.tronscan.org", + "icon": "tron", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-251.json b/_data/chains/eip155-251.json new file mode 100644 index 000000000000..ae603bce72ad --- /dev/null +++ b/_data/chains/eip155-251.json @@ -0,0 +1,22 @@ +{ + "name": "Glide L1 Protocol XP", + "chain": "GLXP", + "icon": "glide", + "rpc": [ + "https://rpc-api.glideprotocol.xyz/l1-rpc/", + "wss://rpc-api.glideprotocol.xyz/l1-rpc/" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Glide XP", + "symbol": "GLXP", + "decimals": 18 + }, + "infoURL": "https://glideprotocol.xyz", + "shortName": "glide", + "chainId": 251, + "networkId": 251, + "slip44": 60, + "status": "active" +} diff --git a/_data/chains/eip155-2512.json b/_data/chains/eip155-2512.json new file mode 100644 index 000000000000..3f3c7c5710b0 --- /dev/null +++ b/_data/chains/eip155-2512.json @@ -0,0 +1,17 @@ +{ + "name": "K2 Testnet", + "chain": "K2", + "icon": "karak", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://karak.network", + "shortName": "K2-testnet", + "chainId": 2512, + "networkId": 2512, + "status": "incubating" +} diff --git a/_data/chains/eip155-252.json b/_data/chains/eip155-252.json index 1a69a08af1af..d7d88bc3989a 100644 --- a/_data/chains/eip155-252.json +++ b/_data/chains/eip155-252.json @@ -1,15 +1,19 @@ { "name": "Fraxtal", "chain": "FRAX", - "rpc": ["https://rpc.frax.com"], + "rpc": [ + "https://rpc.frax.com", + "https://fraxtal-rpc.publicnode.com", + "wss://fraxtal-rpc.publicnode.com" + ], "faucets": [], "nativeCurrency": { - "name": "Frax Ether", - "symbol": "frxETH", + "name": "Frax", + "symbol": "FRAX", "decimals": 18 }, "infoURL": "https://mainnet.frax.com", - "shortName": "fraxtal", + "shortName": "frax", "chainId": 252, "networkId": 252, "icon": "fraxtal", diff --git a/_data/chains/eip155-2522.json b/_data/chains/eip155-2522.json index 4d379dc9fdf2..2d008e96153b 100644 --- a/_data/chains/eip155-2522.json +++ b/_data/chains/eip155-2522.json @@ -1,11 +1,15 @@ { "name": "Fraxtal Testnet", "chain": "FRAX", - "rpc": ["https://rpc.testnet.frax.com"], + "rpc": [ + "https://rpc.testnet.frax.com", + "https://fraxtal-holesky-rpc.publicnode.com", + "wss://fraxtal-holesky-rpc.publicnode.com" + ], "faucets": [], "nativeCurrency": { - "name": "Frax Ether", - "symbol": "frxETH", + "name": "Frax", + "symbol": "FRAX", "decimals": 18 }, "infoURL": "https://testnet.frax.com", diff --git a/_data/chains/eip155-252525.json b/_data/chains/eip155-252525.json new file mode 100644 index 000000000000..470de41126c1 --- /dev/null +++ b/_data/chains/eip155-252525.json @@ -0,0 +1,25 @@ +{ + "name": "CELESTIUM Network Testnet", + "chain": "CELESTIUM", + "rpc": ["https://rpc-private-testnet.celestium.network"], + "faucets": ["https://faucet.celestium.network"], + "nativeCurrency": { + "name": "CLT", + "symbol": "tCLT", + "decimals": 18 + }, + "infoURL": "https://celestium.network", + "shortName": "tclt", + "chainId": 252525, + "networkId": 252525, + "slip44": 1, + "icon": "celestium", + "explorers": [ + { + "name": "CELESTIUM Testnet Explorer", + "icon": "celestium", + "url": "https://testnet.celestium.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-253.json b/_data/chains/eip155-253.json new file mode 100644 index 000000000000..b6f5b4f6894c --- /dev/null +++ b/_data/chains/eip155-253.json @@ -0,0 +1,33 @@ +{ + "name": "Glide L2 Protocol XP", + "chain": "GLXP", + "icon": "glide", + "rpc": [ + "https://rpc-api.glideprotocol.xyz/l2-rpc/", + "wss://rpc-api.glideprotocol.xyz/l2-rpc/" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Glide XP", + "symbol": "GLXP", + "decimals": 18 + }, + "infoURL": "https://glideprotocol.xyz", + "shortName": "glidexp", + "chainId": 253, + "networkId": 253, + "explorers": [ + { + "name": "glidescan", + "url": "https://blockchain-explorer.glideprotocol.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-251" + }, + "status": "active" +} diff --git a/_data/chains/eip155-25327.json b/_data/chains/eip155-25327.json new file mode 100644 index 000000000000..a447c5629c0a --- /dev/null +++ b/_data/chains/eip155-25327.json @@ -0,0 +1,23 @@ +{ + "name": "Everclear Mainnet", + "chain": "Everclear Mainnet", + "rpc": ["https://rpc.everclear.raas.gelato.cloud"], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "faucets": [], + "infoURL": "", + "shortName": "Everclear", + "chainId": 25327, + "networkId": 25327, + "explorers": [ + { + "name": "Everclear", + "url": "https://scan.everclear.org", + "icon": "everclear", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-253368190.json b/_data/chains/eip155-253368190.json new file mode 100644 index 000000000000..123e92d0c75e --- /dev/null +++ b/_data/chains/eip155-253368190.json @@ -0,0 +1,25 @@ +{ + "name": "Flame", + "chain": "Flame", + "rpc": ["https://rpc.flame.astria.org"], + "faucets": [], + "nativeCurrency": { + "name": "TIA", + "symbol": "TIA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://astria.org", + "shortName": "flame", + "chainId": 253368190, + "networkId": 253368190, + "icon": "flame", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.flame.astria.org", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-254.json b/_data/chains/eip155-254.json new file mode 100644 index 000000000000..4bb48df4ba2f --- /dev/null +++ b/_data/chains/eip155-254.json @@ -0,0 +1,29 @@ +{ + "name": "Swan Chain Mainnet", + "chain": "SWAN", + "rpc": [ + "https://mainnet-rpc.swanchain.org", + "https://mainnet-rpc-01.swanchain.org", + "https://mainnet-rpc-02.swanchain.org", + "https://mainnet-rpc-03.swanchain.org", + "https://mainnet-rpc-04.swanchain.org" + ], + "faucets": [], + "icon": "swan", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://swanchain.io/", + "shortName": "Swan", + "chainId": 254, + "networkId": 254, + "explorers": [ + { + "name": "Swanchain Explorer", + "url": "https://swanscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2552.json b/_data/chains/eip155-2552.json new file mode 100644 index 000000000000..c3d72ebc6f04 --- /dev/null +++ b/_data/chains/eip155-2552.json @@ -0,0 +1,25 @@ +{ + "name": "Bahamut horizon", + "title": "Bahamut horizon", + "chain": "Bahamut", + "icon": "bahamut", + "rpc": ["https://horizon-fastex-testnet.zeeve.net"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "shortName": "horizon", + "infoURL": "https://bahamut.io", + "chainId": 2552, + "networkId": 2552, + "explorers": [ + { + "name": "blockscout", + "url": "https://horizon.ftnscan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-25839.json b/_data/chains/eip155-25839.json index ecd093d26eb6..bb9060f66f05 100644 --- a/_data/chains/eip155-25839.json +++ b/_data/chains/eip155-25839.json @@ -12,12 +12,10 @@ "shortName": "talv", "chainId": 25839, "networkId": 25839, - "icon": "alveychain", "explorers": [ { "name": "AlveyScan Testnet", "url": "https://alveytestnet.com", - "icon": "alveychain", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-258432.json b/_data/chains/eip155-258432.json new file mode 100644 index 000000000000..80df43eb8167 --- /dev/null +++ b/_data/chains/eip155-258432.json @@ -0,0 +1,25 @@ +{ + "name": "Althea L1 Mainnet", + "chain": "ALTHEA", + "icon": "althea", + "rpc": ["https://rpc.althea.zone"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Althea", + "symbol": "ALTHEA", + "decimals": 18 + }, + "infoURL": "https://althea.net", + "shortName": "ALTHEA", + "chainId": 258432, + "networkId": 258432, + "slip44": 60, + "explorers": [ + { + "name": "Mintscan", + "url": "https://mintscan.io/althea", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-25925.json b/_data/chains/eip155-25925.json index 86fb51f7da96..4ceb1a29ecf1 100644 --- a/_data/chains/eip155-25925.json +++ b/_data/chains/eip155-25925.json @@ -1,28 +1,28 @@ { - "name": "Bitkub Chain Testnet", - "chain": "BKC", - "icon": "bkc", + "name": "KUB Testnet", + "chain": "KUB", "rpc": [ "https://rpc-testnet.bitkubchain.io", "wss://wss-testnet.bitkubchain.io" ], - "faucets": ["https://faucet.bitkubchain.com"], + "faucets": ["https://faucet.kubchain.com"], "nativeCurrency": { - "name": "Bitkub Coin", + "name": "KUB Coin", "symbol": "tKUB", "decimals": 18 }, - "infoURL": "https://www.bitkubchain.com/", - "shortName": "bkct", + "infoURL": "https://www.kubchain.com/", + "shortName": "kubt", "chainId": 25925, "networkId": 25925, + "icon": "kub", "slip44": 1, "explorers": [ { - "name": "bkcscan-testnet", - "url": "https://testnet.bkcscan.com", + "name": "KUB Testnet Explorer", + "url": "https://testnet.kubscan.com", "standard": "none", - "icon": "bkc" + "icon": "kub" } ] } diff --git a/_data/chains/eip155-260.json b/_data/chains/eip155-260.json new file mode 100644 index 000000000000..69c606f5d9ee --- /dev/null +++ b/_data/chains/eip155-260.json @@ -0,0 +1,24 @@ +{ + "name": "Guru Network", + "chain": "GURU", + "icon": "GuruNetwork", + "rpc": ["https://rpc-main.gurunetwork.ai"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Guru", + "symbol": "GURU", + "decimals": 18 + }, + "infoURL": "https://gurunetwork.ai", + "shortName": "guru", + "chainId": 260, + "networkId": 260, + "explorers": [ + { + "name": "guruscan", + "url": "https://scan.gurunetwork.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2605.json b/_data/chains/eip155-2605.json new file mode 100644 index 000000000000..2e94ac446ed8 --- /dev/null +++ b/_data/chains/eip155-2605.json @@ -0,0 +1,25 @@ +{ + "name": "Pho Blockchain Mainnet", + "chain": "PHO", + "icon": "pho", + "rpc": ["https://mainnet.phochain.org"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Pho", + "symbol": "PHO", + "decimals": 18 + }, + "infoURL": "phochain.org", + "shortName": "pho", + "chainId": 2605, + "networkId": 2605, + "explorers": [ + { + "name": "Pho Scan", + "url": "https://phoscan.org", + "standard": "EIP3091", + "icon": "pho" + } + ] +} diff --git a/_data/chains/eip155-261.json b/_data/chains/eip155-261.json new file mode 100644 index 000000000000..6e6c772a66a6 --- /dev/null +++ b/_data/chains/eip155-261.json @@ -0,0 +1,24 @@ +{ + "name": "Guru Network Testnet", + "chain": "tGURU", + "icon": "GuruNetwork", + "rpc": ["https://rpc-test.gurunetwork.ai"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://v2.dex.guru/season-pass/faucet"], + "nativeCurrency": { + "name": "testGURU", + "symbol": "tGURU", + "decimals": 18 + }, + "infoURL": "https://gurunetwork.ai", + "shortName": "tguru", + "chainId": 261, + "networkId": 261, + "explorers": [ + { + "name": "guruscan", + "url": "https://sepolia.gurunetwork.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-26100.json b/_data/chains/eip155-26100.json new file mode 100644 index 000000000000..6ad0ad802c4a --- /dev/null +++ b/_data/chains/eip155-26100.json @@ -0,0 +1,23 @@ +{ + "name": "Ferrum Quantum Portal Network", + "chain": "QPN", + "icon": "ferrum", + "rpc": ["https://qpn.svcs.ferrumnetwork.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ferrum", + "symbol": "qpFRM", + "decimals": 18 + }, + "infoURL": "https://ferrum.network", + "shortName": "qpn", + "chainId": 26100, + "networkId": 26100, + "explorers": [ + { + "name": "ferrumscout", + "url": "https://explorer.ferrumnetwork.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-2632500.json b/_data/chains/eip155-2632500.json new file mode 100644 index 000000000000..63d22ad42b07 --- /dev/null +++ b/_data/chains/eip155-2632500.json @@ -0,0 +1,25 @@ +{ + "name": "COTI", + "chainId": 2632500, + "shortName": "coti", + "chain": "COTI", + "networkId": 2632500, + "nativeCurrency": { + "name": "COTI", + "symbol": "COTI", + "decimals": 18 + }, + "rpc": ["https://mainnet.coti.io/rpc"], + "faucets": [], + "explorers": [ + { + "name": "COTI Mainnet Explorer", + "url": "https://mainnet.cotiscan.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "infoURL": "https://coti.io/", + "icon": "coti", + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }] +} diff --git a/_data/chains/eip155-2648.json b/_data/chains/eip155-2648.json new file mode 100644 index 000000000000..9fc82ef3ee37 --- /dev/null +++ b/_data/chains/eip155-2648.json @@ -0,0 +1,24 @@ +{ + "name": "AILayer Testnet", + "chain": "AILayer", + "rpc": ["https://testnet-rpc.ailayer.xyz", "wss://testnet-rpc.ailayer.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://ailayer.xyz/", + "shortName": "ailayer-testnet", + "chainId": 2648, + "networkId": 2648, + "icon": "ailayer", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.ailayer.xyz", + "icon": "ailayer", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-26482.json b/_data/chains/eip155-26482.json new file mode 100644 index 000000000000..4387e9fadf7d --- /dev/null +++ b/_data/chains/eip155-26482.json @@ -0,0 +1,26 @@ +{ + "name": "DucatusX Testnet", + "chain": "DUCX", + "rpc": [ + "https://ducx-testnet-node1.rocknblock.io", + "https://ducx-testnet-node2.rocknblock.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "DUCX", + "symbol": "DUCX", + "decimals": 18 + }, + "infoURL": "https://www.ducatuscoins.com/ducatusx", + "shortName": "ducatusx-testnet", + "chainId": 26482, + "networkId": 26482, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-testnet.ducatusx.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-26483.json b/_data/chains/eip155-26483.json new file mode 100644 index 000000000000..22e04682637f --- /dev/null +++ b/_data/chains/eip155-26483.json @@ -0,0 +1,27 @@ +{ + "name": "DucatusX", + "chain": "DUCX", + "rpc": [ + "https://ducx-mainnet-node1.rocknblock.io", + "https://ducx-mainnet-node2.rocknblock.io", + "https://ducx-mainnet-node3.rocknblock.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "DUCX", + "symbol": "DUCX", + "decimals": 18 + }, + "infoURL": "https://www.ducatuscoins.com/ducatusx", + "shortName": "ducatusx", + "chainId": 26483, + "networkId": 26483, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.ducatusx.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2649.json b/_data/chains/eip155-2649.json new file mode 100644 index 000000000000..539f269f8f9c --- /dev/null +++ b/_data/chains/eip155-2649.json @@ -0,0 +1,24 @@ +{ + "name": "AILayer Mainnet", + "chain": "AILayer", + "rpc": ["https://mainnet-rpc.ailayer.xyz", "wss://mainnet-rpc.ailayer.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://ailayer.xyz/", + "shortName": "ailayer-mainnet", + "chainId": 2649, + "networkId": 2649, + "icon": "ailayer", + "explorers": [ + { + "name": "blockscout", + "url": "https://mainnet-explorer.ailayer.xyz", + "icon": "ailayer", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-26888.json b/_data/chains/eip155-26888.json new file mode 100644 index 000000000000..7a504ba714b4 --- /dev/null +++ b/_data/chains/eip155-26888.json @@ -0,0 +1,22 @@ +{ + "name": "AB Core Testnet", + "chain": "ETH", + "rpc": ["https://rpc.core.testnet.ab.org"], + "faucets": [], + "nativeCurrency": { + "name": "AB", + "symbol": "AB", + "decimals": 18 + }, + "infoURL": "https://ab.org", + "shortName": "tABCore", + "chainId": 26888, + "networkId": 26888, + "explorers": [ + { + "name": "AB Core explorer", + "url": "https://explorer.core.testnet.ab.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-26988.json b/_data/chains/eip155-26988.json new file mode 100644 index 000000000000..af7f9ec050c8 --- /dev/null +++ b/_data/chains/eip155-26988.json @@ -0,0 +1,22 @@ +{ + "name": "Newton Finance Testnet", + "chain": "ETH", + "rpc": ["https://jp-rpc-testnet-newfi.newpay.io"], + "faucets": [], + "nativeCurrency": { + "name": "Newton", + "symbol": "NEW", + "decimals": 18 + }, + "infoURL": "https://newtonproject.org", + "shortName": "tNewFi", + "chainId": 26988, + "networkId": 26988, + "explorers": [ + { + "name": "NewFi explorer", + "url": "https://explorer-testnet-newfi.newpay.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2702128.json b/_data/chains/eip155-2702128.json new file mode 100644 index 000000000000..3855507cf059 --- /dev/null +++ b/_data/chains/eip155-2702128.json @@ -0,0 +1,22 @@ +{ + "name": "Xterio Chain (ETH)", + "chain": "Xterio", + "rpc": ["https://xterio-eth.alt.technology"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://xter.io", + "shortName": "xterio", + "chainId": 2702128, + "networkId": 2702128, + "explorers": [ + { + "name": "Xterio Chain (ETH) Explorer", + "url": "https://eth.xterscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-27125.json b/_data/chains/eip155-27125.json new file mode 100644 index 000000000000..13bc3cb30fd6 --- /dev/null +++ b/_data/chains/eip155-27125.json @@ -0,0 +1,23 @@ +{ + "name": "XferChain Testnet", + "chain": "XferChain Testnet", + "icon": "xferIcon", + "rpc": ["https://testnet-rpc.xferchain.org"], + "faucets": ["https://faucet.xferchain.org"], + "nativeCurrency": { + "name": "Dapo", + "symbol": "Dapo", + "decimals": 18 + }, + "infoURL": "https://xferchain.org", + "shortName": "DPt", + "chainId": 27125, + "networkId": 27125, + "explorers": [ + { + "name": "XferChain Testnet Explorer", + "url": "https://testnet.xferchain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-272247.json b/_data/chains/eip155-272247.json new file mode 100644 index 000000000000..23bf61485441 --- /dev/null +++ b/_data/chains/eip155-272247.json @@ -0,0 +1,23 @@ +{ + "name": "Nxy Area 51", + "chain": "NXY", + "rpc": ["https://nxy.social/testnet"], + "faucets": [], + "nativeCurrency": { + "name": "Nxy", + "symbol": "NXY", + "decimals": 18 + }, + "infoURL": "https://nxy.social/l1", + "shortName": "nxytest", + "chainId": 272247, + "networkId": 272247, + "slip44": 272247, + "explorers": [ + { + "name": "Nxy Explorer", + "url": "https://explorer.nxy.social", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-272520.json b/_data/chains/eip155-272520.json new file mode 100644 index 000000000000..64fd8e0017e0 --- /dev/null +++ b/_data/chains/eip155-272520.json @@ -0,0 +1,23 @@ +{ + "name": "Nxy Oasis", + "chain": "NXY", + "rpc": ["https://nxy.social/mainnet"], + "faucets": [], + "nativeCurrency": { + "name": "Nxy", + "symbol": "NXY", + "decimals": 18 + }, + "infoURL": "https://nxy.social/l1", + "shortName": "nxy", + "chainId": 272520, + "networkId": 272520, + "slip44": 272520, + "explorers": [ + { + "name": "Nxy Explorer", + "url": "https://explorer.nxy.social", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-273.json b/_data/chains/eip155-273.json new file mode 100644 index 000000000000..0a3f1e01573c --- /dev/null +++ b/_data/chains/eip155-273.json @@ -0,0 +1,43 @@ +{ + "name": "XR One", + "chain": "ETH", + "rpc": ["https://xr1.calderachain.xyz/http", "wss://xr1.calderachain.xyz/ws"], + "faucets": [], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "XR1", + "symbol": "XR1", + "decimals": 18 + }, + "infoURL": "https://xr-one.gitbook.io", + "shortName": "xr1", + "chainId": 273, + "networkId": 273, + "icon": "xr", + "slip44": 60, + "explorers": [ + { + "name": "XR One Explorer", + "url": "https://xr1.calderaexplorer.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [ + { + "url": "https://xr1.bridge.caldera.xyz" + } + ] + }, + "status": "active" +} diff --git a/_data/chains/eip155-2741.json b/_data/chains/eip155-2741.json new file mode 100644 index 000000000000..5588c4d062d8 --- /dev/null +++ b/_data/chains/eip155-2741.json @@ -0,0 +1,37 @@ +{ + "name": "Abstract", + "chain": "Abstract", + "rpc": ["https://api.mainnet.abs.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://abs.xyz", + "shortName": "abstract", + "chainId": 2741, + "networkId": 2741, + "icon": "abstract", + "explorers": [ + { + "name": "Etherscan", + "url": "https://abscan.org", + "standard": "EIP3091" + }, + { + "name": "Abstract Explorer", + "url": "https://explorer.mainnet.abs.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://portal.mainnet.abs.xyz/bridge" + } + ] + } +} diff --git a/_data/chains/eip155-2777.json b/_data/chains/eip155-2777.json new file mode 100644 index 000000000000..9e80d28a810a --- /dev/null +++ b/_data/chains/eip155-2777.json @@ -0,0 +1,23 @@ +{ + "name": "GM Network Mainnet", + "chain": "GM Network Mainnet", + "rpc": ["https://rpc.gmnetwork.ai"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://gmnetwork.ai", + "shortName": "gmnetwork-mainnet", + "chainId": 2777, + "networkId": 2777, + "explorers": [ + { + "name": "GM Network Mainnet Explorer", + "url": "https://scan.gmnetwork.ai", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-2786.json b/_data/chains/eip155-2786.json new file mode 100644 index 000000000000..a625661ce0fe --- /dev/null +++ b/_data/chains/eip155-2786.json @@ -0,0 +1,27 @@ +{ + "name": "Apertum", + "title": "Apertum", + "chain": "APTM", + "rpc": [ + "https://rpc.apertum.io/ext/bc/YDJ1r9RMkewATmA7B35q1bdV18aywzmdiXwd9zGBq3uQjsCnn/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Apertum", + "symbol": "APTM", + "decimals": 18 + }, + "infoURL": "https://apertum.io", + "shortName": "aptm", + "chainId": 2786, + "networkId": 2786, + "icon": "apertum", + "explorers": [ + { + "name": "Apertum Explorer", + "url": "https://explorer.apertum.io", + "icon": "apertum", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-279.json b/_data/chains/eip155-279.json index adc1e2155dda..7b5d212b697f 100644 --- a/_data/chains/eip155-279.json +++ b/_data/chains/eip155-279.json @@ -1,8 +1,9 @@ { - "name": "BPX Blockchain", + "name": "BPX Chain", "chain": "BPX", "icon": "bpx", - "rpc": ["https://rpc.mainnet.bpxchain.cc", "https://bpx-dataseed.infinex.cc"], + "rpc": ["https://rpc.bpxchain.cc"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": [], "nativeCurrency": { "name": "BPX", @@ -12,5 +13,12 @@ "infoURL": "https://bpxchain.cc", "shortName": "bpx", "chainId": 279, - "networkId": 279 + "networkId": 279, + "explorers": [ + { + "name": "BPX Chain Block Explorer", + "url": "https://explorer.bpxchain.cc", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-2810.json b/_data/chains/eip155-2810.json index 70a301965ae8..1d6966e9bd07 100644 --- a/_data/chains/eip155-2810.json +++ b/_data/chains/eip155-2810.json @@ -7,7 +7,7 @@ "wss://rpc-quicknode-holesky.morphl2.io", "https://rpc-holesky.morphl2.io" ], - "faucets": [], + "faucets": ["https://morphfaucet.com/"], "nativeCurrency": { "name": "Ether", "symbol": "ETH", diff --git a/_data/chains/eip155-281123.json b/_data/chains/eip155-281123.json new file mode 100644 index 000000000000..f665856eb5a8 --- /dev/null +++ b/_data/chains/eip155-281123.json @@ -0,0 +1,32 @@ +{ + "name": "Athene Parthenon", + "chain": "athene-parthenon", + "rpc": [ + "https://rpc.parthenon.athenescan.io", + "wss://ws.parthenon.athenescan.io" + ], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/athene-parthenon", + "faucets": [], + "shortName": "athene-parthenon", + "chainId": 281123, + "networkId": 281123, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://parthenon.athenescan.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + }, + "status": "active" +} diff --git a/_data/chains/eip155-28125.json b/_data/chains/eip155-28125.json new file mode 100644 index 000000000000..ceb54c518694 --- /dev/null +++ b/_data/chains/eip155-28125.json @@ -0,0 +1,23 @@ +{ + "name": "XferChain Mainnet", + "chain": "XferChain Mainnet", + "icon": "xferIcon", + "rpc": ["https://rpc.xferchain.org"], + "faucets": [], + "nativeCurrency": { + "name": "Dapo", + "symbol": "Dapo", + "decimals": 18 + }, + "infoURL": "https://xferchain.org", + "shortName": "DPm", + "chainId": 28125, + "networkId": 28125, + "explorers": [ + { + "name": "XferChain Mainnet Explorer", + "url": "https://network.xferchain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2818.json b/_data/chains/eip155-2818.json new file mode 100644 index 000000000000..b5476dd6c3ae --- /dev/null +++ b/_data/chains/eip155-2818.json @@ -0,0 +1,34 @@ +{ + "name": "Morph", + "title": "Morph Mainnet", + "chain": "ETH", + "rpc": [ + "https://rpc.morphl2.io", + "wss://rpc.morphl2.io:8443", + "https://rpc-quicknode.morphl2.io", + "wss://rpc-quicknode.morphl2.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://morphl2.io", + "shortName": "morph", + "chainId": 2818, + "networkId": 2818, + "slip44": 1, + "explorers": [ + { + "name": "Morph Mainnet Explorer", + "url": "https://explorer.morphl2.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.morphl2.io/" }] + } +} diff --git a/_data/chains/eip155-282.json b/_data/chains/eip155-282.json index 562ec3731305..a76286dcfc43 100644 --- a/_data/chains/eip155-282.json +++ b/_data/chains/eip155-282.json @@ -1,23 +1,24 @@ { - "name": "Cronos zkEVM Testnet", - "chain": "CronosZkEVMTestnet", - "rpc": ["https://rpc-zkevm-t0.cronos.org"], - "faucets": ["https://zkevm-t0.cronos.org/faucet"], + "name": "Deprecated Cronos zkEVM Testnet", + "chain": "deprecatedCronosZkEVMTestnet", + "rpc": ["https://deprecated.testnet.zkevm.cronos.org"], + "faucets": ["https://zkevm.cronos.org/faucet"], "nativeCurrency": { "name": "Cronos zkEVM Test Coin", - "symbol": "TCRO", + "symbol": "zkTCRO", "decimals": 18 }, - "infoURL": "https://docs.cronos.org/cronos-zkevm-chain/introduction-to-cronos-zkevm-chain-testnet", - "shortName": "zktcro", + "infoURL": "https://docs-zkevm.cronos.org", + "shortName": "deprecated-zkTCRO", "chainId": 282, "networkId": 282, "slip44": 1, "explorers": [ { "name": "Cronos zkEVM Testnet Explorer", - "url": "https://zkevm-t0.cronos.org/explorer", + "url": "https://explorer.zkevm.cronos.org/testnet", "standard": "none" } - ] + ], + "status": "deprecated" } diff --git a/_data/chains/eip155-2868.json b/_data/chains/eip155-2868.json new file mode 100644 index 000000000000..cbeefcbd0676 --- /dev/null +++ b/_data/chains/eip155-2868.json @@ -0,0 +1,23 @@ +{ + "name": "HyperAGI Mainnet", + "chain": "HyperAGI", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Hyperdust", + "symbol": "HYPT", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://hyperagi.network", + "shortName": "hypt", + "chainId": 2868, + "networkId": 1, + "explorers": [ + { + "name": "hyptscan", + "url": "https://block.hyperagi.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2882.json b/_data/chains/eip155-2882.json new file mode 100644 index 000000000000..d557e884be2a --- /dev/null +++ b/_data/chains/eip155-2882.json @@ -0,0 +1,17 @@ +{ + "name": "Chips Network", + "chain": "CHIPS", + "rpc": [ + "https://node.chips.ooo/wasp/api/v1/chains/iota1pp3d3mnap3ufmgqnjsnw344sqmf5svjh26y2khnmc89sv6788y3r207a8fn/evm" + ], + "faucets": [], + "nativeCurrency": { + "name": "IOTA", + "symbol": "IOTA", + "decimals": 18 + }, + "infoURL": "https://www.chips.ooo", + "shortName": "chips", + "chainId": 2882, + "networkId": 2882 +} diff --git a/_data/chains/eip155-28872323069.json b/_data/chains/eip155-28872323069.json index f5b48fe6a7b1..4e20152ba4e6 100644 --- a/_data/chains/eip155-28872323069.json +++ b/_data/chains/eip155-28872323069.json @@ -3,7 +3,7 @@ "title": "GitSwarm Test Network", "chain": "ETH", "icon": "gitswarm", - "rpc": ["https://gitswarm.com:2096"], + "rpc": ["https://testnet.gitswarm.com:2096"], "faucets": [], "nativeCurrency": { "name": "GitSwarm Ether", diff --git a/_data/chains/eip155-28882.json b/_data/chains/eip155-28882.json index 66117acd4403..543edaded33b 100644 --- a/_data/chains/eip155-28882.json +++ b/_data/chains/eip155-28882.json @@ -21,14 +21,14 @@ "explorers": [ { - "name": "Bobascan", + "name": "Routescan", "url": "https://testnet.bobascan.com", "standard": "none" } ], "parent": { "type": "L2", - "chain": "eip155-1", - "bridges": [{ "url": "https://gateway.boba.network" }] + "chain": "eip155-11155111", + "bridges": [] } } diff --git a/_data/chains/eip155-2889.json b/_data/chains/eip155-2889.json new file mode 100644 index 000000000000..26b689a98e98 --- /dev/null +++ b/_data/chains/eip155-2889.json @@ -0,0 +1,24 @@ +{ + "name": "Aarma Mainnet", + "chain": "Aarma", + "rpc": ["https://aarmarpc.com/"], + "faucets": [], + "nativeCurrency": { + "name": "Aarma", + "symbol": "ARMA", + "decimals": 18 + }, + "infoURL": "https://aarmachain.com", + "shortName": "ARMA", + "chainId": 2889, + "networkId": 2889, + "icon": "arma", + "explorers": [ + { + "name": "aarmascan", + "url": "https://aarmascan.com", + "icon": "arma", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-291.json b/_data/chains/eip155-291.json index a6d05307dadb..3df30e259165 100644 --- a/_data/chains/eip155-291.json +++ b/_data/chains/eip155-291.json @@ -1,17 +1,14 @@ { "name": "Orderly Mainnet", "chain": "ETH", - "rpc": [ - "https://rpc.orderly.network", - "https://l2-orderly-mainnet-0.t.conduit.xyz" - ], + "rpc": ["https://rpc.orderly.network"], "faucets": [], "nativeCurrency": { "name": "Ether", "symbol": "ETH", "decimals": 18 }, - "infoURL": "www.orderly.network", + "infoURL": "https://orderly.network/", "shortName": "orderly", "chainId": 291, "networkId": 291, diff --git a/_data/chains/eip155-292003.json b/_data/chains/eip155-292003.json new file mode 100644 index 000000000000..2c1f2c0c4d8b --- /dev/null +++ b/_data/chains/eip155-292003.json @@ -0,0 +1,25 @@ +{ + "name": "Cipherem Testnet", + "chain": "Cipherem", + "rpc": ["https://testnet.cipherem.com"], + "faucets": [], + "nativeCurrency": { + "name": "CIP", + "symbol": "CIP", + "decimals": 18 + }, + "infoURL": "https://www.cipherem.com", + "shortName": "CIP", + "chainId": 292003, + "networkId": 292003, + "slip44": 1, + "icon": "cipherem", + "explorers": [ + { + "name": "Cipherscan Testnet Explorer", + "icon": "cipherscan", + "url": "https://cipherscan.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-29223.json b/_data/chains/eip155-29223.json new file mode 100644 index 000000000000..91e5020dc1da --- /dev/null +++ b/_data/chains/eip155-29223.json @@ -0,0 +1,25 @@ +{ + "name": "Nexa MetaNet", + "chain": "NEXA", + "rpc": ["https://nexa.sh/metanet"], + "faucets": [], + "nativeCurrency": { + "name": "Nexa", + "symbol": "NEXA", + "decimals": 18 + }, + "infoURL": "https://nexa.sh/meta", + "shortName": "nexameta", + "chainId": 29223, + "networkId": 29223, + "slip44": 29223, + "icon": "nexameta", + "explorers": [ + { + "name": "NexaShell", + "url": "https://nexa.sh", + "standard": "none", + "icon": "nexashell" + } + ] +} diff --git a/_data/chains/eip155-29225.json b/_data/chains/eip155-29225.json new file mode 100644 index 000000000000..8a059946bc98 --- /dev/null +++ b/_data/chains/eip155-29225.json @@ -0,0 +1,25 @@ +{ + "name": "Nexa MetaTest", + "chain": "NEXA", + "rpc": ["https://nexa.sh/metatest"], + "faucets": [], + "nativeCurrency": { + "name": "Nexa", + "symbol": "NEXA", + "decimals": 18 + }, + "infoURL": "https://nexa.sh/meta", + "shortName": "nexatest", + "chainId": 29225, + "networkId": 29225, + "slip44": 29225, + "icon": "nexameta", + "explorers": [ + { + "name": "NexaShell", + "url": "https://nexa.sh", + "standard": "none", + "icon": "nexashell" + } + ] +} diff --git a/_data/chains/eip155-293.json b/_data/chains/eip155-293.json new file mode 100644 index 000000000000..38b3520fbe94 --- /dev/null +++ b/_data/chains/eip155-293.json @@ -0,0 +1,26 @@ +{ + "name": "DaVinci", + "chain": "DCOIN", + "rpc": ["https://rpc.davinci.bz"], + "faucets": [], + "nativeCurrency": { + "name": "DaVinci", + "symbol": "DCOIN", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://davinci.bz", + "shortName": "davinci", + "chainId": 293, + "networkId": 293, + "icon": "davinci", + "explorers": [ + { + "name": "davinciscan", + "icon": "blockscout", + "url": "https://mainnet-explorer.davinci.bz", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-295.json b/_data/chains/eip155-295.json index a0b93688ae87..98c44cb3e144 100644 --- a/_data/chains/eip155-295.json +++ b/_data/chains/eip155-295.json @@ -2,7 +2,7 @@ "name": "Hedera Mainnet", "chain": "Hedera", "icon": "hedera", - "rpc": ["https://mainnet.hashio.io/api"], + "rpc": ["https://mainnet.hashio.io/api", "https://hedera.linkpool.pro"], "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": [], "nativeCurrency": { @@ -16,11 +16,6 @@ "networkId": 295, "slip44": 3030, "explorers": [ - { - "name": "HashScan", - "url": "https://hashscan.io/mainnet", - "standard": "EIP3091" - }, { "name": "Arkhia Explorer", "url": "https://explorer.arkhia.io", @@ -35,11 +30,6 @@ "name": "Hedera Explorer", "url": "https://hederaexplorer.io", "standard": "none" - }, - { - "name": "Ledger Works Explore", - "url": "https://explore.lworks.io", - "standard": "none" } ] } diff --git a/_data/chains/eip155-300.json b/_data/chains/eip155-300.json index 5826a0243b3e..1bbc4ce3e9c0 100644 --- a/_data/chains/eip155-300.json +++ b/_data/chains/eip155-300.json @@ -28,7 +28,7 @@ ], "parent": { "type": "L2", - "chain": "eip155-1", + "chain": "eip155-11155111", "bridges": [{ "url": "https://bridge.zksync.io/" }] }, "redFlags": ["reusedChainId"] diff --git a/_data/chains/eip155-30000.json b/_data/chains/eip155-30000.json new file mode 100644 index 000000000000..dec39a388667 --- /dev/null +++ b/_data/chains/eip155-30000.json @@ -0,0 +1,24 @@ +{ + "name": "qChain Mainnet", + "chain": "qChain", + "rpc": ["https://rpc.qchain.kr"], + "faucets": [], + "features": [{ "name": "EIP155" }], + "nativeCurrency": { + "name": "QCO", + "symbol": "QCO", + "decimals": 18 + }, + "infoURL": "https://www.qchain.kr", + "shortName": "qchain", + "chainId": 30000, + "networkId": 30000, + "icon": "qchain", + "explorers": [ + { + "name": "qChain explorer", + "url": "https://scan.qchain.kr", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-302.json b/_data/chains/eip155-302.json index ec6a89cdaf7a..9db5462cc235 100644 --- a/_data/chains/eip155-302.json +++ b/_data/chains/eip155-302.json @@ -1,5 +1,5 @@ { - "name": "zkCandy Sepolia Testnet", + "name": "ZKcandy Sepolia Testnet", "chain": "ETH", "rpc": ["https://sepolia.rpc.zkcandy.io"], "faucets": [], @@ -15,7 +15,7 @@ "icon": "zkcandy", "explorers": [ { - "name": "zkCandy Block Explorer", + "name": "ZKcandy Block Explorer", "url": "https://sepolia.explorer.zkcandy.io", "icon": "zkcandy", "standard": "EIP3091" diff --git a/_data/chains/eip155-3030.json b/_data/chains/eip155-3030.json new file mode 100644 index 000000000000..a3c396e07061 --- /dev/null +++ b/_data/chains/eip155-3030.json @@ -0,0 +1,24 @@ +{ + "name": "BC Hyper Chain Mainnet", + "chain": "BC Hyper Chain", + "rpc": ["https://mainapi.bchscan.io"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "VERSATIZE COIN", + "symbol": "VTCN", + "decimals": 18 + }, + "infoURL": "https://www.versatizecoin.com/", + "shortName": "BCHYPER", + "chainId": 3030, + "networkId": 3030, + "icon": "bchyper", + "explorers": [ + { + "name": "bcexplorer mainnet", + "url": "https://bchscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-30732.json b/_data/chains/eip155-30732.json index c9903ae4ae12..ad75bfe608c3 100644 --- a/_data/chains/eip155-30732.json +++ b/_data/chains/eip155-30732.json @@ -1,7 +1,7 @@ { "name": "Movement EVM Testnet", "chain": "MOVE", - "rpc": [], + "rpc": ["https://mevm.testnet.imola.movementlabs.xyz"], "faucets": [], "nativeCurrency": { "name": "Move", @@ -16,7 +16,7 @@ "explorers": [ { "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", + "url": "https://explorer.testnet.imola.movementlabs.xyz", "standard": "none" } ], diff --git a/_data/chains/eip155-3084.json b/_data/chains/eip155-3084.json new file mode 100644 index 000000000000..a31bd99eaa49 --- /dev/null +++ b/_data/chains/eip155-3084.json @@ -0,0 +1,31 @@ +{ + "name": "XL Network Testnet", + "chain": "XL Network Testnet", + "rpc": [ + "https://subnets.avax.network/xlnetworkt/testnet/rpc", + "wss://subnets.avax.network/xlnetworkt/testnet/ws" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "XLNetwork", + "symbol": "XLN", + "decimals": 18 + }, + "infoURL": "https://www.nysl.io/", + "shortName": "nysl", + "icon": "nysl", + "chainId": 3084, + "networkId": 3084, + "explorers": [ + { + "name": "XL Network Explorer", + "url": "https://subnets-test.avax.network/xlnetworkt", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-311.json b/_data/chains/eip155-311.json index 97de1a83da3a..b5d5c564c224 100644 --- a/_data/chains/eip155-311.json +++ b/_data/chains/eip155-311.json @@ -1,7 +1,7 @@ { "name": "Omax Mainnet", "chain": "OMAX Chain", - "rpc": ["https://mainapi.omaxray.com"], + "rpc": ["https://mainapi.omaxray.com", "https://mainapi.omaxscan.com"], "faucets": ["https://faucet.omaxray.com/"], "nativeCurrency": { "name": "OMAX COIN", diff --git a/_data/chains/eip155-3132023.json b/_data/chains/eip155-3132023.json index d74c12e00239..f22d36577766 100644 --- a/_data/chains/eip155-3132023.json +++ b/_data/chains/eip155-3132023.json @@ -1,11 +1,11 @@ { - "name": "SaharaAI Network", + "name": "Sahara AI", "chain": "Sahara", "rpc": ["https://mainnet.saharalabs.ai"], "faucets": [], "nativeCurrency": { - "name": "SAHARA", - "symbol": "SAH", + "name": "Sahara AI", + "symbol": "SAHARA", "decimals": 18 }, "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], diff --git a/_data/chains/eip155-313313.json b/_data/chains/eip155-313313.json index d0afbd3e3056..f1c1f364c74d 100644 --- a/_data/chains/eip155-313313.json +++ b/_data/chains/eip155-313313.json @@ -1,11 +1,11 @@ { - "name": "SaharaAI Testnet", + "name": "Sahara AI Testnet", "chain": "Sahara", "rpc": ["https://testnet.saharalabs.ai"], "faucets": [], "nativeCurrency": { - "name": "SAHARA", - "symbol": "SAH", + "name": "Sahara AI", + "symbol": "SAHARA", "decimals": 18 }, "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], @@ -17,7 +17,7 @@ "explorers": [ { "name": "Testnet Scan", - "url": "https://explorer.saharaa.info", + "url": "https://testnet-explorer.saharalabs.ai", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-31415.json b/_data/chains/eip155-31415.json index c0f6cae4159d..c0c0988e4450 100644 --- a/_data/chains/eip155-31415.json +++ b/_data/chains/eip155-31415.json @@ -1,19 +1,24 @@ { - "name": "Filecoin - Wallaby testnet", - "status": "deprecated", - "chain": "FIL", - "icon": "filecoin", - "rpc": [], + "name": "Wirex Pay Mainnet", + "chain": "WirexPay", + "icon": "wpay", + "rpc": ["https://rpc.wirexpaychain.com"], "faucets": [], "nativeCurrency": { - "name": "testnet filecoin", - "symbol": "tFIL", + "name": "Ethereum", + "symbol": "ETH", "decimals": 18 }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin-wallaby", + "infoURL": "https://docs.wirexpaychain.com/tech/wirex-pay-chain", + "shortName": "wpay", "chainId": 31415, "networkId": 31415, - "slip44": 1, - "explorers": [] + "explorers": [ + { + "name": "Wirex Pay Explorer", + "url": "https://blockscout.wirexpaychain.com", + "standard": "EIP3091" + } + ], + "redFlags": ["reusedChainId"] } diff --git a/_data/chains/eip155-315.json b/_data/chains/eip155-315.json new file mode 100644 index 000000000000..c953cf029d85 --- /dev/null +++ b/_data/chains/eip155-315.json @@ -0,0 +1,31 @@ +{ + "name": "WorldEcoMoney", + "chain": "WEM", + "rpc": ["https://rpc.wemblockchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "WEM Coin", + "symbol": "WEM", + "decimals": 18 + }, + "features": [ + { "name": "EIP155" }, + { "name": "EIP1559" }, + { "name": "Smart Contracts" }, + { "name": "Custom Gas Model" }, + { "name": "Low-Latency Transactions" } + ], + "infoURL": "https://worldecomoney.com", + "shortName": "wem", + "chainId": 315, + "networkId": 315, + "icon": "wem", + "explorers": [ + { + "name": "wemscan", + "url": "https://wemscan.com", + "icon": "wemscan", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-31611.json b/_data/chains/eip155-31611.json new file mode 100644 index 000000000000..15ce94583224 --- /dev/null +++ b/_data/chains/eip155-31611.json @@ -0,0 +1,24 @@ +{ + "name": "Mezo Testnet", + "chain": "Mezo Testnet", + "rpc": ["https://rpc.test.mezo.org"], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://mezo.org/", + "shortName": "mezo-testnet", + "chainId": 31611, + "networkId": 31611, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.test.mezo.org", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-31612.json b/_data/chains/eip155-31612.json new file mode 100644 index 000000000000..07fccb077ab9 --- /dev/null +++ b/_data/chains/eip155-31612.json @@ -0,0 +1,34 @@ +{ + "name": "Mezo", + "chain": "Mezo", + "rpc": [ + "https://rpc_evm-mezo.imperator.co", + "wss://ws_evm-mezo.imperator.co", + "https://jsonrpc-mezo.boar.network", + "wss://jsonrpcws-mezo.boar.network", + "https://mainnet.mezo.public.validationcloud.io", + "wss://mainnet.mezo.public.validationcloud.io", + "https://rpc-internal.mezo.org", + "wss://rpc-ws-internal.mezo.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://mezo.org/", + "shortName": "mezo", + "chainId": 31612, + "networkId": 31612, + "icon": "mezo", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.mezo.org", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-31753.json b/_data/chains/eip155-31753.json index ae8d3d2ca87a..5456943482f8 100644 --- a/_data/chains/eip155-31753.json +++ b/_data/chains/eip155-31753.json @@ -1,23 +1,18 @@ { - "name": "Xchain Mainnet", - "chain": "Xchain", + "name": "Xchain Mainnet (Deprecated)", + "chain": "XchainDeprecated", "icon": "intd", - "rpc": ["https://rpc.xchainscan.com"], + "rpc": [], "faucets": [], "nativeCurrency": { "name": "Intdestcoin", "symbol": "INTD", "decimals": 18 }, - "infoURL": "https://xchainscan.com", - "shortName": "INTD", + "infoURL": "https://chainlist.org/chain/31753", + "shortName": "INTD_deprecated", "chainId": 31753, "networkId": 31753, - "explorers": [ - { - "name": "Xchain Mainnet Explorer", - "url": "https://xchainscan.com", - "standard": "EIP3091" - } - ] + "status": "deprecated", + "explorers": [] } diff --git a/_data/chains/eip155-31754.json b/_data/chains/eip155-31754.json index 253428edeb2a..acb7828bd5b7 100644 --- a/_data/chains/eip155-31754.json +++ b/_data/chains/eip155-31754.json @@ -1,23 +1,18 @@ { - "name": "Xchain Testnet", - "chain": "Xchain", + "name": "Xchain Testnet (Deprecated)", + "chain": "XchainDeprecated", "icon": "intd", - "rpc": ["https://rpc.xchaintest.net"], - "faucets": ["https://xchainfaucet.net"], + "rpc": [], + "faucets": [], "nativeCurrency": { "name": "Intdestcoin Testnet", "symbol": "INTD", "decimals": 18 }, - "infoURL": "https://xchaintest.net", - "shortName": "tINTD", + "infoURL": "https://chainlist.org/chain/31754", + "shortName": "tINTD_deprecated", "chainId": 31754, "networkId": 31754, - "explorers": [ - { - "name": "Xchain Testnet Explorer", - "url": "https://xchaintest.net", - "standard": "EIP3091" - } - ] + "status": "deprecated", + "explorers": [] } diff --git a/_data/chains/eip155-320.json b/_data/chains/eip155-320.json new file mode 100644 index 000000000000..386c1aa5bbad --- /dev/null +++ b/_data/chains/eip155-320.json @@ -0,0 +1,29 @@ +{ + "name": "ZKcandy Mainnet", + "chain": "ETH", + "rpc": ["https://rpc.zkcandy.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zkcandy.io/", + "shortName": "zkcandy", + "chainId": 320, + "networkId": 320, + "icon": "zkcandymainnet", + "explorers": [ + { + "name": "ZKcandy Block Explorer", + "url": "https://explorer.zkcandy.io", + "icon": "zkcandymainnet", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.zkcandy.io/" }] + } +} diff --git a/_data/chains/eip155-323.json b/_data/chains/eip155-323.json index 6263351e179a..5d4a03b58300 100644 --- a/_data/chains/eip155-323.json +++ b/_data/chains/eip155-323.json @@ -1,21 +1,22 @@ { - "name": "Cosvm Mainnet", - "chain": "CVM", - "rpc": ["https://rpc.cosvm.net"], + "name": "BuyCex Infinity Chain", + "chain": "BUYCEX", + "rpc": ["https://rpc.buycex.net", "wss://socket.buycex.net"], "faucets": [], "nativeCurrency": { - "name": "Cosvm", - "symbol": "CVM", + "name": "Buycex", + "symbol": "BCX", "decimals": 18 }, - "infoURL": "https://cosvm.network", - "shortName": "cvm", + "infoURL": "https://infinity.buycex.com", + "shortName": "buycex", "chainId": 323, "networkId": 323, + "status": "active", "explorers": [ { "name": "Blockscout", - "url": "https://explorer.cosvm.net", + "url": "https://buycex.com", "icon": "blockscout", "standard": "EIP3091" } diff --git a/_data/chains/eip155-32323.json b/_data/chains/eip155-32323.json new file mode 100644 index 000000000000..7b22bbeedf88 --- /dev/null +++ b/_data/chains/eip155-32323.json @@ -0,0 +1,31 @@ +{ + "name": "BasedAI", + "title": "BasedAI", + "chain": "BasedAI", + "rpc": ["https://mainnet.basedaibridge.com/rpc/"], + "faucets": [], + "nativeCurrency": { + "name": "BasedAI", + "symbol": "BASED", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://getbased.ai", + "shortName": "basedai", + "chainId": 32323, + "networkId": 32323, + "icon": "basedai", + "explorers": [ + { + "name": "BasedAI Explorer", + "url": "https://explorer.getbased.ai", + "standard": "none" + }, + { + "name": "BF1337 BasedAI Explorer", + "url": "https://explorer.bf1337.org", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-323432.json b/_data/chains/eip155-323432.json new file mode 100644 index 000000000000..92ee46795f7a --- /dev/null +++ b/_data/chains/eip155-323432.json @@ -0,0 +1,22 @@ +{ + "name": "World Mobile Chain Testnet", + "chain": "WOMOX", + "rpc": ["https://worldmobile-devnet.g.alchemy.com/public"], + "faucets": ["https://testnet-faucet.worldmobile.net"], + "nativeCurrency": { + "name": "ATestingToken", + "symbol": "WOMOX", + "decimals": 18 + }, + "infoURL": "https://worldmobile.io/the-chain", + "shortName": "WMCTEST", + "chainId": 323432, + "networkId": 323432, + "explorers": [ + { + "name": "World Mobile Testnet Explorer", + "url": "https://testnet-explorer.worldmobile.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-32382.json b/_data/chains/eip155-32382.json new file mode 100644 index 000000000000..bb99856847c9 --- /dev/null +++ b/_data/chains/eip155-32382.json @@ -0,0 +1,32 @@ +{ + "name": "Santiment Intelligence Network", + "chain": "Santiment Intelligence Network", + "rpc": ["https://node.sanr.app"], + "faucets": [], + "nativeCurrency": { + "name": "SANR", + "symbol": "SANR", + "decimals": 18 + }, + "infoURL": "https://sanr.app", + "shortName": "SANR", + "chainId": 32382, + "networkId": 32382, + "icon": "sanrchain", + "parent": { + "chain": "eip155-1", + "type": "L2", + "bridges": [ + { + "url": "https://sanr.app" + } + ] + }, + "explorers": [ + { + "name": "Santiment Intelligence Explorer", + "url": "https://app-explorer-pos.sanr.app", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-325.json b/_data/chains/eip155-325.json new file mode 100644 index 000000000000..fdbcc8bf86c6 --- /dev/null +++ b/_data/chains/eip155-325.json @@ -0,0 +1,17 @@ +{ + "name": "GRVT Exchange", + "chain": "ETH", + "rpc": ["https://rpc.grvt.io"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://grvt.io/", + "shortName": "grvt", + "chainId": 325, + "networkId": 325, + "icon": "grvt", + "explorers": [] +} diff --git a/_data/chains/eip155-325000.json b/_data/chains/eip155-325000.json new file mode 100644 index 000000000000..d6ce383b985a --- /dev/null +++ b/_data/chains/eip155-325000.json @@ -0,0 +1,33 @@ +{ + "name": "Camp Network Testnet V2", + "chain": "ETH", + "icon": "camp", + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "rpc": ["https://rpc-campnetwork.xyz"], + "faucets": ["https://www.campnetwork.xyz/faucet"], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.campnetwork.xyz/", + "shortName": "CampV2", + "chainId": 325000, + "networkId": 325000, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://camp-network-testnet.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { "url": "https://bridge.gelato.network/bridge/camp-network-testnet" } + ] + } +} diff --git a/_data/chains/eip155-32520.json b/_data/chains/eip155-32520.json index d3cb41f990b3..6f07f700d7d2 100644 --- a/_data/chains/eip155-32520.json +++ b/_data/chains/eip155-32520.json @@ -2,7 +2,7 @@ "name": "Bitgert Mainnet", "chain": "Brise", "rpc": [ - "https://rpc.icecreamswap.com", + "https://rpc-bitgert.icecreamswap.com", "https://mainnet-rpc.brisescan.com", "https://chainrpc.com", "https://serverrpc.com" diff --git a/_data/chains/eip155-326.json b/_data/chains/eip155-326.json new file mode 100644 index 000000000000..f8b743e3eb78 --- /dev/null +++ b/_data/chains/eip155-326.json @@ -0,0 +1,17 @@ +{ + "name": "GRVT Exchange Testnet", + "chain": "ETH", + "rpc": ["https://zkrpc.testnet.grvt.io"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://grvt.io/", + "shortName": "grvt-sepolia", + "chainId": 326, + "networkId": 326, + "icon": "grvt", + "explorers": [] +} diff --git a/_data/chains/eip155-327126.json b/_data/chains/eip155-327126.json new file mode 100644 index 000000000000..78f4423c814e --- /dev/null +++ b/_data/chains/eip155-327126.json @@ -0,0 +1,23 @@ +{ + "name": "WABA Chain Testnet", + "chain": "WABA Mainnet", + "icon": "waba", + "rpc": ["https://rpc.wabaworld.com"], + "faucets": [], + "nativeCurrency": { + "name": "WABA", + "symbol": "WABA", + "decimals": 18 + }, + "infoURL": "https://www.wabanetwork.org", + "shortName": "waba", + "chainId": 327126, + "networkId": 327126, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.wabaworld.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-32769.json b/_data/chains/eip155-32769.json index f8f81f09c4b7..6496cf185ae6 100644 --- a/_data/chains/eip155-32769.json +++ b/_data/chains/eip155-32769.json @@ -1,5 +1,5 @@ { - "name": "Zilliqa EVM", + "name": "Zilliqa 2", "chain": "ZIL", "rpc": ["https://api.zilliqa.com"], "faucets": [], @@ -15,9 +15,9 @@ "icon": "zilliqa", "explorers": [ { - "name": "Zilliqa EVM Explorer", - "url": "https://evmx.zilliqa.com", - "standard": "none" + "name": "Zilliqa 2 Mainnet Explorer", + "url": "https://zilliqa.blockscout.com", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-32770.json b/_data/chains/eip155-32770.json new file mode 100644 index 000000000000..0ebff61302e8 --- /dev/null +++ b/_data/chains/eip155-32770.json @@ -0,0 +1,23 @@ +{ + "name": "Zilliqa 2 EVM proto-mainnet", + "chain": "ZIL", + "rpc": ["https://api.zq2-protomainnet.zilliqa.com"], + "faucets": ["https://faucet.zq2-protomainnet.zilliqa.com"], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com/", + "shortName": "zq2-proto-mainnet", + "chainId": 32770, + "networkId": 32770, + "icon": "zilliqa", + "explorers": [ + { + "name": "Zilliqa 2 EVM proto-mainnet explorer", + "url": "https://explorer.zq2-protomainnet.zilliqa.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-328527.json b/_data/chains/eip155-328527.json new file mode 100644 index 000000000000..cd06360d237a --- /dev/null +++ b/_data/chains/eip155-328527.json @@ -0,0 +1,23 @@ +{ + "name": "Nal Mainnet", + "chain": "ETH", + "icon": "nal", + "rpc": ["https://rpc.nal.network", "wss://wss.nal.network"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.nal.network", + "shortName": "nal", + "chainId": 328527, + "networkId": 328527, + "explorers": [ + { + "name": "Nal Network Explorer", + "url": "https://scan.nal.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-328527624.json b/_data/chains/eip155-328527624.json new file mode 100644 index 000000000000..c0c1fa8edf26 --- /dev/null +++ b/_data/chains/eip155-328527624.json @@ -0,0 +1,23 @@ +{ + "name": "Nal Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://testnet-rpc.nal.network"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "nal", + "infoURL": "https://www.nal.network", + "shortName": "nalsep", + "chainId": 328527624, + "networkId": 328527624, + "explorers": [ + { + "name": "Nal Sepolia Testnet Network Explorer", + "url": "https://testnet-scan.nal.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3300.json b/_data/chains/eip155-3300.json new file mode 100644 index 000000000000..f61e5e647c6c --- /dev/null +++ b/_data/chains/eip155-3300.json @@ -0,0 +1,27 @@ +{ + "name": "Realio Testnet", + "chain": "Realio Testnet", + "rpc": [ + "https://json-rpc.realiostage.network", + "https://realio-testnet.json-rpc.decentrio.ventures" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rio", + "symbol": "RIO", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.realio.network", + "shortName": "realiotestnet", + "chainId": 3300, + "networkId": 3300, + "icon": "realiotestnet", + "explorers": [ + { + "name": "Realio Testnet Explorer", + "url": "https://explorer.realiostage.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-3301.json b/_data/chains/eip155-3301.json new file mode 100644 index 000000000000..12a9880a3bb4 --- /dev/null +++ b/_data/chains/eip155-3301.json @@ -0,0 +1,27 @@ +{ + "name": "Realio", + "chain": "Realio", + "rpc": [ + "https://json-rpc.realio.network", + "https://realio.json-rpc.decentrio.ventures" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rio", + "symbol": "RIO", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.realio.network", + "shortName": "realio", + "chainId": 3301, + "networkId": 3301, + "icon": "realio", + "explorers": [ + { + "name": "Realio Explorer", + "url": "https://explorer.realio.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-331.json b/_data/chains/eip155-331.json new file mode 100644 index 000000000000..763f2a225a5a --- /dev/null +++ b/_data/chains/eip155-331.json @@ -0,0 +1,34 @@ +{ + "name": "Telos zkEVM Testnet", + "title": "Telos zkEVM Testnet", + "chain": "Telos", + "rpc": ["https://zkrpc.testnet.telos.net"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "telos-zkevm-testnet", + "chainId": 331, + "networkId": 331, + "icon": "telos", + "explorers": [ + { + "name": "TeloScan", + "icon": "teloscan", + "url": "https://zkexplorer.testnet.telos.net", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://zkbridge.testnet.telos.net" + } + ] + } +} diff --git a/_data/chains/eip155-33101.json b/_data/chains/eip155-33101.json index 1dea17a4c5b1..84c5297134bc 100644 --- a/_data/chains/eip155-33101.json +++ b/_data/chains/eip155-33101.json @@ -1,23 +1,23 @@ { - "name": "Zilliqa EVM Testnet", + "name": "Zilliqa 2 Testnet", "chain": "ZIL", - "rpc": ["https://dev-api.zilliqa.com"], - "faucets": ["https://dev-wallet.zilliqa.com/faucet?network=testnet"], + "rpc": ["https://api.testnet.zilliqa.com"], + "faucets": ["https://faucet.testnet.zilliqa.com"], "nativeCurrency": { "name": "Zilliqa", "symbol": "ZIL", "decimals": 18 }, - "infoURL": "https://www.zilliqa.com/", + "infoURL": "https://www.zilliqa.com", "shortName": "zil-testnet", "chainId": 33101, "networkId": 33101, "slip44": 1, "explorers": [ { - "name": "Zilliqa EVM Explorer", - "url": "https://evmx.zilliqa.com", - "standard": "none" + "name": "Zilliqa 2 Testnet Explorer", + "url": "https://testnet.zilliqa.blockscout.com", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-33103.json b/_data/chains/eip155-33103.json new file mode 100644 index 000000000000..bd152a65b3da --- /dev/null +++ b/_data/chains/eip155-33103.json @@ -0,0 +1,23 @@ +{ + "name": "Zilliqa 2 EVM proto-testnet", + "chain": "ZIL", + "rpc": ["https://api.zq2-prototestnet.zilliqa.com"], + "faucets": ["https://faucet.zq2-prototestnet.zilliqa.com"], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com/", + "shortName": "zq2-proto-testnet", + "chainId": 33103, + "networkId": 33103, + "icon": "zilliqa", + "explorers": [ + { + "name": "Zilliqa 2 EVM proto-testnet explorer", + "url": "https://explorer.zq2-prototestnet.zilliqa.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-33111.json b/_data/chains/eip155-33111.json new file mode 100644 index 000000000000..bdb7d3b4cf2b --- /dev/null +++ b/_data/chains/eip155-33111.json @@ -0,0 +1,23 @@ +{ + "name": "Curtis", + "chain": "Curtis", + "rpc": ["https://rpc.curtis.apechain.com"], + "faucets": ["https://curtis.hub.caldera.xyz"], + "nativeCurrency": { + "name": "ApeCoin", + "symbol": "APE", + "decimals": 18 + }, + "infoURL": "https://curtis.hub.caldera.xyz", + "shortName": "curtis", + "chainId": 33111, + "networkId": 33111, + "icon": "curtis", + "explorers": [ + { + "name": "Curtis Explorer", + "url": "https://explorer.curtis.apechain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-33139.json b/_data/chains/eip155-33139.json new file mode 100644 index 000000000000..d780c5bece17 --- /dev/null +++ b/_data/chains/eip155-33139.json @@ -0,0 +1,22 @@ +{ + "name": "ApeChain", + "chain": "apechain", + "rpc": ["https://rpc.apechain.com"], + "faucets": [], + "nativeCurrency": { + "name": "ApeCoin", + "symbol": "APE", + "decimals": 18 + }, + "infoURL": "https://apechain.com", + "shortName": "apechain", + "chainId": 33139, + "networkId": 33139, + "explorers": [ + { + "name": "ApeChain Explorer", + "url": "https://apescan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-332.json b/_data/chains/eip155-332.json new file mode 100644 index 000000000000..8084ebe09c0e --- /dev/null +++ b/_data/chains/eip155-332.json @@ -0,0 +1,25 @@ +{ + "name": "Omax Testnet", + "chain": "Omax Chain", + "rpc": ["https://testapi.omaxray.com"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://faucet.omaxray.com/"], + "nativeCurrency": { + "name": "OMAX TESTCOIN", + "symbol": "OMAX", + "decimals": 18 + }, + "infoURL": "https://www.omaxcoin.com/", + "shortName": "omaxt", + "chainId": 332, + "networkId": 332, + "icon": "omaxchain", + "explorers": [ + { + "name": "Omax Chain Explorer", + "url": "https://testnet.omaxscan.com", + "icon": "omaxray", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3332.json b/_data/chains/eip155-3332.json new file mode 100644 index 000000000000..b5a9c2ead182 --- /dev/null +++ b/_data/chains/eip155-3332.json @@ -0,0 +1,21 @@ +{ + "name": "EthStorage L2 Mainnet", + "chain": "EthStorage", + "rpc": ["http://mainnet.l2.ethstorage.io:9540"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ethstorage.io/", + "shortName": "esl2-m", + "chainId": 3332, + "networkId": 3332, + "slip44": 1, + "status": "incubating", + "parent": { + "type": "L2", + "chain": "eip155-1" + } +} diff --git a/_data/chains/eip155-3335.json b/_data/chains/eip155-3335.json index e0900543cade..c8cb83ac84f1 100644 --- a/_data/chains/eip155-3335.json +++ b/_data/chains/eip155-3335.json @@ -1,16 +1,27 @@ { - "name": "EthStorage Mainnet", - "chain": "EthStorage", - "rpc": ["http://mainnet.ethstorage.io:9540"], + "name": "QuarkChain L2 Beta Testnet", + "chain": "QuarkChain", + "rpc": ["https://rpc.beta.testnet.l2.quarkchain.io:8545"], "faucets": [], "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", + "name": "QKC", + "symbol": "QKC", "decimals": 18 }, - "infoURL": "https://ethstorage.io/", - "shortName": "es-m", + "infoURL": "https://www.quarkchain.io", + "shortName": "qkcl2-b", "chainId": 3335, "networkId": 3335, - "slip44": 1 + "slip44": 1, + "parent": { + "type": "L2", + "chain": "eip155-11155111" + }, + "explorers": [ + { + "name": "quarkchain-beta-test", + "url": "https://explorer.beta.testnet.l2.quarkchain.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-3336.json b/_data/chains/eip155-3336.json new file mode 100644 index 000000000000..70c021414579 --- /dev/null +++ b/_data/chains/eip155-3336.json @@ -0,0 +1,21 @@ +{ + "name": "EthStorage L2 Testnet", + "chain": "EthStorage", + "rpc": ["http://testnet.l2.ethstorage.io:9540"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ethstorage.io/", + "shortName": "esl2-t", + "chainId": 3336, + "networkId": 3336, + "slip44": 1, + "status": "incubating", + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } +} diff --git a/_data/chains/eip155-3337.json b/_data/chains/eip155-3337.json new file mode 100644 index 000000000000..27a75c3e480b --- /dev/null +++ b/_data/chains/eip155-3337.json @@ -0,0 +1,17 @@ +{ + "name": "EthStorage Devnet", + "chain": "EthStorage", + "rpc": ["http://devnet.ethstorage.io:9540"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ethstorage.io/", + "shortName": "es-d", + "chainId": 3337, + "networkId": 3337, + "slip44": 1, + "status": "incubating" +} diff --git a/_data/chains/eip155-3338.json b/_data/chains/eip155-3338.json new file mode 100644 index 000000000000..b290732f3d59 --- /dev/null +++ b/_data/chains/eip155-3338.json @@ -0,0 +1,27 @@ +{ + "name": "peaq", + "chain": "peaq", + "icon": "peaq", + "rpc": [ + "https://quicknode1.peaq.xyz", + "https://quicknode2.peaq.xyz", + "https://quicknode3.peaq.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "peaq", + "symbol": "PEAQ", + "decimals": 18 + }, + "infoURL": "https://www.peaq.xyz", + "shortName": "PEAQ", + "chainId": 3338, + "networkId": 3338, + "explorers": [ + { + "name": "Subscan", + "url": "https://peaq.subscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-3339.json b/_data/chains/eip155-3339.json new file mode 100644 index 000000000000..d4a997c4e650 --- /dev/null +++ b/_data/chains/eip155-3339.json @@ -0,0 +1,17 @@ +{ + "name": "EthStorage Mainnet", + "chain": "EthStorage", + "rpc": ["http://mainnet.ethstorage.io:9540"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ethstorage.io/", + "shortName": "es-m", + "chainId": 3339, + "networkId": 3339, + "slip44": 1, + "status": "incubating" +} diff --git a/_data/chains/eip155-33401.json b/_data/chains/eip155-33401.json new file mode 100644 index 000000000000..a6fb118642a4 --- /dev/null +++ b/_data/chains/eip155-33401.json @@ -0,0 +1,25 @@ +{ + "name": "SlingShot", + "chain": "SLING", + "rpc": ["https://rpc.slingshotdao.com"], + "faucets": [], + "nativeCurrency": { + "name": "Sling", + "symbol": "SLING", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://slingshotdao.com", + "shortName": "slingshot", + "chainId": 33401, + "networkId": 33401, + "icon": "slingshot", + "explorers": [ + { + "name": "SlingShot Explorer", + "url": "https://explore.slingshotdao.com", + "icon": "slingshot", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3344.json b/_data/chains/eip155-3344.json new file mode 100644 index 000000000000..6f3d673d4964 --- /dev/null +++ b/_data/chains/eip155-3344.json @@ -0,0 +1,33 @@ +{ + "name": "Pentagon Chain", + "chain": "Pentagon Chain", + "rpc": ["https://rpc.pentagon.games"], + "faucets": ["https://bridge.pentagon.games"], + "nativeCurrency": { + "name": "Pentagon Chain", + "symbol": "PC", + "decimals": 18 + }, + "icon": "pentagonchain", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://pentagon.games", + "shortName": "PentagonChain", + "chainId": 3344, + "networkId": 3344, + "explorers": [ + { + "name": "Pentagon Chain Explorer", + "url": "https://explorer.pentagon.games", + "icon": "pentagonchain", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-33469.json b/_data/chains/eip155-33469.json index ac85c052845a..ad5b5707bccb 100644 --- a/_data/chains/eip155-33469.json +++ b/_data/chains/eip155-33469.json @@ -1,5 +1,5 @@ { - "name": "Zilliqa-2 EVM Devnet", + "name": "Zilliqa 2 EVM devnet", "chain": "ZIL", "rpc": ["https://api.zq2-devnet.zilliqa.com"], "faucets": ["https://faucet.zq2-devnet.zilliqa.com"], diff --git a/_data/chains/eip155-33626250.json b/_data/chains/eip155-33626250.json new file mode 100644 index 000000000000..89a57d591d46 --- /dev/null +++ b/_data/chains/eip155-33626250.json @@ -0,0 +1,23 @@ +{ + "name": "Toliman Suave Testnet", + "chain": "ETH", + "rpc": ["https://rpc.toliman.suave.flashbots.net"], + "faucets": ["https://faucet.toliman.suave.flashbots.net"], + "nativeCurrency": { + "name": "SUAVE Toliman Eth", + "symbol": "TEEth", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://suave-alpha.flashbots.net/toliman", + "shortName": "suave-toliman", + "chainId": 33626250, + "networkId": 33626250, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.toliman.suave.flashbots.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3366.json b/_data/chains/eip155-3366.json new file mode 100644 index 000000000000..1c69a21e53c4 --- /dev/null +++ b/_data/chains/eip155-3366.json @@ -0,0 +1,27 @@ +{ + "name": "Meroneum", + "chain": "MERON", + "icon": "meron", + "rpc": [ + "https://mainnet-node1.meronscan.ai/", + "https://mainnet-node2.meronscan.ai/", + "https://mainnet-node3.meronscan.ai/" + ], + "faucets": [], + "nativeCurrency": { + "name": "MERON", + "symbol": "MERON", + "decimals": 18 + }, + "infoURL": "https://www.meroneum.ai", + "shortName": "meron-testnet", + "chainId": 3366, + "networkId": 3366, + "explorers": [ + { + "name": "meronscan", + "url": "https://meronscan.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3369.json b/_data/chains/eip155-3369.json new file mode 100644 index 000000000000..e9dfaf0683c5 --- /dev/null +++ b/_data/chains/eip155-3369.json @@ -0,0 +1,27 @@ +{ + "name": "Meroneum Testnet", + "chain": "MERON", + "icon": "meron", + "rpc": [ + "https://testnet-node1.meronscan.ai/", + "https://testnet-node2.meronscan.ai/", + "https://testnet-node3.meronscan.ai/" + ], + "faucets": [], + "nativeCurrency": { + "name": "MERON", + "symbol": "MERON", + "decimals": 18 + }, + "infoURL": "https://www.meroneum.ai/", + "shortName": "meron", + "chainId": 3369, + "networkId": 3369, + "explorers": [ + { + "name": "meronscan", + "url": "https://testnet.meronscan.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-337.json b/_data/chains/eip155-337.json new file mode 100644 index 000000000000..cf7b8df3bcb3 --- /dev/null +++ b/_data/chains/eip155-337.json @@ -0,0 +1,23 @@ +{ + "name": "R5 Network", + "chain": "r5", + "rpc": ["https://rpc.r5.network"], + "faucets": [], + "nativeCurrency": { + "name": "R5", + "symbol": "R5", + "decimals": 18 + }, + "infoURL": "https://r5.network", + "shortName": "r5", + "chainId": 337, + "networkId": 337, + "icon": "r5", + "explorers": [ + { + "name": "R5 Explorer", + "url": "https://explorer.r5.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-33710.json b/_data/chains/eip155-33710.json new file mode 100644 index 000000000000..d6685b2e5a85 --- /dev/null +++ b/_data/chains/eip155-33710.json @@ -0,0 +1,23 @@ +{ + "name": "R5 Network Testnet", + "chain": "r5testnet", + "rpc": ["https://rpc-testnet.r5.network"], + "faucets": [], + "nativeCurrency": { + "name": "Test R5", + "symbol": "TR5", + "decimals": 18 + }, + "infoURL": "https://r5.network", + "shortName": "tr5", + "chainId": 33710, + "networkId": 33710, + "icon": "r5", + "explorers": [ + { + "name": "R5 Explorer", + "url": "https://explorer-testnet.r5.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-33772211.json b/_data/chains/eip155-33772211.json new file mode 100644 index 000000000000..da10b2e716cd --- /dev/null +++ b/_data/chains/eip155-33772211.json @@ -0,0 +1,30 @@ +{ + "name": "Xone Testnet", + "chain": "XOC", + "icon": "xone-test", + "rpc": [ + "https://rpc-testnet.xone.plus", + "https://rpc-testnet.xone.org", + "https://rpc-testnet.knight.center", + "wss://wss-rpc-testnet.xone.org" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://faucet.xone.org/"], + "nativeCurrency": { + "name": "Xone Coin", + "symbol": "XOC", + "decimals": 18 + }, + "infoURL": "https://xone.org", + "shortName": "txoc", + "chainId": 33772211, + "networkId": 33772211, + "explorers": [ + { + "name": "testnet-xscscan", + "url": "https://testnet.xscscan.com", + "icon": "testnet-xscscan", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-339.json b/_data/chains/eip155-339.json new file mode 100644 index 000000000000..1d0e40d72354 --- /dev/null +++ b/_data/chains/eip155-339.json @@ -0,0 +1,16 @@ +{ + "name": "Pencils Protocol", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Pencils Protocol Token", + "symbol": "DAPP", + "decimals": 18 + }, + "infoURL": "https://pencilsprotocol.io/", + "shortName": "dapp", + "chainId": 339, + "networkId": 339, + "status": "incubating" +} diff --git a/_data/chains/eip155-33979.json b/_data/chains/eip155-33979.json index c49843c5f4a5..82bd2fe377b1 100644 --- a/_data/chains/eip155-33979.json +++ b/_data/chains/eip155-33979.json @@ -2,7 +2,10 @@ "name": "Funki", "chain": "ETH", "icon": "funki", - "rpc": [], + "rpc": [ + "https://rpc-mainnet.funkichain.com", + "wss://rpc-mainnet.funkichain.com" + ], "faucets": [], "nativeCurrency": { "name": "Ether", @@ -16,7 +19,12 @@ "explorers": [ { "name": "Funki Mainnet Explorer", - "url": "https://mainnet.funkichain.com", + "url": "https://explorer.funkichain.com", + "standard": "none" + }, + { + "name": "FunkiScan", + "url": "https://funkiscan.io", "standard": "none" } ] diff --git a/_data/chains/eip155-3397901.json b/_data/chains/eip155-3397901.json index 8950842a51f2..0a106540b95f 100644 --- a/_data/chains/eip155-3397901.json +++ b/_data/chains/eip155-3397901.json @@ -1,9 +1,9 @@ { - "name": "Funki Sepolia Sandbox", + "name": "Funki Sepolia Testnet", "chain": "ETH", "icon": "funki", "rpc": ["https://funki-testnet.alt.technology"], - "faucets": [], + "faucets": ["https://funkichain.com/portfolio"], "nativeCurrency": { "name": "Ether", "symbol": "ETH", @@ -14,9 +14,19 @@ "chainId": 3397901, "networkId": 3397901, "explorers": [ + { + "name": "Funki Sepolia Testnet Explorer", + "url": "https://testnet.funkiscan.io", + "standard": "none" + }, { "name": "Funki Sepolia Sandbox Explorer", - "url": "https://sepolia-sandbox.funkichain.com", + "url": "https://testnet-explorer.funkichain.com", + "standard": "none" + }, + { + "name": "Funki Sepolia Testnet Explorer", + "url": "https://testnet.funkiscan.io", "standard": "none" } ] diff --git a/_data/chains/eip155-33999.json b/_data/chains/eip155-33999.json new file mode 100644 index 000000000000..1d350299d92e --- /dev/null +++ b/_data/chains/eip155-33999.json @@ -0,0 +1,16 @@ +{ + "name": "Pencils Protocol Sepolia Testnet", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Pencils Protocol Sepolia Testnet Token", + "symbol": "DAPPST", + "decimals": 18 + }, + "infoURL": "https://pencilsprotocol.io/", + "shortName": "dapp-sepolia", + "chainId": 33999, + "networkId": 33999, + "status": "incubating" +} diff --git a/_data/chains/eip155-3409.json b/_data/chains/eip155-3409.json new file mode 100644 index 000000000000..52837b66d474 --- /dev/null +++ b/_data/chains/eip155-3409.json @@ -0,0 +1,23 @@ +{ + "name": "Pepe Unchained", + "chain": "PEPU", + "icon": "pepu", + "rpc": ["https://rpc-pepe-unchained-gupg0lo9wf.t.conduit.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "PEPU", + "symbol": "PEPU", + "decimals": 18 + }, + "infoURL": "https://pepeunchained.com/", + "shortName": "PEPU", + "chainId": 3409, + "networkId": 3409, + "explorers": [ + { + "name": "pepuscan", + "url": "https://pepuscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3416255149.json b/_data/chains/eip155-3416255149.json new file mode 100644 index 000000000000..2a70f41d8bb7 --- /dev/null +++ b/_data/chains/eip155-3416255149.json @@ -0,0 +1,25 @@ +{ + "name": "Ultima Mainnet", + "chain": "ULTIMA", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ultima", + "symbol": "ULTIMA", + "decimals": 6 + }, + "infoURL": "https://ultima.io", + "shortName": "ultima", + "chainId": 3416255149, + "networkId": 3416255149, + "slip44": 785, + "icon": "ultima", + "explorers": [ + { + "name": "ultimachain", + "url": "https://ultimachain.info", + "icon": "ultima", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-3424.json b/_data/chains/eip155-3424.json index 0410af388cfc..c4cefd1b87ea 100644 --- a/_data/chains/eip155-3424.json +++ b/_data/chains/eip155-3424.json @@ -2,7 +2,7 @@ "name": "EVOLVE Mainnet", "chain": "EVO", "icon": "evolveIcon", - "rpc": ["https://rpc.evolveblockchain.io"], + "rpc": ["https://rpc.evoexplorer.com"], "faucets": [], "nativeCurrency": { "name": "Evolve", diff --git a/_data/chains/eip155-34443.json b/_data/chains/eip155-34443.json index 48c5d7e8beb3..9a26ae8baae1 100644 --- a/_data/chains/eip155-34443.json +++ b/_data/chains/eip155-34443.json @@ -22,6 +22,11 @@ "name": "modescout", "url": "https://explorer.mode.network", "standard": "none" + }, + { + "name": "Routescan", + "url": "https://modescan.io", + "standard": "none" } ] } diff --git a/_data/chains/eip155-345.json b/_data/chains/eip155-345.json new file mode 100644 index 000000000000..dc4a4ba89b02 --- /dev/null +++ b/_data/chains/eip155-345.json @@ -0,0 +1,24 @@ +{ + "name": "TSC Mainnet", + "chain": "Trust Smart Chain", + "rpc": ["https://rpc01.trias.one"], + "faucets": [], + "nativeCurrency": { + "name": "TAS", + "symbol": "TAS", + "decimals": 18 + }, + "infoURL": "https://www.trias.one", + "shortName": "TSC", + "icon": "netx", + "chainId": 345, + "networkId": 16, + "explorers": [ + { + "name": "tscscan", + "url": "https://www.tscscan.io", + "icon": "netxscan", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-34504.json b/_data/chains/eip155-34504.json new file mode 100644 index 000000000000..7dbbd008a16a --- /dev/null +++ b/_data/chains/eip155-34504.json @@ -0,0 +1,24 @@ +{ + "name": "ZEUS Mainnet", + "chain": "ZEUSX", + "icon": "zeusicon", + "rpc": ["https://mainnet-rpc.zeuschainscan.io"], + "nativeCurrency": { + "name": "The ZEUS Token", + "symbol": "ZEUSX", + "decimals": 18 + }, + "infoURL": "https://zeuschainscan.io", + "shortName": "ZEUSX", + "chainId": 34504, + "networkId": 34504, + "faucets": [], + "explorers": [ + { + "name": "ZEUS Mainnet Explorer", + "url": "https://zeuschainscan.io", + "icon": "zeusicon", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3456.json b/_data/chains/eip155-3456.json new file mode 100644 index 000000000000..c8d6eeec6613 --- /dev/null +++ b/_data/chains/eip155-3456.json @@ -0,0 +1,24 @@ +{ + "name": "LayerEdge testnet", + "chain": "LayerEdge", + "rpc": ["https://testnet-rpc.layeredge.io"], + "faucets": ["https://testnet-faucet.layeredge.io"], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://www.layeredge.io", + "shortName": "LayerEdge-testnet", + "chainId": 3456, + "networkId": 3456, + "icon": "layerEdge", + "explorers": [ + { + "name": "LayerEdge Testnet Explorer", + "url": "https://testnet-explorer.layeredge.io", + "icon": "layerEdge", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3490.json b/_data/chains/eip155-3490.json new file mode 100644 index 000000000000..80625c1a91fa --- /dev/null +++ b/_data/chains/eip155-3490.json @@ -0,0 +1,25 @@ +{ + "name": "GTCSCAN", + "chain": "GTC", + "icon": "gtc", + "rpc": ["https://gtc-dataseed.gtcscan.io/"], + "faucets": [], + "nativeCurrency": { + "name": "GTC", + "symbol": "GTC", + "decimals": 18 + }, + "infoURL": "https://gtcscan.io/", + "shortName": "gtc", + "chainId": 3490, + "networkId": 3490, + "slip44": 1, + "explorers": [ + { + "name": "GTCScan Explorer", + "url": "https://gtcscan.io", + "standard": "none", + "icon": "gtc" + } + ] +} diff --git a/_data/chains/eip155-34949059.json b/_data/chains/eip155-34949059.json new file mode 100644 index 000000000000..89b2544e9db2 --- /dev/null +++ b/_data/chains/eip155-34949059.json @@ -0,0 +1,38 @@ +{ + "name": "citronus-citro", + "title": "Citronus-Citro", + "chain": "citronus-citro", + "rpc": [ + "https://rpc.citro-testnet.t.raas.gelato.cloud", + "wss://testnet-ws.eh-dev.app" + ], + "nativeCurrency": { + "name": "Citronus", + "symbol": "CITRO", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/citronus-citro", + "faucets": [], + "shortName": "citronus-citro", + "chainId": 34949059, + "networkId": 34949059, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://test.citronus.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://testnet-bridge.gelato.network/bridge/citronus-citro" + } + ] + }, + "status": "active" +} diff --git a/_data/chains/eip155-3502.json b/_data/chains/eip155-3502.json new file mode 100644 index 000000000000..ad63e89ca931 --- /dev/null +++ b/_data/chains/eip155-3502.json @@ -0,0 +1,25 @@ +{ + "name": "JFINPOS", + "chain": "JFINPOS", + "icon": "jfinpos", + "rpc": ["https://rpc.jfinpos.com"], + "faucets": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "nativeCurrency": { + "name": "JFINPOS", + "symbol": "JPOS", + "decimals": 18 + }, + "infoURL": "https://jfinpos.com", + "shortName": "jzero", + "chainId": 3502, + "networkId": 3502, + "explorers": [ + { + "name": "JFINPOS Explorer", + "url": "https://exp.jfinpos.com", + "icon": "jfinpos", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-355110.json b/_data/chains/eip155-355110.json index 12803ddc5970..1a5b5d4b93ba 100644 --- a/_data/chains/eip155-355110.json +++ b/_data/chains/eip155-355110.json @@ -1,6 +1,6 @@ { "name": "Bitfinity Network Mainnet", - "chain": "BFT", + "chain": "BTF", "features": [ { "name": "EIP155" @@ -13,7 +13,7 @@ "faucets": [], "nativeCurrency": { "name": "Bitfinity Token", - "symbol": "BFT", + "symbol": "BTF", "decimals": 18 }, "infoURL": "https://bitfinity.network", diff --git a/_data/chains/eip155-355113.json b/_data/chains/eip155-355113.json index 6c9c0288c10e..bf29b86af762 100644 --- a/_data/chains/eip155-355113.json +++ b/_data/chains/eip155-355113.json @@ -1,6 +1,6 @@ { "name": "Bitfinity Network Testnet", - "chain": "BFT", + "chain": "BTF", "features": [ { "name": "EIP155" @@ -13,7 +13,7 @@ "faucets": ["https://bitfinity.network/faucet"], "nativeCurrency": { "name": "Bitfinity Token", - "symbol": "BFT", + "symbol": "BTF", "decimals": 18 }, "infoURL": "https://bitfinity.network", diff --git a/_data/chains/eip155-360.json b/_data/chains/eip155-360.json new file mode 100644 index 000000000000..fcaa5b2abe46 --- /dev/null +++ b/_data/chains/eip155-360.json @@ -0,0 +1,27 @@ +{ + "name": "Shape", + "chain": "ETH", + "rpc": [ + "https://mainnet.shape.network", + "https://shape-mainnet.g.alchemy.com/public" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://shape.network", + "shortName": "shape", + "chainId": 360, + "networkId": 360, + "icon": "shape", + "explorers": [ + { + "name": "shapescan", + "url": "https://shapescan.xyz", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-3636.json b/_data/chains/eip155-3636.json index 325f310858fc..fa4b06faf9f8 100644 --- a/_data/chains/eip155-3636.json +++ b/_data/chains/eip155-3636.json @@ -10,19 +10,14 @@ "decimals": 18 }, "infoURL": "https://botanixlabs.xyz", - "shortName": "BTNX", + "shortName": "BTNXt", "chainId": 3636, "networkId": 3636, "slip44": 1, "explorers": [ { - "name": "3xpl", - "url": "https://3xpl.com/botanix", - "standard": "EIP3091" - }, - { - "name": "Blockscout", - "url": "https://blockscout.botanixlabs.dev", + "name": "Botanix Explorer", + "url": "https://testnet.botanixscan.io", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-3637.json b/_data/chains/eip155-3637.json index 8c0845253c00..05b51faa093f 100644 --- a/_data/chains/eip155-3637.json +++ b/_data/chains/eip155-3637.json @@ -1,22 +1,22 @@ { "name": "Botanix Mainnet", - "chain": "BTC", + "chain": "BOTANIX", "icon": "botanix", - "rpc": ["https://rpc.btxtestchain.com"], - "faucets": ["https://faucet.btxtestchain.com"], + "rpc": ["https://rpc.botanixlabs.com"], + "faucets": [], "nativeCurrency": { "name": "Botanix", "symbol": "BTC", "decimals": 18 }, - "infoURL": "https://btxtestchain.com", - "shortName": "BTCm", + "infoURL": "https://botanixlabs.com", + "shortName": "BTNX", "chainId": 3637, "networkId": 3637, "explorers": [ { - "name": "Botanix", - "url": "https://btxtestchain.com", + "name": "Botanix Explorer", + "url": "https://botanixscan.io", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-3639.json b/_data/chains/eip155-3639.json index b20ebb416026..05a802788693 100644 --- a/_data/chains/eip155-3639.json +++ b/_data/chains/eip155-3639.json @@ -1,6 +1,7 @@ { "name": "iChain Network", "chain": "iChain", + "icon": "iChain", "rpc": ["https://rpc.ichainscan.com"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-3645.json b/_data/chains/eip155-3645.json new file mode 100644 index 000000000000..d316e1efa1d4 --- /dev/null +++ b/_data/chains/eip155-3645.json @@ -0,0 +1,23 @@ +{ + "name": "iChain Testnet", + "chain": "iChain Testnet", + "icon": "iChain", + "rpc": ["https://istanbul.ichainscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "ISLAMICOIN", + "symbol": "ISLAMI", + "decimals": 18 + }, + "infoURL": "https://islamicoin.finance", + "shortName": "ISLAMIT", + "chainId": 3645, + "networkId": 3645, + "explorers": [ + { + "name": "iChainscan", + "url": "https://test.ichainscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-369.json b/_data/chains/eip155-369.json index 30a74cf4e387..a09c4d0c7fc6 100644 --- a/_data/chains/eip155-369.json +++ b/_data/chains/eip155-369.json @@ -13,6 +13,7 @@ "https://rpc-pulsechain.g4mm4.io", "wss://rpc-pulsechain.g4mm4.io" ], + "icon": "pulsechain", "slip44": 60, "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": [], @@ -27,9 +28,9 @@ }, "explorers": [ { - "name": "blockscout", - "url": "https://scan.pulsechain.com", - "icon": "blockscout", + "name": "pulsechain", + "url": "https://ipfs.scan.pulsechain.com", + "icon": "pulsechain", "standard": "EIP3091" }, { diff --git a/_data/chains/eip155-37111.json b/_data/chains/eip155-37111.json new file mode 100644 index 000000000000..df486c585956 --- /dev/null +++ b/_data/chains/eip155-37111.json @@ -0,0 +1,29 @@ +{ + "name": "Lens Testnet", + "title": "Lens Network Sepolia Testnet", + "chain": "Lens", + "rpc": ["https://rpc.testnet.lens.dev"], + "faucets": ["https://www.alchemy.com/faucets/lens-sepolia"], + "chainId": 37111, + "networkId": 37111, + "nativeCurrency": { + "name": "GRASS", + "symbol": "GRASS", + "decimals": 18 + }, + "icon": "lens", + "infoURL": "https://www.lens.xyz", + "shortName": "lens-sepolia", + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://portal.testnet.lens.dev/bridge" }] + }, + "explorers": [ + { + "name": "Lens Testnet Block Explorer", + "url": "https://block-explorer.testnet.lens.dev", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-3721.json b/_data/chains/eip155-3721.json new file mode 100644 index 000000000000..4902d568f475 --- /dev/null +++ b/_data/chains/eip155-3721.json @@ -0,0 +1,25 @@ +{ + "name": "Xone Mainnet", + "chain": "XOC", + "icon": "Xonechain", + "rpc": ["https://rpc.xone.org", "wss://rpc-wss.xone.org"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://faucet.xone.org/"], + "nativeCurrency": { + "name": "Xone Coin", + "symbol": "XOC", + "decimals": 18 + }, + "infoURL": "https://xone.org", + "shortName": "XOC", + "chainId": 3721, + "networkId": 3721, + "explorers": [ + { + "name": "Xonescan", + "url": "https://xscscan.com", + "icon": "Xonescan", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3797.json b/_data/chains/eip155-3797.json index cc0e1001b611..1f88a56f0ac8 100644 --- a/_data/chains/eip155-3797.json +++ b/_data/chains/eip155-3797.json @@ -16,12 +16,10 @@ "shortName": "alv", "chainId": 3797, "networkId": 3797, - "icon": "alveychain", "explorers": [ { "name": "AlveyScan", "url": "https://alveyscan.com", - "icon": "alveychain", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-383353.json b/_data/chains/eip155-383353.json new file mode 100644 index 000000000000..c73af6c722b9 --- /dev/null +++ b/_data/chains/eip155-383353.json @@ -0,0 +1,17 @@ +{ + "name": "CheeseChain", + "title": "CheeseChain", + "chain": "CHEESE", + "rpc": ["https://rpc.cheesechain.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "CHEESE", + "symbol": "CHEESE", + "decimals": 18 + }, + "infoURL": "https://cheesechain.xyz", + "shortName": "CheeseChain", + "chainId": 383353, + "networkId": 383353, + "icon": "cheesechain" +} diff --git a/_data/chains/eip155-383414847825.json b/_data/chains/eip155-383414847825.json index 669d19778226..42077af0b9a9 100644 --- a/_data/chains/eip155-383414847825.json +++ b/_data/chains/eip155-383414847825.json @@ -1,8 +1,10 @@ { "name": "Zeniq", "chain": "ZENIQ", - "rpc": ["https://smart.zeniq.network:9545"], - "faucets": ["https://faucet.zeniq.net/"], + "icon": "zeniq", + "rpc": ["https://api.zeniq.network"], + "features": [{ "name": "EIP155" }], + "faucets": ["https://faucet.nomo.zone/", "https://faucet.zeniq.net/"], "nativeCurrency": { "name": "Zeniq", "symbol": "ZENIQ", @@ -12,10 +14,20 @@ "shortName": "zeniq", "chainId": 383414847825, "networkId": 383414847825, + "ens": { + "registry": "0xa0446c88240bCA2A8E0f68C93aa365d25B198aA4" + }, "explorers": [ + { + "name": "zeniqscan", + "url": "https://zeniqscan.com", + "icon": "zeniq", + "standard": "EIP3091" + }, { "name": "zeniq-smart-chain-explorer", "url": "https://smart.zeniq.net", + "icon": "zeniq", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-388.json b/_data/chains/eip155-388.json new file mode 100644 index 000000000000..2868e0f316c0 --- /dev/null +++ b/_data/chains/eip155-388.json @@ -0,0 +1,22 @@ +{ + "name": "Cronos zkEVM Mainnet", + "chain": "CronosZkEVMMainnet", + "rpc": ["https://mainnet.zkevm.cronos.org"], + "faucets": [], + "nativeCurrency": { + "name": "Cronos zkEVM CRO", + "symbol": "zkCRO", + "decimals": 18 + }, + "infoURL": "https://cronos.org/zkevm", + "shortName": "zkCRO", + "chainId": 388, + "networkId": 388, + "explorers": [ + { + "name": "Cronos zkEVM (Mainnet) Chain Explorer", + "url": "https://explorer.zkevm.cronos.org", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-3885.json b/_data/chains/eip155-3885.json index 0ad007ae93f0..f94fbb73546d 100644 --- a/_data/chains/eip155-3885.json +++ b/_data/chains/eip155-3885.json @@ -2,8 +2,14 @@ "name": "Firechain zkEVM Ghostrider", "title": "Firechain zkEVM Testnet", "chain": "Firechain", - "rpc": ["https://rpc-zkevm-ghostrider.thefirechain.com"], - "faucets": ["zkevm-faucet.thefirechain.com"], + "rpc": [ + "https://rpc-zkevm-ghostrider.thefirechain.com", + "https://rpc-zkevm-ghostrider.firestation.io" + ], + "faucets": [ + "zkevm-faucet.thefirechain.com", + "https://zkevm-faucet.firestation.io" + ], "nativeCurrency": { "name": "Ether", "symbol": "ETH", @@ -13,5 +19,12 @@ "shortName": "firechain-zkEVM-testnet", "chainId": 3885, "networkId": 3885, - "explorers": [] + "icon": "ethereum", + "explorers": [ + { + "name": "FireScan", + "url": "https://ghostrider-zkevm.firescan.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-39.json b/_data/chains/eip155-39.json index 418152c0a0ec..a69ee184c228 100644 --- a/_data/chains/eip155-39.json +++ b/_data/chains/eip155-39.json @@ -1,14 +1,14 @@ { "name": "U2U Solaris Mainnet", "chain": "u2u", - "rpc": ["https://rpc-mainnet.uniultra.xyz"], + "rpc": ["https://rpc-mainnet.u2u.xyz"], "faucets": [], "nativeCurrency": { - "name": "Unicorn Ultra", + "name": "U2U Network", "symbol": "U2U", "decimals": 18 }, - "infoURL": "https://uniultra.xyz", + "infoURL": "https://u2u.xyz", "shortName": "u2u", "chainId": 39, "networkId": 39, diff --git a/_data/chains/eip155-3939.json b/_data/chains/eip155-3939.json index 728794b16a7b..98b42f572e66 100644 --- a/_data/chains/eip155-3939.json +++ b/_data/chains/eip155-3939.json @@ -1,7 +1,7 @@ { - "name": "DOS Tesnet", + "name": "DOS Testnet", "chain": "DOS", - "rpc": ["https://test.doschain.com"], + "rpc": ["https://test.doschain.com/"], "faucets": [], "nativeCurrency": { "name": "DOS", diff --git a/_data/chains/eip155-3969.json b/_data/chains/eip155-3969.json new file mode 100644 index 000000000000..5c5b2dad126d --- /dev/null +++ b/_data/chains/eip155-3969.json @@ -0,0 +1,34 @@ +{ + "name": "PayNetwork Mainnet", + "chain": "paynetwork", + "rpc": [ + "https://rpc.paynetwork.io", + "https://paynetwork-main.calderachain.xyz/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "PayNetwork", + "symbol": "Pay", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://paynetwork-main.hub.caldera.xyz", + "shortName": "paynetwork", + "chainId": 3969, + "networkId": 3969, + "icon": "paynetwork", + "explorers": [ + { + "name": "PayNetwork Mainnet Caldera Explorer", + "url": "https://paynetwork-main.calderaexplorer.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-397.json b/_data/chains/eip155-397.json index 4eee6db46f72..ede53d7410cb 100644 --- a/_data/chains/eip155-397.json +++ b/_data/chains/eip155-397.json @@ -1,7 +1,7 @@ { - "name": "Near Mainnet", + "name": "NEAR Protocol", "chain": "NEAR", - "rpc": [], + "rpc": ["https://eth-rpc.mainnet.near.org"], "icon": "near", "faucets": [], "nativeCurrency": { @@ -9,15 +9,15 @@ "symbol": "NEAR", "decimals": 18 }, - "infoURL": "https://near.org/", + "infoURL": "https://near.org", "shortName": "near", "chainId": 397, "networkId": 397, "explorers": [ { - "name": "Near Blocks", - "url": "https://nearblocks.io", - "standard": "none" + "name": "NEAR Explorer", + "url": "https://eth-explorer.near.org", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-398.json b/_data/chains/eip155-398.json index 040d64fd0951..a907c77fc0a1 100644 --- a/_data/chains/eip155-398.json +++ b/_data/chains/eip155-398.json @@ -1,23 +1,23 @@ { - "name": "Near Testnet", + "name": "NEAR Protocol Testnet", "chain": "NEAR", - "rpc": [], + "rpc": ["https://eth-rpc.testnet.near.org"], "icon": "near", "faucets": [], "nativeCurrency": { - "name": "Testnet NEAR", + "name": "NEAR", "symbol": "NEAR", "decimals": 18 }, - "infoURL": "https://aurora.dev", + "infoURL": "https://near.org", "shortName": "near-testnet", "chainId": 398, "networkId": 398, "explorers": [ { - "name": "Near blocks", - "url": "https://testnet.nearblocks.io", - "standard": "none" + "name": "NEAR Explorer", + "url": "https://eth-explorer-testnet.near.org", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-40.json b/_data/chains/eip155-40.json index 70a0c8cd303d..b86dd4a47cbb 100644 --- a/_data/chains/eip155-40.json +++ b/_data/chains/eip155-40.json @@ -2,7 +2,7 @@ "name": "Telos EVM Mainnet", "chain": "TLOS", "rpc": [ - "https://mainnet.telos.net/evm", + "https://rpc.telos.net", "https://telos.drpc.org", "wss://telos.drpc.org" ], diff --git a/_data/chains/eip155-40000.json b/_data/chains/eip155-40000.json new file mode 100644 index 000000000000..63ca15eb6fde --- /dev/null +++ b/_data/chains/eip155-40000.json @@ -0,0 +1,24 @@ +{ + "name": "DIV Chain", + "chain": "DIVC", + "rpc": ["https://rpc.divchain.org"], + "faucets": [], + "features": [{ "name": "EIP155" }], + "nativeCurrency": { + "name": "DIVC", + "symbol": "DIVC", + "decimals": 18 + }, + "infoURL": "https://www.divchain.org", + "shortName": "divc", + "chainId": 40000, + "networkId": 40000, + "icon": "divc", + "explorers": [ + { + "name": "DIV Chain explorer", + "url": "https://scan.divchain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4048.json b/_data/chains/eip155-4048.json index f16d168e81ad..638d363a0789 100644 --- a/_data/chains/eip155-4048.json +++ b/_data/chains/eip155-4048.json @@ -1,16 +1,16 @@ { - "name": "GAN Testnet", + "name": "GANchain L1", "chain": "GAN", "icon": "gpu", "rpc": ["https://rpc.gpu.net"], "faucets": [], "nativeCurrency": { - "name": "GP Token", - "symbol": "GP", + "name": "GPUnet", + "symbol": "GPU", "decimals": 18 }, "infoURL": "https://docs.gpu.net/", - "shortName": "GANTestnet", + "shortName": "GANchain", "chainId": 4048, "networkId": 4048, "explorers": [ diff --git a/_data/chains/eip155-4058.json b/_data/chains/eip155-4058.json new file mode 100644 index 000000000000..a395bc071263 --- /dev/null +++ b/_data/chains/eip155-4058.json @@ -0,0 +1,25 @@ +{ + "name": "Bahamut ocean", + "title": "Bahamut ocean", + "chain": "Bahamut", + "icon": "bahamut", + "rpc": ["https://rpc1.ocean.bahamutchain.com"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "shortName": "ocean", + "infoURL": "https://bahamut.io", + "chainId": 4058, + "networkId": 4058, + "explorers": [ + { + "name": "blockscout", + "url": "https://ocean.ftnscan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-4061.json b/_data/chains/eip155-4061.json index 69f0dbf0647d..44e435ebf6f4 100644 --- a/_data/chains/eip155-4061.json +++ b/_data/chains/eip155-4061.json @@ -1,8 +1,8 @@ { "name": "Nahmii 3 Mainnet", "chain": "Nahmii", - "rpc": [], - "status": "incubating", + "rpc": ["https://rpc.n3.nahmii.io"], + "status": "active", "faucets": [], "nativeCurrency": { "name": "Ether", @@ -14,12 +14,20 @@ "chainId": 4061, "networkId": 4061, "icon": "nahmii", + "explorers": [ + { + "name": "Nahmii 3 Mainnet Explorer", + "url": "https://explorer.nahmii.io", + "icon": "nahmii", + "standard": "EIP3091" + } + ], "parent": { "type": "L2", "chain": "eip155-1", "bridges": [ { - "url": "https://bridge.nahmii.io" + "url": "https://accounts.nahmii.io" } ] } diff --git a/_data/chains/eip155-4062.json b/_data/chains/eip155-4062.json index f72db5290fed..e869c24a8384 100644 --- a/_data/chains/eip155-4062.json +++ b/_data/chains/eip155-4062.json @@ -1,10 +1,11 @@ { "name": "Nahmii 3 Testnet", "chain": "Nahmii", - "rpc": ["https://ngeth.testnet.n3.nahmii.io"], + "rpc": ["https://rpc.testnet.nahmii.io"], + "status": "active", "faucets": [], "nativeCurrency": { - "name": "Goerli Ether", + "name": "Sepolia Ether", "symbol": "ETH", "decimals": 18 }, @@ -17,17 +18,17 @@ "explorers": [ { "name": "Nahmii 3 Testnet Explorer", - "url": "https://explorer.testnet.n3.nahmii.io", + "url": "https://explorer.testnet.nahmii.io", "icon": "nahmii", "standard": "EIP3091" } ], "parent": { "type": "L2", - "chain": "eip155-3", + "chain": "eip155-11155111", "bridges": [ { - "url": "https://bridge.testnet.n3.nahmii.io" + "url": "https://accounts.testnet.nahmii.io" } ] } diff --git a/_data/chains/eip155-4080.json b/_data/chains/eip155-4080.json index fdbb92f54214..2ef9c445bd95 100644 --- a/_data/chains/eip155-4080.json +++ b/_data/chains/eip155-4080.json @@ -1,12 +1,12 @@ { - "name": "Tobe Chain", + "name": "Tobe Chain Testnet", "chain": "TBC", "icon": "tobe", - "rpc": ["https://rpc.tobescan.com"], - "faucets": [], + "rpc": ["https://rpc-testnet.tobescan.com"], + "faucets": ["https://faucet.tobescan.com/faucet"], "nativeCurrency": { "name": "Tobe Coin", - "symbol": "TBC", + "symbol": "TOBE", "decimals": 18 }, "infoURL": "https://tobechain.net", @@ -15,8 +15,8 @@ "networkId": 4080, "explorers": [ { - "name": "tobescan", - "url": "https://tobescan.com", + "name": "tobescan testnet", + "url": "https://testnet.tobescan.com", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-4088.json b/_data/chains/eip155-4088.json new file mode 100644 index 000000000000..7f9ba8850d3f --- /dev/null +++ b/_data/chains/eip155-4088.json @@ -0,0 +1,24 @@ +{ + "name": "Zeroth Mainnet", + "chain": "ZRH", + "icon": "zeroth", + "rpc": ["https://my.zeroth.run"], + "faucets": [], + "nativeCurrency": { + "name": "ZRH", + "symbol": "ZRH", + "decimals": 18 + }, + "infoURL": "https://www.zeroth.foundation", + "shortName": "ZRH", + "chainId": 4088, + "networkId": 4088, + "explorers": [ + { + "name": "Zeroth Explorer", + "url": "https://scan.zeroth.run", + "icon": "zeroth", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-41.json b/_data/chains/eip155-41.json index 4e4978bd258d..ca7a1554749b 100644 --- a/_data/chains/eip155-41.json +++ b/_data/chains/eip155-41.json @@ -2,7 +2,7 @@ "name": "Telos EVM Testnet", "chain": "TLOS", "rpc": [ - "https://testnet.telos.net/evm", + "https://rpc.testnet.telos.net", "https://telos-testnet.drpc.org", "wss://telos-testnet.drpc.org" ], diff --git a/_data/chains/eip155-413413.json b/_data/chains/eip155-413413.json index b2076bcc0779..eee1edacd263 100644 --- a/_data/chains/eip155-413413.json +++ b/_data/chains/eip155-413413.json @@ -5,11 +5,11 @@ "faucets": [], "nativeCurrency": { "name": "AIE", - "symbol": "tAIE", + "symbol": "AIE", "decimals": 18 }, "infoURL": "https://testnet.aiescan.io", - "shortName": "aiet", + "shortName": "aie", "chainId": 413413, "networkId": 413413, "icon": "aie", diff --git a/_data/chains/eip155-41455.json b/_data/chains/eip155-41455.json new file mode 100644 index 000000000000..8c1a9a0fed71 --- /dev/null +++ b/_data/chains/eip155-41455.json @@ -0,0 +1,27 @@ +{ + "name": "Aleph Zero EVM", + "chain": "Aleph Zero EVM", + "icon": "aleph-zero", + "rpc": [ + "https://rpc.alephzero.raas.gelato.cloud", + "wss://ws.alephzero.raas.gelato.cloud" + ], + "faucets": [], + "nativeCurrency": { + "name": "Aleph Zero", + "symbol": "AZERO", + "decimals": 18 + }, + "infoURL": "https://alephzero.org/", + "shortName": "aleph-zero", + "chainId": 41455, + "networkId": 41455, + "explorers": [ + { + "name": "Aleph Zero EVM Mainnet Explorer", + "url": "https://evm-explorer.alephzero.org", + "icon": "aleph-zero", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-4157.json b/_data/chains/eip155-4157.json index 0cbbf4d033cb..472676b3f4c9 100644 --- a/_data/chains/eip155-4157.json +++ b/_data/chains/eip155-4157.json @@ -2,6 +2,7 @@ "name": "CrossFi Testnet", "title": "CrossFi Testnet", "chain": "XFI", + "icon": "crossfi", "rpc": ["https://rpc.testnet.ms"], "faucets": [], "nativeCurrency": { @@ -9,7 +10,7 @@ "symbol": "XFI", "decimals": 18 }, - "infoURL": "https://crossfi.org/", + "infoURL": "https://crossfi.org", "shortName": "crossfi-testnet", "chainId": 4157, "networkId": 4157, @@ -17,8 +18,9 @@ "explorers": [ { "name": "CrossFi Testnet Scan", - "url": "https://scan.testnet.ms", - "standard": "EIP3091" + "url": "https://test.xfiscan.com", + "standard": "EIP3091", + "icon": "crossfi" } ] } diff --git a/_data/chains/eip155-4158.json b/_data/chains/eip155-4158.json new file mode 100644 index 000000000000..a4dd114f48ef --- /dev/null +++ b/_data/chains/eip155-4158.json @@ -0,0 +1,24 @@ +{ + "name": "CrossFi Mainnet", + "icon": "crossfi", + "chain": "crossfi", + "rpc": ["https://rpc.mainnet.ms/"], + "faucets": [], + "nativeCurrency": { + "name": "CrossFi Token", + "symbol": "XFI", + "decimals": 18 + }, + "infoURL": "https://crossfi.org", + "shortName": "crossfi", + "chainId": 4158, + "networkId": 4158, + "slip44": 1, + "explorers": [ + { + "name": "CrossFi Mainnet Scan", + "url": "https://xfiscan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-4162.json b/_data/chains/eip155-4162.json new file mode 100644 index 000000000000..27c1a57d5292 --- /dev/null +++ b/_data/chains/eip155-4162.json @@ -0,0 +1,28 @@ +{ + "name": "SX Rollup", + "chain": "SX", + "icon": "SX", + "rpc": ["https://rpc.sx-rollup.gelato.digital"], + "faucets": [], + "nativeCurrency": { + "name": "SX Network", + "symbol": "SX", + "decimals": 18 + }, + "infoURL": "https://www.sx.technology", + "shortName": "SXR", + "chainId": 4162, + "networkId": 4162, + "explorers": [ + { + "name": "SX L2 Explorer", + "url": "https://explorerl2.sx.technology", + "standard": "EIP3091", + "icon": "SX" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + } +} diff --git a/_data/chains/eip155-41923.json b/_data/chains/eip155-41923.json new file mode 100644 index 000000000000..69e31e49c0cb --- /dev/null +++ b/_data/chains/eip155-41923.json @@ -0,0 +1,24 @@ +{ + "name": "EDU Chain", + "chain": "EDU Chain", + "icon": "occ-mainnet", + "rpc": ["https://rpc.edu-chain.raas.gelato.cloud"], + "faucets": ["https://bridge.gelato.network/bridge/edu-chain"], + "nativeCurrency": { + "name": "EDU", + "symbol": "EDU", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/edu-chain", + "shortName": "edu-chain", + "chainId": 41923, + "networkId": 41923, + "explorers": [ + { + "name": "EDU Chain", + "url": "https://educhain.blockscout.com", + "icon": "occ-mainnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-42000.json b/_data/chains/eip155-42000.json new file mode 100644 index 000000000000..4c056a26f0f9 --- /dev/null +++ b/_data/chains/eip155-42000.json @@ -0,0 +1,33 @@ +{ + "name": "Helios Chain Testnet", + "chain": "Helios Chain", + "rpc": ["https://testnet1.helioschainlabs.org"], + "faucets": ["https://testnet.helioschain.network"], + "nativeCurrency": { + "name": "Helios", + "symbol": "HLS", + "decimals": 18 + }, + "icon": "helioschain", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://hub.helioschain.network", + "shortName": "HLS", + "chainId": 42000, + "networkId": 42000, + "explorers": [ + { + "name": "Helios Chain Explorer", + "url": "https://explorer.helioschainlabs.org", + "icon": "helioschain", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-420000.json b/_data/chains/eip155-420000.json new file mode 100644 index 000000000000..cedc110d509f --- /dev/null +++ b/_data/chains/eip155-420000.json @@ -0,0 +1,22 @@ +{ + "name": "Infinaeon", + "chain": "Infinaeon", + "rpc": ["https://rpc.infinaeon.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "hhttps://rpc.infinaeon.com", + "shortName": "Infinaeon", + "chainId": 420000, + "networkId": 420000, + "explorers": [ + { + "name": "tracehawk", + "url": "https://explorer.infinaeon.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-42001.json b/_data/chains/eip155-42001.json new file mode 100644 index 000000000000..e09c87252fce --- /dev/null +++ b/_data/chains/eip155-42001.json @@ -0,0 +1,29 @@ +{ + "name": "PMON Chain", + "chain": "42001", + "rpc": ["https://rpc.pmon.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "PMON Token", + "symbol": "PMON", + "decimals": 18 + }, + "infoURL": "https://protocolmonsterlabs.com/pmon-chain", + "shortName": "pmon", + "chainId": 42001, + "networkId": 42001, + "icon": "pmon", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.pmon.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [{ "url": "https://bridge.arbitrum.io" }] + } +} diff --git a/_data/chains/eip155-420042.json b/_data/chains/eip155-420042.json new file mode 100644 index 000000000000..810f9f0b1efd --- /dev/null +++ b/_data/chains/eip155-420042.json @@ -0,0 +1,24 @@ +{ + "name": "Vector Smart Chain", + "chain": "VSC", + "icon": "vectorsmartgas", + "rpc": ["https://rpc.vscblockchain.org"], + "features": [{ "name": "EIP155" }], + "faucets": [], + "nativeCurrency": { + "name": "Vector Smart Gas", + "symbol": "VSG", + "decimals": 18 + }, + "infoURL": "https://vsgofficial.com", + "shortName": "vsg", + "chainId": 420042, + "networkId": 420042, + "explorers": [ + { + "name": "vscexplorer", + "url": "https://explorer.vscblockchain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4202.json b/_data/chains/eip155-4202.json index 05f068244566..cd4f5688328f 100644 --- a/_data/chains/eip155-4202.json +++ b/_data/chains/eip155-4202.json @@ -1,8 +1,9 @@ { "name": "Lisk Sepolia Testnet", "chain": "ETH", + "icon": "lisk", "rpc": ["https://rpc.sepolia-api.lisk.com"], - "faucets": [], + "faucets": ["https://app.optimism.io/faucet"], "nativeCurrency": { "name": "Sepolia Ether", "symbol": "ETH", diff --git a/_data/chains/eip155-42026.json b/_data/chains/eip155-42026.json new file mode 100644 index 000000000000..33d5f1504094 --- /dev/null +++ b/_data/chains/eip155-42026.json @@ -0,0 +1,22 @@ +{ + "name": "Donatuz", + "chain": "ETH", + "rpc": ["https://rpc.donatuz.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.donatuz.com", + "shortName": "donatuz", + "chainId": 42026, + "networkId": 42026, + "explorers": [ + { + "name": "Donatuz Explorer", + "url": "https://explorer.donatuz.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4203.json b/_data/chains/eip155-4203.json new file mode 100644 index 000000000000..7be188581896 --- /dev/null +++ b/_data/chains/eip155-4203.json @@ -0,0 +1,25 @@ +{ + "name": "Merlin Erigon Testnet", + "title": "Merlin Erigon Testnet", + "chain": "Merlin", + "rpc": ["https://testnet-erigon-rpc.merlinchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://merlinchain.io", + "shortName": "Merlin-Testnet", + "chainId": 4203, + "networkId": 4203, + "icon": "merlin", + "explorers": [ + { + "name": "L2scan", + "url": "https://testnet-erigon-scan.merlinchain.io", + "icon": "merlin", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-420420419.json b/_data/chains/eip155-420420419.json new file mode 100644 index 000000000000..fc094599c1a8 --- /dev/null +++ b/_data/chains/eip155-420420419.json @@ -0,0 +1,17 @@ +{ + "name": "Asset Hub", + "chain": "DOT", + "rpc": ["https://asset-hub-eth-rpc.polkadot.io"], + "faucets": [], + "nativeCurrency": { + "name": "DOT", + "symbol": "DOT", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://polkadot.network", + "shortName": "AH", + "chainId": 420420419, + "networkId": 420420419, + "explorers": [] +} diff --git a/_data/chains/eip155-420420421.json b/_data/chains/eip155-420420421.json new file mode 100644 index 000000000000..5ba87ec3f52a --- /dev/null +++ b/_data/chains/eip155-420420421.json @@ -0,0 +1,24 @@ +{ + "name": "Westend Asset Hub", + "chain": "WST", + "rpc": ["https://westend-asset-hub-eth-rpc.polkadot.io"], + "faucets": ["https://faucet.polkadot.io/westend"], + "nativeCurrency": { + "name": "Westies", + "symbol": "WND", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://polkadot.network", + "shortName": "wst", + "chainId": 420420421, + "networkId": 420420421, + "explorers": [ + { + "name": "subscan", + "icon": "subscan", + "url": "https://westend-asset-hub-eth-explorer.parity.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-420420422.json b/_data/chains/eip155-420420422.json new file mode 100644 index 000000000000..35456be83def --- /dev/null +++ b/_data/chains/eip155-420420422.json @@ -0,0 +1,16 @@ +{ + "name": "Paseo PassetHub", + "chain": "PAS", + "rpc": ["https://testnet-passet-hub-eth-rpc.polkadot.io"], + "faucets": ["https://faucet.polkadot.io/?parachain=1111"], + "nativeCurrency": { + "name": "PAS", + "symbol": "PAS", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://polkadot.network", + "shortName": "pas", + "chainId": 420420422, + "networkId": 420420422 +} diff --git a/_data/chains/eip155-4207.json b/_data/chains/eip155-4207.json new file mode 100644 index 000000000000..1a9f157da10f --- /dev/null +++ b/_data/chains/eip155-4207.json @@ -0,0 +1,30 @@ +{ + "name": "Layer Edge Mainnet", + "title": "EDGEN", + "chain": "EDGEN", + "rpc": [ + "https://layeredge-mainnet-evm.itrocket.net", + "https://layeredge.rpc.subquery.network/public", + "https://rpc.layeredge.io", + "https://rpc.layeredge.foundation" + ], + "faucets": [], + "nativeCurrency": { + "name": "Layer Edge", + "symbol": "EDGEN", + "decimals": 18 + }, + "infoURL": "https://layeredge.io", + "shortName": "LayerEdge", + "chainId": 4207, + "networkId": 4207, + "icon": "edgen", + "explorers": [ + { + "name": "Layer Edge Explorer", + "url": "https://edgenscan.io", + "icon": "edgen", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-42070.json b/_data/chains/eip155-42070.json new file mode 100644 index 000000000000..45d74a61900d --- /dev/null +++ b/_data/chains/eip155-42070.json @@ -0,0 +1,23 @@ +{ + "name": "WMC Testnet", + "chain": "WMC", + "icon": "wmc", + "rpc": ["https://rpc-testnet-base.worldmobile.net"], + "faucets": ["https://faucet-testnet-base.worldmobile.net"], + "nativeCurrency": { + "name": "WMTx", + "symbol": "WMTx", + "decimals": 18 + }, + "infoURL": "https://worldmobiletoken.com", + "shortName": "wmtx", + "chainId": 42070, + "networkId": 42070, + "explorers": [ + { + "name": "WMC Explorer", + "url": "https://explorer-testnet-base.worldmobile.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-42096.json b/_data/chains/eip155-42096.json new file mode 100644 index 000000000000..4dd830fb1709 --- /dev/null +++ b/_data/chains/eip155-42096.json @@ -0,0 +1,23 @@ +{ + "name": "Heurist Testnet", + "chain": "HEU", + "status": "active", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Heurist", + "symbol": "HEU", + "decimals": 18 + }, + "infoURL": "", + "shortName": "HEU", + "chainId": 42096, + "networkId": 42096, + "slip44": 1, + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-4", + "bridges": [] + } +} diff --git a/_data/chains/eip155-42161.json b/_data/chains/eip155-42161.json index bb4047db222c..37dc056decd8 100644 --- a/_data/chains/eip155-42161.json +++ b/_data/chains/eip155-42161.json @@ -13,8 +13,8 @@ "https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}", "https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}", "https://arb1.arbitrum.io/rpc", - "https://arbitrum-one.publicnode.com", - "wss://arbitrum-one.publicnode.com" + "https://arbitrum-one-rpc.publicnode.com", + "wss://arbitrum-one-rpc.publicnode.com" ], "faucets": [], "explorers": [ diff --git a/_data/chains/eip155-421614.json b/_data/chains/eip155-421614.json index eceab2d5a00e..0bd6274bb4d4 100644 --- a/_data/chains/eip155-421614.json +++ b/_data/chains/eip155-421614.json @@ -4,7 +4,9 @@ "chain": "ETH", "rpc": [ "https://sepolia-rollup.arbitrum.io/rpc", - "https://arbitrum-sepolia.infura.io/v3/${INFURA_API_KEY}" + "https://arbitrum-sepolia.infura.io/v3/${INFURA_API_KEY}", + "https://arbitrum-sepolia-rpc.publicnode.com", + "wss://arbitrum-sepolia-rpc.publicnode.com" ], "faucets": [], "nativeCurrency": { @@ -18,6 +20,11 @@ "networkId": 421614, "slip44": 1, "explorers": [ + { + "name": "arbiscan-sepolia", + "url": "https://sepolia.arbiscan.io", + "standard": "EIP3091" + }, { "name": "Arbitrum Sepolia Rollup Testnet Explorer", "url": "https://sepolia-explorer.arbitrum.io", diff --git a/_data/chains/eip155-42170.json b/_data/chains/eip155-42170.json index 68ce21704288..46e4a1d0473b 100644 --- a/_data/chains/eip155-42170.json +++ b/_data/chains/eip155-42170.json @@ -11,8 +11,8 @@ }, "rpc": [ "https://nova.arbitrum.io/rpc", - "https://arbitrum-nova.publicnode.com", - "wss://arbitrum-nova.publicnode.com" + "https://arbitrum-nova-rpc.publicnode.com", + "wss://arbitrum-nova-rpc.publicnode.com" ], "faucets": [], "explorers": [ @@ -21,12 +21,6 @@ "url": "https://nova-explorer.arbitrum.io", "icon": "blockscout", "standard": "EIP3091" - }, - { - "name": "dexguru", - "url": "https://nova.dex.guru", - "icon": "dexguru", - "standard": "EIP3091" } ], "infoURL": "https://arbitrum.io", diff --git a/_data/chains/eip155-42220.json b/_data/chains/eip155-42220.json index 302cf57172dc..b721f05968ac 100644 --- a/_data/chains/eip155-42220.json +++ b/_data/chains/eip155-42220.json @@ -12,6 +12,11 @@ "rpc": ["https://forno.celo.org", "wss://forno.celo.org/ws"], "faucets": [], "infoURL": "https://docs.celo.org/", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://superbridge.app/celo" }] + }, "explorers": [ { "name": "Celoscan", @@ -20,8 +25,8 @@ }, { "name": "blockscout", - "url": "https://explorer.celo.org", - "standard": "none" + "url": "https://celo.blockscout.com", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-42261.json b/_data/chains/eip155-42261.json index 7e256b003110..5bda79d97c74 100644 --- a/_data/chains/eip155-42261.json +++ b/_data/chains/eip155-42261.json @@ -8,8 +8,8 @@ ], "faucets": ["https://faucet.testnet.oasis.io/"], "nativeCurrency": { - "name": "Emerald Rose", - "symbol": "ROSE", + "name": "Emerald Test Rose", + "symbol": "TEST", "decimals": 18 }, "infoURL": "https://docs.oasis.io/dapp/emerald", diff --git a/_data/chains/eip155-42420.json b/_data/chains/eip155-42420.json new file mode 100644 index 000000000000..f73e04cd5402 --- /dev/null +++ b/_data/chains/eip155-42420.json @@ -0,0 +1,23 @@ +{ + "name": "Asset Chain Mainnet", + "chain": "Asset Chain", + "rpc": ["https://mainnet-rpc.assetchain.org"], + "faucets": ["https://faucet.assetchain.org"], + "nativeCurrency": { + "name": "Real World Asset", + "symbol": "RWA", + "decimals": 18 + }, + "infoURL": "https://docs.assetchain.org", + "shortName": "assetchain", + "chainId": 42420, + "networkId": 42420, + "icon": "assetchain", + "explorers": [ + { + "name": "Asset Chain Explorer", + "url": "https://scan.assetchain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-42421.json b/_data/chains/eip155-42421.json new file mode 100644 index 000000000000..9dd90af9af78 --- /dev/null +++ b/_data/chains/eip155-42421.json @@ -0,0 +1,23 @@ +{ + "name": "Asset Chain Testnet", + "chain": "Asset Chain", + "rpc": ["https://enugu-rpc.assetchain.org"], + "faucets": ["https://faucet.assetchain.org"], + "nativeCurrency": { + "name": "Real World Asset", + "symbol": "RWA", + "decimals": 18 + }, + "infoURL": "https://docs.assetchain.org", + "shortName": "rwa", + "chainId": 42421, + "networkId": 42421, + "icon": "assetchain", + "explorers": [ + { + "name": "Asset Chain Testnet Explorer", + "url": "https://scan-testnet.assetchain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-425.json b/_data/chains/eip155-425.json new file mode 100644 index 000000000000..b627a25fb287 --- /dev/null +++ b/_data/chains/eip155-425.json @@ -0,0 +1,25 @@ +{ + "name": "Stenix Mainnet", + "chain": "STEN", + "rpc": ["https://stenix.network/pub"], + "faucets": [], + "nativeCurrency": { + "name": "Stenix", + "symbol": "STEN", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://stenix.org", + "shortName": "sten", + "chainId": 425, + "networkId": 425, + "icon": "stenix", + "explorers": [ + { + "name": "stenscan", + "url": "https://stenscan.com", + "icon": "stenscan", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-426.json b/_data/chains/eip155-426.json new file mode 100644 index 000000000000..909e65779db5 --- /dev/null +++ b/_data/chains/eip155-426.json @@ -0,0 +1,24 @@ +{ + "name": "The Widows Mite", + "chain": "MITE", + "rpc": ["https://rpc.twmcrypto.com/"], + "faucets": ["https://faucet.twmcrypto.com/"], + "nativeCurrency": { + "name": "The Widows Mite", + "symbol": "MITE", + "decimals": 8 + }, + "infoURL": "https://twmcrypto.com/", + "shortName": "mite", + "chainId": 426, + "networkId": 426, + "icon": "mite", + "explorers": [ + { + "name": "The Widows Mite Explorer", + "url": "https://scan.twmcrypto.com", + "icon": "mite", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4269.json b/_data/chains/eip155-4269.json new file mode 100644 index 000000000000..593ed1d3b1ac --- /dev/null +++ b/_data/chains/eip155-4269.json @@ -0,0 +1,23 @@ +{ + "name": "Laika Testnet", + "chain": "LAIKA", + "rpc": ["https://testnetrpc1.laikachain.dog"], + "faucets": ["https://laikachain.dog/faucets"], + "nativeCurrency": { + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 + }, + "infoURL": "https://laikachain.dog", + "shortName": "laika-testnet", + "chainId": 4269, + "networkId": 4269, + "icon": "laika", + "explorers": [ + { + "name": "Laika Testnet Explorer", + "url": "https://testnet.laikachain.dog", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4278608.json b/_data/chains/eip155-4278608.json new file mode 100644 index 000000000000..30f9fc40f852 --- /dev/null +++ b/_data/chains/eip155-4278608.json @@ -0,0 +1,22 @@ +{ + "name": "Arcadia Mainnet", + "chain": "Arcadia", + "rpc": ["https://arcadia.khalani.network"], + "faucets": [], + "nativeCurrency": { + "name": "AIP", + "symbol": "AIP", + "decimals": 18 + }, + "infoURL": "https://khalani.network", + "shortName": "aip", + "chainId": 4278608, + "networkId": 4278608, + "explorers": [ + { + "name": "Arcadia Mainnet Explorer", + "url": "https://explorer.arcadia.khalani.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4284265.json b/_data/chains/eip155-4284265.json new file mode 100644 index 000000000000..e12c94ef386d --- /dev/null +++ b/_data/chains/eip155-4284265.json @@ -0,0 +1,30 @@ +{ + "name": "Zuux chain testnet", + "title": "Zuux chain testnet", + "chain": "zuuxchain", + "icon": "zuuxchain", + "rpc": ["https://rpc.zuux.network"], + "features": [{ "name": "none" }], + "faucets": ["https://www.zuuxlend.xyz/faucet"], + "nativeCurrency": { + "name": "ZUUX", + "symbol": "ZUUX", + "decimals": 18 + }, + "infoURL": "https://www.zuux.network", + "shortName": "zuuxchain", + "chainId": 4284265, + "networkId": 4284265, + "explorers": [ + { + "name": "Zuux chain explorer", + "url": "https://blockscout.zuux.network", + "standard": "EIP3091" + }, + { + "name": "Zuux chain explorer", + "url": "https://explorer.zuux.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-428962654539583.json b/_data/chains/eip155-428962654539583.json new file mode 100644 index 000000000000..07d93d565e01 --- /dev/null +++ b/_data/chains/eip155-428962654539583.json @@ -0,0 +1,17 @@ +{ + "name": "Yominet", + "chain": "YOMINET", + "icon": "yominet", + "rpc": ["https://jsonrpc-yominet-1.anvil.asia-southeast.initia.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "shortName": "yomi", + "infoURL": "https://www.kamigotchi.io/", + "chainId": 428962654539583, + "networkId": 428962654539583, + "explorers": [] +} diff --git a/_data/chains/eip155-43111.json b/_data/chains/eip155-43111.json index c432465cc959..055afd9e35ab 100644 --- a/_data/chains/eip155-43111.json +++ b/_data/chains/eip155-43111.json @@ -1,7 +1,7 @@ { - "name": "Hemi Network", + "name": "Hemi", "chain": "ETH", - "rpc": [], + "rpc": ["https://rpc.hemi.network/rpc"], "faucets": [], "nativeCurrency": { "name": "Ether", @@ -13,10 +13,17 @@ "chainId": 43111, "networkId": 43111, "icon": "hemi", - "explorers": [], + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.hemi.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], "parent": { "type": "L2", "chain": "eip155-1" }, - "status": "incubating" + "status": "active" } diff --git a/_data/chains/eip155-43113.json b/_data/chains/eip155-43113.json index 97a3f00ce6d1..565fd95a42ff 100644 --- a/_data/chains/eip155-43113.json +++ b/_data/chains/eip155-43113.json @@ -20,9 +20,19 @@ "slip44": 1, "explorers": [ { - "name": "snowtrace", + "name": "Etherscan", + "url": "https://testnet.snowscan.xyz", + "standard": "EIP3091" + }, + { + "name": "Routescan", "url": "https://testnet.snowtrace.io", "standard": "EIP3091" + }, + { + "name": "Avascan", + "url": "https://testnet.avascan.info", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-43114.json b/_data/chains/eip155-43114.json index d8f0d8576bcb..f3f7575946a9 100644 --- a/_data/chains/eip155-43114.json +++ b/_data/chains/eip155-43114.json @@ -21,9 +21,15 @@ "slip44": 9005, "explorers": [ { - "name": "snowtrace", + "name": "Etherscan", + "url": "https://snowscan.xyz", + "standard": "EIP3091" + }, + { + "name": "Routescan", "url": "https://snowtrace.io", "standard": "EIP3091" - } + }, + { "name": "Avascan", "url": "https://avascan.info", "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-4321.json b/_data/chains/eip155-4321.json new file mode 100644 index 000000000000..ef4c343fb13d --- /dev/null +++ b/_data/chains/eip155-4321.json @@ -0,0 +1,23 @@ +{ + "name": "Echos Chain", + "chain": "Echos", + "rpc": ["https://rpc-echos-mainnet-0.t.conduit.xyz"], + "features": [], + "faucets": [], + "nativeCurrency": { + "name": "USD Coin", + "symbol": "USDC", + "decimals": 18 + }, + "infoURL": "https://www.echos.fun/", + "shortName": "echos", + "chainId": 4321, + "networkId": 4321, + "explorers": [ + { + "name": "Echos Explorer", + "url": "https://explorer.echos.fun", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-43419.json b/_data/chains/eip155-43419.json new file mode 100644 index 000000000000..4f734f7c24cd --- /dev/null +++ b/_data/chains/eip155-43419.json @@ -0,0 +1,33 @@ +{ + "name": "GUNZ", + "chain": "GUNZ", + "rpc": [ + "https://rpc.gunzchain.io/ext/bc/2M47TxWHGnhNtq6pM5zPXdATBtuqubxn5EPFgFmEawCQr9WFML/rpc" + ], + "faucets": [], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "GUN", + "symbol": "GUN", + "decimals": 18 + }, + "icon": "gunz", + "infoURL": "https://gunbygunz.com", + "shortName": "gunz-mainnet", + "chainId": 43419, + "networkId": 43419, + "explorers": [ + { + "name": "blockscout", + "url": "https://gunzscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4352.json b/_data/chains/eip155-4352.json new file mode 100644 index 000000000000..2245027d6557 --- /dev/null +++ b/_data/chains/eip155-4352.json @@ -0,0 +1,35 @@ +{ + "name": "MemeCore", + "title": "MemeCore", + "chain": "MemeCore", + "icon": "memecore", + "rpc": ["https://rpc.memecore.net", "wss://ws.memecore.net"], + "nativeCurrency": { + "name": "M", + "symbol": "M", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "infoURL": "https://memecore.com", + "shortName": "m", + "chainId": 4352, + "networkId": 4352, + "explorers": [ + { + "name": "OKX-MemeCore", + "url": "https://www.okx.com/web3/explorer/memecore", + "standard": "EIP3091" + }, + { + "name": "MemeCoreScan", + "url": "https://memecorescan.io", + "standard": "EIP3091" + }, + { + "name": "MemeCore explorer", + "url": "https://blockscout.memecore.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-43521.json b/_data/chains/eip155-43521.json new file mode 100644 index 000000000000..9d1a0245e98d --- /dev/null +++ b/_data/chains/eip155-43521.json @@ -0,0 +1,39 @@ +{ + "name": "Formicarium", + "title": "MemeCore Testnet Formicarium", + "chain": "MemeCore", + "icon": "memecore", + "rpc": [ + "https://rpc.formicarium.memecore.net", + "wss://ws.formicarium.memecore.net" + ], + "faucets": ["https://faucet.memecore.com/formicarium"], + "nativeCurrency": { + "name": "Formicarium M", + "symbol": "M", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://memecore.com", + "shortName": "form", + "chainId": 43521, + "networkId": 43521, + "slip44": 1, + "explorers": [ + { + "name": "OKX-Formicarium", + "url": "https://www.okx.com/web3/explorer/formicarium-testnet", + "standard": "EIP3091" + }, + { + "name": "MemeCoreScan-Formicarium", + "url": "https://formicarium.memecorescan.io", + "standard": "EIP3091" + }, + { + "name": "MemeCore Testnet Formicarium Explorer", + "url": "https://formicarium.blockscout.memecore.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-44.json b/_data/chains/eip155-44.json index 3c819470e9c7..3a746a07121d 100644 --- a/_data/chains/eip155-44.json +++ b/_data/chains/eip155-44.json @@ -1,10 +1,7 @@ { "name": "Crab Network", "chain": "crab", - "rpc": [ - "https://crab-rpc.darwinia.network", - "https://crab-rpc.darwiniacommunitydao.xyz" - ], + "rpc": ["https://crab-rpc.darwinia.network", "https://crab-rpc.dcdao.box"], "faucets": [], "nativeCurrency": { "name": "Crab Network Native Token", @@ -17,8 +14,8 @@ "networkId": 44, "explorers": [ { - "name": "subscan", - "url": "https://crab.subscan.io", + "name": "blockscout", + "url": "https://crab-scan.darwinia.network", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-440017.json b/_data/chains/eip155-440017.json new file mode 100644 index 000000000000..dd4c68dcb9d5 --- /dev/null +++ b/_data/chains/eip155-440017.json @@ -0,0 +1,27 @@ +{ + "name": "Graphite Mainnet", + "chain": "Graphite", + "rpc": [ + "https://anon-entrypoint-1.atgraphite.com", + "wss://ws-anon-entrypoint-1.atgraphite.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Graphite", + "symbol": "@G", + "decimals": 18 + }, + "infoURL": "https://atgraphite.com/", + "shortName": "graphite", + "chainId": 440017, + "networkId": 440017, + "slip44": 440017, + "icon": "graphite", + "explorers": [ + { + "name": "Graphite Mainnet Explorer", + "url": "https://main.atgraphite.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4422.json b/_data/chains/eip155-4422.json new file mode 100644 index 000000000000..5f4fb36193b4 --- /dev/null +++ b/_data/chains/eip155-4422.json @@ -0,0 +1,25 @@ +{ + "name": "Testnet Pika", + "chain": "tPKA", + "rpc": ["https://testnet-rpc1.pikascan.com"], + "faucets": [], + "icon": "testnetpsc", + "nativeCurrency": { + "name": "Testnet Pika", + "symbol": "tPKA", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://pikaminter.com", + "shortName": "PikaMinter", + "chainId": 4422, + "networkId": 4422, + "explorers": [] +} diff --git a/_data/chains/eip155-4444444.json b/_data/chains/eip155-4444444.json new file mode 100644 index 000000000000..92f72285da87 --- /dev/null +++ b/_data/chains/eip155-4444444.json @@ -0,0 +1,33 @@ +{ + "name": "Altar Testnet", + "chain": "Altar", + "rpc": ["https://altar-rpc.ceremonies.ai/"], + "faucets": ["https://sepoliafaucet.com/"], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ceremonies.gitbook.io", + "shortName": "altarTestnet", + "chainId": 4444444, + "networkId": 4444444, + "slip44": 1, + "icon": "altarTestnet", + "explorers": [ + { + "name": "altar testnet explorer", + "url": "https://altar-explorer.ceremonies.ai", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://altar-testnet-yzxhzk61ck-b7590e4db247a680.testnets.rollbridge.app/" + } + ] + } +} diff --git a/_data/chains/eip155-44474237230.json b/_data/chains/eip155-44474237230.json new file mode 100644 index 000000000000..dd1e344858b6 --- /dev/null +++ b/_data/chains/eip155-44474237230.json @@ -0,0 +1,33 @@ +{ + "name": "Deriw Devnet", + "chainId": 44474237230, + "shortName": "deriw-dev", + "title": "Deriw Devnet", + "chain": "Deriw Devnet", + "networkId": 44474237230, + "icon": "deriw", + "rpc": ["https://rpc.dev.deriw.com"], + "faucets": [], + "nativeCurrency": { + "name": "Deriw", + "symbol": "Der", + "decimals": 18 + }, + "infoURL": "https://deriw.com", + "explorers": [ + { + "name": "Deriw Explorer", + "url": "https://explorer.dev.deriw.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-421614", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + } +} diff --git a/_data/chains/eip155-4457845.json b/_data/chains/eip155-4457845.json new file mode 100644 index 000000000000..b01330ef9334 --- /dev/null +++ b/_data/chains/eip155-4457845.json @@ -0,0 +1,29 @@ +{ + "name": "ZERO Testnet (Sepolia)", + "chain": "ETH", + "icon": "zero-sepolia", + "rpc": ["https://rpc.zerion.io/v1/zero-sepolia"], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://bridge.zero.network" }] + }, + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.zero.network", + "shortName": "zero-sepolia", + "chainId": 4457845, + "networkId": 4457845, + "slip44": 1, + "explorers": [ + { + "name": "ZERO Testnet Explorer", + "url": "https://explorer.zero.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4460.json b/_data/chains/eip155-4460.json index 4ae02f913d79..766b9df61c10 100644 --- a/_data/chains/eip155-4460.json +++ b/_data/chains/eip155-4460.json @@ -1,14 +1,14 @@ { "name": "Orderly Sepolia Testnet", "chain": "ETH", - "rpc": ["https://l2-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz"], + "rpc": ["https://testnet-rpc.orderly.org"], "faucets": [], "nativeCurrency": { "name": "Sepolia Ether", "symbol": "ETH", "decimals": 18 }, - "infoURL": "www.orderly.network", + "infoURL": "https://orderly.network", "shortName": "orderlyl2", "chainId": 4460, "networkId": 4460, @@ -17,7 +17,7 @@ "explorers": [ { "name": "basescout", - "url": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz", + "url": "https://testnet-explorer.orderly.org", "icon": "blockscout", "standard": "EIP3091" } diff --git a/_data/chains/eip155-4488.json b/_data/chains/eip155-4488.json new file mode 100644 index 000000000000..b52c218d25db --- /dev/null +++ b/_data/chains/eip155-4488.json @@ -0,0 +1,25 @@ +{ + "name": "Hydra Chain", + "chain": "HYDRA", + "rpc": ["https://rpc-mainnet.hydrachain.org"], + "faucets": [], + "nativeCurrency": { + "name": "Hydra", + "symbol": "HYDRA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://hydrachain.org", + "shortName": "HYDRA", + "chainId": 4488, + "networkId": 4488, + "icon": "hydra", + "explorers": [ + { + "name": "Hydra Chain Mainnet explorer", + "url": "https://skynet.hydrachain.org", + "icon": "hydra", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-45003.json b/_data/chains/eip155-45003.json new file mode 100644 index 000000000000..a026affc2852 --- /dev/null +++ b/_data/chains/eip155-45003.json @@ -0,0 +1,25 @@ +{ + "name": "Juneo JUNE-Chain", + "chain": "Juneo JUNE-Chain", + "rpc": ["https://rpc.juneo-mainnet.network/ext/bc/JUNE/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "JUNE", + "symbol": "JUNE", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://juneo.com/", + "shortName": "JUNE", + "chainId": 45003, + "networkId": 45003, + "icon": "juneomainnet", + "explorers": [ + { + "name": "Juneo Scan", + "url": "https://juneoscan.io/chain/2", + "icon": "juneomainnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-45004.json b/_data/chains/eip155-45004.json new file mode 100644 index 000000000000..6f1ae6cf3b9d --- /dev/null +++ b/_data/chains/eip155-45004.json @@ -0,0 +1,25 @@ +{ + "name": "Juneo DAI1-Chain", + "chain": "Juneo DAI1-Chain", + "rpc": ["https://rpc.juneo-mainnet.network/ext/bc/DAI1/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "DAI1", + "symbol": "DAI1", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://juneo.com/", + "shortName": "DAI1", + "chainId": 45004, + "networkId": 45004, + "icon": "juneo-dai1", + "explorers": [ + { + "name": "Juneo Scan", + "url": "https://juneoscan.io/chain/5", + "icon": "juneomainnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-45005.json b/_data/chains/eip155-45005.json new file mode 100644 index 000000000000..5ad63bd87b54 --- /dev/null +++ b/_data/chains/eip155-45005.json @@ -0,0 +1,25 @@ +{ + "name": "Juneo USDT1-Chain", + "chain": "Juneo USDT1-Chain", + "rpc": ["https://rpc.juneo-mainnet.network/ext/bc/USDT1/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "USDT1", + "symbol": "USDT1", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://juneo.com/", + "shortName": "USDT1", + "chainId": 45005, + "networkId": 45005, + "icon": "juneo-usdt1", + "explorers": [ + { + "name": "Juneo Scan", + "url": "https://juneoscan.io/chain/3", + "icon": "juneomainnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-45006.json b/_data/chains/eip155-45006.json new file mode 100644 index 000000000000..18a5ea780b3d --- /dev/null +++ b/_data/chains/eip155-45006.json @@ -0,0 +1,25 @@ +{ + "name": "Juneo USD1-Chain", + "chain": "Juneo USD1-Chain", + "rpc": ["https://rpc.juneo-mainnet.network/ext/bc/USD1/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "USD1", + "symbol": "USD1", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://juneo.com/", + "shortName": "USD1", + "chainId": 45006, + "networkId": 45006, + "icon": "juneo-usd1", + "explorers": [ + { + "name": "Juneo Scan", + "url": "https://juneoscan.io/chain/4", + "icon": "juneomainnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-45007.json b/_data/chains/eip155-45007.json new file mode 100644 index 000000000000..b8f47983a9d8 --- /dev/null +++ b/_data/chains/eip155-45007.json @@ -0,0 +1,25 @@ +{ + "name": "Juneo mBTC1-Chain", + "chain": "Juneo mBTC1-Chain", + "rpc": ["https://rpc.juneo-mainnet.network/ext/bc/mBTC1/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "mBTC1", + "symbol": "mBTC1", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://juneo.com/", + "shortName": "mBTC1", + "chainId": 45007, + "networkId": 45007, + "icon": "juneo-mbtc1", + "explorers": [ + { + "name": "Juneo Scan", + "url": "https://juneoscan.io/chain/9", + "icon": "juneomainnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-45008.json b/_data/chains/eip155-45008.json new file mode 100644 index 000000000000..41f6ce3c3b13 --- /dev/null +++ b/_data/chains/eip155-45008.json @@ -0,0 +1,25 @@ +{ + "name": "Juneo GLD1-Chain", + "chain": "Juneo GLD1-Chain", + "rpc": ["https://rpc.juneo-mainnet.network/ext/bc/GLD1/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "GLD1", + "symbol": "GLD1", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://juneo.com/", + "shortName": "GLD1", + "chainId": 45008, + "networkId": 45008, + "icon": "juneo-gld1", + "explorers": [ + { + "name": "Juneo Scan", + "url": "https://juneoscan.io/chain/8", + "icon": "juneomainnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-45009.json b/_data/chains/eip155-45009.json new file mode 100644 index 000000000000..dccf06bf868e --- /dev/null +++ b/_data/chains/eip155-45009.json @@ -0,0 +1,25 @@ +{ + "name": "Juneo LTC1-Chain", + "chain": "Juneo LTC1-Chain", + "rpc": ["https://rpc.juneo-mainnet.network/ext/bc/LTC1/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "LTC1", + "symbol": "LTC1", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://juneo.com/", + "shortName": "LTC1", + "chainId": 45009, + "networkId": 45009, + "icon": "juneo-ltc1", + "explorers": [ + { + "name": "Juneo Scan", + "url": "https://juneoscan.io/chain/11", + "icon": "juneomainnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-45010.json b/_data/chains/eip155-45010.json new file mode 100644 index 000000000000..f99dc2cbd708 --- /dev/null +++ b/_data/chains/eip155-45010.json @@ -0,0 +1,25 @@ +{ + "name": "Juneo DOGE1-Chain", + "chain": "Juneo DOGE1-Chain", + "rpc": ["https://rpc.juneo-mainnet.network/ext/bc/DOGE1/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "DOGE1", + "symbol": "DOGE1", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://juneo.com/", + "shortName": "DOGE1", + "chainId": 45010, + "networkId": 45010, + "icon": "juneo-doge1", + "explorers": [ + { + "name": "Juneo Scan", + "url": "https://juneoscan.io/chain/10", + "icon": "juneomainnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-45011.json b/_data/chains/eip155-45011.json new file mode 100644 index 000000000000..e6ad81a98f64 --- /dev/null +++ b/_data/chains/eip155-45011.json @@ -0,0 +1,25 @@ +{ + "name": "Juneo EUR1-Chain", + "chain": "Juneo EUR1-Chain", + "rpc": ["https://rpc.juneo-mainnet.network/ext/bc/EUR1/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "EUR1", + "symbol": "EUR1", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://juneo.com/", + "shortName": "EUR1", + "chainId": 45011, + "networkId": 45011, + "icon": "juneo-eur1", + "explorers": [ + { + "name": "Juneo Scan", + "url": "https://juneoscan.io/chain/6", + "icon": "juneomainnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-45012.json b/_data/chains/eip155-45012.json new file mode 100644 index 000000000000..329c362d1dc9 --- /dev/null +++ b/_data/chains/eip155-45012.json @@ -0,0 +1,25 @@ +{ + "name": "Juneo SGD1-Chain", + "chain": "Juneo SGD1-Chain", + "rpc": ["https://rpc.juneo-mainnet.network/ext/bc/SGD1/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "SGD1", + "symbol": "SGD1", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://juneo.com/", + "shortName": "SGD1", + "chainId": 45012, + "networkId": 45012, + "icon": "juneo-sgd1", + "explorers": [ + { + "name": "Juneo Scan", + "url": "https://juneoscan.io/chain/7", + "icon": "juneomainnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-45013.json b/_data/chains/eip155-45013.json new file mode 100644 index 000000000000..14a7c8d9ac41 --- /dev/null +++ b/_data/chains/eip155-45013.json @@ -0,0 +1,25 @@ +{ + "name": "Juneo BCH1-Chain", + "chain": "Juneo BCH1-Chain", + "rpc": ["https://rpc.juneo-mainnet.network/ext/bc/BCH1/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "BCH1", + "symbol": "BCH1", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://juneo.com/", + "shortName": "BCH1", + "chainId": 45013, + "networkId": 45013, + "icon": "juneo-bch1", + "explorers": [ + { + "name": "Juneo Scan", + "url": "https://juneoscan.io/chain/12", + "icon": "juneomainnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-45014.json b/_data/chains/eip155-45014.json new file mode 100644 index 000000000000..c0535f04d44b --- /dev/null +++ b/_data/chains/eip155-45014.json @@ -0,0 +1,25 @@ +{ + "name": "Juneo LINK1-Chain", + "chain": "Juneo LINK1-Chain", + "rpc": ["https://rpc.juneo-mainnet.network/ext/bc/LINK1/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "LINK1", + "symbol": "LINK1", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://juneo.com/", + "shortName": "LINK1", + "chainId": 45014, + "networkId": 45014, + "icon": "juneo-link1", + "explorers": [ + { + "name": "Juneo Scan", + "url": "https://juneoscan.io/chain/13", + "icon": "juneomainnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-4544.json b/_data/chains/eip155-4544.json index f79bbb4ff0ca..95152ada195c 100644 --- a/_data/chains/eip155-4544.json +++ b/_data/chains/eip155-4544.json @@ -9,17 +9,17 @@ "decimals": 18 }, "infoURL": "https://emoney.network/", - "shortName": "emoney", + "shortName": "EmoneyTestnet", "chainId": 4544, "networkId": 4544, "slip44": 118, "icon": "emoney", "explorers": [ { - "name": "EMoney ethscan", - "url": "https://ethscan.emoney.network", + "name": "EMoney Explorer", + "url": "https://explore-stage.emoney.network", "icon": "emoney", - "standard": "EIP3091" + "standard": "none" } ] } diff --git a/_data/chains/eip155-4545.json b/_data/chains/eip155-4545.json new file mode 100644 index 000000000000..52b3841c2a9a --- /dev/null +++ b/_data/chains/eip155-4545.json @@ -0,0 +1,27 @@ +{ + "name": "Emoney Network Mainnet", + "chain": "Emoney", + "rpc": [ + "https://rpc-publicnode.emoney.io/", + "https://public-node1-rpc.emoney.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Emoney Coin", + "symbol": "EMYC", + "decimals": 18 + }, + "infoURL": "https://emoney.io/", + "shortName": "emoney", + "chainId": 4545, + "networkId": 4545, + "icon": "emoney", + "explorers": [ + { + "name": "EMoney Explorer", + "url": "https://explore.emoney.network", + "icon": "emoney", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-4547.json b/_data/chains/eip155-4547.json new file mode 100644 index 000000000000..3f3102301bd7 --- /dev/null +++ b/_data/chains/eip155-4547.json @@ -0,0 +1,27 @@ +{ + "name": "TRUMPCHAIN", + "chain": "trumpchain", + "rpc": [ + "https://testnet.trumpchain.dev/http", + "wss://testnet.trumpchain.dev/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Official Trump", + "symbol": "TRUMP", + "decimals": 18 + }, + "infoURL": "https://trumpchain.dev", + "shortName": "TRUMPCHAIN", + "chainId": 4547, + "networkId": 4547, + "icon": "trump", + "explorers": [ + { + "name": "TRUMPCHAIN Explorer", + "url": "https://explorer.trumpchain.dev", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-45513.json b/_data/chains/eip155-45513.json new file mode 100644 index 000000000000..6967376573fa --- /dev/null +++ b/_data/chains/eip155-45513.json @@ -0,0 +1,33 @@ +{ + "name": "Blessnet", + "chain": "ETH", + "rpc": [ + "https://blessnet.calderachain.xyz/http", + "wss://blessnet.calderachain.xyz/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bless", + "symbol": "BLESS", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://blessnet.io", + "shortName": "bless", + "chainId": 45513, + "networkId": 45513, + "icon": "bless", + "explorers": [ + { + "name": "blockscout", + "url": "https://blessnet.calderaexplorer.xyz", + "icon": "bless", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [{ "url": "https://blessnet.bridge.caldera.xyz" }] + } +} diff --git a/_data/chains/eip155-46.json b/_data/chains/eip155-46.json index 9691827e26ca..f68b70562faf 100644 --- a/_data/chains/eip155-46.json +++ b/_data/chains/eip155-46.json @@ -3,8 +3,9 @@ "chain": "darwinia", "rpc": [ "https://rpc.darwinia.network", - "https://darwinia-rpc.darwiniacommunitydao.xyz", - "https://darwinia-rpc.dwellir.com" + "https://darwinia-rpc.dcdao.box", + "https://darwinia-rpc.dwellir.com", + "https://darwinia.rpc.subquery.network/public" ], "faucets": [], "nativeCurrency": { @@ -12,14 +13,14 @@ "symbol": "RING", "decimals": 18 }, - "infoURL": "https://darwinia.network/", + "infoURL": "https://darwinia.network", "shortName": "darwinia", "chainId": 46, "networkId": 46, "explorers": [ { - "name": "subscan", - "url": "https://darwinia.subscan.io", + "name": "blockscout", + "url": "https://explorer.darwinia.network", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-4646.json b/_data/chains/eip155-4646.json new file mode 100644 index 000000000000..06edda9f947e --- /dev/null +++ b/_data/chains/eip155-4646.json @@ -0,0 +1,28 @@ +{ + "name": "MST Chain", + "title": "MST Chain", + "chain": "MST", + "rpc": [ + "https://mariorpc.mstblockchain.com", + "https://craftrpc.mstblockchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "MST", + "symbol": "MST", + "decimals": 18 + }, + "infoURL": "https://mstblockchain.com", + "shortName": "mst", + "chainId": 4646, + "networkId": 4646, + "slip44": 4646, + "icon": "mst", + "explorers": [ + { + "name": "MST Mainnet Scan", + "url": "https://mstscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-466.json b/_data/chains/eip155-466.json new file mode 100644 index 000000000000..957d4d7bca1d --- /dev/null +++ b/_data/chains/eip155-466.json @@ -0,0 +1,29 @@ +{ + "name": "AppChain", + "chain": "AppChain", + "rpc": ["https://rpc.appchain.xyz/http", "wss://rpc.appchain.xyz/ws"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://appchain.xyz", + "shortName": "appchain", + "chainId": 466, + "networkId": 466, + "icon": "appchain", + "explorers": [ + { + "name": "AppChain Explorer", + "url": "https://explorer.appchain.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.appchain.xyz" }] + } +} diff --git a/_data/chains/eip155-4661.json b/_data/chains/eip155-4661.json new file mode 100644 index 000000000000..4475e965fdc3 --- /dev/null +++ b/_data/chains/eip155-4661.json @@ -0,0 +1,32 @@ +{ + "name": "AppChain Testnet", + "chain": "AppChain Testnet", + "rpc": [ + "https://appchaintestnet.rpc.caldera.xyz/http", + "wss://appchaintestnet.rpc.caldera.xyz/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://appchain.xyz", + "shortName": "appchaintestnet", + "chainId": 4661, + "networkId": 4661, + "icon": "appchain", + "explorers": [ + { + "name": "AppChain Testnet Explorer", + "url": "https://appchaintestnet.explorer.caldera.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://appchaintestnet.bridge.caldera.xyz" }] + } +} diff --git a/_data/chains/eip155-476462898.json b/_data/chains/eip155-476462898.json new file mode 100644 index 000000000000..99c811628a84 --- /dev/null +++ b/_data/chains/eip155-476462898.json @@ -0,0 +1,29 @@ +{ + "name": "GPT Testnet", + "chain": "Skopje Testnet", + "icon": "skopje-gpt", + "rpc": ["https://testnet-rpc.gptprotocol.io"], + "faucets": ["https://testnet-faucet.gptprotocol.io"], + "chainId": 476462898, + "networkId": 476462898, + "nativeCurrency": { + "name": "SkpGPT", + "symbol": "SkpGPT", + "decimals": 18 + }, + "infoURL": "https://gptprotocol.com", + "shortName": "Skopje", + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://testnet-bridge.gptprotocol.io" }] + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.gptprotocol.io", + "standard": "EIP3091", + "icon": "blockscout" + } + ] +} diff --git a/_data/chains/eip155-47763.json b/_data/chains/eip155-47763.json new file mode 100644 index 000000000000..2fdd83ba6963 --- /dev/null +++ b/_data/chains/eip155-47763.json @@ -0,0 +1,27 @@ +{ + "name": "Neo X Mainnet", + "chain": "Neo X", + "rpc": [ + "https://mainnet-1.rpc.banelabs.org", + "https://mainnet-2.rpc.banelabs.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gas", + "symbol": "GAS", + "decimals": 18 + }, + "infoURL": "https://neo.org/", + "shortName": "neox-mainnet", + "chainId": 47763, + "networkId": 47763, + "icon": "neox", + "explorers": [ + { + "name": "Neo X - Explorer", + "url": "https://xexplorer.neo.org", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-4777.json b/_data/chains/eip155-4777.json index dba79a02edb6..435c4423d30b 100644 --- a/_data/chains/eip155-4777.json +++ b/_data/chains/eip155-4777.json @@ -1,5 +1,5 @@ { - "name": "BlackFort Exchange Network Testnet", + "name": "BlackFort Exchange Network Testnet DEPRECATED", "chain": "TBXN", "rpc": ["https://testnet.blackfort.network/rpc"], "faucets": [], @@ -22,5 +22,6 @@ "icon": "blockscout", "standard": "EIP3091" } - ] + ], + "status": "deprecated" } diff --git a/_data/chains/eip155-478.json b/_data/chains/eip155-478.json new file mode 100644 index 000000000000..2da9a8f98a18 --- /dev/null +++ b/_data/chains/eip155-478.json @@ -0,0 +1,46 @@ +{ + "name": "Form Network", + "title": "Form Network", + "chain": "form", + "icon": "form", + "rpc": ["https://rpc.form.network/http", "wss://rpc.form.network/ws"], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://info.form.network", + "shortName": "formnetwork", + "chainId": 478, + "networkId": 478, + "explorers": [ + { + "name": "Form Explorer", + "url": "https://explorer.form.network", + "standard": "EIP3091", + "icon": "form" + } + ], + "faucets": [], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.form.network" + }, + { + "url": "https://op-bridge.form.network" + } + ] + }, + "status": "active" +} diff --git a/_data/chains/eip155-47803.json b/_data/chains/eip155-47803.json new file mode 100644 index 000000000000..21d0167809e3 --- /dev/null +++ b/_data/chains/eip155-47803.json @@ -0,0 +1,24 @@ +{ + "name": "ReDeFi Layer 1", + "chain": "ReDeFi", + "icon": "redefi", + "rpc": ["https://layer1.redefi.world"], + "faucets": [], + "nativeCurrency": { + "name": "BAX", + "symbol": "BAX", + "decimals": 18 + }, + "infoURL": "https://redefi.world", + "shortName": "bax", + "chainId": 47803, + "networkId": 47803, + "slip44": 47803, + "explorers": [ + { + "name": "ReDeFi Scan", + "url": "https://scanlayer1.redefi.world", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4786.json b/_data/chains/eip155-4786.json new file mode 100644 index 000000000000..bd9d92911098 --- /dev/null +++ b/_data/chains/eip155-4786.json @@ -0,0 +1,24 @@ +{ + "name": "Evnode Testnet", + "chain": "Evnode", + "rpc": ["https://rpc-testnet.evnode.org/"], + "faucets": ["https://faucet.evnode.org"], + "nativeCurrency": { + "name": "Evnode Testnet Native Token", + "symbol": "tEVO", + "decimals": 18 + }, + "infoURL": "https://evnode.org", + "shortName": "evnode", + "chainId": 4786, + "networkId": 4786, + "icon": "evnode", + "explorers": [ + { + "name": "Evnode Explorer Testnet", + "url": "https://testnet.evscan.net", + "standard": "EIP3091", + "icon": "evnode" + } + ] +} diff --git a/_data/chains/eip155-480.json b/_data/chains/eip155-480.json new file mode 100644 index 000000000000..2eba66de17b7 --- /dev/null +++ b/_data/chains/eip155-480.json @@ -0,0 +1,43 @@ +{ + "name": "World Chain", + "chain": "ETH", + "rpc": [ + "https://worldchain-mainnet.g.alchemy.com/public", + "https://480.rpc.thirdweb.com", + "https://worldchain-mainnet.gateway.tenderly.co", + "wss://worldchain-mainnet.gateway.tenderly.co" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://world.org/world-chain", + "shortName": "wc", + "chainId": 480, + "networkId": 480, + "slip44": 1, + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { "url": "https://world-chain.superbridge.app" }, + { "url": "https://app.across.to/bridge?destinationChainId=480" }, + { "url": "https://worldchain-mainnet.bridge.alchemy.com" } + ] + }, + "explorers": [ + { + "name": "etherscan", + "url": "https://worldscan.org", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://worldchain-mainnet.explorer.alchemy.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4801.json b/_data/chains/eip155-4801.json new file mode 100644 index 000000000000..ddeeaeb68fe5 --- /dev/null +++ b/_data/chains/eip155-4801.json @@ -0,0 +1,42 @@ +{ + "name": "World Chain Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://worldchain-sepolia.g.alchemy.com/public", + "https://4801.rpc.thirdweb.com", + "https://worldchain-sepolia.gateway.tenderly.co", + "wss://worldchain-sepolia.gateway.tenderly.co" + ], + "faucets": [ + "https://www.alchemy.com/faucets/world-chain-sepolia", + "https://console.optimism.io/faucet" + ], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://world.org/world-chain", + "shortName": "wcsep", + "chainId": 4801, + "networkId": 4801, + "slip44": 1, + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://worldchain-sepolia.bridge.alchemy.com" }] + }, + "explorers": [ + { + "name": "etherscan", + "url": "https://sepolia.worldscan.org", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://worldchain-sepolia.explorer.alchemy.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-484752.json b/_data/chains/eip155-484752.json new file mode 100644 index 000000000000..4223e5825099 --- /dev/null +++ b/_data/chains/eip155-484752.json @@ -0,0 +1,17 @@ +{ + "name": "World Chain Sepolia Testnet Deprecated", + "status": "deprecated", + "chain": "ETH", + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://worldcoin.org/", + "shortName": "wcsep-dep", + "rpc": [], + "faucets": [], + "chainId": 484752, + "networkId": 484752, + "slip44": 1 +} diff --git a/_data/chains/eip155-486.json b/_data/chains/eip155-486.json new file mode 100644 index 000000000000..0b25fb260eaf --- /dev/null +++ b/_data/chains/eip155-486.json @@ -0,0 +1,16 @@ +{ + "name": "Standard Mainnet", + "chain": "STND", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Standard", + "symbol": "STND", + "decimals": 18 + }, + "infoURL": "https://standardweb3.com", + "shortName": "stnd", + "chainId": 486, + "networkId": 486, + "status": "incubating" +} diff --git a/_data/chains/eip155-486487.json b/_data/chains/eip155-486487.json new file mode 100644 index 000000000000..dd4e9bd3cbc0 --- /dev/null +++ b/_data/chains/eip155-486487.json @@ -0,0 +1,23 @@ +{ + "name": "Gobbl Testnet", + "chain": "Gobbl Testnet", + "rpc": ["https://rpc.gobbl.io"], + "faucets": ["https://faucet.gobbl.io"], + "nativeCurrency": { + "name": "Gobbl Token", + "symbol": "GOBBL", + "decimals": 18 + }, + "infoURL": "https://www.gobbl.io/", + "shortName": "gbl-testnet", + "chainId": 486487, + "networkId": 486487, + "icon": "gobbl", + "explorers": [ + { + "name": "Gobbl Testnet Explorer", + "url": "https://explorer.gobbl.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-48795.json b/_data/chains/eip155-48795.json new file mode 100644 index 000000000000..8b563adf3c8d --- /dev/null +++ b/_data/chains/eip155-48795.json @@ -0,0 +1,27 @@ +{ + "name": "Space Subnet Testnet", + "chain": "SPACETESTNET", + "rpc": ["https://subnets.avax.network/space/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "FUEL", + "symbol": "FUEL", + "decimals": 18 + }, + "infoURL": "https://otherworld.network", + "shortName": "spacetestnet", + "chainId": 48795, + "networkId": 48795, + "explorers": [ + { + "name": "SPACE Explorer", + "url": "https://subnets-test.avax.network/space", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-488.json b/_data/chains/eip155-488.json new file mode 100644 index 000000000000..b2b7f7649bbb --- /dev/null +++ b/_data/chains/eip155-488.json @@ -0,0 +1,25 @@ +{ + "name": "BlackFort Exchange Network", + "chain": "BXN", + "rpc": ["https://rpc.blackfort.network/mainnet/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "BlackFort Token", + "symbol": "BXN", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://blackfort.com", + "shortName": "BXN", + "chainId": 488, + "networkId": 488, + "icon": "bxn", + "explorers": [ + { + "name": "blockscout", + "url": "https://blackfortscan.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4888.json b/_data/chains/eip155-4888.json new file mode 100644 index 000000000000..52640aa91921 --- /dev/null +++ b/_data/chains/eip155-4888.json @@ -0,0 +1,26 @@ +{ + "name": "BlackFort Exchange Network Testnet", + "chain": "BXNT", + "rpc": ["https://rpc.blackfort.network/testnet/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "BlackFort Testnet Token", + "symbol": "BXNT", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://blackfort.com", + "shortName": "BXNT", + "chainId": 4888, + "networkId": 4888, + "slip44": 1, + "icon": "bxn", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.blackfortscan.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-48898.json b/_data/chains/eip155-48898.json new file mode 100644 index 000000000000..71a30042c4f3 --- /dev/null +++ b/_data/chains/eip155-48898.json @@ -0,0 +1,24 @@ +{ + "name": "Zircuit Garfield Testnet", + "chain": "Zircuit Garfield Testnet", + "icon": "zircuit", + "rpc": ["https://garfield-testnet.zircuit.com/"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.zircuit.com/", + "shortName": "zircuit-garfield-testnet", + "chainId": 48898, + "networkId": 48898, + "explorers": [ + { + "name": "Zircuit", + "url": "https://explorer.garfield-testnet.zircuit.com", + "icon": "zircuit", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-48899.json b/_data/chains/eip155-48899.json new file mode 100644 index 000000000000..79b042d0c319 --- /dev/null +++ b/_data/chains/eip155-48899.json @@ -0,0 +1,24 @@ +{ + "name": "Zircuit Testnet", + "chain": "Zircuit Testnet", + "icon": "zircuit", + "rpc": ["https://testnet.zircuit.com"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.zircuit.com/", + "shortName": "zircuit-testnet", + "chainId": 48899, + "networkId": 48899, + "explorers": [ + { + "name": "Zircuit", + "url": "https://explorer.testnet.zircuit.com", + "icon": "zircuit", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-48900.json b/_data/chains/eip155-48900.json new file mode 100644 index 000000000000..88f3f150abd2 --- /dev/null +++ b/_data/chains/eip155-48900.json @@ -0,0 +1,24 @@ +{ + "name": "Zircuit Mainnet", + "chain": "Zircuit Mainnet", + "icon": "zircuit", + "rpc": ["https://mainnet.zircuit.com"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.zircuit.com/", + "shortName": "zircuit-mainnet", + "chainId": 48900, + "networkId": 48900, + "explorers": [ + { + "name": "Zircuit", + "url": "https://explorer.zircuit.com", + "icon": "zircuit", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-490000.json b/_data/chains/eip155-490000.json new file mode 100644 index 000000000000..0ea78f533ad1 --- /dev/null +++ b/_data/chains/eip155-490000.json @@ -0,0 +1,25 @@ +{ + "name": "Autonomys Taurus Testnet", + "chain": "autonomys-taurus-testnet", + "rpc": ["https://auto-evm.taurus.autonomys.xyz/ws"], + "icon": "autonomys", + "faucets": [], + "nativeCurrency": { + "name": "AI3", + "symbol": "AI3", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.autonomys.xyz", + "shortName": "ATN", + "chainId": 490000, + "networkId": 490000, + "explorers": [ + { + "name": "Autonomys Taurus Testnet Explorer", + "url": "https://blockscout.taurus.autonomys.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-490092.json b/_data/chains/eip155-490092.json new file mode 100644 index 000000000000..635e5cea8050 --- /dev/null +++ b/_data/chains/eip155-490092.json @@ -0,0 +1,22 @@ +{ + "name": "PUMPFI CHAIN TESTNET", + "chain": "PUMPFI CHAIN TESTNET", + "rpc": ["https://rpc1testnet.pumpfi.me"], + "faucets": ["https://faucet.pumpfi.me"], + "nativeCurrency": { + "name": "PMPT", + "symbol": "PMPT", + "decimals": 18 + }, + "infoURL": "https://pumpfi.me", + "shortName": "pumpfi-testnet", + "chainId": 490092, + "networkId": 490092, + "explorers": [ + { + "name": "Pumpfi Testnet Scan", + "url": "https://testnetscan.pumpfi.me", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4913.json b/_data/chains/eip155-4913.json new file mode 100644 index 000000000000..d50a433c014b --- /dev/null +++ b/_data/chains/eip155-4913.json @@ -0,0 +1,39 @@ +{ + "name": "OEV Network", + "chain": "oev-network", + "rpc": [ + "https://oev.rpc.api3.org", + "https://oev-network.calderachain.xyz/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://api3.org/oev/", + "shortName": "oev-network", + "chainId": 4913, + "networkId": 4913, + "icon": "oev-network", + "explorers": [ + { + "name": "OEV Network Explorer", + "url": "https://oev.explorer.api3.org", + "standard": "EIP3091" + }, + { + "name": "OEV Network Caldera Explorer", + "url": "https://oev-network.calderaexplorer.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-495.json b/_data/chains/eip155-495.json new file mode 100644 index 000000000000..a096c0c0f341 --- /dev/null +++ b/_data/chains/eip155-495.json @@ -0,0 +1,17 @@ +{ + "name": "Landstars", + "chain": "Landstars", + "icon": "landstars", + "rpc": ["https://13882-60301.pph-server.de"], + "faucets": [], + "nativeCurrency": { + "name": "Landstars", + "symbol": "LDS", + "decimals": 18 + }, + "infoURL": "https://github.com/khalikov001/landstars-info", + "shortName": "lds", + "chainId": 495, + "networkId": 495, + "explorers": [] +} diff --git a/_data/chains/eip155-499.json b/_data/chains/eip155-499.json index edaf82e4923b..827e5b935878 100644 --- a/_data/chains/eip155-499.json +++ b/_data/chains/eip155-499.json @@ -1,8 +1,8 @@ { "name": "Rupaya", "chain": "RUPX", - "rpc": [], - "faucets": [], + "rpc": ["https://rpc.rupaya.io"], + "faucets": ["https://faucet.rupaya.io"], "nativeCurrency": { "name": "Rupaya", "symbol": "RUPX", @@ -12,5 +12,12 @@ "shortName": "rupx", "chainId": 499, "networkId": 499, - "slip44": 499 + "slip44": 499, + "explorers": [ + { + "name": "Rupaya Explorer", + "url": "https://scan.rupaya.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-4999.json b/_data/chains/eip155-4999.json index 94a01b88dde2..1dfda42973fb 100644 --- a/_data/chains/eip155-4999.json +++ b/_data/chains/eip155-4999.json @@ -1,6 +1,6 @@ { - "name": "BlackFort Exchange Network", - "chain": "BXN", + "name": "BlackFort Exchange Network Deprecated", + "chain": "BXNdpr", "rpc": [ "https://mainnet.blackfort.network/rpc", "https://mainnet-1.blackfort.network/rpc", @@ -10,12 +10,12 @@ "faucets": [], "nativeCurrency": { "name": "BlackFort Token", - "symbol": "BXN", + "symbol": "BXNdpr", "decimals": 18 }, "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "infoURL": "https://blackfort.exchange", - "shortName": "BXN", + "shortName": "BXNdpr", "chainId": 4999, "networkId": 4999, "icon": "bxn", @@ -26,5 +26,6 @@ "icon": "blockscout", "standard": "EIP3091" } - ] + ], + "status": "deprecated" } diff --git a/_data/chains/eip155-50.json b/_data/chains/eip155-50.json index 2112628a04e9..f84b3ab782a9 100644 --- a/_data/chains/eip155-50.json +++ b/_data/chains/eip155-50.json @@ -5,7 +5,10 @@ "https://erpc.xinfin.network", "https://rpc.xinfin.network", "https://rpc1.xinfin.network", - "https://rpc-xdc.icecreamswap.com" + "https://rpc.xdcrpc.com", + "https://erpc.xdcrpc.com", + "https://rpc.ankr.com/xdc", + "https://rpc.xdc.org" ], "faucets": [], "nativeCurrency": { @@ -21,13 +24,13 @@ "explorers": [ { "name": "xdcscan", - "url": "https://xdcscan.io", + "url": "https://xdcscan.com", "icon": "blocksscan", "standard": "EIP3091" }, { - "name": "blocksscan", - "url": "https://xdc.blocksscan.io", + "name": "openscan", + "url": "https://xdcscan.io", "icon": "blocksscan", "standard": "EIP3091" } diff --git a/_data/chains/eip155-5000.json b/_data/chains/eip155-5000.json index 8d8eae3aaa6c..298e15725545 100644 --- a/_data/chains/eip155-5000.json +++ b/_data/chains/eip155-5000.json @@ -18,6 +18,11 @@ "chainId": 5000, "networkId": 5000, "explorers": [ + { + "name": "mantlescan", + "url": "https://mantlescan.xyz", + "standard": "EIP3091" + }, { "name": "Mantle Explorer", "url": "https://explorer.mantle.xyz", diff --git a/_data/chains/eip155-50000.json b/_data/chains/eip155-50000.json new file mode 100644 index 000000000000..5ce29bd55ced --- /dev/null +++ b/_data/chains/eip155-50000.json @@ -0,0 +1,29 @@ +{ + "name": "Citronus", + "chain": "Citronus", + "rpc": ["https://rpc.citronus.com"], + "faucets": [], + "nativeCurrency": { + "name": "CITRO", + "symbol": "CITRO", + "decimals": 18 + }, + "infoURL": "https://citronus.com", + "shortName": "citro", + "chainId": 50000, + "networkId": 50000, + "icon": "citro", + "explorers": [ + { + "name": "citro", + "url": "https://explorer.citronus.com", + "icon": "citro", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.gelato.network/bridge/citronus" }] + } +} diff --git a/_data/chains/eip155-50104.json b/_data/chains/eip155-50104.json new file mode 100644 index 000000000000..92760fc54ea1 --- /dev/null +++ b/_data/chains/eip155-50104.json @@ -0,0 +1,32 @@ +{ + "name": "Sophon", + "chain": "Sophon", + "rpc": ["https://rpc.sophon.xyz", "wss://rpc.sophon.xyz/ws"], + "nativeCurrency": { + "name": "Sophon", + "symbol": "SOPH", + "decimals": 18 + }, + "faucets": [], + "infoURL": "", + "shortName": "sophon", + "chainId": 50104, + "networkId": 50104, + "explorers": [ + { + "name": "Sophon Block Explorer", + "url": "https://explorer.sophon.xyz", + "icon": "sophon-testnet", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://portal.sophon.xyz/bridge" + } + ] + } +} diff --git a/_data/chains/eip155-50312.json b/_data/chains/eip155-50312.json new file mode 100644 index 000000000000..2d6084acb853 --- /dev/null +++ b/_data/chains/eip155-50312.json @@ -0,0 +1,23 @@ +{ + "name": "Somnia Testnet", + "chain": "Somnia", + "rpc": ["https://dream-rpc.somnia.network"], + "faucets": [], + "nativeCurrency": { + "name": "Somnia Testnet", + "symbol": "STT", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://somnia.network", + "shortName": "SomniaTestnet", + "chainId": 50312, + "networkId": 50312, + "explorers": [ + { + "name": "Somnia Testnet", + "url": "https://somnia-testnet.socialscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-50341.json b/_data/chains/eip155-50341.json new file mode 100644 index 000000000000..508b332776a2 --- /dev/null +++ b/_data/chains/eip155-50341.json @@ -0,0 +1,28 @@ +{ + "name": "Reddio Testnet", + "title": "Reddio Sepolia L2 Rollup Testnet", + "chain": "ETH", + "rpc": ["https://reddio-dev.reddio.com"], + "faucets": [], + "nativeCurrency": { + "name": "Reddio", + "symbol": "RDO", + "decimals": 18 + }, + "infoURL": "https://www.reddio.com", + "shortName": "reddio-devnet", + "chainId": 50341, + "networkId": 50341, + "slip44": 1, + "explorers": [ + { + "name": "L2scan", + "url": "https://reddio-devnet.l2scan.co", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } +} diff --git a/_data/chains/eip155-50342.json b/_data/chains/eip155-50342.json new file mode 100644 index 000000000000..2cff49dcae0d --- /dev/null +++ b/_data/chains/eip155-50342.json @@ -0,0 +1,29 @@ +{ + "name": "Reddio", + "title": "Reddio mainnet L2 Rollup", + "chain": "ETH", + "rpc": ["https://mainnet.reddio.com/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Reddio", + "symbol": "RDO", + "decimals": 18 + }, + "infoURL": "https://www.reddio.com", + "shortName": "reddio", + "chainId": 50342, + "networkId": 50342, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://reddio.cloud.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + } +} diff --git a/_data/chains/eip155-5050.json b/_data/chains/eip155-5050.json new file mode 100644 index 000000000000..b464d25a7e28 --- /dev/null +++ b/_data/chains/eip155-5050.json @@ -0,0 +1,30 @@ +{ + "name": "Skate Mainnet", + "chain": "ETH", + "rpc": ["https://rpc.skatechain.org/"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://www.skatechain.org/", + "shortName": "skate", + "chainId": 5050, + "networkId": 5050, + "icon": "skate", + "explorers": [ + { + "name": "Skate Explorer", + "url": "https://scan.skatechain.org", + "standard": "EIP3091" + } + ], + "status": "active", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "" }] + } +} diff --git a/_data/chains/eip155-50505.json b/_data/chains/eip155-50505.json new file mode 100644 index 000000000000..6b663db1a636 --- /dev/null +++ b/_data/chains/eip155-50505.json @@ -0,0 +1,22 @@ +{ + "name": "STB Testnet", + "chain": "STB Testnet", + "rpc": ["https://rpc.quorum.sps.dev.kode.ru/"], + "faucets": [], + "nativeCurrency": { + "name": "STB", + "symbol": "STB", + "decimals": 18 + }, + "infoURL": "", + "shortName": "stb-testnet", + "chainId": 50505, + "networkId": 50505, + "explorers": [ + { + "name": "stb-testnet", + "url": "https://explorer.quorum.sps.dev.kode.ru", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-50591822.json b/_data/chains/eip155-50591822.json new file mode 100644 index 000000000000..a9c9870c2c72 --- /dev/null +++ b/_data/chains/eip155-50591822.json @@ -0,0 +1,30 @@ +{ + "name": "Stavanger Public Testnet", + "chain": "stavanger", + "rpc": ["https://rpc.stavanger.gateway.fm"], + "faucets": ["https://faucet.stavanger.gateway.fm"], + "nativeCurrency": { + "name": "Polygon", + "symbol": "POL", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://gateway.fm", + "shortName": "stavanger", + "chainId": 50591822, + "networkId": 50591822, + "icon": "stavanger", + "explorers": [ + { + "name": "BlockScout", + "url": "https://explorer.stavanger.gateway.fm", + "icon": "stavanger", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://bridge.stavanger.gateway.fm" }] + } +} diff --git a/_data/chains/eip155-5080.json b/_data/chains/eip155-5080.json new file mode 100644 index 000000000000..0fc274783697 --- /dev/null +++ b/_data/chains/eip155-5080.json @@ -0,0 +1,28 @@ +{ + "name": "Pione Zero", + "chain": "PZO", + "icon": "pzo", + "rpc": ["https://rpc.zeroscan.org"], + "faucets": ["https://dex.pionechain.com/testnet/faucet/"], + "nativeCurrency": { + "name": "Pione Zero", + "symbol": "PZO", + "decimals": 18 + }, + "infoURL": "https://pionechain.com", + "shortName": "pzo", + "chainId": 5080, + "networkId": 5080, + "explorers": [ + { + "name": "Pione Zero Explorer", + "url": "https://zeroscan.org", + "standard": "EIP3091" + }, + { + "name": "Pione Zero Explorer", + "url": "https://zero.pionescan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-50888.json b/_data/chains/eip155-50888.json new file mode 100644 index 000000000000..7b6918c3a65c --- /dev/null +++ b/_data/chains/eip155-50888.json @@ -0,0 +1,24 @@ +{ + "name": "Erbie Mainnet", + "chain": "Erbie", + "rpc": ["https://api.erbie.io"], + "faucets": [], + "nativeCurrency": { + "name": "ERB", + "symbol": "ERB", + "decimals": 18 + }, + "infoURL": "https://www.erbie.io", + "shortName": "Erbie", + "chainId": 50888, + "networkId": 50888, + "icon": "erbie", + "explorers": [ + { + "name": "Erbie Explorer", + "url": "https://www.erbie.io/explorer", + "standard": "none", + "icon": "erbie" + } + ] +} diff --git a/_data/chains/eip155-5090.json b/_data/chains/eip155-5090.json new file mode 100644 index 000000000000..def69cb2ea51 --- /dev/null +++ b/_data/chains/eip155-5090.json @@ -0,0 +1,23 @@ +{ + "name": "Pione Chain Mainnet", + "chain": "PIO", + "icon": "pio", + "rpc": ["https://rpc.pionescan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Pione", + "symbol": "PIO", + "decimals": 18 + }, + "infoURL": "https://pionechain.com", + "shortName": "pio", + "chainId": 5090, + "networkId": 5090, + "explorers": [ + { + "name": "Pione Chain Explorer", + "url": "https://pionescan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-51.json b/_data/chains/eip155-51.json index 9bd90b6f9ab6..d54b1948f5ef 100644 --- a/_data/chains/eip155-51.json +++ b/_data/chains/eip155-51.json @@ -1,8 +1,16 @@ { "name": "XDC Apothem Network", "chain": "XDC", - "rpc": ["https://rpc.apothem.network", "https://erpc.apothem.network"], - "faucets": ["https://faucet.apothem.network"], + "rpc": [ + "https://rpc.apothem.network", + "https://erpc.apothem.network", + "https://apothem.xdcrpc.com" + ], + "faucets": [ + "https://faucet.apothem.network", + "https://faucet.blocksscan.io", + "https://apothem.xdcscan.io/faucet" + ], "nativeCurrency": { "name": "XinFin", "symbol": "TXDC", @@ -16,13 +24,13 @@ "explorers": [ { "name": "xdcscan", - "url": "https://apothem.xinfinscan.com", + "url": "https://testnet.xdcscan.com", "icon": "blocksscan", "standard": "EIP3091" }, { - "name": "blocksscan", - "url": "https://apothem.blocksscan.io", + "name": "openscan", + "url": "https://apothem.xdcscan.io", "icon": "blocksscan", "standard": "EIP3091" } diff --git a/_data/chains/eip155-510.json b/_data/chains/eip155-510.json index 06185c1b91a4..ce35369c8a96 100644 --- a/_data/chains/eip155-510.json +++ b/_data/chains/eip155-510.json @@ -1,18 +1,29 @@ { - "name": "Syndicate Chain", - "title": "Syndicate Chain", + "name": "Syndicate Mainnet", "chain": "Syndicate", - "rpc": ["https://rpc-mainnet.syndicate.io"], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, + "shortName": "syndicate", "infoURL": "https://syndicate.io", - "shortName": "syndicate-chain-mainnet", + "icon": "syndicate", + "status": "active", "chainId": 510, "networkId": 510, - "status": "incubating", - "icon": "syndicate" + "nativeCurrency": { + "name": "Syndicate", + "symbol": "SYND", + "decimals": 18 + }, + "rpc": ["https://rpc.syndicate.io"], + "faucets": [], + "explorers": [ + { + "name": "Syndicate Explorer", + "url": "https://explorer.syndicate.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.arbitrum.io" }] + } } diff --git a/_data/chains/eip155-5112.json b/_data/chains/eip155-5112.json new file mode 100644 index 000000000000..fc61b334b011 --- /dev/null +++ b/_data/chains/eip155-5112.json @@ -0,0 +1,25 @@ +{ + "name": "Ham", + "chain": "Ham", + "rpc": ["https://rpc.ham.fun"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ham.fun", + "shortName": "ham", + "chainId": 5112, + "networkId": 5112, + "icon": "ham", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.ham.fun", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-5112023.json b/_data/chains/eip155-5112023.json new file mode 100644 index 000000000000..4740f29be249 --- /dev/null +++ b/_data/chains/eip155-5112023.json @@ -0,0 +1,24 @@ +{ + "name": "NumBlock Chain", + "chain": "NumBlock", + "rpc": ["https://rpc-mainnet.numblock.org"], + "faucets": [], + "nativeCurrency": { + "name": "NUMB Token", + "symbol": "NUMB", + "decimals": 18 + }, + "infoURL": "https://numblock.org", + "shortName": "NUMB", + "chainId": 5112023, + "networkId": 5112023, + "icon": "NumBlock", + "explorers": [ + { + "name": "NumBlock Explorer", + "url": "https://mainnet.numblock.org", + "standard": "none", + "icon": "NumBlock" + } + ] +} diff --git a/_data/chains/eip155-5115.json b/_data/chains/eip155-5115.json new file mode 100644 index 000000000000..6b8b3a3fdb34 --- /dev/null +++ b/_data/chains/eip155-5115.json @@ -0,0 +1,25 @@ +{ + "name": "Citrea Testnet", + "chain": "Citrea", + "rpc": ["https://rpc.testnet.citrea.xyz"], + "faucets": ["https://citrea.xyz/faucet"], + "nativeCurrency": { + "name": "Citrea BTC", + "symbol": "cBTC", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://citrea.xyz", + "shortName": "citrea-testnet", + "chainId": 5115, + "networkId": 5115, + "icon": "citrea", + "explorers": [ + { + "name": "Citrea Testnet Explorer", + "url": "https://explorer.testnet.citrea.xyz", + "icon": "citrea", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5124.json b/_data/chains/eip155-5124.json new file mode 100644 index 000000000000..a823534ad743 --- /dev/null +++ b/_data/chains/eip155-5124.json @@ -0,0 +1,23 @@ +{ + "name": "Seismic devnet", + "chain": "Seismic", + "rpc": ["https://node-2.seismicdev.net/rpc"], + "faucets": ["https://faucet-2.seismicdev.net/"], + "nativeCurrency": { + "name": "Seismic Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://seismic.systems", + "shortName": "seismic-devnet", + "chainId": 5124, + "networkId": 5124, + "explorers": [ + { + "name": "Seismic Devnet Explorer", + "url": "https://explorer-2.seismicdev.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-513100.json b/_data/chains/eip155-513100.json index 9d60ff32ff32..7a022f8f8324 100644 --- a/_data/chains/eip155-513100.json +++ b/_data/chains/eip155-513100.json @@ -1,22 +1,22 @@ { - "name": "DisChain", + "name": "EthereumFair", "chainId": 513100, "networkId": 513100, - "shortName": "dis", - "chain": "DIS", + "shortName": "ethf", + "chain": "ETHF", "nativeCurrency": { - "name": "DisChain", - "symbol": "DIS", + "name": "EthereumFair", + "symbol": "ETHF", "decimals": 18 }, - "rpc": ["https://rpc.dischain.xyz"], + "rpc": ["https://rpc.etherfair.org"], "faucets": [], "explorers": [ { - "name": "DisChain", - "url": "https://www.oklink.com/dis", + "name": "EthereumFair", + "url": "https://www.oklink.com/ethf", "standard": "EIP3091" } ], - "infoURL": "https://dischain.xyz" + "infoURL": "https://etherfair.org/" } diff --git a/_data/chains/eip155-5151.json b/_data/chains/eip155-5151.json new file mode 100644 index 000000000000..c62148ac24ec --- /dev/null +++ b/_data/chains/eip155-5151.json @@ -0,0 +1,25 @@ +{ + "name": "Moca Chain Testnet", + "chain": "Moca Chain", + "rpc": ["https://testnet-rpc.mechain.tech"], + "faucets": ["https://faucet.mechain.tech"], + "nativeCurrency": { + "name": "MOCA", + "symbol": "MOCA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://mechain.tech", + "shortName": "MOCA", + "chainId": 5151, + "networkId": 5151, + "icon": "moca", + "explorers": [ + { + "name": "Moca Chain Scan", + "url": "https://testnet-scan.mechain.tech", + "icon": "moca", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5165.json b/_data/chains/eip155-5165.json index 318b03c02c40..be7712ff5c13 100644 --- a/_data/chains/eip155-5165.json +++ b/_data/chains/eip155-5165.json @@ -6,6 +6,8 @@ "rpc": [ "https://rpc1.bahamut.io", "https://rpc2.bahamut.io", + "https://rpc1.ftnscan.io", + "https://rpc2.ftnscan.io", "wss://ws1.sahara.bahamutchain.com", "wss://ws2.sahara.bahamutchain.com", "https://bahamut-rpc.publicnode.com", @@ -27,6 +29,11 @@ "name": "blockscout", "url": "https://ftnscan.com", "standard": "none" + }, + { + "name": "blockscout", + "url": "https://ftnscan.io", + "standard": "none" } ] } diff --git a/_data/chains/eip155-52014.json b/_data/chains/eip155-52014.json index c8ee61157c61..63990d769d73 100644 --- a/_data/chains/eip155-52014.json +++ b/_data/chains/eip155-52014.json @@ -1,7 +1,7 @@ { "name": "Electroneum Mainnet", "chain": "Electroneum", - "rpc": ["https://rpc.electroneum.com"], + "rpc": ["https://rpc.electroneum.com", "https://rpc.ankr.com/electroneum"], "faucets": [], "nativeCurrency": { "name": "Electroneum", diff --git a/_data/chains/eip155-5201420.json b/_data/chains/eip155-5201420.json index d465ecc431b6..7fb831e48e18 100644 --- a/_data/chains/eip155-5201420.json +++ b/_data/chains/eip155-5201420.json @@ -1,8 +1,8 @@ { "name": "Electroneum Testnet", "chain": "Electroneum", - "rpc": ["https://testnet-rpc.electroneum.com"], - "faucets": [], + "rpc": ["https://rpc.ankr.com/electroneum_testnet"], + "faucets": ["https://faucet.electroneum.com"], "nativeCurrency": { "name": "Electroneum", "symbol": "ETN", @@ -18,7 +18,7 @@ "explorers": [ { "name": "blockscout", - "url": "https://blockexplorer.thesecurityteam.rocks", + "url": "https://testnet-blockexplorer.electroneum.com", "icon": "electroneum", "standard": "EIP3091" } diff --git a/_data/chains/eip155-52027071.json b/_data/chains/eip155-52027071.json new file mode 100644 index 000000000000..04bd66eafe5c --- /dev/null +++ b/_data/chains/eip155-52027071.json @@ -0,0 +1,17 @@ +{ + "name": "Deviant Token Blockchain", + "chain": "DTBC", + "status": "incubating", + "rpc": ["https://rpc.devianttoken.net"], + "faucets": [], + "nativeCurrency": { + "name": "Deviant Token", + "symbol": "DTBC", + "decimals": 18 + }, + "infoURL": "https://devianttoken.net", + "shortName": "dtbc", + "chainId": 52027071, + "networkId": 52027071, + "explorers": [] +} diff --git a/_data/chains/eip155-52027080.json b/_data/chains/eip155-52027080.json new file mode 100644 index 000000000000..6b13dc338b90 --- /dev/null +++ b/_data/chains/eip155-52027080.json @@ -0,0 +1,17 @@ +{ + "name": "Deviant Token Blockchain Testnet", + "chain": "tDTBC", + "status": "incubating", + "rpc": ["https://trpc.devianttoken.net"], + "faucets": [], + "nativeCurrency": { + "name": "Deviant Token Testnet", + "symbol": "tDTBC", + "decimals": 18 + }, + "infoURL": "https://devianttoken.net", + "shortName": "tdtbc", + "chainId": 52027080, + "networkId": 52027080, + "explorers": [] +} diff --git a/_data/chains/eip155-52164803.json b/_data/chains/eip155-52164803.json new file mode 100644 index 000000000000..fd727b166c77 --- /dev/null +++ b/_data/chains/eip155-52164803.json @@ -0,0 +1,26 @@ +{ + "name": "Fluence Testnet", + "chain": "Fluence Testnet", + "rpc": ["https://rpc.testnet.fluence.dev/", "wss://ws.testnet.fluence.dev/"], + "faucets": [], + "nativeCurrency": { + "name": "tFLT", + "symbol": "tFLT", + "decimals": 18 + }, + "infoURL": "https://fluence.network/", + "shortName": "fluence-testnet", + "chainId": 52164803, + "networkId": 52164803, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.testnet.fluence.dev", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } +} diff --git a/_data/chains/eip155-52225.json b/_data/chains/eip155-52225.json new file mode 100644 index 000000000000..dff432788c8b --- /dev/null +++ b/_data/chains/eip155-52225.json @@ -0,0 +1,24 @@ +{ + "name": "Cytonic Settlement Layer Testnet", + "chain": "CytonicSL", + "rpc": ["http://rpc.sl.testnet.cytonic.com"], + "faucets": [], + "nativeCurrency": { + "name": "Cytonic", + "symbol": "CCC", + "decimals": 18 + }, + "infoURL": "https://cytonic.com", + "shortName": "CSL", + "chainId": 52225, + "networkId": 52225, + "icon": "cytonic_l1", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.sl.testnet.cytonic.com", + "icon": "cytonic_l1", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-52226.json b/_data/chains/eip155-52226.json new file mode 100644 index 000000000000..0a76aa8359b6 --- /dev/null +++ b/_data/chains/eip155-52226.json @@ -0,0 +1,28 @@ +{ + "name": "Cytonic Ethereum Testnet", + "chain": "CytonicEVM", + "rpc": ["http://rpc.evm.testnet.cytonic.com"], + "faucets": [], + "nativeCurrency": { + "name": "Cytonic", + "symbol": "CCC", + "decimals": 18 + }, + "infoURL": "https://cytonic.com", + "shortName": "CEVM", + "chainId": 52226, + "networkId": 52226, + "icon": "cytonic_l2", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.evm.testnet.cytonic.com", + "icon": "cytonic_l2", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-52225" + } +} diff --git a/_data/chains/eip155-529.json b/_data/chains/eip155-529.json index edadf2c3944a..f16bb132817a 100644 --- a/_data/chains/eip155-529.json +++ b/_data/chains/eip155-529.json @@ -1,14 +1,17 @@ { "name": "Firechain Mainnet", "chain": "FIRE", - "icon": "firechain", - "rpc": ["https://rpc-mainnet.thefirechain.com"], + "rpc": [ + "https://rpc-mainnet.thefirechain.com", + "https://rpc-mainnet.firestation.io" + ], "faucets": [], "nativeCurrency": { "name": "Firechain", "symbol": "FIRE", "decimals": 18 }, "infoURL": "https://thefirechain.com", "shortName": "fire", "chainId": 529, "networkId": 529, + "icon": "firechain", "explorers": [], "status": "incubating" } diff --git a/_data/chains/eip155-530.json b/_data/chains/eip155-530.json index a9200cecfb9e..157c9d79c501 100644 --- a/_data/chains/eip155-530.json +++ b/_data/chains/eip155-530.json @@ -1,22 +1,22 @@ { - "name": "F(x)Core Mainnet Network", - "chain": "Fxcore", + "name": "Pundi AIFX Omnilayer", + "chain": "PUNDIAI", "rpc": ["https://fx-json-web3.functionx.io:8545"], "faucets": [], "nativeCurrency": { - "name": "Function X", - "symbol": "FX", + "name": "Pundi AIFX", + "symbol": "PUNDAI", "decimals": 18 }, - "infoURL": "https://functionx.io/", - "shortName": "FxCore", + "infoURL": "https://fx.pundi.ai/", + "shortName": "pundiai", "chainId": 530, "networkId": 530, - "icon": "fxcore", + "icon": "pundiai", "explorers": [ { - "name": "FunctionX Explorer", - "url": "https://fx-evm.functionx.io", + "name": "PundiScan Explorer", + "url": "https://pundiscan.io/evm", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-531050104.json b/_data/chains/eip155-531050104.json new file mode 100644 index 000000000000..a2c571f1dec4 --- /dev/null +++ b/_data/chains/eip155-531050104.json @@ -0,0 +1,32 @@ +{ + "name": "Sophon Testnet", + "chain": "Sophon Testnet", + "rpc": ["https://rpc.testnet.sophon.xyz", "wss://rpc.testnet.sophon.xyz/ws"], + "nativeCurrency": { + "name": "Sophon", + "symbol": "SOPH", + "decimals": 18 + }, + "faucets": [], + "infoURL": "", + "shortName": "sophon-testnet", + "chainId": 531050104, + "networkId": 531050104, + "explorers": [ + { + "name": "Sophon Block Explorer", + "url": "https://explorer.testnet.sophon.xyz", + "icon": "sophon-testnet", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://portal.testnet.sophon.xyz/bridge" + } + ] + } +} diff --git a/_data/chains/eip155-5318008.json b/_data/chains/eip155-5318008.json index 7601ece44858..7010342d9e23 100644 --- a/_data/chains/eip155-5318008.json +++ b/_data/chains/eip155-5318008.json @@ -2,7 +2,7 @@ "name": "Reactive Kopli", "title": "Reactive Network Testnet Kopli", "chain": "REACT", - "rpc": ["https://kopli-rpc.reactive.network", "http://kopli-rpc.rkt.ink"], + "rpc": ["https://kopli-rpc.rnk.dev"], "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": ["https://dev.reactive.network/docs/kopli-testnet#faucet"], "nativeCurrency": { @@ -17,7 +17,7 @@ "networkId": 5318008, "explorers": [ { - "name": "reactscan", + "name": "Reactscan", "url": "https://kopli.reactscan.net", "standard": "none" } diff --git a/_data/chains/eip155-5321.json b/_data/chains/eip155-5321.json new file mode 100644 index 000000000000..229ab7d47fc6 --- /dev/null +++ b/_data/chains/eip155-5321.json @@ -0,0 +1,22 @@ +{ + "name": "ITX Testnet", + "chain": "ITX", + "rpc": ["https://rpc.testnet.itxchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "ITX", + "symbol": "ITX", + "decimals": 18 + }, + "infoURL": "https://explorer.testnet.itxchain.com", + "shortName": "itx-testnet", + "chainId": 5321, + "networkId": 5321, + "explorers": [ + { + "name": "ITX Testnet Explorer (Blockscout)", + "url": "https://explorer.testnet.itxchain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5330.json b/_data/chains/eip155-5330.json new file mode 100644 index 000000000000..11627b8f26a0 --- /dev/null +++ b/_data/chains/eip155-5330.json @@ -0,0 +1,25 @@ +{ + "name": "Superseed", + "chain": "ETH", + "rpc": ["https://mainnet.superseed.xyz", "wss://mainnet.superseed.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.superseed.xyz", + "shortName": "sseed", + "chainId": 5330, + "networkId": 5330, + "slip44": 1, + "icon": "superseed", + "explorers": [ + { + "name": "seedscout", + "url": "https://explorer.superseed.xyz", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-53302.json b/_data/chains/eip155-53302.json new file mode 100644 index 000000000000..009e81f339f1 --- /dev/null +++ b/_data/chains/eip155-53302.json @@ -0,0 +1,29 @@ +{ + "name": "Superseed Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://sepolia.superseed.xyz", "wss://sepolia.superseed.xyz"], + "faucets": ["https://sepoliafaucet.com"], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.superseed.xyz", + "shortName": "seedsep", + "chainId": 53302, + "networkId": 53302, + "slip44": 1, + "icon": "seedTestnet", + "explorers": [ + { + "name": "seedscout", + "url": "https://sepolia-explorer.superseed.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://sepolia-bridge.superseed.xyz/" }] + } +} diff --git a/_data/chains/eip155-5333.json b/_data/chains/eip155-5333.json new file mode 100644 index 000000000000..b325e89c9edb --- /dev/null +++ b/_data/chains/eip155-5333.json @@ -0,0 +1,24 @@ +{ + "name": "Netsbo", + "chain": "NETSBO", + "rpc": ["https://rpc1.netsbo.io", "https://rpc2.netsbo.io"], + "faucets": [], + "nativeCurrency": { + "name": "Netsbo", + "symbol": "NETS", + "decimals": 18 + }, + "infoURL": "https://netsbo.io", + "shortName": "nets", + "chainId": 5333, + "networkId": 5333, + "icon": "netsbo", + "explorers": [ + { + "name": "netsbo", + "url": "https://explorer.netsbo.io", + "icon": "netsbo", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-534351.json b/_data/chains/eip155-534351.json index 836b477f71d2..8a56bbe23434 100644 --- a/_data/chains/eip155-534351.json +++ b/_data/chains/eip155-534351.json @@ -6,7 +6,9 @@ "https://sepolia-rpc.scroll.io", "https://rpc.ankr.com/scroll_sepolia_testnet", "https://scroll-sepolia.chainstacklabs.com", - "https://scroll-testnet-public.unifra.io" + "https://scroll-testnet-public.unifra.io", + "https://scroll-sepolia-rpc.publicnode.com", + "wss://scroll-sepolia-rpc.publicnode.com" ], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-534352.json b/_data/chains/eip155-534352.json index 37c8e18edfcc..46ccb11b7304 100644 --- a/_data/chains/eip155-534352.json +++ b/_data/chains/eip155-534352.json @@ -5,7 +5,9 @@ "rpc": [ "https://rpc.scroll.io", "https://rpc.ankr.com/scroll", - "https://scroll-mainnet.chainstacklabs.com" + "https://scroll-mainnet.chainstacklabs.com", + "https://scroll-rpc.publicnode.com", + "wss://scroll-rpc.publicnode.com" ], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-53456.json b/_data/chains/eip155-53456.json new file mode 100644 index 000000000000..8ba2dba6cd25 --- /dev/null +++ b/_data/chains/eip155-53456.json @@ -0,0 +1,29 @@ +{ + "name": "BirdLayer", + "title": "BirdLayer", + "chain": "BirdLayer", + "icon": "birdlayer", + "rpc": [ + "https://rpc.birdlayer.xyz", + "https://rpc1.birdlayer.xyz", + "wss://rpc.birdlayer.xyz/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.dodochain.com", + "shortName": "birdlayer", + "chainId": 53456, + "networkId": 53456, + "explorers": [ + { + "name": "BirdLayer Explorer", + "url": "https://scan.birdlayer.xyz", + "icon": "birdlayer", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5371.json b/_data/chains/eip155-5371.json new file mode 100644 index 000000000000..59ceb8700380 --- /dev/null +++ b/_data/chains/eip155-5371.json @@ -0,0 +1,28 @@ +{ + "name": "Settlus", + "chain": "ETH", + "rpc": ["https://settlus-mainnet.g.alchemy.com/public"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://settlus.org", + "shortName": "setl", + "chainId": 5371, + "networkId": 5371, + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://settlus-mainnet.bridge.alchemy.com/" }] + }, + "explorers": [ + { + "name": "Settlus Mainnet Explorer", + "url": "https://mainnet.settlus.network", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-5372.json b/_data/chains/eip155-5372.json index fc6090a1d7a3..506de28aea51 100644 --- a/_data/chains/eip155-5372.json +++ b/_data/chains/eip155-5372.json @@ -1,8 +1,8 @@ { "name": "Settlus Testnet", "chain": "Settlus", - "rpc": ["https://settlus-test-eth.settlus.io"], - "faucets": ["https://faucet.settlus.io"], + "rpc": [], + "faucets": [], "nativeCurrency": { "name": "Setl", "symbol": "SETL", @@ -12,11 +12,5 @@ "shortName": "settlus-testnet", "chainId": 5372, "networkId": 5372, - "explorers": [ - { - "name": "Settlus Scan", - "url": "https://testnet.settlus.network", - "standard": "EIP3091" - } - ] + "status": "deprecated" } diff --git a/_data/chains/eip155-5373.json b/_data/chains/eip155-5373.json new file mode 100644 index 000000000000..ab49d99933fb --- /dev/null +++ b/_data/chains/eip155-5373.json @@ -0,0 +1,28 @@ +{ + "name": "Settlus Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://settlus-septestnet.g.alchemy.com/public"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://settlus.org", + "shortName": "setl-sepolia", + "chainId": 5373, + "networkId": 5373, + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://settlus-sep-testnet.bridge.alchemy.com/" }] + }, + "explorers": [ + { + "name": "Settlus Sepolia Testnet Explorer", + "url": "https://sepolia.settlus.network", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-54170.json b/_data/chains/eip155-54170.json new file mode 100644 index 000000000000..af20dcb70b33 --- /dev/null +++ b/_data/chains/eip155-54170.json @@ -0,0 +1,26 @@ +{ + "name": "Graphite Testnet", + "chain": "Graphite", + "rpc": [ + "https://anon-entrypoint-test-1.atgraphite.com", + "wss://ws-anon-entrypoint-test-1.atgraphite.com" + ], + "faucets": ["https://faucet.atgraphite.com/"], + "nativeCurrency": { + "name": "Graphite", + "symbol": "@G", + "decimals": 18 + }, + "infoURL": "https://atgraphite.com/", + "shortName": "graphiteTest", + "chainId": 54170, + "networkId": 54170, + "icon": "graphite", + "explorers": [ + { + "name": "Graphite Testnet Explorer", + "url": "https://test.atgraphite.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-54176.json b/_data/chains/eip155-54176.json new file mode 100644 index 000000000000..d7b666471448 --- /dev/null +++ b/_data/chains/eip155-54176.json @@ -0,0 +1,23 @@ +{ + "name": "OverProtocol Mainnet", + "chain": "OverProtocol", + "icon": "overIcon", + "rpc": ["https://rpc.overprotocol.com"], + "faucets": [], + "nativeCurrency": { + "name": "Over", + "symbol": "OVER", + "decimals": 18 + }, + "infoURL": "https://docs.over.network", + "shortName": "overprotocol", + "chainId": 54176, + "networkId": 54176, + "explorers": [ + { + "name": "OverView", + "url": "https://scan.over.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-541764.json b/_data/chains/eip155-541764.json new file mode 100644 index 000000000000..5a67656d9370 --- /dev/null +++ b/_data/chains/eip155-541764.json @@ -0,0 +1,23 @@ +{ + "name": "OverProtocol Testnet", + "chain": "OverProtocol", + "icon": "overIcon", + "rpc": ["https://rpc.dolphin.overprotocol.com"], + "faucets": [], + "nativeCurrency": { + "name": "Over", + "symbol": "OVER", + "decimals": 18 + }, + "infoURL": "https://docs.over.network", + "shortName": "overprotocol-testnet", + "chainId": 541764, + "networkId": 541764, + "explorers": [ + { + "name": "OverView Testnet", + "url": "https://dolphin-scan.over.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5424.json b/_data/chains/eip155-5424.json index 443a6bba4b18..8481365cc0af 100644 --- a/_data/chains/eip155-5424.json +++ b/_data/chains/eip155-5424.json @@ -1,11 +1,7 @@ { "name": "edeXa Mainnet", - "chain": "edeXa Network", - "rpc": [ - "https://mainnet.edexa.network/rpc", - "https://mainnet.edexa.com/rpc", - "https://io-dataseed1.mainnet.edexa.io-market.com/rpc" - ], + "chain": "edeXa", + "rpc": ["https://rpc.edexa.network", "https://rpc.edexa.com"], "faucets": [], "features": [ { @@ -16,19 +12,19 @@ } ], "nativeCurrency": { - "name": "EDEXA", + "name": "edeXa", "symbol": "EDX", "decimals": 18 }, "infoURL": "https://edexa.network/", - "shortName": "edeXa", + "shortName": "edx", "chainId": 5424, "networkId": 5424, "slip44": 1, "icon": "edexa", "explorers": [ { - "name": "edexa-mainnet", + "name": "edexa-mainnet-explorer", "url": "https://explorer.edexa.network", "standard": "EIP3091" } diff --git a/_data/chains/eip155-54321.json b/_data/chains/eip155-54321.json index 743fb024e650..012b044b743d 100644 --- a/_data/chains/eip155-54321.json +++ b/_data/chains/eip155-54321.json @@ -2,11 +2,11 @@ "name": "Toronet Testnet", "chain": "Toronet", "icon": "toronet", - "rpc": ["http://testnet.toronet.org/rpc"], + "rpc": ["https://testnet.toronet.org/rpc"], "faucets": [], "nativeCurrency": { - "name": "Toro", - "symbol": "TORO", + "name": "Toroe", + "symbol": "TOROE", "decimals": 18 }, "infoURL": "https://toronet.org", diff --git a/_data/chains/eip155-543210.json b/_data/chains/eip155-543210.json new file mode 100644 index 000000000000..f7c1f6cd0461 --- /dev/null +++ b/_data/chains/eip155-543210.json @@ -0,0 +1,29 @@ +{ + "name": "ZERO Network", + "chain": "ZERONetwork", + "icon": "zero", + "rpc": ["https://rpc.zerion.io/v1/zero"], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.zero.network" }] + }, + "faucets": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.zero.network", + "shortName": "zero-network", + "chainId": 543210, + "networkId": 543210, + "explorers": [ + { + "name": "ZERO Network Explorer", + "url": "https://explorer.zero.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5433.json b/_data/chains/eip155-5433.json new file mode 100644 index 000000000000..da2153203ecd --- /dev/null +++ b/_data/chains/eip155-5433.json @@ -0,0 +1,23 @@ +{ + "name": "Inertia Scan", + "chain": "IRTA", + "icon": "inertiascan", + "rpc": ["https://rpc.inertiascan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Inertia", + "symbol": "IRTA", + "decimals": 18 + }, + "infoURL": "https://inertiascan.com", + "shortName": "IRTA", + "chainId": 5433, + "networkId": 5433, + "explorers": [ + { + "name": "blockscout", + "url": "https://inertiascan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-545.json b/_data/chains/eip155-545.json index 923b86801aa8..9a1ad7e30040 100644 --- a/_data/chains/eip155-545.json +++ b/_data/chains/eip155-545.json @@ -1,8 +1,8 @@ { - "name": "Testnet", + "name": "Flow EVM Testnet", "chain": "Flow", "rpc": ["https://testnet.evm.nodes.onflow.org"], - "faucets": ["https://testnet-faucet.onflow.org"], + "faucets": ["https://faucet.flow.com/fund-account"], "nativeCurrency": { "name": "FLOW", "symbol": "FLOW", @@ -15,9 +15,9 @@ "icon": "flowevm", "explorers": [ { - "name": "Flow Diver", - "url": "https://testnet.flowdiver.io", - "standard": "none" + "name": "FlowScan Testnet", + "url": "https://evm-testnet.flowscan.io", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-54555.json b/_data/chains/eip155-54555.json deleted file mode 100644 index a348d9c6d40b..000000000000 --- a/_data/chains/eip155-54555.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "Photon Testnet", - "chain": "Photon", - "rpc": ["https://rpc-test.photonchain.io"], - "faucets": ["https://photonchain.io/airdrop"], - "nativeCurrency": { - "name": "Photon", - "symbol": "PTON", - "decimals": 18 - }, - "infoURL": "https://photonchain.io", - "shortName": "pton", - "chainId": 54555, - "networkId": 54555, - "explorers": [ - { - "name": "photon_testnet_explorer", - "url": "https://testnet.photonchain.io", - "standard": "none" - } - ] -} diff --git a/_data/chains/eip155-5464.json b/_data/chains/eip155-5464.json new file mode 100644 index 000000000000..cbea8a5dcccd --- /dev/null +++ b/_data/chains/eip155-5464.json @@ -0,0 +1,32 @@ +{ + "name": "Saga", + "chain": "SAGA", + "rpc": ["http://sagaevm-5464-1.jsonrpc.sagarpc.io"], + "faucets": [], + "nativeCurrency": { + "name": "gas", + "symbol": "GAS", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.saga.xyz", + "shortName": "saga", + "chainId": 5464, + "networkId": 5464, + "icon": "saga", + "explorers": [ + { + "name": "blockscout", + "url": "https://sagaevm-5464-1.sagaexplorer.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-550.json b/_data/chains/eip155-550.json new file mode 100644 index 000000000000..c3bca299db1c --- /dev/null +++ b/_data/chains/eip155-550.json @@ -0,0 +1,39 @@ +{ + "name": "River", + "chain": "river", + "rpc": [ + "https://mainnet.rpc.river.build", + "https://towns-mainnet.calderachain.xyz/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.river.build", + "shortName": "river", + "chainId": 550, + "networkId": 550, + "icon": "river", + "explorers": [ + { + "name": "River Explorer", + "url": "https://explorer.river.build", + "standard": "EIP3091" + }, + { + "name": "River Caldera Explorer", + "url": "https://towns-mainnet.calderaexplorer.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-55007.json b/_data/chains/eip155-55007.json new file mode 100644 index 000000000000..44cba4724dcf --- /dev/null +++ b/_data/chains/eip155-55007.json @@ -0,0 +1,25 @@ +{ + "name": "Titan Sepolia", + "chain": "ETH", + "rpc": [ + "https://rpc.titan-sepolia.tokamak.network", + "wss://rpc.titan-sepolia.tokamak.network/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://tokamak.network", + "shortName": "titan-sepolia", + "chainId": 55007, + "networkId": 55007, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.titan-sepolia.tokamak.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5511.json b/_data/chains/eip155-5511.json new file mode 100644 index 000000000000..62b4901e6b51 --- /dev/null +++ b/_data/chains/eip155-5511.json @@ -0,0 +1,24 @@ +{ + "name": "PointPay Mainnet", + "chain": "pointpay", + "rpc": ["https://rpc-mainnet.pointpay.io"], + "faucets": [], + "nativeCurrency": { + "name": "PointPay", + "symbol": "PXP", + "decimals": 18 + }, + "infoURL": "https://pointpay.io", + "shortName": "PP", + "chainId": 5511, + "networkId": 5511, + "icon": "pointpay", + "explorers": [ + { + "name": "PointPay Mainnet Explorer", + "url": "https://explorer.pointpay.io", + "icon": "pointpay", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5511555.json b/_data/chains/eip155-5511555.json new file mode 100644 index 000000000000..64581deaead7 --- /dev/null +++ b/_data/chains/eip155-5511555.json @@ -0,0 +1,24 @@ +{ + "name": "PointPay Testnet", + "chain": "pointpay", + "rpc": ["https://rpc-testnet.pointpay.io"], + "faucets": [], + "nativeCurrency": { + "name": "PointPay", + "symbol": "PXP", + "decimals": 18 + }, + "infoURL": "https://pointpay.io", + "shortName": "PPTEST", + "chainId": 5511555, + "networkId": 5511555, + "icon": "pointpay", + "explorers": [ + { + "name": "PointPay Testnet Explorer", + "url": "https://testnet.pointpay.io", + "icon": "pointpay", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-55244.json b/_data/chains/eip155-55244.json new file mode 100644 index 000000000000..904a317166a6 --- /dev/null +++ b/_data/chains/eip155-55244.json @@ -0,0 +1,27 @@ +{ + "name": "Superposition", + "chain": "Superposition", + "rpc": ["https://rpc.superposition.so"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://superposition.so", + "shortName": "spn", + "chainId": 55244, + "networkId": 55244, + "explorers": [ + { + "name": "Superposition Explorer", + "url": "https://explorer.superposition.so", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [] + } +} diff --git a/_data/chains/eip155-5545.json b/_data/chains/eip155-5545.json new file mode 100644 index 000000000000..be929c88f7a8 --- /dev/null +++ b/_data/chains/eip155-5545.json @@ -0,0 +1,17 @@ +{ + "name": "DuckChain Mainnet", + "title": "DuckChain Mainnet", + "chain": "DuckChain", + "icon": "duckchain", + "rpc": ["https://rpc.duckchain.io", "https://rpc-hk.duckchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "TON", + "symbol": "TON", + "decimals": 18 + }, + "infoURL": "https://duckchain.io", + "shortName": "Duck-Chain-Mainnet", + "chainId": 5545, + "networkId": 5545 +} diff --git a/_data/chains/eip155-5551.json b/_data/chains/eip155-5551.json index c5882f6bad4f..2fe949ac8995 100644 --- a/_data/chains/eip155-5551.json +++ b/_data/chains/eip155-5551.json @@ -1,7 +1,8 @@ { - "name": "Nahmii Mainnet", + "name": "Nahmii 2 Mainnet", "chain": "Nahmii", "rpc": ["https://l2.nahmii.io"], + "status": "active", "faucets": [], "nativeCurrency": { "name": "Ether", @@ -15,8 +16,8 @@ "icon": "nahmii", "explorers": [ { - "name": "Nahmii mainnet explorer", - "url": "https://explorer.nahmii.io", + "name": "Nahmii 2 Mainnet Explorer", + "url": "https://explorer.n2.nahmii.io", "icon": "nahmii", "standard": "EIP3091" } @@ -26,7 +27,7 @@ "chain": "eip155-1", "bridges": [ { - "url": "https://bridge.nahmii.io" + "url": "https://n2.bridge.nahmii.io" } ] } diff --git a/_data/chains/eip155-5553.json b/_data/chains/eip155-5553.json index 58bff6bbe844..41e06007ac01 100644 --- a/_data/chains/eip155-5553.json +++ b/_data/chains/eip155-5553.json @@ -1,7 +1,8 @@ { - "name": "Nahmii Testnet", + "name": "Nahmii 2 Testnet", "chain": "Nahmii", "rpc": ["https://l2.testnet.nahmii.io"], + "status": "deprecated", "faucets": [], "nativeCurrency": { "name": "Ether", diff --git a/_data/chains/eip155-55551.json b/_data/chains/eip155-55551.json new file mode 100644 index 000000000000..366b03174d83 --- /dev/null +++ b/_data/chains/eip155-55551.json @@ -0,0 +1,22 @@ +{ + "name": "Photon Aurora Testnet", + "chain": "Photon", + "rpc": ["https://rpc-test2.photonchain.io"], + "faucets": ["https://photonchain.io/testnet2"], + "nativeCurrency": { + "name": "Photon", + "symbol": "PTON", + "decimals": 18 + }, + "infoURL": "https://photonchain.io", + "shortName": "pton", + "chainId": 55551, + "networkId": 55551, + "explorers": [ + { + "name": "photon_testnet2_explorer", + "url": "https://testnet2.photonchain.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-555555.json b/_data/chains/eip155-555555.json new file mode 100644 index 000000000000..55a1301cf444 --- /dev/null +++ b/_data/chains/eip155-555555.json @@ -0,0 +1,32 @@ +{ + "name": "Pentagon Testnet", + "chain": "Pentagon", + "rpc": ["https://rpc-testnet.pentagon.games"], + "faucets": ["https://bridge-testnet.pentagon.games"], + "nativeCurrency": { + "name": "Pentagon", + "symbol": "PEN", + "decimals": 18 + }, + "icon": "pentagon-testnet", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://pentagon.games", + "shortName": "pentagon-testnet", + "chainId": 555555, + "networkId": 555555, + "explorers": [ + { + "name": "Pentagon Testnet Explorer", + "url": "https://explorer-testnet.pentagon.games", + "icon": "pentagon", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-555777.json b/_data/chains/eip155-555777.json new file mode 100644 index 000000000000..2f174ebfe6a4 --- /dev/null +++ b/_data/chains/eip155-555777.json @@ -0,0 +1,25 @@ +{ + "name": "Xsolla ZK Sepolia Testnet", + "chain": "Xsolla ZK Sepolia", + "rpc": ["https://zkrpc-sepolia.xsollazk.com"], + "faucets": ["https://xsollazk.com/faucet"], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://xsolla.com/zk", + "shortName": "xsollazk-sepolia", + "chainId": 555777, + "networkId": 555777, + "slip44": 1, + "icon": "xsollazk", + "explorers": [ + { + "name": "Xsolla ZK Sepolia Block Explorer", + "url": "https://x.la/explorer", + "icon": "xsollazk", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-555888.json b/_data/chains/eip155-555888.json new file mode 100644 index 000000000000..0336d1189ec4 --- /dev/null +++ b/_data/chains/eip155-555888.json @@ -0,0 +1,31 @@ +{ + "name": "DustBoy IoT", + "title": "DustBoy IoT", + "status": "active", + "chain": "DUSTBOY", + "rpc": ["https://dustboy-rpc.jibl2.com/"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "DST", + "decimals": 18 + }, + "infoURL": "https://www.cmuccdc.org/", + "shortName": "DustBoy_IoT", + "chainId": 555888, + "networkId": 555888, + "slip44": 1, + "icon": "dustboy", + "explorers": [ + { + "name": "blockscout", + "url": "https://dustboy.jibl2.com", + "standard": "EIP3091", + "icon": "dustboy" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + } +} diff --git a/_data/chains/eip155-55614.json b/_data/chains/eip155-55614.json new file mode 100644 index 000000000000..41723cd3d24e --- /dev/null +++ b/_data/chains/eip155-55614.json @@ -0,0 +1,22 @@ +{ + "name": "Flamma Mainnet", + "chain": "Flamma", + "rpc": ["https://rpc.flamma.network"], + "faucets": [], + "nativeCurrency": { + "name": "Flamma", + "symbol": "FLA", + "decimals": 18 + }, + "infoURL": "https://flamma.network", + "shortName": "FlammaMainnet", + "chainId": 55614, + "networkId": 55614, + "explorers": [ + { + "name": "flascan", + "url": "https://flascan.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-560000.json b/_data/chains/eip155-560000.json new file mode 100644 index 000000000000..675cfdbf789f --- /dev/null +++ b/_data/chains/eip155-560000.json @@ -0,0 +1,23 @@ +{ + "name": "Hetu Testnet", + "chain": "HETU", + "rpc": ["https://rpc.testchainv1.hetuscan.com"], + "faucets": ["https:/testchainv1.hetuscan.com"], + "nativeCurrency": { + "name": "tETH", + "symbol": "tETH", + "decimals": 18 + }, + "infoURL": "https://hetu.org", + "shortName": "HETU", + "chainId": 560000, + "networkId": 560000, + "explorers": [ + { + "name": "Hetu Testnet Scan", + "url": "https://testchainv1.hetuscan.com", + "icon": "hetu", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-560013.json b/_data/chains/eip155-560013.json new file mode 100644 index 000000000000..91846635abbf --- /dev/null +++ b/_data/chains/eip155-560013.json @@ -0,0 +1,29 @@ +{ + "name": "Rogue Chain", + "chainId": 560013, + "shortName": "rogue", + "chain": "ROGUE", + "networkId": 560013, + "icon": "rogue", + "nativeCurrency": { + "name": "Rogue", + "symbol": "ROGUE", + "decimals": 18 + }, + "rpc": ["https://rpc.roguechain.io/rpc", "wss://rpc.roguechain.io/ws"], + "faucets": [], + "explorers": [ + { + "name": "Roguescan", + "url": "https://roguescan.io", + "icon": "rogue", + "standard": "EIP3091" + } + ], + "infoURL": "https://roguechain.io", + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [{ "url": "https://bridge.arbitrum.io" }] + } +} diff --git a/_data/chains/eip155-560048.json b/_data/chains/eip155-560048.json new file mode 100644 index 000000000000..3d986c224c32 --- /dev/null +++ b/_data/chains/eip155-560048.json @@ -0,0 +1,29 @@ +{ + "name": "Ethereum Hoodi", + "title": "Ethereum Testnet Hoodi", + "chain": "ETH", + "icon": "ethereum", + "rpc": ["https://rpc.hoodi.ethpandaops.io"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [ + "https://faucet.hoodi.ethpandaops.io", + "https://hoodi-faucet.pk910.de/" + ], + "nativeCurrency": { + "name": "Hoodi Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://hoodi.ethpandaops.io", + "shortName": "hoe", + "chainId": 560048, + "networkId": 560048, + "slip44": 1, + "explorers": [ + { + "name": "dora", + "url": "https://light-hoodi.beaconcha.in", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-56288.json b/_data/chains/eip155-56288.json index 99597736cff7..020b1dca862a 100644 --- a/_data/chains/eip155-56288.json +++ b/_data/chains/eip155-56288.json @@ -28,7 +28,7 @@ ], "parent": { "type": "L2", - "chain": "eip155-5", + "chain": "eip155-56", "bridges": [ { "url": "https://gateway.boba.network" diff --git a/_data/chains/eip155-565.json b/_data/chains/eip155-565.json new file mode 100644 index 000000000000..bf6bda2cb8bd --- /dev/null +++ b/_data/chains/eip155-565.json @@ -0,0 +1,30 @@ +{ + "name": "Prometheuz Testnet", + "chain": "Prometheuz", + "rpc": ["https://explorer.testnet.prometheuz.io"], + "faucets": ["https://faucet.testnet.prometheuz.io"], + "nativeCurrency": { + "name": "Pyre", + "symbol": "PYRE", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "", + "shortName": "prometheuz-testnet", + "chainId": 565, + "networkId": 565, + "explorers": [ + { + "name": "Prometheuz Explorer", + "url": "https://explorer.testnet.prometheuz.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-5678.json b/_data/chains/eip155-5678.json index 57d00d1cdb73..044ce7a6feb1 100644 --- a/_data/chains/eip155-5678.json +++ b/_data/chains/eip155-5678.json @@ -2,10 +2,10 @@ "name": "Tanssi Demo", "chain": "TANGO", "rpc": [ - "https://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network", - "wss://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network" + "https://dancelight-2001.tanssi-api.network", + "wss://dancelight-2001.tanssi-api.network" ], - "faucets": [], + "faucets": ["https://apps.tanssi.network/demo"], "nativeCurrency": { "name": "TANGO", "symbol": "TANGO", @@ -18,7 +18,7 @@ "explorers": [ { "name": "BlockScout", - "url": "https://3001-blockscout.a.dancebox.tanssi.network", + "url": "https://dancelight-2001-blockscout.tanssi-chains.network", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-57.json b/_data/chains/eip155-57.json index 1d1604a23324..e59c0993355d 100644 --- a/_data/chains/eip155-57.json +++ b/_data/chains/eip155-57.json @@ -5,6 +5,7 @@ "https://rpc.syscoin.org", "https://rpc.ankr.com/syscoin/${ANKR_API_KEY}", "https://syscoin.public-rpc.com", + "https://57.rpc.thirdweb.com", "wss://rpc.syscoin.org/wss", "https://syscoin-evm.publicnode.com", "wss://syscoin-evm.publicnode.com" diff --git a/_data/chains/eip155-570.json b/_data/chains/eip155-570.json index fe508f88b748..d62e9df2b825 100644 --- a/_data/chains/eip155-570.json +++ b/_data/chains/eip155-570.json @@ -4,10 +4,9 @@ "rpc": [ "https://rpc.rollux.com", "wss://rpc.rollux.com/wss", - "https://rollux.rpc.syscoin.org", - "wss://rollux.rpc.syscoin.org/wss" + "https://rpc.ankr.com/rollux" ], - "faucets": ["https://rollux.id/faucetapp"], + "faucets": ["https://rollux.id/faucet"], "nativeCurrency": { "name": "Syscoin", "symbol": "SYS", @@ -19,7 +18,7 @@ "networkId": 570, "explorers": [ { - "name": "Rollux Explorer", + "name": "Rollux Mainnet Explorer", "url": "https://explorer.rollux.com", "standard": "EIP3091" } diff --git a/_data/chains/eip155-5700.json b/_data/chains/eip155-5700.json index bbdf6c61ea85..5cdc67ef1714 100644 --- a/_data/chains/eip155-5700.json +++ b/_data/chains/eip155-5700.json @@ -21,7 +21,7 @@ "explorers": [ { "name": "Syscoin Testnet Block Explorer", - "url": "https://tanenbaum.io", + "url": "https://explorer.tanenbaum.io", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-57054.json b/_data/chains/eip155-57054.json new file mode 100644 index 000000000000..becee0d54fb7 --- /dev/null +++ b/_data/chains/eip155-57054.json @@ -0,0 +1,21 @@ +{ + "name": "Sonic Blaze Testnet", + "chain": "blaze-testnet", + "rpc": [ + "https://rpc.blaze.soniclabs.com", + "https://sonic-blaze-rpc.publicnode.com", + "wss://sonic-blaze-rpc.publicnode.com" + ], + "faucets": ["https://blaze.soniclabs.com/account"], + "nativeCurrency": { + "name": "Sonic", + "symbol": "S", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://blaze.soniclabs.com", + "shortName": "blaze", + "chainId": 57054, + "networkId": 57054, + "icon": "sonic" +} diff --git a/_data/chains/eip155-57073.json b/_data/chains/eip155-57073.json new file mode 100644 index 000000000000..816b2db5dc4d --- /dev/null +++ b/_data/chains/eip155-57073.json @@ -0,0 +1,29 @@ +{ + "name": "Ink", + "chain": "ETH", + "rpc": [ + "https://rpc-gel.inkonchain.com", + "https://rpc-qnd.inkonchain.com", + "wss://rpc-gel.inkonchain.com", + "wss://rpc-qnd.inkonchain.com" + ], + "faucets": ["https://inkonchain.com/faucet"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://inkonchain.com", + "shortName": "ink", + "chainId": 57073, + "networkId": 57073, + "explorers": [ + { + "name": "Ink Explorer", + "url": "https://explorer.inkonchain.com", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-57451.json b/_data/chains/eip155-57451.json new file mode 100644 index 000000000000..3d6a75999808 --- /dev/null +++ b/_data/chains/eip155-57451.json @@ -0,0 +1,24 @@ +{ + "name": "COINSEC Network", + "title": "COINSEC Network", + "chain": "coinsecnetwork", + "icon": "coinsec", + "rpc": ["https://mainnet-rpc.coinsec.network"], + "faucets": [], + "nativeCurrency": { + "name": "COINSEC", + "symbol": "SEC", + "decimals": 18 + }, + "infoURL": "https://explorer.coinsec.network/", + "shortName": "coinsecnetwork", + "chainId": 57451, + "networkId": 57451, + "explorers": [ + { + "name": "coinsecnetwork", + "url": "https://explorer.coinsec.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5858.json b/_data/chains/eip155-5858.json new file mode 100644 index 000000000000..39b2f46c1598 --- /dev/null +++ b/_data/chains/eip155-5858.json @@ -0,0 +1,24 @@ +{ + "name": "Chang Chain Foundation Mainnet", + "chain": "ChangChain", + "rpc": ["https://rpc.cthscan.com/"], + "faucets": [], + "nativeCurrency": { + "name": "Chang Coin Thailand", + "symbol": "CTH", + "decimals": 18 + }, + "infoURL": "https://changcoin.foundation/", + "shortName": "ChangChain", + "chainId": 5858, + "networkId": 5858, + "icon": "changchain", + "explorers": [ + { + "name": "CTH Scan", + "url": "https://cthscan.com", + "standard": "EIP3091", + "icon": "blockscout" + } + ] +} diff --git a/_data/chains/eip155-58680.json b/_data/chains/eip155-58680.json new file mode 100644 index 000000000000..5d08d90e3ea0 --- /dev/null +++ b/_data/chains/eip155-58680.json @@ -0,0 +1,26 @@ +{ + "name": "Lumoz Quidditch Testnet", + "chain": "ETH", + "rpc": ["https://quidditch-rpc.lumoz.org"], + "faucets": [], + "nativeCurrency": { + "name": "Lumoz Quidditch Testnet Token", + "symbol": "MOZ", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://lumoz.org", + "shortName": "Lumoz-Quidditch-Testnet", + "chainId": 58680, + "networkId": 58680, + "slip44": 1, + "icon": "opside-new", + "explorers": [ + { + "name": "LumozQuidditchTestnetInfo", + "url": "https://quidditch.lumoz.info", + "icon": "opside-new", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5887.json b/_data/chains/eip155-5887.json new file mode 100644 index 000000000000..700ea59d4808 --- /dev/null +++ b/_data/chains/eip155-5887.json @@ -0,0 +1,28 @@ +{ + "name": "MANTRACHAIN Testnet", + "chain": "Dukong", + "rpc": [ + "https://evm.dukong.mantrachain.io", + "wss://evm.dukong.mantrachain.io/ws" + ], + "faucets": ["https://faucet.dukong.mantrachain.io"], + "nativeCurrency": { + "name": "OM", + "symbol": "OM", + "decimals": 18 + }, + "infoURL": "https://mantrachain.io", + "shortName": "dukong", + "chainId": 5887, + "networkId": 5887, + "slip44": 1, + "icon": "om", + "explorers": [ + { + "name": "Dukong Explorer", + "url": "http://mantrascan.io", + "standard": "none", + "icon": "om" + } + ] +} diff --git a/_data/chains/eip155-5888.json b/_data/chains/eip155-5888.json new file mode 100644 index 000000000000..64c587dfe6ed --- /dev/null +++ b/_data/chains/eip155-5888.json @@ -0,0 +1,25 @@ +{ + "name": "MANTRACHAIN Mainnet", + "chain": "MANTRACHAIN", + "rpc": ["https://evm.mantrachain.io", "wss://evm.mantrachain.io/ws"], + "faucets": [], + "nativeCurrency": { + "name": "OM", + "symbol": "OM", + "decimals": 18 + }, + "infoURL": "https://mantrachain.io", + "shortName": "mantrachain", + "chainId": 5888, + "networkId": 5888, + "slip44": 1, + "icon": "om", + "explorers": [ + { + "name": "MANTRACHAIN Explorer", + "url": "http://mantrascan.io", + "standard": "none", + "icon": "om" + } + ] +} diff --git a/_data/chains/eip155-59141.json b/_data/chains/eip155-59141.json index 96428895a5d8..2e63c4b3751c 100644 --- a/_data/chains/eip155-59141.json +++ b/_data/chains/eip155-59141.json @@ -6,7 +6,9 @@ "https://rpc.sepolia.linea.build", "wss://rpc.sepolia.linea.build", "https://linea-sepolia.infura.io/v3/${INFURA_API_KEY}", - "wss://linea-sepolia.infura.io/ws/v3/${INFURA_API_KEY}" + "wss://linea-sepolia.infura.io/ws/v3/${INFURA_API_KEY}", + "https://linea-sepolia-rpc.publicnode.com", + "wss://linea-sepolia-rpc.publicnode.com" ], "faucets": [], "nativeCurrency": { @@ -22,7 +24,7 @@ "icon": "linea", "parent": { "type": "L2", - "chain": "eip155-5", + "chain": "eip155-11155111", "bridges": [ { "url": "https://bridge.linea.build/" diff --git a/_data/chains/eip155-59144.json b/_data/chains/eip155-59144.json index bbf1919df7c6..08ae917bcad2 100644 --- a/_data/chains/eip155-59144.json +++ b/_data/chains/eip155-59144.json @@ -6,7 +6,9 @@ "https://rpc.linea.build", "wss://rpc.linea.build", "https://linea-mainnet.infura.io/v3/${INFURA_API_KEY}", - "wss://linea-mainnet.infura.io/ws/v3/${INFURA_API_KEY}" + "wss://linea-mainnet.infura.io/ws/v3/${INFURA_API_KEY}", + "https://linea-rpc.publicnode.com", + "wss://linea-rpc.publicnode.com" ], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-59902.json b/_data/chains/eip155-59902.json new file mode 100644 index 000000000000..7cc06a440eb5 --- /dev/null +++ b/_data/chains/eip155-59902.json @@ -0,0 +1,31 @@ +{ + "name": "Metis Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.metisdevops.link", + "https://metis-sepolia-rpc.publicnode.com", + "wss://metis-sepolia-rpc.publicnode.com" + ], + "faucets": ["https://sepolia.faucet.metisdevops.link"], + "nativeCurrency": { + "name": "tMetis", + "symbol": "tMETIS", + "decimals": 18 + }, + "infoURL": "https://www.metis.io", + "shortName": "metis-sepolia", + "chainId": 59902, + "networkId": 59902, + "explorers": [ + { + "name": "blockscout", + "url": "https://sepolia-explorer.metisdevops.link", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://bridge.metis.io" }] + } +} diff --git a/_data/chains/eip155-6000.json b/_data/chains/eip155-6000.json index 9038b7ae2ded..601c72a868a2 100644 --- a/_data/chains/eip155-6000.json +++ b/_data/chains/eip155-6000.json @@ -12,6 +12,7 @@ "shortName": "bouncebit-testnet", "chainId": 6000, "networkId": 6000, + "icon": "bouncebit", "explorers": [ { "name": "BBScan Testnet Explorer", diff --git a/_data/chains/eip155-6001.json b/_data/chains/eip155-6001.json index 3ff63ecacd48..b7d4b1f3fa67 100644 --- a/_data/chains/eip155-6001.json +++ b/_data/chains/eip155-6001.json @@ -12,6 +12,7 @@ "shortName": "bouncebit-mainnet", "chainId": 6001, "networkId": 6001, + "icon": "bouncebit", "explorers": [ { "name": "BBScan Mainnet Explorer", diff --git a/_data/chains/eip155-6060.json b/_data/chains/eip155-6060.json new file mode 100644 index 000000000000..7df36802f63b --- /dev/null +++ b/_data/chains/eip155-6060.json @@ -0,0 +1,24 @@ +{ + "name": "BC Hyper Chain Testnet", + "chain": "BC Hyper Chain", + "rpc": ["https://rpc.bchscan.io"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "TEST VERSATIZE COIN", + "symbol": "TVTCN", + "decimals": 18 + }, + "infoURL": "https://www.versatizecoin.com/", + "shortName": "BCH", + "chainId": 6060, + "networkId": 6060, + "icon": "bchyper", + "explorers": [ + { + "name": "bcexplorer testnet", + "url": "https://testnet.bchscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-60808.json b/_data/chains/eip155-60808.json index 4a9b5012b5b5..6368a6b58a2d 100644 --- a/_data/chains/eip155-60808.json +++ b/_data/chains/eip155-60808.json @@ -1,7 +1,12 @@ { "name": "BOB", "chain": "ETH", - "rpc": ["https://rpc.gobob.xyz", "wss://rpc.gobob.xyz"], + "rpc": [ + "https://rpc.gobob.xyz", + "wss://rpc.gobob.xyz", + "https://bob-mainnet.public.blastapi.io", + "wss://bob-mainnet.public.blastapi.io" + ], "faucets": [], "nativeCurrency": { "name": "Ether", diff --git a/_data/chains/eip155-60850.json b/_data/chains/eip155-60850.json new file mode 100644 index 000000000000..458550c3629c --- /dev/null +++ b/_data/chains/eip155-60850.json @@ -0,0 +1,32 @@ +{ + "name": "Perennial Sepolia", + "chain": "perennialSepolia", + "rpc": ["https://rpc-sepolia.perennial.foundation"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://perennial.finance", + "shortName": "perennial-sepolia", + "chainId": 60850, + "networkId": 60850, + "icon": "perennial", + "explorers": [ + { + "name": "Perennial Explorer", + "url": "https://explorer-sepolia.perennial.foundation", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-84532", + "bridges": [ + { + "url": "https://bridge-sepolia.perennial.foundation" + } + ] + } +} diff --git a/_data/chains/eip155-610.json b/_data/chains/eip155-610.json new file mode 100644 index 000000000000..731ea6bcf304 --- /dev/null +++ b/_data/chains/eip155-610.json @@ -0,0 +1,24 @@ +{ + "name": "Darwin Devnet", + "chain": "Darwin", + "rpc": ["https://devnet-rpc.darwinchain.ai"], + "faucets": ["https://devnet-rpc.darwinchain.ai/faucet"], + "nativeCurrency": { + "name": "Darwin Devnet token", + "symbol": "DNA", + "decimals": 18 + }, + "infoURL": "https://darwinchain.ai", + "shortName": "darwin-devnet", + "chainId": 610, + "networkId": 610, + "icon": "darwin", + "explorers": [ + { + "name": "Darwin Explorer", + "url": "https://explorer.darwinchain.ai", + "icon": "darwin", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-61022.json b/_data/chains/eip155-61022.json new file mode 100644 index 000000000000..7776ff6267b5 --- /dev/null +++ b/_data/chains/eip155-61022.json @@ -0,0 +1,25 @@ +{ + "name": "Orange Chain Mainnet", + "title": "Orange Chain Mainnet", + "chain": "Orange Chain", + "rpc": ["https://rpc.orangechain.xyz", "https://hk-rpc.orangechain.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://orangechain.xyz", + "shortName": "Orange-Chain-Mainnet", + "chainId": 61022, + "networkId": 61022, + "icon": "orange", + "explorers": [ + { + "name": "Blockscout", + "url": "https://scan.orangechain.xyz", + "icon": "orange", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-61022448.json b/_data/chains/eip155-61022448.json new file mode 100644 index 000000000000..39c117500fd6 --- /dev/null +++ b/_data/chains/eip155-61022448.json @@ -0,0 +1,15 @@ +{ + "name": "dKargo Warehouse Testnet", + "chain": "dKargo Warehouse", + "rpc": ["https://rpc.warehouse.dkargo.io"], + "faucets": [], + "nativeCurrency": { + "name": "dKargo", + "symbol": "DKA", + "decimals": 18 + }, + "infoURL": "https://dkargo.io", + "shortName": "dkargowarehouse", + "chainId": 61022448, + "networkId": 61022448 +} diff --git a/_data/chains/eip155-61166.json b/_data/chains/eip155-61166.json new file mode 100644 index 000000000000..0a31a467b9fa --- /dev/null +++ b/_data/chains/eip155-61166.json @@ -0,0 +1,34 @@ +{ + "name": "Treasure", + "chain": "Treasure", + "shortName": "treasure", + "chainId": 61166, + "networkId": 61166, + "nativeCurrency": { + "name": "MAGIC", + "symbol": "MAGIC", + "decimals": 18 + }, + "slip44": 1, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://app.treasure.lol", + "icon": "treasure", + "rpc": ["https://rpc.treasure.lol", "wss://rpc.treasure.lol/ws"], + "faucets": [ + "https://app.treasure.lol/chain/faucet", + "https://thirdweb.com/treasure" + ], + "explorers": [ + { + "name": "Treasure Block Explorer", + "url": "https://treasurescan.io", + "icon": "treasure", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://app.treasure.lol/chain/bridge" }] + } +} diff --git a/_data/chains/eip155-6122.json b/_data/chains/eip155-6122.json new file mode 100644 index 000000000000..7e57406233ea --- /dev/null +++ b/_data/chains/eip155-6122.json @@ -0,0 +1,20 @@ +{ + "name": "Tea Mainnet", + "chain": "TEA", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Tea", + "symbol": "TEA", + "decimals": 18 + }, + "infoURL": "https://tea.xyz", + "shortName": "tea", + "chainId": 6122, + "networkId": 6122, + "parent": { + "type": "L2", + "chain": "eip155-1" + }, + "status": "incubating" +} diff --git a/_data/chains/eip155-619.json b/_data/chains/eip155-619.json new file mode 100644 index 000000000000..86d8e9447ea0 --- /dev/null +++ b/_data/chains/eip155-619.json @@ -0,0 +1,31 @@ +{ + "name": "Skynet", + "chain": "Skynet", + "rpc": ["http://rpc.skynet.io"], + "nativeCurrency": { + "name": "SkyUSD", + "symbol": "sUSD", + "decimals": 18 + }, + "infoURL": "http://explorer.skynet.io", + "shortName": "Skynet", + "chainId": 619, + "networkId": 619, + "explorers": [ + { + "name": "tracehawk", + "url": "http://explorer.skynet.io", + "standard": "none" + } + ], + "faucets": [], + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [ + { + "url": "http://bridge.skynet.io" + } + ] + } +} diff --git a/_data/chains/eip155-62092.json b/_data/chains/eip155-62092.json new file mode 100644 index 000000000000..d8f368db058c --- /dev/null +++ b/_data/chains/eip155-62092.json @@ -0,0 +1,24 @@ +{ + "name": "TikTrix Testnet", + "chain": "tTTX", + "icon": "tiktrix", + "rpc": ["https://tiktrix-rpc.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "tTTX", + "symbol": "tTTX", + "decimals": 18 + }, + "infoURL": "https://tiktrix.gg", + "shortName": "tiktrix-testnet", + "chainId": 62092, + "networkId": 62092, + "slip44": 1, + "explorers": [ + { + "name": "TikTrix Testnet Explorer", + "url": "https://tiktrix.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-621847.json b/_data/chains/eip155-621847.json new file mode 100644 index 000000000000..dac6f74bc352 --- /dev/null +++ b/_data/chains/eip155-621847.json @@ -0,0 +1,24 @@ +{ + "name": "DJT Testnet", + "chain": "DJT", + "icon": "djt", + "rpc": ["https://testnet-rpc.trumpchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "TrumpChain", + "symbol": "DJT", + "decimals": 18 + }, + "infoURL": "https://testnet-explorer.trumpchain.io", + "shortName": "DJT", + "chainId": 621847, + "networkId": 621847, + "explorers": [ + { + "name": "DJT Testnet Explorer", + "url": "https://testnet-explorer.trumpchain.io", + "icon": "djt", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-622463.json b/_data/chains/eip155-622463.json new file mode 100644 index 000000000000..a5d19434f0be --- /dev/null +++ b/_data/chains/eip155-622463.json @@ -0,0 +1,25 @@ +{ + "name": "Atlas", + "title": "Atlas Testnet", + "chain": "ATLAS", + "icon": "atlas", + "rpc": ["https://rpc.testnet.atl.network"], + "faucets": [], + "nativeCurrency": { + "name": "TON", + "symbol": "TON", + "decimals": 18 + }, + "infoURL": "https://atl.network", + "shortName": "atlas-testnet", + "chainId": 622463, + "networkId": 622463, + "explorers": [ + { + "name": "Atlas Testnet Scan", + "url": "https://explorer.testnet.atl.network", + "icon": "atlas", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-62298.json b/_data/chains/eip155-62298.json new file mode 100644 index 000000000000..f1f83113fa30 --- /dev/null +++ b/_data/chains/eip155-62298.json @@ -0,0 +1,25 @@ +{ + "name": "Citrea Devnet", + "chain": "Citrea", + "rpc": ["https://rpc.devnet.citrea.xyz"], + "faucets": ["https://citrea.xyz/bridge"], + "nativeCurrency": { + "name": "Citrea BTC", + "symbol": "cBTC", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://citrea.xyz", + "shortName": "citrea-devnet", + "chainId": 62298, + "networkId": 62298, + "icon": "citrea", + "explorers": [ + { + "name": "Citrea Devnet Explorer", + "url": "https://explorer.devnet.citrea.xyz", + "icon": "citrea", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-6231991.json b/_data/chains/eip155-6231991.json new file mode 100644 index 000000000000..ea4b65891627 --- /dev/null +++ b/_data/chains/eip155-6231991.json @@ -0,0 +1,22 @@ +{ + "name": "Block Chain LOL Berachain Testnet", + "chain": "Block Chain LOL Berachain", + "rpc": ["https://block-chain.alt.technology"], + "faucets": ["https://faucet.block-chain.lol/"], + "nativeCurrency": { + "name": "HarryPotterObamaSonic10Inu", + "symbol": "HARRY", + "decimals": 18 + }, + "infoURL": "https://block-chain.lol/", + "shortName": "block-chain-lol-testnet", + "chainId": 6231991, + "networkId": 6231991, + "explorers": [ + { + "name": "Block Chain LOL Berachain Testnet Blockscout Explorer", + "url": "https://explorer.block-chain.lol", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-624.json b/_data/chains/eip155-624.json new file mode 100644 index 000000000000..e710a5d5b9e7 --- /dev/null +++ b/_data/chains/eip155-624.json @@ -0,0 +1,22 @@ +{ + "name": "Binary Mainnet", + "chain": "The Binary Holdings", + "rpc": ["https://rpc.zero.thebinaryholdings.com"], + "faucets": [], + "nativeCurrency": { + "name": "Binary Token", + "symbol": "BNRY", + "decimals": 18 + }, + "infoURL": "", + "shortName": "thebinaryholdings-mainnet", + "chainId": 624, + "networkId": 624, + "explorers": [ + { + "name": "Tracehawk", + "url": "https://explorer.thebinaryholdings.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-625.json b/_data/chains/eip155-625.json new file mode 100644 index 000000000000..13193c1e776a --- /dev/null +++ b/_data/chains/eip155-625.json @@ -0,0 +1,22 @@ +{ + "name": "Binary Sepolia", + "chain": "The Binary Holdings", + "rpc": ["https://rpc.testnet.thebinaryholdings.com"], + "faucets": [], + "nativeCurrency": { + "name": "Test BNRY", + "symbol": "BNRY", + "decimals": 18 + }, + "infoURL": "", + "shortName": "thebinaryholdings-sepolia", + "chainId": 625, + "networkId": 625, + "explorers": [ + { + "name": "Tracehawk", + "url": "https://explorer.sepolia.thebinaryholdings.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-6278.json b/_data/chains/eip155-6278.json new file mode 100644 index 000000000000..e86a821440df --- /dev/null +++ b/_data/chains/eip155-6278.json @@ -0,0 +1,31 @@ +{ + "name": "Rails", + "title": "Rails Network Mainnet", + "chain": "RAILS", + "icon": "rails", + "rpc": ["https://mainnet.steamexchange.io"], + "features": [ + { "name": "EIP155" }, + { "name": "EIP1559" }, + { "name": "EIP6551" } + ], + "faucets": [], + "nativeCurrency": { + "name": "SteamX", + "symbol": "STEAMX", + "decimals": 18 + }, + "infoURL": "https://steamexchange.io", + "shortName": "rails", + "chainId": 6278, + "networkId": 6278, + "slip44": 6278, + "explorers": [ + { + "name": "blockscout", + "url": "https://explore.steamexchange.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-6283.json b/_data/chains/eip155-6283.json new file mode 100644 index 000000000000..89f2bbfe1827 --- /dev/null +++ b/_data/chains/eip155-6283.json @@ -0,0 +1,28 @@ +{ + "name": "LAOS", + "title": "LAOS Mainnet", + "chain": "LAOS", + "icon": "laosnetwork", + "rpc": [ + "https://rpc.laos.laosfoundation.io", + "wss://rpc.laos.laosfoundation.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "LAOS", + "symbol": "LAOS", + "decimals": 18 + }, + "infoURL": "https://laosnetwork.io", + "shortName": "laosnetwork", + "chainId": 6283, + "networkId": 6283, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.laos.laosfoundation.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-62831.json b/_data/chains/eip155-62831.json index 449f4c716b1e..2840269799ce 100644 --- a/_data/chains/eip155-62831.json +++ b/_data/chains/eip155-62831.json @@ -16,8 +16,8 @@ "slip44": 1, "explorers": [ { - "name": "Avalanche Subnet Testnet Explorer", - "url": "https://subnets-test.avax.network/plyr", + "name": "PLYR TAU Explorer", + "url": "https://explorer-testnet.plyr.network", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-62850.json b/_data/chains/eip155-62850.json new file mode 100644 index 000000000000..a957098a1c22 --- /dev/null +++ b/_data/chains/eip155-62850.json @@ -0,0 +1,27 @@ +{ + "name": "LAOS Sigma Testnet", + "title": "LAOS Sigma Testnet", + "chain": "LAOS Sigma Testnet", + "rpc": [ + "https://rpc.laossigma.laosfoundation.io", + "wss://rpc.laossigma.laosfoundation.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "SIGMA", + "symbol": "SIGMA", + "decimals": 18 + }, + "infoURL": "https://laosnetwork.io", + "shortName": "laossigma", + "chainId": 62850, + "networkId": 62850, + "explorers": [ + { + "name": "blockscout", + "url": "https://sigma.explorer.laosnetwork.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-63000.json b/_data/chains/eip155-63000.json index a2ecbaf4c173..af360622867e 100644 --- a/_data/chains/eip155-63000.json +++ b/_data/chains/eip155-63000.json @@ -1,23 +1,24 @@ { - "name": "eCredits Mainnet", + "name": "eSync Network Mainnet", + "title": "eSync Network Mainnet", "chain": "ECS", - "rpc": ["https://rpc.ecredits.com"], + "rpc": ["https://rpc.esync.network", "https://rpc.ecredits.com"], "faucets": [], "nativeCurrency": { "name": "eCredits", "symbol": "ECS", "decimals": 18 }, - "infoURL": "https://ecredits.com", - "shortName": "ecs", + "infoURL": "https://esync.network", + "shortName": "esync-mainnet", "chainId": 63000, "networkId": 63000, - "icon": "ecredits", + "icon": "esync", "explorers": [ { - "name": "eCredits MainNet Explorer", - "url": "https://explorer.ecredits.com", - "icon": "ecredits", + "name": "eSync Network Mainnet Explorer", + "url": "https://explorer.esync.network", + "icon": "esync", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-63001.json b/_data/chains/eip155-63001.json index 64277a54446b..26c19180feff 100644 --- a/_data/chains/eip155-63001.json +++ b/_data/chains/eip155-63001.json @@ -1,7 +1,7 @@ { "name": "eCredits Testnet", "chain": "ECS", - "rpc": ["https://rpc.tst.ecredits.com"], + "rpc": [], "faucets": ["https://faucet.tst.ecredits.com"], "nativeCurrency": { "name": "eCredits", @@ -9,7 +9,7 @@ "decimals": 18 }, "infoURL": "https://ecredits.com", - "shortName": "ecs-testnet", + "shortName": "ecs-testnet-old", "chainId": 63001, "networkId": 63001, "slip44": 1, @@ -21,5 +21,6 @@ "icon": "ecredits", "standard": "EIP3091" } - ] + ], + "status": "deprecated" } diff --git a/_data/chains/eip155-63002.json b/_data/chains/eip155-63002.json new file mode 100644 index 000000000000..e3c56da1d381 --- /dev/null +++ b/_data/chains/eip155-63002.json @@ -0,0 +1,26 @@ +{ + "name": "eSync Network Testnet", + "title": "eSync Network Testnet", + "chain": "ECS", + "rpc": ["https://rpc.tst.esync.network"], + "faucets": ["https://faucet.tst.ecredits.com"], + "nativeCurrency": { + "name": "eCredits", + "symbol": "ECS", + "decimals": 18 + }, + "infoURL": "https://esync.network", + "shortName": "esync-testnet", + "chainId": 63002, + "networkId": 63002, + "slip44": 1, + "icon": "esync", + "explorers": [ + { + "name": "eSync Network Testnet Explorer", + "url": "https://explorer.tst.esync.network", + "icon": "esync", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-63157.json b/_data/chains/eip155-63157.json new file mode 100644 index 000000000000..ddcf133f688f --- /dev/null +++ b/_data/chains/eip155-63157.json @@ -0,0 +1,25 @@ +{ + "name": "Geist Mainnet", + "chain": "Geist", + "rpc": ["https://geist-mainnet.g.alchemy.com/public"], + "faucets": [], + "nativeCurrency": { + "name": "Aavegotchi GHST Token", + "symbol": "GHST", + "decimals": 18 + }, + "features": [], + "infoURL": "https://playongeist.com", + "shortName": "geist", + "chainId": 63157, + "networkId": 63157, + "status": "active", + "icon": "geist", + "explorers": [ + { + "name": "Geist Explorer", + "url": "https://geist-mainnet.explorer.alchemy.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-631571.json b/_data/chains/eip155-631571.json new file mode 100644 index 000000000000..a8e4a94b0229 --- /dev/null +++ b/_data/chains/eip155-631571.json @@ -0,0 +1,25 @@ +{ + "name": "Polter Testnet", + "chain": "Geist", + "rpc": ["https://geist-polter.g.alchemy.com/public"], + "faucets": [], + "nativeCurrency": { + "name": "Polter GHST", + "symbol": "GHST", + "decimals": 18 + }, + "features": [], + "infoURL": "https://playongeist.com", + "shortName": "poltergeist", + "chainId": 631571, + "networkId": 631571, + "status": "active", + "icon": "polterGeist", + "explorers": [ + { + "name": "Polter Testnet Explorer", + "url": "https://polter-testnet.explorer.alchemy.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-632.json b/_data/chains/eip155-632.json new file mode 100644 index 000000000000..9c1f4e40d138 --- /dev/null +++ b/_data/chains/eip155-632.json @@ -0,0 +1,22 @@ +{ + "name": "NFB Chain", + "chain": "NFB Chain", + "rpc": ["https://node.nfbchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "NFBCoin", + "symbol": "NFBC", + "decimals": 18 + }, + "infoURL": "https://nfbchain.com/", + "shortName": "nfbchain", + "chainId": 632, + "networkId": 632, + "explorers": [ + { + "name": "NFB Chain Explorer", + "url": "https://scan.nfbchain.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-6320.json b/_data/chains/eip155-6320.json new file mode 100644 index 000000000000..4baa03c73a61 --- /dev/null +++ b/_data/chains/eip155-6320.json @@ -0,0 +1,22 @@ +{ + "name": "NFB Chain Testnet", + "chain": "NFB Chain Testnet", + "rpc": ["https://testnet-node.nfbchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "NFBCoinTest", + "symbol": "NFBCT", + "decimals": 18 + }, + "infoURL": "https://nfbchain.com/", + "shortName": "nfbchaintest", + "chainId": 6320, + "networkId": 6320, + "explorers": [ + { + "name": "NFB Chain Testnet Explorer", + "url": "https://testnet-scan.nfbchain.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-6322.json b/_data/chains/eip155-6322.json new file mode 100644 index 000000000000..3289bc43c7e5 --- /dev/null +++ b/_data/chains/eip155-6322.json @@ -0,0 +1,25 @@ +{ + "name": "Aura Mainnet", + "chain": "Aura", + "rpc": ["https://jsonrpc.aura.network"], + "faucets": [], + "nativeCurrency": { + "name": "Aura", + "symbol": "AURA", + "decimals": 18 + }, + "infoURL": "https://aura.network", + "shortName": "aura", + "chainId": 6322, + "networkId": 6322, + "slip44": 1, + "icon": "aura", + "explorers": [ + { + "name": "Aurascan Explorer", + "url": "https://aurascan.io", + "standard": "none", + "icon": "aura" + } + ] +} diff --git a/_data/chains/eip155-6342.json b/_data/chains/eip155-6342.json new file mode 100644 index 000000000000..8e72a3bebc4b --- /dev/null +++ b/_data/chains/eip155-6342.json @@ -0,0 +1,16 @@ +{ + "name": "MegaETH Testnet", + "chain": "ETH", + "nativeCurrency": { + "name": "MegaETH Testnet Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": ["https://carrot.megaeth.com/rpc", "wss://carrot.megaeth.com/ws"], + "faucets": [], + "infoURL": "https://testnet.megaeth.com", + "shortName": "megatest", + "chainId": 6342, + "networkId": 6342, + "slip44": 1 +} diff --git a/_data/chains/eip155-6398.json b/_data/chains/eip155-6398.json new file mode 100644 index 000000000000..b4421f0f3c71 --- /dev/null +++ b/_data/chains/eip155-6398.json @@ -0,0 +1,23 @@ +{ + "name": "Connext Sepolia", + "chain": "Connext Sepolia", + "rpc": ["https://rpc.connext-sepolia.gelato.digital/"], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "faucets": [], + "infoURL": "", + "shortName": "connext-sepolia", + "chainId": 6398, + "networkId": 6398, + "explorers": [ + { + "name": "Connext Sepolia", + "url": "https://connext-sepolia.blockscout.com", + "icon": "connext", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-64002.json b/_data/chains/eip155-64002.json new file mode 100644 index 000000000000..8700e9316d27 --- /dev/null +++ b/_data/chains/eip155-64002.json @@ -0,0 +1,22 @@ +{ + "name": "XCHAIN Testnet", + "chain": "XCHAIN", + "rpc": ["https://xchain-testnet-rpc.kuma.bid"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://kuma.bid", + "shortName": "xct", + "chainId": 64002, + "networkId": 64002, + "explorers": [ + { + "name": "XCHAIN Testnet Explorer", + "url": "https://xchain-testnet-explorer.kuma.bid", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-646.json b/_data/chains/eip155-646.json index 71a5a1aea229..96ef54bd3366 100644 --- a/_data/chains/eip155-646.json +++ b/_data/chains/eip155-646.json @@ -1,8 +1,8 @@ { - "name": "Previewnet", + "name": "Flow EVM Previewnet", "chain": "Flow", - "rpc": ["https://previewnet.evm.nodes.onflow.org"], - "faucets": ["https://previewnet-faucet.onflow.org"], + "rpc": [], + "faucets": [], "nativeCurrency": { "name": "FLOW", "symbol": "FLOW", @@ -13,11 +13,6 @@ "chainId": 646, "networkId": 646, "icon": "flowevm", - "explorers": [ - { - "name": "Flow Diver", - "url": "https://previewnet.flowdiver.io", - "standard": "none" - } - ] + "explorers": [], + "status": "deprecated" } diff --git a/_data/chains/eip155-65010002.json b/_data/chains/eip155-65010002.json index d2d8b6cad043..d03598970d74 100644 --- a/_data/chains/eip155-65010002.json +++ b/_data/chains/eip155-65010002.json @@ -1,10 +1,8 @@ { "name": "Autonity Bakerloo (Sumida) Testnet", + "status": "deprecated", "chain": "AUT", - "rpc": [ - "https://rpc1.bakerloo.autonity.org/", - "wss://rpc1.bakerloo.autonity.org/ws/" - ], + "rpc": [], "faucets": ["https://faucet.autonity.org/"], "nativeCurrency": { "name": "Bakerloo Auton", diff --git a/_data/chains/eip155-65010003.json b/_data/chains/eip155-65010003.json new file mode 100644 index 000000000000..4fc00bfe2325 --- /dev/null +++ b/_data/chains/eip155-65010003.json @@ -0,0 +1,25 @@ +{ + "name": "Autonity Bakerloo (Yamuna) Testnet", + "status": "deprecated", + "chain": "AUT", + "rpc": [], + "faucets": ["https://faucet.autonity.org/"], + "nativeCurrency": { + "name": "Bakerloo Auton", + "symbol": "ATN", + "decimals": 18 + }, + "infoURL": "https://autonity.org/", + "shortName": "bakerloo-03", + "chainId": 65010003, + "networkId": 65010003, + "slip44": 1, + "icon": "autonity", + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://bakerloo.autonity.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-65100002.json b/_data/chains/eip155-65100002.json index ef38e2e73940..f66a18d6c5b6 100644 --- a/_data/chains/eip155-65100002.json +++ b/_data/chains/eip155-65100002.json @@ -1,10 +1,8 @@ { "name": "Autonity Piccadilly (Sumida) Testnet", + "status": "deprecated", "chain": "AUT", - "rpc": [ - "https://rpc1.piccadilly.autonity.org/", - "wss://rpc1.piccadilly.autonity.org/ws/" - ], + "rpc": [], "faucets": [], "nativeCurrency": { "name": "Piccadilly Auton", diff --git a/_data/chains/eip155-65100003.json b/_data/chains/eip155-65100003.json new file mode 100644 index 000000000000..4e70e7b59c8f --- /dev/null +++ b/_data/chains/eip155-65100003.json @@ -0,0 +1,25 @@ +{ + "name": "Autonity Piccadilly (Yamuna) Testnet", + "status": "deprecated", + "chain": "AUT", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Piccadilly Auton", + "symbol": "ATN", + "decimals": 18 + }, + "infoURL": "https://autonity.org/", + "shortName": "piccadilly-03", + "chainId": 65100003, + "networkId": 65100003, + "slip44": 1, + "icon": "autonity", + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://piccadilly.autonity.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-65100004.json b/_data/chains/eip155-65100004.json new file mode 100644 index 000000000000..b627f7aba11f --- /dev/null +++ b/_data/chains/eip155-65100004.json @@ -0,0 +1,30 @@ +{ + "name": "Autonity Piccadilly (Tiber) Testnet", + "chain": "AUT", + "rpc": [ + "https://autonity.rpc.web3cdn.network/testnet", + "wss://autonity.rpc.web3cdn.network/testnet/ws", + "https://autonity-piccadilly.rpc.subquery.network/public", + "https://piccadilly.autonity-apis.com", + "wss://piccadilly-ws.autonity-apis.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Piccadilly Auton", + "symbol": "ATN", + "decimals": 18 + }, + "infoURL": "https://autonity.org/", + "shortName": "piccadilly-04", + "chainId": 65100004, + "networkId": 65100004, + "slip44": 1, + "icon": "autonity", + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://piccadilly.autonity.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-65349.json b/_data/chains/eip155-65349.json new file mode 100644 index 000000000000..3801d0ec0b65 --- /dev/null +++ b/_data/chains/eip155-65349.json @@ -0,0 +1,27 @@ +{ + "name": "CratD2C Testnet", + "chain": "CRATD2C", + "rpc": [ + "https://cratd2c-testnet-node1.cratd2csmartchain.io/", + "https://cratd2c-testnet-node2.cratd2csmartchain.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "CRATD2C", + "symbol": "CRAT", + "decimals": 18 + }, + "infoURL": "https://cratd2csmartchain.io", + "shortName": "cratd2c-testnet", + "chainId": 65349, + "networkId": 65349, + "icon": "cratd2c-testnet", + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-testnet.cratd2csmartchain.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-65357.json b/_data/chains/eip155-65357.json new file mode 100644 index 000000000000..49d54bf4f0df --- /dev/null +++ b/_data/chains/eip155-65357.json @@ -0,0 +1,25 @@ +{ + "name": "Vecno Mainnet", + "chain": "VE", + "rpc": ["https://rpc.vecno.org"], + "faucets": [], + "nativeCurrency": { + "name": "Vecno", + "symbol": "VE", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://vecno.org", + "shortName": "ve", + "chainId": 65357, + "networkId": 65357, + "icon": "vecno", + "explorers": [ + { + "name": "vecno", + "url": "https://explorer.vecno.org", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-6550.json b/_data/chains/eip155-6550.json new file mode 100644 index 000000000000..71159162c1cb --- /dev/null +++ b/_data/chains/eip155-6550.json @@ -0,0 +1,22 @@ +{ + "name": "Flamma Testnet", + "chain": "Flamma", + "rpc": ["https://testnetrpc.flamma.network"], + "faucets": [], + "nativeCurrency": { + "name": "Flamma", + "symbol": "FLA", + "decimals": 18 + }, + "infoURL": "https://flamma.network", + "shortName": "FlammaTestnet", + "chainId": 6550, + "networkId": 6550, + "explorers": [ + { + "name": "flascan", + "url": "https://testnet.flascan.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-65535.json b/_data/chains/eip155-65535.json new file mode 100644 index 000000000000..80de66f59ad3 --- /dev/null +++ b/_data/chains/eip155-65535.json @@ -0,0 +1,25 @@ +{ + "name": "CyberChain Mainnet", + "chain": "XCC", + "icon": "cyberchain", + "rpc": ["https://rpc.cyberchain.xyz/"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "XCC", + "symbol": "XCC", + "decimals": 18 + }, + "infoURL": "https://cyberchain.xyz", + "shortName": "xcc", + "chainId": 65535, + "networkId": 65535, + "slip44": 60, + "explorers": [ + { + "name": "CyberChain explorer", + "url": "https://scan.cyberchain.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-65536.json b/_data/chains/eip155-65536.json new file mode 100644 index 000000000000..bbc67be58f24 --- /dev/null +++ b/_data/chains/eip155-65536.json @@ -0,0 +1,26 @@ +{ + "name": "Automata Mainnet", + "chain": "Automata Mainnet", + "rpc": [ + "https://rpc.ata.network", + "https://automata-mainnet.alt.technology/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ATA", + "symbol": "ATA", + "decimals": 18 + }, + "infoURL": "https://ata.network", + "shortName": "automatamainnet", + "chainId": 65536, + "networkId": 65536, + "icon": "automata", + "explorers": [ + { + "name": "Automata Explorer", + "url": "https://explorer.ata.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-656476.json b/_data/chains/eip155-656476.json new file mode 100644 index 000000000000..0b78b358ac9a --- /dev/null +++ b/_data/chains/eip155-656476.json @@ -0,0 +1,24 @@ +{ + "name": "EDU Chain Testnet", + "chain": "EDU Chain Testnet", + "icon": "open-campus-codex", + "rpc": ["https://rpc.open-campus-codex.gelato.digital"], + "faucets": [], + "nativeCurrency": { + "name": "EDU", + "symbol": "EDU", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/open-campus-codex", + "shortName": "open-campus-codex", + "chainId": 656476, + "networkId": 656476, + "explorers": [ + { + "name": "Open Campus Codex", + "url": "https://edu-chain-testnet.blockscout.com", + "icon": "open-campus-codex", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-661898459.json b/_data/chains/eip155-661898459.json new file mode 100644 index 000000000000..07c4b7e391f6 --- /dev/null +++ b/_data/chains/eip155-661898459.json @@ -0,0 +1,25 @@ +{ + "name": "Smart Mainnet", + "chain": "SMART", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Smart", + "symbol": "SMART", + "decimals": 6 + }, + "infoURL": "https://smartblockchain.com", + "shortName": "smart", + "chainId": 661898459, + "networkId": 661898459, + "slip44": 783, + "icon": "smart", + "explorers": [ + { + "name": "smartexplorer", + "url": "https://smartexplorer.com", + "icon": "smart", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-662.json b/_data/chains/eip155-662.json index 8a2c05dbae2d..02400650e74c 100644 --- a/_data/chains/eip155-662.json +++ b/_data/chains/eip155-662.json @@ -1,23 +1,24 @@ { - "name": "UltronSmartchain", - "chain": "UltronSmartchain", - "rpc": ["https://rpc.ultronsmartchain.io"], + "name": "AmaxSmartchain", + "chain": "AmaxSmartchain", + "rpc": ["https://rpc.amaxchain.io"], "faucets": [], "nativeCurrency": { - "name": "ulc", - "symbol": "ULC", + "name": "amax", + "symbol": "AMAX", "decimals": 18 }, - "infoURL": "https://ultronsmartchain.io", - "shortName": "ultronsmartchain", + "infoURL": "https://amaxchain.io", + "shortName": "Amaxsmartchain", "chainId": 662, "networkId": 662, "icon": "ultronsmartchain", "explorers": [ { - "name": "ultronsmartchain explorer", - "url": "https://scan.ultronsmartchain.io", + "name": "Amaxsmartchain explorer", + "url": "https://scan.amaxchain.io", "standard": "EIP3091" } - ] + ], + "redFlags": ["reusedChainId"] } diff --git a/_data/chains/eip155-666301179999.json b/_data/chains/eip155-666301179999.json new file mode 100644 index 000000000000..6c26541200c6 --- /dev/null +++ b/_data/chains/eip155-666301179999.json @@ -0,0 +1,21 @@ +{ + "name": "SmartPay Mobile Money", + "chain": "Mobile Money", + "rpc": ["https://network.uat.smartmoneyewallet.com/"], + "faucets": [], + "nativeCurrency": { + "name": "SmartPay Mobile Money", + "symbol": "SMM", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://network.uat.smartmoneyewallet.com/", + "shortName": "SmartPay", + "chainId": 666301179999, + "networkId": 666301179999, + "icon": "smartpay" +} diff --git a/_data/chains/eip155-66665.json b/_data/chains/eip155-66665.json new file mode 100644 index 000000000000..829063b80d58 --- /dev/null +++ b/_data/chains/eip155-66665.json @@ -0,0 +1,23 @@ +{ + "name": "Creator Chain Testnet", + "chain": "creatorchain", + "icon": "creatorchain", + "rpc": ["https://rpc.creatorchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "CreatorETH", + "symbol": "CETH", + "decimals": 18 + }, + "infoURL": "https://docs.creatorchain.io/", + "shortName": "ceth", + "chainId": 66665, + "networkId": 66665, + "explorers": [ + { + "name": "creatorchainscan", + "url": "https://explorer.creatorchain.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-66666666.json b/_data/chains/eip155-66666666.json new file mode 100644 index 000000000000..852f5e8463bc --- /dev/null +++ b/_data/chains/eip155-66666666.json @@ -0,0 +1,25 @@ +{ + "name": "Winr Protocol Testnet", + "chain": "WINR", + "rpc": ["https://rpc-devnet.winr.games"], + "faucets": [], + "nativeCurrency": { + "name": "Winr", + "symbol": "WINR", + "decimals": 18 + }, + "features": [], + "infoURL": "https://winr.games", + "shortName": "winrtestnet", + "chainId": 66666666, + "networkId": 66666666, + "icon": "winr", + "explorers": [ + { + "name": "Winr Protocol Testnet Explorer", + "url": "https://explorer-winrprotocoltestnet-wmwv59m23g.t.conduit.xyz", + "icon": "winr", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-6666689.json b/_data/chains/eip155-6666689.json new file mode 100644 index 000000000000..460cfd81aaa6 --- /dev/null +++ b/_data/chains/eip155-6666689.json @@ -0,0 +1,23 @@ +{ + "name": "The Ting Blockchain Testnet Explorer", + "chain": "Ting", + "rpc": ["https://testnet.tingchain.org", "https://public.0xrpc.com/6666689"], + "faucets": [], + "nativeCurrency": { + "name": "Ton", + "symbol": "Ton", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://tingscan.com", + "shortName": "ting-testnet", + "chainId": 6666689, + "networkId": 6666689, + "explorers": [ + { + "name": "TingScan", + "url": "https://tingscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-6667.json b/_data/chains/eip155-6667.json new file mode 100644 index 000000000000..7b7d5c269221 --- /dev/null +++ b/_data/chains/eip155-6667.json @@ -0,0 +1,24 @@ +{ + "name": "Storchain", + "chain": "STR", + "rpc": ["https://rpc.storchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "Storchain", + "symbol": "STR", + "decimals": 18 + }, + "infoURL": "https://storchain.io", + "shortName": "str", + "chainId": 6667, + "networkId": 6667, + "icon": "str", + "explorers": [ + { + "name": "storscan", + "url": "https://scan.storchain.io", + "icon": "str", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-6678.json b/_data/chains/eip155-6678.json new file mode 100644 index 000000000000..73a3a12c0994 --- /dev/null +++ b/_data/chains/eip155-6678.json @@ -0,0 +1,24 @@ +{ + "name": "Edge Matrix Chain", + "chain": "EMC", + "icon": "emc", + "rpc": ["https://rpc1-mainnet.emc.network"], + "faucets": [], + "nativeCurrency": { + "name": "Edge Matrix Chain Token", + "symbol": "EMC", + "decimals": 18 + }, + "infoURL": "", + "shortName": "EMC", + "chainId": 6678, + "networkId": 6678, + + "explorers": [ + { + "name": "blockscout", + "url": "https://emcscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-668668.json b/_data/chains/eip155-668668.json new file mode 100644 index 000000000000..92661a233585 --- /dev/null +++ b/_data/chains/eip155-668668.json @@ -0,0 +1,32 @@ +{ + "name": "Conwai Mainnet", + "chain": "CNW", + "rpc": ["https://conwai.calderachain.xyz/http"], + "faucets": [], + "nativeCurrency": { + "name": "Conwai", + "symbol": "CNW", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://conwai.net", + "shortName": "cnw", + "chainId": 668668, + "networkId": 668668, + "icon": "conwai", + "explorers": [ + { + "name": "conwaiscan", + "icon": "conwaiscan", + "url": "https://conwai.calderaexplorer.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-6699.json b/_data/chains/eip155-6699.json new file mode 100644 index 000000000000..a49952e2a3ad --- /dev/null +++ b/_data/chains/eip155-6699.json @@ -0,0 +1,17 @@ +{ + "name": "OX Chain", + "title": "OX Chain", + "chain": "OX", + "rpc": ["https://rpc.oxscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "OX", + "symbol": "OX", + "decimals": 18 + }, + "infoURL": "https://ox.fun/chain", + "shortName": "ox-chain", + "chainId": 6699, + "networkId": 6699, + "status": "incubating" +} diff --git a/_data/chains/eip155-678.json b/_data/chains/eip155-678.json new file mode 100644 index 000000000000..f69b8d6b2d09 --- /dev/null +++ b/_data/chains/eip155-678.json @@ -0,0 +1,22 @@ +{ + "name": "Janction", + "chain": "Janction", + "rpc": ["https://rpc.janction.io", "wss://rpc.janction.io"], + "faucets": [], + "nativeCurrency": { + "name": "Janction", + "symbol": "JCT", + "decimals": 18 + }, + "infoURL": "https://janction.io", + "shortName": "janction", + "chainId": 678, + "networkId": 678, + "icon": "janction", + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [] + } +} diff --git a/_data/chains/eip155-679.json b/_data/chains/eip155-679.json new file mode 100644 index 000000000000..57668234d243 --- /dev/null +++ b/_data/chains/eip155-679.json @@ -0,0 +1,22 @@ +{ + "name": "Janction Testnet", + "chain": "Janction Testnet", + "rpc": ["https://rpc_testnet.janction.io", "wss://rpc_testnet.janction.io"], + "faucets": [], + "nativeCurrency": { + "name": "Janction", + "symbol": "JCT", + "decimals": 18 + }, + "infoURL": "https://janction.io", + "shortName": "janction_testnet", + "chainId": 679, + "networkId": 679, + "icon": "janction", + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [] + } +} diff --git a/_data/chains/eip155-6805.json b/_data/chains/eip155-6805.json new file mode 100644 index 000000000000..c40236aff976 --- /dev/null +++ b/_data/chains/eip155-6805.json @@ -0,0 +1,34 @@ +{ + "name": "RACE Mainnet", + "chain": "ETH", + "rpc": ["https://racemainnet.io/"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://race.foundation/", + "shortName": "raceeth", + "chainId": 6805, + "networkId": 6805, + "slip44": 1, + "icon": "race", + "explorers": [ + { + "name": "blockscout", + "url": "https://racescan.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.race.foundation/" + } + ] + } +} diff --git a/_data/chains/eip155-6806.json b/_data/chains/eip155-6806.json new file mode 100644 index 000000000000..16a064fa3f32 --- /dev/null +++ b/_data/chains/eip155-6806.json @@ -0,0 +1,34 @@ +{ + "name": "RACE Testnet", + "chain": "ETH", + "rpc": ["https://racetestnet.io/"], + "faucets": ["https://faucet.racetestnet.io/"], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://race.foundation/", + "shortName": "racesep", + "chainId": 6806, + "networkId": 6806, + "slip44": 1, + "icon": "race", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.racescan.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://testnet-bridge.race.foundation/" + } + ] + } +} diff --git a/_data/chains/eip155-685685.json b/_data/chains/eip155-685685.json new file mode 100644 index 000000000000..a5b542b55cff --- /dev/null +++ b/_data/chains/eip155-685685.json @@ -0,0 +1,16 @@ +{ + "name": "Gensyn Testnet", + "chain": "Gensyn", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.gensyn.ai/", + "shortName": "gensyn-test", + "chainId": 685685, + "networkId": 685685, + "status": "incubating" +} diff --git a/_data/chains/eip155-68775.json b/_data/chains/eip155-68775.json new file mode 100644 index 000000000000..fbec83d00bae --- /dev/null +++ b/_data/chains/eip155-68775.json @@ -0,0 +1,27 @@ +{ + "name": "DM2 Verse Testnet", + "chain": "DM2 Verse", + "icon": "dm2verse", + "rpc": ["https://rpc.testnet.dm2verse.dmm.com"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://seamoon.dmm.com", + "shortName": "dm2t", + "chainId": 68775, + "networkId": 68775, + "explorers": [ + { + "name": "DM2Verse Testnet Explorer", + "url": "https://explorer.testnet.dm2verse.dmm.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } +} diff --git a/_data/chains/eip155-6880.json b/_data/chains/eip155-6880.json new file mode 100644 index 000000000000..12639bdf5625 --- /dev/null +++ b/_data/chains/eip155-6880.json @@ -0,0 +1,23 @@ +{ + "name": "MTT Network", + "chain": "MTT", + "rpc": ["https://evm-rpc.mtt.network"], + "faucets": [], + "nativeCurrency": { + "name": "MTT Network native coin", + "symbol": "MTT", + "decimals": 18 + }, + "infoURL": "https://mtt.network", + "shortName": "mtt-network", + "chainId": 6880, + "networkId": 6880, + "icon": "mttnetwork", + "explorers": [ + { + "name": "Mtt explorer", + "url": "https://explorer.mtt.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-689.json b/_data/chains/eip155-689.json new file mode 100644 index 000000000000..3499ec2bd290 --- /dev/null +++ b/_data/chains/eip155-689.json @@ -0,0 +1,24 @@ +{ + "name": "NERO Testnet", + "chain": "NERO Chain", + "rpc": ["https://rpc-testnet.nerochain.io", "wss://ws-testnet.nerochain.io"], + "faucets": ["https://faucet-testnet.nerochain.io"], + "nativeCurrency": { + "name": "NERO", + "symbol": "NERO", + "decimals": 18 + }, + "infoURL": "https://docs.nerochain.io/", + "shortName": "NEROT", + "chainId": 689, + "networkId": 689, + "slip44": 1, + "icon": "nero", + "explorers": [ + { + "name": "nero testnet scan", + "url": "https://testnet.neroscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-6900.json b/_data/chains/eip155-6900.json new file mode 100644 index 000000000000..7f4fc8650bff --- /dev/null +++ b/_data/chains/eip155-6900.json @@ -0,0 +1,17 @@ +{ + "name": "Nibiru cataclysm-1", + "chain": "Nibiru", + "rpc": ["https://evm-rpc.nibiru.fi"], + "faucets": [], + "nativeCurrency": { + "name": "NIBI", + "symbol": "NIBI", + "decimals": 18 + }, + "infoURL": "https://nibiru.fi", + "shortName": "cataclysm-1", + "chainId": 6900, + "networkId": 6900, + "icon": "nibiru", + "explorers": [] +} diff --git a/_data/chains/eip155-69000.json b/_data/chains/eip155-69000.json new file mode 100644 index 000000000000..9117edde84f0 --- /dev/null +++ b/_data/chains/eip155-69000.json @@ -0,0 +1,22 @@ +{ + "name": "Animechain Mainnet", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Animecoin", + "symbol": "ANIME", + "decimals": 18 + }, + "infoURL": "https://www.anime.xyz", + "shortName": "anime", + "chainId": 69000, + "networkId": 69000, + "explorers": [ + { + "name": "Animechain explorer", + "url": "https://explorer.anime.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-6911.json b/_data/chains/eip155-6911.json new file mode 100644 index 000000000000..784c24b3b040 --- /dev/null +++ b/_data/chains/eip155-6911.json @@ -0,0 +1,17 @@ +{ + "name": "Nibiru testnet-2", + "chain": "Nibiru", + "rpc": ["https://evm-rpc.testnet-2.nibiru.fi"], + "faucets": [], + "nativeCurrency": { + "name": "NIBI", + "symbol": "NIBI", + "decimals": 18 + }, + "infoURL": "https://nibiru.fi", + "shortName": "nibiru-testnet-2", + "chainId": 6911, + "networkId": 6911, + "icon": "nibiru", + "explorers": [] +} diff --git a/_data/chains/eip155-6912115.json b/_data/chains/eip155-6912115.json new file mode 100644 index 000000000000..858e8f1cc4f7 --- /dev/null +++ b/_data/chains/eip155-6912115.json @@ -0,0 +1,23 @@ +{ + "name": "ENI Testnet", + "chain": "ENI", + "rpc": ["https://rpc-testnet.eniac.network"], + "faucets": [], + "nativeCurrency": { + "name": "EGAS", + "symbol": "EGAS", + "decimals": 18 + }, + "infoURL": "https://eniac.network/", + "shortName": "eni-test", + "chainId": 6912115, + "networkId": 6912115, + "icon": "eni-test", + "explorers": [ + { + "name": "ENI Testnet Explorer", + "url": "https://scan-testnet.eniac.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-6934.json b/_data/chains/eip155-6934.json new file mode 100644 index 000000000000..6c1f9983f6ca --- /dev/null +++ b/_data/chains/eip155-6934.json @@ -0,0 +1,29 @@ +{ + "name": "Xylume TestNet", + "chain": "XYL", + "rpc": ["https://xylume-testnet.sparked.network/rpc/"], + "faucets": ["https://debxylen.github.io/Xylume_TestNet/faucet.html"], + "nativeCurrency": { + "name": "Xylume", + "symbol": "XYL", + "decimals": 18 + }, + "features": [ + { "name": "EIP155" }, + { "name": "EIP1559" }, + { "name": "Directed Acyclic Graph (DAG)" } + ], + "infoURL": "https://debxylen.github.io/Xylume_TestNet", + "shortName": "xyl", + "chainId": 6934, + "networkId": 6934, + "icon": "xylume-testnet", + "explorers": [ + { + "name": "Xylume Explorer", + "url": "https://debxylen.github.io/XylumeExplorer", + "icon": "xylume-testnet", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-6942.json b/_data/chains/eip155-6942.json new file mode 100644 index 000000000000..094a916c48e5 --- /dev/null +++ b/_data/chains/eip155-6942.json @@ -0,0 +1,23 @@ +{ + "name": "Laika Mainnet", + "chain": "LAIKA", + "rpc": ["https://mainnetrpc.laikachain.dog"], + "faucets": ["https://laikachain.dog/faucets"], + "nativeCurrency": { + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 + }, + "infoURL": "https://laikachain.dog", + "shortName": "laika", + "chainId": 6942, + "networkId": 6942, + "icon": "laika", + "explorers": [ + { + "name": "Laika Mainnet Explorer", + "url": "https://explorer.laikachain.dog", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-695569.json b/_data/chains/eip155-695569.json new file mode 100644 index 000000000000..901ba0239738 --- /dev/null +++ b/_data/chains/eip155-695569.json @@ -0,0 +1,33 @@ +{ + "name": "Pyrope Testnet", + "chain": "ETH", + "rpc": ["https://rpc.pyropechain.com", "wss://rpc.pyropechain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://pyropechain.com", + "shortName": "pyrope", + "chainId": 695569, + "networkId": 695569, + "icon": "pyrope", + "explorers": [ + { + "name": "blockscout", + "url": "https://pyrope.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://pyropechain.com/bridge" + } + ] + } +} diff --git a/_data/chains/eip155-698.json b/_data/chains/eip155-698.json new file mode 100644 index 000000000000..5ad4ab44e50b --- /dev/null +++ b/_data/chains/eip155-698.json @@ -0,0 +1,34 @@ +{ + "name": "Matchain", + "chain": "Matchain", + "icon": "matchain", + "rpc": ["https://rpc.matchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "BNB", + "symbol": "BNB", + "decimals": 18 + }, + "infoURL": "https://www.matchain.io", + "shortName": "Matchain", + "chainId": 698, + "networkId": 698, + "slip44": 714, + "explorers": [ + { + "name": "Matchscan", + "url": "https://matchscan.io", + "icon": "matchain", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-56", + "bridges": [ + { + "url": "https://bnb-bridge.matchain.io" + } + ] + } +} diff --git a/_data/chains/eip155-698369.json b/_data/chains/eip155-698369.json new file mode 100644 index 000000000000..a7af526cbd4c --- /dev/null +++ b/_data/chains/eip155-698369.json @@ -0,0 +1,22 @@ +{ + "name": "Primea Network Mainnet", + "chain": "Primea Network Mainnet", + "rpc": [ + "http://rpc.primeanetwork.com/rpc-http", + "https://rpc.primeanetwork.com/rpc-https", + "ws://rpc.primeanetwork.com/rpc-ws", + "wss://rpc.primeanetwork.com/rpc-wss" + ], + "faucets": [], + "nativeCurrency": { + "name": "GoldPrimeaNetwork", + "symbol": "GOLDPN", + "decimals": 18 + }, + "infoURL": "https://primeanetwork.com", + "shortName": "goldpn", + "chainId": 698369, + "networkId": 698369, + "icon": "prim", + "explorers": [] +} diff --git a/_data/chains/eip155-6985385.json b/_data/chains/eip155-6985385.json new file mode 100644 index 000000000000..42924cdd56b9 --- /dev/null +++ b/_data/chains/eip155-6985385.json @@ -0,0 +1,33 @@ +{ + "name": "Humanity Protocol", + "chain": "Humanity", + "rpc": ["https://humanity-mainnet.g.alchemy.com/public"], + "faucets": [], + "nativeCurrency": { + "name": "H", + "symbol": "H", + "decimals": 18 + }, + "infoURL": "https://humanity.org", + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + }, + "shortName": "hp", + "chainId": 6985385, + "networkId": 6985385, + "status": "active", + "explorers": [ + { + "name": "Humanity Mainnet explorer", + "url": "https://humanity-mainnet.explorer.alchemy.com", + "standard": "none" + } + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }] +} diff --git a/_data/chains/eip155-699.json b/_data/chains/eip155-699.json new file mode 100644 index 000000000000..b716e455d311 --- /dev/null +++ b/_data/chains/eip155-699.json @@ -0,0 +1,24 @@ +{ + "name": "Matchain Testnet", + "chain": "Matchain", + "icon": "matchain", + "rpc": ["https://testnet-rpc.matchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "BNB", + "symbol": "BNB", + "decimals": 18 + }, + "infoURL": "https://www.matchain.io", + "shortName": "tMatchain", + "chainId": 699, + "networkId": 699, + "explorers": [ + { + "name": "Matchscan Testnet", + "url": "https://testnet.matchscan.io", + "standard": "EIP3091", + "icon": "matchain" + } + ] +} diff --git a/_data/chains/eip155-7.json b/_data/chains/eip155-7.json index ece89cb17975..0265c144617c 100644 --- a/_data/chains/eip155-7.json +++ b/_data/chains/eip155-7.json @@ -13,6 +13,7 @@ "shortName": "tch", "chainId": 7, "networkId": 7, + "icon": "tch", "explorers": [ { "name": "Thaichain Explorer", diff --git a/_data/chains/eip155-7000.json b/_data/chains/eip155-7000.json index 889e6f9a1407..5cb59f6dbb46 100644 --- a/_data/chains/eip155-7000.json +++ b/_data/chains/eip155-7000.json @@ -4,7 +4,10 @@ "icon": "zetachain", "rpc": [ "https://zetachain-evm.blockpi.network/v1/rpc/public", - "https://zetachain-mainnet-archive.allthatnode.com:8545" + "https://zetachain-mainnet.g.allthatnode.com/archive/evm", + "https://zeta-chain.drpc.org", + "https://zetachain-mainnet.public.blastapi.io", + "https://7000.rpc.thirdweb.com" ], "faucets": [], "nativeCurrency": { @@ -20,7 +23,7 @@ "explorers": [ { "name": "ZetaChain Mainnet Explorer", - "url": "https://explorer.mainnet.zetachain.com", + "url": "https://explorer.zetachain.com", "standard": "none" } ] diff --git a/_data/chains/eip155-7001.json b/_data/chains/eip155-7001.json index e1c10592a950..c8d8158505f7 100644 --- a/_data/chains/eip155-7001.json +++ b/_data/chains/eip155-7001.json @@ -1,33 +1,36 @@ { - "name": "ZetaChain Athens 3 Testnet", + "name": "ZetaChain Testnet", "chain": "ZetaChain", "icon": "zetachain", "rpc": [ "https://zetachain-athens-evm.blockpi.network/v1/rpc/public", - "wss://zetachain-athens.blockpi.network/rpc/v1/public/websocket", - "https://zetachain-testnet-archive.allthatnode.com:8545" + "https://zetachain-testnet.public.blastapi.io", + "https://zetachain-athens.g.allthatnode.com/archive/evm", + "https://7001.rpc.thirdweb.com", + "https://zeta-chain-testnet.drpc.org" + ], + "faucets": [ + "https://www.zetachain.com/docs/reference/apps/get-testnet-zeta/" ], - - "faucets": ["https://labs.zetachain.com/get-zeta"], "nativeCurrency": { "name": "Zeta", "symbol": "ZETA", "decimals": 18 }, "infoURL": "https://zetachain.com/docs", - "shortName": "zetachain-athens", + "shortName": "zetachain-testnet", "chainId": 7001, "networkId": 7001, "slip44": 1, "status": "active", "explorers": [ { - "name": "ZetaChain Athens Testnet Explorer", - "url": "https://athens3.explorer.zetachain.com", + "name": "ZetaScan", + "url": "https://athens.explorer.zetachain.com", "standard": "none" }, { - "name": "blockscout", + "name": "Blockscout", "url": "https://zetachain-athens-3.blockscout.com", "icon": "blockscout", "standard": "EIP3091" diff --git a/_data/chains/eip155-701.json b/_data/chains/eip155-701.json new file mode 100644 index 000000000000..10b01220d65e --- /dev/null +++ b/_data/chains/eip155-701.json @@ -0,0 +1,23 @@ +{ + "name": "Darwinia Koi Testnet", + "chain": "Darwinia Koi", + "rpc": ["https://koi-rpc.darwinia.network"], + "faucets": [], + "nativeCurrency": { + "name": "Koi Network Native Token", + "symbol": "KRING", + "decimals": 18 + }, + "infoURL": "https://darwinia.network/", + "shortName": "darwinia-koi", + "chainId": 701, + "networkId": 701, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://koi-scan.darwinia.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-706883.json b/_data/chains/eip155-706883.json new file mode 100644 index 000000000000..d59060fb65cb --- /dev/null +++ b/_data/chains/eip155-706883.json @@ -0,0 +1,22 @@ +{ + "name": "Fidesinnova", + "chain": "Fidesinnova", + "rpc": ["https://rpc1.fidesinnova.io"], + "faucets": [], + "nativeCurrency": { + "name": "Fidesinnova", + "symbol": "FDS", + "decimals": 18 + }, + "infoURL": "https://fidesinnova.gitbook.io/docs", + "shortName": "Fidesinnova", + "chainId": 706883, + "networkId": 706883, + "explorers": [ + { + "name": "Fidesinnova Blockchain Explorer", + "url": "https://explorer.fidesinnova.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-70700.json b/_data/chains/eip155-70700.json index cf3cae4f8881..bcad5d2cfd39 100644 --- a/_data/chains/eip155-70700.json +++ b/_data/chains/eip155-70700.json @@ -15,12 +15,10 @@ { "name": "Proof of Play Apex Explorer", "url": "https://explorer.apex.proofofplay.com", - "icon": "pop-apex", "standard": "EIP3091" } ], "infoURL": "https://proofofplay.com", - "icon": "pop-apex", "parent": { "type": "L2", "chain": "eip155-42161", diff --git a/_data/chains/eip155-70701.json b/_data/chains/eip155-70701.json new file mode 100644 index 000000000000..e851bb73aeac --- /dev/null +++ b/_data/chains/eip155-70701.json @@ -0,0 +1,32 @@ +{ + "name": "Proof of Play - Boss", + "chainId": 70701, + "shortName": "pop-boss", + "chain": "ETH", + "networkId": 70701, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": ["https://rpc.boss.proofofplay.com"], + "faucets": [], + "explorers": [ + { + "name": "Proof of Play Boss Explorer", + "url": "https://explorer.boss.proofofplay.com", + "icon": "pop-boss", + "standard": "EIP3091" + } + ], + "infoURL": "https://proofofplay.com", + "icon": "pop-boss", + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [ + { "url": "https://bridge.arbitrum.io" }, + { "url": "https://relay.link/bridge/boss/" } + ] + } +} diff --git a/_data/chains/eip155-7078815900.json b/_data/chains/eip155-7078815900.json new file mode 100644 index 000000000000..0b3cf0ed61ce --- /dev/null +++ b/_data/chains/eip155-7078815900.json @@ -0,0 +1,25 @@ +{ + "name": "Mekong", + "chain": "ETH", + "rpc": ["https://rpc.mekong.ethpandaops.io"], + "faucets": ["https://faucet.mekong.ethpandaops.io"], + "nativeCurrency": { + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://mekong.ethpandaops.io", + "shortName": "mekong", + "chainId": 7078815900, + "networkId": 7078815900, + "icon": "ethereum", + "status": "incubating", + "explorers": [ + { + "name": "Holesky Dora Explorer", + "url": "https://explorer.mekong.ethpandaops.io", + "icon": "ethereum", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7080969.json b/_data/chains/eip155-7080969.json new file mode 100644 index 000000000000..2c5ac827d5db --- /dev/null +++ b/_data/chains/eip155-7080969.json @@ -0,0 +1,32 @@ +{ + "name": "Humanity Protocol testnet", + "chain": "Humanity", + "rpc": [ + "https://rpc.testnet.humanity.org", + "https://humanity-testnet.g.alchemy.com/public" + ], + "faucets": ["https://faucets.alchemy.com/faucets/humanity-testnet"], + "nativeCurrency": { + "name": "tHP", + "symbol": "tHP", + "decimals": 18 + }, + "infoURL": "https://testnet.humanity.org", + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [] + }, + "shortName": "thp", + "chainId": 7080969, + "networkId": 7080969, + "status": "active", + "explorers": [ + { + "name": "Humanity Testnet explorer", + "url": "https://humanity-testnet.explorer.alchemy.com", + "standard": "none" + } + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }] +} diff --git a/_data/chains/eip155-7082400.json b/_data/chains/eip155-7082400.json new file mode 100644 index 000000000000..05921c43e886 --- /dev/null +++ b/_data/chains/eip155-7082400.json @@ -0,0 +1,29 @@ +{ + "name": "COTI Testnet", + "title": "COTI Testnet", + "chain": "COTI", + "icon": "coti", + "rpc": [ + "https://testnet.coti.io/rpc", + "https://testnet-magnus-validator.coti.io/rpc", + "https://testnet-minor-validator.coti.io/rpc" + ], + "faucets": ["https://faucet.coti.io"], + "nativeCurrency": { + "name": "COTI", + "symbol": "COTI", + "decimals": 18 + }, + "infoURL": "https://coti.io/", + "shortName": "coti-testnet", + "chainId": 7082400, + "networkId": 7082400, + "explorers": [ + { + "name": "COTI Testnet Explorer", + "url": "https://testnet.cotiscan.io", + "icon": "ethernal", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7088110746.json b/_data/chains/eip155-7088110746.json new file mode 100644 index 000000000000..acb82f77b18b --- /dev/null +++ b/_data/chains/eip155-7088110746.json @@ -0,0 +1,25 @@ +{ + "name": "pectra-devnet-5", + "chain": "ETH", + "rpc": ["https://rpc.pectra-devnet-5.ethpandaops.io"], + "faucets": ["https://faucet.pectra-devnet-5.ethpandaops.io"], + "nativeCurrency": { + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://pectra-devnet-5.ethpandaops.io", + "shortName": "pectra5", + "chainId": 7088110746, + "networkId": 7088110746, + "icon": "ethereum", + "status": "incubating", + "explorers": [ + { + "name": "Explorer", + "url": "https://explorer.pectra-devnet-5.ethpandaops.io", + "icon": "ethereum", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7099.json b/_data/chains/eip155-7099.json new file mode 100644 index 000000000000..ba44315c1f07 --- /dev/null +++ b/_data/chains/eip155-7099.json @@ -0,0 +1,17 @@ +{ + "name": "Bharat Blockchain Network", + "chain": "BBNT", + "rpc": ["https://bbnrpc.testnet.bharatblockchain.io"], + "faucets": ["https://www.bon.bharatblockchain.io/faucet"], + "nativeCurrency": { + "name": "BBNT", + "symbol": "BBN", + "decimals": 18 + }, + "features": [], + "infoURL": "https://bharatblockchain.io/", + "shortName": "bbnt", + "chainId": 7099, + "networkId": 7099, + "explorers": [] +} diff --git a/_data/chains/eip155-711.json b/_data/chains/eip155-711.json new file mode 100644 index 000000000000..5cdf35df9339 --- /dev/null +++ b/_data/chains/eip155-711.json @@ -0,0 +1,25 @@ +{ + "name": "Tucana", + "chain": "Tucana", + "title": "Tucana Testnet", + "rpc": ["https://evm-rpc.tucana.zone", "wss://evm-ws.tucana.zone"], + "faucets": [], + "nativeCurrency": { + "name": "Tucana", + "symbol": "TUC", + "decimals": 18 + }, + "infoURL": "https://tucana.zone", + "shortName": "tuc", + "chainId": 711, + "networkId": 711, + "slip44": 1, + "icon": "tucana", + "explorers": [ + { + "name": "Tucana Explorer", + "url": "https://explorer.tucana.zone", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-71117.json b/_data/chains/eip155-71117.json new file mode 100644 index 000000000000..6f0409f395ec --- /dev/null +++ b/_data/chains/eip155-71117.json @@ -0,0 +1,25 @@ +{ + "name": "Wadzchain Testnet", + "title": "Wadzchain Testnet", + "chain": "Wadzchain-Testnet", + "icon": "wadz", + "rpc": ["https://rpc-testnet.wadzchain.io"], + "faucets": ["https://faucet-testnet.wadzchain.io"], + "nativeCurrency": { + "name": "WadzChain Coin", + "symbol": "WCO", + "decimals": 18 + }, + "infoURL": "https://www.wadzchain-network.io", + "shortName": "wadzchain-testnet", + "chainId": 71117, + "networkId": 71117, + "slip44": 1, + "explorers": [ + { + "name": "Wadzchain Testnet Explorer", + "url": "https://scan-testnet.wadzchain.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7117.json b/_data/chains/eip155-7117.json new file mode 100644 index 000000000000..d2277c3bcd75 --- /dev/null +++ b/_data/chains/eip155-7117.json @@ -0,0 +1,25 @@ +{ + "name": "0XL3", + "chain": "0XL3", + "icon": "0xl3", + "rpc": ["https://rpc.0xl3.com"], + "faucets": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "nativeCurrency": { + "name": "XL3", + "symbol": "XL3", + "decimals": 18 + }, + "infoURL": "https://0xl3.com", + "shortName": "0xl3", + "chainId": 7117, + "networkId": 7117, + "explorers": [ + { + "name": "0XL3 Explorer", + "url": "https://exp.0xl3.com", + "icon": "0xl3", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-712.json b/_data/chains/eip155-712.json new file mode 100644 index 000000000000..d3fa90ce4815 --- /dev/null +++ b/_data/chains/eip155-712.json @@ -0,0 +1,28 @@ +{ + "name": "Birdee-2", + "chain": "Tucana", + "title": "Tucana Testnet", + "rpc": [ + "https://evm-rpc.birdee-2.tucana.zone", + "wss://evm-ws.birdee-2.tucana.zone" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tucana", + "symbol": "TUC", + "decimals": 18 + }, + "infoURL": "https://tucana.zone", + "shortName": "birdee-2", + "chainId": 712, + "networkId": 712, + "slip44": 1, + "icon": "tucana", + "explorers": [ + { + "name": "Birdee-2 Explorer", + "url": "https://explorer.birdee-2.tucana.zone", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-715131.json b/_data/chains/eip155-715131.json new file mode 100644 index 000000000000..3375e54623a3 --- /dev/null +++ b/_data/chains/eip155-715131.json @@ -0,0 +1,24 @@ +{ + "name": "Zether Mainnet", + "chain": "Zether", + "rpc": ["https://rpc.zether.org", "https://rpc.zthscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Zether", + "symbol": "ZTH", + "decimals": 18 + }, + "infoURL": "https://zether.org", + "shortName": "zth", + "chainId": 715131, + "networkId": 715131, + "icon": "zether", + "explorers": [ + { + "name": "zthscan", + "url": "https://zthscan.com", + "icon": "zether", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-7171.json b/_data/chains/eip155-7171.json index 4b6cb3260c6c..720e798968a2 100644 --- a/_data/chains/eip155-7171.json +++ b/_data/chains/eip155-7171.json @@ -16,7 +16,7 @@ "explorers": [ { "name": "Bitrock Explorer", - "url": "https://explorer.bit-rock.io", + "url": "https://brockscan.io", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-718.json b/_data/chains/eip155-718.json new file mode 100644 index 000000000000..e202e55c8195 --- /dev/null +++ b/_data/chains/eip155-718.json @@ -0,0 +1,25 @@ +{ + "name": "UXLINK ONE Mainnet", + "chain": "UXLINK ONE", + "rpc": ["https://rpc.uxlinkone.com"], + "faucets": [], + "nativeCurrency": { + "name": "UXLINK", + "symbol": "UXLINK", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.uxlinkone.com", + "shortName": "uxlink1", + "chainId": 718, + "networkId": 718, + "icon": "uxlinkone", + "explorers": [ + { + "name": "UXLINK ONE Mainnet Explorer", + "url": "https://sepolia.uxlinkone.com", + "icon": "uxlinkone", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7181.json b/_data/chains/eip155-7181.json new file mode 100644 index 000000000000..26951d523433 --- /dev/null +++ b/_data/chains/eip155-7181.json @@ -0,0 +1,25 @@ +{ + "name": "UXLINK One Testnet", + "chain": "UXLINK One", + "rpc": ["https://rpc-sepolia.uxlinkone.com"], + "faucets": [], + "nativeCurrency": { + "name": "UXLINK", + "symbol": "UXLINK", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.uxlinkone.io", + "shortName": "uxlink1-sep", + "chainId": 7181, + "networkId": 7181, + "icon": "uxlinkone", + "explorers": [ + { + "name": "UXLINK One Sepolia Explorer", + "url": "https://sepolia.uxlinkone.com", + "icon": "uxlinkone", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7200.json b/_data/chains/eip155-7200.json new file mode 100644 index 000000000000..3811346846ae --- /dev/null +++ b/_data/chains/eip155-7200.json @@ -0,0 +1,28 @@ +{ + "name": "exSat Mainnet", + "chain": "exSat", + "icon": "exsat", + "rpc": ["https://evm.exsat.network"], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://exsat.network/", + "shortName": "xsat", + "chainId": 7200, + "networkId": 7200, + "explorers": [ + { + "name": "exSat Explorer", + "url": "https://scan.exsat.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "" }] + } +} diff --git a/_data/chains/eip155-7208.json b/_data/chains/eip155-7208.json new file mode 100644 index 000000000000..1ad202904b3e --- /dev/null +++ b/_data/chains/eip155-7208.json @@ -0,0 +1,16 @@ +{ + "name": "Nexera Mainnet", + "chain": "Nexera", + "chainId": 7208, + "networkId": 7208, + "infoURL": "https://nexera.network", + "shortName": "nxra-mainnet", + "rpc": ["https://rpc.nexera.network"], + "faucets": [], + "nativeCurrency": { + "name": "NXRA", + "symbol": "NXRA", + "decimals": 18 + }, + "explorers": [] +} diff --git a/_data/chains/eip155-72080.json b/_data/chains/eip155-72080.json new file mode 100644 index 000000000000..cdf8d74c6e10 --- /dev/null +++ b/_data/chains/eip155-72080.json @@ -0,0 +1,16 @@ +{ + "name": "Nexera Testnet", + "chain": "Nexera", + "chainId": 72080, + "networkId": 72080, + "infoURL": "https://testnet.nexera.network", + "shortName": "nxra-testnet", + "rpc": ["https://rpc.testnet.nexera.network"], + "faucets": ["https://faucet.nexera.network"], + "nativeCurrency": { + "name": "tNXRA", + "symbol": "tNXRA", + "decimals": 18 + }, + "explorers": [] +} diff --git a/_data/chains/eip155-7210.json b/_data/chains/eip155-7210.json new file mode 100644 index 000000000000..144aaa7049f2 --- /dev/null +++ b/_data/chains/eip155-7210.json @@ -0,0 +1,18 @@ +{ + "name": "Nibiru testnet-1", + "chain": "Nibiru", + "rpc": ["https://evm-rpc.testnet-1.nibiru.fi"], + "faucets": [], + "nativeCurrency": { + "name": "NIBI", + "symbol": "NIBI", + "decimals": 18 + }, + "status": "deprecated", + "infoURL": "https://nibiru.fi", + "shortName": "nibiru-testnet-1", + "chainId": 7210, + "networkId": 7210, + "icon": "nibiru", + "explorers": [] +} diff --git a/_data/chains/eip155-721529.json b/_data/chains/eip155-721529.json new file mode 100644 index 000000000000..224dd9bdb568 --- /dev/null +++ b/_data/chains/eip155-721529.json @@ -0,0 +1,23 @@ +{ + "name": "ERAM Mainnet", + "chain": "ERAM", + "icon": "eram", + "rpc": ["https://mainnet-rpc.eramscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "ERAM", + "symbol": "ERAM", + "decimals": 18 + }, + "infoURL": "http://doc.eramscan.com/", + "shortName": "ERAM", + "chainId": 721529, + "networkId": 721529, + "explorers": [ + { + "name": "Eramscan", + "url": "https://eramscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7222.json b/_data/chains/eip155-7222.json new file mode 100644 index 000000000000..18954dd4d697 --- /dev/null +++ b/_data/chains/eip155-7222.json @@ -0,0 +1,18 @@ +{ + "name": "Nibiru devnet-3", + "chain": "Nibiru", + "rpc": ["https://evm-rpc.devnet-3.nibiru.fi"], + "faucets": [], + "nativeCurrency": { + "name": "NIBI", + "symbol": "NIBI", + "decimals": 18 + }, + "status": "deprecated", + "infoURL": "https://nibiru.fi", + "shortName": "nibiru-devnet-3", + "chainId": 7222, + "networkId": 7222, + "icon": "nibiru", + "explorers": [] +} diff --git a/_data/chains/eip155-723107.json b/_data/chains/eip155-723107.json new file mode 100644 index 000000000000..2cc95e4766c8 --- /dev/null +++ b/_data/chains/eip155-723107.json @@ -0,0 +1,22 @@ +{ + "name": "TixChain Testnet", + "chain": "TIXCHAIN", + "rpc": ["https://subnets.avax.network/tixchain/testnet/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "TIX Token", + "symbol": "TIX", + "decimals": 18 + }, + "infoURL": "https://subnets-test.avax.network/tixchain/details", + "shortName": "tixchain", + "chainId": 723107, + "networkId": 723107, + "explorers": [ + { + "name": "TixChain Testnet Subnet Explorer", + "url": "https://subnets-test.avax.network/tixchain", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7233.json b/_data/chains/eip155-7233.json new file mode 100644 index 000000000000..5f28429c8225 --- /dev/null +++ b/_data/chains/eip155-7233.json @@ -0,0 +1,24 @@ +{ + "name": "InitVerse Mainnet", + "chain": "InitVerse", + "rpc": ["https://rpc-mainnet.inichain.com"], + "faucets": [], + "nativeCurrency": { + "name": "InitVerse", + "symbol": "INI", + "decimals": 18 + }, + "infoURL": "https://www.inichain.com", + "shortName": "INI", + "chainId": 7233, + "networkId": 7233, + "icon": "initverse", + "explorers": [ + { + "name": "initverse", + "url": "https://www.iniscan.com", + "icon": "initverse", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-7234.json b/_data/chains/eip155-7234.json new file mode 100644 index 000000000000..2635caa57cd8 --- /dev/null +++ b/_data/chains/eip155-7234.json @@ -0,0 +1,24 @@ +{ + "name": "InitVerse genesis testnet", + "chain": "InitVerse", + "rpc": ["http://rpc-testnet.inichain.com"], + "faucets": [], + "nativeCurrency": { + "name": "InitVerse", + "symbol": "INI", + "decimals": 18 + }, + "infoURL": "https://genesis-testnet.inichain.com", + "shortName": "INICHAIN", + "chainId": 7234, + "networkId": 7234, + "icon": "initverse", + "explorers": [ + { + "name": "initverse", + "url": "https://genesis-testnet.iniscan.com", + "icon": "initverse", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-7244.json b/_data/chains/eip155-7244.json new file mode 100644 index 000000000000..e64a32a6eb54 --- /dev/null +++ b/_data/chains/eip155-7244.json @@ -0,0 +1,24 @@ +{ + "name": "ZEUS Testnet", + "chain": "tZEUS", + "icon": "zeusicon", + "rpc": ["https://testnet-rpc.zeuschainscan.io"], + "nativeCurrency": { + "name": "The ZEUS Token", + "symbol": "ZEUSX", + "decimals": 18 + }, + "infoURL": "https://testnet-explorer.zeuschainscan.io", + "shortName": "ZEUS-Testnet", + "chainId": 7244, + "networkId": 7244, + "faucets": ["https://faucet.zeuschainscan.io"], + "explorers": [ + { + "name": "ZEUS Testnet Explorer", + "url": "https://testnet-explorer.zeuschainscan.io", + "icon": "zeusicon", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-728126428.json b/_data/chains/eip155-728126428.json new file mode 100644 index 000000000000..a4e57ab3f792 --- /dev/null +++ b/_data/chains/eip155-728126428.json @@ -0,0 +1,28 @@ +{ + "name": "Tron Mainnet", + "chain": "TRON", + "rpc": [ + "https://rpc.ankr.com/tron_jsonrpc", + "https://api.trongrid.io/jsonrpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tron", + "symbol": "TRX", + "decimals": 6 + }, + "infoURL": "https://tron.network", + "shortName": "tron", + "chainId": 728126428, + "networkId": 728126428, + "icon": "tron", + "slip44": 195, + "explorers": [ + { + "name": "tronscan", + "url": "https://tronscan.org", + "icon": "tron", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-72888.json b/_data/chains/eip155-72888.json new file mode 100644 index 000000000000..cb3beb840d59 --- /dev/null +++ b/_data/chains/eip155-72888.json @@ -0,0 +1,23 @@ +{ + "name": "CAGA mainnet", + "chain": "CAGA", + "rpc": ["https://cagamainnet.com", "wss://cagamainnet.com/ws"], + "faucets": [], + "nativeCurrency": { + "name": "CAGA", + "symbol": "CAGA", + "decimals": 18 + }, + "infoURL": "https://www.cagacrypto.com/", + "shortName": "caga-mainnet", + "chainId": 72888, + "networkId": 72888, + "icon": "caga", + "explorers": [ + { + "name": "caga", + "url": "https://explorer.cagamainnet.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7368.json b/_data/chains/eip155-7368.json new file mode 100644 index 000000000000..48025a0d5a05 --- /dev/null +++ b/_data/chains/eip155-7368.json @@ -0,0 +1,35 @@ +{ + "name": "Rarimo", + "title": "Rarimo Mainnet", + "chain": "ETH", + "rpc": ["https://l2.rarimo.com", "wss://wss.l2.rarimo.com"], + "faucets": [], + "nativeCurrency": { + "name": "Rarimo Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://rarimo.com", + "shortName": "rarimo", + "chainId": 7368, + "networkId": 7368, + "icon": "rarimo", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://l2bridge.rarimo.com" + } + ] + }, + "explorers": [ + { + "name": "Blockscout", + "url": "https://scan.rarimo.com", + "standard": "EIP3091", + "icon": "rarimo" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-743.json b/_data/chains/eip155-743.json new file mode 100644 index 000000000000..7842be1984af --- /dev/null +++ b/_data/chains/eip155-743.json @@ -0,0 +1,31 @@ +{ + "name": "Tranched Mainnet", + "chain": "tranched-mainnet", + "rpc": ["https://tranched-mainnet.calderachain.xyz/http"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://tranched-mainnet.hub.caldera.xyz", + "shortName": "tranched-mainnet", + "chainId": 743, + "networkId": 743, + "icon": "tranched-mainnet", + "explorers": [ + { + "name": "Tranched Mainnet Caldera Explorer", + "url": "https://tranched-mainnet.calderaexplorer.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-747.json b/_data/chains/eip155-747.json index c223995249cc..656713357cfb 100644 --- a/_data/chains/eip155-747.json +++ b/_data/chains/eip155-747.json @@ -1,5 +1,5 @@ { - "name": "Mainnet", + "name": "Flow EVM Mainnet", "chain": "Flow", "rpc": ["https://mainnet.evm.nodes.onflow.org"], "faucets": [], @@ -15,9 +15,9 @@ "icon": "flowevm", "explorers": [ { - "name": "Flow Diver", - "url": "https://flowdiver.io", - "standard": "none" + "name": "FlowScan", + "url": "https://evm.flowscan.io", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-747474.json b/_data/chains/eip155-747474.json new file mode 100644 index 000000000000..2bfe40de71cf --- /dev/null +++ b/_data/chains/eip155-747474.json @@ -0,0 +1,24 @@ +{ + "name": "katana", + "chain": "katana", + "rpc": ["https://rpc.katana.network"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://katana.network", + "shortName": "katana", + "chainId": 747474, + "networkId": 747474, + "icon": "katana", + "explorers": [ + { + "name": "katana explorer", + "url": "https://explorer.katanarpc.com", + "icon": "katana", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-752024.json b/_data/chains/eip155-752024.json new file mode 100644 index 000000000000..d75bfe1a79b8 --- /dev/null +++ b/_data/chains/eip155-752024.json @@ -0,0 +1,22 @@ +{ + "name": "Ternoa Testnet", + "chain": "Ternoa", + "rpc": ["https://rpc.zkevm.ternoa.network"], + "faucets": ["https://faucet.zkevm.ternoa.network"], + "nativeCurrency": { + "name": "Capsule Coin", + "symbol": "CAPS", + "decimals": 18 + }, + "infoURL": "", + "shortName": "ternoa", + "chainId": 752024, + "networkId": 7502024, + "explorers": [ + { + "name": "Tracehawk", + "url": "https://explorer.zkevm.ternoa.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-752025.json b/_data/chains/eip155-752025.json new file mode 100644 index 000000000000..dd037b52f29f --- /dev/null +++ b/_data/chains/eip155-752025.json @@ -0,0 +1,22 @@ +{ + "name": "Ternoa", + "chain": "Ternoa", + "rpc": ["https://rpc-mainnet.zkevm.ternoa.network"], + "faucets": [], + "nativeCurrency": { + "name": "Capsule Coin", + "symbol": "CAPS", + "decimals": 18 + }, + "infoURL": "", + "shortName": "ternoa-mainnet", + "chainId": 752025, + "networkId": 7502025, + "explorers": [ + { + "name": "Tracehawk", + "url": "https://explorer-mainnet.zkevm.ternoa.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-753.json b/_data/chains/eip155-753.json new file mode 100644 index 000000000000..8682443b1de8 --- /dev/null +++ b/_data/chains/eip155-753.json @@ -0,0 +1,31 @@ +{ + "name": "Rivalz", + "chain": "rivalz", + "rpc": ["https://rivalz.calderachain.xyz/http"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://rivalz.hub.caldera.xyz", + "shortName": "rivalz", + "chainId": 753, + "networkId": 753, + "icon": "rivalz", + "explorers": [ + { + "name": "Rivalz Caldera Explorer", + "url": "https://rivalz.calderaexplorer.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7531.json b/_data/chains/eip155-7531.json new file mode 100644 index 000000000000..fc1e618ce487 --- /dev/null +++ b/_data/chains/eip155-7531.json @@ -0,0 +1,25 @@ +{ + "name": "Rome Mainnet 0 Palatine", + "chain": "ROME", + "rpc": ["https://palatine-i.mainnet-0.romeprotocol.xyz"], + "faucets": ["https://deposit.mainnet-0.romeprotocol.xyz"], + "nativeCurrency": { + "name": "RSOL", + "symbol": "RSOL", + "decimals": 18 + }, + "infoURL": "https://rome.builders", + "shortName": "rome-mainnet-0-palatine", + "chainId": 7531, + "networkId": 7531, + "icon": "rome", + "explorers": [ + { + "name": "Rome Mainnet 0 Palatine Explorer", + "url": "https://romescout-palatine-i.mainnet-0.romeprotocol.xyz", + "icon": "rome", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-7532.json b/_data/chains/eip155-7532.json new file mode 100644 index 000000000000..2c37782c7632 --- /dev/null +++ b/_data/chains/eip155-7532.json @@ -0,0 +1,25 @@ +{ + "name": "Rome Mainnet 0 Aventine", + "chain": "ROME", + "rpc": ["https://aventine-i.mainnet-0.romeprotocol.xyz"], + "faucets": ["https://deposit.mainnet-0.romeprotocol.xyz"], + "nativeCurrency": { + "name": "RSOL", + "symbol": "RSOL", + "decimals": 18 + }, + "infoURL": "https://rome.builders", + "shortName": "rome-mainnet-0-aventine", + "chainId": 7532, + "networkId": 7532, + "icon": "rome", + "explorers": [ + { + "name": "Rome Mainnet 0 Aventine Explorer", + "url": "https://romescout-aventine-i.mainnet-0.romeprotocol.xyz", + "icon": "rome", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-75338.json b/_data/chains/eip155-75338.json new file mode 100644 index 000000000000..394f38ef1571 --- /dev/null +++ b/_data/chains/eip155-75338.json @@ -0,0 +1,27 @@ +{ + "name": "AppLayer Testnet", + "chain": "AppLayer", + "rpc": ["https://testnet-api.applayer.com"], + "faucets": ["https://testnet-faucet.applayer.com"], + "nativeCurrency": { + "name": "AppLayer", + "symbol": "APPL", + "decimals": 18 + }, + "features": [ + { "name": "EIP55" }, + { "name": "EIP155" }, + { "name": "EIP1559" } + ], + "infoURL": "https://applayer.com", + "shortName": "applayer-testnet", + "chainId": 75338, + "networkId": 75338, + "explorers": [ + { + "name": "Applayer Testnet Explorer", + "url": "https://testnet-explorer.applayer.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-75512.json b/_data/chains/eip155-75512.json index 97456950468e..4a0a7b0a5b78 100644 --- a/_data/chains/eip155-75512.json +++ b/_data/chains/eip155-75512.json @@ -4,8 +4,8 @@ "rpc": ["https://rpc.geekout-pte.com"], "faucets": [], "nativeCurrency": { - "name": "Geek", - "symbol": "GEEK", + "name": "OAS", + "symbol": "OAS", "decimals": 18 }, "infoURL": "https://www.geekout-pte.com", diff --git a/_data/chains/eip155-75513.json b/_data/chains/eip155-75513.json new file mode 100644 index 000000000000..c4a2220ebb9a --- /dev/null +++ b/_data/chains/eip155-75513.json @@ -0,0 +1,22 @@ +{ + "name": "GEEK Verse Testnet", + "chain": "GEEK Test", + "rpc": ["https://rpc-testnet.geekout-pte.com"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://www.geekout-pte.com", + "shortName": "GEEK_Test", + "chainId": 75513, + "networkId": 75513, + "explorers": [ + { + "name": "Geek Testnet Explorer", + "url": "https://explorer-testnet.geekout-pte.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-756689.json b/_data/chains/eip155-756689.json new file mode 100644 index 000000000000..d460f5821290 --- /dev/null +++ b/_data/chains/eip155-756689.json @@ -0,0 +1,23 @@ +{ + "name": "PAYSCAN CHAIN", + "chain": "PAYSCAN CHAIN", + "rpc": ["https://rpc.payscan.live"], + "faucets": [], + "nativeCurrency": { + "name": "PYZ", + "symbol": "PYZ", + "decimals": 18 + }, + "infoURL": "https://payscan.live", + "shortName": "payscan", + "chainId": 756689, + "networkId": 756689, + "slip44": 108, + "explorers": [ + { + "name": "PAYSCAN CHAIN", + "url": "https://payscan.live", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-763373.json b/_data/chains/eip155-763373.json new file mode 100644 index 000000000000..6481250a2766 --- /dev/null +++ b/_data/chains/eip155-763373.json @@ -0,0 +1,26 @@ +{ + "name": "Ink Sepolia", + "chain": "ETH", + "rpc": [ + "https://rpc-gel-sepolia.inkonchain.com", + "wss://ws-gel-sepolia.inkonchain.com" + ], + "faucets": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://inkonchain.com/", + "shortName": "inksepolia", + "chainId": 763373, + "networkId": 763373, + "explorers": [ + { + "name": "Ink Sepolia Explorer", + "url": "https://explorer-sepolia.inkonchain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-763374.json b/_data/chains/eip155-763374.json new file mode 100644 index 000000000000..066dec24bd76 --- /dev/null +++ b/_data/chains/eip155-763374.json @@ -0,0 +1,28 @@ +{ + "name": "Surge Testnet", + "chain": "Surge Testnet", + "rpc": [ + "https://l2-rpc.surge.staging-nethermind.xyz", + "wss://l2-rpc.surge.staging-nethermind.xyz" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://surge.wtf", + "shortName": "surge-testnet", + "chainId": 763374, + "networkId": 763374, + "icon": "surge-testnet", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.holesky.surge.wtf", + "standard": "EIP3091", + "icon": "surge-testnet" + } + ] +} diff --git a/_data/chains/eip155-764984.json b/_data/chains/eip155-764984.json new file mode 100644 index 000000000000..48ac81916b69 --- /dev/null +++ b/_data/chains/eip155-764984.json @@ -0,0 +1,28 @@ +{ + "name": "Lamina1 Testnet", + "chain": "Lamina1 Testnet", + "rpc": ["https://subnets.avax.network/lamina1tes/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Lamina1 Test", + "symbol": "L1T", + "decimals": 18 + }, + "infoURL": "https://fuji.lamina1.com/", + "shortName": "lamina1test", + "chainId": 764984, + "networkId": 764984, + "slip44": 1, + "explorers": [ + { + "name": "Lamina1 Test Explorer", + "url": "https://subnets-test.avax.network/lamina1tes", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-766.json b/_data/chains/eip155-766.json index e3c5fd815728..2d14705d1563 100644 --- a/_data/chains/eip155-766.json +++ b/_data/chains/eip155-766.json @@ -17,7 +17,7 @@ "explorers": [ { "name": "QL1 Mainnet Explorer", - "url": "https://mainnet.qom.one", + "url": "https://scan.qom.one", "icon": "qom", "standard": "EIP3091" } diff --git a/_data/chains/eip155-767368.json b/_data/chains/eip155-767368.json new file mode 100644 index 000000000000..5981415c6c37 --- /dev/null +++ b/_data/chains/eip155-767368.json @@ -0,0 +1,28 @@ +{ + "name": "Lamina1 Identity Testnet", + "chain": "Lamina1 Identity Testnet", + "rpc": ["https://subnets.avax.network/lamina1id/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "L1ID Test", + "symbol": "L1IDT", + "decimals": 18 + }, + "infoURL": "https://fuji.lamina1.com/", + "shortName": "lamina1idtest", + "chainId": 767368, + "networkId": 767368, + "slip44": 1, + "explorers": [ + { + "name": "Lamina1 Identity Testnet Explorer", + "url": "https://subnets-test.avax.network/lamina1id", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-77001.json b/_data/chains/eip155-77001.json index fa1398104376..30c7319abd29 100644 --- a/_data/chains/eip155-77001.json +++ b/_data/chains/eip155-77001.json @@ -2,11 +2,14 @@ "name": "BORAchain mainnet", "chain": "BORA", "icon": "bora", - "rpc": ["https://public-node.api.boraportal.com/bora/mainnet"], + "rpc": [ + "https://public-node.api.boraportal.com/bora/mainnet", + "https://public-node.api.boraportal.io/bora/mainnet" + ], "faucets": [], "nativeCurrency": { - "name": "BGAS", - "symbol": "BGAS", + "name": "BORA", + "symbol": "BORA", "decimals": 18 }, "infoURL": "https://www.boraportal.com", diff --git a/_data/chains/eip155-7744.json b/_data/chains/eip155-7744.json new file mode 100644 index 000000000000..62055c3bf12a --- /dev/null +++ b/_data/chains/eip155-7744.json @@ -0,0 +1,24 @@ +{ + "name": "Phron Testnet", + "chain": "PHR", + "icon": "phron", + "rpc": ["https://testnet.phron.ai", "wss://testnet.phron.ai"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://faucet.phron.ai"], + "nativeCurrency": { + "name": "Phron", + "symbol": "TPHR", + "decimals": 18 + }, + "infoURL": "https://phron.ai", + "shortName": "phr", + "chainId": 7744, + "networkId": 7744, + "explorers": [ + { + "name": "phronscan", + "url": "https://testnet.phronscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-77652.json b/_data/chains/eip155-77652.json new file mode 100644 index 000000000000..d172497358da --- /dev/null +++ b/_data/chains/eip155-77652.json @@ -0,0 +1,22 @@ +{ + "name": "Carrchain Testnet", + "chain": "Carrchain Testnet", + "rpc": ["https://rpc-testnetcarrchain.artiffine.com"], + "faucets": ["https://faucet-testnetcarrchain.artiffine.com"], + "nativeCurrency": { + "name": "Carrchain Coin", + "symbol": "CARR", + "decimals": 18 + }, + "infoURL": "https://explorer-testnetcarrchain.artiffine.com", + "shortName": "Carrchain-Testnet", + "chainId": 77652, + "networkId": 77652, + "explorers": [ + { + "name": "tracehawk", + "url": "https://explorer-testnetcarrchain.artiffine.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-77677.json b/_data/chains/eip155-77677.json new file mode 100644 index 000000000000..433a10e4b4ac --- /dev/null +++ b/_data/chains/eip155-77677.json @@ -0,0 +1,16 @@ +{ + "name": "Cycle Network Mainnet Sailboat", + "chain": "ETH", + "rpc": ["https://sailboat-rpc-mainnet.cyclenetwork.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.cyclenetwork.io/", + "shortName": "cycles", + "chainId": 77677, + "networkId": 77677, + "icon": "cycle" +} diff --git a/_data/chains/eip155-7770.json b/_data/chains/eip155-7770.json new file mode 100644 index 000000000000..781b2f5df146 --- /dev/null +++ b/_data/chains/eip155-7770.json @@ -0,0 +1,22 @@ +{ + "name": "PandaSea Testnet", + "chain": "PandaSea Testnet", + "rpc": ["https://rpc.testnet.pandasea.io"], + "faucets": ["https://faucet.pandasea.io"], + "nativeCurrency": { + "name": "PandaSea Coin", + "symbol": "PANDA", + "decimals": 18 + }, + "infoURL": "https://test.pandaseascan.com", + "shortName": "Pandasea-Testnet", + "chainId": 7770, + "networkId": 7770, + "explorers": [ + { + "name": "tracehawk", + "url": "https://test.pandaseascan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-7774.json b/_data/chains/eip155-7774.json new file mode 100644 index 000000000000..22c29e5653e4 --- /dev/null +++ b/_data/chains/eip155-7774.json @@ -0,0 +1,23 @@ +{ + "name": "GDCC MAINNET", + "chain": "GDCC", + "icon": "gdcc", + "rpc": ["https://mainnet-rpc-1.gdccscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "GDCC", + "symbol": "GDCC", + "decimals": 18 + }, + "infoURL": "https://gdcchain.com", + "shortName": "GdccMainnet", + "chainId": 7774, + "networkId": 7774, + "explorers": [ + { + "name": "GDCC", + "url": "https://gdccscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-7776.json b/_data/chains/eip155-7776.json new file mode 100644 index 000000000000..cf9b4c498744 --- /dev/null +++ b/_data/chains/eip155-7776.json @@ -0,0 +1,22 @@ +{ + "name": "PandaSea Mainnet", + "chain": "PandaSea", + "rpc": ["https://rpc1.pandasea.io"], + "faucets": [], + "nativeCurrency": { + "name": "PandaSea Coin", + "symbol": "PANDA", + "decimals": 18 + }, + "infoURL": "", + "shortName": "pandaSea-mainnet", + "chainId": 7776, + "networkId": 7776, + "explorers": [ + { + "name": "Tracehawk", + "url": "https://pandaseascan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-77777.json b/_data/chains/eip155-77777.json index 7498c3b21559..2de9f61cf97d 100644 --- a/_data/chains/eip155-77777.json +++ b/_data/chains/eip155-77777.json @@ -2,11 +2,11 @@ "name": "Toronet Mainnet", "chain": "Toronet", "icon": "toronet", - "rpc": ["http://toronet.org/rpc"], + "rpc": ["https://www.toronet.org/rpc2/"], "faucets": [], "nativeCurrency": { - "name": "Toro", - "symbol": "TORO", + "name": "Toroe", + "symbol": "TOROE", "decimals": 18 }, "infoURL": "https://toronet.org", diff --git a/_data/chains/eip155-777777.json b/_data/chains/eip155-777777.json new file mode 100644 index 000000000000..79039e16a5e0 --- /dev/null +++ b/_data/chains/eip155-777777.json @@ -0,0 +1,25 @@ +{ + "name": "Winr Protocol Mainnet", + "chain": "WINR", + "rpc": ["https://rpc.winr.games"], + "faucets": [], + "nativeCurrency": { + "name": "Winr", + "symbol": "WINR", + "decimals": 18 + }, + "features": [], + "infoURL": "https://winr.games", + "shortName": "winr", + "chainId": 777777, + "networkId": 777777, + "icon": "winr", + "explorers": [ + { + "name": "Winr Protocol Explorer", + "url": "https://explorer.winr.games", + "icon": "winr", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-777888.json b/_data/chains/eip155-777888.json new file mode 100644 index 000000000000..8c298d53279c --- /dev/null +++ b/_data/chains/eip155-777888.json @@ -0,0 +1,22 @@ +{ + "name": "Oone Chain Mainnet", + "chain": "OONE", + "rpc": ["https://rpc.oonechain.com"], + "faucets": [], + "nativeCurrency": { + "name": "OONE", + "symbol": "OONE", + "decimals": 18 + }, + "infoURL": "https://oonechain.com", + "shortName": "oone", + "chainId": 777888, + "networkId": 777888, + "explorers": [ + { + "name": "blockscout", + "url": "https://oonescan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-7788.json b/_data/chains/eip155-7788.json new file mode 100644 index 000000000000..ac82cfcaf484 --- /dev/null +++ b/_data/chains/eip155-7788.json @@ -0,0 +1,25 @@ +{ + "name": "Draw Coin", + "chain": "DRW", + "icon": "drawchain", + "rpc": ["https://rpc.drawchain.org"], + "faucets": [], + "nativeCurrency": { + "name": "DRW", + "symbol": "DRW", + "decimals": 18 + }, + "infoURL": "https://drawchain.io/", + "shortName": "drw", + "chainId": 7788, + "networkId": 7788, + + "explorers": [ + { + "name": "Draw Chain Explorer", + "url": "https://drawscan.io", + "standard": "EIP3091", + "icon": "drawchain" + } + ] +} diff --git a/_data/chains/eip155-7849306.json b/_data/chains/eip155-7849306.json new file mode 100644 index 000000000000..6bf61b730bd4 --- /dev/null +++ b/_data/chains/eip155-7849306.json @@ -0,0 +1,32 @@ +{ + "name": "Ozean Poseidon Testnet", + "chain": "Ozean Poseidon", + "rpc": [ + "https://ozean-testnet.rpc.caldera.xyz/http", + "wss://ozean-testnet.rpc.caldera.xyz/ws" + ], + "faucets": ["https://ozean-testnet.hub.caldera.xyz"], + "nativeCurrency": { + "name": "USDX", + "symbol": "USDX", + "decimals": 18 + }, + "infoURL": "https://docs.ozean.finance", + "shortName": "ozean-poseidon", + "chainId": 7849306, + "networkId": 7849306, + "icon": "ozean", + "status": "active", + "explorers": [ + { + "name": "Ozean Testnet Explorer", + "url": "https://ozean-testnet.explorer.caldera.xyz", + "icon": "ozean", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } +} diff --git a/_data/chains/eip155-785.json b/_data/chains/eip155-785.json new file mode 100644 index 000000000000..99bdc3377247 --- /dev/null +++ b/_data/chains/eip155-785.json @@ -0,0 +1,22 @@ +{ + "name": "AUTHEO Testnet", + "chain": "AUTHEO Testnet", + "rpc": ["https://testnet-rpc1.autheo.com"], + "faucets": ["https://testnet-faucet.autheo.com"], + "nativeCurrency": { + "name": "THEO", + "symbol": "THEO", + "decimals": 18 + }, + "infoURL": "https://autheo.com", + "shortName": "autheo-Test-Chain", + "chainId": 785, + "networkId": 785, + "explorers": [ + { + "name": "tracehawk", + "url": "https://testnet-explorer.autheo.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-7862.json b/_data/chains/eip155-7862.json new file mode 100644 index 000000000000..1fe7d4c74418 --- /dev/null +++ b/_data/chains/eip155-7862.json @@ -0,0 +1,27 @@ +{ + "name": "MaalChain V2", + "chain": "MAAL", + "icon": "maal", + "rpc": [ + "https://node1-mainnet-new.maalscan.io/", + "https://node2-mainnet-new.maalscan.io/", + "https://node3-mainnet-new.maalscan.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "MAAL", + "symbol": "MAAL", + "decimals": 18 + }, + "infoURL": "https://www.maalchain.com/", + "shortName": "maal-v2", + "chainId": 7862, + "networkId": 7862, + "explorers": [ + { + "name": "maalscan", + "url": "https://v2.maalscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7863.json b/_data/chains/eip155-7863.json new file mode 100644 index 000000000000..dd64766c99b7 --- /dev/null +++ b/_data/chains/eip155-7863.json @@ -0,0 +1,27 @@ +{ + "name": "MaalChain Testnet V2", + "chain": "MaalChain Testnet V2", + "icon": "maal-test", + "rpc": [ + "https://node-testnet.maalscan.io/", + "https://node2-testnet.maalscan.io/" + ], + "faucets": ["https://faucet-new-testnet.maalscan.io/"], + "nativeCurrency": { + "name": "MAAL", + "symbol": "MAAL", + "decimals": 18 + }, + "infoURL": "https://www.maalchain.com/", + "shortName": "maal-test-v2", + "chainId": 7863, + "networkId": 7863, + "slip44": 1, + "explorers": [ + { + "name": "maalscan testnet", + "url": "https://new-testnet.maalscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7865.json b/_data/chains/eip155-7865.json new file mode 100644 index 000000000000..9b06623ee494 --- /dev/null +++ b/_data/chains/eip155-7865.json @@ -0,0 +1,25 @@ +{ + "name": "Powerloom Mainnet", + "chain": "POWER", + "rpc": ["https://rpc.powerloom.network"], + "faucets": [], + "nativeCurrency": { + "name": "Powerloom Token", + "symbol": "POWER", + "decimals": 18 + }, + "infoURL": "https://powerloom.network", + "shortName": "power", + "chainId": 7865, + "networkId": 7865, + "icon": "power", + "status": "active", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.powerloom.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-786786.json b/_data/chains/eip155-786786.json new file mode 100644 index 000000000000..78419ef1d4e4 --- /dev/null +++ b/_data/chains/eip155-786786.json @@ -0,0 +1,28 @@ +{ + "name": "Zebro Smart Chain", + "chain": "ZEBRO", + "rpc": ["https://rpc.zebrocoin.app", "https://rpc1.zebrocoin.app"], + "faucets": [], + "nativeCurrency": { + "name": "Zebrocoin", + "symbol": "ZEBRO", + "decimals": 18 + }, + "infoURL": "https://zebrocoin.app", + "shortName": "zebro", + "chainId": 786786, + "networkId": 786786, + "icon": "zebrocoin", + "explorers": [ + { + "name": "Zebrocoin Explorer", + "url": "https://explorer.zebrocoin.app", + "standard": "EIP3091" + }, + { + "name": "Zebrocoin Explorer1", + "url": "https://explorer1.zebrocoin.app", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7869.json b/_data/chains/eip155-7869.json new file mode 100644 index 000000000000..1e4b41b2f95c --- /dev/null +++ b/_data/chains/eip155-7869.json @@ -0,0 +1,25 @@ +{ + "name": "Powerloom Mainnet V2", + "chain": "Powerloom Mainnet V2", + "rpc": ["https://rpc-v2.powerloom.network"], + "faucets": [], + "nativeCurrency": { + "name": "Powerloom Token", + "symbol": "POWER", + "decimals": 18 + }, + "infoURL": "https://powerloom.network", + "shortName": "powerloom", + "chainId": 7869, + "networkId": 7869, + "icon": "power", + "status": "active", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer-v2.powerloom.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7879.json b/_data/chains/eip155-7879.json new file mode 100644 index 000000000000..b8c98aeeb2ef --- /dev/null +++ b/_data/chains/eip155-7879.json @@ -0,0 +1,28 @@ +{ + "name": "Vexon Testnet", + "chain": "Vexon", + "rpc": [ + "https://rpc-testnet-asia1.vexonhub.org", + "https://rpc-testnet-europe1.vexonhub.org", + "https://rpc-testnet-01.vexonhub.org" + ], + "faucets": ["https://faucet-drip.vexonhub.org"], + "nativeCurrency": { + "name": "Vexon Testnet Native Token", + "symbol": "tVEX", + "decimals": 18 + }, + "infoURL": "https://vexonhub.org", + "shortName": "vexon", + "chainId": 7879, + "networkId": 7879, + "icon": "vexon", + "explorers": [ + { + "name": "Vexon Testnet Explorer", + "url": "https://testnet.vexonhub.org", + "standard": "EIP3091", + "icon": "vexon" + } + ] +} diff --git a/_data/chains/eip155-7897.json b/_data/chains/eip155-7897.json new file mode 100644 index 000000000000..e255b6150434 --- /dev/null +++ b/_data/chains/eip155-7897.json @@ -0,0 +1,34 @@ +{ + "name": "arena-z", + "title": "arena-z", + "chain": "arena-z", + "rpc": ["https://rpc.arena-z.gg", "wss://ws.arena-z.gg"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/arena-z", + "faucets": [], + "shortName": "arena-z", + "chainId": 7897, + "networkId": 7897, + "slip44": 60, + "icon": "arena-z-mainnet", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.arena-z.gg", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.gelato.network/bridge/arena-z" + } + ] + } +} diff --git a/_data/chains/eip155-789789.json b/_data/chains/eip155-789789.json new file mode 100644 index 000000000000..fc5c0180749f --- /dev/null +++ b/_data/chains/eip155-789789.json @@ -0,0 +1,23 @@ +{ + "name": "Emeraldz", + "chain": "EMED", + "rpc": ["https://public.0xrpc.com/789789"], + "faucets": [], + "nativeCurrency": { + "name": "EMERALDZ", + "symbol": "EMED", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://emeraldzscan.com", + "shortName": "emed", + "chainId": 789789, + "networkId": 789789, + "explorers": [ + { + "name": "Emeraldz Explorer", + "url": "https://emeraldzscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7924.json b/_data/chains/eip155-7924.json new file mode 100644 index 000000000000..997461f7f5f6 --- /dev/null +++ b/_data/chains/eip155-7924.json @@ -0,0 +1,23 @@ +{ + "name": "MO Mainnet", + "chainId": 7924, + "shortName": "MO", + "chain": "MO", + "icon": "mo", + "networkId": 7924, + "nativeCurrency": { + "name": "MO", + "symbol": "MO", + "decimals": 18 + }, + "rpc": ["https://mainnet-rpc.mochain.app/"], + "faucets": ["https://faucet.mochain.app/"], + "explorers": [ + { + "name": "MO Explorer", + "url": "https://moscan.app", + "standard": "none" + } + ], + "infoURL": "https://mochain.app" +} diff --git a/_data/chains/eip155-79479957.json b/_data/chains/eip155-79479957.json new file mode 100644 index 000000000000..00ccfda8783d --- /dev/null +++ b/_data/chains/eip155-79479957.json @@ -0,0 +1,28 @@ +{ + "name": "SX Toronto Rollup", + "chain": "SX", + "icon": "SX", + "rpc": ["https://rpc.sx-rollup-testnet.t.raas.gelato.cloud"], + "faucets": ["https://faucet.toronto.sx.technology"], + "nativeCurrency": { + "name": "SX Network", + "symbol": "SX", + "decimals": 18 + }, + "infoURL": "https://www.sx.technology", + "shortName": "SXR-Testnet", + "chainId": 79479957, + "networkId": 79479957, + "explorers": [ + { + "name": "SX Toronto L2 Explorer", + "url": "https://explorerl2.toronto.sx.technology", + "standard": "EIP3091", + "icon": "SX" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } +} diff --git a/_data/chains/eip155-7957.json b/_data/chains/eip155-7957.json new file mode 100644 index 000000000000..8dca804a6230 --- /dev/null +++ b/_data/chains/eip155-7957.json @@ -0,0 +1,29 @@ +{ + "name": "Exorium Testnet", + "chain": "EXOR", + "rpc": [ + "https://rpc-1-testnet.exorium.net", + "https://rpc-2-testnet.exorium.net", + "https://rpc-testnet.exoscan.net/" + ], + "faucets": ["https://faucet-testnet.exorium.net"], + "nativeCurrency": { + "name": "EXOR", + "symbol": "tEXOR", + "decimals": 18 + }, + "infoURL": "https://exorium.net", + "shortName": "texor", + "chainId": 7957, + "networkId": 7957, + "slip44": 1, + "icon": "exorium", + "explorers": [ + { + "name": "EXORIUM Testnet Explorer", + "icon": "exorium", + "url": "https://testnet.exoscan.net", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-80002.json b/_data/chains/eip155-80002.json index f76af6d33ccf..6ed85583896d 100644 --- a/_data/chains/eip155-80002.json +++ b/_data/chains/eip155-80002.json @@ -10,8 +10,8 @@ ], "faucets": ["https://faucet.polygon.technology/"], "nativeCurrency": { - "name": "MATIC", - "symbol": "MATIC", + "name": "POL", + "symbol": "POL", "decimals": 18 }, "infoURL": "https://polygon.technology/", @@ -20,6 +20,11 @@ "networkId": 80002, "slip44": 1, "explorers": [ + { + "name": "polygonscan-amoy", + "url": "https://amoy.polygonscan.com", + "standard": "EIP3091" + }, { "name": "polygonamoy", "url": "https://www.oklink.com/amoy", diff --git a/_data/chains/eip155-80008.json b/_data/chains/eip155-80008.json new file mode 100644 index 000000000000..66d6336b001c --- /dev/null +++ b/_data/chains/eip155-80008.json @@ -0,0 +1,24 @@ +{ + "name": "Polynomial Sepolia", + "chain": "polynomialSepolia", + "rpc": ["https://rpc.sepolia.polynomial.fi"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polynomial.fi", + "shortName": "polynomialSepolia", + "chainId": 80008, + "networkId": 80008, + "icon": "polynomialSepolia", + "explorers": [ + { + "name": "Polynomial Sepolia Explorer", + "url": "https://sepolia.polynomialscan.io", + "standard": "none", + "icon": "polynomialSepolia" + } + ] +} diff --git a/_data/chains/eip155-80069.json b/_data/chains/eip155-80069.json new file mode 100644 index 000000000000..566dfe9fb93e --- /dev/null +++ b/_data/chains/eip155-80069.json @@ -0,0 +1,24 @@ +{ + "name": "Berachain Bepolia", + "chain": "Berachain", + "rpc": ["https://bepolia.rpc.berachain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Testnet BERA Token", + "symbol": "BERA", + "decimals": 18 + }, + "infoURL": "https://www.berachain.com", + "shortName": "berachain-bepolia", + "chainId": 80069, + "networkId": 80069, + "icon": "berachain", + "explorers": [ + { + "name": "Beratrail", + "url": "https://bepolia.beratrail.io", + "icon": "berachain", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-8008.json b/_data/chains/eip155-8008.json new file mode 100644 index 000000000000..e82376123115 --- /dev/null +++ b/_data/chains/eip155-8008.json @@ -0,0 +1,24 @@ +{ + "name": "Polynomial", + "chain": "Polynomial", + "rpc": ["https://rpc.polynomial.fi"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polynomial.fi", + "shortName": "polynomial", + "chainId": 8008, + "networkId": 8008, + "icon": "polynomial", + "explorers": [ + { + "name": "Polynomial Explorer", + "url": "https://polynomialscan.io", + "standard": "none", + "icon": "polynomial" + } + ] +} diff --git a/_data/chains/eip155-8008135.json b/_data/chains/eip155-8008135.json new file mode 100644 index 000000000000..d394eaf6b04c --- /dev/null +++ b/_data/chains/eip155-8008135.json @@ -0,0 +1,23 @@ +{ + "name": "Fhenix Helium", + "chain": "tFHE", + "rpc": ["https://api.helium.fhenix.zone"], + "faucets": ["https://get-helium.fhenix.zone"], + "nativeCurrency": { + "name": "tFHE", + "symbol": "tFHE", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.fhenix.io", + "shortName": "fhe-helium", + "chainId": 8008135, + "networkId": 8008135, + "explorers": [ + { + "name": "Fhenix Helium Explorer (Blockscout)", + "url": "https://explorer.helium.fhenix.zone", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-80084.json b/_data/chains/eip155-80084.json new file mode 100644 index 000000000000..fd4ada654f78 --- /dev/null +++ b/_data/chains/eip155-80084.json @@ -0,0 +1,25 @@ +{ + "name": "Berachain bArtio", + "chain": "Berachain bArtio", + "status": "deprecated", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "BERA Token", + "symbol": "BERA", + "decimals": 18 + }, + "infoURL": "https://www.berachain.com", + "shortName": "berachainbArtio", + "chainId": 80084, + "networkId": 80084, + "icon": "berachain", + "explorers": [ + { + "name": "Beratrail", + "url": "https://bartio.beratrail.io", + "icon": "berachain", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-80085.json b/_data/chains/eip155-80085.json index 21da75461f7b..046316dc2844 100644 --- a/_data/chains/eip155-80085.json +++ b/_data/chains/eip155-80085.json @@ -1,11 +1,9 @@ { "name": "Berachain Artio", "chain": "Berachain Artio", - "rpc": [ - "https://artio.rpc.berachain.com", - "https://rpc.ankr.com/berachain_testnet" - ], - "faucets": ["https://artio.faucet.berachain.com"], + "status": "deprecated", + "rpc": [], + "faucets": [], "nativeCurrency": { "name": "BERA Token", "symbol": "BERA", diff --git a/_data/chains/eip155-80094.json b/_data/chains/eip155-80094.json new file mode 100644 index 000000000000..cd841b8131fd --- /dev/null +++ b/_data/chains/eip155-80094.json @@ -0,0 +1,34 @@ +{ + "name": "Berachain", + "chain": "Berachain", + "rpc": [ + "https://rpc.berachain.com", + "https://berachain-rpc.publicnode.com", + "wss://berachain-rpc.publicnode.com", + "https://rpc.berachain-apis.com", + "wss://rpc.berachain-apis.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BERA Token", + "symbol": "BERA", + "decimals": 18 + }, + "infoURL": "https://www.berachain.com", + "shortName": "berachain", + "chainId": 80094, + "networkId": 80094, + "icon": "berachain", + "explorers": [ + { + "name": "Berascan", + "url": "https://berascan.com", + "standard": "EIP3091" + }, + { + "name": "Beratrail", + "url": "https://beratrail.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8017.json b/_data/chains/eip155-8017.json new file mode 100644 index 000000000000..011c9369466b --- /dev/null +++ b/_data/chains/eip155-8017.json @@ -0,0 +1,26 @@ +{ + "name": "iSunCoin Mainnet", + "chain": "iSunCoin", + "icon": "isuncoin", + "rpc": ["https://mainnet.isuncoin.com"], + "faucets": [], + "nativeCurrency": { + "name": "ISC", + "symbol": "ISC", + "decimals": 18 + }, + "infoURL": "https://isuncoin.com", + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "shortName": "isc", + "chainId": 8017, + "networkId": 8017, + "slip44": 8017, + "explorers": [ + { + "name": "iSunCoin Explorer", + "icon": "isuncoin", + "url": "https://baifa.io/app/chains/8017", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-80451.json b/_data/chains/eip155-80451.json new file mode 100644 index 000000000000..fd540b0ccf6f --- /dev/null +++ b/_data/chains/eip155-80451.json @@ -0,0 +1,21 @@ +{ + "name": "Geo Genesis", + "chain": "Geo Genesis", + "rpc": ["https://rpc-geo-genesis-h0q2s21xx8.t.conduit.xyz/"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "infoURL": "https://geobrowser.io", + "nativeCurrency": { + "name": "The Graph", + "symbol": "GRT", + "decimals": 18 + }, + "shortName": "geo", + "chainId": 80451, + "networkId": 80451, + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-42161" + } +} diff --git a/_data/chains/eip155-805.json b/_data/chains/eip155-805.json new file mode 100644 index 000000000000..23fb0ef3a7b9 --- /dev/null +++ b/_data/chains/eip155-805.json @@ -0,0 +1,24 @@ +{ + "name": "Evoz Mainnet", + "chain": "Evoz", + "rpc": ["https://rpc.evozscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Evoz Mainnet", + "symbol": "EVOZ", + "decimals": 18 + }, + "infoURL": "https://rpc.evozscan.com", + "shortName": "Evoz", + "chainId": 805, + "networkId": 805, + "icon": "evoz", + "explorers": [ + { + "name": "evozscan", + "url": "https://evozscan.com", + "icon": "evoz", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-806582.json b/_data/chains/eip155-806582.json new file mode 100644 index 000000000000..96a8b27a7252 --- /dev/null +++ b/_data/chains/eip155-806582.json @@ -0,0 +1,25 @@ +{ + "name": "Ethpar Testnet", + "chain": "ETP", + "rpc": ["https://rpc82.testnet.ethpar.net/"], + "faucets": [], + "nativeCurrency": { + "name": "Ethpar", + "symbol": "ETP", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://ethpar.com", + "shortName": "ethpar-tesnet", + "chainId": 806582, + "networkId": 806582, + "icon": "ethpar", + "explorers": [ + { + "name": "Ethpar Testnet Explorer", + "url": "https://dora.testnet.ethpar.net", + "icon": "ethpar", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-8083.json b/_data/chains/eip155-8083.json new file mode 100644 index 000000000000..3e95c4bd5b13 --- /dev/null +++ b/_data/chains/eip155-8083.json @@ -0,0 +1,23 @@ +{ + "name": "Shardeum Testnet", + "chain": "ShardeumTestnet", + "icon": "shardeum", + "rpc": ["https://api-testnet.shardeum.org/"], + "faucets": [], + "nativeCurrency": { + "name": "Shardeum Test SHM", + "symbol": "SHM", + "decimals": 18 + }, + "infoURL": "https://docs.shardeum.org/", + "shortName": "ShardeumTestnet", + "chainId": 8083, + "networkId": 8083, + "explorers": [ + { + "name": "Shardeum Testnet Explorer", + "url": "https://explorer-testnet.shardeum.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8086.json b/_data/chains/eip155-8086.json index 3160c4a780dc..48312a2775fd 100644 --- a/_data/chains/eip155-8086.json +++ b/_data/chains/eip155-8086.json @@ -1,14 +1,15 @@ { "name": "Bitcoin Chain", "chain": "BTC", - "rpc": ["https://rpc.biteth.org"], + "icon": "BTCChain", + "rpc": ["https://rpc.bitcoinevm.org"], "faucets": [], "nativeCurrency": { "name": "Bitcoin", "symbol": "BTC", "decimals": 18 }, - "infoURL": "https://biteth.org", + "infoURL": "https://bitcoinevm.org", "shortName": "Bitcoin", "chainId": 8086, "networkId": 8086, diff --git a/_data/chains/eip155-8087.json b/_data/chains/eip155-8087.json index 4875a817d9ce..513058b30918 100644 --- a/_data/chains/eip155-8087.json +++ b/_data/chains/eip155-8087.json @@ -1,6 +1,7 @@ { "name": "E-Dollar", "chain": "USD", + "icon": "edollar", "rpc": ["https://rpc.e-dollar.org"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-808813.json b/_data/chains/eip155-808813.json new file mode 100644 index 000000000000..a75166ea4203 --- /dev/null +++ b/_data/chains/eip155-808813.json @@ -0,0 +1,37 @@ +{ + "name": "BOB Sepolia", + "chain": "ETH", + "rpc": [ + "https://bob-sepolia.rpc.gobob.xyz", + "wss://bob-sepolia.rpc.gobob.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://gobob.xyz", + "shortName": "bob-sepolia", + "chainId": 808813, + "networkId": 808813, + "icon": "bob", + "explorers": [ + { + "name": "bobscout", + "url": "https://bob-sepolia.explorer.gobob.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "status": "active", + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bob-sepolia.gobob.xyz/" + } + ] + } +} diff --git a/_data/chains/eip155-80931.json b/_data/chains/eip155-80931.json new file mode 100644 index 000000000000..b462e885f7e5 --- /dev/null +++ b/_data/chains/eip155-80931.json @@ -0,0 +1,24 @@ +{ + "name": "Forta Chain", + "chain": "Forta Chain", + "rpc": ["https://rpc-forta-chain-8gj1qndmfc.t.conduit.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "FORT", + "symbol": "FORT", + "decimals": 18 + }, + "infoURL": "https://www.forta.org/", + "shortName": "forta", + "chainId": 80931, + "networkId": 80931, + "icon": "forta-chain", + "explorers": [ + { + "name": "Forta Chain Explorer", + "url": "https://explorer.forta.org", + "icon": "forta-chain", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8099.json b/_data/chains/eip155-8099.json new file mode 100644 index 000000000000..513281cbc3fb --- /dev/null +++ b/_data/chains/eip155-8099.json @@ -0,0 +1,17 @@ +{ + "name": "Bharat Blockchain Network Mainnet", + "chain": "BBN", + "rpc": ["https://bbnrpc.mainnet.bharatblockchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "BBN", + "symbol": "BBN", + "decimals": 18 + }, + "features": [], + "infoURL": "https://bharatblockchain.io/", + "shortName": "bbn", + "chainId": 8099, + "networkId": 8099, + "explorers": [] +} diff --git a/_data/chains/eip155-81.json b/_data/chains/eip155-81.json index b89f28ab406c..a54dcb52d030 100644 --- a/_data/chains/eip155-81.json +++ b/_data/chains/eip155-81.json @@ -3,7 +3,8 @@ "chain": "JOC", "rpc": [ "https://rpc-1.japanopenchain.org:8545", - "https://rpc-2.japanopenchain.org:8545" + "https://rpc-2.japanopenchain.org:8545", + "https://rpc-3.japanopenchain.org" ], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-8108.json b/_data/chains/eip155-8108.json new file mode 100644 index 000000000000..83a31c638b8a --- /dev/null +++ b/_data/chains/eip155-8108.json @@ -0,0 +1,20 @@ +{ + "name": "ZenChain", + "chain": "ZTC", + "icon": "zenchain", + "rpc": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "ZTC", + "symbol": "ZTC", + "decimals": 18 + }, + "infoURL": "https://zenchain.io", + "shortName": "zen", + "chainId": 8108, + "networkId": 8108, + "slip44": 60, + "explorers": [], + "status": "incubating" +} diff --git a/_data/chains/eip155-8118.json b/_data/chains/eip155-8118.json new file mode 100644 index 000000000000..3c0f78cf7c08 --- /dev/null +++ b/_data/chains/eip155-8118.json @@ -0,0 +1,23 @@ +{ + "name": "Shardeum", + "chain": "Shardeum", + "icon": "shardeum", + "rpc": ["https://api.shardeum.org/"], + "faucets": [], + "nativeCurrency": { + "name": "Shardeum", + "symbol": "SHM", + "decimals": 18 + }, + "infoURL": "https://docs.shardeum.org/", + "shortName": "Shardeum", + "chainId": 8118, + "networkId": 8118, + "explorers": [ + { + "name": "Shardeum Explorer", + "url": "https://explorer.shardeum.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-812397.json b/_data/chains/eip155-812397.json new file mode 100644 index 000000000000..523ccc9d708a --- /dev/null +++ b/_data/chains/eip155-812397.json @@ -0,0 +1,27 @@ +{ + "name": "SG Verse Mainnet", + "chain": "SG Verse", + "icon": "sg_verse", + "rpc": ["https://rpc.sgverse.net/"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "", + "shortName": "SGV", + "chainId": 812397, + "networkId": 812397, + "explorers": [ + { + "name": "SG Verse Explorer", + "url": "https://explorer.sgverse.net", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } +} diff --git a/_data/chains/eip155-814.json b/_data/chains/eip155-814.json index 397d8d6fe7b3..21eee8c1dec3 100644 --- a/_data/chains/eip155-814.json +++ b/_data/chains/eip155-814.json @@ -2,7 +2,10 @@ "name": "Firechain zkEVM", "title": "Firechain zkEVM", "chain": "Firechain", - "rpc": ["https://rpc-zkevm.thefirechain.com"], + "rpc": [ + "https://rpc-zkevm.thefirechain.com", + "https://rpc-zkevm.firestation.io" + ], "faucets": [], "nativeCurrency": { "name": "Ether", @@ -13,7 +16,7 @@ "shortName": "firechan-zkEVM", "chainId": 814, "networkId": 814, - "icon": "firechain", + "icon": "ethereum", "explorers": [], "parent": { "type": "L2", diff --git a/_data/chains/eip155-81457.json b/_data/chains/eip155-81457.json index 5ee9c452c850..2fc13ae05a7b 100644 --- a/_data/chains/eip155-81457.json +++ b/_data/chains/eip155-81457.json @@ -7,7 +7,9 @@ "https://rpc.ankr.com/blast", "https://blast.din.dev/rpc", "https://blastl2-mainnet.public.blastapi.io", - "https://blast.blockpi.network/v1/rpc/public" + "https://blast.blockpi.network/v1/rpc/public", + "https://blast-rpc.publicnode.com", + "wss://blast-rpc.publicnode.com" ], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-820.json b/_data/chains/eip155-820.json index 18f5406ff97b..132f23004246 100644 --- a/_data/chains/eip155-820.json +++ b/_data/chains/eip155-820.json @@ -1,16 +1,25 @@ { "name": "Callisto Mainnet", "chain": "CLO", - "rpc": ["https://rpc.callisto.network/"], - "faucets": [], + "icon": "callistonetwork", + "rpc": ["https://rpc.callistodao.org"], + "faucets": ["https://faucet.callistodao.org"], "nativeCurrency": { "name": "Callisto", "symbol": "CLO", "decimals": 18 }, - "infoURL": "https://callisto.network", + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://callistodao.org", "shortName": "clo", "chainId": 820, "networkId": 1, - "slip44": 820 + "slip44": 820, + "explorers": [ + { + "name": "blockscout-callisto-network", + "url": "https://explorer.callistodao.org", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-820522.json b/_data/chains/eip155-820522.json new file mode 100644 index 000000000000..2aabdad6be9f --- /dev/null +++ b/_data/chains/eip155-820522.json @@ -0,0 +1,24 @@ +{ + "name": "TSC Testnet", + "chain": "Trust Smart Chain Testnet", + "rpc": ["https://testnet.tscscan.io/testrpc"], + "faucets": [], + "nativeCurrency": { + "name": "TAS", + "symbol": "tTAS", + "decimals": 18 + }, + "infoURL": "https://www.trias.one", + "shortName": "tTSC", + "icon": "netx", + "chainId": 820522, + "networkId": 820025, + "explorers": [ + { + "name": "tscscan", + "url": "https://testnet.tscscan.io", + "icon": "netxscan", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-8217.json b/_data/chains/eip155-8217.json index 85b52c4c5555..2330dfae7e1d 100644 --- a/_data/chains/eip155-8217.json +++ b/_data/chains/eip155-8217.json @@ -1,27 +1,27 @@ { - "name": "Klaytn Mainnet Cypress", - "chain": "KLAY", - "rpc": ["https://public-en-cypress.klaytn.net"], + "name": "Kaia Mainnet", + "chain": "KAIA", + "rpc": ["https://public-en.node.kaia.io"], "faucets": [], "nativeCurrency": { - "name": "KLAY", - "symbol": "KLAY", + "name": "KAIA", + "symbol": "KAIA", "decimals": 18 }, - "infoURL": "https://klaytn.foundation", - "shortName": "Cypress", + "infoURL": "https://kaia.io", + "shortName": "kaia-mainnet", "chainId": 8217, "networkId": 8217, "slip44": 8217, "explorers": [ { - "name": "Klaytnscope", - "url": "https://scope.klaytn.com", + "name": "Kaiascope", + "url": "https://kaiascope.com", "standard": "EIP3091" }, { - "name": "Klaytnfinder", - "url": "https://klaytnfinder.io", + "name": "Kaiascan", + "url": "https://kaiascan.io", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-8227.json b/_data/chains/eip155-8227.json new file mode 100644 index 000000000000..23f0eae39886 --- /dev/null +++ b/_data/chains/eip155-8227.json @@ -0,0 +1,27 @@ +{ + "name": "Space Subnet", + "chain": "SPACE", + "rpc": ["https://subnets.avax.network/space/mainnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "FUEL", + "symbol": "FUEL", + "decimals": 18 + }, + "infoURL": "https://otherworld.network", + "shortName": "space", + "chainId": 8227, + "networkId": 8227, + "explorers": [ + { + "name": "SPACE Explorer", + "url": "https://subnets.avax.network/space", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-824.json b/_data/chains/eip155-824.json new file mode 100644 index 000000000000..1dcc77f12100 --- /dev/null +++ b/_data/chains/eip155-824.json @@ -0,0 +1,23 @@ +{ + "name": "Daily Network Mainnet", + "chain": "Daily Network", + "icon": "daily", + "rpc": ["https://rpc.mainnet.dailycrypto.net"], + "faucets": [], + "nativeCurrency": { + "name": "Daily", + "symbol": "DLY", + "decimals": 18 + }, + "infoURL": "https://dailycrypto.net", + "shortName": "dly", + "chainId": 824, + "networkId": 824, + "explorers": [ + { + "name": "Daily Mainnet Explorer", + "url": "https://explorer.mainnet.dailycrypto.net", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-825.json b/_data/chains/eip155-825.json new file mode 100644 index 000000000000..b5ddacc5f65b --- /dev/null +++ b/_data/chains/eip155-825.json @@ -0,0 +1,23 @@ +{ + "name": "Daily Network Testnet", + "chain": "Daily Network", + "icon": "daily", + "rpc": ["https://rpc.testnet.dailycrypto.net"], + "faucets": [], + "nativeCurrency": { + "name": "Daily", + "symbol": "DLY", + "decimals": 18 + }, + "infoURL": "https://dailycrypto.net", + "shortName": "tdly", + "chainId": 825, + "networkId": 825, + "explorers": [ + { + "name": "Daily Testnet Explorer", + "url": "https://explorer.testnet.dailycrypto.net", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-82614.json b/_data/chains/eip155-82614.json new file mode 100644 index 000000000000..bb6bd34c2b8d --- /dev/null +++ b/_data/chains/eip155-82614.json @@ -0,0 +1,31 @@ +{ + "name": "VEMP Horizon", + "chain": "vemp-horizon", + "rpc": ["https://vemp-horizon.calderachain.xyz/http"], + "faucets": [], + "nativeCurrency": { + "name": "VEMP", + "symbol": "VEMP", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.vemp.xyz/", + "shortName": "vemp-horizon", + "chainId": 82614, + "networkId": 82614, + "icon": "vemp-horizon", + "explorers": [ + { + "name": "VEMP Horizon Caldera Explorer", + "url": "https://vemp-horizon.calderaexplorer.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-83144.json b/_data/chains/eip155-83144.json new file mode 100644 index 000000000000..cadf027292b1 --- /dev/null +++ b/_data/chains/eip155-83144.json @@ -0,0 +1,26 @@ +{ + "name": "Xprotocol Testnet", + "chainId": 83144, + "shortName": "xprotocoltestnet", + "chain": "Xprotocol Testnet", + "networkId": 83144, + "nativeCurrency": { + "name": "KICK Testnet Token", + "symbol": "KICK", + "decimals": 18 + }, + "rpc": ["https://rpc.testnet.xprotocol.org"], + "faucets": ["https://xprotocol.org/faucets"], + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.testnet.xprotocol.org", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-84532" + }, + "infoURL": "https://xprotocol.org/" +} diff --git a/_data/chains/eip155-83278.json b/_data/chains/eip155-83278.json new file mode 100644 index 000000000000..51d64c5b6970 --- /dev/null +++ b/_data/chains/eip155-83278.json @@ -0,0 +1,17 @@ +{ + "name": "Esa", + "chain": "Esa", + "rpc": ["http://65.108.151.70:8545"], + "faucets": [], + "nativeCurrency": { + "name": "Esa", + "symbol": "Esa", + "decimals": 18 + }, + "infoURL": "https://esculap.us", + "shortName": "Esa", + "chainId": 83278, + "networkId": 83278, + "icon": "EsaCoins", + "explorers": [] +} diff --git a/_data/chains/eip155-8333.json b/_data/chains/eip155-8333.json new file mode 100644 index 000000000000..19cc48131b1b --- /dev/null +++ b/_data/chains/eip155-8333.json @@ -0,0 +1,23 @@ +{ + "name": "B3", + "chain": "B3", + "icon": "b3", + "rpc": ["https://mainnet-rpc.b3.fun"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://b3.fun", + "shortName": "b3", + "chainId": 8333, + "networkId": 8333, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.b3.fun", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8386.json b/_data/chains/eip155-8386.json new file mode 100644 index 000000000000..9ae78dd65f4d --- /dev/null +++ b/_data/chains/eip155-8386.json @@ -0,0 +1,20 @@ +{ + "name": "XProtocol", + "chain": "XPROTOCOL", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Kick", + "symbol": "KICK", + "decimals": 18 + }, + "shortName": "xprotocol", + "chainId": 8386, + "networkId": 8386, + "status": "incubating", + "parent": { + "type": "L2", + "chain": "eip155-8453" + }, + "infoURL": "https://xprotocol.org/" +} diff --git a/_data/chains/eip155-83868.json b/_data/chains/eip155-83868.json new file mode 100644 index 000000000000..d36fb2e5e522 --- /dev/null +++ b/_data/chains/eip155-83868.json @@ -0,0 +1,21 @@ +{ + "name": "Xprotocol Sepolia", + "chainId": 83868, + "shortName": "xprotocolsepolia", + "chain": "Xprotocol Sepolia", + "networkId": 83868, + "nativeCurrency": { + "name": "KICK Testnet Token", + "symbol": "KICK", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "explorers": [], + "status": "incubating", + "parent": { + "type": "L2", + "chain": "eip155-84532" + }, + "infoURL": "https://xprotocol.org/" +} diff --git a/_data/chains/eip155-83872.json b/_data/chains/eip155-83872.json index a09be0410af6..a073268c671a 100644 --- a/_data/chains/eip155-83872.json +++ b/_data/chains/eip155-83872.json @@ -1,11 +1,12 @@ { "name": "ZEDXION", "chain": "ZEDXION", + "icon": "zedx", "rpc": ["https://mainnet-rpc.zedscan.net"], "faucets": [], "nativeCurrency": { "name": "Zedxion", - "symbol": "zedx", + "symbol": "ZEDX", "decimals": 9 }, "infoURL": "https://docs.zedscan.net", diff --git a/_data/chains/eip155-839999.json b/_data/chains/eip155-839999.json new file mode 100644 index 000000000000..796dbcc0f911 --- /dev/null +++ b/_data/chains/eip155-839999.json @@ -0,0 +1,28 @@ +{ + "name": "exSat Testnet", + "chain": "exSat", + "icon": "exsat", + "rpc": ["https://evm-tst3.exsat.network"], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://exsat.network/", + "shortName": "txsat", + "chainId": 839999, + "networkId": 839999, + "explorers": [ + { + "name": "exSat Testnet Explorer", + "url": "https://scan-testnet.exsat.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "" }] + } +} diff --git a/_data/chains/eip155-840000.json b/_data/chains/eip155-840000.json new file mode 100644 index 000000000000..24fb9175dd89 --- /dev/null +++ b/_data/chains/eip155-840000.json @@ -0,0 +1,22 @@ +{ + "name": "RUNEVM Testnet", + "chain": "RuneVM", + "rpc": ["https://rpc.runevm.io/"], + "faucets": ["https://faucet.runevm.io/"], + "nativeCurrency": { + "name": "Test Bitcoin", + "symbol": "tBTC", + "decimals": 8 + }, + "infoURL": "", + "shortName": "runevm-test", + "chainId": 840000, + "networkId": 840000, + "explorers": [ + { + "name": "Tracehawk", + "url": "https://explorer.runevm.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-8408.json b/_data/chains/eip155-8408.json new file mode 100644 index 000000000000..96d7c15be18d --- /dev/null +++ b/_data/chains/eip155-8408.json @@ -0,0 +1,29 @@ +{ + "name": "ZenChain Testnet", + "chain": "ZTC", + "icon": "zenchain", + "rpc": [ + "https://zenchain-testnet.api.onfinality.io/public", + "wss://zenchain-testnet.api.onfinality.io/public-ws" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://facuet.zenchain.io"], + "nativeCurrency": { + "name": "ZTC", + "symbol": "ZTC", + "decimals": 18 + }, + "infoURL": "https://zenchain.io", + "shortName": "zentest", + "chainId": 8408, + "networkId": 8408, + "slip44": 60, + "explorers": [ + { + "name": "zentrace", + "url": "https://zentrace.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-841.json b/_data/chains/eip155-841.json index a877056f9e71..ed4bdc5ac7be 100644 --- a/_data/chains/eip155-841.json +++ b/_data/chains/eip155-841.json @@ -1,8 +1,8 @@ { "name": "Taraxa Mainnet", - "chain": "Tara", + "chain": "TARA", "icon": "taraxa", - "rpc": ["https://rpc.mainnet.taraxa.io/"], + "rpc": ["https://rpc.mainnet.taraxa.io/", "https://ws.mainnet.taraxa.io"], "faucets": [], "nativeCurrency": { "name": "Tara", @@ -13,11 +13,19 @@ "shortName": "tara", "chainId": 841, "networkId": 841, + "slip44": 726, "explorers": [ + { + "name": "Tara.to Explorer", + "url": "https://tara.to", + "standard": "EIP3091", + "icon": "blockscout" + }, { "name": "Taraxa Explorer", "url": "https://explorer.mainnet.taraxa.io", - "standard": "none" + "standard": "none", + "icon": "taraxa" } ] } diff --git a/_data/chains/eip155-842.json b/_data/chains/eip155-842.json index 5f9d13b35210..3f6d03f6ec79 100644 --- a/_data/chains/eip155-842.json +++ b/_data/chains/eip155-842.json @@ -1,9 +1,9 @@ { "name": "Taraxa Testnet", - "chain": "Tara", + "chain": "TARA", "icon": "taraxa", - "rpc": ["https://rpc.testnet.taraxa.io/"], - "faucets": [], + "rpc": ["https://rpc.testnet.taraxa.io/", "https://ws.testnet.taraxa.io"], + "faucets": ["https://explorer.testnet.taraxa.io/faucet"], "nativeCurrency": { "name": "Tara", "symbol": "TARA", @@ -15,6 +15,12 @@ "networkId": 842, "slip44": 1, "explorers": [ + { + "name": "Tara.to Explorer", + "url": "https://testnet.to", + "standard": "EIP3091", + "icon": "blockscout" + }, { "name": "Taraxa Explorer", "url": "https://explorer.testnet.taraxa.io", diff --git a/_data/chains/eip155-8428.json b/_data/chains/eip155-8428.json new file mode 100644 index 000000000000..58e76b58cf25 --- /dev/null +++ b/_data/chains/eip155-8428.json @@ -0,0 +1,24 @@ +{ + "name": "THAT Mainnet", + "chain": "THAT", + "rpc": ["https://api.thatchain.io", "https://api.thatchain.io/mainnet"], + "faucets": [], + "nativeCurrency": { + "name": "THAT", + "symbol": "THAT", + "decimals": 18 + }, + "infoURL": "https://that.website", + "shortName": "THAT", + "chainId": 8428, + "networkId": 8428, + "icon": "that", + "explorers": [ + { + "name": "THAT Explorer", + "url": "https://that.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8453.json b/_data/chains/eip155-8453.json index d2e14c9c59e7..a5c7866778f8 100644 --- a/_data/chains/eip155-8453.json +++ b/_data/chains/eip155-8453.json @@ -24,7 +24,7 @@ { "name": "basescan", "url": "https://basescan.org", - "standard": "none" + "standard": "EIP3091" }, { "name": "basescout", @@ -37,6 +37,11 @@ "url": "https://base.dex.guru", "icon": "dexguru", "standard": "EIP3091" + }, + { + "name": "Routescan", + "url": "https://base.superscan.network", + "standard": "EIP3091" } ], "status": "active" diff --git a/_data/chains/eip155-84532.json b/_data/chains/eip155-84532.json index a8314f7673be..3eb7f2b491e8 100644 --- a/_data/chains/eip155-84532.json +++ b/_data/chains/eip155-84532.json @@ -19,6 +19,11 @@ "slip44": 1, "icon": "baseTestnet", "explorers": [ + { + "name": "basescan-sepolia", + "url": "https://sepolia.basescan.org", + "standard": "EIP3091" + }, { "name": "basescout", "url": "https://base-sepolia.blockscout.com", diff --git a/_data/chains/eip155-84841.json b/_data/chains/eip155-84841.json new file mode 100644 index 000000000000..082124339ca0 --- /dev/null +++ b/_data/chains/eip155-84841.json @@ -0,0 +1,36 @@ +{ + "name": "O Chain", + "chain": "O", + "rpc": [ + "https://rpc.o.xyz", + "https://84841.rpc.thirdweb.com", + "wss://rpc.o.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "O.XYZ", + "symbol": "O", + "decimals": 18 + }, + "infoURL": "https://o.xyz", + "shortName": "O", + "chainId": 84841, + "networkId": 84841, + "slip44": 1, + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { "url": "https://bridge.o.xyz" }, + { "url": "https://superbridge.o.xyz" } + ] + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.o.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-852.json b/_data/chains/eip155-852.json new file mode 100644 index 000000000000..93556cde9b25 --- /dev/null +++ b/_data/chains/eip155-852.json @@ -0,0 +1,22 @@ +{ + "name": "HongKong Mainnet", + "chain": "HONGKONG", + "rpc": ["https://eth.jegotrip.net"], + "faucets": [], + "nativeCurrency": { + "name": "HongKong", + "symbol": "HK", + "decimals": 18 + }, + "infoURL": "https://www.cmi.chinamobile.com/", + "shortName": "HongKong", + "chainId": 852, + "networkId": 852, + "explorers": [ + { + "name": "HongKong Mainnet Explorer", + "url": "http://47.238.205.52", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-85321.json b/_data/chains/eip155-85321.json new file mode 100644 index 000000000000..932138f10a84 --- /dev/null +++ b/_data/chains/eip155-85321.json @@ -0,0 +1,22 @@ +{ + "name": "GDPR Testnet", + "chain": "GDPR", + "rpc": ["https://rpc.testnet.gdprchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "GDPR", + "symbol": "GDPR", + "decimals": 18 + }, + "infoURL": "https://explorer.testnet.gdprchain.com", + "shortName": "gdpr-testnet", + "chainId": 85321, + "networkId": 85321, + "explorers": [ + { + "name": "GDPR Testnet Explorer (Blockscout)", + "url": "https://explorer.testnet.gdprchain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8545.json b/_data/chains/eip155-8545.json new file mode 100644 index 000000000000..0a3943c9ec05 --- /dev/null +++ b/_data/chains/eip155-8545.json @@ -0,0 +1,16 @@ +{ + "name": "Chakra Testnet", + "chain": "Chakra Testnet", + "rpc": ["https://rpcv1-dn-1.chakrachain.io/"], + "faucets": [], + "nativeCurrency": { + "name": "Chakra", + "symbol": "CKR", + "decimals": 18 + }, + "infoURL": "", + "shortName": "ChakraTN", + "chainId": 8545, + "networkId": 8545, + "explorers": [] +} diff --git a/_data/chains/eip155-855456.json b/_data/chains/eip155-855456.json index 0f94ad21aa29..b4765b60f04d 100644 --- a/_data/chains/eip155-855456.json +++ b/_data/chains/eip155-855456.json @@ -2,8 +2,8 @@ "name": "Dodao", "chain": "EVMCC", "rpc": [ - "https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network", - "wss://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network" + "https://fraa-flashbox-4643-rpc.a.stagenet.tanssi.network", + "wss://fraa-flashbox-4643-rpc.a.stagenet.tanssi.network" ], "faucets": [], "nativeCurrency": { @@ -18,10 +18,16 @@ "icon": "dodao", "explorers": [ { - "name": "Dodao Explorer", - "url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network", + "name": "Dodao EVM Explorer", + "url": "https://evmexplorer.tanssi-chains.network/?rpcUrl=https://fraa-flashbox-4643-rpc.a.stagenet.tanssi.network", "icon": "dodao", - "standard": "EIP3091" + "standard": "none" + }, + { + "name": "Dodao Polkadot Explorer", + "url": "https://polkadot.js.org/apps/?rpc=wss://fraa-flashbox-4643-rpc.a.stagenet.tanssi.network#/explorer", + "icon": "dodao", + "standard": "none" } ] } diff --git a/_data/chains/eip155-8569.json b/_data/chains/eip155-8569.json new file mode 100644 index 000000000000..5525f6e2f1e5 --- /dev/null +++ b/_data/chains/eip155-8569.json @@ -0,0 +1,17 @@ +{ + "name": "New Reality Blockchain", + "chain": "NEWRL", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "NewReal", + "symbol": "NEWRL", + "decimals": 18 + }, + "features": [], + "infoURL": "https://newreality.bond/", + "shortName": "newrl", + "chainId": 8569, + "networkId": 8569, + "status": "incubating" +} diff --git a/_data/chains/eip155-861.json b/_data/chains/eip155-861.json new file mode 100644 index 000000000000..615d48c80395 --- /dev/null +++ b/_data/chains/eip155-861.json @@ -0,0 +1,22 @@ +{ + "name": "Electra Network", + "chain": "Electra", + "rpc": ["https://rpc.electranetwork.tech"], + "faucets": [], + "nativeCurrency": { + "name": "Electra", + "symbol": "ELC", + "decimals": 18 + }, + "infoURL": "https://www.electranetwork.tech", + "shortName": "elc", + "chainId": 861, + "networkId": 861, + "explorers": [ + { + "name": "Electra Explorer", + "url": "https://scan.electranetwork.tech", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-863.json b/_data/chains/eip155-863.json new file mode 100644 index 000000000000..b26c5631963c --- /dev/null +++ b/_data/chains/eip155-863.json @@ -0,0 +1,15 @@ +{ + "name": "Radius Testnet", + "chain": "Radius", + "rpc": ["https://dev-secure.rpc.theradius.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Useless", + "symbol": "USLS", + "decimals": 18 + }, + "infoURL": "https://www.theradius.xyz/", + "shortName": "radius-testnet", + "chainId": 863, + "networkId": 863 +} diff --git a/_data/chains/eip155-869.json b/_data/chains/eip155-869.json new file mode 100644 index 000000000000..95496b8e734c --- /dev/null +++ b/_data/chains/eip155-869.json @@ -0,0 +1,24 @@ +{ + "name": "WorldMobileChain-Mainnet", + "chain": "WMC", + "icon": "worldmobilechain", + "rpc": ["https://worldmobilechain-mainnet.g.alchemy.com/public"], + "faucets": [], + "nativeCurrency": { + "name": "World Mobile Token", + "symbol": "WMTX", + "decimals": 18 + }, + "infoURL": "https://worldmobile.io/the-chain", + "shortName": "WMC", + "chainId": 869, + "networkId": 869, + "explorers": [ + { + "name": "World Mobile Chain Explorer", + "url": "https://explorer.worldmobile.io", + "standard": "none" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-8691942025.json b/_data/chains/eip155-8691942025.json new file mode 100644 index 000000000000..0ec2fd009672 --- /dev/null +++ b/_data/chains/eip155-8691942025.json @@ -0,0 +1,30 @@ +{ + "name": "ONFA Chain", + "title": "ONFA Chain", + "chain": "onfa", + "rpc": [ + "https://rpc.onfa.io", + "https://rpc.onfachain.com", + "wss://ws.onfa.io", + "wss://ws.onfachain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Onfa Coin", + "symbol": "OFC", + "decimals": 18 + }, + "infoURL": "https://onfa.io", + "shortName": "onfa", + "chainId": 8691942025, + "networkId": 8691942025, + "icon": "onfachain", + "explorers": [ + { + "name": "ONFA Scan", + "url": "https://onfascan.com", + "icon": "onfachain", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-871.json b/_data/chains/eip155-871.json new file mode 100644 index 000000000000..956be0caba17 --- /dev/null +++ b/_data/chains/eip155-871.json @@ -0,0 +1,22 @@ +{ + "name": "Electra Test Network", + "chain": "Electra", + "rpc": ["https://rpc.testnet.electranetwork.tech"], + "faucets": [], + "nativeCurrency": { + "name": "Test Electra", + "symbol": "TELC", + "decimals": 18 + }, + "infoURL": "https://scan.testnet.electranetwork.tech", + "shortName": "telc", + "chainId": 871, + "networkId": 871, + "explorers": [ + { + "name": "Electra Testnet Explorer", + "url": "https://scan.testnet.electranetwork.tech", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-8732.json b/_data/chains/eip155-8732.json new file mode 100644 index 000000000000..42ce2e6d5783 --- /dev/null +++ b/_data/chains/eip155-8732.json @@ -0,0 +1,23 @@ +{ + "name": "Bullions Smart Chain", + "chain": "Bullions", + "rpc": ["https://rpc.bullionsx.org"], + "faucets": [], + "nativeCurrency": { + "name": "Bullions", + "symbol": "BLN", + "decimals": 18 + }, + "infoURL": "https://www.bullionsx.io", + "shortName": "bln", + "chainId": 8732, + "networkId": 8732, + "slip44": 8732, + "explorers": [ + { + "name": "Bullionscan", + "url": "https://bullionscan.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8801.json b/_data/chains/eip155-8801.json new file mode 100644 index 000000000000..135d7058494e --- /dev/null +++ b/_data/chains/eip155-8801.json @@ -0,0 +1,27 @@ +{ + "name": "Okto Testnet", + "chain": "Okto", + "rpc": ["https://rpc.okto-testnet.zeeve.online"], + "faucets": ["https://faucet.okto-testnet.zeeve.online"], + "nativeCurrency": { + "name": "Okto", + "symbol": "OKTO", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "", + "shortName": "okto-testnet", + "chainId": 8801, + "networkId": 8801, + "explorers": [ + { + "name": "Okto Testnet Explorer", + "url": "https://explorer.okto-testnet.zeeve.online", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-881.json b/_data/chains/eip155-881.json new file mode 100644 index 000000000000..ae6b9eb5eb83 --- /dev/null +++ b/_data/chains/eip155-881.json @@ -0,0 +1,24 @@ +{ + "name": "Weber Governance Mainnet", + "chain": "PTT", + "rpc": ["https://chain.myweber.org"], + "faucets": [], + "nativeCurrency": { + "name": "PALLET", + "symbol": "PTT", + "decimals": 18 + }, + "infoURL": "https://myweber.org", + "shortName": "ptt", + "chainId": 881, + "networkId": 881, + "icon": "ptt", + "explorers": [ + { + "name": "Weber Governance Mainnet Explorer", + "url": "https://mainnet.myweber.org", + "icon": "ptt", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8811.json b/_data/chains/eip155-8811.json new file mode 100644 index 000000000000..a7d975c4249c --- /dev/null +++ b/_data/chains/eip155-8811.json @@ -0,0 +1,25 @@ +{ + "name": "Haven1", + "chain": "haven1", + "rpc": ["https://rpc.haven1.org"], + "faucets": [], + "nativeCurrency": { + "name": "Haven1", + "symbol": "H1", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.haven1.org", + "shortName": "haven1", + "chainId": 8811, + "networkId": 8811, + "icon": "haven1", + "explorers": [ + { + "name": "Haven1 Explorer", + "url": "https://explorer.haven1.org", + "icon": "haven1", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8822.json b/_data/chains/eip155-8822.json index a9d8bce585fa..5a2e5d4e8c83 100644 --- a/_data/chains/eip155-8822.json +++ b/_data/chains/eip155-8822.json @@ -4,7 +4,7 @@ "chain": "IOTA EVM", "rpc": [ "https://json-rpc.evm.iotaledger.net", - "https://ws.json-rpc.evm.iotaledger.net" + "wss://ws.json-rpc.evm.iotaledger.net" ], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-8844.json b/_data/chains/eip155-8844.json new file mode 100644 index 000000000000..5728742ec194 --- /dev/null +++ b/_data/chains/eip155-8844.json @@ -0,0 +1,25 @@ +{ + "name": "Hydra Chain Testnet", + "chain": "HYDRA", + "rpc": ["https://rpc-testnet.hydrachain.org"], + "faucets": ["https://testnetapp.hydrachain.org/faucet"], + "nativeCurrency": { + "name": "tHydra", + "symbol": "tHYDRA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://hydrachain.org", + "shortName": "THYDRA", + "chainId": 8844, + "networkId": 8844, + "icon": "hydra", + "explorers": [ + { + "name": "Hydra Chain Testnet explorer", + "url": "https://hydragon.hydrachain.org", + "icon": "hydra", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-88558801.json b/_data/chains/eip155-88558801.json new file mode 100644 index 000000000000..a56f9cacb86e --- /dev/null +++ b/_data/chains/eip155-88558801.json @@ -0,0 +1,25 @@ +{ + "name": "Backstop Testnet", + "chain": "backstopTestnet", + "icon": "backstop", + "rpc": ["https://testnet.rpc.backstop.technology"], + "faucets": [], + "nativeCurrency": { + "name": "Backstop Testnet 1", + "symbol": "ZBS", + "decimals": 18 + }, + "infoURL": "https://backstop.technology/testnet", + "shortName": "backstop-testnet", + "chainId": 88558801, + "networkId": 88558801, + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://testnet.bridge.backstop.technology" + } + ] + } +} diff --git a/_data/chains/eip155-88559.json b/_data/chains/eip155-88559.json index bdd47a4bba05..8d6745e82428 100644 --- a/_data/chains/eip155-88559.json +++ b/_data/chains/eip155-88559.json @@ -1,23 +1,23 @@ { - "name": "Inoai Network", + "name": "InoAi", "chain": "INOAI", "faucets": [], "rpc": ["https://inoai-network.com"], "nativeCurrency": { - "name": "Inoai", + "name": "InoAi", "symbol": "INO", "decimals": 18 }, - "infoURL": "https://inoai.info", - "shortName": "INOAI", + "infoURL": "https://docs.inoai.info/", + "shortName": "INO", "chainId": 88559, "networkId": 88559, "icon": "inoai", "explorers": [ { - "name": "inoai live", + "name": "inoai.live", "url": "https://inoai.live", - "standard": "none" + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-8869.json b/_data/chains/eip155-8869.json new file mode 100644 index 000000000000..29514db7697a --- /dev/null +++ b/_data/chains/eip155-8869.json @@ -0,0 +1,24 @@ +{ + "name": "Lif3 Chain", + "chain": "lif3chain", + "rpc": ["https://rpc.lif3.com"], + "features": [{ "name": "EIP155" }], + "faucets": [], + "nativeCurrency": { + "name": "LIF3", + "symbol": "LIF3", + "decimals": 18 + }, + "infoURL": "https://docs.lif3.com/", + "shortName": "lif3-mainnet", + "icon": "lif3", + "chainId": 8869, + "networkId": 8869, + "explorers": [ + { + "name": "lif3scout", + "url": "https://lif3scout.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-888.json b/_data/chains/eip155-888.json index 4e6d4d38187f..8ddd8978623c 100644 --- a/_data/chains/eip155-888.json +++ b/_data/chains/eip155-888.json @@ -12,5 +12,14 @@ "shortName": "wan", "chainId": 888, "networkId": 888, - "slip44": 5718350 + "slip44": 5718350, + "icon": "wanchain", + "explorers": [ + { + "name": "wanscan", + "icon": "wanchain", + "url": "https://wanscan.org", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-88800.json b/_data/chains/eip155-88800.json new file mode 100644 index 000000000000..5541a2060b44 --- /dev/null +++ b/_data/chains/eip155-88800.json @@ -0,0 +1,22 @@ +{ + "name": "ZKasino Mainnet", + "chain": "ZKasino", + "rpc": ["https://rpc.zkas.zeeve.net"], + "faucets": [], + "nativeCurrency": { + "name": "ZKAS", + "symbol": "ZKAS", + "decimals": 18 + }, + "infoURL": "", + "shortName": "ZKasino", + "chainId": 88800, + "networkId": 88800, + "explorers": [ + { + "name": "Tracehawk", + "url": "https://explorer.zkas.zeeve.net", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-88811.json b/_data/chains/eip155-88811.json new file mode 100644 index 000000000000..86f7ada132bb --- /dev/null +++ b/_data/chains/eip155-88811.json @@ -0,0 +1,18 @@ +{ + "name": "Unit Zero Mainnet", + "chain": "Unit Zero", + "icon": "unitzero", + "rpc": ["https://rpc.unit0.dev"], + "faucets": [], + "nativeCurrency": { + "name": "UNIT0", + "symbol": "UNIT0", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://units.network", + "shortName": "unit0-mainnet", + "chainId": 88811, + "networkId": 88811, + "explorers": [] +} diff --git a/_data/chains/eip155-88817.json b/_data/chains/eip155-88817.json index 4a89f4f76167..d08fca277c34 100644 --- a/_data/chains/eip155-88817.json +++ b/_data/chains/eip155-88817.json @@ -1,8 +1,9 @@ { "name": "Unit Zero Testnet", "chain": "Unit Zero", + "icon": "unitzero", "rpc": ["https://rpc-testnet.unit0.dev"], - "faucets": [], + "faucets": ["https://faucet-testnet.unit0.dev"], "nativeCurrency": { "name": "UNIT0", "symbol": "UNIT0", diff --git a/_data/chains/eip155-88819.json b/_data/chains/eip155-88819.json index 3c388924e0bb..581bb68a3c17 100644 --- a/_data/chains/eip155-88819.json +++ b/_data/chains/eip155-88819.json @@ -1,6 +1,7 @@ { "name": "Unit Zero Stagenet", "chain": "Unit Zero", + "icon": "unitzero", "rpc": ["https://rpc-stagenet.unit0.dev"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-8886.json b/_data/chains/eip155-8886.json new file mode 100644 index 000000000000..b5b513ed189c --- /dev/null +++ b/_data/chains/eip155-8886.json @@ -0,0 +1,28 @@ +{ + "name": "Avenium Testnet", + "chain": "AVE", + "rpc": [ + "https://eu-testnet.avenium.io/", + "https://connect-testnet.avenium.io" + ], + "faucets": ["https://faucet-testnet.avenium.io"], + "nativeCurrency": { + "name": "Ave Native Token", + "symbol": "tAVE", + "decimals": 18 + }, + "infoURL": "https://avenium.io", + "shortName": "tave", + "chainId": 8886, + "networkId": 8886, + "icon": "avenium", + "status": "incubating", + "explorers": [ + { + "name": "Avenium Explorer Testnet", + "icon": "avenium", + "url": "https://testnet.avescan.net", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-88866.json b/_data/chains/eip155-88866.json new file mode 100644 index 000000000000..75f28c282104 --- /dev/null +++ b/_data/chains/eip155-88866.json @@ -0,0 +1,25 @@ +{ + "name": "Matr1x Testnet", + "title": "Matr1x Testnet", + "chain": "Matr1x", + "rpc": ["https://testnet-rpc.m1chain.io"], + "faucets": [], + "nativeCurrency": { + "name": "MAX", + "symbol": "MAX", + "decimals": 18 + }, + "infoURL": "https://matr1x.io", + "shortName": "Matr1x-Testnet", + "chainId": 88866, + "networkId": 88866, + "icon": "matr1x", + "explorers": [ + { + "name": "matr1x testnet", + "url": "https://testnet-scan.m1chain.io", + "icon": "matr1x", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-88899.json b/_data/chains/eip155-88899.json new file mode 100644 index 000000000000..a617dd6e2cdf --- /dev/null +++ b/_data/chains/eip155-88899.json @@ -0,0 +1,24 @@ +{ + "name": "Unite", + "chain": "UNITE", + "rpc": ["https://unite-mainnet.g.alchemy.com/public"], + "faucets": [], + "nativeCurrency": { + "name": "Unite", + "symbol": "UNITE", + "decimals": 18 + }, + "infoURL": "https://unite.io", + "shortName": "unite", + "chainId": 88899, + "networkId": 88899, + "status": "active", + "icon": "unite", + "explorers": [ + { + "name": "Unite Explorer", + "url": "https://unite-mainnet.explorer.alchemy.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-888991.json b/_data/chains/eip155-888991.json new file mode 100644 index 000000000000..9adbd381e934 --- /dev/null +++ b/_data/chains/eip155-888991.json @@ -0,0 +1,23 @@ +{ + "name": "Unite Testnet", + "chain": "UNITE", + "rpc": ["https://unite-testnet.g.alchemy.com/public"], + "faucets": [], + "nativeCurrency": { + "name": "Testnet Unite", + "symbol": "UNITE", + "decimals": 18 + }, + "infoURL": "https://unite.io", + "shortName": "unitetestnet", + "chainId": 888991, + "networkId": 888991, + "status": "active", + "explorers": [ + { + "name": "Unite Testnet Explorer", + "url": "https://unite-testnet.explorer.alchemy.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8899.json b/_data/chains/eip155-8899.json index 6d2203905fae..39f140d9c0a9 100644 --- a/_data/chains/eip155-8899.json +++ b/_data/chains/eip155-8899.json @@ -1,7 +1,7 @@ { "name": "JIBCHAIN L1", "chain": "JBC", - "rpc": ["https://rpc-l1.jibchain.net", "https://jib-rpc.inan.in.th"], + "rpc": ["https://rpc-l1.jibchain.net", "https://rpc-l1.inan.in.th"], "faucets": [], "icon": "jbc", "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], diff --git a/_data/chains/eip155-89346162.json b/_data/chains/eip155-89346162.json new file mode 100644 index 000000000000..3a3d115037b1 --- /dev/null +++ b/_data/chains/eip155-89346162.json @@ -0,0 +1,36 @@ +{ + "name": "Reya Cronos", + "title": "Reya Cronos", + "chain": "reya-cronos", + "rpc": [ + "https://rpc.reya-cronos.gelato.digital", + "wss://ws.reya-cronos.gelato.digital" + ], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/reya-cronos", + "faucets": [], + "shortName": "reya-cronos", + "chainId": 89346162, + "networkId": 89346162, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://reya-cronos.blockscout.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.gelato.network/bridge/reya-cronos" + } + ] + } +} diff --git a/_data/chains/eip155-898.json b/_data/chains/eip155-898.json index fedeaf71d970..1fff4c8195d4 100644 --- a/_data/chains/eip155-898.json +++ b/_data/chains/eip155-898.json @@ -4,8 +4,8 @@ "rpc": ["https://rpc-testnet.maxi.network"], "faucets": ["https://faucet.maxi.network"], "nativeCurrency": { - "name": "MAXICOIN", - "symbol": "MAXI", + "name": "MAXI GAS", + "symbol": "MGAS", "decimals": 18 }, "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], diff --git a/_data/chains/eip155-899.json b/_data/chains/eip155-899.json new file mode 100644 index 000000000000..c2e50e413d94 --- /dev/null +++ b/_data/chains/eip155-899.json @@ -0,0 +1,24 @@ +{ + "name": "MAXI Chain Mainnet", + "chain": "MAXI", + "rpc": ["https://rpc.maxi.network"], + "faucets": [], + "nativeCurrency": { + "name": "MAXI GAS", + "symbol": "MGAS", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://maxi.network", + "shortName": "maxi-mainnet", + "chainId": 899, + "networkId": 899, + "icon": "maxi", + "explorers": [ + { + "name": "Maxi Chain Mainnet Explorer", + "url": "https://mainnet.maxi.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9000.json b/_data/chains/eip155-9000.json index 4905b5d56383..f76747f74204 100644 --- a/_data/chains/eip155-9000.json +++ b/_data/chains/eip155-9000.json @@ -1,7 +1,12 @@ { "name": "Evmos Testnet", "chain": "Evmos", - "rpc": ["https://evmos-testnet.lava.build", "https://eth.bd.evmos.dev:8545"], + "rpc": [ + "https://evmos-testnet.lava.build", + "https://eth.bd.evmos.dev:8545", + "https://evmos-testnet-evm-rpc.publicnode.com", + "wss://evmos-testnet-evm-rpc.publicnode.com" + ], "faucets": ["https://faucet.evmos.dev"], "nativeCurrency": { "name": "test-Evmos", diff --git a/_data/chains/eip155-90001.json b/_data/chains/eip155-90001.json index 739868b5402d..bf6918b56921 100644 --- a/_data/chains/eip155-90001.json +++ b/_data/chains/eip155-90001.json @@ -1,16 +1,23 @@ { - "name": "F(x)Core Testnet Network", - "chain": "Fxcore", + "name": "Pundi AIFX Omnilayer Testnet", + "chain": "PUNDIAI", "rpc": ["https://testnet-fx-json-web3.functionx.io:8545"], "faucets": [], "nativeCurrency": { - "name": "Function X", - "symbol": "FX", + "name": "Pundi AIFX", + "symbol": "PUNDAI", "decimals": 18 }, - "infoURL": "https://functionx.io/", + "infoURL": "https://fx.pundi.ai/", "shortName": "dhobyghaut", "chainId": 90001, "networkId": 90001, - "icon": "fxcore" + "icon": "pundiai", + "explorers": [ + { + "name": "PundiScan Explorer", + "url": "https://testnet.pundiscan.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-90002.json b/_data/chains/eip155-90002.json new file mode 100644 index 000000000000..32f7f9bf083b --- /dev/null +++ b/_data/chains/eip155-90002.json @@ -0,0 +1,23 @@ +{ + "name": "UBIT SMARTCHAIN MAINNET", + "chain": "UBIT SMARTCHAIN", + "rpc": ["https://rpc.ubitscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "USC", + "symbol": "USC", + "decimals": 18 + }, + "infoURL": "https://ubitscan.io", + "shortName": "UBITSCAN", + "chainId": 90002, + "networkId": 90002, + "slip44": 108, + "explorers": [ + { + "name": "UBITSCAN", + "url": "https://ubitscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9001.json b/_data/chains/eip155-9001.json index eaa4df359b15..0d503ced0c05 100644 --- a/_data/chains/eip155-9001.json +++ b/_data/chains/eip155-9001.json @@ -4,8 +4,8 @@ "rpc": [ "https://evmos.lava.build", "wss://evmos.lava.build/websocket", - "https://evmos-evm.publicnode.com", - "wss://evmos-evm.publicnode.com" + "https://evmos-evm-rpc.publicnode.com", + "wss://evmos-evm-rpc.publicnode.com" ], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-9003.json b/_data/chains/eip155-9003.json new file mode 100644 index 000000000000..94b7d2ac7f4e --- /dev/null +++ b/_data/chains/eip155-9003.json @@ -0,0 +1,24 @@ +{ + "name": "Qubetics Alpha Testnet", + "chain": "Qubetics Alpha Testnet", + "rpc": ["https://alphatestnet-evm-rpc.qubetics.work/"], + "faucets": ["https://alphatestnet-explorer.qubetics.work/faucet"], + "nativeCurrency": { + "name": "Qubetics Testnet Token", + "symbol": "TICS", + "decimals": 18 + }, + "infoURL": "https://www.qubetics.com/", + "shortName": "QubeticsAlpha", + "chainId": 9003, + "networkId": 9003, + "icon": "qubetics", + "explorers": [ + { + "name": "Qubetics Alpha Testnet Explorer", + "url": "https://alphatestnet-explorer.qubetics.work/dashboard", + "standard": "none", + "icon": "qubetics" + } + ] +} diff --git a/_data/chains/eip155-9008.json b/_data/chains/eip155-9008.json index e02fb5f46f97..1b0960b9a95f 100644 --- a/_data/chains/eip155-9008.json +++ b/_data/chains/eip155-9008.json @@ -1,15 +1,15 @@ { - "name": "Shido Mainnet Block", + "name": "Shido Network", "chain": "Shido Mainnet", "rpc": [ - "https://rpc-nodes.shidoscan.com", - "wss://wss-nodes.shidoscan.com", - "https://rpc-delta-nodes.shidoscan.com", - "wss://wss-delta-nodes.shidoscan.com" + "https://shido-mainnet-archive-lb-nw5es9.zeeve.net/USjg7xqUmCZ4wCsqEOOE/rpc", + "wss://shido-mainnet-archive-lb-nw5es9.zeeve.net/USjg7xqUmCZ4wCsqEOOE/ws", + "https://evm.shidoscan.net", + "wss://wss.shidoscan.net" ], "faucets": [], "nativeCurrency": { - "name": "Shido Mainnet Token", + "name": "Shido", "symbol": "SHIDO", "decimals": 18 }, @@ -20,7 +20,7 @@ "icon": "shidoChain", "explorers": [ { - "name": "Shidoblock Mainnet Explorer", + "name": "Shidoscan", "url": "https://shidoscan.com", "standard": "none", "icon": "shidoChain" diff --git a/_data/chains/eip155-9029.json b/_data/chains/eip155-9029.json new file mode 100644 index 000000000000..3d286a1b8d67 --- /dev/null +++ b/_data/chains/eip155-9029.json @@ -0,0 +1,24 @@ +{ + "name": "Qubetics Testnet", + "chain": "Qubetics Testnet", + "rpc": ["https://rpc-testnet.qubetics.work/"], + "faucets": ["https://testnet.qubetics.work/faucet"], + "nativeCurrency": { + "name": "Qubetics Testnet Token", + "symbol": "TICS", + "decimals": 18 + }, + "infoURL": "https://www.qubetics.com/", + "shortName": "Qubetics", + "chainId": 9029, + "networkId": 9029, + "icon": "qubetics", + "explorers": [ + { + "name": "Qubetics Testnet Explorer", + "url": "https://testnet.qubetics.work", + "standard": "none", + "icon": "qubetics" + } + ] +} diff --git a/_data/chains/eip155-9069.json b/_data/chains/eip155-9069.json new file mode 100644 index 000000000000..8cfa42c4f894 --- /dev/null +++ b/_data/chains/eip155-9069.json @@ -0,0 +1,18 @@ +{ + "name": "Apex Fusion - Nexus Mainnet", + "chain": "Nexus Mainnet", + "rpc": ["https://rpc.nexus.mainnet.apexfusion.org/"], + "faucets": [], + "nativeCurrency": { + "name": "Apex Fusion Token", + "symbol": "AP3X", + "decimals": 18 + }, + "infoURL": "https://apexfusion.org/", + "features": [{ "name": "EIP155" }], + "shortName": "AP3X", + "chainId": 9069, + "networkId": 9069, + "icon": "apexfusion", + "explorers": [] +} diff --git a/_data/chains/eip155-9070.json b/_data/chains/eip155-9070.json new file mode 100644 index 000000000000..968cde01d879 --- /dev/null +++ b/_data/chains/eip155-9070.json @@ -0,0 +1,25 @@ +{ + "name": "Apex Fusion - Nexus testnet", + "chain": "Nexus testnet", + "rpc": ["https://rpc.nexus.testnet.apexfusion.org/"], + "faucets": [], + "nativeCurrency": { + "name": "Apex Fusion Token", + "symbol": "tAP3X", + "decimals": 18 + }, + "infoURL": "https://apexfusion.org/", + "features": [{ "name": "EIP155" }], + "shortName": "tAP3X", + "chainId": 9070, + "networkId": 9070, + "icon": "apexfusion", + "explorers": [ + { + "name": "apexfusion", + "url": "https://explorer.nexus.testnet.apexfusion.org", + "icon": "apexfusion", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9090.json b/_data/chains/eip155-9090.json new file mode 100644 index 000000000000..17e278f887e1 --- /dev/null +++ b/_data/chains/eip155-9090.json @@ -0,0 +1,23 @@ +{ + "name": "Inco Gentry Testnet", + "chain": "INCO", + "rpc": ["https://testnet.inco.org"], + "faucets": ["https://faucet.inco.org"], + "nativeCurrency": { + "name": "INCO", + "symbol": "INCO", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.inco.org", + "shortName": "inco-gentry", + "chainId": 9090, + "networkId": 9090, + "explorers": [ + { + "name": "Inco Gentry Testnet Explorer", + "url": "https://explorer.testnet.inco.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9091.json b/_data/chains/eip155-9091.json new file mode 100644 index 000000000000..ffe90ebd10e3 --- /dev/null +++ b/_data/chains/eip155-9091.json @@ -0,0 +1,27 @@ +{ + "name": "KPA Smart Chain Testnet", + "chain": "KSC", + "rpc": [ + "https://tkpa-rpc1.kpachain.com/", + "https://tkpa-rpc2.kpachain.com/", + "https://tkpa-rpc3.kpachain.com/", + "https://tkpa-rpc4.kpachain.com/", + "https://testnet-rpc1.kpascan.com/", + "https://testnet-rpc2.kpascan.com/", + "https://testnet-rpc3.kpascan.com/", + "https://testnet-rpc4.kpascan.com/" + ], + "faucets": ["https://mint.kpachain.com"], + "nativeCurrency": { + "name": "KPA Smart Chain Testnet", + "symbol": "tKPA", + "decimals": 18 + }, + "features": [], + "infoURL": "https://kpachain.com", + "shortName": "KPA", + "chainId": 9091, + "networkId": 9091, + "icon": "koppa", + "explorers": [] +} diff --git a/_data/chains/eip155-9108.json b/_data/chains/eip155-9108.json new file mode 100644 index 000000000000..5fb3f979b56f --- /dev/null +++ b/_data/chains/eip155-9108.json @@ -0,0 +1,23 @@ +{ + "name": "Destra Dubai Testnet", + "chain": "Destra", + "status": "active", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Sync", + "symbol": "SYNC", + "decimals": 18 + }, + "infoURL": "", + "shortName": "Destra", + "chainId": 9108, + "networkId": 9108, + "slip44": 1, + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-4", + "bridges": [] + } +} diff --git a/_data/chains/eip155-91111.json b/_data/chains/eip155-91111.json new file mode 100644 index 000000000000..1f39bf03bcf1 --- /dev/null +++ b/_data/chains/eip155-91111.json @@ -0,0 +1,31 @@ +{ + "name": "Henez Chain Mainnet", + "chain": "henez", + "rpc": ["https://henez.calderachain.xyz/http"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.henez.fi/", + "shortName": "henez", + "chainId": 91111, + "networkId": 91111, + "icon": "henez", + "explorers": [ + { + "name": "Henez Chain Mainnet Caldera Explorer", + "url": "https://henez.calderaexplorer.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-911867.json b/_data/chains/eip155-911867.json new file mode 100644 index 000000000000..39c6e8331589 --- /dev/null +++ b/_data/chains/eip155-911867.json @@ -0,0 +1,24 @@ +{ + "name": "Odyssey Testnet", + "chain": "ETH", + "rpc": ["https://odyssey.ithaca.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://ithaca.xyz", + "shortName": "odyssey-testnet", + "chainId": 911867, + "networkId": 911867, + "explorers": [ + { + "name": "odyssey explorer", + "url": "https://odyssey-explorer.ithaca.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-917.json b/_data/chains/eip155-917.json index 90da6a40c1bf..909fd844ca8d 100644 --- a/_data/chains/eip155-917.json +++ b/_data/chains/eip155-917.json @@ -1,14 +1,21 @@ { - "name": "Rinia Testnet", + "name": "Rinia", + "title": "Firechain Testnet Rinia", "chain": "FIRE", - "icon": "rinia", - "rpc": ["https://rinia-rpc1.thefirechain.com"], - "faucets": ["https://faucet.thefirechain.com"], + "rpc": [ + "https://rinia-rpc1.thefirechain.com", + "https://rpc-rinia.firestation.io" + ], + "faucets": [ + "https://faucet.thefirechain.com", + "https://faucet.firestation.io" + ], "nativeCurrency": { "name": "Firechain", "symbol": "FIRE", "decimals": 18 }, "infoURL": "https://thefirechain.com", "shortName": "tfire", "chainId": 917, "networkId": 917, + "icon": "rinia", "slip44": 1, "explorers": [ { diff --git a/_data/chains/eip155-918.json b/_data/chains/eip155-918.json new file mode 100644 index 000000000000..0b376185178c --- /dev/null +++ b/_data/chains/eip155-918.json @@ -0,0 +1,25 @@ +{ + "name": "SlerfChain Mainnet", + "title": "SlerfChain Mainnet", + "chain": "SLERF CHAIN", + "rpc": ["https://rpc.slerfchain.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "WSLERF", + "symbol": "WSLERF", + "decimals": 18 + }, + "infoURL": "https://slerfchain.xyz", + "shortName": "SlerfChain-Mainnet", + "chainId": 918, + "networkId": 918, + "icon": "slerf", + "explorers": [ + { + "name": "SlerfChain Scan", + "url": "https://scan.slerfchain.xyz", + "icon": "slerf", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-918273.json b/_data/chains/eip155-918273.json new file mode 100644 index 000000000000..3497c3ad1075 --- /dev/null +++ b/_data/chains/eip155-918273.json @@ -0,0 +1,18 @@ +{ + "name": "Owshen Mainnet", + "chain": "ETH", + "status": "active", + "icon": "owshen", + "rpc": ["https://rpc.owshen.io"], + "faucets": [], + "nativeCurrency": { + "name": "DIVE", + "symbol": "DIVE", + "decimals": 18 + }, + "infoURL": "https://owshen.io", + "shortName": "owshen-mainnet", + "chainId": 918273, + "networkId": 918273, + "explorers": [] +} diff --git a/_data/chains/eip155-919.json b/_data/chains/eip155-919.json index 3278d31ded54..afde3065d119 100644 --- a/_data/chains/eip155-919.json +++ b/_data/chains/eip155-919.json @@ -19,6 +19,11 @@ "name": "modescout", "url": "https://sepolia.explorer.mode.network", "standard": "none" + }, + { + "name": "Routesan", + "url": "https://testnet.modescan.io", + "standard": "none" } ], "parent": { diff --git a/_data/chains/eip155-920637907288165.json b/_data/chains/eip155-920637907288165.json new file mode 100644 index 000000000000..4e41200c21dd --- /dev/null +++ b/_data/chains/eip155-920637907288165.json @@ -0,0 +1,33 @@ +{ + "name": "Kakarot Starknet Sepolia", + "chain": "ETH", + "icon": "kakarot", + "rpc": ["https://sepolia-rpc.kakarot.org"], + "faucets": ["https://sepolia-faucet.kakarot.org/"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://kakarot.org", + "shortName": "kkrt-starknet-sepolia", + "chainId": 920637907288165, + "networkId": 920637907288165, + "explorers": [ + { + "name": "Kakarot Scan", + "url": "https://sepolia.kakarotscan.org", + "standard": "EIP3091" + }, + { + "name": "Kakarot Explorer", + "url": "https://sepolia-explorer.kakarot.org", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [] + } +} diff --git a/_data/chains/eip155-92278.json b/_data/chains/eip155-92278.json new file mode 100644 index 000000000000..703ff6268073 --- /dev/null +++ b/_data/chains/eip155-92278.json @@ -0,0 +1,24 @@ +{ + "name": "Miracle Chain", + "chain": "MIRACLE", + "rpc": ["https://rpc.miracleplay.io"], + "faucets": [], + "nativeCurrency": { + "name": "Miracle Play Token", + "symbol": "MPT", + "decimals": 18 + }, + "infoURL": "https://miracleplay.gg", + "shortName": "MIRACLE", + "chainId": 92278, + "networkId": 92278, + "icon": "miracle", + "explorers": [ + { + "name": "Miracle Chain Explorer", + "icon": "miracle", + "url": "https://explorer.miracleplay.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-9302.json b/_data/chains/eip155-9302.json new file mode 100644 index 000000000000..0390eaa24562 --- /dev/null +++ b/_data/chains/eip155-9302.json @@ -0,0 +1,22 @@ +{ + "name": "Galactica-Reticulum", + "chain": "Galactica Testnet", + "rpc": ["https://evm-rpc-http-reticulum.galactica.com/"], + "faucets": [], + "nativeCurrency": { + "name": "Galactica Reticulum", + "symbol": "GNET", + "decimals": 18 + }, + "infoURL": "https://galactica.com", + "shortName": "GNET", + "chainId": 9302, + "networkId": 9302, + "explorers": [ + { + "name": "Galactica-Reticulum Explorer", + "url": "https://explorer-reticulum.galactica.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9369.json b/_data/chains/eip155-9369.json new file mode 100644 index 000000000000..aaea696326c2 --- /dev/null +++ b/_data/chains/eip155-9369.json @@ -0,0 +1,31 @@ +{ + "name": "Z Chain", + "title": "Z Chain", + "chain": "Z", + "rpc": ["https://rpc.zchain.org"], + "faucets": [], + "features": [{ "name": "EIP155" }], + "nativeCurrency": { + "name": "Z", + "symbol": "Z", + "decimals": 18 + }, + "infoURL": "https://zero.tech", + "shortName": "z", + "chainId": 9369, + "networkId": 9369, + "icon": "z", + "explorers": [ + { + "name": "blockscout", + "url": "https://zscan.live", + "icon": "z", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "bridge.zchain.org" }] + } +} diff --git a/_data/chains/eip155-9372.json b/_data/chains/eip155-9372.json new file mode 100644 index 000000000000..64ae6015f33f --- /dev/null +++ b/_data/chains/eip155-9372.json @@ -0,0 +1,23 @@ +{ + "name": "Oasys Testnet", + "chain": "Oasys", + "icon": "oasys", + "rpc": ["https://rpc.testnet.oasys.games"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://oasys.games", + "shortName": "OAS_TEST", + "chainId": 9372, + "networkId": 9372, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.testnet.oasys.games", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-93747.json b/_data/chains/eip155-93747.json new file mode 100644 index 000000000000..8979e138f542 --- /dev/null +++ b/_data/chains/eip155-93747.json @@ -0,0 +1,22 @@ +{ + "name": "StratoVM Testnet", + "chain": "StratoVM", + "rpc": ["https://rpc.stratovm.io"], + "faucets": [], + "nativeCurrency": { + "name": "SVM", + "symbol": "SVM", + "decimals": 18 + }, + "infoURL": "https://www.stratovm.io/", + "shortName": "stratovm", + "chainId": 93747, + "networkId": 93747, + "explorers": [ + { + "name": "StratoVM Block Explorer", + "url": "https://explorer.stratovm.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-938.json b/_data/chains/eip155-938.json new file mode 100644 index 000000000000..d434568360b7 --- /dev/null +++ b/_data/chains/eip155-938.json @@ -0,0 +1,31 @@ +{ + "name": "Haust Mainnet", + "title": "Haust Mainnet", + "chain": "Haust", + "rpc": ["https://haust-network-rpc.eu-north-2.gateway.fm"], + "faucets": [], + "features": [{ "name": "EIP155" }], + "nativeCurrency": { + "name": "HAUST", + "symbol": "HAUST", + "decimals": 18 + }, + "infoURL": "https://haust.network/", + "shortName": "haust", + "chainId": 938, + "networkId": 938, + "icon": "haust", + "explorers": [ + { + "name": "blockscout", + "url": "https://haust-network-blockscout.eu-north-2.gateway.fm", + "icon": "haust", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://haust-network-bridge.eu-north-2.gateway.fm" }] + } +} diff --git a/_data/chains/eip155-945.json b/_data/chains/eip155-945.json new file mode 100644 index 000000000000..b666b2fbf95a --- /dev/null +++ b/_data/chains/eip155-945.json @@ -0,0 +1,25 @@ +{ + "name": "Subtensor EVM Testnet", + "chain": "Bittensor", + "rpc": ["https://test.chain.opentensor.ai"], + "faucets": [], + "nativeCurrency": { + "name": "testTAO", + "symbol": "TAO", + "decimals": 18 + }, + "infoURL": "https://bittensor.com/", + "shortName": "bittensor-evm-testnet", + "chainId": 945, + "networkId": 945, + "slip44": 1005, + "icon": "bittensor", + "explorers": [ + { + "name": "Subtensor EVM Explorer", + "url": "https://evm-testscan.dev.opentensor.ai", + "icon": "bittensor", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-94524.json b/_data/chains/eip155-94524.json new file mode 100644 index 000000000000..892e8ba0d8bc --- /dev/null +++ b/_data/chains/eip155-94524.json @@ -0,0 +1,22 @@ +{ + "name": "XCHAIN", + "chain": "XCHAIN", + "rpc": ["https://xchain-rpc.kuma.bid"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://kuma.bid", + "shortName": "xc", + "chainId": 94524, + "networkId": 94524, + "explorers": [ + { + "name": "XCHAIN Explorer", + "url": "https://xchain-explorer.kuma.bid", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9496.json b/_data/chains/eip155-9496.json new file mode 100644 index 000000000000..71d6af856b4d --- /dev/null +++ b/_data/chains/eip155-9496.json @@ -0,0 +1,23 @@ +{ + "name": "Load Alphanet", + "chain": "LOAD", + "rpc": ["https://alphanet.load.network"], + "faucets": ["https://load.network/faucet"], + "nativeCurrency": { + "name": "Testnet Load Token", + "symbol": "tLOAD", + "decimals": 18 + }, + "infoURL": "https://load.network", + "shortName": "tload", + "chainId": 9496, + "networkId": 9496, + "icon": "loadnetwork", + "explorers": [ + { + "name": "Load Network Explorer", + "url": "https://explorer.load.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-95432.json b/_data/chains/eip155-95432.json new file mode 100644 index 000000000000..35feb42d2978 --- /dev/null +++ b/_data/chains/eip155-95432.json @@ -0,0 +1,23 @@ +{ + "name": "SRICHAIN", + "chain": "SRICHAIN", + "rpc": ["https://rpc.sriscan.com/"], + "faucets": [], + "nativeCurrency": { + "name": "SRIX", + "symbol": "SRIX", + "decimals": 18 + }, + "infoURL": "https://sriscan.com", + "shortName": "sriscan", + "chainId": 95432, + "networkId": 95432, + "slip44": 108, + "explorers": [ + { + "name": "SRICHAIN", + "url": "https://sriscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-96.json b/_data/chains/eip155-96.json index b4599cec30e3..f1830b374632 100644 --- a/_data/chains/eip155-96.json +++ b/_data/chains/eip155-96.json @@ -1,24 +1,24 @@ { - "name": "Bitkub Chain", - "chain": "BKC", - "icon": "bkc", + "name": "KUB Mainnet", + "chain": "KUB", "rpc": ["https://rpc.bitkubchain.io", "wss://wss.bitkubchain.io"], "faucets": [], "nativeCurrency": { - "name": "Bitkub Coin", + "name": "KUB Coin", "symbol": "KUB", "decimals": 18 }, - "infoURL": "https://www.bitkubchain.com/", - "shortName": "bkc", + "infoURL": "https://www.kubchain.com/", + "shortName": "kub", "chainId": 96, "networkId": 96, + "icon": "kub", "explorers": [ { - "name": "Bitkub Chain Explorer", - "url": "https://bkcscan.com", + "name": "KUB Mainnet Explorer", + "url": "https://kubscan.com", "standard": "none", - "icon": "bkc" + "icon": "kub" } ], "redFlags": ["reusedChainId"] diff --git a/_data/chains/eip155-96368.json b/_data/chains/eip155-96368.json new file mode 100644 index 000000000000..6e900630b10e --- /dev/null +++ b/_data/chains/eip155-96368.json @@ -0,0 +1,28 @@ +{ + "name": "Lux Testnet", + "chain": "Lux", + "icon": "lux", + "rpc": ["https://api.lux-test.network"], + "faucets": ["https://faucet.lux-test.network"], + "nativeCurrency": { + "name": "tLux", + "symbol": "tLUX", + "decimals": 18 + }, + "infoURL": "https://lux.network", + "shortName": "tlux", + "chainId": 96368, + "networkId": 96368, + "explorers": [ + { + "name": "Lux Network Explorer", + "url": "https://explore.lux.network", + "standard": "EIP3091" + }, + { + "name": "Lux Network Explorer", + "url": "https://explore.lux-test.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-96369.json b/_data/chains/eip155-96369.json new file mode 100644 index 000000000000..64354e585985 --- /dev/null +++ b/_data/chains/eip155-96369.json @@ -0,0 +1,28 @@ +{ + "name": "Lux Mainnet", + "chain": "Lux", + "icon": "lux", + "rpc": ["https://api.lux.network"], + "faucets": ["https://faucet.lux-test.network"], + "nativeCurrency": { + "name": "Lux", + "symbol": "LUX", + "decimals": 18 + }, + "infoURL": "https://lux.network", + "shortName": "lux", + "chainId": 96369, + "networkId": 96369, + "explorers": [ + { + "name": "Lux Network Explorer", + "url": "https://explore.lux.network", + "standard": "EIP3091" + }, + { + "name": "Lux Network Explorer", + "url": "https://explore.lux-test.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-96370.json b/_data/chains/eip155-96370.json new file mode 100644 index 000000000000..59059128f2b3 --- /dev/null +++ b/_data/chains/eip155-96370.json @@ -0,0 +1,26 @@ +{ + "name": "Lumoz Chain Mainnet", + "chain": "ETH", + "rpc": ["https://rpc.lumoz.org", "https://rpc-hk.lumoz.org"], + "faucets": [], + "nativeCurrency": { + "name": "Lumoz Mainnet Token", + "symbol": "MOZ", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://lumoz.org", + "shortName": "Lumoz-Chain-Mainnet", + "chainId": 96370, + "networkId": 96370, + "slip44": 1, + "icon": "opside-new", + "explorers": [ + { + "name": "LumozMainnetInfo", + "url": "https://scan.lumoz.info", + "icon": "opside-new", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-96371.json b/_data/chains/eip155-96371.json new file mode 100644 index 000000000000..102ad891d97d --- /dev/null +++ b/_data/chains/eip155-96371.json @@ -0,0 +1,24 @@ +{ + "name": "Wonder Testnet", + "chain": "WNDR", + "rpc": ["https://rpc.testnet.wonderchain.org"], + "faucets": ["https://wonderchain.org/faucet"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://wonderchain.org", + "shortName": "wndr", + "chainId": 96371, + "networkId": 96371, + "icon": "wonder", + "explorers": [ + { + "name": "wonderexplorer", + "url": "https://explorer.testnet.wonderchain.org", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-964.json b/_data/chains/eip155-964.json new file mode 100644 index 000000000000..d22eb23c4c75 --- /dev/null +++ b/_data/chains/eip155-964.json @@ -0,0 +1,17 @@ +{ + "name": "Subtensor EVM", + "chain": "Bittensor", + "rpc": ["https://lite.chain.opentensor.ai"], + "faucets": [], + "nativeCurrency": { + "name": "TAO", + "symbol": "TAO", + "decimals": 18 + }, + "infoURL": "https://bittensor.com/", + "shortName": "bittensor-evm-mainnet", + "chainId": 964, + "networkId": 964, + "slip44": 1005, + "icon": "bittensor" +} diff --git a/_data/chains/eip155-96737205180.json b/_data/chains/eip155-96737205180.json new file mode 100644 index 000000000000..3d60918170a8 --- /dev/null +++ b/_data/chains/eip155-96737205180.json @@ -0,0 +1,25 @@ +{ + "name": "ALDChain Testnet", + "chain": "ALD", + "rpc": ["https://testnet-rpc.aldrickb.xyz"], + "faucets": ["https://faucet.aldrickb.xyz"], + "nativeCurrency": { + "name": "ALD Token", + "symbol": "ALD", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://aldrickb.com/projects", + "shortName": "ald", + "chainId": 96737205180, + "networkId": 96737205180, + "icon": "aldrickb", + "explorers": [ + { + "name": "ALDChain Testnet Explorer", + "url": "https://testnet-explorer.aldrickb.xyz", + "icon": "aldrickb", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9696.json b/_data/chains/eip155-9696.json new file mode 100644 index 000000000000..b2931eb29715 --- /dev/null +++ b/_data/chains/eip155-9696.json @@ -0,0 +1,25 @@ +{ + "name": "Rebus Mainnet", + "title": "Rebuschain Mainnet", + "chain": "ETH", + "rpc": ["https://apievml2.rebuschain.com/l2rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.rebuschain.com", + "shortName": "rebus", + "chainId": 9696, + "networkId": 9696, + "icon": "rebus", + "explorers": [ + { + "name": "Rebus EVM Explorer (Blockscout)", + "url": "https://evm.rebuschain.com", + "icon": "rebus", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-96969696.json b/_data/chains/eip155-96969696.json new file mode 100644 index 000000000000..1d16c7f6a981 --- /dev/null +++ b/_data/chains/eip155-96969696.json @@ -0,0 +1,27 @@ +{ + "name": " Privix Chain Testnet", + "chain": "PRIVIX", + "rpc": [ + "https://testnet-rpc.privixchain.xyz/", + "wss://testnet-rpc.privixchain.xyz/ws" + ], + "faucets": ["https://faucet.privixchain.xyz"], + "nativeCurrency": { + "name": "Privix Coin", + "symbol": "PRIVIX", + "decimals": 18 + }, + "infoURL": "https://privix.co/", + "shortName": "tpsc", + "chainId": 96969696, + "networkId": 96969696, + "icon": "privix", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.privixscan.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-97053.json b/_data/chains/eip155-97053.json new file mode 100644 index 000000000000..299b3ef7ca10 --- /dev/null +++ b/_data/chains/eip155-97053.json @@ -0,0 +1,23 @@ +{ + "name": "Tetron Testnet Smart Chain", + "chain": "Tetron Testnet", + "rpc": ["https://test-rpc.tscscan.org"], + "faucets": [], + "features": [{ "name": "EIP155" }], + "nativeCurrency": { + "name": "Tetron Testnet", + "symbol": "TSC", + "decimals": 18 + }, + "infoURL": "https://tetronchain.com/", + "shortName": "TetronTestnet", + "chainId": 97053, + "networkId": 97053, + "explorers": [ + { + "name": "Tetron Explorer", + "url": "https://testnet.tscscan.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-97055.json b/_data/chains/eip155-97055.json new file mode 100644 index 000000000000..5ca03bc9cb84 --- /dev/null +++ b/_data/chains/eip155-97055.json @@ -0,0 +1,23 @@ +{ + "name": "Tetron Smart Chain", + "chain": "Tetron Mainnet", + "rpc": ["https://rpc.tscscan.org"], + "faucets": [], + "features": [{ "name": "EIP155" }], + "nativeCurrency": { + "name": "Tetron Mainnet", + "symbol": "TSC", + "decimals": 18 + }, + "infoURL": "https://tetronchain.com/", + "shortName": "Tetron", + "chainId": 97055, + "networkId": 97055, + "explorers": [ + { + "name": "Tetron Smart ChainExplorer", + "url": "https://tscscan.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9728.json b/_data/chains/eip155-9728.json index acf67f631438..c1bdf11d12cf 100644 --- a/_data/chains/eip155-9728.json +++ b/_data/chains/eip155-9728.json @@ -29,7 +29,7 @@ ], "parent": { "type": "L2", - "chain": "eip155-5", + "chain": "eip155-28882", "bridges": [ { "url": "https://gateway.boba.network" diff --git a/_data/chains/eip155-973.json b/_data/chains/eip155-973.json new file mode 100644 index 000000000000..b149f0d71cb7 --- /dev/null +++ b/_data/chains/eip155-973.json @@ -0,0 +1,23 @@ +{ + "name": "Palm Smart Chain", + "title": "Palm Smart Chain", + "chain": "Palm", + "rpc": ["https://rpc.palmsmartchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "PALM", + "symbol": "PALM", + "decimals": 18 + }, + "infoURL": "https://palmsmartchain.io", + "shortName": "PalmChain", + "chainId": 973, + "networkId": 973, + "explorers": [ + { + "name": "Palm Smart Chain Explorer", + "url": "https://explorer.palmsmartchain.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-97435.json b/_data/chains/eip155-97435.json new file mode 100644 index 000000000000..0a026cb0bb8c --- /dev/null +++ b/_data/chains/eip155-97435.json @@ -0,0 +1,25 @@ +{ + "name": "SlingShot Testnet", + "chain": "SLING", + "rpc": ["https://rpc-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Sling Test", + "symbol": "SLINGT", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://slingshotdao.com", + "shortName": "sling", + "chainId": 97435, + "networkId": 97435, + "icon": "slingshot", + "explorers": [ + { + "name": "SlingShot Test Explorer", + "url": "https://explorer-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz", + "icon": "slingshot", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9745.json b/_data/chains/eip155-9745.json new file mode 100644 index 000000000000..f77217e732d6 --- /dev/null +++ b/_data/chains/eip155-9745.json @@ -0,0 +1,23 @@ +{ + "name": "Plasma Mainnet", + "chain": "Plasma", + "rpc": ["https://rpc.plasma.to"], + "faucets": [], + "nativeCurrency": { + "name": "Plasma", + "symbol": "XPL", + "decimals": 18 + }, + "infoURL": "https://plasma.to", + "shortName": "plasma", + "chainId": 9745, + "networkId": 9745, + "icon": "plasma", + "explorers": [ + { + "name": "Routescan", + "url": "https://plasmascan.to", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-97453.json b/_data/chains/eip155-97453.json new file mode 100644 index 000000000000..2902dc9fff23 --- /dev/null +++ b/_data/chains/eip155-97453.json @@ -0,0 +1,25 @@ +{ + "name": "Sidra Chain", + "chain": "SIDRA", + "icon": "sidrachain", + "rpc": ["https://node.sidrachain.com"], + "features": [{ "name": "EIP155" }], + "faucets": [], + "nativeCurrency": { + "name": "Sidra Digital Asset", + "symbol": "SDA", + "decimals": 18 + }, + "infoURL": "https://www.sidrachain.com", + "shortName": "sidra", + "chainId": 97453, + "networkId": 97453, + "explorers": [ + { + "name": "Sidra Chain Explorer", + "url": "https://ledger.sidrachain.com", + "icon": "sidrachain", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9746.json b/_data/chains/eip155-9746.json new file mode 100644 index 000000000000..0a6ac46bedba --- /dev/null +++ b/_data/chains/eip155-9746.json @@ -0,0 +1,23 @@ +{ + "name": "Plasma Testnet", + "chain": "Plasma", + "rpc": ["https://testnet-rpc.plasma.to"], + "faucets": [], + "nativeCurrency": { + "name": "Testnet Plasma", + "symbol": "XPL", + "decimals": 18 + }, + "infoURL": "https://plasma.to", + "shortName": "plasma-testnet", + "chainId": 9746, + "networkId": 9746, + "icon": "plasma", + "explorers": [ + { + "name": "Routescan", + "url": "https://testnet.plasmascan.to", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9747.json b/_data/chains/eip155-9747.json new file mode 100644 index 000000000000..21543b12f7cd --- /dev/null +++ b/_data/chains/eip155-9747.json @@ -0,0 +1,17 @@ +{ + "name": "Plasma Devnet", + "chain": "Plasma", + "rpc": ["https://devnet-rpc.plasma.to"], + "faucets": [], + "nativeCurrency": { + "name": "Devnet Plasma", + "symbol": "XPL", + "decimals": 18 + }, + "infoURL": "https://plasma.to", + "shortName": "plasma-devnet", + "chainId": 9747, + "networkId": 9747, + "icon": "plasma", + "explorers": [] +} diff --git a/_data/chains/eip155-97766.json b/_data/chains/eip155-97766.json new file mode 100644 index 000000000000..14316f107cc2 --- /dev/null +++ b/_data/chains/eip155-97766.json @@ -0,0 +1,23 @@ +{ + "name": "MetaBenz CHAIN", + "chain": "MetaBenz CHAIN", + "rpc": ["https://rpc.metabenzscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "MBC", + "symbol": "MBC", + "decimals": 18 + }, + "infoURL": "https://metabenzscan.com", + "shortName": "metabenzscan", + "chainId": 97766, + "networkId": 97766, + "slip44": 108, + "explorers": [ + { + "name": "MetaBenz CHAIN", + "url": "https://metabenzscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-978657.json b/_data/chains/eip155-978657.json new file mode 100644 index 000000000000..4055af968385 --- /dev/null +++ b/_data/chains/eip155-978657.json @@ -0,0 +1,25 @@ +{ + "name": "Treasure Ruby", + "chainId": 978657, + "shortName": "treasure-ruby", + "chain": "TRS", + "networkId": 978657, + "nativeCurrency": { + "name": "Testnet MAGIC", + "symbol": "MAGIC", + "decimals": 18 + }, + "slip44": 1, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://app.treasure.lol", + "icon": "treasureruby", + "rpc": [], + "faucets": [], + "status": "deprecated", + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [] + } +} diff --git a/_data/chains/eip155-978658.json b/_data/chains/eip155-978658.json new file mode 100644 index 000000000000..c0f8bc011d03 --- /dev/null +++ b/_data/chains/eip155-978658.json @@ -0,0 +1,34 @@ +{ + "name": "Treasure Topaz", + "chain": "Treasure Topaz", + "shortName": "treasure-topaz", + "chainId": 978658, + "networkId": 978658, + "nativeCurrency": { + "name": "Testnet MAGIC", + "symbol": "MAGIC", + "decimals": 18 + }, + "slip44": 1, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://app.treasure.lol", + "icon": "treasuretopaz", + "rpc": ["https://rpc.topaz.treasure.lol", "wss://rpc.topaz.treasure.lol/ws"], + "faucets": [ + "https://app.treasure.lol/chain/faucet", + "https://thirdweb.com/treasure-topaz" + ], + "explorers": [ + { + "name": "Treasure Topaz Block Explorer", + "url": "https://topaz.treasurescan.io", + "icon": "treasure", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://app.treasure.lol/chain/bridge" }] + } +} diff --git a/_data/chains/eip155-9788.json b/_data/chains/eip155-9788.json new file mode 100644 index 000000000000..015dbe8f7bbe --- /dev/null +++ b/_data/chains/eip155-9788.json @@ -0,0 +1,22 @@ +{ + "name": "Tabi Testnetv2", + "chain": "TabiNetworkv2", + "rpc": ["https://rpc.testnetv2.tabichain.com"], + "faucets": ["https://carnival.tabichain.com"], + "nativeCurrency": { + "name": "Tabi", + "symbol": "TABI", + "decimals": 18 + }, + "infoURL": "https://www.tabichain.com", + "shortName": "tabitestv2", + "chainId": 9788, + "networkId": 9788, + "explorers": [ + { + "name": "Tabi Testnet V2 Explorer", + "url": "https://testnetv2.tabiscan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-97912060.json b/_data/chains/eip155-97912060.json new file mode 100644 index 000000000000..0cacb8035b91 --- /dev/null +++ b/_data/chains/eip155-97912060.json @@ -0,0 +1,17 @@ +{ + "name": "ChadChain", + "chain": "CHAD", + "status": "incubating", + "rpc": ["https://rpc.chadchain.org"], + "faucets": [], + "nativeCurrency": { + "name": "ChadChain", + "symbol": "CHAD", + "decimals": 18 + }, + "infoURL": "https://chadchain.org", + "shortName": "chad", + "chainId": 97912060, + "networkId": 97912060, + "explorers": [] +} diff --git a/_data/chains/eip155-9797.json b/_data/chains/eip155-9797.json new file mode 100644 index 000000000000..f72c34bb84ca --- /dev/null +++ b/_data/chains/eip155-9797.json @@ -0,0 +1,23 @@ +{ + "name": "OptimusZ7 Mainnet", + "chain": "OptimusZ7", + "icon": "OZ7Icon", + "rpc": ["https://rpc.optimusz7.com"], + "faucets": [], + "nativeCurrency": { + "name": "OptimusZ7", + "symbol": "OZ7", + "decimals": 18 + }, + "infoURL": "http://optimusz7.com", + "shortName": "OZ7m", + "chainId": 9797, + "networkId": 9797, + "explorers": [ + { + "name": "OptimusZ7 Mainnet Explorer", + "url": "https://explorer.optimusz7.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-97970.json b/_data/chains/eip155-97970.json new file mode 100644 index 000000000000..a3edd02a2c0f --- /dev/null +++ b/_data/chains/eip155-97970.json @@ -0,0 +1,23 @@ +{ + "name": "OptimusZ7 Testnet", + "chain": "OptimusZ7", + "icon": "OZ7Icon", + "rpc": ["https://testnet-rpc.optimusz7.com"], + "faucets": ["https://faucet.optimusz7.com"], + "nativeCurrency": { + "name": "OptimusZ7", + "symbol": "OZ7", + "decimals": 18 + }, + "infoURL": "http://optimusz7.com", + "shortName": "OZ7t", + "chainId": 97970, + "networkId": 97970, + "explorers": [ + { + "name": "OptimusZ7 Testnet Explorer", + "url": "https://testnet.optimusz7.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-984.json b/_data/chains/eip155-984.json new file mode 100644 index 000000000000..d53d73e8cc43 --- /dev/null +++ b/_data/chains/eip155-984.json @@ -0,0 +1,22 @@ +{ + "name": "IOPN Testnet", + "chain": "IOPN Testnet", + "rpc": ["https://testnet-rpc.iopn.tech"], + "faucets": ["https://faucet.iopn.tech"], + "nativeCurrency": { + "name": "OPN", + "symbol": "OPN", + "decimals": 18 + }, + "infoURL": "https://iopn.tech", + "shortName": "iopn-Test-Chain", + "chainId": 984, + "networkId": 984, + "explorers": [ + { + "name": "tracehawk", + "url": "https://testnet.iopn.tech", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-984122.json b/_data/chains/eip155-984122.json new file mode 100644 index 000000000000..14928c4425ba --- /dev/null +++ b/_data/chains/eip155-984122.json @@ -0,0 +1,25 @@ +{ + "name": "Forma", + "chain": "Forma", + "rpc": ["https://rpc.forma.art"], + "faucets": [], + "nativeCurrency": { + "name": "TIA", + "symbol": "TIA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://forma.art", + "shortName": "forma", + "chainId": 984122, + "networkId": 984122, + "icon": "forma", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.forma.art", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-984123.json b/_data/chains/eip155-984123.json new file mode 100644 index 000000000000..84ae28bc5689 --- /dev/null +++ b/_data/chains/eip155-984123.json @@ -0,0 +1,25 @@ +{ + "name": "Forma Sketchpad", + "chain": "Forma", + "rpc": ["https://rpc.sketchpad-1.forma.art"], + "faucets": [], + "nativeCurrency": { + "name": "TIA", + "symbol": "TIA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://forma.art", + "shortName": "sketchpad", + "chainId": 984123, + "networkId": 984123, + "icon": "forma", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.sketchpad-1.forma.art", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-986.json b/_data/chains/eip155-986.json new file mode 100644 index 000000000000..f8a0e719cf04 --- /dev/null +++ b/_data/chains/eip155-986.json @@ -0,0 +1,22 @@ +{ + "name": "LAGOM Mainnet", + "chain": "LAGOM Mainnet", + "rpc": ["https://rpc1.lagom.mainnet.zeeve.net"], + "faucets": [], + "nativeCurrency": { + "name": "LAGO", + "symbol": "LAGO", + "decimals": 18 + }, + "infoURL": "https://lagomchain.com", + "shortName": "Lagom-Chain", + "chainId": 986, + "networkId": 986, + "explorers": [ + { + "name": "tracehawk", + "url": "https://Explorer.lagomchain.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-987.json b/_data/chains/eip155-987.json new file mode 100644 index 000000000000..3cc9cbc22fbc --- /dev/null +++ b/_data/chains/eip155-987.json @@ -0,0 +1,23 @@ +{ + "name": "BinaryChain Mainnet", + "chain": "BinaryChain", + "icon": "binary", + "rpc": ["https://rpc.binarychain.org"], + "faucets": [], + "nativeCurrency": { + "name": "BINARY", + "symbol": "BNRY", + "decimals": 18 + }, + "infoURL": "https://binarychain.org", + "shortName": "binary", + "chainId": 987, + "networkId": 987, + "explorers": [ + { + "name": "BinaryChain Explorer", + "url": "https://explorer.binarychain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9876.json b/_data/chains/eip155-9876.json new file mode 100644 index 000000000000..46f321b99db3 --- /dev/null +++ b/_data/chains/eip155-9876.json @@ -0,0 +1,23 @@ +{ + "name": "BinaryChain Testnet", + "chain": "BinaryChain", + "icon": "binary", + "rpc": ["https://rpctestnet.binarychain.org"], + "faucets": ["https://faucet.testnet.binarychain.org"], + "nativeCurrency": { + "name": "BINARY", + "symbol": "BNRY", + "decimals": 18 + }, + "infoURL": "https://binarychain.org", + "shortName": "binarytestnet", + "chainId": 9876, + "networkId": 9876, + "explorers": [ + { + "name": "BinaryChain Testnet Explorer", + "url": "https://explorer.testnet.binarychain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-98864.json b/_data/chains/eip155-98864.json new file mode 100644 index 000000000000..c5f203d3e9fe --- /dev/null +++ b/_data/chains/eip155-98864.json @@ -0,0 +1,24 @@ +{ + "name": "Plume Devnet (Legacy)", + "title": "Plume Sepolia L2 Rollup Devnet (Legacy)", + "chain": "PLUME Devnet Legacy", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Plume Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://plume.org", + "shortName": "plume-devnet", + "chainId": 98864, + "networkId": 98864, + "slip44": 1, + "icon": "plume", + "status": "deprecated", + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } +} diff --git a/_data/chains/eip155-98865.json b/_data/chains/eip155-98865.json new file mode 100644 index 000000000000..b64b8759e8ce --- /dev/null +++ b/_data/chains/eip155-98865.json @@ -0,0 +1,24 @@ +{ + "name": "Plume (Legacy)", + "title": "Plume Ethereum L2 Rollup Mainnet (Legacy)", + "chain": "PLUME Legacy", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Plume Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://plume.org", + "shortName": "plume", + "chainId": 98865, + "networkId": 98865, + "slip44": 1, + "icon": "plume", + "status": "deprecated", + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-1" + } +} diff --git a/_data/chains/eip155-98866.json b/_data/chains/eip155-98866.json new file mode 100644 index 000000000000..de9c811d9b32 --- /dev/null +++ b/_data/chains/eip155-98866.json @@ -0,0 +1,32 @@ +{ + "name": "Plume Mainnet", + "title": "Plume Ethereum L2 Rollup Mainnet", + "chain": "PLUME", + "rpc": ["https://rpc.plume.org", "wss://rpc.plume.org"], + "faucets": [], + "nativeCurrency": { + "name": "Plume", + "symbol": "PLUME", + "decimals": 18 + }, + "infoURL": "https://plume.org", + "shortName": "plume-mainnet", + "chainId": 98866, + "networkId": 98866, + "slip44": 1, + "icon": "plume", + "status": "active", + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.plume.org", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.plume.org" }] + } +} diff --git a/_data/chains/eip155-98867.json b/_data/chains/eip155-98867.json new file mode 100644 index 000000000000..0fdcb3c467c8 --- /dev/null +++ b/_data/chains/eip155-98867.json @@ -0,0 +1,32 @@ +{ + "name": "Plume Testnet", + "title": "Plume Sepolia L2 Rollup Testnet", + "chain": "PLUME Testnet", + "rpc": ["https://testnet-rpc.plume.org", "wss://testnet-rpc.plume.org"], + "faucets": ["https://faucet.plume.org"], + "nativeCurrency": { + "name": "Plume", + "symbol": "PLUME", + "decimals": 18 + }, + "infoURL": "https://plume.org", + "shortName": "plume-testnet", + "chainId": 98867, + "networkId": 98867, + "slip44": 1, + "icon": "plume", + "status": "active", + "explorers": [ + { + "name": "Blockscout", + "url": "https://testnet-explorer.plume.org", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://testnet-bridge.plume.org" }] + } +} diff --git a/_data/chains/eip155-9889.json b/_data/chains/eip155-9889.json new file mode 100644 index 000000000000..1d14f3d78c48 --- /dev/null +++ b/_data/chains/eip155-9889.json @@ -0,0 +1,25 @@ +{ + "name": "pointledger", + "chain": "pointledger", + "icon": "pointledger", + "rpc": ["https://rpc.pointledger.net"], + "faucets": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "nativeCurrency": { + "name": "PLG", + "symbol": "PLG", + "decimals": 18 + }, + "infoURL": "https://pointledger.net", + "shortName": "pointledger", + "chainId": 9889, + "networkId": 9889, + "explorers": [ + { + "name": "pointledger Explorer", + "url": "https://exp.pointledger.net", + "icon": "pointledger", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-98964.json b/_data/chains/eip155-98964.json new file mode 100644 index 000000000000..c85318f7e160 --- /dev/null +++ b/_data/chains/eip155-98964.json @@ -0,0 +1,33 @@ +{ + "name": "Pay1 Network", + "chainId": 98964, + "shortName": "pay1", + "chain": "PAY1", + "networkId": 98964, + "icon": "pay1", + "nativeCurrency": { + "name": "Pay1", + "symbol": "Pay1", + "decimals": 18 + }, + "rpc": [ + "https://rpc.pay1coin.com", + "https://rpc0.pay1coin.com", + "https://rpc1.pay1coin.com", + "https://rpc2.pay1coin.com", + "wss://ws.pay1coin.com", + "wss://ws0.pay1coin.com", + "wss://ws1.pay1coin.com", + "wss://ws2.pay1coin.com" + ], + "faucets": [], + "explorers": [ + { + "name": "Pay1Scan", + "url": "https://pay1scan.io", + "icon": "pay1scan", + "standard": "EIP3091" + } + ], + "infoURL": "https://pay1coin.com" +} diff --git a/_data/chains/eip155-9897.json b/_data/chains/eip155-9897.json new file mode 100644 index 000000000000..ee11eabc91b2 --- /dev/null +++ b/_data/chains/eip155-9897.json @@ -0,0 +1,25 @@ +{ + "name": "arena-z-testnet-deprecated", + "title": "Arena-Z-Testnet-deprecated", + "chain": "arena-z-testnet-deprecated", + "rpc": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "arena-z", + "infoURL": "https://raas.gelato.network/rollups/details/public/arena-z-testnet", + "faucets": [], + "shortName": "arena-z-testnet-deprecated", + "chainId": 9897, + "networkId": 9897, + "slip44": 60, + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [] + }, + "status": "deprecated" +} diff --git a/_data/chains/eip155-98985.json b/_data/chains/eip155-98985.json new file mode 100644 index 000000000000..82fe613bf606 --- /dev/null +++ b/_data/chains/eip155-98985.json @@ -0,0 +1,23 @@ +{ + "name": "Superposition Testnet", + "title": "Sperposition Testnet", + "chain": "SPN", + "rpc": ["https://testnet-rpc.superposition.so"], + "faucets": ["https://faucet.superposition.so"], + "nativeCurrency": { + "name": "SPN", + "symbol": "SPN", + "decimals": 18 + }, + "infoURL": "https://superposition.so", + "shortName": "superposition-testnet", + "chainId": 98985, + "networkId": 98985, + "explorers": [ + { + "name": "Superposition Explorer", + "url": "https://testnet-explorer.superposition.so", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9899.json b/_data/chains/eip155-9899.json new file mode 100644 index 000000000000..ba876eafa703 --- /dev/null +++ b/_data/chains/eip155-9899.json @@ -0,0 +1,31 @@ +{ + "name": "Arena-Z-Testnet", + "title": "Arena-Z-Testnet", + "chain": "arena-z-testnet", + "rpc": ["https://testnet-rpc.arena-z.gg", "wss://testnet-ws.arena-z.gg"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "arena-z", + "infoURL": "https://raas.gelato.network/rollups/details/public/arena-z-testnet", + "faucets": ["https://testnet-faucet.arena-z.gg"], + "shortName": "arena-z-testnet", + "chainId": 9899, + "networkId": 9899, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.arena-z.gg", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://testnet-bridge.arena-z.gg" }] + }, + "status": "active" +} diff --git a/_data/chains/eip155-9901.json b/_data/chains/eip155-9901.json new file mode 100644 index 000000000000..7cb64f204075 --- /dev/null +++ b/_data/chains/eip155-9901.json @@ -0,0 +1,23 @@ +{ + "name": "Zytron Linea Mainnet", + "chain": "ETH", + "icon": "zytron", + "rpc": ["https://rpc.zypher.network/"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zytron.zypher.network/", + "shortName": "zytron-linea", + "chainId": 9901, + "networkId": 9901, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.zypher.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-994873017.json b/_data/chains/eip155-994873017.json new file mode 100644 index 000000000000..a0992f157cc3 --- /dev/null +++ b/_data/chains/eip155-994873017.json @@ -0,0 +1,33 @@ +{ + "name": "Lumia Mainnet", + "shortName": "lumia-mainnet", + "title": "Lumia Mainnet", + "chain": "ETH", + "icon": "lumia", + "rpc": ["https://mainnet-rpc.lumia.org"], + "faucets": [], + "nativeCurrency": { + "name": "Lumia", + "symbol": "LUMIA", + "decimals": 18 + }, + "infoURL": "https://lumia.org", + "chainId": 994873017, + "networkId": 994873017, + "explorers": [ + { + "name": "Lumia Mainnet Explorer", + "url": "https://explorer.lumia.org", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.lumia.org" + } + ] + } +} diff --git a/_data/chains/eip155-995.json b/_data/chains/eip155-995.json new file mode 100644 index 000000000000..8038d6f7064b --- /dev/null +++ b/_data/chains/eip155-995.json @@ -0,0 +1,24 @@ +{ + "name": "5ireChain Mainnet", + "chain": "5ireChain", + "rpc": ["https://rpc.5ire.network"], + "faucets": [], + "nativeCurrency": { + "name": "5ire Token", + "symbol": "5ire", + "decimals": 18 + }, + "infoURL": "https://5ire.org", + "shortName": "5ire", + "chainId": 995, + "networkId": 995, + "icon": "5ireChain", + "explorers": [ + { + "name": "5ireChain Explorer", + "url": "https://5irescan.io", + "standard": "none", + "icon": "5ireChain" + } + ] +} diff --git a/_data/chains/eip155-996.json b/_data/chains/eip155-996.json new file mode 100644 index 000000000000..2283415a0e3c --- /dev/null +++ b/_data/chains/eip155-996.json @@ -0,0 +1,16 @@ +{ + "name": "Bifrost Polkadot Mainnet", + "chain": "Bifrost", + "rpc": ["https://hk.p.bifrost-rpc.liebi.com"], + "faucets": [], + "nativeCurrency": { + "name": "Wrapped ETH", + "symbol": "WETH", + "decimals": 18 + }, + "infoURL": "https://bifrost.io/", + "shortName": "bnc", + "chainId": 996, + "networkId": 996, + "icon": "bifrost-polkadot" +} diff --git a/_data/chains/eip155-9966.json b/_data/chains/eip155-9966.json new file mode 100644 index 000000000000..3b8ce388fa3e --- /dev/null +++ b/_data/chains/eip155-9966.json @@ -0,0 +1,28 @@ +{ + "name": "UXER TESTNET NETWORK", + "chain": "UXER", + "rpc": [ + "https://dev-testnet.uxer.network", + "https://data-cloud-testnet.uxer.network" + ], + "faucets": ["https://faucet.uxer.network"], + "nativeCurrency": { + "name": "UXER", + "symbol": "tUXER", + "decimals": 18 + }, + "infoURL": "https://uxer.network", + "shortName": "uxer", + "chainId": 9966, + "networkId": 9966, + "slip44": 1, + "icon": "uxer", + "explorers": [ + { + "name": "UXER TESTNET EXPLORER", + "icon": "uxer", + "url": "https://testnet.uxer.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-997.json b/_data/chains/eip155-997.json index 51b0fbd3ff45..46df71b44e8e 100644 --- a/_data/chains/eip155-997.json +++ b/_data/chains/eip155-997.json @@ -1,22 +1,22 @@ { - "name": "5ireChain Thunder", + "name": "5ireChain Thunder Testnet", "chain": "5ireChain", - "rpc": ["https://rpc-testnet.5ire.network"], - "faucets": ["https://explorer.5ire.network/faucet"], + "rpc": ["https://rpc.testnet.5ire.network"], + "faucets": ["https://testnet.5irescan.io/faucet"], "nativeCurrency": { - "name": "5ire Token", - "symbol": "5ire", + "name": "5ire Testnet Token", + "symbol": "T5IRE", "decimals": 18 }, "infoURL": "https://5ire.org", - "shortName": "5ire", + "shortName": "T5ire", "chainId": 997, "networkId": 997, "icon": "5ireChain", "explorers": [ { - "name": "5ireChain Explorer", - "url": "https://explorer.5ire.network", + "name": "5ireChain Testnet Explorer", + "url": "https://testnet.5irescan.io", "standard": "none", "icon": "5ireChain" } diff --git a/_data/chains/eip155-998.json b/_data/chains/eip155-998.json index f95475c3024a..192530c09771 100644 --- a/_data/chains/eip155-998.json +++ b/_data/chains/eip155-998.json @@ -1,32 +1,18 @@ { - "name": "Lucky Network", - "chain": "LN", - "rpc": [ - "https://rpc.luckynetwork.org", - "wss://ws.lnscan.org", - "https://rpc.lnscan.org" - ], + "name": "Hyperliquid EVM Testnet", + "chain": "HYPE", + "rpc": ["https://api.hyperliquid-testnet.xyz/evm"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": [], "nativeCurrency": { - "name": "Lucky", - "symbol": "L99", + "name": "HYPE", + "symbol": "HYPE", "decimals": 18 }, - "infoURL": "https://luckynetwork.org", - "shortName": "ln", + "infoURL": "https://hyperfoundation.org/", + "shortName": "hype-evm-testnet", "chainId": 998, "networkId": 998, - "icon": "lucky", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.luckynetwork.org", - "standard": "none" - }, - { - "name": "expedition", - "url": "https://lnscan.org", - "standard": "none" - } - ] + "explorers": [], + "redFlags": ["reusedChainId"] } diff --git a/_data/chains/eip155-9981.json b/_data/chains/eip155-9981.json new file mode 100644 index 000000000000..7622357bdc72 --- /dev/null +++ b/_data/chains/eip155-9981.json @@ -0,0 +1,23 @@ +{ + "name": "Volley Mainnet", + "chain": "Volley", + "icon": "volley", + "rpc": ["https://main-rpc.volleychain.com"], + "faucets": [], + "nativeCurrency": { + "name": "V2X", + "symbol": "V2X", + "decimals": 18 + }, + "infoURL": "https://www.volleychain.com", + "shortName": "volley-mainnet", + "chainId": 9981, + "networkId": 9981, + "explorers": [ + { + "name": "Volley Mainnet Explorer", + "url": "https://volleyscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9982.json b/_data/chains/eip155-9982.json new file mode 100644 index 000000000000..284f309af716 --- /dev/null +++ b/_data/chains/eip155-9982.json @@ -0,0 +1,24 @@ +{ + "name": "MFEV CHAIN MAINNET", + "chain": "MFEV CHAIN", + "rpc": ["https://rpc.mfevscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "MFEV", + "symbol": "MFEV", + "decimals": 18 + }, + "infoURL": "https://mfevscan.com", + "shortName": "mfevscan", + "chainId": 9982, + "networkId": 9982, + "slip44": 108, + "explorers": [ + { + "name": "MFEV CHAIN", + "url": "https://mfevscan.com", + "icon": "mfev", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-99876.json b/_data/chains/eip155-99876.json new file mode 100644 index 000000000000..8f5feb8a3d17 --- /dev/null +++ b/_data/chains/eip155-99876.json @@ -0,0 +1,24 @@ +{ + "name": "Edge Matrix Chain Testnet", + "chain": "EMC Testnet", + "icon": "emctest", + "rpc": ["https://rpc1-testnet.emc.network"], + "faucets": [], + "nativeCurrency": { + "name": "Edge Matrix Chain Token", + "symbol": "EMC", + "decimals": 18 + }, + "infoURL": "", + "shortName": "EMCTestnet", + "chainId": 99876, + "networkId": 99876, + + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.emcscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-99879.json b/_data/chains/eip155-99879.json new file mode 100644 index 000000000000..6610198871c1 --- /dev/null +++ b/_data/chains/eip155-99879.json @@ -0,0 +1,24 @@ +{ + "name": "Edge Matrix Chain Sepolia", + "chain": "EMC Sepolia", + "icon": "emctest", + "rpc": ["https://rpc1-sepolia.emc.network"], + "faucets": [], + "nativeCurrency": { + "name": "Edge Matrix Chain Token", + "symbol": "EMC", + "decimals": 18 + }, + "infoURL": "", + "shortName": "EMCSepolia", + "chainId": 99879, + "networkId": 99879, + + "explorers": [ + { + "name": "blockscout", + "url": "https://sepolia.emcscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-998899.json b/_data/chains/eip155-998899.json new file mode 100644 index 000000000000..ce030aaf1108 --- /dev/null +++ b/_data/chains/eip155-998899.json @@ -0,0 +1,24 @@ +{ + "name": "Supernet Testnet", + "title": "Supernet Testnet", + "chain": "Supernet Testnet", + "rpc": ["https://testnet-rpc.supernet.chaingames.io/"], + "faucets": ["https://faucet.chaingames.io"], + "nativeCurrency": { + "name": "CHAIN", + "symbol": "CHAIN", + "decimals": 18 + }, + "infoURL": "", + "shortName": "supernetchain", + "chainId": 998899, + "networkId": 998899, + "slip44": 1, + "explorers": [ + { + "name": "supernet-testnet-explorer", + "url": "https://testnet-explorer.supernet.chaingames.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-999.json b/_data/chains/eip155-999.json index 40e9cdb822e7..179f5c332a4c 100644 --- a/_data/chains/eip155-999.json +++ b/_data/chains/eip155-999.json @@ -12,5 +12,14 @@ "shortName": "twan", "chainId": 999, "networkId": 999, - "slip44": 1 + "slip44": 1, + "icon": "wanchain", + "explorers": [ + { + "name": "wanscan", + "icon": "wanchain", + "url": "https://testnet.wanscan.org", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-9990.json b/_data/chains/eip155-9990.json index 6e9645238465..5b40aa4e6f04 100644 --- a/_data/chains/eip155-9990.json +++ b/_data/chains/eip155-9990.json @@ -2,7 +2,7 @@ "name": "Agung Network", "chain": "Agung", "icon": "agung", - "rpc": ["https://rpcpc1-qa.agung.peaq.network"], + "rpc": ["https://wss-async.agung.peaq.network"], "faucets": [], "nativeCurrency": { "name": "Agung", @@ -16,12 +16,12 @@ "explorers": [ { "name": "Polkadot.js", - "url": "https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer", + "url": "https://polkadot.js.org/apps/?rpc=wss:///wss-async.agung.peaq.network#/explorer", "standard": "none" }, { "name": "Subscan", - "url": "https://agung.subscan.io", + "url": "https://agung-testnet.subscan.io", "standard": "none" } ] diff --git a/_data/chains/eip155-9999999.json b/_data/chains/eip155-9999999.json new file mode 100644 index 000000000000..84a6f4898cb0 --- /dev/null +++ b/_data/chains/eip155-9999999.json @@ -0,0 +1,26 @@ +{ + "name": "Fluence", + "chain": "Fluence", + "rpc": ["https://rpc.mainnet.fluence.dev/", "wss://ws.mainnet.fluence.dev/"], + "faucets": [], + "nativeCurrency": { + "name": "FLT", + "symbol": "FLT", + "decimals": 18 + }, + "infoURL": "https://fluence.network/", + "shortName": "fluence", + "chainId": 9999999, + "networkId": 9999999, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.mainnet.fluence.dev", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + } +} diff --git a/_data/eip155-4777.json b/_data/eip155-4777.json new file mode 100644 index 000000000000..731ace15ce7b --- /dev/null +++ b/_data/eip155-4777.json @@ -0,0 +1,27 @@ +{ + "name": "BlackFort Exchange Network Testnet", + "chain": "TBXN", + "rpc": ["https://testnet.blackfort.network/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "BlackFort Testnet Token", + "symbol": "TBXN", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://blackfort.exchange", + "shortName": "TBXN", + "chainId": 4777, + "networkId": 4777, + "slip44": 1, + "icon": "bxn", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.blackfort.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "status": "deprecated" +} diff --git a/_data/icons/0gai.json b/_data/icons/0gai.json new file mode 100644 index 000000000000..a992312f9353 --- /dev/null +++ b/_data/icons/0gai.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreic6mqwxp4g3defk5emaw6hbnimtjhmnxgzh5nje4gsvjgxhl64mqa", + "width": 600, + "height": 600, + "format": "png" + } +] diff --git a/_data/icons/0xl3.json b/_data/icons/0xl3.json new file mode 100644 index 000000000000..7f3fb71a99fd --- /dev/null +++ b/_data/icons/0xl3.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSsUNLDQXspXXLCH6bUW5CKJgon42yiVZ2Gp4ZBWL79Vx", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/6do.json b/_data/icons/6do.json new file mode 100644 index 000000000000..194c337ca558 --- /dev/null +++ b/_data/icons/6do.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWyyraWiYNJRAb4AEEkozjh8u5TAnFNG7YnFd7A54AjPi", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/BTCChain.json b/_data/icons/BTCChain.json new file mode 100644 index 000000000000..5e95ba6935b5 --- /dev/null +++ b/_data/icons/BTCChain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreib6is2nmoadrbvigzrd54z53eya5whfmyeukrl5mfxmskvbw5juxa", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/EsaCoins.json b/_data/icons/EsaCoins.json new file mode 100644 index 000000000000..c398517839a4 --- /dev/null +++ b/_data/icons/EsaCoins.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRZ1LHedFNs3pXhxcjhbQtHLmMzDhioKJ6ZsRwHNpbtiF", + "width": 1008, + "height": 1008, + "format": "png" + } +] diff --git a/_data/icons/GuruNetwork.json b/_data/icons/GuruNetwork.json new file mode 100644 index 000000000000..1c67b63645d3 --- /dev/null +++ b/_data/icons/GuruNetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTDWnSNSCcVPCYD1FKrUirkT2MVrShdVK9dsxAi6eZdbD", + "width": 70, + "height": 70, + "format": "svg" + } +] diff --git a/_data/icons/NumBlock.json b/_data/icons/NumBlock.json new file mode 100644 index 000000000000..30901bab0520 --- /dev/null +++ b/_data/icons/NumBlock.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRY72AKDaUwxgPukdfSBj19NfMrmsSm48mdBe9zJcW3jB", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/OZ7Icon.json b/_data/icons/OZ7Icon.json new file mode 100644 index 000000000000..312c58195068 --- /dev/null +++ b/_data/icons/OZ7Icon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmerd9Q3otjDuQAFbdiQyUnZk7UfPvkCr21E5N4VCNvhbj", + "width": 493, + "height": 506, + "format": "png" + } +] diff --git a/_data/icons/Xonechain.json b/_data/icons/Xonechain.json new file mode 100644 index 000000000000..26d4893c6524 --- /dev/null +++ b/_data/icons/Xonechain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmR3twvfhDES34nLhcVmUbAZpW4eynZoSfA2XpWUBnH7gB", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/Xonescan.json b/_data/icons/Xonescan.json new file mode 100644 index 000000000000..26d4893c6524 --- /dev/null +++ b/_data/icons/Xonescan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmR3twvfhDES34nLhcVmUbAZpW4eynZoSfA2XpWUBnH7gB", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/abey.json b/_data/icons/abey.json new file mode 100644 index 000000000000..c9a11eebfbcc --- /dev/null +++ b/_data/icons/abey.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreicaucnt5aqvwq6pw2fzvotzonkeaf7cj5yqt3m2wyhtusblroi4se", + "width": 2000, + "height": 2000, + "format": "png" + } +] diff --git a/_data/icons/abstract.json b/_data/icons/abstract.json new file mode 100644 index 000000000000..2d35d692b9d6 --- /dev/null +++ b/_data/icons/abstract.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSRp5BGvwW9xmNNiRwZkJiTnjkyeQFU8Fy2BYwaBVJn58", + "width": 160, + "height": 161, + "format": "svg" + } +] diff --git a/_data/icons/abyss.json b/_data/icons/abyss.json new file mode 100644 index 000000000000..1c672feb9b53 --- /dev/null +++ b/_data/icons/abyss.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmeaa9TSsdUuJtRRX9DWX3iuQ4bypTQfctGciuKsFkKL8C", + "width": 558, + "height": 495, + "format": "png" + } +] diff --git a/_data/icons/action.json b/_data/icons/action.json new file mode 100644 index 000000000000..adda5a9bdbf5 --- /dev/null +++ b/_data/icons/action.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNkyJNwgHEWYnxq8BPaQ83WxrVVPrdzvQKKY22PRqhRts", + "width": 960, + "height": 960, + "format": "png" + } +] diff --git a/_data/icons/addfillmain.json b/_data/icons/addfillmain.json new file mode 100644 index 000000000000..b9ab1598c27d --- /dev/null +++ b/_data/icons/addfillmain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWoKvjVs92PNzqd6hz7714wHSx3TuWEMBVcdG7ujhW9Qx", + "width": 697, + "height": 697, + "format": "png" + } +] diff --git a/_data/icons/addfilltest.json b/_data/icons/addfilltest.json new file mode 100644 index 000000000000..b9ab1598c27d --- /dev/null +++ b/_data/icons/addfilltest.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWoKvjVs92PNzqd6hz7714wHSx3TuWEMBVcdG7ujhW9Qx", + "width": 697, + "height": 697, + "format": "png" + } +] diff --git a/_data/icons/aeon.json b/_data/icons/aeon.json new file mode 100644 index 000000000000..83e53195dcaf --- /dev/null +++ b/_data/icons/aeon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmeq49hbjDHYyWs4UyUHwwde5WUemJYJSLSXiik6up5NjE", + "width": 240, + "height": 240, + "format": "png" + } +] diff --git a/_data/icons/aia.json b/_data/icons/aia.json index b7a9d1dd1091..1f01530e525a 100644 --- a/_data/icons/aia.json +++ b/_data/icons/aia.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmXbBMMhjTTGAGjmqMpJm3ufFrtdkfEXCFyXYgz7nnZzsy", - "width": 160, - "height": 160, + "url": "ipfs://QmPAcZioXaoJd8vFRrqdj2cWXWkbSHoCPiyZH9ukncfvfg", + "width": 150, + "height": 150, "format": "png" } ] diff --git a/_data/icons/ailayer.json b/_data/icons/ailayer.json new file mode 100644 index 000000000000..fc741884299c --- /dev/null +++ b/_data/icons/ailayer.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYoqc8rm8PrBg9jqfpsrxd6zdPEqDozbyNVMkBo3QMAFP", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/aldrickb.json b/_data/icons/aldrickb.json new file mode 100644 index 000000000000..6b7524eefa22 --- /dev/null +++ b/_data/icons/aldrickb.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcR85gVf9bok2Q6Jan7n335wF5t3KrJJQ2WCbRv8Lwwma", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/aleph-zero.json b/_data/icons/aleph-zero.json new file mode 100644 index 000000000000..ae119a9b0f80 --- /dev/null +++ b/_data/icons/aleph-zero.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUmw7yJDdkTV6SNp5PDfMLe5LWMfUo6vyQbh7fdhTfGDH", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/alienx.json b/_data/icons/alienx.json new file mode 100644 index 000000000000..0783c0d37d3a --- /dev/null +++ b/_data/icons/alienx.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWAa7JayD8HCtAMXezzUNcUoi2Rikqpu2WmrHpFBmDEez", + "width": 480, + "height": 480, + "format": "png" + } +] diff --git a/_data/icons/altarTestnet.json b/_data/icons/altarTestnet.json new file mode 100644 index 000000000000..9349c410095a --- /dev/null +++ b/_data/icons/altarTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZiJLjciV6KiuxwDebi7CwRhDzei6KKDuStppzsUGtNfN", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/altb.json b/_data/icons/altb.json new file mode 100644 index 000000000000..92e6ac429aae --- /dev/null +++ b/_data/icons/altb.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreicy275qnnvxzjocl33blzw26orv3rkygqbb4sqwtx5bc2m3hazmre", + "width": 640, + "height": 640, + "format": "jpg" + } +] diff --git a/_data/icons/althea.json b/_data/icons/althea.json new file mode 100644 index 000000000000..0851aa1733a7 --- /dev/null +++ b/_data/icons/althea.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaNKnYTZRGnhzFyRYeBKwXbPQz6uDPK7PPuPGCMXSNFYW", + "width": 1140, + "height": 1140, + "format": "svg" + } +] diff --git a/_data/icons/alveychain.json b/_data/icons/alveychain.json deleted file mode 100644 index 19e7f44a9f51..000000000000 --- a/_data/icons/alveychain.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url": "ipfs://QmTuY2Goyxpuy5GmA32EMYZBwxRcGsahiMFgfeBixSk7rb", - "width": 2048, - "height": 1538, - "format": "png" - } -] diff --git a/_data/icons/apertum.json b/_data/icons/apertum.json new file mode 100644 index 000000000000..93030b985961 --- /dev/null +++ b/_data/icons/apertum.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreido4d2frhuuh4zwyyowesuslczaibgf3dtlwjjor52euqqqiashxy", + "width": 496, + "height": 496, + "format": "png" + } +] diff --git a/_data/icons/apexfusion.json b/_data/icons/apexfusion.json new file mode 100644 index 000000000000..9d3edc1318e4 --- /dev/null +++ b/_data/icons/apexfusion.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSnqLVwFyeX9AZDvBKVS7diDf2Xb7m9nDcamGgpCMhL3d", + "width": 410, + "height": 410, + "format": "svg" + } +] diff --git a/_data/icons/appchain.json b/_data/icons/appchain.json new file mode 100644 index 000000000000..bed890864692 --- /dev/null +++ b/_data/icons/appchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeigx76uxvcvet7365sjdzuxxcgl5auzck6vbbigu2jeg6ixl5k3tya", + "width": 1320, + "height": 1320, + "format": "svg" + } +] diff --git a/_data/icons/arena-z-mainnet.json b/_data/icons/arena-z-mainnet.json new file mode 100644 index 000000000000..6e53250b04c0 --- /dev/null +++ b/_data/icons/arena-z-mainnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPRGaSPsmbDwRgQUCJSfkEErrfXxHbpUhQSvvDTLgJ25R", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/arena-z.json b/_data/icons/arena-z.json new file mode 100644 index 000000000000..03ca97102cb0 --- /dev/null +++ b/_data/icons/arena-z.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreic2vglaqxdbk5u7uw4vgksxri5xcbrnlysam57dsob2uvr33dzoma", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/argochain.json b/_data/icons/argochain.json new file mode 100644 index 000000000000..94e0f1e21928 --- /dev/null +++ b/_data/icons/argochain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVbs4mkn6N86izwQS1HzMP2uFxQLCPxsppojPhyq3cu1w", + "width": 402, + "height": 402, + "format": "png" + } +] diff --git a/_data/icons/arma.json b/_data/icons/arma.json new file mode 100644 index 000000000000..9b7e9660701f --- /dev/null +++ b/_data/icons/arma.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcwQFHeLV7PCMe37nDb6pAgisUo5tVH6TBXsySDGtC9b9", + "width": 800, + "height": 800, + "format": "png" + } +] diff --git a/_data/icons/artela.json b/_data/icons/artela.json new file mode 100644 index 000000000000..5f7d34210cb6 --- /dev/null +++ b/_data/icons/artela.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVLphQTid27kfv3R6Vd2UdiHYWYu3oUTmztmiqSBkZ3nu", + "width": 877, + "height": 877, + "format": "png" + } +] diff --git a/_data/icons/arvix.json b/_data/icons/arvix.json new file mode 100644 index 000000000000..b4f1333c489a --- /dev/null +++ b/_data/icons/arvix.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcwGGWyemrFUZPriS3PqxLUoT7vdtS7FqNY5fAaoTG27Q", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/assetchain.json b/_data/icons/assetchain.json new file mode 100644 index 000000000000..9ca023308020 --- /dev/null +++ b/_data/icons/assetchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXc4bxuyWvQFqjuunXmvZZs1AwGChyY7sGYK6tgCkp3nJ", + "width": 1500, + "height": 1500, + "format": "png" + } +] diff --git a/_data/icons/astrasepolia.json b/_data/icons/astrasepolia.json new file mode 100644 index 000000000000..f0d7a31a968f --- /dev/null +++ b/_data/icons/astrasepolia.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQW8DuuyxjdLWAPq3V9zSfdAimaStptZ4gxZ3aEviAafc", + "width": 1280, + "height": 1280, + "format": "png" + } +] diff --git a/_data/icons/atlas.json b/_data/icons/atlas.json new file mode 100644 index 000000000000..0eb2bf895980 --- /dev/null +++ b/_data/icons/atlas.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcSWGcoqC3y8VKahRdqPDgD68rr6A1gWVQPRt5FcpgWmG", + "width": 587, + "height": 174, + "format": "svg" + } +] diff --git a/_data/icons/autonomys.json b/_data/icons/autonomys.json new file mode 100644 index 000000000000..7a3403ac18e5 --- /dev/null +++ b/_data/icons/autonomys.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreic62smuudotw6iq724fvysujakoonb3iwtwo6t4hr6ldursz5jyo4", + "width": 1113, + "height": 1096, + "format": "png" + } +] diff --git a/_data/icons/avenium.json b/_data/icons/avenium.json new file mode 100644 index 000000000000..57db9b9de52e --- /dev/null +++ b/_data/icons/avenium.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmU5yJvjdeVGzNutn2U6wLWfHDGsDafLfZg7HRJ8ji3yfJ", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/b20.json b/_data/icons/b20.json new file mode 100644 index 000000000000..322a776ea3ee --- /dev/null +++ b/_data/icons/b20.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmV14XgxgayF2Chw3HUGPNQ2iLzh9jAUxNL1LAECpZohVp", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/b3.json b/_data/icons/b3.json new file mode 100644 index 000000000000..c4282f620025 --- /dev/null +++ b/_data/icons/b3.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qme5W7SmKGv3gqciYFWuZvA4QKJAU2XKwSzC6cXLx7wGJu", + "width": 390, + "height": 221, + "format": "svg" + } +] diff --git a/_data/icons/backstop.json b/_data/icons/backstop.json new file mode 100644 index 000000000000..ff2a930234be --- /dev/null +++ b/_data/icons/backstop.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaWH5iWif22gtYVizWvuPoEHZ3qZjYc8nXnEgPh9rLMiY", + "width": 250, + "height": 250, + "format": "png" + } +] diff --git a/_data/icons/basedai.json b/_data/icons/basedai.json new file mode 100644 index 000000000000..83eb6c2996bb --- /dev/null +++ b/_data/icons/basedai.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidkgcrgumpvke3rsk3txvy52ovosmyfum3b6vnyv4k4rzzov72zae", + "width": 240, + "height": 240, + "format": "svg" + } +] diff --git a/_data/icons/bchyper.json b/_data/icons/bchyper.json new file mode 100644 index 000000000000..7b5f7ae5b906 --- /dev/null +++ b/_data/icons/bchyper.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreia5iw3fygyim6ivv4lznrsak2x6e573vybexlnpxpcp775hcgmjyi", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/berachain.json b/_data/icons/berachain.json index fe5f220b6eb4..b98e1e7735f9 100644 --- a/_data/icons/berachain.json +++ b/_data/icons/berachain.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmW2xrDkSqBB7qgftp5PUecEGg4zwUBJgSN45CaR7CKJMr", - "width": 256, - "height": 256, + "url": "ipfs://bafybeidicict7kohdlu42btleliya2l4nxknhj45iwdk2pjzamfjwzrhpa", + "width": 1024, + "height": 1024, "format": "png" } ] diff --git a/_data/icons/betherance.json b/_data/icons/betherance.json new file mode 100644 index 000000000000..74409a04e5a5 --- /dev/null +++ b/_data/icons/betherance.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQnf8Fp3xVimXszkCt7EfKWjUzGWK9HBq9EQ8xXbm1APH", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/bifrost-polkadot.json b/_data/icons/bifrost-polkadot.json new file mode 100644 index 000000000000..ffdf804e1c74 --- /dev/null +++ b/_data/icons/bifrost-polkadot.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcNsubj4ane1QXTfWt4Xm4SYU59TMnevtW5TuKprrBCHk", + "width": 480, + "height": 480, + "format": "svg" + } +] diff --git a/_data/icons/binary.json b/_data/icons/binary.json new file mode 100644 index 000000000000..2a256d6daa2e --- /dev/null +++ b/_data/icons/binary.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeifb4vnpn3jv7cfdlne2dwhe6agdnpgmu46a7nbc5divjuyaznkyay", + "width": 2000, + "height": 2000, + "format": "png" + } +] diff --git a/_data/icons/bionix.json b/_data/icons/bionix.json new file mode 100644 index 000000000000..a0549006338d --- /dev/null +++ b/_data/icons/bionix.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNVegdThJHrdcJxYTrmgccARTDTz9DkhxLffDCvDMp4an", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/birdlayer.json b/_data/icons/birdlayer.json new file mode 100644 index 000000000000..816c2bdc243b --- /dev/null +++ b/_data/icons/birdlayer.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQDdZQjpKhrVM62479RTzppUG8QHhHd8Bq4RFYAjN1yf4", + "width": 160, + "height": 160, + "format": "png" + } +] diff --git a/_data/icons/bitlazer.json b/_data/icons/bitlazer.json new file mode 100644 index 000000000000..dc917deeeef0 --- /dev/null +++ b/_data/icons/bitlazer.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreia4fgi2yp3ked4p356pbitpklsastu5zrztgdlkoihykm3vfmstyi", + "width": 400, + "height": 400, + "format": "jpg" + } +] diff --git a/_data/icons/bittensor.json b/_data/icons/bittensor.json new file mode 100644 index 000000000000..0e1a3221ca99 --- /dev/null +++ b/_data/icons/bittensor.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcwymedPKMBVUptXLeuco2kV7LEhyd3bQ6x3aAh4VAmNJ", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/bless.json b/_data/icons/bless.json new file mode 100644 index 000000000000..b71bd045a39e --- /dev/null +++ b/_data/icons/bless.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUP7NPPrCe6N6k8RQh4KuSBU2xMvbyo6enCtzyE5v4bmQ", + "width": 600, + "height": 600, + "format": "png" + } +] diff --git a/_data/icons/boolnetwork.json b/_data/icons/boolnetwork.json new file mode 100644 index 000000000000..62211e0859cf --- /dev/null +++ b/_data/icons/boolnetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPVnYRhenXH8X9NF3vy7oU1sHnoBoNU2xDU68uBqWoy3b", + "width": 229, + "height": 229, + "format": "png" + } +] diff --git a/_data/icons/botanix.json b/_data/icons/botanix.json index fb6b0d2bce2a..6f5c3fd0bb12 100644 --- a/_data/icons/botanix.json +++ b/_data/icons/botanix.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmVE5s2pXiqdMnAcxhAmWkZYhpFB5CysypeLyPKzT4rGYe", - "width": 512, - "height": 512, + "url": "ipfs://bafkreiay6fhksszxziv25iqncumkwewu7kvoiakdozvnhocolkmlhh4ffe", + "width": 256, + "height": 256, "format": "png" } ] diff --git a/_data/icons/bouncebit.json b/_data/icons/bouncebit.json new file mode 100644 index 000000000000..d0b5667968e8 --- /dev/null +++ b/_data/icons/bouncebit.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXry4fg4n371PCokLGKUMwmws1SoJb5giZM3EedeEQaZz", + "width": 192, + "height": 192, + "format": "png" + } +] diff --git a/_data/icons/btcprotocol.json b/_data/icons/btcprotocol.json new file mode 100644 index 000000000000..68f0fa458d83 --- /dev/null +++ b/_data/icons/btcprotocol.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYgFtJjxUgUDr3L9fsXvgzUTanrzcNj2e6RJ8VmkwpcuB", + "width": 792, + "height": 792, + "format": "png" + } +] diff --git a/_data/icons/bth.json b/_data/icons/bth.json new file mode 100644 index 000000000000..53589b8c2c36 --- /dev/null +++ b/_data/icons/bth.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPdGw9RLstggj3xcVtAfzmP2rUy6i2FuM4KPLC9wTiQqm", + "width": 1080, + "height": 1080, + "format": "jpg" + } +] diff --git a/_data/icons/bttc.json b/_data/icons/bttc.json new file mode 100644 index 000000000000..1a795c821e2c --- /dev/null +++ b/_data/icons/bttc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmW7DmMmWVH4xTWf573AkaUD87tsWZyAxwjyvYx8vU6bjK", + "width": 96, + "height": 96, + "format": "png" + } +] diff --git a/_data/icons/caga.json b/_data/icons/caga.json new file mode 100644 index 000000000000..83f69546fde2 --- /dev/null +++ b/_data/icons/caga.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmeiop9gSdzU4NNJ6GCuPk6AeYwD9pbhEFVfRdk4dXs3kJ", + "width": 640, + "height": 640, + "format": "png" + } +] diff --git a/_data/icons/callistonetwork.json b/_data/icons/callistonetwork.json new file mode 100644 index 000000000000..aece2c4353f1 --- /dev/null +++ b/_data/icons/callistonetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQbn4Jr6PLSsgFo1eALKQ7eMfndJJJ4B15a9yj5G5vMLC", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/celestium.json b/_data/icons/celestium.json new file mode 100644 index 000000000000..3b937aca4e33 --- /dev/null +++ b/_data/icons/celestium.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdoqEVRnp6Z49VTxEjPMRMAfUv1CbN7wbFw5G1S34SqeA", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/changchain.json b/_data/icons/changchain.json new file mode 100644 index 000000000000..550af32333d3 --- /dev/null +++ b/_data/icons/changchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbEytMCh2xFr7q87HjthX4K2MKmjfHih2mqS42tqTZoMy", + "width": 1024, + "height": 1024, + "format": "jpg" + } +] diff --git a/_data/icons/cheesechain.json b/_data/icons/cheesechain.json new file mode 100644 index 000000000000..930efdd9b7f8 --- /dev/null +++ b/_data/icons/cheesechain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNixMsKsnQKM925X3w85TBgFRFRFAe4gGGQw79UnT8BrV", + "width": 512, + "height": 512, + "format": "jpg" + } +] diff --git a/_data/icons/cipherem.json b/_data/icons/cipherem.json new file mode 100644 index 000000000000..d11a441b25c0 --- /dev/null +++ b/_data/icons/cipherem.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmP8oHKtqUiSxmNcZMFMy5DSFCZQm17uF32FEHojx8HQ5z", + "width": 118, + "height": 118, + "format": "svg" + } +] diff --git a/_data/icons/cipherscan.json b/_data/icons/cipherscan.json new file mode 100644 index 000000000000..ad066c2cea81 --- /dev/null +++ b/_data/icons/cipherscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUrWn3VG9Jmg2GToV1dqwZUYwLZHU8daZSXEURs5o6xwt", + "width": 118, + "height": 118, + "format": "svg" + } +] diff --git a/_data/icons/citrea.json b/_data/icons/citrea.json new file mode 100644 index 000000000000..3b3ef4531621 --- /dev/null +++ b/_data/icons/citrea.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTfgH4X7ZWkHprKgjUZ7SDcCGtS5f2CBuaTEtQYMsydmJ", + "width": 480, + "height": 480, + "format": "png" + } +] diff --git a/_data/icons/citro.json b/_data/icons/citro.json new file mode 100644 index 000000000000..d6ab4013bdad --- /dev/null +++ b/_data/icons/citro.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2ws", + "width": 24, + "height": 24, + "format": "svg" + } +] diff --git a/_data/icons/co2e.json b/_data/icons/co2e.json new file mode 100644 index 000000000000..8a9901dfeacb --- /dev/null +++ b/_data/icons/co2e.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmdcs7BTuVPjMxfQjfcWdzVeRiXwhzRtRj637pyGRbT9ff", + "width": 2400, + "height": 2400, + "format": "png" + } +] diff --git a/_data/icons/coinsec.json b/_data/icons/coinsec.json new file mode 100644 index 000000000000..6404bedc97bc --- /dev/null +++ b/_data/icons/coinsec.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeUyBe58BPndt6SpH9Tn1a8AYpNtHbMVhVyZt8Ppc4HTB", + "width": 200, + "height": 200, + "format": "svg" + } +] diff --git a/_data/icons/coinzaxIcon.json b/_data/icons/coinzaxIcon.json new file mode 100644 index 000000000000..d859a76e4aee --- /dev/null +++ b/_data/icons/coinzaxIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidkgk23jw6vwxrfoslz2hzucz5s63fyetewehoyldjjhmogx56qam", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/connext.json b/_data/icons/connext.json new file mode 100644 index 000000000000..d09144e62cec --- /dev/null +++ b/_data/icons/connext.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQBuGUPQ4f7zREjdviV4itwJB6gCbYEMvfaiWqFMweTPm", + "width": 128, + "height": 128, + "format": "png" + } +] diff --git a/_data/icons/conwai.json b/_data/icons/conwai.json new file mode 100644 index 000000000000..1ac08540b6c4 --- /dev/null +++ b/_data/icons/conwai.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbCavc5ge8bp2neLuUzDbbZd737kHTN59dFgGDNsZezSD", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/conwaiscan.json b/_data/icons/conwaiscan.json new file mode 100644 index 000000000000..1ac08540b6c4 --- /dev/null +++ b/_data/icons/conwaiscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbCavc5ge8bp2neLuUzDbbZd737kHTN59dFgGDNsZezSD", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/core.json b/_data/icons/core.json index c04529e0fa1b..8b8e4e9730a8 100644 --- a/_data/icons/core.json +++ b/_data/icons/core.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmeTQaBCkpbsxNNWTpoNrMsnwnAEf1wYTcn7CiiZGfUXD2", - "width": 200, - "height": 217, + "url": "ipfs://QmdUgiGaD6fGjhb9x1NvfccvEBBFq2YHSm9yb8FNhpwHkW", + "width": 512, + "height": 512, "format": "png" } ] diff --git a/_data/icons/corn.json b/_data/icons/corn.json new file mode 100644 index 000000000000..a76558ba67e9 --- /dev/null +++ b/_data/icons/corn.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiho2xcmjcg6tv7dbns5jl7zsp7f5rpymjuv3c2h2trvmfwm3hmwce", + "width": 938, + "height": 938, + "format": "png" + } +] diff --git a/_data/icons/cratd2c-testnet.json b/_data/icons/cratd2c-testnet.json new file mode 100644 index 000000000000..3d02e36c0d98 --- /dev/null +++ b/_data/icons/cratd2c-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiczmtj47hwgmmtsy3xylhswu4q6rphpt42hznv37shjiaxsx3uqde", + "width": 128, + "height": 128, + "format": "png" + } +] diff --git a/_data/icons/creatorchain.json b/_data/icons/creatorchain.json new file mode 100644 index 000000000000..4c4134356785 --- /dev/null +++ b/_data/icons/creatorchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmarU6J1FyXddaRkrWagEXN39TXUTNdVcuDTfHFKvvs3D4", + "width": 1280, + "height": 1280, + "format": "png" + } +] diff --git a/_data/icons/creditcoin.json b/_data/icons/creditcoin.json index 7cd9c53c795a..c2acddb22fd6 100644 --- a/_data/icons/creditcoin.json +++ b/_data/icons/creditcoin.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmTfecECALDCy51zwVbXBSXb6TokqowCYzVLv65etahLxX", - "width": 1024, - "height": 1024, - "format": "png" + "url": "ipfs://QmbAk3S8XwCRYqKXbXc9rwBNJ9bWTUBgC6HFDE5ayrGfnd", + "width": 1200, + "height": 1200, + "format": "jpg" } ] diff --git a/_data/icons/crossfi.json b/_data/icons/crossfi.json new file mode 100644 index 000000000000..e378a6f1481f --- /dev/null +++ b/_data/icons/crossfi.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbRJzDeAdMkEXkqDwBwezpUxyjTPHZ2iXEomqKPvWZcWE", + "width": 40, + "height": 42, + "format": "svg" + } +] diff --git a/_data/icons/curtis.json b/_data/icons/curtis.json new file mode 100644 index 000000000000..f08343ce65f7 --- /dev/null +++ b/_data/icons/curtis.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTqiPnYZx6ZyPPbtsuh8VvvoH6DSCJGjTUgtTN9X8NScP", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/cyberchain.json b/_data/icons/cyberchain.json new file mode 100644 index 000000000000..964e80b26100 --- /dev/null +++ b/_data/icons/cyberchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUtbe2mpDGxqvQZxgad9VMMeAS4aSTmqfn7Px5GMJvbpD", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/cytonic_l1.json b/_data/icons/cytonic_l1.json new file mode 100644 index 000000000000..945df2d75228 --- /dev/null +++ b/_data/icons/cytonic_l1.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWASoRS8k7YspDLiwz5xfpusBtqHwy5hR5B9NynGx8HGt", + "width": 326, + "height": 326, + "format": "png" + } +] diff --git a/_data/icons/cytonic_l2.json b/_data/icons/cytonic_l2.json new file mode 100644 index 000000000000..3738cb88b1a7 --- /dev/null +++ b/_data/icons/cytonic_l2.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUetrmaY5KwmRzjgcoZCfqqTaEYSc57V2EVBjFQwpZrE1", + "width": 326, + "height": 326, + "format": "png" + } +] diff --git a/_data/icons/daily.json b/_data/icons/daily.json new file mode 100644 index 000000000000..b3b071266d1d --- /dev/null +++ b/_data/icons/daily.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qme8Ju8Bn1XHMGGx2FfXCookAPLLhzxYpfZL7Fcm3QLgLp", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/darwin.json b/_data/icons/darwin.json new file mode 100644 index 000000000000..5458ee6c7a45 --- /dev/null +++ b/_data/icons/darwin.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiec5zeuhb4tkbhvbrmeeqrsqtjbhrjfpqx4yysejephiczresf5ci", + "width": 2000, + "height": 2000, + "format": "png" + } +] diff --git a/_data/icons/davinci.json b/_data/icons/davinci.json new file mode 100644 index 000000000000..415d1e091077 --- /dev/null +++ b/_data/icons/davinci.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreierr6bqbopiokhqcisqdfxjkslnjgk2j77dmq2ec4oitpgxtm4wha", + "width": 406, + "height": 351, + "format": "svg" + } +] diff --git a/_data/icons/dbc.json b/_data/icons/dbc.json new file mode 100644 index 000000000000..c9bdfa80358a --- /dev/null +++ b/_data/icons/dbc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXxRtZnrvzckKVwbRLpKpP9E9vGgQCUPkLroQDCYTmQdG", + "width": 416, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/dbkchain.json b/_data/icons/dbkchain.json new file mode 100644 index 000000000000..633ee1dd39ea --- /dev/null +++ b/_data/icons/dbkchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeib7ovny3xkl4nr4a5oqvoqwf7dcjtqavydysclfmbavbl2oekhxty", + "width": 1600, + "height": 1600, + "format": "png" + } +] diff --git a/_data/icons/deepsafe.json b/_data/icons/deepsafe.json new file mode 100644 index 000000000000..568e11b86076 --- /dev/null +++ b/_data/icons/deepsafe.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQJi1wfrLzywtbvNetvc6hV6SL825qvgZSKe3coJv8JNm", + "width": 237, + "height": 237, + "format": "png" + } +] diff --git a/_data/icons/deinfra.json b/_data/icons/deinfra.json new file mode 100644 index 000000000000..cc89f5180c03 --- /dev/null +++ b/_data/icons/deinfra.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeic234jzphpt7pg2jjosi3zohllbjhz6e5gc2snda4uzrmv6cwfbvi", + "width": 411, + "height": 425, + "format": "png" + } +] diff --git a/_data/icons/deriw.json b/_data/icons/deriw.json new file mode 100644 index 000000000000..b90021bd905b --- /dev/null +++ b/_data/icons/deriw.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmf3bGpAoPV6K4JLpmzDW748Toqb9WArGzYP5rMUY5P9ED", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/diode.json b/_data/icons/diode.json new file mode 100644 index 000000000000..0c3fe118c8bd --- /dev/null +++ b/_data/icons/diode.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigsppluw555hxzp43uc7xv6rjodspdij3sqqg2owcdrpilpbqeymm", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/divc.json b/_data/icons/divc.json new file mode 100644 index 000000000000..47cbf7bf1c27 --- /dev/null +++ b/_data/icons/divc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmebuyvTmRvM66rXbxSFtZv7VGj1HtvNQ68hvYpLEPe3bA", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/djt.json b/_data/icons/djt.json new file mode 100644 index 000000000000..b8e8df6ef695 --- /dev/null +++ b/_data/icons/djt.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVCjy8yDeqWHFRNV2CaB82cLheVp37RdVGjwAxxjKqD5L", + "width": 96, + "height": 96, + "format": "png" + } +] diff --git a/_data/icons/dojima.json b/_data/icons/dojima.json new file mode 100644 index 000000000000..7cffe7f8695e --- /dev/null +++ b/_data/icons/dojima.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmarhJVEb6jVNfW1GP2rcvAfto6DFdr7RSauZQxjd3iFam", + "width": 379, + "height": 379, + "format": "png" + } +] diff --git a/_data/icons/drawchain.json b/_data/icons/drawchain.json new file mode 100644 index 000000000000..5f88a4362927 --- /dev/null +++ b/_data/icons/drawchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihhhjsjsmsl3tpoocu244vul47dxtfvumokncmeg6fu7rgdpze7ia", + "width": 327, + "height": 313, + "format": "svg" + } +] diff --git a/_data/icons/dscscan.json b/_data/icons/dscscan.json new file mode 100644 index 000000000000..f46fee8e7683 --- /dev/null +++ b/_data/icons/dscscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfY4XoQCj3WbiSsj7nZyBXwkDX6PFsWSroTDvhP9Eoy6S", + "width": 53, + "height": 53, + "format": "png" + } +] diff --git a/_data/icons/duckchain.json b/_data/icons/duckchain.json new file mode 100644 index 000000000000..d0b0face249d --- /dev/null +++ b/_data/icons/duckchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTJwaQcF6widssKvbNgdM4AVaddiTqFM2j4n6x17Sp3FL", + "width": 1042, + "height": 1042, + "format": "png" + } +] diff --git a/_data/icons/dustboy.json b/_data/icons/dustboy.json new file mode 100644 index 000000000000..0e005d52f509 --- /dev/null +++ b/_data/icons/dustboy.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmV8Ks2Bikdy3VejY1YRAoucB5nifVocBhG7GJqfGmZuF3", + "width": 284, + "height": 284, + "format": "svg" + } +] diff --git a/_data/icons/edgen.json b/_data/icons/edgen.json new file mode 100644 index 000000000000..d8f76d37c37e --- /dev/null +++ b/_data/icons/edgen.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVwYkRWgXgoYDPgBFntxWYFquKusuMMVc8TG5hrEVnXLV", + "width": 502, + "height": 442, + "format": "jpg" + } +] diff --git a/_data/icons/edollar.json b/_data/icons/edollar.json new file mode 100644 index 000000000000..2357143b4c86 --- /dev/null +++ b/_data/icons/edollar.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreic4aq265oaf6yze7ba5okefqh6vnqudyrz6ovukvbnrlhet36itle", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/bkc.json b/_data/icons/egoldchain.json similarity index 51% rename from _data/icons/bkc.json rename to _data/icons/egoldchain.json index 292b1b52382f..3778c69b888a 100644 --- a/_data/icons/bkc.json +++ b/_data/icons/egoldchain.json @@ -1,6 +1,6 @@ [ { - "url": "ipfs://QmYFYwyquipwc9gURQGcEd4iAq7pq15chQrJ3zJJe9HuFT", + "url": "ipfs://QmTQh54Rf3DFYxZZoQQ9yCjeAYXwzTaVua4KLmXX8AsFNF", "width": 1000, "height": 1000, "format": "png" diff --git a/_data/icons/elysium.json b/_data/icons/elysium.json new file mode 100644 index 000000000000..e642b88ecc52 --- /dev/null +++ b/_data/icons/elysium.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWNCNMtnJaphMJY3dbP2pXPLQG6xayhkc2JWahoXECgsG", + "width": 285, + "height": 300, + "format": "png" + } +] diff --git a/_data/icons/emc.json b/_data/icons/emc.json new file mode 100644 index 000000000000..f1f83b86f185 --- /dev/null +++ b/_data/icons/emc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUDymyXZS9eUn5p3tyDyxhD8GMB91HUBAAvySwENfPevh", + "width": 502, + "height": 579, + "format": "png" + } +] diff --git a/_data/icons/emctest.json b/_data/icons/emctest.json new file mode 100644 index 000000000000..f1f83b86f185 --- /dev/null +++ b/_data/icons/emctest.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUDymyXZS9eUn5p3tyDyxhD8GMB91HUBAAvySwENfPevh", + "width": 502, + "height": 579, + "format": "png" + } +] diff --git a/_data/icons/eni-test.json b/_data/icons/eni-test.json new file mode 100644 index 000000000000..04e14841fdc6 --- /dev/null +++ b/_data/icons/eni-test.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdhqHQnPHhuhowh3ifncxw2SNzjMRCy2jQY8aMScpjUpd", + "width": 677, + "height": 687, + "format": "svg" + } +] diff --git a/_data/icons/eni.json b/_data/icons/eni.json new file mode 100644 index 000000000000..04e14841fdc6 --- /dev/null +++ b/_data/icons/eni.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdhqHQnPHhuhowh3ifncxw2SNzjMRCy2jQY8aMScpjUpd", + "width": 677, + "height": 687, + "format": "svg" + } +] diff --git a/_data/icons/eram.json b/_data/icons/eram.json new file mode 100644 index 000000000000..8738ef2e2e89 --- /dev/null +++ b/_data/icons/eram.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQyu82MtGVLYMwCc5rseNXDV12V3UUX7iNq8q86SyeaPh", + "width": 258, + "height": 258, + "format": "png" + } +] diff --git a/_data/icons/erbie.json b/_data/icons/erbie.json new file mode 100644 index 000000000000..03a19b129cce --- /dev/null +++ b/_data/icons/erbie.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfS33Wd4e5pwq4JpNeK3wV1tbPDTakFA6KLxjewHp553z", + "width": 163, + "height": 159, + "format": "png" + } +] diff --git a/_data/icons/esports.json b/_data/icons/esports.json new file mode 100644 index 000000000000..b7c29d9b570f --- /dev/null +++ b/_data/icons/esports.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaNywdCUrHoe3grk3hhHXrsTgc3tHVpt2ZaoRYoNkgEvc", + "width": 1224, + "height": 1280, + "format": "jpg" + } +] diff --git a/_data/icons/esync.json b/_data/icons/esync.json new file mode 100644 index 000000000000..f3a54901a7ae --- /dev/null +++ b/_data/icons/esync.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVo6h7hQcduywA4j5n5vzB75y2PiVaSN4HuNwgB5XiBsj", + "width": 297, + "height": 70, + "format": "svg" + } +] diff --git a/_data/icons/eteria.json b/_data/icons/eteria.json new file mode 100644 index 000000000000..7e9b7756325a --- /dev/null +++ b/_data/icons/eteria.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreieuh4toxf5wvysvvylajsfgholhg5tplyzwsfv5f2nvmhr537jp7y", + "width": 193, + "height": 193, + "format": "png" + } +] diff --git a/_data/icons/eternal.json b/_data/icons/eternal.json deleted file mode 100644 index 51d033d4cca9..000000000000 --- a/_data/icons/eternal.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url": "ipfs://bafybeibexfskndvhn5xtrcmpjoifp2ufnzgwiwbfrjcxat55alergskkve", - "width": 122, - "height": 133, - "format": "svg" - } -] diff --git a/_data/icons/ethernity.json b/_data/icons/ethernity.json new file mode 100644 index 000000000000..ef45afc254bb --- /dev/null +++ b/_data/icons/ethernity.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihditrs2v6atsj2lzq2auchqiujg2d7lc2owot6tvj7rxe6ikgnv4", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/ethos.json b/_data/icons/ethos.json new file mode 100644 index 000000000000..e68a2c203563 --- /dev/null +++ b/_data/icons/ethos.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTHkNAvYzYnHoKm5ht7RKXqChFeBndptunhMDfcCict2J", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/ethpar.json b/_data/icons/ethpar.json new file mode 100644 index 000000000000..509b214abf26 --- /dev/null +++ b/_data/icons/ethpar.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiezag3ijij32zbo3ko7xes2hafsqjhru22ab6ia35ygafc66kjb6u", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/etpchain.json b/_data/icons/etpchain.json new file mode 100644 index 000000000000..49120e04bd3c --- /dev/null +++ b/_data/icons/etpchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreid4pi4wvhivaydzlflqqgdbddrmmc2szqtgsuhrp4hgfplg2z7ffe", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/eventum.json b/_data/icons/eventum.json new file mode 100644 index 000000000000..0c324c0eeb78 --- /dev/null +++ b/_data/icons/eventum.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigor7jjj7q4pczpz5wsj2fhdmkmx7o3r7yp35tcrz2verfkgucymi", + "width": 512, + "height": 512, + "format": "jpg" + } +] diff --git a/_data/icons/everclear.json b/_data/icons/everclear.json new file mode 100644 index 000000000000..012c84433dc9 --- /dev/null +++ b/_data/icons/everclear.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQBiGUPQ4f7zREjdvaV4itwJB2gCaYEMvtaiDqFMweTPn", + "width": 501, + "height": 501, + "format": "svg" + } +] diff --git a/_data/icons/evnode.json b/_data/icons/evnode.json new file mode 100644 index 000000000000..c684f673c5f4 --- /dev/null +++ b/_data/icons/evnode.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWjBJXdpBzNHtakvEkjKXU5XMJn8JaUTNLfaUt8Y1swPE", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/evoz.json b/_data/icons/evoz.json new file mode 100644 index 000000000000..8e5ff3e6bf70 --- /dev/null +++ b/_data/icons/evoz.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreia7pxdzauhdibtcjqhy4ywwshdgcspvh2jt3g4hyvamfymldlwhi4", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/exorium.json b/_data/icons/exorium.json new file mode 100644 index 000000000000..5e3d5700c1d8 --- /dev/null +++ b/_data/icons/exorium.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTY2Z7AEEWxmzQyh7DFG8fyR3w6Y166GDJfi6o3xo6GgV", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/expchain.json b/_data/icons/expchain.json new file mode 100644 index 000000000000..7ea27f7d5026 --- /dev/null +++ b/_data/icons/expchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUf9AtP2ZjQFvE8V4UV5RXQJkfUrCAh4tyY7ZHesBhCMB", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/exsat.json b/_data/icons/exsat.json new file mode 100644 index 000000000000..b131ad6abd21 --- /dev/null +++ b/_data/icons/exsat.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYZ1FjYCByj89pNiZfae2a9uTm7pJMKrzdQ1V1UKwhwNs", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/ferrum.json b/_data/icons/ferrum.json new file mode 100644 index 000000000000..e09767e71341 --- /dev/null +++ b/_data/icons/ferrum.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qme5iDsQTDfLbyXS6iUEmvL4pWTPEiXc5kqFs7jjthqCWP", + "width": 180, + "height": 180, + "format": "png" + } +] diff --git a/_data/icons/firachainIcon.json b/_data/icons/firachainIcon.json new file mode 100644 index 000000000000..35bc07b7e292 --- /dev/null +++ b/_data/icons/firachainIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifpbnvzcnl3badp6uig64fxxnf5tquw2ujyxqa5r2r36wuwd3yo5m", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/flame.json b/_data/icons/flame.json new file mode 100644 index 000000000000..fe74d537d524 --- /dev/null +++ b/_data/icons/flame.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmf6P4yzrcavKhrxmQaqErLxa4TBnUVUMX4wyVRNhJMDuw", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/form.json b/_data/icons/form.json new file mode 100644 index 000000000000..df8c2e8cb4ed --- /dev/null +++ b/_data/icons/form.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWrjS43miGAKEzKyNn1YajFn4zG7cDiPiaNHF1gTqKR91", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/forma.json b/_data/icons/forma.json new file mode 100644 index 000000000000..d699a2005ac4 --- /dev/null +++ b/_data/icons/forma.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQkjcadjAEefa4HLG26pKFvCaNZeZ7wWNxMkCVarW9tiU", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/forta-chain.json b/_data/icons/forta-chain.json new file mode 100644 index 000000000000..0a3eef5dfa5f --- /dev/null +++ b/_data/icons/forta-chain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmd3KFA5oJbPHCe7rdKdzYBiBPoN8QWxCvU9yqteV3fDCQ", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/funki.json b/_data/icons/funki.json index 42ec94d1dcb1..97042fc32937 100644 --- a/_data/icons/funki.json +++ b/_data/icons/funki.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmWLjmfbjx2qZC39GCFXDzt72NXVTtDBVzVSq6rwaquyp3", + "url": "ipfs://QmQnQZ2YUuJMDYoKWhiA1KqY67VFjvMLSXTww46pnrS8js", "width": 1200, - "height": 410, + "height": 1200, "format": "png" } ] diff --git a/_data/icons/fxcore.json b/_data/icons/fxcore.json deleted file mode 100644 index fd372ed6f3ff..000000000000 --- a/_data/icons/fxcore.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url": "ipfs://QmauD5hzc5q1VgEU1nT4AGLCeV79CB8GgfnXXeeLmBZVHf", - "width": 36, - "height": 36, - "format": "png" - } -] diff --git a/_data/icons/fyi.json b/_data/icons/fyi.json new file mode 100644 index 000000000000..6ef32e7b0148 --- /dev/null +++ b/_data/icons/fyi.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbCPtffFMcvifBKaddrjHtVLZrQorQiFgnNLAp9s2sS9x", + "width": 35, + "height": 35, + "format": "svg" + } +] diff --git a/_data/icons/game7.json b/_data/icons/game7.json new file mode 100644 index 000000000000..0806c8a70783 --- /dev/null +++ b/_data/icons/game7.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmbk23C5vXpGBfq8SuPXR1PrfWER2m8w6LGqBkhXAvxia9", + "width": 40, + "height": 40, + "format": "svg" + } +] diff --git a/_data/icons/game7testnet.json b/_data/icons/game7testnet.json new file mode 100644 index 000000000000..a13ab2be21ca --- /dev/null +++ b/_data/icons/game7testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmbk23C5vZpGBfq8SuPXR1PrfWER2m8w6LGqBkhXAvxia1", + "width": 40, + "height": 40, + "format": "svg" + } +] diff --git a/_data/icons/geb.json b/_data/icons/geb.json new file mode 100644 index 000000000000..1795df3bae96 --- /dev/null +++ b/_data/icons/geb.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmT8DN1zVgkDDWV17kmKqP6vcJQZfhCKVj3HtgqbxUbi9g", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/geist.json b/_data/icons/geist.json new file mode 100644 index 000000000000..5406c1312bd0 --- /dev/null +++ b/_data/icons/geist.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNih9epd2WkWTCWD9nwXyUzpaBcPALJH66Fjq1YywpcA8", + "width": 1016, + "height": 1016, + "format": "png" + } +] diff --git a/_data/icons/glc.json b/_data/icons/glc.json new file mode 100644 index 000000000000..212578760d54 --- /dev/null +++ b/_data/icons/glc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTw21p6UfXVH2BCU81G2Ck28ecoknz4v9mC35fF8Z987i", + "width": 512, + "height": 557, + "format": "png" + } +] diff --git a/_data/icons/glide.json b/_data/icons/glide.json new file mode 100644 index 000000000000..78aadc79ba16 --- /dev/null +++ b/_data/icons/glide.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihxec2ckjvyoh5rhk4j2fvyqquiw5mievvs7up7fl2dfef5d767aa", + "width": 700, + "height": 700, + "format": "svg" + } +] diff --git a/_data/icons/glue.json b/_data/icons/glue.json new file mode 100644 index 000000000000..d05614814a85 --- /dev/null +++ b/_data/icons/glue.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRPBdzXX433zTD8zLjFu9uYYq16aLz1Pu1xCjJZYMP4wE", + "width": 72, + "height": 72, + "format": "svg" + } +] diff --git a/_data/icons/goat.json b/_data/icons/goat.json new file mode 100644 index 000000000000..6cb63ae1c237 --- /dev/null +++ b/_data/icons/goat.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifrhbzlufbvxbhywu4rmkkij4ur2qcg3zlk6irqnbabbjfj3cud2u", + "width": 1069, + "height": 1080, + "format": "jpg" + } +] diff --git a/_data/icons/gobbl.json b/_data/icons/gobbl.json new file mode 100644 index 000000000000..20d4574eed4f --- /dev/null +++ b/_data/icons/gobbl.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQbJTFnUfWf31d16beZfqM4Fo5NRJjryNrDMyNfj9YQnS", + "width": 1280, + "height": 1280, + "format": "png" + } +] diff --git a/_data/icons/gpt.json b/_data/icons/gpt.json new file mode 100644 index 000000000000..e313863d3781 --- /dev/null +++ b/_data/icons/gpt.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmdh4Lzamv34Ae2bhA9M6GLCjXxPAtHC5zdG5ZNidrdenA", + "width": 1000, + "height": 1000, + "format": "jpg" + } +] diff --git a/_data/icons/graphite.json b/_data/icons/graphite.json new file mode 100644 index 000000000000..a7e87567e8e2 --- /dev/null +++ b/_data/icons/graphite.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigzf3eo43njqreysfsnvot3rzdcvj642o4ekjhjla2efyuiy46vmu", + "width": 32, + "height": 32, + "format": "png" + } +] diff --git a/_data/icons/grvt.json b/_data/icons/grvt.json new file mode 100644 index 000000000000..4bea7e9238cf --- /dev/null +++ b/_data/icons/grvt.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVRdhjaBYeUVCkF8SUYMqAgGtbePYaozzy4YtMVKazLut", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/gtc.json b/_data/icons/gtc.json new file mode 100644 index 000000000000..b5c0e469ffbb --- /dev/null +++ b/_data/icons/gtc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiaaq7gogws6uqcvo6imxbxfgpdhewybh7bxgtfny2i2as5nidbdje", + "width": 312, + "height": 312, + "format": "png" + } +] diff --git a/_data/icons/gunz.json b/_data/icons/gunz.json new file mode 100644 index 000000000000..d09b2e0cf120 --- /dev/null +++ b/_data/icons/gunz.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreid7wspejxmvsqkycru3lnfppgqre6zavkyw4vklnzrhoiycqsjzpa", + "width": 320, + "height": 320, + "format": "png" + } +] diff --git a/_data/icons/ham.json b/_data/icons/ham.json new file mode 100644 index 000000000000..fb3f2bba7b12 --- /dev/null +++ b/_data/icons/ham.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcbYVenTET9HBS7vs7SGv1MNqnRscAKVF5kaRVHaVCfvs", + "width": 500, + "height": 500, + "format": "jpg" + } +] diff --git a/_data/icons/haradev.json b/_data/icons/haradev.json new file mode 100644 index 000000000000..1d5bcb1ba22c --- /dev/null +++ b/_data/icons/haradev.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihcwkjjx7twil7phw75d4rcnjzb3jxxammyocvbn6rsujwk23tgrq", + "width": 1160, + "height": 1160, + "format": "png" + } +] diff --git a/_data/icons/haust.json b/_data/icons/haust.json new file mode 100644 index 000000000000..1451f5b4dd84 --- /dev/null +++ b/_data/icons/haust.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRAjG8kc6PJr3xFGYhq1pWiiDoERD3Wj8wR7Cu59HoFnm", + "width": 206, + "height": 206, + "format": "svg" + } +] diff --git a/_data/icons/heima.json b/_data/icons/heima.json new file mode 100644 index 000000000000..7adb2227a81f --- /dev/null +++ b/_data/icons/heima.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreib3dv4feoxzpmtjoy54zndilbgkdhs4wxo4sja46u7zkuk36de2pu", + "width": 193, + "height": 193, + "format": "svg" + } +] diff --git a/_data/icons/helioschain.json b/_data/icons/helioschain.json new file mode 100644 index 000000000000..86ea31419151 --- /dev/null +++ b/_data/icons/helioschain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifrqrkoeenmx6wja2rj5o6sj3mtn5veyvx7dis6mba4bycd7yziba", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/henez.json b/_data/icons/henez.json new file mode 100644 index 000000000000..8ab2ebd7b221 --- /dev/null +++ b/_data/icons/henez.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibgv5ejrws5xpppwgx47nfiajbgskjwjmibl6gjos7kyoxjrnvhi4", + "width": 400, + "height": 400, + "format": "jpg" + } +] diff --git a/_data/icons/hetu.json b/_data/icons/hetu.json new file mode 100644 index 000000000000..a83ca3293050 --- /dev/null +++ b/_data/icons/hetu.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRt6bLTDns7XVdRRmo1vLim86ThgF3H26WKiDsH5oSu3b", + "width": 45, + "height": 38, + "format": "png" + } +] diff --git a/_data/icons/highOctane.json b/_data/icons/highOctane.json new file mode 100644 index 000000000000..c97b3bed9796 --- /dev/null +++ b/_data/icons/highOctane.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibmj6pnsiybggr3koh5hbl2saungutcwbxme6pehteg5kzpzleubu", + "width": 331, + "height": 331, + "format": "png" + } +] diff --git a/_data/icons/huddle01.json b/_data/icons/huddle01.json new file mode 100644 index 000000000000..1804bbf54f5b --- /dev/null +++ b/_data/icons/huddle01.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiboef4bxbv2nnnvi4zph7poolk6kyno5qycnjzvbyep3gv6zkd2qa", + "width": 200, + "height": 200, + "format": "jpg" + } +] diff --git a/_data/icons/hydra.json b/_data/icons/hydra.json new file mode 100644 index 000000000000..d59cee9c5868 --- /dev/null +++ b/_data/icons/hydra.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVxyUjuA8t9q3oWDgv8ExqaUXcRuDqiKrZAiLaBWHYcmG", + "width": 722, + "height": 813, + "format": "png" + } +] diff --git a/_data/icons/hydradx.json b/_data/icons/hydradx.json deleted file mode 100644 index 85cb2e273a5a..000000000000 --- a/_data/icons/hydradx.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url": "ipfs://QmQnx3j1ZtQ9Br873FuS6612HQfosXsr4Whew8eN4ArYwE", - "width": 400, - "height": 400, - "format": "svg" - } -] diff --git a/_data/icons/hydration.json b/_data/icons/hydration.json new file mode 100644 index 000000000000..83074877ec28 --- /dev/null +++ b/_data/icons/hydration.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibipnyu4vdcvkgkxtgqlf7wdpmntstdy6q52bz5b7xekfaiduylru", + "width": 400, + "height": 400, + "format": "svg" + } +] diff --git a/_data/icons/iChain.json b/_data/icons/iChain.json new file mode 100644 index 000000000000..62012d1dabda --- /dev/null +++ b/_data/icons/iChain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcumhDxUyoLTHkcMKgPqkpGnnjwSTqE2KGFnDXXFY8mMo", + "width": 40, + "height": 38, + "format": "png" + } +] diff --git a/_data/icons/idn.json b/_data/icons/idn.json new file mode 100644 index 000000000000..12f1e57d7277 --- /dev/null +++ b/_data/icons/idn.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiarbxyddbnz5x36rj4l2ousrwnsjminqjjcswsttzxqckqwz6b7ba", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/inco.json b/_data/icons/inco.json new file mode 100644 index 000000000000..efd96f35398b --- /dev/null +++ b/_data/icons/inco.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmU9aHw1i3qM8rZekXfb4rFZHPxVvsLdnpohKLGGFYewMg", + "width": 1661, + "height": 480, + "format": "png" + } +] diff --git a/_data/icons/inertiascan.json b/_data/icons/inertiascan.json new file mode 100644 index 000000000000..0809d1a48aa7 --- /dev/null +++ b/_data/icons/inertiascan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbgWUbQMgc4ASEjN7HcNU7yfgPahYaTeogNLfzvWmcYEJ", + "width": 54, + "height": 53, + "format": "png" + } +] diff --git a/_data/icons/initverse.json b/_data/icons/initverse.json new file mode 100644 index 000000000000..a3e6566bf567 --- /dev/null +++ b/_data/icons/initverse.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreieuowxl2syu2cfiebhqkdjrokbwq4sulcdrww3z4wws3vssm3phzi", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/inoai.json b/_data/icons/inoai.json index 35ef51cbddd1..cf7ea1ffaca0 100644 --- a/_data/icons/inoai.json +++ b/_data/icons/inoai.json @@ -1,6 +1,6 @@ [ { - "url": "ipfs://QmdP8zAZEwUbf3pt8t9Ykho866ni5AMgutvkn3cBsV8gKG", + "url": "ipfs://QmdiEBREiSP9TBHqxV8Ap3kehvBktBWFCpXs3mkC4e18zM", "width": 500, "height": 500, "format": "png" diff --git a/_data/icons/isuncoin.json b/_data/icons/isuncoin.json new file mode 100644 index 000000000000..5144f42e38cd --- /dev/null +++ b/_data/icons/isuncoin.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmdj8PwchmbpZKYvkB3oJiRX9eZdY6C16AbEz6D1DU3Vqn", + "width": 60, + "height": 61, + "format": "svg" + } +] diff --git a/_data/icons/jaihoIcon.json b/_data/icons/jaihoIcon.json new file mode 100644 index 000000000000..4b51df1010a0 --- /dev/null +++ b/_data/icons/jaihoIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUtKXY4N9kNCs9hAkAyi1nsvMWvDzs5vUjgYXTJoZCYqu", + "width": 450, + "height": 450, + "format": "png" + } +] diff --git a/_data/icons/janction.json b/_data/icons/janction.json new file mode 100644 index 000000000000..4ee26f63e723 --- /dev/null +++ b/_data/icons/janction.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreieemyhmsjo3a3aghqcwcitqwdxt7fxtsz4tmvlu2io3hcbtetyg6e", + "width": 198, + "height": 199, + "format": "png" + } +] diff --git a/_data/icons/jfinpos.json b/_data/icons/jfinpos.json new file mode 100644 index 000000000000..9f5e91718000 --- /dev/null +++ b/_data/icons/jfinpos.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVXd6Jm541mVJbfzHQaZNZce9znvm8iXfxgf91J2XNg61", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/joc.json b/_data/icons/joc.json index 47f7f8ecf641..b41b779a283c 100644 --- a/_data/icons/joc.json +++ b/_data/icons/joc.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://bafkreidhsiuqrct42bel76zhi3rx35k4lnk6aqgde27nvvxcz563ttfefy", - "width": 2000, - "height": 2000, + "url": "ipfs://bafkreigkeot6kwnehcrmhppzd5yqaifttmmvyznv3qjo7agh2figylfyvu", + "width": 500, + "height": 500, "format": "png" } ] diff --git a/_data/icons/joct.json b/_data/icons/joct.json new file mode 100644 index 000000000000..c01c30abb43c --- /dev/null +++ b/_data/icons/joct.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreih2t3wrflgcnha4aeonyn23h43rcbskatzvwliyatp5shudkwu2d4", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/juneo-bch1.json b/_data/icons/juneo-bch1.json new file mode 100644 index 000000000000..f4025332c838 --- /dev/null +++ b/_data/icons/juneo-bch1.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWCg8qEUtUBWvk7UMJZ7kkqg9SMs63k5Np6hfguZ7btob", + "width": 273, + "height": 273, + "format": "png" + } +] diff --git a/_data/icons/juneo-dai1.json b/_data/icons/juneo-dai1.json new file mode 100644 index 000000000000..2e68304abe63 --- /dev/null +++ b/_data/icons/juneo-dai1.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmegd2hkWhyKjyUuQQ2vMauaj3N5J89kEPqN6YNT6s64zT", + "width": 273, + "height": 273, + "format": "png" + } +] diff --git a/_data/icons/juneo-doge1.json b/_data/icons/juneo-doge1.json new file mode 100644 index 000000000000..997ea0c2c631 --- /dev/null +++ b/_data/icons/juneo-doge1.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXTzkZKgRHrkxJyP9FZwHTgmk2ovC9b1vrsfhHc6jvjzF", + "width": 273, + "height": 273, + "format": "png" + } +] diff --git a/_data/icons/juneo-eur1.json b/_data/icons/juneo-eur1.json new file mode 100644 index 000000000000..415ceeb56a5e --- /dev/null +++ b/_data/icons/juneo-eur1.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmexytQkcC8yXzEjv3mbaZyxcy7v8vEEPmii2JZQAyGjqM", + "width": 274, + "height": 274, + "format": "png" + } +] diff --git a/_data/icons/juneo-gld1.json b/_data/icons/juneo-gld1.json new file mode 100644 index 000000000000..2f9e10eaaad3 --- /dev/null +++ b/_data/icons/juneo-gld1.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQFqkzi97UKJqmC8KRcFieCuC7KXk4G42j7j5PSF4ByWg", + "width": 273, + "height": 273, + "format": "png" + } +] diff --git a/_data/icons/juneo-link1.json b/_data/icons/juneo-link1.json new file mode 100644 index 000000000000..3b834a07441f --- /dev/null +++ b/_data/icons/juneo-link1.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQqicvzrLaPyDzLCm4mJofTbcdH7xKJrnZYF5ptCyAoTE", + "width": 273, + "height": 273, + "format": "png" + } +] diff --git a/_data/icons/juneo-ltc1.json b/_data/icons/juneo-ltc1.json new file mode 100644 index 000000000000..e19e7fe340a3 --- /dev/null +++ b/_data/icons/juneo-ltc1.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYofWFKyp1ewqn1oZgU9csyfxv1D742kMqNkysx7yRzEm", + "width": 273, + "height": 273, + "format": "png" + } +] diff --git a/_data/icons/juneo-mbtc1.json b/_data/icons/juneo-mbtc1.json new file mode 100644 index 000000000000..013dde704c64 --- /dev/null +++ b/_data/icons/juneo-mbtc1.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSxps298BQUSGihkHy3sF5k8FRX7DqgfCJfJnZgjQs7bf", + "width": 273, + "height": 273, + "format": "png" + } +] diff --git a/_data/icons/juneo-sgd1.json b/_data/icons/juneo-sgd1.json new file mode 100644 index 000000000000..3bcfb3c38e30 --- /dev/null +++ b/_data/icons/juneo-sgd1.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmatZHCTvWWvgLJRphDGuCUv49mWLB3VM5gzGY4uRkzZbe", + "width": 273, + "height": 273, + "format": "png" + } +] diff --git a/_data/icons/juneo-usd1.json b/_data/icons/juneo-usd1.json new file mode 100644 index 000000000000..3bb26ff42b89 --- /dev/null +++ b/_data/icons/juneo-usd1.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTDaiJnZdwDhxLUjtx1qaNJ5VmKdK9xJoqGr7ubV1EXWW", + "width": 273, + "height": 273, + "format": "png" + } +] diff --git a/_data/icons/juneo-usdt1.json b/_data/icons/juneo-usdt1.json new file mode 100644 index 000000000000..e2cec70300f3 --- /dev/null +++ b/_data/icons/juneo-usdt1.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmb7FZMjv6k25vDjNwfpksjsriwrLh7PVsT93eBWzC5pCY", + "width": 273, + "height": 273, + "format": "png" + } +] diff --git a/_data/icons/juneoSocotraTestnet.json b/_data/icons/juneoSocotraTestnet.json new file mode 100644 index 000000000000..e35d9d54ce71 --- /dev/null +++ b/_data/icons/juneoSocotraTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVHCbprTiCen4496EnAKedtJPxYLZXBE1gDusVa23y8kg", + "width": 273, + "height": 273, + "format": "png" + } +] diff --git a/_data/icons/juneomainnet.json b/_data/icons/juneomainnet.json new file mode 100644 index 000000000000..2e6a0c1a19df --- /dev/null +++ b/_data/icons/juneomainnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUXCyNVe6t9MDdWzW95YCLex6iTwG32NYPfR4ZS9r2JTJ", + "width": 250, + "height": 250, + "format": "png" + } +] diff --git a/_data/icons/kakarot.json b/_data/icons/kakarot.json index 51edd343f99a..8c8b6e3f432c 100644 --- a/_data/icons/kakarot.json +++ b/_data/icons/kakarot.json @@ -1,6 +1,6 @@ [ { - "url": "ipfs://QmNTZ9nEomAXK6bLxUbMfTS1TvrsN22HU1zTtxHUpMkUhz", + "url": "ipfs://QmQcB7Q2kqVWhJxXmtN9Ri37rcLH9g6z4UCCYqEzgM3XmW", "width": 1000, "height": 1000, "format": "png" diff --git a/_data/icons/karak.json b/_data/icons/karak.json index bc3495f46366..a6796fb3ea3f 100644 --- a/_data/icons/karak.json +++ b/_data/icons/karak.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmRvHRuhfQgDRyGgt6vCoHqjZW2Dir7siowYnBpR5BRSej", - "width": 1080, - "height": 1080, + "url": "ipfs://bafybeic3dihuytvtm2hnfo7lvsqf43eqbzobtkxn3o3pxptktifsefy7su", + "width": 256, + "height": 256, "format": "png" } ] diff --git a/_data/icons/katana.json b/_data/icons/katana.json new file mode 100644 index 000000000000..e9550428a21e --- /dev/null +++ b/_data/icons/katana.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVAQiumxDxuEW7HdeRW8NiRKVpXVnQumwSW44Uq6py1k7", + "width": 750, + "height": 750, + "format": "png" + } +] diff --git a/_data/icons/kii.json b/_data/icons/kii.json new file mode 100644 index 000000000000..550b57088ed2 --- /dev/null +++ b/_data/icons/kii.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreib5kb73tb5fdvikhxe7nlnf4mmlfcfpsslalaplqfihypcmudlal4", + "width": 524, + "height": 524, + "format": "png" + } +] diff --git a/_data/icons/kite.json b/_data/icons/kite.json new file mode 100644 index 000000000000..0c09bf2d7002 --- /dev/null +++ b/_data/icons/kite.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZmY5VTAaYo3Hd7Y1dyWn5DcffFtr2xpYEHammzfKVoZ2", + "width": 96, + "height": 95, + "format": "png" + } +] diff --git a/_data/icons/koppa.json b/_data/icons/koppa.json new file mode 100644 index 000000000000..50ade4ec2f8e --- /dev/null +++ b/_data/icons/koppa.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbEzU7QQ4uJR2XTmkGAW9GNEsTMt6o8oYshPVeWVbSGaC", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/kub.json b/_data/icons/kub.json new file mode 100644 index 000000000000..3a629e8e3f6c --- /dev/null +++ b/_data/icons/kub.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigwng335wvow35ypah7hpq3m3xga3idods2wqs3cfcncoyzu7vxli", + "width": 4167, + "height": 4167, + "format": "png" + } +] diff --git a/_data/icons/kymtc.json b/_data/icons/kymtc.json new file mode 100644 index 000000000000..ed4a13c09840 --- /dev/null +++ b/_data/icons/kymtc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmR1AnNYGeXpVmsKyzqktk4K1BtFPiaJpeXuLktb9Kwmer", + "width": 1042, + "height": 1038, + "format": "png" + } +] diff --git a/_data/icons/laika.json b/_data/icons/laika.json new file mode 100644 index 000000000000..4de0ea6aa061 --- /dev/null +++ b/_data/icons/laika.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTMbwvGznhMwxWbX28FWtj4Me8ayGQjUQG7zrXPCJzLTa", + "width": 513, + "height": 513, + "format": "png" + } +] diff --git a/_data/icons/landstars.json b/_data/icons/landstars.json new file mode 100644 index 000000000000..08e18d653313 --- /dev/null +++ b/_data/icons/landstars.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibjv5chptzvncnfrro7tlx43q4um2tho7kvebdpk6fm765irfle4q", + "width": 626, + "height": 417, + "format": "jpg" + } +] diff --git a/_data/icons/laosnetwork.json b/_data/icons/laosnetwork.json new file mode 100644 index 000000000000..4b3cb201e22a --- /dev/null +++ b/_data/icons/laosnetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmR8HgbKrHys8QFtH99soGx9KreixpCXJqkFejJdhpyNGo", + "width": 1220, + "height": 1220, + "format": "png" + } +] diff --git a/_data/icons/layerEdge.json b/_data/icons/layerEdge.json new file mode 100644 index 000000000000..e485b41d6ba0 --- /dev/null +++ b/_data/icons/layerEdge.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmT2RotFAn8edji6FqBiP1TpTb1EFqHr28qbQGoRaJ9nTN", + "width": 218, + "height": 211, + "format": "svg" + } +] diff --git a/_data/icons/lens.json b/_data/icons/lens.json new file mode 100644 index 000000000000..8899ba926861 --- /dev/null +++ b/_data/icons/lens.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmP9HNKbbWQLEx5H57BSV3VhJNyVpVaC5B3NBCsyoomTMU", + "width": 400, + "height": 400, + "format": "jpg" + } +] diff --git a/_data/icons/lestnet.json b/_data/icons/lestnet.json new file mode 100644 index 000000000000..fec5336d779a --- /dev/null +++ b/_data/icons/lestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigg4ovuohje6iva42fou7rc7a6fkozvfkg22fhuvhw5oz7vii74ha", + "width": 280, + "height": 280, + "format": "svg" + } +] diff --git a/_data/icons/lif3.json b/_data/icons/lif3.json new file mode 100644 index 000000000000..68461fa2f3c7 --- /dev/null +++ b/_data/icons/lif3.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQqNBEqNnNsaSV6rik6mM8VnaSgYFxfEkjkiXSwgmEgaH", + "width": 200, + "height": 200, + "format": "svg" + } +] diff --git a/_data/icons/lisk.json b/_data/icons/lisk.json new file mode 100644 index 000000000000..8c64795dd47e --- /dev/null +++ b/_data/icons/lisk.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVTS8jmWD5e7jVEn86wLjJsuMnc6s8fym3JbtE4etzSKf", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/lit.json b/_data/icons/lit.json new file mode 100644 index 000000000000..2bb1ae0d60c1 --- /dev/null +++ b/_data/icons/lit.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXZcwET1LhUxfc2mCdiCJFm61jUHsVVXuZYwx8zhvHQxn", + "width": 164, + "height": 120, + "format": "png" + } +] diff --git a/_data/icons/loadnetwork.json b/_data/icons/loadnetwork.json new file mode 100644 index 000000000000..e8222045d7d7 --- /dev/null +++ b/_data/icons/loadnetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidgb2du22hxgj23jhyi2gipiovejn75cp6agmrklhxclu63v5pjxu", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/locacoin.json b/_data/icons/locacoin.json new file mode 100644 index 000000000000..90d3b48e7ff8 --- /dev/null +++ b/_data/icons/locacoin.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSk1Kf6UyA5NxXfBUV4xqxDgpsZnsggWGb7hXhz6to1fz", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/lucky.json b/_data/icons/lucky.json deleted file mode 100644 index d6784a8521a0..000000000000 --- a/_data/icons/lucky.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url": "ipfs://bafkreidmvcd5i7touug55hj45mf2pgabxamy5fziva7mtx5n664s3yap6m", - "width": 205, - "height": 28, - "format": "png" - } -] diff --git a/_data/icons/lumia.json b/_data/icons/lumia.json new file mode 100644 index 000000000000..ee6a50ed6fcb --- /dev/null +++ b/_data/icons/lumia.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmV3V19LTs7RobiBo4pgwvNGY7AXEXDTVbRPuB8pPvmxi4", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/lux.json b/_data/icons/lux.json new file mode 100644 index 000000000000..92fb5a931a0e --- /dev/null +++ b/_data/icons/lux.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSjXJFpVAEdstq5JiUKciokm9fCwqS7Z9fg6M1XBdpePe", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/mande.json b/_data/icons/mande.json new file mode 100644 index 000000000000..12759b69dc05 --- /dev/null +++ b/_data/icons/mande.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbySJWaSQxzL3F4zvpKYaNvMjHsX2qUyWTv2kpitq9dW8", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/marscredit.json b/_data/icons/marscredit.json new file mode 100644 index 000000000000..3aab92f09910 --- /dev/null +++ b/_data/icons/marscredit.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiaqvko45oh3bppsx57i73ajopgm2nsy4v6a22wwrbhbaoe5olwwlm", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/matchain.json b/_data/icons/matchain.json new file mode 100644 index 000000000000..eadec6466d28 --- /dev/null +++ b/_data/icons/matchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdGWNf6Tmq7Wn4TbJEDBHMZCGfYgsvmmYnFqYdE4CJTRn", + "width": 393, + "height": 412, + "format": "png" + } +] diff --git a/_data/icons/matr1x.json b/_data/icons/matr1x.json new file mode 100644 index 000000000000..c0a1879a4d75 --- /dev/null +++ b/_data/icons/matr1x.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", + "width": 1000, + "height": 1628, + "format": "png" + } +] diff --git a/_data/icons/maxi.json b/_data/icons/maxi.json index 641988f1e64a..6d8850f29711 100644 --- a/_data/icons/maxi.json +++ b/_data/icons/maxi.json @@ -1,6 +1,6 @@ [ { - "url": "ipfs://QmXMLcCaNPMyWCEYX2MZDJHNvj5cpj2cR5dRQtedBRNypT", + "url": "ipfs://QmcwqTBqA8ayxizG4XwLUSyg3xkQbpzUEvqQmWzyMSjnCo", "width": 512, "height": 512, "format": "png" diff --git a/_data/icons/mazze.json b/_data/icons/mazze.json new file mode 100644 index 000000000000..27b849cedfd1 --- /dev/null +++ b/_data/icons/mazze.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaR9Ud3aD7RaHYdsi3TdC1qx4zVusM76nd91s3Ghaz5fa", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/memecore.json b/_data/icons/memecore.json new file mode 100644 index 000000000000..9c0788d16433 --- /dev/null +++ b/_data/icons/memecore.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmX2DPJqHjMRUYD4CMpXBDBpqa3p8c4DkE4iiHtcxBJe3i", + "width": 500, + "height": 500, + "format": "svg" + } +] diff --git a/_data/icons/meron.json b/_data/icons/meron.json new file mode 100644 index 000000000000..321781f2e1a9 --- /dev/null +++ b/_data/icons/meron.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdNnuHVDHttkw1Xjp8RZBN2doF9QmBbFpBGf8nxktwdJH", + "width": 569, + "height": 564, + "format": "png" + } +] diff --git a/_data/icons/metaLink.json b/_data/icons/metaLink.json new file mode 100644 index 000000000000..440d35dd38cb --- /dev/null +++ b/_data/icons/metaLink.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfSXRkDPSwt7heQ24pDtWKN6vvervEaTJHmueyRp1mpg1", + "width": 800, + "height": 800, + "format": "jpg" + } +] diff --git a/_data/icons/metacces.json b/_data/icons/metacces.json new file mode 100644 index 000000000000..b13c7bd9ed11 --- /dev/null +++ b/_data/icons/metacces.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbpYHpqR68uuJZCwm1CXtN51zi744qWzZ32ob9BKfgFTV", + "width": 40, + "height": 38, + "format": "png" + } +] diff --git a/_data/icons/mezo.json b/_data/icons/mezo.json new file mode 100644 index 000000000000..06e21ee91639 --- /dev/null +++ b/_data/icons/mezo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRwp2AtjoRDWpvQvnZpLXT6aw2S76j5y8gRNXevJY3WEo", + "width": 1200, + "height": 666, + "format": "png" + } +] diff --git a/_data/icons/mfev.json b/_data/icons/mfev.json new file mode 100644 index 000000000000..38edb69a72c7 --- /dev/null +++ b/_data/icons/mfev.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmafSpJpbgdVGRFPmbQzEooMj5XDnoWztWCFGePEz677RD", + "width": 433, + "height": 402, + "format": "png" + } +] diff --git a/_data/icons/minato.json b/_data/icons/minato.json new file mode 100644 index 000000000000..12f8ed4493c1 --- /dev/null +++ b/_data/icons/minato.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeighhofhlz3qi5yv6ukqw6gthkuedhmgs5xcej4iibwan4dnvghnvi", + "width": 301, + "height": 300, + "format": "svg" + } +] diff --git a/_data/icons/miracle.json b/_data/icons/miracle.json new file mode 100644 index 000000000000..c11a79aa5851 --- /dev/null +++ b/_data/icons/miracle.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiakdaiqu4ge773vxf222gxnoonexpomyrn4xns4hl2hm6n6gpg6aa", + "width": 1920, + "height": 1920, + "format": "png" + } +] diff --git a/_data/icons/mite.json b/_data/icons/mite.json new file mode 100644 index 000000000000..3ebf50fb3d7f --- /dev/null +++ b/_data/icons/mite.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUdrSXS4729UQGVvUYfc8S1CHnG3JpG2HhCTDmsCw6jk8", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/mo.json b/_data/icons/mo.json new file mode 100644 index 000000000000..e0b7b4c09a45 --- /dev/null +++ b/_data/icons/mo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfJYJiR7L8xMG3KAWroVA9CQEfRGcbprC4JmVsiVk1E4e", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/moca.json b/_data/icons/moca.json new file mode 100644 index 000000000000..67d972ca4343 --- /dev/null +++ b/_data/icons/moca.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNqJnEL2Aj7pLKYnJwRnWGZFwUWTsvfZm8CofA8ztvD6J", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/monad.json b/_data/icons/monad.json new file mode 100644 index 000000000000..0b1abb5a8f6a --- /dev/null +++ b/_data/icons/monad.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreia4vjioitvcrm5umefahnp4wttswooykroarjo5itdvohvk6epiya", + "width": 32, + "height": 32, + "format": "svg" + } +] diff --git a/_data/icons/monsoon.json b/_data/icons/monsoon.json new file mode 100644 index 000000000000..1aa15ab92f3f --- /dev/null +++ b/_data/icons/monsoon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYmx1KEFtAuCpA8VDq5B7WvbDVYGvXkZjBkmZTSQMsYCX", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/moonbasealpha.json b/_data/icons/moonbasealpha.json new file mode 100644 index 000000000000..420bd2c9ff85 --- /dev/null +++ b/_data/icons/moonbasealpha.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVydzWtkyatFgi8zTVR7X6g8SpeHANwKNceRm4nKFoF6o", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/moonbeam.json b/_data/icons/moonbeam.json new file mode 100644 index 000000000000..a692d2229872 --- /dev/null +++ b/_data/icons/moonbeam.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNR7kbBew61cVxbwBf8EWCiYbUCqVhoJDLL6u3rQy9FrZ", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/moonriver.json b/_data/icons/moonriver.json new file mode 100644 index 000000000000..942a1187277a --- /dev/null +++ b/_data/icons/moonriver.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcyP14ZLD6m6j7rYUgty9uuk9e82kUMTQDdqi2dKmZqjz", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/mst.json b/_data/icons/mst.json new file mode 100644 index 000000000000..c37226ea5193 --- /dev/null +++ b/_data/icons/mst.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiepbqd2czcifzkfxk2xjd4nfrlnt5yns3t57umhvhdtpnggn6esym", + "width": 225, + "height": 225, + "format": "png" + } +] diff --git a/_data/icons/mttnetwork.json b/_data/icons/mttnetwork.json new file mode 100644 index 000000000000..8c4fea3b6dd1 --- /dev/null +++ b/_data/icons/mttnetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigl72xrnfxf2wbu2l6ul46tmonbmshgfuxmthcax2c6z4sy5bbfga", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/mud.json b/_data/icons/mud.json new file mode 100644 index 000000000000..c6e3734a8c89 --- /dev/null +++ b/_data/icons/mud.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdarywgvFGGBEEH6QAhUbkFhJfKAjFLZxQVEGARTxe1gP", + "width": 572, + "height": 574, + "format": "png" + } +] diff --git a/_data/icons/naga.json b/_data/icons/naga.json new file mode 100644 index 000000000000..df8c2e8cb4ed --- /dev/null +++ b/_data/icons/naga.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWrjS43miGAKEzKyNn1YajFn4zG7cDiPiaNHF1gTqKR91", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/nal.json b/_data/icons/nal.json new file mode 100644 index 000000000000..52d879ea24fb --- /dev/null +++ b/_data/icons/nal.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZLZHX18YUswejxo1JFNPx5EwMsVhUwBeBWEcd1JUHAK5", + "width": 640, + "height": 640, + "format": "png" + } +] diff --git a/_data/icons/neox.json b/_data/icons/neox.json new file mode 100644 index 000000000000..eefcfc3a29e6 --- /dev/null +++ b/_data/icons/neox.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmR3iCrjrW814fyv79UeVimDT4fTeBQcpYgMYxv1U6W15u", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/nero.json b/_data/icons/nero.json new file mode 100644 index 000000000000..f99e15062e1e --- /dev/null +++ b/_data/icons/nero.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdkENLFjLRNts2kBspNbM3q84WjG5Yf7C8amVVr7FCQrp", + "width": 521, + "height": 521, + "format": "png" + } +] diff --git a/_data/icons/netsbo.json b/_data/icons/netsbo.json new file mode 100644 index 000000000000..6b9e0188363d --- /dev/null +++ b/_data/icons/netsbo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfGRakPDaDGTq5yCXifGmWZBSJotYfeEVamWi8Mv4HFWt", + "width": 512, + "height": 512, + "format": "svg" + } +] diff --git a/_data/icons/netx.json b/_data/icons/netx.json new file mode 100644 index 000000000000..ed2c1ccda1ab --- /dev/null +++ b/_data/icons/netx.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYmQAo5hSr16LDeSbWbXfKdF6qa2zCoK7e88r2f7RiFdt", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/netxscan.json b/_data/icons/netxscan.json new file mode 100644 index 000000000000..4a2e8cfe447e --- /dev/null +++ b/_data/icons/netxscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZWF4RcDtxuFRRGgMMuDV7FWCYR6kA9cAUTk12iADU52U", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/nexameta.json b/_data/icons/nexameta.json new file mode 100644 index 000000000000..e3df8da50b4b --- /dev/null +++ b/_data/icons/nexameta.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreia42ym3rgzo7w5k445nr4wmji4ucxgw4pdhdo5lacczkk2fiahwni", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/nexashell.json b/_data/icons/nexashell.json new file mode 100644 index 000000000000..6dd34d53c69d --- /dev/null +++ b/_data/icons/nexashell.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigb5iwd233ih5w4zn67zoqafv4jisqgkzfccabye7bjntccs5yjee", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/nibiru.json b/_data/icons/nibiru.json new file mode 100644 index 000000000000..2542e5d28a48 --- /dev/null +++ b/_data/icons/nibiru.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZ4ujZagoLozYSypp7uJESgExJhGGJTmmpT6AoDV8GzZW", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/niza.json b/_data/icons/niza.json new file mode 100644 index 000000000000..f2dd3ec3372f --- /dev/null +++ b/_data/icons/niza.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPh2FdjoPWBaCKNrknv6HjruxdUCr8AvJYvhpgHZP6e2C", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/ntity.json b/_data/icons/ntity.json index 83e8ca7ed113..ffe77705031f 100644 --- a/_data/icons/ntity.json +++ b/_data/icons/ntity.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmSW2YhCvMpnwtPGTJAuEK2QgyWfFjmnwcrapUg6kqFsPf", - "width": 711, - "height": 715, - "format": "svg" + "url": "ipfs://bafkreicdp3rj3zxltqurayvc7d7z2fkdg3bq357vfbi4ck4nhuveg6sela", + "width": 1160, + "height": 1160, + "format": "png" } ] diff --git a/_data/icons/nysl.json b/_data/icons/nysl.json new file mode 100644 index 000000000000..f60533658dd6 --- /dev/null +++ b/_data/icons/nysl.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiaybbrbmfizoy3zdnypi2yefozyfjnrqa6ug6bel7ld7caack5d6e", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/occ-mainnet.json b/_data/icons/occ-mainnet.json new file mode 100644 index 000000000000..d4c1552a1956 --- /dev/null +++ b/_data/icons/occ-mainnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmAbz7VfGvf6NVHezuBy5HpJTCi1gEshBxxdDdfVXNQ8Bt", + "width": 60, + "height": 60, + "format": "svg" + } +] diff --git a/_data/icons/odyssey.json b/_data/icons/odyssey.json index be00f6f84538..a10335f8f0c3 100644 --- a/_data/icons/odyssey.json +++ b/_data/icons/odyssey.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmVt5Y585JqBSrkpZmYaEnX9FW7tDwfDLmUGNyDdyV2Pd2", - "width": 48, - "height": 48, - "format": "svg" + "url": "ipfs://bafkreiabuopswwczdqb7kbncgdpqzatpxyyx3qg4oixikalj47oluyrjmu", + "width": 512, + "height": 512, + "format": "png" } ] diff --git a/_data/icons/odysseyChain.json b/_data/icons/odysseyChain.json new file mode 100644 index 000000000000..a10335f8f0c3 --- /dev/null +++ b/_data/icons/odysseyChain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiabuopswwczdqb7kbncgdpqzatpxyyx3qg4oixikalj47oluyrjmu", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/oev-network.json b/_data/icons/oev-network.json new file mode 100644 index 000000000000..43402c742533 --- /dev/null +++ b/_data/icons/oev-network.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreicwebttrkbqxtiqduye67sgg54isk3psoll5huizyldcpfkxo63hi", + "width": 192, + "height": 192, + "format": "svg" + } +] diff --git a/_data/icons/ogpu.json b/_data/icons/ogpu.json new file mode 100644 index 000000000000..77f4428a624b --- /dev/null +++ b/_data/icons/ogpu.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiehdja4bvfvcagywn32zj6rvc5eicnwsdtvrsgwil52y4palgtnrq", + "width": 560, + "height": 560, + "format": "png" + } +] diff --git a/_data/icons/om.json b/_data/icons/om.json new file mode 100644 index 000000000000..25fb8b3a00cd --- /dev/null +++ b/_data/icons/om.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiftgt747chqsw67a3jyklr52op5rozqmi3qnp4edwjcf2gxabwdnu", + "width": 120, + "height": 120, + "format": "png" + } +] diff --git a/_data/icons/omni.json b/_data/icons/omni.json new file mode 100644 index 000000000000..779581066c57 --- /dev/null +++ b/_data/icons/omni.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdCMVucuZJpMqSn3xSWCU3io5ftRAwtzAqTd8QXLQEaos", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/onfachain.json b/_data/icons/onfachain.json new file mode 100644 index 000000000000..271e7bc842df --- /dev/null +++ b/_data/icons/onfachain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifsbv53qf674fmv2yhn7c426yv3dsge37hhhzvtcrrbx56ya762dy", + "width": 496, + "height": 496, + "format": "png" + } +] diff --git a/_data/icons/onino.json b/_data/icons/onino.json new file mode 100644 index 000000000000..0854b3711e4a --- /dev/null +++ b/_data/icons/onino.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmW46cmj2fRUbfy3Fz9kyhm33BpXnNXZ4KW3vmK1z4Mg19", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/open-campus-codex.json b/_data/icons/open-campus-codex.json new file mode 100644 index 000000000000..040deb19e946 --- /dev/null +++ b/_data/icons/open-campus-codex.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXbz7VEYvf6NVHezuBy5HpJTCiagEThBxxdDdfVXNQ8Bt", + "width": 30, + "height": 30, + "format": "png" + } +] diff --git a/_data/icons/openledger.json b/_data/icons/openledger.json new file mode 100644 index 000000000000..61a6e64fbebc --- /dev/null +++ b/_data/icons/openledger.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreia37de5s5jtm5t74jtbx5clas3dnbojnrue7ls7ricbnr4kmgcfca", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/orange.json b/_data/icons/orange.json new file mode 100644 index 000000000000..ae085a785afa --- /dev/null +++ b/_data/icons/orange.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWcaVLcPYBxi76HYJc4qudLJwXtfNCDJieLHAs632jMEA", + "width": 1042, + "height": 1042, + "format": "png" + } +] diff --git a/_data/icons/otc.json b/_data/icons/otc.json new file mode 100644 index 000000000000..41de5dc2cf3b --- /dev/null +++ b/_data/icons/otc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfC9nTyEUPTXeqhDTpAcqHtLphHFyvZYj2tyoWiMu46H1", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/overIcon.json b/_data/icons/overIcon.json new file mode 100644 index 000000000000..7e63774f11d0 --- /dev/null +++ b/_data/icons/overIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcxyEjW9G8K9JP6rZGjRmjJuS9BvgMwzL5dKM1nV2aPLs", + "width": 600, + "height": 600, + "format": "png" + } +] diff --git a/_data/icons/owshen.json b/_data/icons/owshen.json new file mode 100644 index 000000000000..f06451771f2f --- /dev/null +++ b/_data/icons/owshen.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPraJeGkPBaJqSrFc5yfcazpK1TN5Nz8t56tYWMhXycbz", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/ozean.json b/_data/icons/ozean.json new file mode 100644 index 000000000000..76d75be7cc13 --- /dev/null +++ b/_data/icons/ozean.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiapf66dn4de4dz2oyn63y3bpafm5f6pne4gxtufapd452c4ruzj5a", + "width": 191, + "height": 191, + "format": "png" + } +] diff --git a/_data/icons/pay1.json b/_data/icons/pay1.json new file mode 100644 index 000000000000..a157e0eb639d --- /dev/null +++ b/_data/icons/pay1.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcLm4CYi4bEmz6C6yxNxDomXNyR9umE5P71YB7QMFkz9G", + "width": 931, + "height": 952, + "format": "png" + } +] diff --git a/_data/icons/pay1scan.json b/_data/icons/pay1scan.json new file mode 100644 index 000000000000..6595e00fcc5b --- /dev/null +++ b/_data/icons/pay1scan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNf6gNiHqs72BJX3ZDKB9ayD6x9u1J69WPEgvG1eLV12b", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/paynetwork.json b/_data/icons/paynetwork.json new file mode 100644 index 000000000000..2b382e3979f0 --- /dev/null +++ b/_data/icons/paynetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidti4l2gj2bcafth2awvg6xn3fpx7wkautyyb23pfvd7pxzza2psq", + "width": 1280, + "height": 1279, + "format": "jpg" + } +] diff --git a/_data/icons/peaq.json b/_data/icons/peaq.json new file mode 100644 index 000000000000..66a72e44fafb --- /dev/null +++ b/_data/icons/peaq.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQ7Jue8v2YXyhmDTkSbzCJxzZDa2v4GZZKViESdyswzrj", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/pentagon-testnet.json b/_data/icons/pentagon-testnet.json new file mode 100644 index 000000000000..d015b4cfab14 --- /dev/null +++ b/_data/icons/pentagon-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfU7W3Tm3tGWgnHBTG9vjB4PXGMvcL7Cq8R6MaSaC33DC", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/pentagon.json b/_data/icons/pentagon.json new file mode 100644 index 000000000000..d015b4cfab14 --- /dev/null +++ b/_data/icons/pentagon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfU7W3Tm3tGWgnHBTG9vjB4PXGMvcL7Cq8R6MaSaC33DC", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/pentagonchain.json b/_data/icons/pentagonchain.json new file mode 100644 index 000000000000..6c107f3b424e --- /dev/null +++ b/_data/icons/pentagonchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibiwnnehj2j3tbla2yvvama6p7tfxvjfeqymw6ptoecoxb66glhkm", + "width": 128, + "height": 128, + "format": "png" + } +] diff --git a/_data/icons/pepu.json b/_data/icons/pepu.json new file mode 100644 index 000000000000..d416c54c2777 --- /dev/null +++ b/_data/icons/pepu.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreib2gexi344ssvsusvdco5uga52ffflxprksd5g2nokndsb572ijja", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/perennial.json b/_data/icons/perennial.json new file mode 100644 index 000000000000..34168afcaf08 --- /dev/null +++ b/_data/icons/perennial.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidkqdec42orfj4yiufiqvo3n33yxiw75jybg2lewv36raq7qpijua", + "width": 128, + "height": 128, + "format": "svg" + } +] diff --git a/_data/icons/pho.json b/_data/icons/pho.json new file mode 100644 index 000000000000..d8d8a425b6d0 --- /dev/null +++ b/_data/icons/pho.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZ6WDmzPq5ECRaTW8mEcJmMYonqFTDVizZoG9UaRZ5tsW", + "width": 1080, + "height": 1080, + "format": "png" + } +] diff --git a/_data/icons/phron.json b/_data/icons/phron.json new file mode 100644 index 000000000000..787f0989987c --- /dev/null +++ b/_data/icons/phron.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmf77sTNKpnTbwYjauyQ7KpxV5EbgTPP27Fmx24svB84gY", + "width": 129, + "height": 129, + "format": "png" + } +] diff --git a/_data/icons/pio.json b/_data/icons/pio.json new file mode 100644 index 000000000000..b1dd8fe1568d --- /dev/null +++ b/_data/icons/pio.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibbs2nlmnd7vrur6fyfjl4mqqjcjnjbtwrk35juma6zoxtn2l3xce", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/plasma.json b/_data/icons/plasma.json new file mode 100644 index 000000000000..4d6ce42ff9ba --- /dev/null +++ b/_data/icons/plasma.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreicgr636cvsomnqj3ikgdpixfv7eh2nr2u3k7v423raav2lrpsvfwy", + "width": 500, + "height": 500, + "format": "svg" + } +] diff --git a/_data/icons/plume.json b/_data/icons/plume.json index 64b2e85fee02..5dc99b4baaee 100644 --- a/_data/icons/plume.json +++ b/_data/icons/plume.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmNUpqkYWYJoDXKUpZ8FVbGyN6HCwxYonKNAieCf2oTzGn", - "width": 1062, - "height": 1062, + "url": "ipfs://QmT7dJKK2VXMtF9mJ6EfMTJXBntJyVvZcA8beLA2RCFbsW", + "width": 400, + "height": 400, "format": "png" } ] diff --git a/_data/icons/pmon.json b/_data/icons/pmon.json new file mode 100644 index 000000000000..9ef9ede6d91c --- /dev/null +++ b/_data/icons/pmon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaEMH8gUpdBuZdMpw2nnZ6tFA8qcRLqVdTtuoTT8U95X6", + "width": 1094, + "height": 1094, + "format": "png" + } +] diff --git a/_data/icons/pointledger.json b/_data/icons/pointledger.json new file mode 100644 index 000000000000..b888a6fbf108 --- /dev/null +++ b/_data/icons/pointledger.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmV1Q7Q9XKRin5C5Qg6TTb3BnqmC1Qb6jyebUbTMXGPV1L", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/pointpay.json b/_data/icons/pointpay.json new file mode 100644 index 000000000000..717a03da18ed --- /dev/null +++ b/_data/icons/pointpay.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPVsJrzshxQMVDSqn45aiaNJcFY8zWU27fg8vq5Mht4z7", + "width": 1504, + "height": 1504, + "format": "png" + } +] diff --git a/_data/icons/polterGeist.json b/_data/icons/polterGeist.json new file mode 100644 index 000000000000..5406c1312bd0 --- /dev/null +++ b/_data/icons/polterGeist.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNih9epd2WkWTCWD9nwXyUzpaBcPALJH66Fjq1YywpcA8", + "width": 1016, + "height": 1016, + "format": "png" + } +] diff --git a/_data/icons/polynomial.json b/_data/icons/polynomial.json new file mode 100644 index 000000000000..0adbb0e53363 --- /dev/null +++ b/_data/icons/polynomial.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiadb4izxxptk3wy34cam3k2rxgqb2vrzxtltqnp3vwdvd2igwoghu", + "width": 500, + "height": 500, + "format": "jpg" + } +] diff --git a/_data/icons/polynomialSepolia.json b/_data/icons/polynomialSepolia.json new file mode 100644 index 000000000000..b86b1203be16 --- /dev/null +++ b/_data/icons/polynomialSepolia.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeidr3h4onsdhjojrck7tqysrmnduzhgzdhf3l5uqake6w6474vvuha", + "width": 500, + "height": 500, + "format": "jpg" + } +] diff --git a/_data/icons/pop-apex.json b/_data/icons/pop-boss.json similarity index 100% rename from _data/icons/pop-apex.json rename to _data/icons/pop-boss.json diff --git a/_data/icons/pop.json b/_data/icons/pop.json new file mode 100644 index 000000000000..d06f2deb8f18 --- /dev/null +++ b/_data/icons/pop.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbY9ZPnveSEnFhbhfHr5B2R8SPhQBKbAZnwQCoEkvAQtT", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/power.json b/_data/icons/power.json new file mode 100644 index 000000000000..67fa2daf4e8a --- /dev/null +++ b/_data/icons/power.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaYJaMfMowoBe7te9tHCKzJzz5DbhodrmhwGab6XCDgtM", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/prim.json b/_data/icons/prim.json new file mode 100644 index 000000000000..48ea15ed385c --- /dev/null +++ b/_data/icons/prim.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidaurpqgf3mmudm2foh5a45xyughike2y2pltb323ad5ywo4gtc3q", + "width": 256, + "height": 256, + "format": "svg" + } +] diff --git a/_data/icons/privix.json b/_data/icons/privix.json new file mode 100644 index 000000000000..bee564f3f578 --- /dev/null +++ b/_data/icons/privix.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigodpsoidrdcnck4gemprf6zh6qptx72t2iit3hq7rhtk5qbr6vri", + "width": 250, + "height": 249, + "format": "jpg" + } +] diff --git a/_data/icons/prom.json b/_data/icons/prom.json new file mode 100644 index 000000000000..0b4173844ddd --- /dev/null +++ b/_data/icons/prom.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWK2y5qCZgb6uCR7RrsEgTK1ci5rCSxmCWYtt5yJwpoE1", + "width": 224, + "height": 224, + "format": "png" + } +] diff --git a/_data/icons/ptt.json b/_data/icons/ptt.json new file mode 100644 index 000000000000..df97feb6c2f9 --- /dev/null +++ b/_data/icons/ptt.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihwjhyhzxernwjyxm4edujzhou4bg6bpinwj7r4azifoljubgr3sq", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/pundiai.json b/_data/icons/pundiai.json new file mode 100644 index 000000000000..944e554cf2e1 --- /dev/null +++ b/_data/icons/pundiai.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUve9vX4k6rtTX5dJZhXTGBGUosFccMZL9E349gdTHNkV", + "width": 64, + "height": 64, + "format": "jpg" + } +] diff --git a/_data/icons/pyrope.json b/_data/icons/pyrope.json new file mode 100644 index 000000000000..ab5ee6522b24 --- /dev/null +++ b/_data/icons/pyrope.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWhHvjbjTiNNsHKpbEz9rxSt4CCL2Q5xVZjk8eQkp82B9", + "width": 600, + "height": 600, + "format": "png" + } +] diff --git a/_data/icons/pzo.json b/_data/icons/pzo.json new file mode 100644 index 000000000000..748208ae4e4a --- /dev/null +++ b/_data/icons/pzo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigml24fbobs5lalh4l54xwtccey7dqxkbmt4jkbkq3morydgjfy2a", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/qchain.json b/_data/icons/qchain.json new file mode 100644 index 000000000000..a8ae20fa5068 --- /dev/null +++ b/_data/icons/qchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZESsg3P8cimYjibkD8w1T8DgszAHcKn7UReC8FWbfDGz", + "width": 1536, + "height": 1536, + "format": "png" + } +] diff --git a/_data/icons/qubetics.json b/_data/icons/qubetics.json new file mode 100644 index 000000000000..9cec72f12194 --- /dev/null +++ b/_data/icons/qubetics.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigsioq2bd4c6slficwtzjq6gbti2c4vhzjlsjtihz2b762j4zjqhy", + "width": 235, + "height": 234, + "format": "png" + } +] diff --git a/_data/icons/r5.json b/_data/icons/r5.json new file mode 100644 index 000000000000..58e73219e9d1 --- /dev/null +++ b/_data/icons/r5.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihrnrmjndul22scpktxzfvm6lyuxdepjtbfrn7ce4znl2blrqw6te", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/race.json b/_data/icons/race.json new file mode 100644 index 000000000000..7babf5f2f491 --- /dev/null +++ b/_data/icons/race.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQGaiPkSHc8ZGLAE4A8yZdFWLeuEts4VX6FjEqnuPXvxh", + "width": 184, + "height": 417, + "format": "png" + } +] diff --git a/_data/icons/rails.json b/_data/icons/rails.json new file mode 100644 index 000000000000..c11242f0fbff --- /dev/null +++ b/_data/icons/rails.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfDnMYCXc1By1bQ1yiBWVLaYrzdGAXuA8SLTs6yDkLBfM", + "width": 550, + "height": 550, + "format": "png" + } +] diff --git a/_data/icons/railsTestnet.json b/_data/icons/railsTestnet.json new file mode 100644 index 000000000000..000ab6edd7b5 --- /dev/null +++ b/_data/icons/railsTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWsvNvJgnZkiZ1y1VDPfUkSbaWrJVhEMXx7U9vEZx2HZA", + "width": 550, + "height": 550, + "format": "png" + } +] diff --git a/_data/icons/rarimo.json b/_data/icons/rarimo.json new file mode 100644 index 000000000000..f30490d8343a --- /dev/null +++ b/_data/icons/rarimo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiaqnwdizg5xub4vbye3py6ddt5djdwu7dytkf7j3reoonzug4twxi", + "width": 512, + "height": 512, + "format": "svg" + } +] diff --git a/_data/icons/reactive.json b/_data/icons/reactive.json index 2085bfb822c3..5bbbeab5450f 100644 --- a/_data/icons/reactive.json +++ b/_data/icons/reactive.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmZewyubd3zC17pmmGbjix6gFsppYpLsP3ntu3aB7rCJmW", - "width": 800, - "height": 800, + "url": "ipfs://bafkreih2sitkbspgnboiwga7k4zwz22h4u3qqpswxdr3miqtdwuovw2cte", + "width": 320, + "height": 320, "format": "png" } ] diff --git a/_data/icons/realio.json b/_data/icons/realio.json new file mode 100644 index 000000000000..2ea7269ab204 --- /dev/null +++ b/_data/icons/realio.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZsXYnR5C25v99xZs7Zzk5UUwiCidpGwSzejb21M66fuT", + "width": 474, + "height": 474, + "format": "png" + } +] diff --git a/_data/icons/realiotestnet.json b/_data/icons/realiotestnet.json new file mode 100644 index 000000000000..2ea7269ab204 --- /dev/null +++ b/_data/icons/realiotestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZsXYnR5C25v99xZs7Zzk5UUwiCidpGwSzejb21M66fuT", + "width": 474, + "height": 474, + "format": "png" + } +] diff --git a/_data/icons/rebusc.json b/_data/icons/rebusc.json new file mode 100644 index 000000000000..7634993ad86c --- /dev/null +++ b/_data/icons/rebusc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifzag46dhp33vb2uldg4htqbqipuqrapjga6ml6pnhn5yibbvb4gq", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/redbelly.json b/_data/icons/redbelly.json new file mode 100644 index 000000000000..191227f8d31a --- /dev/null +++ b/_data/icons/redbelly.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbU86AmMYhDTwDzJWLtrLAURqepXinJbVhXUJq5BaWqCp", + "width": 500, + "height": 550, + "format": "svg" + } +] diff --git a/_data/icons/redefi.json b/_data/icons/redefi.json new file mode 100644 index 000000000000..a8e57b9bd774 --- /dev/null +++ b/_data/icons/redefi.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQd2MWwDkGsH6JsHPAKXqy8o2kedYMzbnaEHoRpmvSiLW", + "width": 350, + "height": 350, + "format": "png" + } +] diff --git a/_data/icons/rise.json b/_data/icons/rise.json new file mode 100644 index 000000000000..14b187a79fea --- /dev/null +++ b/_data/icons/rise.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeigpqflfjdeovryzeqcw42chsqtoed6ommcilepi7hnarqf34rat7i", + "width": 252, + "height": 303, + "format": "png" + } +] diff --git a/_data/icons/rivalz.json b/_data/icons/rivalz.json new file mode 100644 index 000000000000..cba9592c0b40 --- /dev/null +++ b/_data/icons/rivalz.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiaykqfno5aveymgvrv3y725acslww2jidtaqr4nkmmti4zbayf2k4", + "width": 400, + "height": 400, + "format": "jpg" + } +] diff --git a/_data/icons/river.json b/_data/icons/river.json new file mode 100644 index 000000000000..7395403cdffd --- /dev/null +++ b/_data/icons/river.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiafftbrpywlc4awvbgbdau4bpd5rg27za4eyh7somqw5pv755gbmq", + "width": 28, + "height": 24, + "format": "svg" + } +] diff --git a/_data/icons/rogue.json b/_data/icons/rogue.json new file mode 100644 index 000000000000..18ecf5f30ca3 --- /dev/null +++ b/_data/icons/rogue.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmay8Z3yhJR4st6iAVmqTdM6nFc9zYSPq4tucDaiPheAjE", + "width": 973, + "height": 974, + "format": "png" + } +] diff --git a/_data/icons/rome.json b/_data/icons/rome.json new file mode 100644 index 000000000000..6f576c633dbe --- /dev/null +++ b/_data/icons/rome.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibm26mwdgzt4e3c5wr5sfee644cnjsye2mgkajhfzsyu3wglrecd4", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/rufus.json b/_data/icons/rufus.json new file mode 100644 index 000000000000..41fa688049d0 --- /dev/null +++ b/_data/icons/rufus.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihcbx557v446mhd7z4kfogqy3f3i5zdx2fsc5udg2obdstzxt66be", + "width": 400, + "height": 400, + "format": "jpg" + } +] diff --git a/_data/icons/saga.json b/_data/icons/saga.json new file mode 100644 index 000000000000..b8f97b02f073 --- /dev/null +++ b/_data/icons/saga.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreieuaf4anwbg4s6ptuxszdn5e6q4eodbae2dmyglb4v2o7xbbxepte", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/sahara.json b/_data/icons/sahara.json index 1e0504076821..0dfd2e3fb2df 100644 --- a/_data/icons/sahara.json +++ b/_data/icons/sahara.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmQXCm6w8xvWMkksTQYw3So14VCbwHP6chH41v6ysXdSwF", - "width": 608, - "height": 608, + "url": "ipfs://bafkreibhofpvuswlhmfniolskoguhjr4p7strqgm5uz7tu53s5gv35qwem", + "width": 44, + "height": 24, "format": "svg" } ] diff --git a/_data/icons/satschain.json b/_data/icons/satschain.json new file mode 100644 index 000000000000..6449e4239838 --- /dev/null +++ b/_data/icons/satschain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreicvi5dgn3wmkquqaicx743xc65dlqvnnuxsbsxq5hbzhaaaksxyo4", + "width": 457, + "height": 456, + "format": "png" + } +] diff --git a/_data/icons/secIcon.json b/_data/icons/secIcon.json new file mode 100644 index 000000000000..15fe4c484ea3 --- /dev/null +++ b/_data/icons/secIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWeJdWk2HiZhcCtecHyzxm7DBH5KDH2ERj9ZiqxmxgUto", + "width": 1172, + "height": 1172, + "format": "png" + } +] diff --git a/_data/icons/seedTestnet.json b/_data/icons/seedTestnet.json new file mode 100644 index 000000000000..9464925a0c56 --- /dev/null +++ b/_data/icons/seedTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVa1MhJhixPzFfvhggQWg8hLtS77vg7QFvQtQGrXbVYSg", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/seiv2.json b/_data/icons/seiv2.json new file mode 100644 index 000000000000..a24778b59bb5 --- /dev/null +++ b/_data/icons/seiv2.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreia2tiurhfkc2lifytbpv356d4rfmqoivzrepg2wsrqwrqgbb4bp7a", + "width": 600, + "height": 600, + "format": "png" + } +] diff --git a/_data/icons/sg_verse.json b/_data/icons/sg_verse.json new file mode 100644 index 000000000000..3e6761ec74d6 --- /dev/null +++ b/_data/icons/sg_verse.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXBm2hTGzFeYT5YYixzRnTdPNWnkNUaT1bBL3LYD4QvUk", + "width": 100, + "height": 100, + "format": "png" + } +] diff --git a/_data/icons/shape.json b/_data/icons/shape.json new file mode 100644 index 000000000000..2c8bcb69b583 --- /dev/null +++ b/_data/icons/shape.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUfr1ufnNJ4PcA3Jgf6jdi4ZiRFr6mPzKafwK1pSqvY9j", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/shapeTestnet.json b/_data/icons/shapeTestnet.json new file mode 100644 index 000000000000..2c8bcb69b583 --- /dev/null +++ b/_data/icons/shapeTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUfr1ufnNJ4PcA3Jgf6jdi4ZiRFr6mPzKafwK1pSqvY9j", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/sharecle.json b/_data/icons/sharecle.json new file mode 100644 index 000000000000..7a6d2cd93827 --- /dev/null +++ b/_data/icons/sharecle.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiaqaphacy5swvtyxw56ma5f5iewjcqspbgxr5l6ln2433liyw2djy", + "width": 160, + "height": 160, + "format": "png" + } +] diff --git a/_data/icons/shibarium.json b/_data/icons/shibarium.json index 049a7b29cc64..c18d6426f9f6 100644 --- a/_data/icons/shibarium.json +++ b/_data/icons/shibarium.json @@ -1,6 +1,6 @@ [ { - "url": "ipfs://QmYNVkoZgRjDBQzJz6kog9mA2yPzQFW2oSKvhnkwuBhLQE", + "url": "ipfs://Qmd6rSbfpVjQQZXothmiwGqKo7zovnB9gkeoYcunDt7ZTb", "width": 2000, "height": 2000, "format": "png" diff --git a/_data/icons/sidrachain.json b/_data/icons/sidrachain.json new file mode 100644 index 000000000000..57cf4d7b5195 --- /dev/null +++ b/_data/icons/sidrachain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfVnJSmiB1Ss3Sfhgc9JsZAbQ2RAofsgzYB1VqUNKNgLH", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/skate.json b/_data/icons/skate.json new file mode 100644 index 000000000000..ac25779cd64c --- /dev/null +++ b/_data/icons/skate.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdofX1W8QFt4TSDaq2wyPvYuUba9LabgD1MYcn3Hezu8h", + "width": 600, + "height": 875, + "format": "png" + } +] diff --git a/_data/icons/skopje-gpt.json b/_data/icons/skopje-gpt.json new file mode 100644 index 000000000000..f0dcb315dac5 --- /dev/null +++ b/_data/icons/skopje-gpt.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmf75UpPd7PA3tV6iPxWXGmHq4azyP3CrBYStdSSjQ2Wrx", + "width": 1170, + "height": 1164, + "format": "jpg" + } +] diff --git a/_data/icons/slerf.json b/_data/icons/slerf.json new file mode 100644 index 000000000000..264e604a5f5c --- /dev/null +++ b/_data/icons/slerf.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdDeCjjYSG5FEAxzAuERXnS3AbeZvqSFVTn9x7UbrQeuT", + "width": 800, + "height": 800, + "format": "png" + } +] diff --git a/_data/icons/slingshot.json b/_data/icons/slingshot.json new file mode 100644 index 000000000000..487e8f18072f --- /dev/null +++ b/_data/icons/slingshot.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVhM3wHXdXkFEvW4x4vYqT7bx7gb5BQLWcLebHBeAzAXF", + "width": 2000, + "height": 2000, + "format": "png" + } +] diff --git a/_data/icons/smart.json b/_data/icons/smart.json new file mode 100644 index 000000000000..51d58976222c --- /dev/null +++ b/_data/icons/smart.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWXs2ZzdbSTEL4uf5vsa7gRvC7AnVk5TDjaP4W6f9KALg", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/smartpay.json b/_data/icons/smartpay.json new file mode 100644 index 000000000000..d4aa1a587ee8 --- /dev/null +++ b/_data/icons/smartpay.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreign3xx2pllwlykay6euiq2dv766cgt5zgycgpf4mkirulf7ufo5um", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/sn.json b/_data/icons/sn.json new file mode 100644 index 000000000000..429aa4a4f70d --- /dev/null +++ b/_data/icons/sn.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreici5icyyijhmonrnkxar2tj5426xcywqjnzcl7ovhk6d43z66pd64", + "width": 128, + "height": 128, + "format": "png" + } +] diff --git a/_data/icons/snax.json b/_data/icons/snax.json new file mode 100644 index 000000000000..a125218a3ebf --- /dev/null +++ b/_data/icons/snax.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQPHTTpgSjvP18Yc522ZxHYKRwLLxeR6xWdEdcw1XHwZo", + "width": 178, + "height": 177, + "format": "svg" + } +] diff --git a/_data/icons/sonic.json b/_data/icons/sonic.json new file mode 100644 index 000000000000..c8ab0fea196d --- /dev/null +++ b/_data/icons/sonic.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbFqQ87T3HwjF6KejNYYYMcUtc7t64FDbfkpgWchFgMpC", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/soonchain.json b/_data/icons/soonchain.json new file mode 100644 index 000000000000..29ec23b61006 --- /dev/null +++ b/_data/icons/soonchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreia4zzsj2wxfrincui3hk664sspjfapd744eybh6th566ncj5js7aa", + "width": 1500, + "height": 1500, + "format": "png" + } +] diff --git a/_data/icons/sophon-testnet.json b/_data/icons/sophon-testnet.json new file mode 100644 index 000000000000..e28dff9eb973 --- /dev/null +++ b/_data/icons/sophon-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVJWQ1f1vuQFdajLnqgbV3udPJKK7yC4comWwjT6NUinQ", + "width": 128, + "height": 64, + "format": "svg" + } +] diff --git a/_data/icons/sorianTestnet.json b/_data/icons/sorianTestnet.json new file mode 100644 index 000000000000..cb49bb7a8619 --- /dev/null +++ b/_data/icons/sorianTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZmrcLYFtPZb36MZ1DyQpR7Lw8CWPP7x3Bx2anCjVWfMR", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/sova.json b/_data/icons/sova.json new file mode 100644 index 000000000000..292c4cfcd8c0 --- /dev/null +++ b/_data/icons/sova.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreid7xn7bs3l66axinbq25gl7ypdlwbinnbit4bz3qcy36fia4icrgm", + "width": 400, + "height": 400, + "format": "jpg" + } +] diff --git a/_data/icons/statemesh.json b/_data/icons/statemesh.json new file mode 100644 index 000000000000..5c9d644d6f8d --- /dev/null +++ b/_data/icons/statemesh.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmc7KBcdrXMKvaq1xN6mubEqpvHdheFxs1YGZwZgLEPDrK", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/stavanger.json b/_data/icons/stavanger.json new file mode 100644 index 000000000000..78c3c58597ab --- /dev/null +++ b/_data/icons/stavanger.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeighctebzusfrmvuahcswjrseyno3eaetu4oskwcu6ubivd7c7elqa", + "width": 280, + "height": 360, + "format": "png" + } +] diff --git a/_data/icons/stenix.json b/_data/icons/stenix.json new file mode 100644 index 000000000000..2a7595d07b86 --- /dev/null +++ b/_data/icons/stenix.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVM1zLyWDZYyje5qWWfDdve1fmrDm69J9pSKhivb1zkCH", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/stenscan.json b/_data/icons/stenscan.json new file mode 100644 index 000000000000..2a7595d07b86 --- /dev/null +++ b/_data/icons/stenscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVM1zLyWDZYyje5qWWfDdve1fmrDm69J9pSKhivb1zkCH", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/story.json b/_data/icons/story.json new file mode 100644 index 000000000000..ef7fd53eb6c0 --- /dev/null +++ b/_data/icons/story.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreierdbo6kxvq5l353dqzg5qkaennz5s6hjp3nvmvyz2dx7gfka4nuu", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/str.json b/_data/icons/str.json new file mode 100644 index 000000000000..c99b350b45b3 --- /dev/null +++ b/_data/icons/str.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdXSyjZvtVPDTLAuYoVU1cuRTEKnY96p65jgcz6wt7pfA", + "width": 995, + "height": 984, + "format": "png" + } +] diff --git a/_data/icons/studio.json b/_data/icons/studio.json new file mode 100644 index 000000000000..2e809aa99bf7 --- /dev/null +++ b/_data/icons/studio.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmamYSLuQSiAvqfQdejQn2PKXV6ZPQCagpXH5MLRz1GeCf", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/superseed.json b/_data/icons/superseed.json new file mode 100644 index 000000000000..9464925a0c56 --- /dev/null +++ b/_data/icons/superseed.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVa1MhJhixPzFfvhggQWg8hLtS77vg7QFvQtQGrXbVYSg", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/surge-testnet.json b/_data/icons/surge-testnet.json new file mode 100644 index 000000000000..c4d91ccaedf4 --- /dev/null +++ b/_data/icons/surge-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreianxdx5j3ybmryz7n7fngycnmyihoi3jjerby2xtahahsw5kgz3qa", + "width": 83, + "height": 86, + "format": "svg" + } +] diff --git a/_data/icons/swan.json b/_data/icons/swan.json new file mode 100644 index 000000000000..d5425cef68b2 --- /dev/null +++ b/_data/icons/swan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiduag3kgux5c5a2zdiv3cjcrhwwh3cudc2hxyxufeadpfzhrjbo4u", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/swell.json b/_data/icons/swell.json new file mode 100644 index 000000000000..cea89ec4d5b3 --- /dev/null +++ b/_data/icons/swell.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZcZreqE6P7JQCduEkXtni8UTJVjtX1PEiPFm7WpSEPc3", + "width": 640, + "height": 640, + "format": "png" + } +] diff --git a/_data/icons/swisstronik.json b/_data/icons/swisstronik.json index a7deadef9336..a477a6d1b818 100644 --- a/_data/icons/swisstronik.json +++ b/_data/icons/swisstronik.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://bafybeihuintkoipxalwans23vhxajbwjnozpy34ww7ia7ds7nay3rpylzi", + "url": "ipfs://bafkreietv32mc3rwbzymhlju6mrvmiavvgqg3sflafl2fjjxguqky56sca", "width": 256, "height": 256, - "format": "svg" + "format": "png" } ] diff --git a/_data/icons/tac.json b/_data/icons/tac.json new file mode 100644 index 000000000000..598188a85cda --- /dev/null +++ b/_data/icons/tac.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigvlt7py3h7ehy75x3w2ksmncfj57xt6giyfkhoue2vlrnfokezse", + "width": 250, + "height": 250, + "format": "svg" + } +] diff --git a/_data/icons/tactestnet.json b/_data/icons/tactestnet.json new file mode 100644 index 000000000000..2206eac7df26 --- /dev/null +++ b/_data/icons/tactestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidhtm3kefmhw3vh7kl5uwx2rigq7h7r7beoq7sepblcrmclgyynue", + "width": 250, + "height": 250, + "format": "svg" + } +] diff --git a/_data/icons/taker.json b/_data/icons/taker.json new file mode 100644 index 000000000000..1e4e855a1575 --- /dev/null +++ b/_data/icons/taker.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmS3EEhWSZCXkKWddm1eQPifDY2kdFPaAfZuZUftPKB7x3", + "width": 672, + "height": 672, + "format": "png" + } +] diff --git a/_data/icons/taraxa.json b/_data/icons/taraxa.json index 9d35c1390001..73a4f82987e2 100644 --- a/_data/icons/taraxa.json +++ b/_data/icons/taraxa.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmQhdktNyBeXmCaVuQpi1B4yXheSUKrJA17L4wpECKzG5D", - "width": 310, - "height": 310, + "url": "ipfs://QmVeZJ3DfDuksxw58cHCRDKWDdhbmQsvrJdTxhZ74pv3tE", + "width": 560, + "height": 560, "format": "png" } ] diff --git a/_data/icons/tch.json b/_data/icons/tch.json new file mode 100644 index 000000000000..579f860be086 --- /dev/null +++ b/_data/icons/tch.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPvXht4fY5AigcLbC9ZqycN11K3iqjRTMGynfTtM9gYX5", + "width": 800, + "height": 800, + "format": "png" + } +] diff --git a/_data/icons/telos.json b/_data/icons/telos.json new file mode 100644 index 000000000000..0f7019c30ed2 --- /dev/null +++ b/_data/icons/telos.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreig7dmdjzvamf53drtqm452vr3evozh5zfihbk4m5vi77zwmtae5a4", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/teloscan.json b/_data/icons/teloscan.json new file mode 100644 index 000000000000..1fefbab8fbed --- /dev/null +++ b/_data/icons/teloscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidhmvpjugsqexrfr3uqhfkk7q5ykq3nx24yqtu664nxncfrh23ht4", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/testnet-xscscan.json b/_data/icons/testnet-xscscan.json new file mode 100644 index 000000000000..26d4893c6524 --- /dev/null +++ b/_data/icons/testnet-xscscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmR3twvfhDES34nLhcVmUbAZpW4eynZoSfA2XpWUBnH7gB", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/testnetpsc.json b/_data/icons/testnetpsc.json new file mode 100644 index 000000000000..4324b7fb85d1 --- /dev/null +++ b/_data/icons/testnetpsc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXmBxoHWyPfpYP3gLfVB2d5DfVKT4FXKb4Bt6m7nf19wL", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/that.json b/_data/icons/that.json new file mode 100644 index 000000000000..eef5ebf29ee5 --- /dev/null +++ b/_data/icons/that.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQM3TAFBskGGpog4EZkEGj2svtmTbxzcNZBcbWCMnu5JL", + "width": 640, + "height": 640, + "format": "svg" + } +] diff --git a/_data/icons/tiktrix.json b/_data/icons/tiktrix.json new file mode 100644 index 000000000000..f0d7a31a968f --- /dev/null +++ b/_data/icons/tiktrix.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQW8DuuyxjdLWAPq3V9zSfdAimaStptZ4gxZ3aEviAafc", + "width": 1280, + "height": 1280, + "format": "png" + } +] diff --git a/_data/icons/tranched-mainnet.json b/_data/icons/tranched-mainnet.json new file mode 100644 index 000000000000..b1f93fd12fa3 --- /dev/null +++ b/_data/icons/tranched-mainnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreieb6bx5nqv43qgykfuycpfilf5xk7v3jugli74ofb7pm6t6f5wcmu", + "width": 1080, + "height": 1080, + "format": "png" + } +] diff --git a/_data/icons/treasure.json b/_data/icons/treasure.json new file mode 100644 index 000000000000..256f4ec4756d --- /dev/null +++ b/_data/icons/treasure.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQn3dhxoMDY3R2w9PZtJaVXVh9YtJaozcLesu19B7e1KQ", + "width": 24, + "height": 24, + "format": "svg" + } +] diff --git a/_data/icons/treasureruby.json b/_data/icons/treasureruby.json new file mode 100644 index 000000000000..7647cce41dae --- /dev/null +++ b/_data/icons/treasureruby.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbALStb7WtVPHMdwp5DBhE1pUs9QdTgYU1XqRnyJKobE4", + "width": 24, + "height": 24, + "format": "svg" + } +] diff --git a/_data/icons/treasuretopaz.json b/_data/icons/treasuretopaz.json new file mode 100644 index 000000000000..3e5751c83fd0 --- /dev/null +++ b/_data/icons/treasuretopaz.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmT9TS1vsxxq4pToEXPouuYtDcpQZWZfh91NZdNXVQGPrY", + "width": 24, + "height": 24, + "format": "svg" + } +] diff --git a/_data/icons/trex.json b/_data/icons/trex.json new file mode 100644 index 000000000000..73d9c7896874 --- /dev/null +++ b/_data/icons/trex.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreienf63hqo2stiq2wqiprvhowrv3cvhjeko2u3h5vcvjby5ix6ud7a", + "width": 240, + "height": 240, + "format": "png" + } +] diff --git a/_data/icons/tron.json b/_data/icons/tron.json new file mode 100644 index 000000000000..d7687de37543 --- /dev/null +++ b/_data/icons/tron.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZCR3JnesjwLKRXtW8Vm9sJ4geEnXcAfQsARcv2NVpHSU", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/trump.json b/_data/icons/trump.json new file mode 100644 index 000000000000..0e32cc973034 --- /dev/null +++ b/_data/icons/trump.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPFt5rH4hGCdt1L9WT5ZMWfuxvX1Dss7GEB8crjDSm7Xh", + "width": 250, + "height": 251, + "format": "png" + } +] diff --git a/_data/icons/tucana.json b/_data/icons/tucana.json new file mode 100644 index 000000000000..3e190eb8c20e --- /dev/null +++ b/_data/icons/tucana.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmb7SKBSBusnRy77HsaEsSWNwyXVwuzbM4duxCLtjWZhT8", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/turbo.json b/_data/icons/turbo.json new file mode 100644 index 000000000000..d499ea6fe1f3 --- /dev/null +++ b/_data/icons/turbo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXUP4JFNX2ET2vZHh9p4a6wEVC5os13evrWtF65EUfNkn", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/tuxa.json b/_data/icons/tuxa.json new file mode 100644 index 000000000000..4dd9274d757f --- /dev/null +++ b/_data/icons/tuxa.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNeWsKujSToh78mFWDqaFjjbqW6trtSTf9zHFXer1GfWT", + "width": 268, + "height": 268, + "format": "png" + } +] diff --git a/_data/icons/ultima.json b/_data/icons/ultima.json new file mode 100644 index 000000000000..167ec49e3ed1 --- /dev/null +++ b/_data/icons/ultima.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUbWVHDrD4TUj6pCwPt9eXJ1GK8nomHMDMq8DJ2KNeV7Y", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/ultra.json b/_data/icons/ultra.json new file mode 100644 index 000000000000..eb5da3f8a314 --- /dev/null +++ b/_data/icons/ultra.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeGtXdTHHMnf6rWUWFcefMGaVp7dJ6SWNgxgbVgm9YHTZ", + "width": 192, + "height": 192, + "format": "png" + } +] diff --git a/_data/icons/unichain-testnet.json b/_data/icons/unichain-testnet.json new file mode 100644 index 000000000000..aa229c7e467a --- /dev/null +++ b/_data/icons/unichain-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbdpXXsDDtskhYSFVg3UZqFLcdVhcTKDD29CzKTpgCLCb", + "width": 513, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/unichain.json b/_data/icons/unichain.json new file mode 100644 index 000000000000..e0f03e2111b3 --- /dev/null +++ b/_data/icons/unichain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWtu564n5T9KhhzKGMEcNWXXume5RzyUu7bARUX6ppHpW", + "width": 513, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/unite.json b/_data/icons/unite.json new file mode 100644 index 000000000000..e0d9e974c729 --- /dev/null +++ b/_data/icons/unite.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmajJp6gbZbTMNm5NjGFMv9gYKzDJsW4vVxTECu8NzGXa2", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/unitzero.json b/_data/icons/unitzero.json new file mode 100644 index 000000000000..ea40e93fd93f --- /dev/null +++ b/_data/icons/unitzero.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRb2rWanyBTKS5KyrmrbXPNy9zovpxfLRxz9FPPiuRgfg", + "width": 532, + "height": 532, + "format": "png" + } +] diff --git a/_data/icons/universe.json b/_data/icons/universe.json new file mode 100644 index 000000000000..d069c88c2dd9 --- /dev/null +++ b/_data/icons/universe.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreif53g2ynhznaqs5y5fxnj5ub3rfrwfsmvsyw23od3clmevnjqw46e", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/uxer.json b/_data/icons/uxer.json new file mode 100644 index 000000000000..0ff9ead8b9c4 --- /dev/null +++ b/_data/icons/uxer.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQurJBRScSDar6oDJ4pAeKKvzHr49KJfS1iuCkbtiNe4x", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/uxlinkone.json b/_data/icons/uxlinkone.json new file mode 100644 index 000000000000..f3f614aa6d6c --- /dev/null +++ b/_data/icons/uxlinkone.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibppp6mjqupwr5ffrcj4fcculphzoxxoqx5m4sjypsxwglljuq7sy", + "width": 706, + "height": 706, + "format": "jpg" + } +] diff --git a/_data/icons/vana.json b/_data/icons/vana.json new file mode 100644 index 000000000000..0cafddbe93af --- /dev/null +++ b/_data/icons/vana.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QAZt75XixnEtFzqHTrJa8kJkV4ccXWaXqeMeqM8BcBomQc", + "width": 810, + "height": 810, + "format": "svg" + } +] diff --git a/_data/icons/vanamoksha.json b/_data/icons/vanamoksha.json new file mode 100644 index 000000000000..947787930e9f --- /dev/null +++ b/_data/icons/vanamoksha.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qqbx32iq4Vw4zLaaPit9aaguXJzdiocstVQWtSfreQPuSC", + "width": 28, + "height": 28, + "format": "svg" + } +] diff --git a/_data/icons/vasyl.json b/_data/icons/vasyl.json new file mode 100644 index 000000000000..0c0d081c4090 --- /dev/null +++ b/_data/icons/vasyl.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreib454hflqzfcvpsmk43mkgwsj3ds36olbf2nidtr4kppfk2ghpu2q", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/vcity.json b/_data/icons/vcity.json new file mode 100644 index 000000000000..e019be412e04 --- /dev/null +++ b/_data/icons/vcity.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXBNp75r6DUCB99vknr5B1hHQFMCc1c2wE3qNbYkuss9C", + "width": 100, + "height": 100, + "format": "png" + } +] diff --git a/_data/icons/vcitychain.json b/_data/icons/vcitychain.json new file mode 100644 index 000000000000..a99eca0cdf91 --- /dev/null +++ b/_data/icons/vcitychain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiawfldsm6h56ug2md3hp6xeos3xoyqt6gnw4mepz2f6lzi6xcygli", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/vecno.json b/_data/icons/vecno.json new file mode 100644 index 000000000000..f7a69bc3f4f7 --- /dev/null +++ b/_data/icons/vecno.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXPmM55AvkpEmqCvfP9YNQV1xsRdsPZDzwp6QHVThw6Wv", + "width": 200, + "height": 200, + "format": "svg" + } +] diff --git a/_data/icons/vectorsmartgas.json b/_data/icons/vectorsmartgas.json new file mode 100644 index 000000000000..4d5fe3ac5dcb --- /dev/null +++ b/_data/icons/vectorsmartgas.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRRoNvamJavpaFsxS1PPxyxDZ7q8akcdeNrrQXWmg2fux", + "width": 640, + "height": 640, + "format": "png" + } +] diff --git a/_data/icons/vemp-horizon.json b/_data/icons/vemp-horizon.json new file mode 100644 index 000000000000..94f07ec70f1b --- /dev/null +++ b/_data/icons/vemp-horizon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreif4le6thwalvtcpcwav53bwl4c6iltkzem3amf7zd4kogk4mblr4y", + "width": 400, + "height": 400, + "format": "jpg" + } +] diff --git a/_data/icons/very.json b/_data/icons/very.json index c6dda2917128..a949a470d57f 100644 --- a/_data/icons/very.json +++ b/_data/icons/very.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://bafkreidyrvphfojaf7iev57trxk3sxbo6qikg26pdy66ke4n22dgm52wwa", - "width": 320, - "height": 320, + "url": "ipfs://bafkreie5ozo663ddewiqfiuc5kq44giy4zdhvpq2hamsdub5gwa77hcplu", + "width": 480, + "height": 480, "format": "png" } ] diff --git a/_data/icons/vexon.json b/_data/icons/vexon.json new file mode 100644 index 000000000000..6eb33cf4ff61 --- /dev/null +++ b/_data/icons/vexon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVCPcYVXB9ZEAN87LV5RrSBqxoD8zwwgVF6dcVetffSv2", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/volcano.json b/_data/icons/volcano.json new file mode 100644 index 000000000000..2aadaec39280 --- /dev/null +++ b/_data/icons/volcano.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihuzbawkb6ymsqrptcalixg6z4wom2dt4sqsfz7zs5abcyw23jfcu", + "width": 317, + "height": 317, + "format": "png" + } +] diff --git a/_data/icons/volley.json b/_data/icons/volley.json new file mode 100644 index 000000000000..2a1e543c64a0 --- /dev/null +++ b/_data/icons/volley.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmd8hyeNQ2zvJh6b1F1A7ujKaDAoznqA9ejH2RJdRaimUk", + "width": 512, + "height": 514, + "format": "png" + } +] diff --git a/_data/icons/waba.json b/_data/icons/waba.json new file mode 100644 index 000000000000..05d3f5a8ad5f --- /dev/null +++ b/_data/icons/waba.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmX3NPsVTaBQDBySzMKZLVJhN4kakkAwrfz9mrqmUhNzUU", + "width": 32, + "height": 32, + "format": "png" + } +] diff --git a/_data/icons/wadz.json b/_data/icons/wadz.json new file mode 100644 index 000000000000..5281e0f17082 --- /dev/null +++ b/_data/icons/wadz.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRBVFviqdhyarkTAxrnq2r2em6dJXCzpNxZL4yaXPbLou", + "width": 218, + "height": 218, + "format": "png" + } +] diff --git a/_data/icons/wanchain.json b/_data/icons/wanchain.json new file mode 100644 index 000000000000..15643edce38c --- /dev/null +++ b/_data/icons/wanchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcRVHdG7Sr1f26DhkBwE1YuwFZXFjNth5S3TookXoyFaq", + "width": 360, + "height": 360, + "format": "png" + } +] diff --git a/_data/icons/warden.json b/_data/icons/warden.json new file mode 100644 index 000000000000..18df2489a881 --- /dev/null +++ b/_data/icons/warden.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmdz49xumH5yHb9jXKLR69Liv4STJQq5xW1g9xCQ9vJ3fB", + "width": 228, + "height": 228, + "format": "png" + } +] diff --git a/_data/icons/waterfall-main.json b/_data/icons/waterfall-main.json new file mode 100644 index 000000000000..302bb4add06b --- /dev/null +++ b/_data/icons/waterfall-main.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSDJPBKh9cLVL8UZ5KYwdwPyhD8bRWNb33jjt48wtu5Uc", + "width": 241, + "height": 179, + "format": "png" + } +] diff --git a/_data/icons/wem.json b/_data/icons/wem.json new file mode 100644 index 000000000000..c422438189ef --- /dev/null +++ b/_data/icons/wem.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreianwjcj56pf2cwlzl4jyuarqmxs6ewmfaz2aemxl74tdbg2fumps4", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/wemscan.json b/_data/icons/wemscan.json new file mode 100644 index 000000000000..c422438189ef --- /dev/null +++ b/_data/icons/wemscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreianwjcj56pf2cwlzl4jyuarqmxs6ewmfaz2aemxl74tdbg2fumps4", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/winr.json b/_data/icons/winr.json new file mode 100644 index 000000000000..0bfb5317b38b --- /dev/null +++ b/_data/icons/winr.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPL68edFCf9taAKQQu7rt11LrmWh7f7aBQ7ZkuhBKmrUv", + "width": 816, + "height": 854, + "format": "png" + } +] diff --git a/_data/icons/witness.json b/_data/icons/witness.json new file mode 100644 index 000000000000..246447bc9681 --- /dev/null +++ b/_data/icons/witness.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreif7kqdtkwsemjxpfiarn5db3zhe7xtqi2z3hmzls3ehygfk2dsfhe", + "width": 192, + "height": 192, + "format": "jpg" + } +] diff --git a/_data/icons/wmc.json b/_data/icons/wmc.json new file mode 100644 index 000000000000..c89cc6fec607 --- /dev/null +++ b/_data/icons/wmc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVWrPMhSkocodzjz54R6qdQ1UJx4Y6oUAsvKuqWTi9u2E", + "width": 232, + "height": 232, + "format": "png" + } +] diff --git a/_data/icons/wonder.json b/_data/icons/wonder.json new file mode 100644 index 000000000000..1890e511924b --- /dev/null +++ b/_data/icons/wonder.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidurmcvrcv5suhpf6wzmdck7nt7ayhpjucpo32xaozxpjltlobyca", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/worldmobilechain.json b/_data/icons/worldmobilechain.json new file mode 100644 index 000000000000..f69a55dbe39a --- /dev/null +++ b/_data/icons/worldmobilechain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiaa7ku47xm2736wexq53pihf7rfzeec7vwgvkhakd3sitogv4mi6m", + "width": 32, + "height": 32, + "format": "png" + } +] diff --git a/_data/icons/wowchain.json b/_data/icons/wowchain.json new file mode 100644 index 000000000000..4aa9b3e2bd22 --- /dev/null +++ b/_data/icons/wowchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZvveFvougFMXqHRi8jGQ1EStBFhmCxTyNK16RK2WWp8t", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/wpay.json b/_data/icons/wpay.json new file mode 100644 index 000000000000..e5d21cf5e2c4 --- /dev/null +++ b/_data/icons/wpay.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRkaZbopr8JTgypSQ3N3VfQumnZEN9bA5Uh3u3mL26dwT", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/xferIcon.json b/_data/icons/xferIcon.json new file mode 100644 index 000000000000..2f8336694fd8 --- /dev/null +++ b/_data/icons/xferIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmchcfbq1dansGarbpbsgiiYa64HbGYtphe493JASKawxD", + "width": 268, + "height": 245, + "format": "png" + } +] diff --git a/_data/icons/xitcoin.json b/_data/icons/xitcoin.json new file mode 100644 index 000000000000..5d67c6af5ae9 --- /dev/null +++ b/_data/icons/xitcoin.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihijckahzathexwzanldh4u4nm2wwrtus7bmbegmpc7hn4ivo5dn4", + "width": 300, + "height": 300, + "format": "png" + } +] diff --git a/_data/icons/xone-test.json b/_data/icons/xone-test.json new file mode 100644 index 000000000000..26d4893c6524 --- /dev/null +++ b/_data/icons/xone-test.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmR3twvfhDES34nLhcVmUbAZpW4eynZoSfA2XpWUBnH7gB", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/xphere.json b/_data/icons/xphere.json new file mode 100644 index 000000000000..683e62067cfa --- /dev/null +++ b/_data/icons/xphere.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfUV9PqF7JxuUAYaBHh6YJ2ChCdDVobTwDibxQuPMUmPq", + "width": 144, + "height": 144, + "format": "png" + } +] diff --git a/_data/icons/xrplevm.json b/_data/icons/xrplevm.json new file mode 100644 index 000000000000..0201e8579cd0 --- /dev/null +++ b/_data/icons/xrplevm.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXP4M9LvEfLotu5HfpMBcuxJEqpefaxhRxFPToBGfhNSo", + "width": 516, + "height": 516, + "format": "png" + } +] diff --git a/_data/icons/xsollazk.json b/_data/icons/xsollazk.json new file mode 100644 index 000000000000..59ca4a1b42b9 --- /dev/null +++ b/_data/icons/xsollazk.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreicoqzosjvdfg2b4ijg5ct5jb5ll6j3xonxlocd7j2yx6dlefuhy6m", + "width": 512, + "height": 512, + "format": "svg" + } +] diff --git a/_data/icons/xuraIcon.json b/_data/icons/xuraIcon.json new file mode 100644 index 000000000000..5079dabf2855 --- /dev/null +++ b/_data/icons/xuraIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcXFJnDV38rKUmgvM2owwrTRnxWKvEyvmp1QGFKPJ8PJj", + "width": 310, + "height": 310, + "format": "png" + } +] diff --git a/_data/icons/xusd.json b/_data/icons/xusd.json new file mode 100644 index 000000000000..87984d53f3f6 --- /dev/null +++ b/_data/icons/xusd.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreid7fdetal6wmyum5tbuhacb66gkcqkrvphcsrc3vid5xidiulycwu", + "width": 400, + "height": 400, + "format": "jpg" + } +] diff --git a/_data/icons/xusdscan.json b/_data/icons/xusdscan.json new file mode 100644 index 000000000000..9008e035a077 --- /dev/null +++ b/_data/icons/xusdscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreicbm3tcpxuoc7cfbdlvrkj7hml2pb7gjbaxvww2eekfuuiq6etm6a", + "width": 640, + "height": 640, + "format": "png" + } +] diff --git a/_data/icons/xylume-testnet.json b/_data/icons/xylume-testnet.json new file mode 100644 index 000000000000..b1567aa9a68c --- /dev/null +++ b/_data/icons/xylume-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRk9t6g5otTX6XcQjvFwsfzn2KjZwbstptH9C7uG2kVdD", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/yominet.json b/_data/icons/yominet.json new file mode 100644 index 000000000000..43223051f031 --- /dev/null +++ b/_data/icons/yominet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmceqNgqPdKXQqGBs8JGLUNUTeKEi69jmQNjXjTd6zfjHP", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/z.json b/_data/icons/z.json new file mode 100644 index 000000000000..8f62f6a04db5 --- /dev/null +++ b/_data/icons/z.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiech76mp6ro4lo7pyferpovrnvghwb745upatj5h6be4cnav52zwu", + "width": 2048, + "height": 2048, + "format": "png" + } +] diff --git a/_data/icons/zchain.json b/_data/icons/zchain.json new file mode 100644 index 000000000000..8eac2398047e --- /dev/null +++ b/_data/icons/zchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWMbLpzmFCSpgWaXKiazwSyaPQ6qKSboHpko4g4HBZbZm", + "width": 640, + "height": 640, + "format": "png" + } +] diff --git a/_data/icons/zebrocoin.json b/_data/icons/zebrocoin.json new file mode 100644 index 000000000000..4dbb03275e95 --- /dev/null +++ b/_data/icons/zebrocoin.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreig42tcn5hfgtzszmwvmodsxvtu5frfkgreb23dndle2mywns3xxse", + "width": 64, + "height": 64, + "format": "png" + } +] diff --git a/_data/icons/zedx.json b/_data/icons/zedx.json new file mode 100644 index 000000000000..3fd0554e033b --- /dev/null +++ b/_data/icons/zedx.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZ5DXJVxuMRvKzKstFte3TahJ4LSDsGd8DWTrYEPbSjTu", + "width": 254, + "height": 254, + "format": "png" + } +] diff --git a/_data/icons/zenchain.json b/_data/icons/zenchain.json new file mode 100644 index 000000000000..618a8fbfe218 --- /dev/null +++ b/_data/icons/zenchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSnaHBAeCQEaibgsGqU1enFFyWsq5Eh3dDSMBA1Qztj91", + "width": 166, + "height": 166, + "format": "svg" + } +] diff --git a/_data/icons/zeniq.json b/_data/icons/zeniq.json new file mode 100644 index 000000000000..47549a1cff0b --- /dev/null +++ b/_data/icons/zeniq.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVUVUBuN7ZeSty2PZ2sS41752b4ez4pDGbLjjY8PSrmVu", + "width": 600, + "height": 600, + "format": "png" + } +] diff --git a/_data/icons/zephyr.json b/_data/icons/zephyr.json new file mode 100644 index 000000000000..8f62f6a04db5 --- /dev/null +++ b/_data/icons/zephyr.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiech76mp6ro4lo7pyferpovrnvghwb745upatj5h6be4cnav52zwu", + "width": 2048, + "height": 2048, + "format": "png" + } +] diff --git a/_data/icons/zero-sepolia.json b/_data/icons/zero-sepolia.json new file mode 100644 index 000000000000..6bc82f5eac80 --- /dev/null +++ b/_data/icons/zero-sepolia.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWpvBtmDhZSAnRww5ZU6BvEbDbxKEzoyjWcanjc1UBD9X", + "width": 144, + "height": 144, + "format": "png" + } +] diff --git a/_data/icons/zero.json b/_data/icons/zero.json new file mode 100644 index 000000000000..6bc82f5eac80 --- /dev/null +++ b/_data/icons/zero.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWpvBtmDhZSAnRww5ZU6BvEbDbxKEzoyjWcanjc1UBD9X", + "width": 144, + "height": 144, + "format": "png" + } +] diff --git a/_data/icons/zeroth.json b/_data/icons/zeroth.json new file mode 100644 index 000000000000..5fa8912b7fc2 --- /dev/null +++ b/_data/icons/zeroth.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVz2jPdp5vXo4mJVuTXLmwcfQsw3XVojkmochPckvCowz", + "width": 180, + "height": 180, + "format": "png" + } +] diff --git a/_data/icons/zether.json b/_data/icons/zether.json new file mode 100644 index 000000000000..64716e548710 --- /dev/null +++ b/_data/icons/zether.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZwdhRze34c3synJSp6QNv5zSpMiQf7DZS3N16HxGuzGh", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/zeusicon.json b/_data/icons/zeusicon.json new file mode 100644 index 000000000000..4d3d738f60d0 --- /dev/null +++ b/_data/icons/zeusicon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdktFyG3dM6Jk4j7V9xzvWwSpmnLcaNDuWhPwFHJw7K6e", + "width": 100, + "height": 100, + "format": "png" + } +] diff --git a/_data/icons/zircuit.json b/_data/icons/zircuit.json new file mode 100644 index 000000000000..498a9127070d --- /dev/null +++ b/_data/icons/zircuit.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmV4nUUiRaTTZSyWubpF98ZL9jNCoXkrgg6AWR6FKqdxMk", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/zkcandymainnet.json b/_data/icons/zkcandymainnet.json new file mode 100644 index 000000000000..46b94b54d918 --- /dev/null +++ b/_data/icons/zkcandymainnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreib5jsvl6kxn2qvv4giag3l3e54d2wolo2lqbgkhivxu4cpjzi77eq", + "width": 512, + "height": 512, + "format": "svg" + } +] diff --git a/_data/icons/zoo.json b/_data/icons/zoo.json new file mode 100644 index 000000000000..b5cba3e25673 --- /dev/null +++ b/_data/icons/zoo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUXemD3eYrWLeFNadHtz6WbCMVs5xX5knuu71sEKhPMgA", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/zuuxchain.json b/_data/icons/zuuxchain.json new file mode 100644 index 000000000000..1ed7e07e25a8 --- /dev/null +++ b/_data/icons/zuuxchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUbpXxB8ZkowBKRN4g7QrezZvVHWEcTwBjx4Pkgx3uJXX", + "width": 1199, + "height": 1229, + "format": "png" + } +] diff --git a/_data/icons/zytron.json b/_data/icons/zytron.json new file mode 100644 index 000000000000..1ad88a918945 --- /dev/null +++ b/_data/icons/zytron.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmY9cfmkCxJfPwKfCv6aF6CNiMWM5aN3jUSTf4rMfxaaJd", + "width": 180, + "height": 180, + "format": "png" + } +] diff --git a/_data/iconsDownload/QAZt75XixnEtFzqHTrJa8kJkV4ccXWaXqeMeqM8BcBomQc b/_data/iconsDownload/QAZt75XixnEtFzqHTrJa8kJkV4ccXWaXqeMeqM8BcBomQc new file mode 100644 index 000000000000..5c86291ecd77 --- /dev/null +++ b/_data/iconsDownload/QAZt75XixnEtFzqHTrJa8kJkV4ccXWaXqeMeqM8BcBomQc @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/_data/iconsDownload/QmAbz7VfGvf6NVHezuBy5HpJTCi1gEshBxxdDdfVXNQ8Bt b/_data/iconsDownload/QmAbz7VfGvf6NVHezuBy5HpJTCi1gEshBxxdDdfVXNQ8Bt new file mode 100644 index 000000000000..eb1249a98de8 --- /dev/null +++ b/_data/iconsDownload/QmAbz7VfGvf6NVHezuBy5HpJTCi1gEshBxxdDdfVXNQ8Bt @@ -0,0 +1,22 @@ + + + + \ No newline at end of file diff --git a/_data/iconsDownload/QmNVegdThJHrdcJxYTrmgccARTDTz9DkhxLffDCvDMp4an b/_data/iconsDownload/QmNVegdThJHrdcJxYTrmgccARTDTz9DkhxLffDCvDMp4an new file mode 100644 index 000000000000..27779eac30f7 Binary files /dev/null and b/_data/iconsDownload/QmNVegdThJHrdcJxYTrmgccARTDTz9DkhxLffDCvDMp4an differ diff --git a/_data/iconsDownload/QmPAcZioXaoJd8vFRrqdj2cWXWkbSHoCPiyZH9ukncfvfg b/_data/iconsDownload/QmPAcZioXaoJd8vFRrqdj2cWXWkbSHoCPiyZH9ukncfvfg new file mode 100755 index 000000000000..dcb5b8d09fe6 Binary files /dev/null and b/_data/iconsDownload/QmPAcZioXaoJd8vFRrqdj2cWXWkbSHoCPiyZH9ukncfvfg differ diff --git a/_data/iconsDownload/QmPh2FdjoPWBaCKNrknv6HjruxdUCr8AvJYvhpgHZP6e2C b/_data/iconsDownload/QmPh2FdjoPWBaCKNrknv6HjruxdUCr8AvJYvhpgHZP6e2C new file mode 100644 index 000000000000..42892890fde5 Binary files /dev/null and b/_data/iconsDownload/QmPh2FdjoPWBaCKNrknv6HjruxdUCr8AvJYvhpgHZP6e2C differ diff --git a/_data/iconsDownload/QmQBiGUPQ4f7zREjdvaV4itwJB2gCaYEMvtaiDqFMweTPn b/_data/iconsDownload/QmQBiGUPQ4f7zREjdvaV4itwJB2gCaYEMvtaiDqFMweTPn new file mode 100644 index 000000000000..4c86fe86cdce --- /dev/null +++ b/_data/iconsDownload/QmQBiGUPQ4f7zREjdvaV4itwJB2gCaYEMvtaiDqFMweTPn @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/_data/iconsDownload/QmQd2MWwDkGsH6JsHPAKXqy8o2kedYMzbnaEHoRpmvSiLW b/_data/iconsDownload/QmQd2MWwDkGsH6JsHPAKXqy8o2kedYMzbnaEHoRpmvSiLW new file mode 100644 index 000000000000..d87ade78008d Binary files /dev/null and b/_data/iconsDownload/QmQd2MWwDkGsH6JsHPAKXqy8o2kedYMzbnaEHoRpmvSiLW differ diff --git a/_data/iconsDownload/QmQhdktNyBeXmCaVuQpi1B4yXheSUKrJA17L4wpECKzG5D b/_data/iconsDownload/QmQhdktNyBeXmCaVuQpi1B4yXheSUKrJA17L4wpECKzG5D deleted file mode 100644 index 98738e0cabe7..000000000000 Binary files a/_data/iconsDownload/QmQhdktNyBeXmCaVuQpi1B4yXheSUKrJA17L4wpECKzG5D and /dev/null differ diff --git a/_data/iconsDownload/QmQurJBRScSDar6oDJ4pAeKKvzHr49KJfS1iuCkbtiNe4x b/_data/iconsDownload/QmQurJBRScSDar6oDJ4pAeKKvzHr49KJfS1iuCkbtiNe4x new file mode 100644 index 000000000000..f0c124f3300c Binary files /dev/null and b/_data/iconsDownload/QmQurJBRScSDar6oDJ4pAeKKvzHr49KJfS1iuCkbtiNe4x differ diff --git a/_data/iconsDownload/QmR1AnNYGeXpVmsKyzqktk4K1BtFPiaJpeXuLktb9Kwmer b/_data/iconsDownload/QmR1AnNYGeXpVmsKyzqktk4K1BtFPiaJpeXuLktb9Kwmer new file mode 100644 index 000000000000..d838f4fc9e52 Binary files /dev/null and b/_data/iconsDownload/QmR1AnNYGeXpVmsKyzqktk4K1BtFPiaJpeXuLktb9Kwmer differ diff --git a/_data/iconsDownload/QmR3iCrjrW814fyv79UeVimDT4fTeBQcpYgMYxv1U6W15u b/_data/iconsDownload/QmR3iCrjrW814fyv79UeVimDT4fTeBQcpYgMYxv1U6W15u new file mode 100644 index 000000000000..05181fbad450 Binary files /dev/null and b/_data/iconsDownload/QmR3iCrjrW814fyv79UeVimDT4fTeBQcpYgMYxv1U6W15u differ diff --git a/_data/iconsDownload/QmR3twvfhDES34nLhcVmUbAZpW4eynZoSfA2XpWUBnH7gB b/_data/iconsDownload/QmR3twvfhDES34nLhcVmUbAZpW4eynZoSfA2XpWUBnH7gB new file mode 100644 index 000000000000..36ee1af69d1a Binary files /dev/null and b/_data/iconsDownload/QmR3twvfhDES34nLhcVmUbAZpW4eynZoSfA2XpWUBnH7gB differ diff --git a/_data/iconsDownload/QmRb2rWanyBTKS5KyrmrbXPNy9zovpxfLRxz9FPPiuRgfg b/_data/iconsDownload/QmRb2rWanyBTKS5KyrmrbXPNy9zovpxfLRxz9FPPiuRgfg new file mode 100644 index 000000000000..65bc7b1f0ca5 Binary files /dev/null and b/_data/iconsDownload/QmRb2rWanyBTKS5KyrmrbXPNy9zovpxfLRxz9FPPiuRgfg differ diff --git a/_data/iconsDownload/QmRkaZbopr8JTgypSQ3N3VfQumnZEN9bA5Uh3u3mL26dwT b/_data/iconsDownload/QmRkaZbopr8JTgypSQ3N3VfQumnZEN9bA5Uh3u3mL26dwT new file mode 100644 index 000000000000..f0bf5adf0921 Binary files /dev/null and b/_data/iconsDownload/QmRkaZbopr8JTgypSQ3N3VfQumnZEN9bA5Uh3u3mL26dwT differ diff --git a/_data/iconsDownload/QmRvHRuhfQgDRyGgt6vCoHqjZW2Dir7siowYnBpR5BRSej b/_data/iconsDownload/QmRvHRuhfQgDRyGgt6vCoHqjZW2Dir7siowYnBpR5BRSej deleted file mode 100644 index c7d5d43569ed..000000000000 Binary files a/_data/iconsDownload/QmRvHRuhfQgDRyGgt6vCoHqjZW2Dir7siowYnBpR5BRSej and /dev/null differ diff --git a/_data/iconsDownload/QmS3EEhWSZCXkKWddm1eQPifDY2kdFPaAfZuZUftPKB7x3 b/_data/iconsDownload/QmS3EEhWSZCXkKWddm1eQPifDY2kdFPaAfZuZUftPKB7x3 new file mode 100644 index 000000000000..bbb8dc96d660 Binary files /dev/null and b/_data/iconsDownload/QmS3EEhWSZCXkKWddm1eQPifDY2kdFPaAfZuZUftPKB7x3 differ diff --git a/_data/iconsDownload/QmSW2YhCvMpnwtPGTJAuEK2QgyWfFjmnwcrapUg6kqFsPf b/_data/iconsDownload/QmSW2YhCvMpnwtPGTJAuEK2QgyWfFjmnwcrapUg6kqFsPf deleted file mode 100644 index 340ee8b445cb..000000000000 --- a/_data/iconsDownload/QmSW2YhCvMpnwtPGTJAuEK2QgyWfFjmnwcrapUg6kqFsPf +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/_data/iconsDownload/QmT8DN1zVgkDDWV17kmKqP6vcJQZfhCKVj3HtgqbxUbi9g b/_data/iconsDownload/QmT8DN1zVgkDDWV17kmKqP6vcJQZfhCKVj3HtgqbxUbi9g new file mode 100644 index 000000000000..4809f0635a7e Binary files /dev/null and b/_data/iconsDownload/QmT8DN1zVgkDDWV17kmKqP6vcJQZfhCKVj3HtgqbxUbi9g differ diff --git a/_data/iconsDownload/QmTJwaQcF6widssKvbNgdM4AVaddiTqFM2j4n6x17Sp3FL b/_data/iconsDownload/QmTJwaQcF6widssKvbNgdM4AVaddiTqFM2j4n6x17Sp3FL new file mode 100644 index 000000000000..7a635dc0169b Binary files /dev/null and b/_data/iconsDownload/QmTJwaQcF6widssKvbNgdM4AVaddiTqFM2j4n6x17Sp3FL differ diff --git a/_data/iconsDownload/QmTMbwvGznhMwxWbX28FWtj4Me8ayGQjUQG7zrXPCJzLTa b/_data/iconsDownload/QmTMbwvGznhMwxWbX28FWtj4Me8ayGQjUQG7zrXPCJzLTa new file mode 100644 index 000000000000..4d8d6af7c11d Binary files /dev/null and b/_data/iconsDownload/QmTMbwvGznhMwxWbX28FWtj4Me8ayGQjUQG7zrXPCJzLTa differ diff --git a/_data/iconsDownload/QmTQh54Rf3DFYxZZoQQ9yCjeAYXwzTaVua4KLmXX8AsFNF b/_data/iconsDownload/QmTQh54Rf3DFYxZZoQQ9yCjeAYXwzTaVua4KLmXX8AsFNF new file mode 100644 index 000000000000..89bca745090d Binary files /dev/null and b/_data/iconsDownload/QmTQh54Rf3DFYxZZoQQ9yCjeAYXwzTaVua4KLmXX8AsFNF differ diff --git a/_data/iconsDownload/QmTY2Z7AEEWxmzQyh7DFG8fyR3w6Y166GDJfi6o3xo6GgV b/_data/iconsDownload/QmTY2Z7AEEWxmzQyh7DFG8fyR3w6Y166GDJfi6o3xo6GgV new file mode 100644 index 000000000000..d121b3919c4b Binary files /dev/null and b/_data/iconsDownload/QmTY2Z7AEEWxmzQyh7DFG8fyR3w6Y166GDJfi6o3xo6GgV differ diff --git a/_data/iconsDownload/QmU5yJvjdeVGzNutn2U6wLWfHDGsDafLfZg7HRJ8ji3yfJ b/_data/iconsDownload/QmU5yJvjdeVGzNutn2U6wLWfHDGsDafLfZg7HRJ8ji3yfJ new file mode 100644 index 000000000000..38216013def1 Binary files /dev/null and b/_data/iconsDownload/QmU5yJvjdeVGzNutn2U6wLWfHDGsDafLfZg7HRJ8ji3yfJ differ diff --git a/_data/iconsDownload/QmUP7NPPrCe6N6k8RQh4KuSBU2xMvbyo6enCtzyE5v4bmQ b/_data/iconsDownload/QmUP7NPPrCe6N6k8RQh4KuSBU2xMvbyo6enCtzyE5v4bmQ new file mode 100644 index 000000000000..1880060f17a0 Binary files /dev/null and b/_data/iconsDownload/QmUP7NPPrCe6N6k8RQh4KuSBU2xMvbyo6enCtzyE5v4bmQ differ diff --git a/_data/iconsDownload/QmUetrmaY5KwmRzjgcoZCfqqTaEYSc57V2EVBjFQwpZrE1 b/_data/iconsDownload/QmUetrmaY5KwmRzjgcoZCfqqTaEYSc57V2EVBjFQwpZrE1 new file mode 100644 index 000000000000..d45c4fba307e Binary files /dev/null and b/_data/iconsDownload/QmUetrmaY5KwmRzjgcoZCfqqTaEYSc57V2EVBjFQwpZrE1 differ diff --git a/_data/iconsDownload/QmUtKXY4N9kNCs9hAkAyi1nsvMWvDzs5vUjgYXTJoZCYqu b/_data/iconsDownload/QmUtKXY4N9kNCs9hAkAyi1nsvMWvDzs5vUjgYXTJoZCYqu new file mode 100644 index 000000000000..59675a7b0b31 Binary files /dev/null and b/_data/iconsDownload/QmUtKXY4N9kNCs9hAkAyi1nsvMWvDzs5vUjgYXTJoZCYqu differ diff --git a/_data/iconsDownload/QmV8Ks2Bikdy3VejY1YRAoucB5nifVocBhG7GJqfGmZuF3 b/_data/iconsDownload/QmV8Ks2Bikdy3VejY1YRAoucB5nifVocBhG7GJqfGmZuF3 new file mode 100644 index 000000000000..dbfa61e352ac --- /dev/null +++ b/_data/iconsDownload/QmV8Ks2Bikdy3VejY1YRAoucB5nifVocBhG7GJqfGmZuF3 @@ -0,0 +1,319 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_data/iconsDownload/QmVCPcYVXB9ZEAN87LV5RrSBqxoD8zwwgVF6dcVetffSv2 b/_data/iconsDownload/QmVCPcYVXB9ZEAN87LV5RrSBqxoD8zwwgVF6dcVetffSv2 new file mode 100644 index 000000000000..a7ad262573e1 Binary files /dev/null and b/_data/iconsDownload/QmVCPcYVXB9ZEAN87LV5RrSBqxoD8zwwgVF6dcVetffSv2 differ diff --git a/_data/iconsDownload/QmVCjy8yDeqWHFRNV2CaB82cLheVp37RdVGjwAxxjKqD5L b/_data/iconsDownload/QmVCjy8yDeqWHFRNV2CaB82cLheVp37RdVGjwAxxjKqD5L new file mode 100644 index 000000000000..2069e778662e Binary files /dev/null and b/_data/iconsDownload/QmVCjy8yDeqWHFRNV2CaB82cLheVp37RdVGjwAxxjKqD5L differ diff --git a/_data/iconsDownload/QmVJWQ1f1vuQFdajLnqgbV3udPJKK7yC4comWwjT6NUinQ b/_data/iconsDownload/QmVJWQ1f1vuQFdajLnqgbV3udPJKK7yC4comWwjT6NUinQ new file mode 100644 index 000000000000..545b20689c92 --- /dev/null +++ b/_data/iconsDownload/QmVJWQ1f1vuQFdajLnqgbV3udPJKK7yC4comWwjT6NUinQ @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/_data/iconsDownload/QmVLphQTid27kfv3R6Vd2UdiHYWYu3oUTmztmiqSBkZ3nu b/_data/iconsDownload/QmVLphQTid27kfv3R6Vd2UdiHYWYu3oUTmztmiqSBkZ3nu new file mode 100644 index 000000000000..3fc9cd97e833 Binary files /dev/null and b/_data/iconsDownload/QmVLphQTid27kfv3R6Vd2UdiHYWYu3oUTmztmiqSBkZ3nu differ diff --git a/_data/iconsDownload/QmVz2jPdp5vXo4mJVuTXLmwcfQsw3XVojkmochPckvCowz b/_data/iconsDownload/QmVz2jPdp5vXo4mJVuTXLmwcfQsw3XVojkmochPckvCowz new file mode 100644 index 000000000000..eba2d7b31fb5 Binary files /dev/null and b/_data/iconsDownload/QmVz2jPdp5vXo4mJVuTXLmwcfQsw3XVojkmochPckvCowz differ diff --git a/_data/iconsDownload/QmWASoRS8k7YspDLiwz5xfpusBtqHwy5hR5B9NynGx8HGt b/_data/iconsDownload/QmWASoRS8k7YspDLiwz5xfpusBtqHwy5hR5B9NynGx8HGt new file mode 100644 index 000000000000..1208b3027059 Binary files /dev/null and b/_data/iconsDownload/QmWASoRS8k7YspDLiwz5xfpusBtqHwy5hR5B9NynGx8HGt differ diff --git a/_data/iconsDownload/QmWcaVLcPYBxi76HYJc4qudLJwXtfNCDJieLHAs632jMEA b/_data/iconsDownload/QmWcaVLcPYBxi76HYJc4qudLJwXtfNCDJieLHAs632jMEA new file mode 100644 index 000000000000..f44d224f59ca Binary files /dev/null and b/_data/iconsDownload/QmWcaVLcPYBxi76HYJc4qudLJwXtfNCDJieLHAs632jMEA differ diff --git a/_data/iconsDownload/QmWeJdWk2HiZhcCtecHyzxm7DBH5KDH2ERj9ZiqxmxgUto b/_data/iconsDownload/QmWeJdWk2HiZhcCtecHyzxm7DBH5KDH2ERj9ZiqxmxgUto new file mode 100644 index 000000000000..9bbd7a337b8a Binary files /dev/null and b/_data/iconsDownload/QmWeJdWk2HiZhcCtecHyzxm7DBH5KDH2ERj9ZiqxmxgUto differ diff --git a/_data/iconsDownload/QmWjBJXdpBzNHtakvEkjKXU5XMJn8JaUTNLfaUt8Y1swPE b/_data/iconsDownload/QmWjBJXdpBzNHtakvEkjKXU5XMJn8JaUTNLfaUt8Y1swPE new file mode 100644 index 000000000000..74de5b52fc45 Binary files /dev/null and b/_data/iconsDownload/QmWjBJXdpBzNHtakvEkjKXU5XMJn8JaUTNLfaUt8Y1swPE differ diff --git a/_data/iconsDownload/QmWpvBtmDhZSAnRww5ZU6BvEbDbxKEzoyjWcanjc1UBD9X b/_data/iconsDownload/QmWpvBtmDhZSAnRww5ZU6BvEbDbxKEzoyjWcanjc1UBD9X new file mode 100644 index 000000000000..cd08c1293d95 Binary files /dev/null and b/_data/iconsDownload/QmWpvBtmDhZSAnRww5ZU6BvEbDbxKEzoyjWcanjc1UBD9X differ diff --git a/_data/iconsDownload/QmWrjS43miGAKEzKyNn1YajFn4zG7cDiPiaNHF1gTqKR91 b/_data/iconsDownload/QmWrjS43miGAKEzKyNn1YajFn4zG7cDiPiaNHF1gTqKR91 new file mode 100644 index 000000000000..b72b406edf7f Binary files /dev/null and b/_data/iconsDownload/QmWrjS43miGAKEzKyNn1YajFn4zG7cDiPiaNHF1gTqKR91 differ diff --git a/_data/iconsDownload/QmWsvNvJgnZkiZ1y1VDPfUkSbaWrJVhEMXx7U9vEZx2HZA b/_data/iconsDownload/QmWsvNvJgnZkiZ1y1VDPfUkSbaWrJVhEMXx7U9vEZx2HZA new file mode 100644 index 000000000000..a9a93157c2e2 Binary files /dev/null and b/_data/iconsDownload/QmWsvNvJgnZkiZ1y1VDPfUkSbaWrJVhEMXx7U9vEZx2HZA differ diff --git a/_data/iconsDownload/QmWtu564n5T9KhhzKGMEcNWXXume5RzyUu7bARUX6ppHpW b/_data/iconsDownload/QmWtu564n5T9KhhzKGMEcNWXXume5RzyUu7bARUX6ppHpW new file mode 100644 index 000000000000..174932ec7606 Binary files /dev/null and b/_data/iconsDownload/QmWtu564n5T9KhhzKGMEcNWXXume5RzyUu7bARUX6ppHpW differ diff --git a/_data/iconsDownload/QmWyyraWiYNJRAb4AEEkozjh8u5TAnFNG7YnFd7A54AjPi b/_data/iconsDownload/QmWyyraWiYNJRAb4AEEkozjh8u5TAnFNG7YnFd7A54AjPi new file mode 100644 index 000000000000..e1b015bf7070 Binary files /dev/null and b/_data/iconsDownload/QmWyyraWiYNJRAb4AEEkozjh8u5TAnFNG7YnFd7A54AjPi differ diff --git a/_data/iconsDownload/QmXbBMMhjTTGAGjmqMpJm3ufFrtdkfEXCFyXYgz7nnZzsy b/_data/iconsDownload/QmXbBMMhjTTGAGjmqMpJm3ufFrtdkfEXCFyXYgz7nnZzsy deleted file mode 100644 index 5aa0fefb2b2d..000000000000 Binary files a/_data/iconsDownload/QmXbBMMhjTTGAGjmqMpJm3ufFrtdkfEXCFyXYgz7nnZzsy and /dev/null differ diff --git a/_data/iconsDownload/QmXxRtZnrvzckKVwbRLpKpP9E9vGgQCUPkLroQDCYTmQdG b/_data/iconsDownload/QmXxRtZnrvzckKVwbRLpKpP9E9vGgQCUPkLroQDCYTmQdG new file mode 100644 index 000000000000..7b8e95053621 Binary files /dev/null and b/_data/iconsDownload/QmXxRtZnrvzckKVwbRLpKpP9E9vGgQCUPkLroQDCYTmQdG differ diff --git a/_data/iconsDownload/QmYFYwyquipwc9gURQGcEd4iAq7pq15chQrJ3zJJe9HuFT b/_data/iconsDownload/QmYFYwyquipwc9gURQGcEd4iAq7pq15chQrJ3zJJe9HuFT deleted file mode 100644 index 8b975c3b4271..000000000000 Binary files a/_data/iconsDownload/QmYFYwyquipwc9gURQGcEd4iAq7pq15chQrJ3zJJe9HuFT and /dev/null differ diff --git a/_data/iconsDownload/QmYNVkoZgRjDBQzJz6kog9mA2yPzQFW2oSKvhnkwuBhLQE b/_data/iconsDownload/QmYNVkoZgRjDBQzJz6kog9mA2yPzQFW2oSKvhnkwuBhLQE deleted file mode 100644 index 842f99f60850..000000000000 Binary files a/_data/iconsDownload/QmYNVkoZgRjDBQzJz6kog9mA2yPzQFW2oSKvhnkwuBhLQE and /dev/null differ diff --git a/_data/iconsDownload/QmYmQAo5hSr16LDeSbWbXfKdF6qa2zCoK7e88r2f7RiFdt b/_data/iconsDownload/QmYmQAo5hSr16LDeSbWbXfKdF6qa2zCoK7e88r2f7RiFdt new file mode 100644 index 000000000000..6446875ef007 Binary files /dev/null and b/_data/iconsDownload/QmYmQAo5hSr16LDeSbWbXfKdF6qa2zCoK7e88r2f7RiFdt differ diff --git a/_data/iconsDownload/QmZESsg3P8cimYjibkD8w1T8DgszAHcKn7UReC8FWbfDGz b/_data/iconsDownload/QmZESsg3P8cimYjibkD8w1T8DgszAHcKn7UReC8FWbfDGz new file mode 100644 index 000000000000..c89042568d2f Binary files /dev/null and b/_data/iconsDownload/QmZESsg3P8cimYjibkD8w1T8DgszAHcKn7UReC8FWbfDGz differ diff --git a/_data/iconsDownload/QmZWF4RcDtxuFRRGgMMuDV7FWCYR6kA9cAUTk12iADU52U b/_data/iconsDownload/QmZWF4RcDtxuFRRGgMMuDV7FWCYR6kA9cAUTk12iADU52U new file mode 100644 index 000000000000..37c63234b45e Binary files /dev/null and b/_data/iconsDownload/QmZWF4RcDtxuFRRGgMMuDV7FWCYR6kA9cAUTk12iADU52U differ diff --git a/_data/iconsDownload/QmZmY5VTAaYo3Hd7Y1dyWn5DcffFtr2xpYEHammzfKVoZ2 b/_data/iconsDownload/QmZmY5VTAaYo3Hd7Y1dyWn5DcffFtr2xpYEHammzfKVoZ2 new file mode 100644 index 000000000000..17473ad93e50 Binary files /dev/null and b/_data/iconsDownload/QmZmY5VTAaYo3Hd7Y1dyWn5DcffFtr2xpYEHammzfKVoZ2 differ diff --git a/_data/iconsDownload/QmZvveFvougFMXqHRi8jGQ1EStBFhmCxTyNK16RK2WWp8t b/_data/iconsDownload/QmZvveFvougFMXqHRi8jGQ1EStBFhmCxTyNK16RK2WWp8t new file mode 100644 index 000000000000..aec43ee8c22f Binary files /dev/null and b/_data/iconsDownload/QmZvveFvougFMXqHRi8jGQ1EStBFhmCxTyNK16RK2WWp8t differ diff --git a/_data/iconsDownload/QmZwdhRze34c3synJSp6QNv5zSpMiQf7DZS3N16HxGuzGh b/_data/iconsDownload/QmZwdhRze34c3synJSp6QNv5zSpMiQf7DZS3N16HxGuzGh new file mode 100644 index 000000000000..bdf2b0d119c2 Binary files /dev/null and b/_data/iconsDownload/QmZwdhRze34c3synJSp6QNv5zSpMiQf7DZS3N16HxGuzGh differ diff --git a/_data/iconsDownload/QmajJp6gbZbTMNm5NjGFMv9gYKzDJsW4vVxTECu8NzGXa2 b/_data/iconsDownload/QmajJp6gbZbTMNm5NjGFMv9gYKzDJsW4vVxTECu8NzGXa2 new file mode 100644 index 000000000000..1a90c1d87662 Binary files /dev/null and b/_data/iconsDownload/QmajJp6gbZbTMNm5NjGFMv9gYKzDJsW4vVxTECu8NzGXa2 differ diff --git a/_data/iconsDownload/QmbCPtffFMcvifBKaddrjHtVLZrQorQiFgnNLAp9s2sS9x b/_data/iconsDownload/QmbCPtffFMcvifBKaddrjHtVLZrQorQiFgnNLAp9s2sS9x new file mode 100644 index 000000000000..0bd511be2e69 --- /dev/null +++ b/_data/iconsDownload/QmbCPtffFMcvifBKaddrjHtVLZrQorQiFgnNLAp9s2sS9x @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_data/iconsDownload/QmbEytMCh2xFr7q87HjthX4K2MKmjfHih2mqS42tqTZoMy b/_data/iconsDownload/QmbEytMCh2xFr7q87HjthX4K2MKmjfHih2mqS42tqTZoMy new file mode 100644 index 000000000000..e36d451e4d5e Binary files /dev/null and b/_data/iconsDownload/QmbEytMCh2xFr7q87HjthX4K2MKmjfHih2mqS42tqTZoMy differ diff --git a/_data/iconsDownload/QmbRJzDeAdMkEXkqDwBwezpUxyjTPHZ2iXEomqKPvWZcWE b/_data/iconsDownload/QmbRJzDeAdMkEXkqDwBwezpUxyjTPHZ2iXEomqKPvWZcWE new file mode 100644 index 000000000000..578a1b16864f --- /dev/null +++ b/_data/iconsDownload/QmbRJzDeAdMkEXkqDwBwezpUxyjTPHZ2iXEomqKPvWZcWE @@ -0,0 +1,3 @@ + + + diff --git a/_data/iconsDownload/QmbdpXXsDDtskhYSFVg3UZqFLcdVhcTKDD29CzKTpgCLCb b/_data/iconsDownload/QmbdpXXsDDtskhYSFVg3UZqFLcdVhcTKDD29CzKTpgCLCb new file mode 100644 index 000000000000..858087ec5e1c Binary files /dev/null and b/_data/iconsDownload/QmbdpXXsDDtskhYSFVg3UZqFLcdVhcTKDD29CzKTpgCLCb differ diff --git a/_data/iconsDownload/Qmbk23C5vXpGBfq8SuPXR1PrfWER2m8w6LGqBkhXAvxia9 b/_data/iconsDownload/Qmbk23C5vXpGBfq8SuPXR1PrfWER2m8w6LGqBkhXAvxia9 new file mode 100644 index 000000000000..8b3b95ca5c92 --- /dev/null +++ b/_data/iconsDownload/Qmbk23C5vXpGBfq8SuPXR1PrfWER2m8w6LGqBkhXAvxia9 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_data/iconsDownload/Qmbk23C5vZpGBfq8SuPXR1PrfWER2m8w6LGqBkhXAvxia1 b/_data/iconsDownload/Qmbk23C5vZpGBfq8SuPXR1PrfWER2m8w6LGqBkhXAvxia1 new file mode 100644 index 000000000000..8b3b95ca5c92 --- /dev/null +++ b/_data/iconsDownload/Qmbk23C5vZpGBfq8SuPXR1PrfWER2m8w6LGqBkhXAvxia1 @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_data/iconsDownload/QmbySJWaSQxzL3F4zvpKYaNvMjHsX2qUyWTv2kpitq9dW8 b/_data/iconsDownload/QmbySJWaSQxzL3F4zvpKYaNvMjHsX2qUyWTv2kpitq9dW8 new file mode 100644 index 000000000000..6a627d77a466 Binary files /dev/null and b/_data/iconsDownload/QmbySJWaSQxzL3F4zvpKYaNvMjHsX2qUyWTv2kpitq9dW8 differ diff --git a/_data/iconsDownload/QmcRVHdG7Sr1f26DhkBwE1YuwFZXFjNth5S3TookXoyFaq b/_data/iconsDownload/QmcRVHdG7Sr1f26DhkBwE1YuwFZXFjNth5S3TookXoyFaq new file mode 100644 index 000000000000..f9fd2202e2aa Binary files /dev/null and b/_data/iconsDownload/QmcRVHdG7Sr1f26DhkBwE1YuwFZXFjNth5S3TookXoyFaq differ diff --git a/_data/iconsDownload/QmcXFJnDV38rKUmgvM2owwrTRnxWKvEyvmp1QGFKPJ8PJj b/_data/iconsDownload/QmcXFJnDV38rKUmgvM2owwrTRnxWKvEyvmp1QGFKPJ8PJj new file mode 100644 index 000000000000..b3d34add0ce1 Binary files /dev/null and b/_data/iconsDownload/QmcXFJnDV38rKUmgvM2owwrTRnxWKvEyvmp1QGFKPJ8PJj differ diff --git a/_data/iconsDownload/Qmchcfbq1dansGarbpbsgiiYa64HbGYtphe493JASKawxD b/_data/iconsDownload/Qmchcfbq1dansGarbpbsgiiYa64HbGYtphe493JASKawxD new file mode 100644 index 000000000000..ac7a420f25b3 Binary files /dev/null and b/_data/iconsDownload/Qmchcfbq1dansGarbpbsgiiYa64HbGYtphe493JASKawxD differ diff --git a/_data/iconsDownload/QmcwGGWyemrFUZPriS3PqxLUoT7vdtS7FqNY5fAaoTG27Q b/_data/iconsDownload/QmcwGGWyemrFUZPriS3PqxLUoT7vdtS7FqNY5fAaoTG27Q new file mode 100644 index 000000000000..18678169b144 Binary files /dev/null and b/_data/iconsDownload/QmcwGGWyemrFUZPriS3PqxLUoT7vdtS7FqNY5fAaoTG27Q differ diff --git a/_data/iconsDownload/QmcwymedPKMBVUptXLeuco2kV7LEhyd3bQ6x3aAh4VAmNJ b/_data/iconsDownload/QmcwymedPKMBVUptXLeuco2kV7LEhyd3bQ6x3aAh4VAmNJ new file mode 100644 index 000000000000..888f1429bc90 Binary files /dev/null and b/_data/iconsDownload/QmcwymedPKMBVUptXLeuco2kV7LEhyd3bQ6x3aAh4VAmNJ differ diff --git a/_data/iconsDownload/QmcxyEjW9G8K9JP6rZGjRmjJuS9BvgMwzL5dKM1nV2aPLs b/_data/iconsDownload/QmcxyEjW9G8K9JP6rZGjRmjJuS9BvgMwzL5dKM1nV2aPLs new file mode 100644 index 000000000000..263516ba79ed Binary files /dev/null and b/_data/iconsDownload/QmcxyEjW9G8K9JP6rZGjRmjJuS9BvgMwzL5dKM1nV2aPLs differ diff --git a/_data/iconsDownload/Qmd6rSbfpVjQQZXothmiwGqKo7zovnB9gkeoYcunDt7ZTb b/_data/iconsDownload/Qmd6rSbfpVjQQZXothmiwGqKo7zovnB9gkeoYcunDt7ZTb new file mode 100644 index 000000000000..da1ce2f2bf20 Binary files /dev/null and b/_data/iconsDownload/Qmd6rSbfpVjQQZXothmiwGqKo7zovnB9gkeoYcunDt7ZTb differ diff --git a/_data/iconsDownload/QmdDeCjjYSG5FEAxzAuERXnS3AbeZvqSFVTn9x7UbrQeuT b/_data/iconsDownload/QmdDeCjjYSG5FEAxzAuERXnS3AbeZvqSFVTn9x7UbrQeuT new file mode 100644 index 000000000000..b8ba5528937a Binary files /dev/null and b/_data/iconsDownload/QmdDeCjjYSG5FEAxzAuERXnS3AbeZvqSFVTn9x7UbrQeuT differ diff --git a/_data/iconsDownload/QmdUgiGaD6fGjhb9x1NvfccvEBBFq2YHSm9yb8FNhpwHkW b/_data/iconsDownload/QmdUgiGaD6fGjhb9x1NvfccvEBBFq2YHSm9yb8FNhpwHkW new file mode 100644 index 000000000000..050b890693ec Binary files /dev/null and b/_data/iconsDownload/QmdUgiGaD6fGjhb9x1NvfccvEBBFq2YHSm9yb8FNhpwHkW differ diff --git a/_data/iconsDownload/QmdkENLFjLRNts2kBspNbM3q84WjG5Yf7C8amVVr7FCQrp b/_data/iconsDownload/QmdkENLFjLRNts2kBspNbM3q84WjG5Yf7C8amVVr7FCQrp new file mode 100644 index 000000000000..8cdcaf482a12 Binary files /dev/null and b/_data/iconsDownload/QmdkENLFjLRNts2kBspNbM3q84WjG5Yf7C8amVVr7FCQrp differ diff --git a/_data/iconsDownload/QmdktFyG3dM6Jk4j7V9xzvWwSpmnLcaNDuWhPwFHJw7K6e b/_data/iconsDownload/QmdktFyG3dM6Jk4j7V9xzvWwSpmnLcaNDuWhPwFHJw7K6e new file mode 100644 index 000000000000..5e94aa70a3d8 Binary files /dev/null and b/_data/iconsDownload/QmdktFyG3dM6Jk4j7V9xzvWwSpmnLcaNDuWhPwFHJw7K6e differ diff --git a/_data/iconsDownload/QmdoqEVRnp6Z49VTxEjPMRMAfUv1CbN7wbFw5G1S34SqeA b/_data/iconsDownload/QmdoqEVRnp6Z49VTxEjPMRMAfUv1CbN7wbFw5G1S34SqeA new file mode 100644 index 000000000000..7ffc3f139080 Binary files /dev/null and b/_data/iconsDownload/QmdoqEVRnp6Z49VTxEjPMRMAfUv1CbN7wbFw5G1S34SqeA differ diff --git a/_data/iconsDownload/QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2ws b/_data/iconsDownload/QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2ws new file mode 100644 index 000000000000..999dd3c13977 --- /dev/null +++ b/_data/iconsDownload/QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2ws @@ -0,0 +1,6 @@ + + + + + + diff --git a/_data/iconsDownload/QmeGtXdTHHMnf6rWUWFcefMGaVp7dJ6SWNgxgbVgm9YHTZ b/_data/iconsDownload/QmeGtXdTHHMnf6rWUWFcefMGaVp7dJ6SWNgxgbVgm9YHTZ new file mode 100644 index 000000000000..ec124a4e5974 Binary files /dev/null and b/_data/iconsDownload/QmeGtXdTHHMnf6rWUWFcefMGaVp7dJ6SWNgxgbVgm9YHTZ differ diff --git a/_data/iconsDownload/QmeTQaBCkpbsxNNWTpoNrMsnwnAEf1wYTcn7CiiZGfUXD2 b/_data/iconsDownload/QmeTQaBCkpbsxNNWTpoNrMsnwnAEf1wYTcn7CiiZGfUXD2 deleted file mode 100644 index b84b369b4db2..000000000000 Binary files a/_data/iconsDownload/QmeTQaBCkpbsxNNWTpoNrMsnwnAEf1wYTcn7CiiZGfUXD2 and /dev/null differ diff --git a/_data/iconsDownload/QmeUyBe58BPndt6SpH9Tn1a8AYpNtHbMVhVyZt8Ppc4HTB b/_data/iconsDownload/QmeUyBe58BPndt6SpH9Tn1a8AYpNtHbMVhVyZt8Ppc4HTB new file mode 100644 index 000000000000..420f91acad11 --- /dev/null +++ b/_data/iconsDownload/QmeUyBe58BPndt6SpH9Tn1a8AYpNtHbMVhVyZt8Ppc4HTB @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/_data/iconsDownload/QmebuyvTmRvM66rXbxSFtZv7VGj1HtvNQ68hvYpLEPe3bA b/_data/iconsDownload/QmebuyvTmRvM66rXbxSFtZv7VGj1HtvNQ68hvYpLEPe3bA new file mode 100644 index 000000000000..01b46466ed5d Binary files /dev/null and b/_data/iconsDownload/QmebuyvTmRvM66rXbxSFtZv7VGj1HtvNQ68hvYpLEPe3bA differ diff --git a/_data/iconsDownload/Qmerd9Q3otjDuQAFbdiQyUnZk7UfPvkCr21E5N4VCNvhbj b/_data/iconsDownload/Qmerd9Q3otjDuQAFbdiQyUnZk7UfPvkCr21E5N4VCNvhbj new file mode 100644 index 000000000000..d230f22d343b Binary files /dev/null and b/_data/iconsDownload/Qmerd9Q3otjDuQAFbdiQyUnZk7UfPvkCr21E5N4VCNvhbj differ diff --git a/_data/iconsDownload/QmfDnMYCXc1By1bQ1yiBWVLaYrzdGAXuA8SLTs6yDkLBfM b/_data/iconsDownload/QmfDnMYCXc1By1bQ1yiBWVLaYrzdGAXuA8SLTs6yDkLBfM new file mode 100644 index 000000000000..098d146d47a0 Binary files /dev/null and b/_data/iconsDownload/QmfDnMYCXc1By1bQ1yiBWVLaYrzdGAXuA8SLTs6yDkLBfM differ diff --git a/_data/iconsDownload/QmfGRakPDaDGTq5yCXifGmWZBSJotYfeEVamWi8Mv4HFWt b/_data/iconsDownload/QmfGRakPDaDGTq5yCXifGmWZBSJotYfeEVamWi8Mv4HFWt new file mode 100644 index 000000000000..4348fa1b3b04 --- /dev/null +++ b/_data/iconsDownload/QmfGRakPDaDGTq5yCXifGmWZBSJotYfeEVamWi8Mv4HFWt @@ -0,0 +1,37 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/_data/iconsDownload/QmfS33Wd4e5pwq4JpNeK3wV1tbPDTakFA6KLxjewHp553z b/_data/iconsDownload/QmfS33Wd4e5pwq4JpNeK3wV1tbPDTakFA6KLxjewHp553z new file mode 100644 index 000000000000..99cf05ccaa58 Binary files /dev/null and b/_data/iconsDownload/QmfS33Wd4e5pwq4JpNeK3wV1tbPDTakFA6KLxjewHp553z differ diff --git a/_data/iconsDownload/QmfVnJSmiB1Ss3Sfhgc9JsZAbQ2RAofsgzYB1VqUNKNgLH b/_data/iconsDownload/QmfVnJSmiB1Ss3Sfhgc9JsZAbQ2RAofsgzYB1VqUNKNgLH new file mode 100644 index 000000000000..9296ba29ac8f Binary files /dev/null and b/_data/iconsDownload/QmfVnJSmiB1Ss3Sfhgc9JsZAbQ2RAofsgzYB1VqUNKNgLH differ diff --git a/_data/iconsDownload/Qqbx32iq4Vw4zLaaPit9aaguXJzdiocstVQWtSfreQPuSC b/_data/iconsDownload/Qqbx32iq4Vw4zLaaPit9aaguXJzdiocstVQWtSfreQPuSC new file mode 100644 index 000000000000..da4519d9ed0e --- /dev/null +++ b/_data/iconsDownload/Qqbx32iq4Vw4zLaaPit9aaguXJzdiocstVQWtSfreQPuSC @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/_data/iconsDownload/bafkreia2tiurhfkc2lifytbpv356d4rfmqoivzrepg2wsrqwrqgbb4bp7a b/_data/iconsDownload/bafkreia2tiurhfkc2lifytbpv356d4rfmqoivzrepg2wsrqwrqgbb4bp7a new file mode 100644 index 000000000000..469cf40b204b Binary files /dev/null and b/_data/iconsDownload/bafkreia2tiurhfkc2lifytbpv356d4rfmqoivzrepg2wsrqwrqgbb4bp7a differ diff --git a/_data/iconsDownload/bafkreia4zzsj2wxfrincui3hk664sspjfapd744eybh6th566ncj5js7aa b/_data/iconsDownload/bafkreia4zzsj2wxfrincui3hk664sspjfapd744eybh6th566ncj5js7aa new file mode 100644 index 000000000000..42964f7601e5 Binary files /dev/null and b/_data/iconsDownload/bafkreia4zzsj2wxfrincui3hk664sspjfapd744eybh6th566ncj5js7aa differ diff --git a/_data/iconsDownload/bafkreiatcu42wbjlo24mr35jou4awvsqpaqys6iv4kxgkjhno3haovsiaq b/_data/iconsDownload/bafkreiatcu42wbjlo24mr35jou4awvsqpaqys6iv4kxgkjhno3haovsiaq new file mode 100644 index 000000000000..f4a99c28a967 --- /dev/null +++ b/_data/iconsDownload/bafkreiatcu42wbjlo24mr35jou4awvsqpaqys6iv4kxgkjhno3haovsiaq @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + diff --git a/_data/iconsDownload/bafkreib3dv4feoxzpmtjoy54zndilbgkdhs4wxo4sja46u7zkuk36de2pu b/_data/iconsDownload/bafkreib3dv4feoxzpmtjoy54zndilbgkdhs4wxo4sja46u7zkuk36de2pu new file mode 100644 index 000000000000..6af0a070ef9f --- /dev/null +++ b/_data/iconsDownload/bafkreib3dv4feoxzpmtjoy54zndilbgkdhs4wxo4sja46u7zkuk36de2pu @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/_data/iconsDownload/bafkreibbs2nlmnd7vrur6fyfjl4mqqjcjnjbtwrk35juma6zoxtn2l3xce b/_data/iconsDownload/bafkreibbs2nlmnd7vrur6fyfjl4mqqjcjnjbtwrk35juma6zoxtn2l3xce new file mode 100644 index 000000000000..e71760660e0a Binary files /dev/null and b/_data/iconsDownload/bafkreibbs2nlmnd7vrur6fyfjl4mqqjcjnjbtwrk35juma6zoxtn2l3xce differ diff --git a/_data/iconsDownload/bafkreic2vglaqxdbk5u7uw4vgksxri5xcbrnlysam57dsob2uvr33dzoma b/_data/iconsDownload/bafkreic2vglaqxdbk5u7uw4vgksxri5xcbrnlysam57dsob2uvr33dzoma new file mode 100644 index 000000000000..d848d1e698be Binary files /dev/null and b/_data/iconsDownload/bafkreic2vglaqxdbk5u7uw4vgksxri5xcbrnlysam57dsob2uvr33dzoma differ diff --git a/_data/iconsDownload/bafkreic6mqwxp4g3defk5emaw6hbnimtjhmnxgzh5nje4gsvjgxhl64mqa b/_data/iconsDownload/bafkreic6mqwxp4g3defk5emaw6hbnimtjhmnxgzh5nje4gsvjgxhl64mqa new file mode 100644 index 000000000000..c2ec95839a28 Binary files /dev/null and b/_data/iconsDownload/bafkreic6mqwxp4g3defk5emaw6hbnimtjhmnxgzh5nje4gsvjgxhl64mqa differ diff --git a/_data/iconsDownload/bafkreicbm3tcpxuoc7cfbdlvrkj7hml2pb7gjbaxvww2eekfuuiq6etm6a b/_data/iconsDownload/bafkreicbm3tcpxuoc7cfbdlvrkj7hml2pb7gjbaxvww2eekfuuiq6etm6a new file mode 100644 index 000000000000..9339d6b3aef7 Binary files /dev/null and b/_data/iconsDownload/bafkreicbm3tcpxuoc7cfbdlvrkj7hml2pb7gjbaxvww2eekfuuiq6etm6a differ diff --git a/_data/iconsDownload/bafkreicvi5dgn3wmkquqaicx743xc65dlqvnnuxsbsxq5hbzhaaaksxyo4 b/_data/iconsDownload/bafkreicvi5dgn3wmkquqaicx743xc65dlqvnnuxsbsxq5hbzhaaaksxyo4 new file mode 100644 index 000000000000..794da6ac50f3 Binary files /dev/null and b/_data/iconsDownload/bafkreicvi5dgn3wmkquqaicx743xc65dlqvnnuxsbsxq5hbzhaaaksxyo4 differ diff --git a/_data/iconsDownload/bafkreiczmtj47hwgmmtsy3xylhswu4q6rphpt42hznv37shjiaxsx3uqde b/_data/iconsDownload/bafkreiczmtj47hwgmmtsy3xylhswu4q6rphpt42hznv37shjiaxsx3uqde new file mode 100644 index 000000000000..b1785ea00092 Binary files /dev/null and b/_data/iconsDownload/bafkreiczmtj47hwgmmtsy3xylhswu4q6rphpt42hznv37shjiaxsx3uqde differ diff --git a/_data/iconsDownload/bafkreid4pi4wvhivaydzlflqqgdbddrmmc2szqtgsuhrp4hgfplg2z7ffe b/_data/iconsDownload/bafkreid4pi4wvhivaydzlflqqgdbddrmmc2szqtgsuhrp4hgfplg2z7ffe new file mode 100644 index 000000000000..49b520a7d4fc Binary files /dev/null and b/_data/iconsDownload/bafkreid4pi4wvhivaydzlflqqgdbddrmmc2szqtgsuhrp4hgfplg2z7ffe differ diff --git a/_data/iconsDownload/bafkreid7fdetal6wmyum5tbuhacb66gkcqkrvphcsrc3vid5xidiulycwu b/_data/iconsDownload/bafkreid7fdetal6wmyum5tbuhacb66gkcqkrvphcsrc3vid5xidiulycwu new file mode 100644 index 000000000000..84722ba9e296 Binary files /dev/null and b/_data/iconsDownload/bafkreid7fdetal6wmyum5tbuhacb66gkcqkrvphcsrc3vid5xidiulycwu differ diff --git a/_data/iconsDownload/bafkreidaurpqgf3mmudm2foh5a45xyughike2y2pltb323ad5ywo4gtc3q b/_data/iconsDownload/bafkreidaurpqgf3mmudm2foh5a45xyughike2y2pltb323ad5ywo4gtc3q new file mode 100644 index 000000000000..6af2076af46a --- /dev/null +++ b/_data/iconsDownload/bafkreidaurpqgf3mmudm2foh5a45xyughike2y2pltb323ad5ywo4gtc3q @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/_data/iconsDownload/bafkreidhsiuqrct42bel76zhi3rx35k4lnk6aqgde27nvvxcz563ttfefy b/_data/iconsDownload/bafkreidhsiuqrct42bel76zhi3rx35k4lnk6aqgde27nvvxcz563ttfefy deleted file mode 100644 index 778ffcd9e1bb..000000000000 Binary files a/_data/iconsDownload/bafkreidhsiuqrct42bel76zhi3rx35k4lnk6aqgde27nvvxcz563ttfefy and /dev/null differ diff --git a/_data/iconsDownload/bafkreidmvcd5i7touug55hj45mf2pgabxamy5fziva7mtx5n664s3yap6m b/_data/iconsDownload/bafkreidmvcd5i7touug55hj45mf2pgabxamy5fziva7mtx5n664s3yap6m deleted file mode 100644 index 5b3bb48c7959..000000000000 Binary files a/_data/iconsDownload/bafkreidmvcd5i7touug55hj45mf2pgabxamy5fziva7mtx5n664s3yap6m and /dev/null differ diff --git a/_data/iconsDownload/bafkreidurmcvrcv5suhpf6wzmdck7nt7ayhpjucpo32xaozxpjltlobyca b/_data/iconsDownload/bafkreidurmcvrcv5suhpf6wzmdck7nt7ayhpjucpo32xaozxpjltlobyca new file mode 100644 index 000000000000..32f20e013cde Binary files /dev/null and b/_data/iconsDownload/bafkreidurmcvrcv5suhpf6wzmdck7nt7ayhpjucpo32xaozxpjltlobyca differ diff --git a/_data/iconsDownload/bafkreiec5zeuhb4tkbhvbrmeeqrsqtjbhrjfpqx4yysejephiczresf5ci b/_data/iconsDownload/bafkreiec5zeuhb4tkbhvbrmeeqrsqtjbhrjfpqx4yysejephiczresf5ci new file mode 100644 index 000000000000..7e3a4bbce80a Binary files /dev/null and b/_data/iconsDownload/bafkreiec5zeuhb4tkbhvbrmeeqrsqtjbhrjfpqx4yysejephiczresf5ci differ diff --git a/_data/iconsDownload/bafkreierr6bqbopiokhqcisqdfxjkslnjgk2j77dmq2ec4oitpgxtm4wha b/_data/iconsDownload/bafkreierr6bqbopiokhqcisqdfxjkslnjgk2j77dmq2ec4oitpgxtm4wha new file mode 100644 index 000000000000..9df734a79d47 --- /dev/null +++ b/_data/iconsDownload/bafkreierr6bqbopiokhqcisqdfxjkslnjgk2j77dmq2ec4oitpgxtm4wha @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/_data/iconsDownload/bafkreieuh4toxf5wvysvvylajsfgholhg5tplyzwsfv5f2nvmhr537jp7y b/_data/iconsDownload/bafkreieuh4toxf5wvysvvylajsfgholhg5tplyzwsfv5f2nvmhr537jp7y new file mode 100644 index 000000000000..e76f511af073 Binary files /dev/null and b/_data/iconsDownload/bafkreieuh4toxf5wvysvvylajsfgholhg5tplyzwsfv5f2nvmhr537jp7y differ diff --git a/_data/iconsDownload/bafkreiezag3ijij32zbo3ko7xes2hafsqjhru22ab6ia35ygafc66kjb6u b/_data/iconsDownload/bafkreiezag3ijij32zbo3ko7xes2hafsqjhru22ab6ia35ygafc66kjb6u new file mode 100644 index 000000000000..e6b3af24dd44 Binary files /dev/null and b/_data/iconsDownload/bafkreiezag3ijij32zbo3ko7xes2hafsqjhru22ab6ia35ygafc66kjb6u differ diff --git a/_data/iconsDownload/bafkreigg4ovuohje6iva42fou7rc7a6fkozvfkg22fhuvhw5oz7vii74ha b/_data/iconsDownload/bafkreigg4ovuohje6iva42fou7rc7a6fkozvfkg22fhuvhw5oz7vii74ha new file mode 100644 index 000000000000..907d92652e59 --- /dev/null +++ b/_data/iconsDownload/bafkreigg4ovuohje6iva42fou7rc7a6fkozvfkg22fhuvhw5oz7vii74ha @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_data/iconsDownload/bafkreigl72xrnfxf2wbu2l6ul46tmonbmshgfuxmthcax2c6z4sy5bbfga b/_data/iconsDownload/bafkreigl72xrnfxf2wbu2l6ul46tmonbmshgfuxmthcax2c6z4sy5bbfga new file mode 100644 index 000000000000..62f3755ceccc Binary files /dev/null and b/_data/iconsDownload/bafkreigl72xrnfxf2wbu2l6ul46tmonbmshgfuxmthcax2c6z4sy5bbfga differ diff --git a/_data/iconsDownload/bafkreigml24fbobs5lalh4l54xwtccey7dqxkbmt4jkbkq3morydgjfy2a b/_data/iconsDownload/bafkreigml24fbobs5lalh4l54xwtccey7dqxkbmt4jkbkq3morydgjfy2a new file mode 100644 index 000000000000..ca286ca5dc32 Binary files /dev/null and b/_data/iconsDownload/bafkreigml24fbobs5lalh4l54xwtccey7dqxkbmt4jkbkq3morydgjfy2a differ diff --git a/_data/iconsDownload/bafkreih3l3iisplmikofkbfyimqlox7nmixzlkzhjoewmpi4jbqitwryoa b/_data/iconsDownload/bafkreih3l3iisplmikofkbfyimqlox7nmixzlkzhjoewmpi4jbqitwryoa new file mode 100644 index 000000000000..c9dd1da10c07 Binary files /dev/null and b/_data/iconsDownload/bafkreih3l3iisplmikofkbfyimqlox7nmixzlkzhjoewmpi4jbqitwryoa differ diff --git a/_data/iconsDownload/bafkreihditrs2v6atsj2lzq2auchqiujg2d7lc2owot6tvj7rxe6ikgnv4 b/_data/iconsDownload/bafkreihditrs2v6atsj2lzq2auchqiujg2d7lc2owot6tvj7rxe6ikgnv4 new file mode 100644 index 000000000000..b3d920878f37 Binary files /dev/null and b/_data/iconsDownload/bafkreihditrs2v6atsj2lzq2auchqiujg2d7lc2owot6tvj7rxe6ikgnv4 differ diff --git a/_data/iconsDownload/bafkreihrnrmjndul22scpktxzfvm6lyuxdepjtbfrn7ce4znl2blrqw6te b/_data/iconsDownload/bafkreihrnrmjndul22scpktxzfvm6lyuxdepjtbfrn7ce4znl2blrqw6te new file mode 100644 index 000000000000..ed3296073725 Binary files /dev/null and b/_data/iconsDownload/bafkreihrnrmjndul22scpktxzfvm6lyuxdepjtbfrn7ce4znl2blrqw6te differ diff --git a/_data/iconsDownload/bafkreihuzbawkb6ymsqrptcalixg6z4wom2dt4sqsfz7zs5abcyw23jfcu b/_data/iconsDownload/bafkreihuzbawkb6ymsqrptcalixg6z4wom2dt4sqsfz7zs5abcyw23jfcu new file mode 100644 index 000000000000..26ae500f044c Binary files /dev/null and b/_data/iconsDownload/bafkreihuzbawkb6ymsqrptcalixg6z4wom2dt4sqsfz7zs5abcyw23jfcu differ diff --git a/_data/iconsDownload/bafkreihxec2ckjvyoh5rhk4j2fvyqquiw5mievvs7up7fl2dfef5d767aa b/_data/iconsDownload/bafkreihxec2ckjvyoh5rhk4j2fvyqquiw5mievvs7up7fl2dfef5d767aa new file mode 100644 index 000000000000..030003f7369f --- /dev/null +++ b/_data/iconsDownload/bafkreihxec2ckjvyoh5rhk4j2fvyqquiw5mievvs7up7fl2dfef5d767aa @@ -0,0 +1,4 @@ + + + + diff --git a/_data/iconsDownload/bafybeiaaq7gogws6uqcvo6imxbxfgpdhewybh7bxgtfny2i2as5nidbdje b/_data/iconsDownload/bafybeiaaq7gogws6uqcvo6imxbxfgpdhewybh7bxgtfny2i2as5nidbdje new file mode 100644 index 000000000000..6443836dd392 Binary files /dev/null and b/_data/iconsDownload/bafybeiaaq7gogws6uqcvo6imxbxfgpdhewybh7bxgtfny2i2as5nidbdje differ diff --git a/_data/iconsDownload/bafybeiaqaphacy5swvtyxw56ma5f5iewjcqspbgxr5l6ln2433liyw2djy b/_data/iconsDownload/bafybeiaqaphacy5swvtyxw56ma5f5iewjcqspbgxr5l6ln2433liyw2djy new file mode 100644 index 000000000000..63e04f0575e0 Binary files /dev/null and b/_data/iconsDownload/bafybeiaqaphacy5swvtyxw56ma5f5iewjcqspbgxr5l6ln2433liyw2djy differ diff --git a/_data/iconsDownload/bafybeib7ovny3xkl4nr4a5oqvoqwf7dcjtqavydysclfmbavbl2oekhxty b/_data/iconsDownload/bafybeib7ovny3xkl4nr4a5oqvoqwf7dcjtqavydysclfmbavbl2oekhxty new file mode 100644 index 000000000000..dd1fe787e985 Binary files /dev/null and b/_data/iconsDownload/bafybeib7ovny3xkl4nr4a5oqvoqwf7dcjtqavydysclfmbavbl2oekhxty differ diff --git a/_data/iconsDownload/bafybeibexfskndvhn5xtrcmpjoifp2ufnzgwiwbfrjcxat55alergskkve b/_data/iconsDownload/bafybeibexfskndvhn5xtrcmpjoifp2ufnzgwiwbfrjcxat55alergskkve deleted file mode 100644 index d97f240a623b..000000000000 --- a/_data/iconsDownload/bafybeibexfskndvhn5xtrcmpjoifp2ufnzgwiwbfrjcxat55alergskkve +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - diff --git a/_data/iconsDownload/bafybeic3dihuytvtm2hnfo7lvsqf43eqbzobtkxn3o3pxptktifsefy7su b/_data/iconsDownload/bafybeic3dihuytvtm2hnfo7lvsqf43eqbzobtkxn3o3pxptktifsefy7su new file mode 100644 index 000000000000..399311622022 Binary files /dev/null and b/_data/iconsDownload/bafybeic3dihuytvtm2hnfo7lvsqf43eqbzobtkxn3o3pxptktifsefy7su differ diff --git a/_data/iconsDownload/bafybeidicict7kohdlu42btleliya2l4nxknhj45iwdk2pjzamfjwzrhpa b/_data/iconsDownload/bafybeidicict7kohdlu42btleliya2l4nxknhj45iwdk2pjzamfjwzrhpa new file mode 100644 index 000000000000..4dc4dce961fe Binary files /dev/null and b/_data/iconsDownload/bafybeidicict7kohdlu42btleliya2l4nxknhj45iwdk2pjzamfjwzrhpa differ diff --git a/_data/iconsDownload/bafybeifb4vnpn3jv7cfdlne2dwhe6agdnpgmu46a7nbc5divjuyaznkyay b/_data/iconsDownload/bafybeifb4vnpn3jv7cfdlne2dwhe6agdnpgmu46a7nbc5divjuyaznkyay new file mode 100644 index 000000000000..3656267c0641 Binary files /dev/null and b/_data/iconsDownload/bafybeifb4vnpn3jv7cfdlne2dwhe6agdnpgmu46a7nbc5divjuyaznkyay differ diff --git a/build.gradle b/build.gradle index 9076bdfd48d9..c599c518ccce 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - KOTLIN_VERSION = "2.0.0" + KOTLIN_VERSION = "2.1.20" KETHEREUM_VERSION = "0.86.0" } @@ -10,7 +10,7 @@ buildscript { dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${KOTLIN_VERSION}" - classpath 'com.github.ben-manes:gradle-versions-plugin:0.51.0' + classpath 'com.github.ben-manes:gradle-versions-plugin:0.52.0' } } diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index ccebba7710de..e6441136f3d4 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 761b8f088571..a4413138c96c 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index 79a61d421cc4..b740cf13397a 100755 --- a/gradlew +++ b/gradlew @@ -55,7 +55,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. @@ -83,10 +83,8 @@ done # This is normally unused # shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -133,10 +131,13 @@ location of your Java installation." fi else JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." + fi fi # Increase the maximum file descriptors if we can. @@ -144,7 +145,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then case $MAX_FD in #( max*) # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. - # shellcheck disable=SC3045 + # shellcheck disable=SC2039,SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac @@ -152,7 +153,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then '' | soft) :;; #( *) # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. - # shellcheck disable=SC3045 + # shellcheck disable=SC2039,SC3045 ulimit -n "$MAX_FD" || warn "Could not set maximum file descriptor limit to $MAX_FD" esac @@ -197,11 +198,15 @@ if "$cygwin" || "$msys" ; then done fi -# Collect all arguments for the java command; -# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of -# shell script including quotes and variable substitutions, so put them in -# double quotes to make sure that they get re-expanded; and -# * put everything else in single quotes, so that it's not re-expanded. + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. set -- \ "-Dorg.gradle.appname=$APP_BASE_NAME" \ diff --git a/gradlew.bat b/gradlew.bat index 93e3f59f135d..25da30dbdeee 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -43,11 +43,11 @@ set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 if %ERRORLEVEL% equ 0 goto execute -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto execute -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail diff --git a/maintainer_checklist.md b/maintainer_checklist.md index 6c5d0e21b75c..4e62ccf49dc4 100644 --- a/maintainer_checklist.md +++ b/maintainer_checklist.md @@ -4,7 +4,7 @@ A checklist for things to check before merging a chain PR. * If the PR contains icons: * `ipfs get` all icon CIDs * check if the size of the icons you got match the size given in the PR -* Check if a PR does not remove a chain - chains cannot be re-moved - only deprecated (to protect from replay attacks) +* Check if a PR does not remove a chain - chains cannot be removed - only deprecated (to protect from replay attacks) * Check if a PR does not assign a chainID to a newer chain (something like https://github.com/ethereum-lists/chains/pull/1750) If anyone has ideas on how to automate these things in CI - PRs welcome! diff --git a/model/build.gradle.kts b/model/build.gradle.kts index 96d5976237d3..c3e52d039f36 100644 --- a/model/build.gradle.kts +++ b/model/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("com.google.devtools.ksp").version("2.0.0-1.0.21") + id("com.google.devtools.ksp").version("2.1.20-1.0.31") id("maven-publish") } diff --git a/package.json b/package.json new file mode 100644 index 000000000000..94fa128ebdfb --- /dev/null +++ b/package.json @@ -0,0 +1,12 @@ +{ + "name": "@ethereum-lists/chains", + "type": "module", + "files": [ + "_data" + ], + "exports": { + "./*": "./_data/chains/*", + "./icons/*": "./_data/icons/*", + "./iconsDownload/*": "./_data/iconsDownload/*" + } +} diff --git a/processor/build.gradle b/processor/build.gradle index f2a21769fe6e..4b2f9f19bc6d 100644 --- a/processor/build.gradle +++ b/processor/build.gradle @@ -11,13 +11,13 @@ dependencies { implementation "com.github.komputing.kethereum:crypto_impl_bouncycastle:${KETHEREUM_VERSION}" implementation 'com.beust:klaxon:5.6' - implementation 'com.squareup.moshi:moshi:1.15.1' + implementation 'com.squareup.moshi:moshi:1.15.2' implementation 'com.squareup.okhttp3:okhttp:4.12.0' - implementation "com.twelvemonkeys.imageio:imageio-jpeg:3.10.1" - implementation "com.twelvemonkeys.imageio:imageio-batik:3.10.1" + implementation "com.twelvemonkeys.imageio:imageio-jpeg:3.12.0" + implementation "com.twelvemonkeys.imageio:imageio-batik:3.12.0" - implementation "org.apache.xmlgraphics:batik-rasterizer-ext:1.17" + implementation "org.apache.xmlgraphics:batik-rasterizer-ext:1.18" implementation project(":model") testImplementation "org.jetbrains.kotlin:kotlin-test:${KOTLIN_VERSION}" diff --git a/processor/src/main/kotlin/org/ethereum/lists/chains/LegacyCIDs.kt b/processor/src/main/kotlin/org/ethereum/lists/chains/LegacyCIDs.kt new file mode 100644 index 000000000000..b404d4a3b343 --- /dev/null +++ b/processor/src/main/kotlin/org/ethereum/lists/chains/LegacyCIDs.kt @@ -0,0 +1,43 @@ +package org.ethereum.lists.chains + +// CIDs that are over 250kb - should be replaced by smaller icons some day - but should not block introducing that limit +val legacyCIDs = setOf( + "bafkreidiedaz3jugxmh2ylzlc4nympbd5iwab33adhwkcnblyop6vvj25y", + "QmR1AnNYGeXpVmsKyzqktk4K1BtFPiaJpeXuLktb9Kwmer", + "QmPdxcJwPogfZdec7UAqxeatRxrivEktpP1ftJBTeJQTdR", + "QmQUHqi1gyuTuKmJQHqt9EyhN1FPmmmLNUK8u93nMGrxAy", + "QmTmo2QAtX5PbhX96vewnvH4Vc5H83Ft2DJGi6tAqTcFij", + "QmdDeCjjYSG5FEAxzAuERXnS3AbeZvqSFVTn9x7UbrQeuT", + "QmbM4weV8Bk6c9yNhosYntkVw39SNZtCHYGgWyXTxkevZ8", + "QmahJhdaLfGwBStQ9q9K4Mc73vLNqFV1otWCsT2ZKsMavv", + "bafybeihbsw3ky7yf6llpww6fabo4dicotcgwjpefscoxrppstjx25dvtea", + "bafybeiady63oqduls2pm4aaykzjhahblagokhnpsc5qeq5dmkxqelh7i2i", + "bafybeibpyckp65pqjvrvqhdt26wqoqk55m6anshbfgyqnaemn6l34nlwya", + "QmNsuuBBTHErnuFDcdyzaY8CKoVJtobsLJx2WQjaPjcp7g", + "bafybeigyayzxvt7vosat4rtrbmhhnldgx57w2pfbutuniax7h6kswzi42m", + "QmPX3uipdwd195z1MJff7uj8hpZdSuVvM5z47eiz2o7Gz5", + "bafkreid5evn4qovxo6msuekizv5zn7va62tea7w2zpdx5sskconebuhqle", + "bafkreidchntjaxmq52cuqqoalpajk5ssk4p77k7n4jgywqmkpldo5qgobm", + "bafkreibqe2mgiqezi24sx272kunqt6pv7uzxhpkxuobvpbsptce3q6nn5i", + "bafybeifxqd7zel2m237kq5enavnh2s6cshaavswigogyvae2wevxy5k2ti", + "QmYQf9VKTzPwQiU5xQMNbJKKGasLDVoXs2S86Ay77MStp7", + "QmfMd564KUPK8eKZDwGCT71ZC2jMnUZqP6LCtLpup3rHH1", + "Qmdvmx3p6gXBCLUMU1qivscaTNkT6h3URdhUTZCHLwKudg", + "QmUgfhv3rEsS6t9g6Lsf3TJ1mbnJqBrb8YUFPDiNG59QvT", + "Qmetu9hMLvczYo7tDPRyjqjBHwwpHU8mEgW3PEPPre56su", + "QmVxtpYYzc5214CB7BgsMC4mRNRHCD8fpbNMzZguBWyRwa", + "bafybeiadbavrwcial76vs5ovhyykyaobteltuhliqcthdairbja4klwzhu", + "QmVV7ibcq8pS44Nt77jWSLNY2RkfQooHBCZMBPSMdAfZ3d", + "QmbkTh6qNYUnae5yNjied3qZqVyZcb4x3hfUpJ33bGg9QY", + "bafybeibpvlod5nyev6wyuvp6pbestmgvru3ovbadsul32odpno26xwld6y", + "QmTAyT3YrW2654CBRqRkec2cCznv6EBsbsRc2y6WQPbvXx", + "QmNoyUXxnak8B3xgFxErkVfyVEPJUMHBzq7qJcYzkUrPR4", + "bafybeigxiyyxll4vst5cjjh732mr6zhsnligxubaldyiul2xdvvi6ibktu", + "bafybeib7ovny3xkl4nr4a5oqvoqwf7dcjtqavydysclfmbavbl2oekhxty", + "QmYrMRnjQJcNkYq9AvZ2FQ9kzYj9szzP4YDmyNA1ybd8xE", + "QmfTeudwVJcu7jzySBcpD9H5ZVK66nPJKRnicxend1bxfq", + "bafybeihbsw3ky7yf6llpww6fabo4dicotcgwjpefscoxrppstjx25dvtea", + "QmSEoUonisawfCvT3osysuZzbqUEHugtgNraePKWL8PKYa", + "QmaR5TsgnWSjLys6wGaciKUbc5qYL3Es4jtgQcosVqDWR3", + "QmTGjVbiSdHYhjzpeqzY6fGwGiLQuEa2hW7irD75sUSx9e" +) \ No newline at end of file diff --git a/processor/src/main/kotlin/org/ethereum/lists/chains/Main.kt b/processor/src/main/kotlin/org/ethereum/lists/chains/Main.kt index c9d6ab60ef42..e45904d68509 100644 --- a/processor/src/main/kotlin/org/ethereum/lists/chains/Main.kt +++ b/processor/src/main/kotlin/org/ethereum/lists/chains/Main.kt @@ -4,6 +4,8 @@ import com.beust.klaxon.JsonArray import java.io.File import com.beust.klaxon.JsonObject import com.beust.klaxon.Klaxon +import okhttp3.OkHttpClient +import okhttp3.Request import org.ethereum.lists.chains.model.* import org.kethereum.erc55.isValid import org.kethereum.model.Address @@ -28,6 +30,8 @@ private val allIconFilesList = iconsPath.listFiles() ?: error("${iconsPath.absol private val allIconFiles = allIconFilesList.filter { !it.isDirectory } private val allUsedIcons = mutableSetOf() +val okHttpClient = OkHttpClient(); + fun main(args: Array) { val argsList = args.toMutableList() @@ -42,7 +46,7 @@ fun main(args: Array) { } else { doChecks( verbose = verbose, - doRPCConnect = argsList.firstOrNull() == "rpcConnect", + onlineChecks = argsList.firstOrNull() == "rpcConnect", doIconDownload = argsList.firstOrNull() == "iconDownload", ) createOutputFiles() @@ -114,10 +118,10 @@ private fun createOutputFiles() { File(buildPath, "CNAME").writeText("chainid.network") } -private fun doChecks(doRPCConnect: Boolean, doIconDownload: Boolean, verbose: Boolean) { +private fun doChecks(onlineChecks: Boolean, doIconDownload: Boolean, verbose: Boolean) { allChainFiles.forEach { file -> try { - checkChain(file, doRPCConnect, verbose) + checkChain(file, onlineChecks, verbose) } catch (exception: Exception) { println("Problem with $file") throw exception @@ -142,7 +146,7 @@ private fun doChecks(doRPCConnect: Boolean, doIconDownload: Boolean, verbose: Bo } val unusedIcons = mutableSetOf() - iconsPath.listFiles().forEach { + iconsPath.listFiles()?.forEach { if (!allUsedIcons.contains(it.name.toString().removeSuffix(".json"))) { unusedIcons.add(it.toString()) } @@ -229,6 +233,13 @@ fun checkIcon(icon: File, withIconDownload: Boolean, allIconCIDs: MutableSet 250 * 1024) { + error("icon is bigger than 250kb") + } + } } catch (e: Exception) { e.printStackTrace() error("problem with image $iconDownloadFile") @@ -237,7 +248,7 @@ fun checkIcon(icon: File, withIconDownload: Boolean, allIconCIDs: MutableSet): Exception("parent has extra field: $fields") class ParentBridgeNoArray: Exception("parent bridge must be array") class BridgeNoObject: Exception("parent bridges must be array consisting of json objects") -class BridgeOnlyURL: Exception("parent bridge only contain an URL") +class BridgeOnlyURL: Exception("parent bridge only contain a URL") class ParentChainDoesNotExist(chain: String): Exception("Referenced parent chain ($chain) does not exist") class StatusMustBeString: Exception("status must be a string") class StatusMustBeIncubatingActiveOrDeprecated: Exception("status must be either incubating, active or deprecated") diff --git a/processor/src/test/resources/test_chains/invalid/explorernoname/eip155-1.json b/processor/src/test/resources/test_chains/invalid/explorernoname/eip155-1.json index 343eecefa658..dc97f98ba415 100644 --- a/processor/src/test/resources/test_chains/invalid/explorernoname/eip155-1.json +++ b/processor/src/test/resources/test_chains/invalid/explorernoname/eip155-1.json @@ -18,5 +18,10 @@ "explorers": [{ "url": "https://etherscan.io", "standard": "EIP3091" + }, + { + "name": "Routescan", + "url": "https://ethereum.routescan.io/", + "standard": "EIP3091" }] } \ No newline at end of file diff --git a/processor/src/test/resources/test_chains/invalid/leadingzero/eip155-01.json b/processor/src/test/resources/test_chains/invalid/leadingzero/eip155-01.json index 63a38df4e873..2acd7d70eb97 100644 --- a/processor/src/test/resources/test_chains/invalid/leadingzero/eip155-01.json +++ b/processor/src/test/resources/test_chains/invalid/leadingzero/eip155-01.json @@ -19,5 +19,11 @@ "name": "etherscan", "url": "https://etherscan.io", "standard": "none" - }] + }, + { + "name": "Routescan", + "url": "https://ethereum.routescan.io/", + "standard": "none" + } + ] } \ No newline at end of file diff --git a/processor/src/test/resources/test_chains/invalid/wrongexplorerstandard/eip155-1.json b/processor/src/test/resources/test_chains/invalid/wrongexplorerstandard/eip155-1.json index 9b6119d36d22..ec1a3451df24 100644 --- a/processor/src/test/resources/test_chains/invalid/wrongexplorerstandard/eip155-1.json +++ b/processor/src/test/resources/test_chains/invalid/wrongexplorerstandard/eip155-1.json @@ -19,5 +19,10 @@ "name": "etherscan", "url": "https://etherscan.io", "standard": "failme" + }, + { + "name": "Routescan", + "url": "https://ethereum.routescan.io/", + "standard": "failme" }] } \ No newline at end of file diff --git a/processor/src/test/resources/test_chains/valid/withexplorer/eip155-1.json b/processor/src/test/resources/test_chains/valid/withexplorer/eip155-1.json index 2658fd08eba6..9a102fac0552 100644 --- a/processor/src/test/resources/test_chains/valid/withexplorer/eip155-1.json +++ b/processor/src/test/resources/test_chains/valid/withexplorer/eip155-1.json @@ -20,6 +20,11 @@ "name": "etherscan", "url": "https://etherscan.io", "standard": "EIP3091" + }, + { + "name": "Routescan", + "url": "https://ethereum.routescan.io/", + "standard": "EIP3091" } ] } diff --git a/processor/src/test/resources/test_chains/valid/withexplorer/eip155-2.json b/processor/src/test/resources/test_chains/valid/withexplorer/eip155-2.json index 7161c9daa584..1e6f51d1add9 100644 --- a/processor/src/test/resources/test_chains/valid/withexplorer/eip155-2.json +++ b/processor/src/test/resources/test_chains/valid/withexplorer/eip155-2.json @@ -17,9 +17,14 @@ }, "explorers": [ { - "name": "some", + "name": "ethrscan", "url": "https://etherscan.io", "standard": "none" + }, + { + "name": "Routescan", + "url": "https://ethereum.routescan.io/", + "standard": "none" } ] } diff --git a/website b/website index 10abe1e8e3bb..1379261fbfcc 160000 --- a/website +++ b/website @@ -1 +1 @@ -Subproject commit 10abe1e8e3bb162f99dabc5816fa78ce53895ad5 +Subproject commit 1379261fbfcc57c6552ef36bf098ff52af37021c