diff --git a/.github/workflows/action_lint.yml b/.github/workflows/action_lint.yml new file mode 100644 index 000000000000..aa16c11102ce --- /dev/null +++ b/.github/workflows/action_lint.yml @@ -0,0 +1,10 @@ +name: Github-Action linter +on: + pull_request: + merge_group: +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 new file mode 100644 index 000000000000..1dd396044774 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,27 @@ +name: Build +on: + pull_request: + merge_group: +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4.2.2 + with: + submodules: recursive + + - name: Get changed files + id: changed-files + uses: step-security/changed-files@v45.0.1 + + - name: Check changed files + run: | + for file in ${{ steps.changed-files.outputs.all_changed_files }}; do + ./gradlew clean run --args="verbose singleChainCheck $file" + done + + - name: Build + run: | + ./gradlew run + diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml deleted file mode 100644 index 4f1f21f43715..000000000000 --- a/.github/workflows/build_and_deploy.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Build and Deploy -on: [push, pull_request] -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2.3.1 - - - name: Build - run: | - ./gradlew run - -# deploy to github pages only when on master - deploy: - runs-on: ubuntu-latest - needs: build - steps: - - name: Extract branch name - shell: bash - run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})" - id: extract_branch - - name: Checkout - uses: actions/checkout@v2.3.1 - if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }} - - name: Build - run: | - ./gradlew run - if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }} - - name: Deploy - uses: JamesIves/github-pages-deploy-action@4.1.4 - with: - branch: gh-pages - folder: output - if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }} \ No newline at end of file diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 000000000000..d634b4d1b031 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,37 @@ +name: Build +on: + push: + branches: [ master ] +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4.2.2 + with: + submodules: recursive + - name: Build + run: | + ./gradlew run + - name: Set Node.js 18.x + uses: actions/setup-node@v4.2.0 + with: + node-version: 18.x + - name: Run yarn install + uses: borales/actions-yarn@v4 + with: + dir: 'website' + cmd: install # will run `yarn install` command + - name: Run yarn build + uses: borales/actions-yarn@v4 + with: + dir: 'website' + cmd: run build # will run `yarn test` command + - name: Merge + run: | + cp -a output/. website/public/ + - name: Deploy + uses: JamesIves/github-pages-deploy-action@4.1.4 + with: + branch: gh-pages + folder: website/public diff --git a/.github/workflows/post_merge_comment.yml b/.github/workflows/post_merge_comment.yml new file mode 100644 index 000000000000..597fce723c50 --- /dev/null +++ b/.github/workflows/post_merge_comment.yml @@ -0,0 +1,15 @@ +on: + pull_request_target: + types: [closed] +jobs: + comment_on_merged_pr: + if: github.event.pull_request.merged + runs-on: ubuntu-latest + name: Comment after PR merge + steps: + - name: Comment PR + uses: thollander/actions-comment-pull-request@v2 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + message: | + PR merged - please consider contributing some funds to lists.eth 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 new file mode 100644 index 000000000000..a685bca71be7 --- /dev/null +++ b/.github/workflows/prettier_check.yml @@ -0,0 +1,23 @@ +name: Run prettier check + +on: + push: + pull_request: + merge_group: + +jobs: + prettier: + runs-on: ubuntu-latest + steps: + - name: Check out repo + uses: actions/checkout@v4.2.2 + - uses: actions/cache@v4 + 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 --check '_data/*/*.json' diff --git a/.github/workflows/validate_json.yml b/.github/workflows/validate_json.yml new file mode 100644 index 000000000000..ec1959fb7cae --- /dev/null +++ b/.github/workflows/validate_json.yml @@ -0,0 +1,25 @@ +name: Check JSON Schema + +on: + push: + pull_request: + merge_group: + +jobs: + validate_json: + runs-on: ubuntu-latest + steps: + - name: Check out repo + uses: actions/checkout@v4.2.2 + - uses: actions/cache@v4 + name: Configure npm caching + with: + path: ~/.npm + key: ${{ runner.os }}-npm-${{ hashFiles('**/workflows/validate_json.yml') }} + restore-keys: | + ${{ runner.os }}-npm- + - name: Run JSON Validation + working-directory: ./tools + run: |- + npm install + node schemaCheck.js diff --git a/.gitignore b/.gitignore index a070a95cd441..eb58b2f39a70 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,11 @@ _site .env node_modules .idea +output +.gradle +model/bin +model/build +processor/bin +processor/build +httpsloader/build +httpsloader/bin \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 000000000000..aad299ee839d --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "website"] + path = website + url = https://github.com/FrederikBolding/chainlist.git diff --git a/.jitpack.yml b/.jitpack.yml new file mode 100644 index 000000000000..88cfba7a9352 --- /dev/null +++ b/.jitpack.yml @@ -0,0 +1 @@ +jdk: openjdk11 diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 000000000000..275d3e56b446 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,7 @@ +# Using Prettier for JSON files only in _data + +# Command to format all existing JSON files +# npx prettier --write --ignore-unknown _data + +model +processor diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 000000000000..0c232024ca2b --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,6 @@ +{ + "trailingComma": "es5", + "tabWidth": 2, + "semi": false, + "singleQuote": false +} \ No newline at end of file diff --git a/LICENSE b/LICENSE index ab602974d200..14fac913ccf8 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 +Copyright (c) 2026 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 7f2191183d3d..e0e2b71b8889 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,13 @@ # EVM-based Chains -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` ans extension. +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 { "name": "Ethereum Mainnet", "chain": "ETH", - "network": "mainnet", "rpc": [ "https://mainnet.infura.io/v3/${INFURA_API_KEY}", "https://api.mycryptoapi.com/eth" @@ -19,6 +18,7 @@ The source data is in _data/chains. Each chain has its own file with the filenam "symbol": "ETH", "decimals": 18 }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "infoURL": "https://ethereum.org", "shortName": "eth", "chainId": 1, @@ -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 a 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 a explorer there must be a json in ``` where: - * the URL must be a IPFS url that is publicly resolveable - * width and height are optional - but when one is there then the other must be there also + * 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,9 +69,9 @@ 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` a chain (a chain should never be deleted as this would open the door to replay attacks) +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` ## Aggregation @@ -78,45 +80,78 @@ There are also aggregated json files with all chains automatically assembled: * https://chainid.network/chains.json * https://chainid.network/chains_mini.json (miniaturized - fewer fields for smaller filesize) +## Constraints + + * 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 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 - If different chains have the same chainID we list the one with the oldest genesis. + 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 "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 ensure all checks pass by running: + +```bash +$ ./gradlew run + +BUILD SUCCESSFUL in 7s +9 actionable tasks: 9 executed +``` + +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 + +``` +npx prettier --write _data/*/*.json +``` + +### Once PR is submitted + + * Make sure CI is green. There will likely be no review when the CI is red. + * 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 -### Wallets - * [WallETH](https://walleth.org) - * [TREZOR](https://trezor.io) +### Tools + * [MESC](https://paradigmxyz.github.io/mesc) ### Explorers * [Otterscan](https://otterscan.io) +### Wallets + * [WallETH](https://walleth.org) + * [TREZOR](https://trezor.io) + * [Minerva Wallet](https://minerva.digital) + ### EIPs * EIP-155 * EIP-3014 * EIP-3770 * EIP-4527 -### Listing sites - * [chainlist.org](https://chainlist.org) or [networklist-org.vercel.app](https://networklist-org.vercel.app) as a staging version with a more up-to-date list - * [chainid.network](https://chainid.network) - * [networks.vercel.app](https://networks.vercel.app) +### Listing sites + * [chainid.network](https://chainid.network) / [chainlist.wtf](https://chainlist.wtf) + * [chainlist.org](https://chainlist.org) + * [Chainlink docs](https://docs.chain.link/) + * [dRPC Chainlist - Load-balanced public nodes](https://drpc.org/chainlist) * [eth-chains](https://github.com/taylorjdawson/eth-chains) * [EVM-BOX](https://github.com/izayl/evm-box) - * [chaindirectory.xyz](https://www.chaindirectory.xyz) - * [chain-list.org](https://chain-list.org) - * [DefiLlama's chainlist](https://chainlist.defillama.com/) - * [chainlist.network](https://chainlist.network/) + * [evmchain.info](https://evmchain.info) * [evmchainlist.org](https://evmchainlist.org) - * [evmchainlist.com](https://evmchainlist.com) - * [thechainlist.io](https://thechainlist.io) - * [chainlist.info](https://chainlist.info) - * [chainmap.io](https://chainmap.io) - * [chainlist.in](https://www.chainlist.in) - * [chainz.me](https://chainz.me) + * [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) * [Sourcify playground](https://playground.sourcify.dev) - + * [Smart Contract UI](https://xtools-at.github.io/smartcontract-ui) * Your project - contact us to add it here! diff --git a/_data/chains/eip155-1.json b/_data/chains/eip155-1.json index 7954077b8514..647a94f5133c 100644 --- a/_data/chains/eip155-1.json +++ b/_data/chains/eip155-1.json @@ -6,8 +6,23 @@ "https://mainnet.infura.io/v3/${INFURA_API_KEY}", "wss://mainnet.infura.io/ws/v3/${INFURA_API_KEY}", "https://api.mycryptoapi.com/eth", - "https://cloudflare-eth.com" + "https://cloudflare-eth.com", + "https://ethereum-rpc.publicnode.com", + "wss://ethereum-rpc.publicnode.com", + "https://mainnet.gateway.tenderly.co", + "wss://mainnet.gateway.tenderly.co", + "https://rpc.blocknative.com/boost", + "https://rpc.flashbots.net", + "https://rpc.flashbots.net/fast", + "https://rpc.mevblocker.io", + "https://rpc.mevblocker.io/fast", + "https://rpc.mevblocker.io/noreverts", + "https://rpc.mevblocker.io/fullprivacy", + "https://eth.drpc.org", + "wss://eth.drpc.org", + "https://api.securerpc.com/v1" ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": [], "nativeCurrency": { "name": "Ether", @@ -20,11 +35,30 @@ "networkId": 1, "slip44": 60, "ens": { - "registry":"0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" + "registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" }, - "explorers": [{ - "name": "etherscan", - "url": "https://etherscan.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "etherscan", + "url": "https://etherscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://eth.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "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 06a110751e4b..64c3c0388fcc 100644 --- a/_data/chains/eip155-10.json +++ b/_data/chains/eip155-10.json @@ -1,7 +1,15 @@ { - "name": "Optimism", + "name": "OP Mainnet", "chain": "ETH", - "rpc": ["https://mainnet.optimism.io/"], + "rpc": [ + "https://mainnet.optimism.io", + "https://optimism-rpc.publicnode.com", + "wss://optimism-rpc.publicnode.com", + "https://optimism.gateway.tenderly.co", + "wss://optimism.gateway.tenderly.co", + "https://optimism.drpc.org", + "wss://optimism.drpc.org" + ], "faucets": [], "nativeCurrency": { "name": "Ether", @@ -13,9 +21,28 @@ "chainId": 10, "networkId": 10, - "explorers": [{ - "name": "etherscan", - "url": "https://optimistic.etherscan.io", - "standard": "none" - }] + "explorers": [ + { + "name": "etherscan", + "url": "https://optimistic.etherscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://optimism.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://optimism.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + }, + { + "name": "Routescan", + "url": "https://mainnet.superscan.network", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-100.json b/_data/chains/eip155-100.json index 507c7d335f72..a41c253fc47a 100644 --- a/_data/chains/eip155-100.json +++ b/_data/chains/eip155-100.json @@ -1,29 +1,53 @@ { "name": "Gnosis", - "chain": "Gnosis", + "chain": "GNO", "icon": "gnosis", "rpc": [ "https://rpc.gnosischain.com", + "https://rpc.gnosis.gateway.fm", "https://rpc.ankr.com/gnosis", "https://gnosischain-rpc.gateway.pokt.network", "https://gnosis-mainnet.public.blastapi.io", - "wss://rpc.gnosischain.com/wss" + "https://gnosis.api.onfinality.io/public", + "https://gnosis.blockpi.network/v1/rpc/public", + "https://web3endpoints.com/gnosischain-mainnet", + "https://gnosis.oat.farm", + "wss://rpc.gnosischain.com/wss", + "https://gnosis-rpc.publicnode.com", + "wss://gnosis-rpc.publicnode.com" + ], + "faucets": [ + "https://gnosisfaucet.com", + "https://stakely.io/faucet/gnosis-chain-xdai", + "https://faucet.prussia.dev/xdai" ], - "faucets": ["https://faucet.gimlu.com/gnosis", "https://stakely.io/faucet/gnosis-chain-xdai", "https://faucet.prussia.dev/xdai"], "nativeCurrency": { "name": "xDAI", - "symbol": "xDAI", + "symbol": "XDAI", "decimals": 18 }, - "infoURL": "https://developers.gnosischain.com", + "infoURL": "https://docs.gnosischain.com", "shortName": "gno", "chainId": 100, "networkId": 100, "slip44": 700, - "explorers": [{ - "name": "blockscout", - "url": "https://blockscout.com/xdai/mainnet", - "icon": "blockscout", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "gnosisscan", + "url": "https://gnosisscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://gnosis.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://gnosis.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-1000.json b/_data/chains/eip155-1000.json new file mode 100644 index 000000000000..eadc6a7ac6d2 --- /dev/null +++ b/_data/chains/eip155-1000.json @@ -0,0 +1,26 @@ +{ + "name": "GTON Mainnet", + "chain": "GTON", + "rpc": ["https://rpc.gton.network/"], + "faucets": [], + "nativeCurrency": { + "name": "GCD", + "symbol": "GCD", + "decimals": 18 + }, + "infoURL": "https://gton.capital", + "shortName": "gton", + "chainId": 1000, + "networkId": 1000, + "explorers": [ + { + "name": "GTON Network Explorer", + "url": "https://explorer.gton.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + } +} diff --git a/_data/chains/eip155-100000.json b/_data/chains/eip155-100000.json index 8fe0423c4bfb..76348ccecbe7 100644 --- a/_data/chains/eip155-100000.json +++ b/_data/chains/eip155-100000.json @@ -1,11 +1,8 @@ { "name": "QuarkChain Mainnet Root", "chain": "QuarkChain", - "rpc": [ - "http://jrpc.mainnet.quarkchain.io:38391" - ], - "faucets": [ - ], + "rpc": ["http://jrpc.mainnet.quarkchain.io:38391"], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", 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-100001.json b/_data/chains/eip155-100001.json index 34dbcef18f5f..b1dae49c74f6 100644 --- a/_data/chains/eip155-100001.json +++ b/_data/chains/eip155-100001.json @@ -5,8 +5,7 @@ "https://mainnet-s0-ethapi.quarkchain.io", "http://eth-jrpc.mainnet.quarkchain.io:39000" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-100000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/0", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/0", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-100002.json b/_data/chains/eip155-100002.json index ad3095e07dfb..037adb796934 100644 --- a/_data/chains/eip155-100002.json +++ b/_data/chains/eip155-100002.json @@ -5,8 +5,7 @@ "https://mainnet-s1-ethapi.quarkchain.io", "http://eth-jrpc.mainnet.quarkchain.io:39001" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-100000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/1", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/1", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-100003.json b/_data/chains/eip155-100003.json index 96005d3ebe73..90f8cb3fe4bb 100644 --- a/_data/chains/eip155-100003.json +++ b/_data/chains/eip155-100003.json @@ -5,8 +5,7 @@ "https://mainnet-s2-ethapi.quarkchain.io", "http://eth-jrpc.mainnet.quarkchain.io:39002" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-100000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/2", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/2", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-100004.json b/_data/chains/eip155-100004.json index 6b56788eaf08..f486ecb20b29 100644 --- a/_data/chains/eip155-100004.json +++ b/_data/chains/eip155-100004.json @@ -5,8 +5,7 @@ "https://mainnet-s3-ethapi.quarkchain.io", "http://eth-jrpc.mainnet.quarkchain.io:39003" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-100000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/3", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/3", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-100005.json b/_data/chains/eip155-100005.json index 52a9604fdb28..44ee5eeabaf6 100644 --- a/_data/chains/eip155-100005.json +++ b/_data/chains/eip155-100005.json @@ -5,8 +5,7 @@ "https://mainnet-s4-ethapi.quarkchain.io", "http://eth-jrpc.mainnet.quarkchain.io:39004" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-100000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/4", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/4", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-100006.json b/_data/chains/eip155-100006.json index 546aba27131f..a1e273232031 100644 --- a/_data/chains/eip155-100006.json +++ b/_data/chains/eip155-100006.json @@ -5,8 +5,7 @@ "https://mainnet-s5-ethapi.quarkchain.io", "http://eth-jrpc.mainnet.quarkchain.io:39005" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-100000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/5", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/5", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-100007.json b/_data/chains/eip155-100007.json index 2531cd6e656e..1f57b3fa37ad 100644 --- a/_data/chains/eip155-100007.json +++ b/_data/chains/eip155-100007.json @@ -5,8 +5,7 @@ "https://mainnet-s6-ethapi.quarkchain.io", "http://eth-jrpc.mainnet.quarkchain.io:39006" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-100000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/6", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/6", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-100008.json b/_data/chains/eip155-100008.json index 3fba52b04ba6..d2fe71fac78f 100644 --- a/_data/chains/eip155-100008.json +++ b/_data/chains/eip155-100008.json @@ -5,8 +5,7 @@ "https://mainnet-s7-ethapi.quarkchain.io", "http://eth-jrpc.mainnet.quarkchain.io:39007" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-100000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/7", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/7", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-100009.json b/_data/chains/eip155-100009.json new file mode 100644 index 000000000000..167902191aa4 --- /dev/null +++ b/_data/chains/eip155-100009.json @@ -0,0 +1,27 @@ +{ + "name": "VeChain", + "chain": "VeChain", + "rpc": ["https://rpc-mainnet.vechain.energy"], + "faucets": [], + "nativeCurrency": { + "name": "VeChain", + "symbol": "VET", + "decimals": 18 + }, + "infoURL": "https://vechain.org", + "shortName": "vechain", + "chainId": 100009, + "networkId": 100009, + "explorers": [ + { + "name": "VeChain Stats", + "url": "https://vechainstats.com", + "standard": "none" + }, + { + "name": "VeChain Explorer", + "url": "https://explore.vechain.org", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-10001.json b/_data/chains/eip155-10001.json index b193de31686e..3d17ce35c853 100644 --- a/_data/chains/eip155-10001.json +++ b/_data/chains/eip155-10001.json @@ -14,5 +14,6 @@ "infoURL": "http://smartbch.org/", "shortName": "smartbchtest", "chainId": 10001, - "networkId": 10001 + "networkId": 10001, + "slip44": 1 } diff --git a/_data/chains/eip155-100010.json b/_data/chains/eip155-100010.json new file mode 100644 index 000000000000..d2fddbdbe032 --- /dev/null +++ b/_data/chains/eip155-100010.json @@ -0,0 +1,23 @@ +{ + "name": "VeChain Testnet", + "chain": "VeChain", + "rpc": ["https://rpc-testnet.vechain.energy"], + "faucets": ["https://faucet.vecha.in"], + "nativeCurrency": { + "name": "VeChain", + "symbol": "VET", + "decimals": 18 + }, + "infoURL": "https://vechain.org", + "shortName": "vechain-testnet", + "chainId": 100010, + "networkId": 100010, + "slip44": 1, + "explorers": [ + { + "name": "VeChain Explorer", + "url": "https://explore-testnet.vechain.org", + "standard": "none" + } + ] +} 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-100021.json b/_data/chains/eip155-100021.json new file mode 100644 index 000000000000..fbf27e6ef83b --- /dev/null +++ b/_data/chains/eip155-100021.json @@ -0,0 +1,24 @@ +{ + "name": "Sova", + "chain": "ETH", + "icon": "sova", + "rpc": ["https://rpc.sova.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://sova.io", + "shortName": "sova", + "chainId": 100021, + "networkId": 100021, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.sova.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1001.json b/_data/chains/eip155-1001.json index 8d8046b4d651..6e6899ab1c98 100644 --- a/_data/chains/eip155-1001.json +++ b/_data/chains/eip155-1001.json @@ -1,19 +1,28 @@ { - "name": "Klaytn Testnet Baobab", - "chain": "KLAY", - "rpc": [ - "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://www.klaytn.com/", - "shortName": "Baobab", + "infoURL": "https://kaia.io/", + "shortName": "kaia-kairos", "chainId": 1001, - "networkId": 1001 + "networkId": 1001, + "slip44": 1, + "explorers": [ + { + "name": "Kaiascope", + "url": "https://kairos.kaiascope.com", + "standard": "EIP3091" + }, + { + "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-100100.json b/_data/chains/eip155-100100.json new file mode 100644 index 000000000000..665d1b76dc2e --- /dev/null +++ b/_data/chains/eip155-100100.json @@ -0,0 +1,18 @@ +{ + "name": "Deprecated CHI", + "chain": "CHI1", + "icon": "gnosis", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Chiado xDAI", + "symbol": "xDAI", + "decimals": 18 + }, + "infoURL": "https://docs.gnosischain.com", + "shortName": "chi1", + "chainId": 100100, + "networkId": 100100, + "explorers": [], + "status": "deprecated" +} 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-1001996.json b/_data/chains/eip155-1001996.json new file mode 100644 index 000000000000..967665bea5b2 --- /dev/null +++ b/_data/chains/eip155-1001996.json @@ -0,0 +1,28 @@ +{ + "name": "Wirex Pay Testnet", + "chain": "WirexPay", + "icon": "wpay", + "rpc": ["https://rpc-dev.wirexpaychain.com"], + "faucets": ["https://faucet-dev.wirexpaychain.com"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://docs.wirexpaychain.com/tech/wirex-pay-chain", + "shortName": "wirex-testnet", + "chainId": 1001996, + "networkId": 1001996, + "explorers": [ + { + "name": "Wirex Pay Testnet Explorer", + "url": "https://explorer-dev.wirexpaychain.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-10024.json b/_data/chains/eip155-10024.json new file mode 100644 index 000000000000..2319b852acbe --- /dev/null +++ b/_data/chains/eip155-10024.json @@ -0,0 +1,29 @@ +{ + "name": "Gon Chain", + "chain": "GonChain", + "icon": "gonchain", + "rpc": [ + "https://node1.testnet.gaiaopen.network", + "https://node1.mainnet.gon.network", + "https://node2.mainnet.gon.network", + "https://node3.mainnet.gon.network", + "https://node4.mainnet.gon.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gon Token", + "symbol": "GT", + "decimals": 18 + }, + "infoURL": "", + "shortName": "gon", + "chainId": 10024, + "networkId": 10024, + "explorers": [ + { + "name": "Gon Explorer", + "url": "https://gonscan.com", + "standard": "none" + } + ] +} 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-1003.json b/_data/chains/eip155-1003.json new file mode 100644 index 000000000000..52ce4225ba0a --- /dev/null +++ b/_data/chains/eip155-1003.json @@ -0,0 +1,23 @@ +{ + "name": "Tectum Emission Token", + "chain": "TET", + "rpc": ["https://rpc.softnote.com/"], + "faucets": [], + "nativeCurrency": { + "name": "Tectum", + "symbol": "TET", + "decimals": 8 + }, + "infoURL": "https://softnote.com", + "shortName": "tet", + "chainId": 1003, + "networkId": 1003, + "explorers": [ + { + "name": "Tectum explorer", + "url": "https://explorer.tectum.io", + "icon": "Tettoken256", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1004.json b/_data/chains/eip155-1004.json new file mode 100644 index 000000000000..48cf3f41b5fb --- /dev/null +++ b/_data/chains/eip155-1004.json @@ -0,0 +1,25 @@ +{ + "name": "T-EKTA", + "title": "EKTA Testnet T-EKTA", + "chain": "T-EKTA", + "rpc": ["https://test.ekta.io:8545"], + "faucets": [], + "nativeCurrency": { + "name": "T-EKTA", + "symbol": "T-EKTA", + "decimals": 18 + }, + "infoURL": "https://www.ekta.io", + "shortName": "t-ekta", + "chainId": 1004, + "networkId": 1004, + "icon": "ekta", + "explorers": [ + { + "name": "test-ektascan", + "url": "https://test.ektascan.io", + "icon": "ekta", + "standard": "EIP3091" + } + ] +} 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-100611.json b/_data/chains/eip155-100611.json new file mode 100644 index 000000000000..f493b56b4963 --- /dev/null +++ b/_data/chains/eip155-100611.json @@ -0,0 +1,32 @@ +{ + "name": "Monsoon Alpha", + "chain": "MONSOON ALPHA", + "rpc": ["https://alpha.monsoon.rainfall.one"], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "RDL", + "symbol": "RDL", + "decimals": 18 + }, + "infoURL": "", + "shortName": "monsoon-alpha", + "chainId": 100611, + "networkId": 100611, + "icon": "monsoon", + "explorers": [ + { + "name": "Monsoon Scan", + "url": "https://scout.alpha.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-10067275.json b/_data/chains/eip155-10067275.json new file mode 100644 index 000000000000..6bf6c02741a9 --- /dev/null +++ b/_data/chains/eip155-10067275.json @@ -0,0 +1,27 @@ +{ + "name": "Plian Testnet Subchain 1", + "chain": "Plian", + "rpc": ["https://testnet.plian.io/child_test"], + "faucets": [], + "nativeCurrency": { + "name": "Plian Token", + "symbol": "TPI", + "decimals": 18 + }, + "infoURL": "https://plian.org/", + "shortName": "plian-testnet-l2", + "chainId": 10067275, + "networkId": 10067275, + "slip44": 1, + "explorers": [ + { + "name": "piscan", + "url": "https://testnet.plian.org/child_test", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-16658437", + "type": "L2" + } +} diff --git a/_data/chains/eip155-1007.json b/_data/chains/eip155-1007.json index 7f5f4147ff58..c3184c95a702 100644 --- a/_data/chains/eip155-1007.json +++ b/_data/chains/eip155-1007.json @@ -1,9 +1,7 @@ { "name": "Newton Testnet", "chain": "NEW", - "rpc": [ - "https://rpc1.newchain.newtonproject.org" - ], + "rpc": ["https://rpc1.newchain.newtonproject.org"], "faucets": [], "nativeCurrency": { "name": "Newton", @@ -13,5 +11,6 @@ "infoURL": "https://www.newtonproject.org/", "shortName": "tnew", "chainId": 1007, - "networkId": 1007 -} \ No newline at end of file + "networkId": 1007, + "slip44": 1 +} diff --git a/_data/chains/eip155-1008.json b/_data/chains/eip155-1008.json index 9931f8c57067..76f07166e658 100644 --- a/_data/chains/eip155-1008.json +++ b/_data/chains/eip155-1008.json @@ -1,28 +1,24 @@ { - "name":"Eurus Mainnet", - "chain":"EUN", - "network":"eurus", - "rpc":[ - "https://mainnet.eurus.network/" - ], - "faucets":[ - ], - "nativeCurrency":{ - "name":"Eurus", - "symbol":"EUN", - "decimals":18 - }, - "infoURL":"https://eurus.network", - "shortName":"eun", - "chainId":1008, - "networkId":1008, - "icon":"eurus", - "explorers":[ - { - "name":"eurusexplorer", - "url":"https://explorer.eurus.network", - "icon":"eurus", - "standard":"none" - } - ] - } \ No newline at end of file + "name": "Eurus Mainnet", + "chain": "EUN", + "rpc": ["https://mainnet.eurus.network/"], + "faucets": [], + "nativeCurrency": { + "name": "Eurus", + "symbol": "EUN", + "decimals": 18 + }, + "infoURL": "https://eurus.network", + "shortName": "eun", + "chainId": 1008, + "networkId": 1008, + "icon": "eurus", + "explorers": [ + { + "name": "eurusexplorer", + "url": "https://explorer.eurus.network", + "icon": "eurus", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-10081.json b/_data/chains/eip155-10081.json new file mode 100644 index 000000000000..3e52d89f9e3b --- /dev/null +++ b/_data/chains/eip155-10081.json @@ -0,0 +1,28 @@ +{ + "name": "Japan Open Chain Testnet", + "chain": "JOCT", + "rpc": [ + "https://rpc-1.testnet.japanopenchain.org:8545", + "https://rpc-2.testnet.japanopenchain.org:8545", + "https://rpc-3.testnet.japanopenchain.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Japan Open Chain Testnet Token", + "symbol": "JOCT", + "decimals": 18 + }, + "infoURL": "https://www.japanopenchain.org/", + "shortName": "joct", + "chainId": 10081, + "networkId": 10081, + "icon": "joct", + "slip44": 1, + "explorers": [ + { + "name": "Testnet Block Explorer", + "url": "https://explorer.testnet.japanopenchain.org", + "standard": "EIP3091" + } + ] +} 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-10086.json b/_data/chains/eip155-10086.json new file mode 100644 index 000000000000..e3e19b2207f8 --- /dev/null +++ b/_data/chains/eip155-10086.json @@ -0,0 +1,15 @@ +{ + "name": "SJATSH", + "chain": "ETH", + "rpc": ["http://geth.free.idcfengye.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://sjis.me", + "shortName": "SJ", + "chainId": 10086, + "networkId": 10086 +} 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 new file mode 100644 index 000000000000..7b6d63af1857 --- /dev/null +++ b/_data/chains/eip155-1009.json @@ -0,0 +1,29 @@ +{ + "name": "Jumbochain Mainnet", + "chain": "Jumbo", + "rpc": [ + "https://rpcpriv.jumbochain.org", + "https://rpc-datajumbo1.jumbochain.org", + "https://rpc-datajumbo2.jumbochain.org", + "https://rpc-datajumbo3.jumbochain.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "JNFTC", + "symbol": "JNFTC", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://jumbochain.org", + "shortName": "Jumboscan", + "chainId": 1009, + "networkId": 1009, + "slip44": 1, + "explorers": [ + { + "name": "Jumboscan", + "url": "https://jumboscan.jumbochain.org", + "standard": "EIP3091" + } + ] +} 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-101.json b/_data/chains/eip155-101.json index 499c41dbf26c..de03f976e9e1 100644 --- a/_data/chains/eip155-101.json +++ b/_data/chains/eip155-101.json @@ -1,9 +1,7 @@ { "name": "EtherInc", "chain": "ETI", - "rpc": [ - "https://api.einc.io/jsonrpc/mainnet" - ], + "rpc": ["https://api.einc.io/jsonrpc/mainnet"], "faucets": [], "nativeCurrency": { "name": "EtherInc Ether", @@ -15,4 +13,4 @@ "chainId": 101, "networkId": 1, "slip44": 464 -} \ No newline at end of file +} diff --git a/_data/chains/eip155-1010.json b/_data/chains/eip155-1010.json index b607bec2204c..527a88cd9813 100644 --- a/_data/chains/eip155-1010.json +++ b/_data/chains/eip155-1010.json @@ -1,9 +1,7 @@ { "name": "Evrice Network", "chain": "EVC", - "rpc": [ - "https://meta.evrice.com" - ], + "rpc": ["https://meta.evrice.com"], "faucets": [], "nativeCurrency": { "name": "Evrice", 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-101010.json b/_data/chains/eip155-101010.json new file mode 100644 index 000000000000..5bdfe8b748a5 --- /dev/null +++ b/_data/chains/eip155-101010.json @@ -0,0 +1,24 @@ +{ + "name": "Global Trust Network", + "chain": "GTN", + "icon": "gtn", + "rpc": ["https://gtn.stabilityprotocol.com"], + "faucets": [], + "nativeCurrency": { + "name": "FREE", + "symbol": "FREE", + "decimals": 18 + }, + "infoURL": "https://stabilityprotocol.com", + "shortName": "stabilityprotocol", + "chainId": 101010, + "networkId": 101010, + "explorers": [ + { + "name": "blockscout", + "url": "https://stability.blockscout.com", + "standard": "EIP3091" + } + ], + "redFlags": ["reusedChainId"] +} diff --git a/_data/chains/eip155-10101010.json b/_data/chains/eip155-10101010.json new file mode 100644 index 000000000000..de956fb87132 --- /dev/null +++ b/_data/chains/eip155-10101010.json @@ -0,0 +1,23 @@ +{ + "name": "Soverun Mainnet", + "chain": "SVRN", + "icon": "soverun", + "rpc": ["https://mainnet-rpc.soverun.com"], + "faucets": ["https://faucet.soverun.com"], + "nativeCurrency": { + "name": "Soverun", + "symbol": "SVRN", + "decimals": 18 + }, + "infoURL": "https://soverun.com", + "shortName": "SVRNm", + "chainId": 10101010, + "networkId": 10101010, + "explorers": [ + { + "name": "Soverun", + "url": "https://explorer.soverun.com", + "standard": "EIP3091" + } + ] +} 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 new file mode 100644 index 000000000000..e0a8995f898f --- /dev/null +++ b/_data/chains/eip155-1011.json @@ -0,0 +1,31 @@ +{ + "name": "Rebus Classic Mainnet", + "title": "Rebuschain Mainnet", + "chain": "REBUS", + "rpc": ["https://apievm.rebuschain.com/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Rebus Classic", + "symbol": "REBUS", + "decimals": 18 + }, + "infoURL": "https://www.rebuschain.com", + "shortName": "rebusclassic", + "chainId": 1011, + "networkId": 1011, + "icon": "rebusc", + "explorers": [ + { + "name": "Rebus EVM Explorer (Blockscout)", + "url": "https://evm-l1.rebuschain.com", + "icon": "rebus", + "standard": "none" + }, + { + "name": "Rebus Cosmos Explorer (ping.pub)", + "url": "https://cosmos.rebuschain.com", + "icon": "rebus", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1012.json b/_data/chains/eip155-1012.json index 7397ea915a29..f1d064be417c 100644 --- a/_data/chains/eip155-1012.json +++ b/_data/chains/eip155-1012.json @@ -1,9 +1,7 @@ { "name": "Newton", "chain": "NEW", - "rpc": [ - "https://global.rpc.mainnet.newtonproject.org" - ], + "rpc": ["https://global.rpc.mainnet.newtonproject.org"], "faucets": [], "nativeCurrency": { "name": "Newton", @@ -14,4 +12,4 @@ "shortName": "new", "chainId": 1012, "networkId": 1012 -} \ No newline at end of file +} 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-102.json b/_data/chains/eip155-102.json index 2cc58f0a0e14..fe0e1206d0b3 100644 --- a/_data/chains/eip155-102.json +++ b/_data/chains/eip155-102.json @@ -1,16 +1,21 @@ { - "name": "Web3Games Testnet", - "chain": "Web3Games", - "icon": "web3games", - "rpc": ["https://testnet.web3games.org/evm"], - "faucets": [], - "nativeCurrency": { - "name": "Web3Games", - "symbol": "W3G", - "decimals": 18 - }, - "infoURL": "https://web3games.org/", - "shortName": "tw3g", - "chainId": 102, - "networkId": 102 + "name": "Web3Games Testnet", + "chain": "Web3Games", + "icon": "web3games", + "rpc": [ + "https://testnet-rpc-0.web3games.org/evm", + "https://testnet-rpc-1.web3games.org/evm", + "https://testnet-rpc-2.web3games.org/evm" + ], + "faucets": [], + "nativeCurrency": { + "name": "Web3Games", + "symbol": "W3G", + "decimals": 18 + }, + "infoURL": "https://web3games.org/", + "shortName": "tw3g", + "chainId": 102, + "networkId": 102, + "slip44": 1 } diff --git a/_data/chains/eip155-10200.json b/_data/chains/eip155-10200.json new file mode 100644 index 000000000000..42963b7f7ba4 --- /dev/null +++ b/_data/chains/eip155-10200.json @@ -0,0 +1,39 @@ +{ + "name": "Gnosis Chiado Testnet", + "chain": "GNO", + "icon": "gnosis", + "rpc": [ + "https://rpc.chiadochain.net", + "https://rpc.chiado.gnosis.gateway.fm", + "wss://rpc.chiadochain.net/wss", + "https://gnosis-chiado-rpc.publicnode.com", + "wss://gnosis-chiado-rpc.publicnode.com", + "https://gnosis-chiado.drpc.org", + "wss://gnosis-chiado.drpc.org" + ], + "faucets": ["https://gnosisfaucet.com"], + "nativeCurrency": { + "name": "Chiado xDAI", + "symbol": "XDAI", + "decimals": 18 + }, + "infoURL": "https://docs.gnosischain.com", + "shortName": "chi", + "chainId": 10200, + "networkId": 10200, + "slip44": 1, + "explorers": [ + { + "name": "blockscout-chiadochain", + "url": "https://blockscout.chiadochain.net", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://gnosis-chiado.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-10201.json b/_data/chains/eip155-10201.json new file mode 100644 index 000000000000..2f9d91bd6605 --- /dev/null +++ b/_data/chains/eip155-10201.json @@ -0,0 +1,27 @@ +{ + "name": "MaxxChain Mainnet", + "chain": "MaxxChain", + "rpc": [ + "https://rpc.maxxchain.org", + "https://rpc1.maxxchain.org", + "https://rpc2.maxxchain.org" + ], + "faucets": ["https://faucet.maxxchain.org"], + "nativeCurrency": { + "name": "Power", + "symbol": "PWR", + "decimals": 18 + }, + "icon": "pwr", + "infoURL": "https://www.maxxchain.org/", + "shortName": "PWR", + "chainId": 10201, + "networkId": 10201, + "explorers": [ + { + "name": "MaxxChain Block Explorer", + "url": "https://explorer.maxxchain.org", + "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-102031.json b/_data/chains/eip155-102031.json new file mode 100644 index 000000000000..f8c69ac2d261 --- /dev/null +++ b/_data/chains/eip155-102031.json @@ -0,0 +1,32 @@ +{ + "name": "Creditcoin Testnet", + "chain": "CTC", + "icon": "creditcoin", + "rpc": ["https://rpc.cc3-testnet.creditcoin.network"], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "Testnet CTC", + "symbol": "tCTC", + "decimals": 18 + }, + "infoURL": "https://creditcoin.org", + "shortName": "ctctest", + "chainId": 102031, + "networkId": 102031, + "faucets": [], + "explorers": [ + { + "name": "blockscout", + "url": "https://creditcoin-testnet.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-1020352220.json b/_data/chains/eip155-1020352220.json new file mode 100644 index 000000000000..26e7fa8b9726 --- /dev/null +++ b/_data/chains/eip155-1020352220.json @@ -0,0 +1,28 @@ +{ + "name": "SKALE Titan Hub Testnet", + "title": "SKALE Titan Hub Testnet", + "chain": "aware-fake-trim-testnet", + "icon": "titan", + "rpc": [ + "https://testnet.skalenodes.com/v1/aware-fake-trim-testnet", + "wss://testnet.skalenodes.com/v1/ws/aware-fake-trim-testnet" + ], + "faucets": ["https://www.sfuelstation.com/"], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "", + "shortName": "titan-testnet", + "chainId": 1020352220, + "networkId": 1020352220, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://aware-fake-trim-testnet.explorer.testnet.skalenodes.com", + "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-1022.json b/_data/chains/eip155-1022.json index 7b364a8373a3..6885dfc75c30 100644 --- a/_data/chains/eip155-1022.json +++ b/_data/chains/eip155-1022.json @@ -1,15 +1,15 @@ { + "name": "Sakura", + "chain": "Sakura", + "rpc": [], + "faucets": [], + "nativeCurrency": { "name": "Sakura", - "chain": "Sakura", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Sakura", - "symbol": "SKU", - "decimals": 18 - }, - "infoURL": "https://clover.finance/sakura", - "shortName": "sku", - "chainId": 1022, - "networkId": 1022 -} \ No newline at end of file + "symbol": "SKU", + "decimals": 18 + }, + "infoURL": "https://clover.finance/sakura", + "shortName": "sku", + "chainId": 1022, + "networkId": 1022 +} 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-1023.json b/_data/chains/eip155-1023.json index dc479714c1b8..f44ad92e9674 100644 --- a/_data/chains/eip155-1023.json +++ b/_data/chains/eip155-1023.json @@ -1,15 +1,16 @@ { - "name": "Clover Testnet", - "chain": "Clover", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Clover", - "symbol": "CLV", - "decimals": 18 - }, - "infoURL": "https://clover.finance", - "shortName": "tclv", - "chainId": 1023, - "networkId": 1023 -} \ No newline at end of file + "name": "Clover Testnet", + "chain": "Clover", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Clover", + "symbol": "CLV", + "decimals": 18 + }, + "infoURL": "https://clover.finance", + "shortName": "tclv", + "chainId": 1023, + "networkId": 1023, + "slip44": 1 +} diff --git a/_data/chains/eip155-1024.json b/_data/chains/eip155-1024.json index df246d058c55..eadfa37b11e7 100644 --- a/_data/chains/eip155-1024.json +++ b/_data/chains/eip155-1024.json @@ -1,17 +1,15 @@ { - "name": "CLV Parachain", - "chain": "CLV", - "rpc": [ - "https://api-para.clover.finance" - ], - "faucets": [], - "nativeCurrency": { - "name": "CLV", - "symbol": "CLV", - "decimals": 18 - }, - "infoURL": "https://clv.org", - "shortName": "clv", - "chainId": 1024, - "networkId": 1024 -} \ No newline at end of file + "name": "CLV Parachain", + "chain": "CLV", + "rpc": ["https://api-para.clover.finance"], + "faucets": [], + "nativeCurrency": { + "name": "CLV", + "symbol": "CLV", + "decimals": 18 + }, + "infoURL": "https://clv.org", + "shortName": "clv", + "chainId": 1024, + "networkId": 1024 +} 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-10241025.json b/_data/chains/eip155-10241025.json new file mode 100644 index 000000000000..12e51d78c6fc --- /dev/null +++ b/_data/chains/eip155-10241025.json @@ -0,0 +1,26 @@ +{ + "name": "ALIENX Hal Testnet", + "chain": "ALIENX Hal", + "rpc": [ + "https://hal-rpc.alienxchain.io/http", + "https://hal.rpc.caldera.xyz/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://alienxchain.io/home", + "shortName": "ALIENXHal", + "chainId": 10241025, + "networkId": 10241025, + "icon": "hal", + "explorers": [ + { + "name": "Hal Explorer", + "url": "https://hal-explorer.alienxchain.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-10242.json b/_data/chains/eip155-10242.json new file mode 100644 index 000000000000..9ed44ca707b3 --- /dev/null +++ b/_data/chains/eip155-10242.json @@ -0,0 +1,25 @@ +{ + "name": "Arthera Mainnet", + "chain": "AA", + "icon": "arthera", + "rpc": ["https://rpc.arthera.net"], + "faucets": [], + "nativeCurrency": { + "name": "Arthera", + "symbol": "AA", + "decimals": 18 + }, + "infoURL": "https://docs.arthera.net/build/developing-sc/using-hardhat", + "shortName": "aa", + "chainId": 10242, + "networkId": 10242, + "slip44": 10242, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.arthera.net", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-10243.json b/_data/chains/eip155-10243.json new file mode 100644 index 000000000000..05523321c6d6 --- /dev/null +++ b/_data/chains/eip155-10243.json @@ -0,0 +1,25 @@ +{ + "name": "Arthera Testnet", + "chain": "AA", + "icon": "arthera", + "rpc": ["https://rpc-test.arthera.net"], + "faucets": ["https://faucet.arthera.net"], + "nativeCurrency": { + "name": "Arthera", + "symbol": "AA", + "decimals": 18 + }, + "infoURL": "https://docs.arthera.net", + "shortName": "aat", + "chainId": 10243, + "networkId": 10243, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer-test.arthera.net", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-10248.json b/_data/chains/eip155-10248.json new file mode 100644 index 000000000000..3c192a3a792b --- /dev/null +++ b/_data/chains/eip155-10248.json @@ -0,0 +1,22 @@ +{ + "name": "0XTade", + "chain": "0XTade Chain", + "rpc": ["https://node.0xtchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "0XT", + "symbol": "0XT", + "decimals": 18 + }, + "infoURL": "https://www.0xtrade.finance/", + "shortName": "0xt", + "chainId": 10248, + "networkId": 10248, + "explorers": [ + { + "name": "0xtrade Scan", + "url": "https://www.0xtscan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1028.json b/_data/chains/eip155-1028.json index 50b4ca1b9041..b84bf36be9ec 100644 --- a/_data/chains/eip155-1028.json +++ b/_data/chains/eip155-1028.json @@ -1,22 +1,24 @@ { "name": "BitTorrent Chain Testnet", "chain": "BTTC", - "rpc": [ - "https://testrpc.bittorrentchain.io/" - ], + "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, - "explorers": [{ - "name": "testbttcscan", - "url": "https://testscan.bittorrentchain.io", - "standard": "none" - }] + "slip44": 1, + "explorers": [ + { + "name": "testbttcscan", + "url": "https://testscan.bittorrentchain.io", + "standard": "none" + } + ] } 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-103.json b/_data/chains/eip155-103.json new file mode 100644 index 000000000000..ccbff57d6e1a --- /dev/null +++ b/_data/chains/eip155-103.json @@ -0,0 +1,26 @@ +{ + "name": "WorldLand Mainnet", + "chain": "Worldland", + "icon": "worldland", + "rpc": [ + "https://seoul.worldland.foundation", + "https://seoul2.worldland.foundation" + ], + "faucets": [], + "nativeCurrency": { + "name": "Worldland", + "symbol": "WLC", + "decimals": 18 + }, + "infoURL": "https://worldland.foundation", + "shortName": "WLC", + "chainId": 103, + "networkId": 103, + "explorers": [ + { + "name": "Worldland Explorer", + "url": "https://scan.worldland.foundation", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1030.json b/_data/chains/eip155-1030.json index 6e5480914685..153164e634eb 100644 --- a/_data/chains/eip155-1030.json +++ b/_data/chains/eip155-1030.json @@ -1,24 +1,23 @@ { - "name": "Conflux eSpace", - "chain": "Conflux", - "network": "mainnet", - "rpc": ["https://evm.confluxrpc.com"], - "faucets": [], - "nativeCurrency": { - "name": "CFX", - "symbol": "CFX", - "decimals": 18 - }, - "infoURL": "https://confluxnetwork.org", - "shortName": "cfx", - "chainId": 1030, - "networkId": 1030, - "icon": "conflux", - "explorers": [ - { - "name": "Conflux Scan", - "url": "https://evm.confluxscan.net", - "standard": "none" - } - ] - } \ No newline at end of file + "name": "Conflux eSpace", + "chain": "Conflux", + "rpc": ["https://evm.confluxrpc.com"], + "faucets": [], + "nativeCurrency": { + "name": "CFX", + "symbol": "CFX", + "decimals": 18 + }, + "infoURL": "https://confluxnetwork.org", + "shortName": "cfx", + "chainId": 1030, + "networkId": 1030, + "icon": "conflux", + "explorers": [ + { + "name": "Conflux Scan", + "url": "https://evm.confluxscan.net", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-103090.json b/_data/chains/eip155-103090.json index cc3e0600c6ce..602d95bd10dc 100644 --- a/_data/chains/eip155-103090.json +++ b/_data/chains/eip155-103090.json @@ -1,11 +1,7 @@ { "name": "Crystaleum", "chain": "crystal", - "network": "mainnet", - "rpc": [ - "https://evm.cryptocurrencydevs.org", - "https://rpc.crystaleum.org" - ], + "rpc": ["https://evm.cryptocurrencydevs.org", "https://rpc.crystaleum.org"], "faucets": [], "nativeCurrency": { "name": "CRFI", @@ -17,10 +13,12 @@ "chainId": 103090, "networkId": 1, "icon": "crystal", - "explorers": [{ - "name": "blockscout", - "url": "https://scan.crystaleum.org", - "icon": "crystal", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.crystaleum.org", + "icon": "crystal", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-1031.json b/_data/chains/eip155-1031.json new file mode 100644 index 000000000000..2891961cd25f --- /dev/null +++ b/_data/chains/eip155-1031.json @@ -0,0 +1,23 @@ +{ + "name": "Proxy Network Testnet", + "chain": "Proxy Network", + "rpc": ["http://128.199.94.183:8041"], + "faucets": [], + "nativeCurrency": { + "name": "PRX", + "symbol": "PRX", + "decimals": 18 + }, + "infoURL": "https://theproxy.network", + "shortName": "prx", + "chainId": 1031, + "networkId": 1031, + "slip44": 1, + "explorers": [ + { + "name": "proxy network testnet", + "url": "http://testnet-explorer.theproxy.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-10321.json b/_data/chains/eip155-10321.json new file mode 100644 index 000000000000..e5e20a7af3cf --- /dev/null +++ b/_data/chains/eip155-10321.json @@ -0,0 +1,23 @@ +{ + "name": "TAO EVM Mainnet", + "chain": "TAO EVM", + "icon": "taoevmIcon", + "rpc": ["https://rpc.taoevm.io"], + "faucets": [], + "nativeCurrency": { + "name": "TAO", + "symbol": "TAO", + "decimals": 18 + }, + "infoURL": "https://taoevm.io", + "shortName": "TAOm", + "chainId": 10321, + "networkId": 10321, + "explorers": [ + { + "name": "TAO Mainnet Explorer", + "url": "https://taoscan.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-10324.json b/_data/chains/eip155-10324.json new file mode 100644 index 000000000000..36fcb4a3c585 --- /dev/null +++ b/_data/chains/eip155-10324.json @@ -0,0 +1,23 @@ +{ + "name": "TAO EVM Testnet", + "chain": "TAO EVM", + "icon": "taoevmIcon", + "rpc": ["https://testnet-rpc.taoevm.io"], + "faucets": ["https://faucet.taoevm.io"], + "nativeCurrency": { + "name": "TAO", + "symbol": "TAO", + "decimals": 18 + }, + "infoURL": "https://taoevm.io", + "shortName": "TAOt", + "chainId": 10324, + "networkId": 10324, + "explorers": [ + { + "name": "TAO Testnet Explorer", + "url": "https://testnet.taoscan.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-103454.json b/_data/chains/eip155-103454.json new file mode 100644 index 000000000000..f0874f2f8de8 --- /dev/null +++ b/_data/chains/eip155-103454.json @@ -0,0 +1,28 @@ +{ + "name": "Masa Testnet", + "chain": "MASA", + "icon": "masa", + "rpc": ["https://subnets.avax.network/masatestne/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Masa Token", + "symbol": "MASA", + "decimals": 18 + }, + "infoURL": "https://masa.finance", + "shortName": "masatest", + "chainId": 103454, + "networkId": 103454, + "explorers": [ + { + "name": "Masa Testnet Explorer", + "url": "https://subnets-test.avax.network/masatestnet", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1038.json b/_data/chains/eip155-1038.json new file mode 100644 index 000000000000..43d19e0fce85 --- /dev/null +++ b/_data/chains/eip155-1038.json @@ -0,0 +1,25 @@ +{ + "name": "Bronos Testnet", + "chain": "Bronos", + "rpc": ["https://evm-testnet.bronos.org"], + "faucets": ["https://faucet.bronos.org"], + "nativeCurrency": { + "name": "tBRO", + "symbol": "tBRO", + "decimals": 18 + }, + "infoURL": "https://bronos.org", + "shortName": "bronos-testnet", + "chainId": 1038, + "networkId": 1038, + "slip44": 1, + "icon": "bronos", + "explorers": [ + { + "name": "Bronos Testnet Explorer", + "url": "https://tbroscan.bronos.org", + "standard": "none", + "icon": "bronos" + } + ] +} diff --git a/_data/chains/eip155-1039.json b/_data/chains/eip155-1039.json new file mode 100644 index 000000000000..e9ea0b7acf30 --- /dev/null +++ b/_data/chains/eip155-1039.json @@ -0,0 +1,24 @@ +{ + "name": "Bronos Mainnet", + "chain": "Bronos", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "BRO", + "symbol": "BRO", + "decimals": 18 + }, + "infoURL": "https://bronos.org", + "shortName": "bronos-mainnet", + "chainId": 1039, + "networkId": 1039, + "icon": "bronos", + "explorers": [ + { + "name": "Bronos Explorer", + "url": "https://broscan.bronos.org", + "standard": "none", + "icon": "bronos" + } + ] +} diff --git a/_data/chains/eip155-10395.json b/_data/chains/eip155-10395.json new file mode 100644 index 000000000000..83c2e62e51e6 --- /dev/null +++ b/_data/chains/eip155-10395.json @@ -0,0 +1,24 @@ +{ + "name": "WorldLand Testnet", + "chain": "Worldland", + "icon": "worldland", + "rpc": ["https://gwangju.worldland.foundation"], + "faucets": [], + "nativeCurrency": { + "name": "Worldland", + "symbol": "WLC", + "decimals": 18 + }, + "infoURL": "https://worldland.foundation", + "shortName": "TWLC", + "chainId": 10395, + "networkId": 10395, + "slip44": 1, + "explorers": [ + { + "name": "Worldland Explorer", + "url": "https://testscan.worldland.foundation", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-104.json b/_data/chains/eip155-104.json new file mode 100644 index 000000000000..3249fa8265fc --- /dev/null +++ b/_data/chains/eip155-104.json @@ -0,0 +1,25 @@ +{ + "name": "Kaiba Lightning Chain Testnet", + "chain": "tKLC", + "rpc": ["https://klc.live/"], + "faucets": [], + "nativeCurrency": { + "name": "Kaiba Testnet Token", + "symbol": "tKAIBA", + "decimals": 18 + }, + "infoURL": "https://kaibadefi.com", + "shortName": "tklc", + "chainId": 104, + "networkId": 104, + "slip44": 1, + "icon": "kaiba", + "explorers": [ + { + "name": "kaibascan", + "url": "https://kaibascan.io", + "icon": "kaibascan", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-104566.json b/_data/chains/eip155-104566.json new file mode 100644 index 000000000000..46efe958b435 --- /dev/null +++ b/_data/chains/eip155-104566.json @@ -0,0 +1,23 @@ +{ + "name": "KaspaClassic Mainnet", + "chain": "KaspaClassic", + "icon": "kaspaclassic", + "rpc": ["https://api.kaspaclassic.world/", "http://80.178.101.118:8000/"], + "faucets": [], + "nativeCurrency": { + "name": "KaspaClassic", + "symbol": "CAS", + "decimals": 18 + }, + "infoURL": "https://kaspaclassic.com/", + "shortName": "cas", + "chainId": 104566, + "networkId": 104566, + "explorers": [ + { + "name": "KaspaClassic Explorer", + "url": "https://explorer.kaspaclassic.world", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-105.json b/_data/chains/eip155-105.json index 75c3899efe9b..21b20bb1bbc3 100644 --- a/_data/chains/eip155-105.json +++ b/_data/chains/eip155-105.json @@ -1,21 +1,23 @@ { - "name": "Web3Games Devnet", - "chain": "Web3Games", - "icon": "web3games", - "rpc": ["https://devnet.web3games.org/evm"], - "faucets": [], - "nativeCurrency": { - "name": "Web3Games", - "symbol": "W3G", - "decimals": 18 - }, - "infoURL": "https://web3games.org/", - "shortName": "dw3g", - "chainId": 105, - "networkId": 105, - "explorers": [{ - "name": "Web3Games Explorer", - "url": "https://explorer-devnet.web3games.org", - "standard": "none" - }] + "name": "Web3Games Devnet", + "chain": "Web3Games", + "icon": "web3games", + "rpc": ["https://devnet.web3games.org/evm"], + "faucets": [], + "nativeCurrency": { + "name": "Web3Games", + "symbol": "W3G", + "decimals": 18 + }, + "infoURL": "https://web3games.org/", + "shortName": "dw3g", + "chainId": 105, + "networkId": 105, + "explorers": [ + { + "name": "Web3Games Explorer", + "url": "https://explorer-devnet.web3games.org", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-10507.json b/_data/chains/eip155-10507.json new file mode 100644 index 000000000000..054b1ca1cff3 --- /dev/null +++ b/_data/chains/eip155-10507.json @@ -0,0 +1,23 @@ +{ + "name": "Numbers Mainnet", + "chain": "NUM", + "icon": "num", + "rpc": ["https://mainnetrpc.num.network"], + "faucets": [], + "nativeCurrency": { + "name": "NUM Token", + "symbol": "NUM", + "decimals": 18 + }, + "infoURL": "https://numbersprotocol.io", + "shortName": "Jade", + "chainId": 10507, + "networkId": 10507, + "explorers": [ + { + "name": "ethernal", + "url": "https://mainnet.num.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-10508.json b/_data/chains/eip155-10508.json new file mode 100644 index 000000000000..6289a35980d8 --- /dev/null +++ b/_data/chains/eip155-10508.json @@ -0,0 +1,27 @@ +{ + "name": "Numbers Testnet", + "chain": "NUM", + "icon": "num", + "rpc": ["https://testnetrpc.num.network"], + "faucets": [ + "https://faucet.avax.network/?subnet=num", + "https://faucet.num.network" + ], + "nativeCurrency": { + "name": "NUM Token", + "symbol": "NUM", + "decimals": 18 + }, + "infoURL": "https://numbersprotocol.io", + "shortName": "Snow", + "chainId": 10508, + "networkId": 10508, + "slip44": 1, + "explorers": [ + { + "name": "ethernal", + "url": "https://testnet.num.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-105105.json b/_data/chains/eip155-105105.json new file mode 100644 index 000000000000..fc919602390f --- /dev/null +++ b/_data/chains/eip155-105105.json @@ -0,0 +1,23 @@ +{ + "name": "Xertra Mainnet", + "chain": "Xertra", + "rpc": ["https://rpc.xertra.com"], + "faucets": [], + "nativeCurrency": { + "name": "STRAX", + "symbol": "STRAX", + "decimals": 18 + }, + "infoURL": "https://www.xertra.com/", + "shortName": "xertra", + "chainId": 105105, + "networkId": 105105, + "icon": "xertra", + "explorers": [ + { + "name": "Xertra Explorer", + "url": "https://explorer.xertra.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-106.json b/_data/chains/eip155-106.json index 010b3750b5c0..e9dc7a86821a 100644 --- a/_data/chains/eip155-106.json +++ b/_data/chains/eip155-106.json @@ -16,9 +16,11 @@ "shortName": "vlx", "chainId": 106, "networkId": 106, - "explorers": [{ - "name": "Velas Explorer", - "url": "https://evmexplorer.velas.com", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "Velas Explorer", + "url": "https://evmexplorer.velas.com", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-107.json b/_data/chains/eip155-107.json index 27c18f63fc87..9a91273c89af 100644 --- a/_data/chains/eip155-107.json +++ b/_data/chains/eip155-107.json @@ -2,10 +2,8 @@ "name": "Nebula Testnet", "chain": "NTN", "icon": "nebulatestnet", - "rpc": [ - "https://testnet.rpc.novanetwork.io:9070" - ], - "faucets": [], + "rpc": ["https://testnet.rpc.novanetwork.io"], + "faucets": ["https://faucet.novanetwork.io"], "nativeCurrency": { "name": "Nebula X", "symbol": "NBX", @@ -15,9 +13,12 @@ "shortName": "ntn", "chainId": 107, "networkId": 107, - "explorers": [{ - "name": "nebulatestnet", - "url": "https://explorer.novanetwork.io", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "nebulatestnet", + "url": "https://explorer.novanetwork.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-1071.json b/_data/chains/eip155-1071.json new file mode 100644 index 000000000000..362d666aabd6 --- /dev/null +++ b/_data/chains/eip155-1071.json @@ -0,0 +1,26 @@ +{ + "name": "OpenGPU Mainnet", + "chain": "OGPU", + "icon": "ogpu", + "rpc": ["https://mainnet-rpc.ogpuscan.io", "wss://mainnet-rpc.ogpuscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "OGPU", + "symbol": "OGPU", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://opengpu.network", + "shortName": "ogpu", + "chainId": 1071, + "networkId": 1071, + "redFlags": ["reusedChainId"], + "explorers": [ + { + "name": "OpenGPU Explorer", + "url": "https://ogpuscan.io", + "icon": "ogpu", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-107107114116.json b/_data/chains/eip155-107107114116.json new file mode 100644 index 000000000000..f7d90138f39c --- /dev/null +++ b/_data/chains/eip155-107107114116.json @@ -0,0 +1,22 @@ +{ + "name": "Kakarot Sepolia Deprecated", + "chain": "ETH", + "icon": "kakarot", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://kakarot.org", + "shortName": "kkrt-sepolia-deprecated", + "chainId": 107107114116, + "networkId": 107107114116, + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [] + } +} diff --git a/_data/chains/eip155-1072.json b/_data/chains/eip155-1072.json new file mode 100644 index 000000000000..3f9a96d91560 --- /dev/null +++ b/_data/chains/eip155-1072.json @@ -0,0 +1,29 @@ +{ + "name": "ShimmerEVM Testnet Deprecated 1072", + "title": "ShimmerEVM Testnet Deprecated 1072", + "chain": "ShimmerEVM", + "icon": "shimmerevm", + "rpc": [], + "faucets": [ + "https://evm-toolkit.evm.testnet.shimmer.network", + "https://evm-faucet.testnet.shimmer.network" + ], + "nativeCurrency": { + "name": "SMR", + "symbol": "SMR", + "decimals": 6 + }, + "infoURL": "https://shimmer.network", + "shortName": "shimmerevm-testnet-deprecated-1072", + "chainId": 1072, + "networkId": 1072, + "slip44": 1, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.evm.testnet.shimmer.network", + "standard": "EIP3091" + } + ], + "status": "deprecated" +} diff --git a/_data/chains/eip155-1073.json b/_data/chains/eip155-1073.json new file mode 100644 index 000000000000..2a3e7e8acb89 --- /dev/null +++ b/_data/chains/eip155-1073.json @@ -0,0 +1,28 @@ +{ + "name": "ShimmerEVM Testnet", + "title": "ShimmerEVM Testnet", + "chain": "ShimmerEVM", + "icon": "shimmerevm", + "rpc": ["https://json-rpc.evm.testnet.shimmer.network"], + "faucets": [ + "https://evm-toolkit.evm.testnet.shimmer.network", + "https://evm-faucet.testnet.shimmer.network" + ], + "nativeCurrency": { + "name": "SMR", + "symbol": "SMR", + "decimals": 18 + }, + "infoURL": "https://shimmer.network", + "shortName": "shimmerevm-testnet", + "chainId": 1073, + "networkId": 1073, + "slip44": 1, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.evm.testnet.shimmer.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1075.json b/_data/chains/eip155-1075.json new file mode 100644 index 000000000000..4ea8fea6231f --- /dev/null +++ b/_data/chains/eip155-1075.json @@ -0,0 +1,24 @@ +{ + "name": "IOTA EVM Testnet", + "title": "IOTA EVM Testnet", + "chain": "IOTA EVM", + "icon": "iotaevm", + "rpc": ["https://json-rpc.evm.testnet.iotaledger.net"], + "faucets": ["https://evm-toolkit.evm.testnet.iotaledger.net"], + "nativeCurrency": { + "name": "IOTA", + "symbol": "IOTA", + "decimals": 18 + }, + "infoURL": "https://www.iota.org", + "shortName": "iotaevm-testnet", + "chainId": 1075, + "networkId": 1075, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.evm.testnet.iotaledger.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1079.json b/_data/chains/eip155-1079.json new file mode 100644 index 000000000000..b055d3707246 --- /dev/null +++ b/_data/chains/eip155-1079.json @@ -0,0 +1,25 @@ +{ + "name": "Mintara Testnet", + "title": "Mintara Testnet", + "chain": "Mintara", + "icon": "mintara", + "rpc": ["https://subnets.avax.network/mintara/testnet/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "MINTARA", + "symbol": "MNTR", + "decimals": 18 + }, + "infoURL": "https://playthink.co.jp", + "shortName": "mintara-testnet", + "chainId": 1079, + "networkId": 1079, + "slip44": 1, + "explorers": [ + { + "name": "explorer", + "url": "https://subnets-test.avax.network/mintara", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-108.json b/_data/chains/eip155-108.json index 567cbc57f0dd..34bf45d866ae 100644 --- a/_data/chains/eip155-108.json +++ b/_data/chains/eip155-108.json @@ -6,9 +6,7 @@ "https://mainnet-rpc.thundertoken.net", "https://mainnet-rpc.thundercore.io" ], - "faucets": [ - "https://faucet.thundercore.com" - ], + "faucets": [], "nativeCurrency": { "name": "ThunderCore Token", "symbol": "TT", @@ -19,7 +17,7 @@ "chainId": 108, "networkId": 108, "slip44": 1001, - + "explorers": [ { "name": "thundercore-viewblock", diff --git a/_data/chains/eip155-1080.json b/_data/chains/eip155-1080.json new file mode 100644 index 000000000000..7c0698126ce7 --- /dev/null +++ b/_data/chains/eip155-1080.json @@ -0,0 +1,24 @@ +{ + "name": "Mintara Mainnet", + "title": "Mintara Mainnet", + "chain": "Mintara", + "icon": "mintara", + "rpc": ["https://subnets.avax.network/mintara/mainnet/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "MINTARA", + "symbol": "MNTR", + "decimals": 18 + }, + "infoURL": "https://playthink.co.jp", + "shortName": "mintara", + "chainId": 1080, + "networkId": 1080, + "explorers": [ + { + "name": "explorer", + "url": "https://subnets.avax.network/mintara", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-108160679.json b/_data/chains/eip155-108160679.json new file mode 100644 index 000000000000..a108142c78d3 --- /dev/null +++ b/_data/chains/eip155-108160679.json @@ -0,0 +1,17 @@ +{ + "name": "Oraichain Mainnet", + "title": "Oraichain Mainnet", + "chain": "Oraichain", + "rpc": ["https://evm.orai.io"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Oraichain Token", + "symbol": "ORAI", + "decimals": 18 + }, + "infoURL": "https://orai.io", + "shortName": "Oraichain", + "chainId": 108160679, + "networkId": 108160679 +} diff --git a/_data/chains/eip155-10823.json b/_data/chains/eip155-10823.json index cda77320c090..099875bc31ca 100644 --- a/_data/chains/eip155-10823.json +++ b/_data/chains/eip155-10823.json @@ -1,27 +1,26 @@ { + "name": "CryptoCoinPay", + "chain": "CCP", + "rpc": [ + "http://node106.cryptocoinpay.info:8545", + "ws://node106.cryptocoinpay.info:8546" + ], + "faucets": [], + "icon": "ccp", + "nativeCurrency": { "name": "CryptoCoinPay", - "chain": "CCP", - "rpc": [ - "http://node106.cryptocoinpay.info:8545", - "ws://node106.cryptocoinpay.info:8546" - ], - "faucets": [], - "icon": "ccp", - "nativeCurrency": { - "name": "CryptoCoinPay", - "symbol": "CCP", - "decimals": 18 - }, - "infoURL": "https://www.cryptocoinpay.co", - "shortName": "CCP", - "chainId": 10823, - "networkId": 10823, - "explorers": [ - { - "name": "CCP Explorer", - "url": "https://cryptocoinpay.info", - "standard": "EIP3091" - } - ] - } - \ No newline at end of file + "symbol": "CCP", + "decimals": 18 + }, + "infoURL": "https://www.cryptocoinpay.co", + "shortName": "CCP", + "chainId": 10823, + "networkId": 10823, + "explorers": [ + { + "name": "CCP Explorer", + "url": "https://cryptocoinpay.info", + "standard": "EIP3091" + } + ] +} 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 b520cf5acf12..50824e545b1f 100644 --- a/_data/chains/eip155-1088.json +++ b/_data/chains/eip155-1088.json @@ -1,7 +1,13 @@ { "name": "Metis Andromeda Mainnet", "chain": "ETH", - "rpc": ["https://andromeda.metis.io/?owner=1088"], + "rpc": [ + "https://andromeda.metis.io/?owner=1088", + "https://metis.drpc.org", + "wss://metis.drpc.org", + "https://metis-rpc.publicnode.com", + "wss://metis-rpc.publicnode.com" + ], "faucets": [], "nativeCurrency": { "name": "Metis", diff --git a/_data/chains/eip155-108801.json b/_data/chains/eip155-108801.json index 7ebac3ff6aff..668fad6ac050 100644 --- a/_data/chains/eip155-108801.json +++ b/_data/chains/eip155-108801.json @@ -1,7 +1,6 @@ { "name": "BROChain Mainnet", "chain": "BRO", - "network": "mainnet", "rpc": [ "https://rpc.brochain.org", "http://rpc.brochain.org", @@ -18,9 +17,11 @@ "shortName": "bro", "chainId": 108801, "networkId": 108801, - "explorers": [{ - "name": "BROChain Explorer", - "url": "https://explorer.brochain.org", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "BROChain Explorer", + "url": "https://explorer.brochain.org", + "standard": "EIP3091" + } + ] } 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-1089.json b/_data/chains/eip155-1089.json new file mode 100644 index 000000000000..fc3c3be76219 --- /dev/null +++ b/_data/chains/eip155-1089.json @@ -0,0 +1,34 @@ +{ + "name": "Humans.ai Mainnet", + "chain": "Humans", + "rpc": [ + "https://jsonrpc.humans.nodestake.top", + "https://humans-mainnet-evm.itrocket.net", + "https://humans-evm-rpc.staketab.org:443", + "https://evm.humans.stakepool.dev.br", + "https://mainnet-humans-evm.konsortech.xyz", + "https://evm-rpc.mainnet.humans.zone", + "https://json-rpc.humans.bh.rocks", + "https://evm-rpc.humans.huginn.tech" + ], + "faucets": [], + "nativeCurrency": { + "name": "HEART", + "symbol": "HEART", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://humans.ai", + "shortName": "humans", + "chainId": 1089, + "networkId": 1089, + "icon": "humans-dark", + "explorers": [ + { + "name": "explorer.guru", + "url": "https://humans.explorers.guru", + "icon": "humans", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-109.json b/_data/chains/eip155-109.json new file mode 100644 index 000000000000..38a81787e6d5 --- /dev/null +++ b/_data/chains/eip155-109.json @@ -0,0 +1,27 @@ +{ + "name": "Shibarium", + "chain": "Shibarium", + "icon": "shibarium", + "rpc": [ + "https://www.shibrpc.com", + "https://rpc.shibrpc.com", + "https://shib.nownodes.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BONE Shibarium", + "symbol": "BONE", + "decimals": 18 + }, + "infoURL": "https://shibariumecosystem.com", + "shortName": "shibariumecosystem", + "chainId": 109, + "networkId": 109, + "explorers": [ + { + "name": "shibariumscan", + "url": "https://www.shibariumscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-10904.json b/_data/chains/eip155-10904.json new file mode 100644 index 000000000000..0e81ef321b3c --- /dev/null +++ b/_data/chains/eip155-10904.json @@ -0,0 +1,18 @@ +{ + "name": "Ault Blockchain Testnet", + "chain": "AULT", + "icon": "ault", + "rpc": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Testnet AULT Token", + "symbol": "AULT", + "decimals": 18 + }, + "infoURL": "https://aultblockchain.com", + "shortName": "ault-testnet", + "chainId": 10904, + "networkId": 10904, + "explorers": [] +} 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-10946.json b/_data/chains/eip155-10946.json index e3311784ff6e..5fb2c8de20d7 100644 --- a/_data/chains/eip155-10946.json +++ b/_data/chains/eip155-10946.json @@ -1,7 +1,6 @@ { "name": "Quadrans Blockchain", "chain": "QDC", - "network": "mainnet", "icon": "quadrans", "rpc": [ "https://rpc.quadrans.io", @@ -18,10 +17,12 @@ "shortName": "quadrans", "chainId": 10946, "networkId": 10946, - "explorers": [{ - "name": "explorer", - "url": "https://explorer.quadrans.io", - "icon": "quadrans", - "standard": "EIP3091" - }] -} \ No newline at end of file + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.quadrans.io", + "icon": "quadrans", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-10947.json b/_data/chains/eip155-10947.json index 211a0e5780c6..60c5fad7c841 100644 --- a/_data/chains/eip155-10947.json +++ b/_data/chains/eip155-10947.json @@ -1,15 +1,9 @@ { "name": "Quadrans Blockchain Testnet", "chain": "tQDC", - "network": "testnet", "icon": "quadrans", - "rpc": [ - "https://rpctest.quadrans.io", - "https://rpctest2.quadrans.io" - ], - "faucets": [ - "https://faucetpage.quadrans.io" - ], + "rpc": ["https://rpctest.quadrans.io", "https://rpctest2.quadrans.io"], + "faucets": ["https://faucetpage.quadrans.io"], "nativeCurrency": { "name": "Quadrans Testnet Coin", "symbol": "tQDC", @@ -19,10 +13,13 @@ "shortName": "quadranstestnet", "chainId": 10947, "networkId": 10947, - "explorers": [{ - "name": "explorer", - "url": "https://explorer.testnet.quadrans.io", - "icon": "quadrans", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.testnet.quadrans.io", + "icon": "quadrans", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-1099.json b/_data/chains/eip155-1099.json new file mode 100644 index 000000000000..d0bf51a39447 --- /dev/null +++ b/_data/chains/eip155-1099.json @@ -0,0 +1,23 @@ +{ + "name": "MOAC mainnet", + "chain": "MOAC", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "MOAC", + "symbol": "mc", + "decimals": 18 + }, + "infoURL": "https://moac.io", + "shortName": "moac", + "chainId": 1099, + "networkId": 1099, + "slip44": 314, + "explorers": [ + { + "name": "moac explorer", + "url": "https://explorer.moac.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-11.json b/_data/chains/eip155-11.json index f4d10462b602..596c707214e1 100644 --- a/_data/chains/eip155-11.json +++ b/_data/chains/eip155-11.json @@ -1,9 +1,7 @@ { "name": "Metadium Mainnet", "chain": "META", - "rpc": [ - "https://api.metadium.com/prod" - ], + "rpc": ["https://api.metadium.com/prod"], "faucets": [], "nativeCurrency": { "name": "Metadium Mainnet Ether", diff --git a/_data/chains/eip155-110.json b/_data/chains/eip155-110.json index 7a4ea78bc409..d2ec8d983f8f 100644 --- a/_data/chains/eip155-110.json +++ b/_data/chains/eip155-110.json @@ -1,18 +1,16 @@ { - "name": "Proton Testnet", - "chain": "XPR", - "rpc": [ - "https://protontestnet.greymass.com/" - ], - "faucets": [ - ], - "nativeCurrency": { - "name": "Proton", - "symbol": "XPR", - "decimals": 4 - }, - "infoURL": "https://protonchain.com", - "shortName": "xpr", - "chainId": 110, - "networkId": 110 - } + "name": "Proton Testnet", + "chain": "XPR", + "rpc": ["https://protontestnet.greymass.com/"], + "faucets": [], + "nativeCurrency": { + "name": "Proton", + "symbol": "XPR", + "decimals": 4 + }, + "infoURL": "https://protonchain.com", + "shortName": "xpr", + "chainId": 110, + "networkId": 110, + "slip44": 1 +} diff --git a/_data/chains/eip155-1100.json b/_data/chains/eip155-1100.json new file mode 100644 index 000000000000..1255fad6e284 --- /dev/null +++ b/_data/chains/eip155-1100.json @@ -0,0 +1,27 @@ +{ + "name": "Dymension", + "chain": "Dymension", + "rpc": [ + "https://dymension-evm.blockpi.network/v1/rpc/public", + "https://dymension-evm-rpc.publicnode.com", + "wss://dymension-evm-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "DYM", + "symbol": "DYM", + "decimals": 18 + }, + "infoURL": "https://dymension.xyz", + "shortName": "dymension", + "icon": "dymension", + "chainId": 1100, + "networkId": 1100, + "explorers": [ + { + "name": "dym.fyi", + "url": "https://dym.fyi", + "standard": "EIP3091" + } + ] +} 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-110000.json b/_data/chains/eip155-110000.json index bc67aa103ddf..e5d1255954f7 100644 --- a/_data/chains/eip155-110000.json +++ b/_data/chains/eip155-110000.json @@ -1,11 +1,8 @@ { "name": "QuarkChain Devnet Root", "chain": "QuarkChain", - "rpc": [ - "http://jrpc.devnet.quarkchain.io:38391" - ], - "faucets": [ - ], + "rpc": ["http://jrpc.devnet.quarkchain.io:38391"], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", diff --git a/_data/chains/eip155-110001.json b/_data/chains/eip155-110001.json index 073e0974a4e6..c632b25588dc 100644 --- a/_data/chains/eip155-110001.json +++ b/_data/chains/eip155-110001.json @@ -5,8 +5,7 @@ "https://devnet-s0-ethapi.quarkchain.io", "http://eth-jrpc.devnet.quarkchain.io:39900" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-110000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/0", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/0", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-110002.json b/_data/chains/eip155-110002.json index ca07d5b0503b..cce8292eb5d1 100644 --- a/_data/chains/eip155-110002.json +++ b/_data/chains/eip155-110002.json @@ -5,8 +5,7 @@ "https://devnet-s1-ethapi.quarkchain.io", "http://eth-jrpc.devnet.quarkchain.io:39901" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-110000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/1", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/1", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-110003.json b/_data/chains/eip155-110003.json index aa5d4a3efeca..e55cb369da0a 100644 --- a/_data/chains/eip155-110003.json +++ b/_data/chains/eip155-110003.json @@ -5,8 +5,7 @@ "https://devnet-s2-ethapi.quarkchain.io", "http://eth-jrpc.devnet.quarkchain.io:39902" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-110000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/2", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/2", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-110004.json b/_data/chains/eip155-110004.json index 082c3247be24..9c544cd38426 100644 --- a/_data/chains/eip155-110004.json +++ b/_data/chains/eip155-110004.json @@ -5,8 +5,7 @@ "https://devnet-s3-ethapi.quarkchain.io", "http://eth-jrpc.devnet.quarkchain.io:39903" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-110000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/3", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/3", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-110005.json b/_data/chains/eip155-110005.json index 743eddf4a348..f74e89e9a771 100644 --- a/_data/chains/eip155-110005.json +++ b/_data/chains/eip155-110005.json @@ -5,8 +5,7 @@ "https://devnet-s4-ethapi.quarkchain.io", "http://eth-jrpc.devnet.quarkchain.io:39904" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-110000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/4", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/4", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-110006.json b/_data/chains/eip155-110006.json index b8f498f20417..8852bf5566fc 100644 --- a/_data/chains/eip155-110006.json +++ b/_data/chains/eip155-110006.json @@ -5,8 +5,7 @@ "https://devnet-s5-ethapi.quarkchain.io", "http://eth-jrpc.devnet.quarkchain.io:39905" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-110000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/5", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/5", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-110007.json b/_data/chains/eip155-110007.json index f5529888ab16..01caf0fc9cdf 100644 --- a/_data/chains/eip155-110007.json +++ b/_data/chains/eip155-110007.json @@ -5,8 +5,7 @@ "https://devnet-s6-ethapi.quarkchain.io", "http://eth-jrpc.devnet.quarkchain.io:39906" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-110000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/6", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/6", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-110008.json b/_data/chains/eip155-110008.json index 1f1b2671a83f..e9e81a3abd5e 100644 --- a/_data/chains/eip155-110008.json +++ b/_data/chains/eip155-110008.json @@ -5,8 +5,7 @@ "https://devnet-s7-ethapi.quarkchain.io", "http://eth-jrpc.devnet.quarkchain.io:39907" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "QKC", "symbol": "QKC", @@ -20,9 +19,11 @@ "chain": "eip155-110000", "type": "shard" }, - "explorers": [{ - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/7", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/7", + "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-1100789.json b/_data/chains/eip155-1100789.json new file mode 100644 index 000000000000..6293f0935a58 --- /dev/null +++ b/_data/chains/eip155-1100789.json @@ -0,0 +1,25 @@ +{ + "name": "Netmind Chain Testnet", + "title": "NetMind Chain Testnet", + "chain": "NetMind", + "rpc": ["https://testblock.protago-dev.com"], + "faucets": [], + "nativeCurrency": { + "name": "NMT", + "symbol": "NMT", + "decimals": 18 + }, + "infoURL": "https://netmind.ai", + "shortName": "nmtTest", + "chainId": 1100789, + "networkId": 1100789, + "icon": "netmind", + "explorers": [ + { + "name": "NetMind Testnet Explorer", + "url": "https://testbrower.protago-dev.com", + "icon": "netmind", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1101.json b/_data/chains/eip155-1101.json new file mode 100644 index 000000000000..f2541a2cb781 --- /dev/null +++ b/_data/chains/eip155-1101.json @@ -0,0 +1,34 @@ +{ + "name": "Polygon zkEVM", + "title": "Polygon zkEVM", + "chain": "Polygon", + "rpc": [ + "https://zkevm-rpc.com", + "https://polygon-zkevm.drpc.org", + "wss://polygon-zkevm.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/polygon-zkevm", + "shortName": "zkevm", + "chainId": 1101, + "networkId": 1101, + "icon": "zkevm", + "explorers": [ + { + "name": "blockscout", + "url": "https://zkevm.polygonscan.com", + "icon": "zkevm", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.zkevm-rpc.com" }] + } +} 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-1107.json b/_data/chains/eip155-1107.json new file mode 100644 index 000000000000..17a040693dfa --- /dev/null +++ b/_data/chains/eip155-1107.json @@ -0,0 +1,25 @@ +{ + "name": "BLXq Testnet", + "chain": "BLXQ", + "icon": "blxq", + "rpc": ["https://testnetq1.blx.org"], + "faucets": [], + "nativeCurrency": { + "name": "BLXQ", + "symbol": "BLXQ", + "decimals": 18 + }, + "infoURL": "https://blx.org", + "shortName": "tblxq", + "chainId": 1107, + "networkId": 1107, + "slip44": 1, + "explorers": [ + { + "name": "BLXq Explorer", + "url": "https://explorer.blx.org", + "icon": "blxq", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1108.json b/_data/chains/eip155-1108.json new file mode 100644 index 000000000000..7dd19efdeb40 --- /dev/null +++ b/_data/chains/eip155-1108.json @@ -0,0 +1,24 @@ +{ + "name": "BLXq Mainnet", + "chain": "BLXQ", + "icon": "blxq", + "rpc": ["https://mainnet.blxq.org"], + "faucets": [], + "nativeCurrency": { + "name": "BLXQ", + "symbol": "BLXQ", + "decimals": 18 + }, + "infoURL": "https://blx.org", + "shortName": "blxq", + "chainId": 1108, + "networkId": 1108, + "explorers": [ + { + "name": "BLXq Explorer", + "url": "https://explorer.blxq.org", + "icon": "blxq", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-111.json b/_data/chains/eip155-111.json index c5e013847f57..63612e32067b 100644 --- a/_data/chains/eip155-111.json +++ b/_data/chains/eip155-111.json @@ -1,12 +1,8 @@ { "name": "EtherLite Chain", "chain": "ETL", - "rpc": [ - "https://rpc.etherlite.org" - ], - "faucets": [ - "https://etherlite.org/faucets" - ], + "rpc": ["https://rpc.etherlite.org"], + "faucets": ["https://etherlite.org/faucets"], "nativeCurrency": { "name": "EtherLite", "symbol": "ETL", 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-111000.json b/_data/chains/eip155-111000.json new file mode 100644 index 000000000000..05d5dbfb4173 --- /dev/null +++ b/_data/chains/eip155-111000.json @@ -0,0 +1,25 @@ +{ + "name": "Siberium Test Network", + "chain": "SBR", + "rpc": ["https://rpc.test.siberium.net"], + "faucets": [], + "nativeCurrency": { + "name": "TestSIBR", + "symbol": "SIBR", + "decimals": 18 + }, + "infoURL": "https://siberium.net", + "shortName": "testsbr", + "chainId": 111000, + "networkId": 111000, + "slip44": 1, + "icon": "siberium", + "explorers": [ + { + "name": "Siberium Testnet Explorer - blockscout", + "url": "https://explorer.test.siberium.net", + "icon": "siberium", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1111.json b/_data/chains/eip155-1111.json new file mode 100644 index 000000000000..702ce65254c1 --- /dev/null +++ b/_data/chains/eip155-1111.json @@ -0,0 +1,22 @@ +{ + "name": "WEMIX3.0 Mainnet", + "chain": "WEMIX", + "rpc": ["https://api.wemix.com", "wss://ws.wemix.com"], + "faucets": [], + "nativeCurrency": { + "name": "WEMIX", + "symbol": "WEMIX", + "decimals": 18 + }, + "infoURL": "https://wemix.com", + "shortName": "wemix", + "chainId": 1111, + "networkId": 1111, + "explorers": [ + { + "name": "WEMIX Block Explorer", + "url": "https://explorer.wemix.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-11110.json b/_data/chains/eip155-11110.json new file mode 100644 index 000000000000..ae536dab223c --- /dev/null +++ b/_data/chains/eip155-11110.json @@ -0,0 +1,30 @@ +{ + "name": "Astra", + "chain": "Astra", + "rpc": ["https://rpc.astranaut.io", "https://rpc1.astranaut.io"], + "faucets": [], + "nativeCurrency": { + "name": "Astra", + "symbol": "ASA", + "decimals": 18 + }, + "infoURL": "https://astranaut.io", + "shortName": "astra", + "chainId": 11110, + "networkId": 11110, + "icon": "astra", + "explorers": [ + { + "name": "Astra EVM Explorer (Blockscout)", + "url": "https://explorer.astranaut.io", + "standard": "none", + "icon": "astra" + }, + { + "name": "Astra PingPub Explorer", + "url": "https://ping.astranaut.io/astra", + "standard": "none", + "icon": "astra" + } + ] +} diff --git a/_data/chains/eip155-11111.json b/_data/chains/eip155-11111.json index 276dbdeca31b..98aa682dba53 100644 --- a/_data/chains/eip155-11111.json +++ b/_data/chains/eip155-11111.json @@ -2,25 +2,21 @@ "name": "WAGMI", "chain": "WAGMI", "icon": "wagmi", - "rpc": [ - "https://subnets.avax.network/wagmi/wagmi-chain-testnet/rpc" - ], - "faucets": [ - "https://faucet.trywagmi.xyz" - ], + "rpc": ["https://subnets.avax.network/wagmi/wagmi-chain-testnet/rpc"], + "faucets": ["https://faucet.avax.network/?subnet=wagmi"], "nativeCurrency": { "name": "WAGMI", "symbol": "WGM", "decimals": 18 }, - "infoURL": "https://trywagmi.xyz", + "infoURL": "https://subnets-test.avax.network/wagmi/details", "shortName": "WAGMI", "chainId": 11111, "networkId": 11111, "explorers": [ { - "name": "WAGMI Explorer", - "url": "https://subnets.avax.network/wagmi/wagmi-chain-testnet/explorer", + "name": "Avalanche Subnet Explorer", + "url": "https://subnets-test.avax.network/wagmi", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-111111.json b/_data/chains/eip155-111111.json new file mode 100644 index 000000000000..c40055b0fdb4 --- /dev/null +++ b/_data/chains/eip155-111111.json @@ -0,0 +1,30 @@ +{ + "name": "Siberium Network", + "chain": "SBR", + "rpc": ["https://rpc.main.siberium.net", "https://rpc.main.siberium.net.ru"], + "faucets": [], + "nativeCurrency": { + "name": "Siberium", + "symbol": "SIBR", + "decimals": 18 + }, + "infoURL": "https://siberium.net", + "shortName": "sbr", + "chainId": 111111, + "networkId": 111111, + "icon": "siberium", + "explorers": [ + { + "name": "Siberium Mainnet Explorer - blockscout - 1", + "url": "https://explorer.main.siberium.net", + "icon": "siberium", + "standard": "EIP3091" + }, + { + "name": "Siberium Mainnet Explorer - blockscout - 2", + "url": "https://explorer.main.siberium.net.ru", + "icon": "siberium", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-11115.json b/_data/chains/eip155-11115.json new file mode 100644 index 000000000000..dd3a3497f12a --- /dev/null +++ b/_data/chains/eip155-11115.json @@ -0,0 +1,31 @@ +{ + "name": "Astra Testnet", + "chain": "Astra", + "rpc": ["https://rpc.astranaut.dev"], + "faucets": ["https://faucet.astranaut.dev"], + "nativeCurrency": { + "name": "test-Astra", + "symbol": "tASA", + "decimals": 18 + }, + "infoURL": "https://astranaut.io", + "shortName": "astra-testnet", + "chainId": 11115, + "networkId": 11115, + "slip44": 1, + "icon": "astra", + "explorers": [ + { + "name": "Astra EVM Explorer", + "url": "https://explorer.astranaut.dev", + "standard": "EIP3091", + "icon": "astra" + }, + { + "name": "Astra PingPub Explorer", + "url": "https://ping.astranaut.dev/astra", + "standard": "none", + "icon": "astra" + } + ] +} diff --git a/_data/chains/eip155-111188.json b/_data/chains/eip155-111188.json new file mode 100644 index 000000000000..d63ceeee028c --- /dev/null +++ b/_data/chains/eip155-111188.json @@ -0,0 +1,40 @@ +{ + "name": "re.al", + "title": "re.al Real-World Assets network", + "chain": "re.al", + "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", + "decimals": 18 + }, + "infoURL": "https://re.al", + "faucets": [], + "shortName": "re-al", + "chainId": 111188, + "networkId": 111188, + "slip44": 60, + "icon": "real", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.re.al", + "icon": "real", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { "url": "https://re.al/bridge" }, + { "url": "https://bridge.gelato.network/bridge/real" } + ] + } +} diff --git a/_data/chains/eip155-11119.json b/_data/chains/eip155-11119.json new file mode 100644 index 000000000000..5e84c93a8602 --- /dev/null +++ b/_data/chains/eip155-11119.json @@ -0,0 +1,22 @@ +{ + "name": "HashBit Mainnet", + "chain": "HBIT", + "rpc": ["https://mainnet-rpc.hashbit.org", "https://rpc.hashbit.org"], + "faucets": [], + "nativeCurrency": { + "name": "HashBit Native Token", + "symbol": "HBIT", + "decimals": 18 + }, + "infoURL": "https://hashbit.org", + "shortName": "hbit", + "chainId": 11119, + "networkId": 11119, + "explorers": [ + { + "name": "hashbitscan", + "url": "https://explorer.hashbit.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1112.json b/_data/chains/eip155-1112.json new file mode 100644 index 000000000000..2fc5297cdfbc --- /dev/null +++ b/_data/chains/eip155-1112.json @@ -0,0 +1,23 @@ +{ + "name": "WEMIX3.0 Testnet", + "chain": "TWEMIX", + "rpc": ["https://api.test.wemix.com", "wss://ws.test.wemix.com"], + "faucets": ["https://wallet.test.wemix.com/faucet"], + "nativeCurrency": { + "name": "TestnetWEMIX", + "symbol": "tWEMIX", + "decimals": 18 + }, + "infoURL": "https://wemix.com", + "shortName": "twemix", + "chainId": 1112, + "networkId": 1112, + "slip44": 1, + "explorers": [ + { + "name": "WEMIX Testnet Microscope", + "url": "https://microscope.test.wemix.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-111222333444.json b/_data/chains/eip155-111222333444.json new file mode 100644 index 000000000000..556de6f22f4e --- /dev/null +++ b/_data/chains/eip155-111222333444.json @@ -0,0 +1,28 @@ +{ + "name": "Alphabet Mainnet", + "chain": "Alphabet Network", + "icon": "alphabetnetwork", + "rpc": [ + "https://londonpublic.alphabetnetwork.org", + "wss://londonpublic.alphabetnetwork.org/ws/", + "https://main-rpc.com", + "wss://main-rpc.com/ws/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ALT", + "symbol": "ALT", + "decimals": 18 + }, + "infoURL": "https://alphabetnetwork.org", + "shortName": "alphabet", + "chainId": 111222333444, + "networkId": 111222333444, + "explorers": [ + { + "name": "Alphabet Explorer", + "url": "https://scan.alphabetnetwork.org", + "standard": "EIP3091" + } + ] +} 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-1113.json b/_data/chains/eip155-1113.json new file mode 100644 index 000000000000..258d843139af --- /dev/null +++ b/_data/chains/eip155-1113.json @@ -0,0 +1,24 @@ +{ + "name": "B2 Hub Testnet", + "chain": "BSQ", + "rpc": ["https://testnet-hub-rpc.bsquared.network"], + "faucets": [], + "nativeCurrency": { + "name": "BSquared Token", + "symbol": "B2", + "decimals": 18 + }, + "infoURL": "https://www.bsquared.network", + "shortName": "B2Hub-testnet", + "chainId": 1113, + "networkId": 1113, + "icon": "bsquare", + "explorers": [ + { + "name": "B2 Hub Habitat Testnet Explorer", + "url": "https://testnet-hub-explorer.bsquared.network", + "icon": "bsquare", + "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..739b470531b9 --- /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", + "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 new file mode 100644 index 000000000000..3139d9571c96 --- /dev/null +++ b/_data/chains/eip155-1115.json @@ -0,0 +1,26 @@ +{ + "name": "Core Blockchain Testnet", + "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", + "symbol": "tCORE", + "decimals": 18 + }, + "infoURL": "https://www.coredao.org", + "shortName": "tcore", + "chainId": 1115, + "networkId": 1115, + "slip44": 1, + "explorers": [ + { + "name": "Core Scan Testnet", + "url": "https://scan.test.btcs.network", + "icon": "core", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-11155111.json b/_data/chains/eip155-11155111.json index 35e6e361746d..103459468d7d 100644 --- a/_data/chains/eip155-11155111.json +++ b/_data/chains/eip155-11155111.json @@ -1,27 +1,47 @@ { - "name": "Sepolia", + "name": "Ethereum Sepolia", "title": "Ethereum Testnet Sepolia", "chain": "ETH", - "network": "testnet", "rpc": [ + "https://rpc.sepolia.org", + "https://rpc2.sepolia.org", + "https://rpc.sepolia.ethpandaops.io", + "https://sepolia.infura.io/v3/${INFURA_API_KEY}", + "wss://sepolia.infura.io/v3/${INFURA_API_KEY}", + "https://sepolia.gateway.tenderly.co", + "wss://sepolia.gateway.tenderly.co", + "https://ethereum-sepolia-rpc.publicnode.com", + "wss://ethereum-sepolia-rpc.publicnode.com", + "https://sepolia.drpc.org", + "wss://sepolia.drpc.org", + "https://eth-sepolia.g.alchemy.com/v2/WddzdzI2o9S3COdT73d5w6AIogbKq4X-" ], - "faucets": [ - "http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}" - ], + "faucets": ["http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}"], "nativeCurrency": { "name": "Sepolia Ether", - "symbol": "SEP", + "symbol": "ETH", "decimals": 18 }, "infoURL": "https://sepolia.otterscan.io", "shortName": "sep", "chainId": 11155111, "networkId": 11155111, + "slip44": 1, "explorers": [ + { + "name": "etherscan-sepolia", + "url": "https://sepolia.etherscan.io", + "standard": "EIP3091" + }, { "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 new file mode 100644 index 000000000000..195c73c1effb --- /dev/null +++ b/_data/chains/eip155-11155420.json @@ -0,0 +1,33 @@ +{ + "name": "OP Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.optimism.io", + "https://optimism-sepolia.drpc.org", + "wss://optimism-sepolia.drpc.org" + ], + "faucets": ["https://app.optimism.io/faucet"], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://optimism.io", + "shortName": "opsep", + "chainId": 11155420, + "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", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-111557560.json b/_data/chains/eip155-111557560.json new file mode 100644 index 000000000000..96cdaf0a762c --- /dev/null +++ b/_data/chains/eip155-111557560.json @@ -0,0 +1,33 @@ +{ + "name": "Cyber Testnet", + "chain": "Cyber", + "rpc": [ + "https://cyber-testnet.alt.technology/", + "wss://cyber-testnet.alt.technology/ws", + "https://rpc.testnet.cyber.co/", + "wss://rpc.testnet.cyber.co/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "cyber", + "infoURL": "https://cyber.co/", + "shortName": "cysep", + "chainId": 111557560, + "networkId": 111557560, + "explorers": [ + { + "name": "Cyber Testnet Explorer", + "url": "https://testnet.cyberscan.co", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://cyber-testnet.testnets.rollbridge.app/" }] + } +} 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 new file mode 100644 index 000000000000..190c3e7fd926 --- /dev/null +++ b/_data/chains/eip155-1116.json @@ -0,0 +1,30 @@ +{ + "name": "Core Blockchain Mainnet", + "chain": "Core", + "icon": "core", + "rpc": [ + "https://rpc.coredao.org/", + "https://rpc-core.icecreamswap.com", + "https://core.drpc.org", + "wss://core.drpc.org" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Core Blockchain Native Token", + "symbol": "CORE", + "decimals": 18 + }, + "infoURL": "https://www.coredao.org", + "shortName": "core", + "chainId": 1116, + "networkId": 1116, + "explorers": [ + { + "name": "Core Scan", + "url": "https://scan.coredao.org", + "icon": "core", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-11166111.json b/_data/chains/eip155-11166111.json new file mode 100644 index 000000000000..52bf5cf36224 --- /dev/null +++ b/_data/chains/eip155-11166111.json @@ -0,0 +1,24 @@ +{ + "name": "R0AR Testnet", + "chain": "R0AR Testnet", + "icon": "r0ar", + "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", + "icon": "r0ar", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1117.json b/_data/chains/eip155-1117.json new file mode 100644 index 000000000000..a19f48c82255 --- /dev/null +++ b/_data/chains/eip155-1117.json @@ -0,0 +1,23 @@ +{ + "name": "Dogcoin Mainnet", + "chain": "DOGS", + "icon": "dogs", + "rpc": ["https://mainnet-rpc.dogcoin.me"], + "faucets": ["https://faucet.dogcoin.network"], + "nativeCurrency": { + "name": "Dogcoin", + "symbol": "DOGS", + "decimals": 18 + }, + "infoURL": "https://dogcoin.network", + "shortName": "DOGSm", + "chainId": 1117, + "networkId": 1117, + "explorers": [ + { + "name": "Dogcoin", + "url": "https://explorer.dogcoin.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-112.json b/_data/chains/eip155-112.json new file mode 100644 index 000000000000..f8ca1c7cd177 --- /dev/null +++ b/_data/chains/eip155-112.json @@ -0,0 +1,24 @@ +{ + "name": "Coinbit Mainnet", + "chain": "Coinbit", + "rpc": ["https://coinbit-rpc-mainnet.chain.sbcrypto.app"], + "faucets": [], + "nativeCurrency": { + "name": "Gas IDR", + "symbol": "GIDR", + "decimals": 18 + }, + "infoURL": "https://crypto.stockbit.com/", + "shortName": "coinbit", + "chainId": 112, + "networkId": 112, + "icon": "coinbit", + "explorers": [ + { + "name": "blockscout", + "url": "https://coinbit-explorer.chain.sbcrypto.app", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1122.json b/_data/chains/eip155-1122.json new file mode 100644 index 000000000000..bf62092e955d --- /dev/null +++ b/_data/chains/eip155-1122.json @@ -0,0 +1,29 @@ +{ + "name": "LuxePorts", + "chain": "LXP", + "rpc": [ + "https://rpc.luxeports.com", + "https://erpc.luxeports.com", + "wss://rpc.luxeports.com/ws", + "wss://erpc.luxeports.com/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "LuxePorts", + "symbol": "LXP", + "decimals": 18 + }, + "infoURL": "luxeports.com", + "shortName": "lxp", + "chainId": 1122, + "networkId": 1122, + "icon": "lxp", + "explorers": [ + { + "name": "lxpscan", + "url": "https://lxpscan.com", + "icon": "lxpscan", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-11221.json b/_data/chains/eip155-11221.json new file mode 100644 index 000000000000..88df91b2941f --- /dev/null +++ b/_data/chains/eip155-11221.json @@ -0,0 +1,24 @@ +{ + "name": "Shine Chain", + "chain": "SC20", + "rpc": ["https://rpc.shinescan.io"], + "faucets": [], + "nativeCurrency": { + "name": "Shine", + "symbol": "SC20", + "decimals": 18 + }, + "infoURL": "https://shinechain.tech", + "shortName": "SC20", + "chainId": 11221, + "networkId": 11221, + "icon": "shine", + "explorers": [ + { + "name": "shinescan", + "url": "https://shinescan.io", + "icon": "shine", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1122334455.json b/_data/chains/eip155-1122334455.json index 2339b332faf7..6a729c89bfe0 100644 --- a/_data/chains/eip155-1122334455.json +++ b/_data/chains/eip155-1122334455.json @@ -1,10 +1,7 @@ { "name": "IPOS Network", "chain": "IPOS", - "rpc": [ - "https://rpc.iposlab.com", - "https://rpc2.iposlab.com" - ], + "rpc": ["https://rpc.iposlab.com", "https://rpc2.iposlab.com"], "faucets": [], "nativeCurrency": { "name": "IPOS Network Ether", @@ -15,4 +12,4 @@ "shortName": "ipos", "chainId": 1122334455, "networkId": 1122334455 -} \ No newline at end of file +} diff --git a/_data/chains/eip155-11227.json b/_data/chains/eip155-11227.json new file mode 100644 index 000000000000..03af7b2c85e6 --- /dev/null +++ b/_data/chains/eip155-11227.json @@ -0,0 +1,27 @@ +{ + "name": "Jiritsu Testnet Subnet", + "chain": "JIRITSUTES", + "rpc": ["https://subnets.avax.network/jiritsutes/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "JIRI", + "symbol": "TZW", + "decimals": 18 + }, + "infoURL": "https://jiritsu.network", + "shortName": "jiritsutes", + "chainId": 11227, + "networkId": 11227, + "explorers": [ + { + "name": "JIRITSUTES Explorer", + "url": "https://subnets-test.avax.network/jiritsutes", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1123.json b/_data/chains/eip155-1123.json new file mode 100644 index 000000000000..4eff7aa27497 --- /dev/null +++ b/_data/chains/eip155-1123.json @@ -0,0 +1,33 @@ +{ + "name": "B2 Testnet", + "title": "B2 Testnet", + "chain": "Habitat", + "rpc": [ + "https://b2-testnet.alt.technology", + "https://rpc.ankr.com/b2_testnet", + "https://testnet-rpc.bsquared.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://www.bsquared.network", + "shortName": "B2-testnet", + "chainId": 1123, + "networkId": 1123, + "icon": "bsquare", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1113" + } +} diff --git a/_data/chains/eip155-11235.json b/_data/chains/eip155-11235.json new file mode 100644 index 000000000000..6ecf81a05ba8 --- /dev/null +++ b/_data/chains/eip155-11235.json @@ -0,0 +1,28 @@ +{ + "name": "Haqq Network", + "chain": "Haqq", + "rpc": [ + "https://rpc.eth.haqq.network", + "https://haqq-evm-rpc.publicnode.com", + "wss://haqq-evm-rpc.publicnode.com", + "https://haqq.drpc.org", + "wss://haqq.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Islamic Coin", + "symbol": "ISLM", + "decimals": 18 + }, + "infoURL": "https://islamiccoin.net", + "shortName": "ISLM", + "chainId": 11235, + "networkId": 11235, + "explorers": [ + { + "name": "Mainnet HAQQ Explorer", + "url": "https://explorer.haqq.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-112358.json b/_data/chains/eip155-112358.json new file mode 100644 index 000000000000..5d4b859a25b5 --- /dev/null +++ b/_data/chains/eip155-112358.json @@ -0,0 +1,24 @@ +{ + "name": "Metachain One Mainnet", + "chain": "METAO", + "icon": "metao", + "rpc": ["https://rpc.metachain.one", "https://rpc2.metachain.one"], + "faucets": [], + "nativeCurrency": { + "name": "Metao", + "symbol": "METAO", + "decimals": 18 + }, + "infoURL": "https://metachain.one", + "shortName": "metao", + "chainId": 112358, + "networkId": 112358, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.metachain.one", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} 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-1127469.json b/_data/chains/eip155-1127469.json new file mode 100644 index 000000000000..e5030da610e9 --- /dev/null +++ b/_data/chains/eip155-1127469.json @@ -0,0 +1,27 @@ +{ + "name": "Tiltyard Subnet", + "chain": "TILTYARD", + "rpc": ["https://subnets.avax.network/tiltyard/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Tiltyard Token", + "symbol": "TILTG", + "decimals": 18 + }, + "infoURL": "", + "shortName": "tiltyard", + "chainId": 1127469, + "networkId": 1127469, + "explorers": [ + { + "name": "TILTYARD Explorer", + "url": "http://testnet-explorer.tiltyard.gg", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-11297108099.json b/_data/chains/eip155-11297108099.json index 2468bc0bbe8c..1166d32d3660 100644 --- a/_data/chains/eip155-11297108099.json +++ b/_data/chains/eip155-11297108099.json @@ -3,7 +3,8 @@ "chain": "Palm", "icon": "palm", "rpc": [ - "https://palm-testnet.infura.io/v3/${INFURA_API_KEY}" + "https://palm-testnet.infura.io/v3/${INFURA_API_KEY}", + "https://palm-testnet.public.blastapi.io" ], "faucets": [], "nativeCurrency": { @@ -11,14 +12,21 @@ "symbol": "PALM", "decimals": 18 }, - "infoURL": "https://palm.io", + "infoURL": "https://palm.network", "shortName": "tpalm", "chainId": 11297108099, "networkId": 11297108099, - "explorers": [{ - "name": "Palm Testnet Explorer", - "url": "https://explorer.palm-uat.xyz", - "standard": "EIP3091", - "icon": "palm" - }] + "slip44": 1, + "explorers": [ + { + "name": "Chainlens", + "url": "https://testnet.palm.chainlens.com", + "standard": "EIP3091" + }, + { + "name": "Dora", + "url": "https://www.ondora.xyz/network/palm-testnet", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-11297108109.json b/_data/chains/eip155-11297108109.json index e1530f5367ef..d5f01f084200 100644 --- a/_data/chains/eip155-11297108109.json +++ b/_data/chains/eip155-11297108109.json @@ -3,7 +3,8 @@ "chain": "Palm", "icon": "palm", "rpc": [ - "https://palm-mainnet.infura.io/v3/${INFURA_API_KEY}" + "https://palm-mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://palm-mainnet.public.blastapi.io" ], "faucets": [], "nativeCurrency": { @@ -11,14 +12,20 @@ "symbol": "PALM", "decimals": 18 }, - "infoURL": "https://palm.io", + "infoURL": "https://palm.network", "shortName": "palm", "chainId": 11297108109, "networkId": 11297108109, - "explorers": [{ - "name": "Palm Explorer", - "url": "https://explorer.palm.io", - "standard": "EIP3091", - "icon": "palm" - }] + "explorers": [ + { + "name": "Chainlens", + "url": "https://palm.chainlens.com", + "standard": "EIP3091" + }, + { + "name": "Dora", + "url": "https://www.ondora.xyz/network/palm", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-113.json b/_data/chains/eip155-113.json new file mode 100644 index 000000000000..4defccaea6d3 --- /dev/null +++ b/_data/chains/eip155-113.json @@ -0,0 +1,28 @@ +{ + "name": "Dehvo", + "chain": "Dehvo", + "rpc": [ + "https://connect.dehvo.com", + "https://rpc.dehvo.com", + "https://rpc1.dehvo.com", + "https://rpc2.dehvo.com" + ], + "faucets": ["https://buy.dehvo.com"], + "nativeCurrency": { + "name": "Dehvo", + "symbol": "Deh", + "decimals": 18 + }, + "infoURL": "https://dehvo.com", + "shortName": "deh", + "chainId": 113, + "networkId": 113, + "slip44": 714, + "explorers": [ + { + "name": "Dehvo Explorer", + "url": "https://explorer.dehvo.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1130.json b/_data/chains/eip155-1130.json new file mode 100644 index 000000000000..f27a78a18b11 --- /dev/null +++ b/_data/chains/eip155-1130.json @@ -0,0 +1,19 @@ +{ + "name": "DeFiChain EVM Network Mainnet", + "chain": "defichain-evm", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "DeFiChain", + "symbol": "DFI", + "decimals": 18 + }, + "infoURL": "https://meta.defichain.com/", + "shortName": "DFI", + "chainId": 1130, + "networkId": 1130, + "slip44": 1130, + "icon": "defichain-network", + "explorers": [] +} diff --git a/_data/chains/eip155-1131.json b/_data/chains/eip155-1131.json new file mode 100644 index 000000000000..fa13bec33896 --- /dev/null +++ b/_data/chains/eip155-1131.json @@ -0,0 +1,19 @@ +{ + "name": "DeFiChain EVM Network Testnet", + "chain": "defichain-evm-testnet", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "DeFiChain", + "symbol": "DFI", + "decimals": 18 + }, + "infoURL": "https://meta.defichain.com/", + "shortName": "DFI-T", + "chainId": 1131, + "networkId": 1131, + "slip44": 1, + "icon": "defichain-network", + "explorers": [] +} diff --git a/_data/chains/eip155-1133.json b/_data/chains/eip155-1133.json new file mode 100644 index 000000000000..2b4113bfeb2e --- /dev/null +++ b/_data/chains/eip155-1133.json @@ -0,0 +1,26 @@ +{ + "name": "DeFiMetaChain Changi Testnet", + "icon": "defichain-network", + "chain": "DFI", + "rpc": [ + "https://dmc.mydefichain.com/changi", + "https://testnet-dmc.mydefichain.com:20551" + ], + "faucets": ["http://tc04.mydefichain.com/faucet"], + "nativeCurrency": { + "name": "DeFiChain Token", + "symbol": "DFI", + "decimals": 18 + }, + "infoURL": "https://meta.defichain.com", + "shortName": "changi", + "chainId": 1133, + "networkId": 1133, + "explorers": [ + { + "name": "MetaScan", + "url": "https://meta.defiscan.live", + "standard": "EIP3091" + } + ] +} 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 new file mode 100644 index 000000000000..e1b9f18cb26a --- /dev/null +++ b/_data/chains/eip155-1135.json @@ -0,0 +1,25 @@ +{ + "name": "Lisk", + "chain": "ETH", + "icon": "lisk", + "rpc": ["https://rpc.api.lisk.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lisk.com", + "shortName": "lisk", + "chainId": 1135, + "networkId": 1135, + "slip44": 134, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.lisk.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1138.json b/_data/chains/eip155-1138.json new file mode 100644 index 000000000000..5f40c18d4653 --- /dev/null +++ b/_data/chains/eip155-1138.json @@ -0,0 +1,24 @@ +{ + "name": "AmStar Testnet", + "chain": "AmStar", + "icon": "amstar", + "rpc": ["https://testnet-rpc.amstarscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "SINSO", + "symbol": "SINSO", + "decimals": 18 + }, + "infoURL": "https://sinso.io", + "shortName": "ASARt", + "chainId": 1138, + "networkId": 1138, + "slip44": 1, + "explorers": [ + { + "name": "amstarscan-testnet", + "url": "https://testnet.amstarscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1139.json b/_data/chains/eip155-1139.json index 29a7711812c4..49ae9d83e46e 100644 --- a/_data/chains/eip155-1139.json +++ b/_data/chains/eip155-1139.json @@ -1,18 +1,18 @@ { + "name": "MathChain", + "chain": "MATH", + "rpc": [ + "https://mathchain-asia.maiziqianbao.net/rpc", + "https://mathchain-us.maiziqianbao.net/rpc" + ], + "faucets": [], + "nativeCurrency": { "name": "MathChain", - "chain": "MATH", - "rpc": [ - "https://mathchain-asia.maiziqianbao.net/rpc", - "https://mathchain-us.maiziqianbao.net/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "MathChain", - "symbol": "MATH", - "decimals": 18 - }, - "infoURL": "https://mathchain.org", - "shortName": "MATH", - "chainId": 1139, - "networkId": 1139 - } + "symbol": "MATH", + "decimals": 18 + }, + "infoURL": "https://mathchain.org", + "shortName": "MATH", + "chainId": 1139, + "networkId": 1139 +} diff --git a/_data/chains/eip155-114.json b/_data/chains/eip155-114.json new file mode 100644 index 000000000000..be0d607cec21 --- /dev/null +++ b/_data/chains/eip155-114.json @@ -0,0 +1,38 @@ +{ + "name": "Flare Testnet Coston2", + "chain": "FLR", + "icon": "coston2", + "rpc": [ + "https://coston2-api.flare.network/ext/C/rpc", + "https://flare-testnet-coston2.rpc.thirdweb.com", + "https://flaretestnet-bundler.etherspot.io", + "https://01-gravelines-005-01.rpc.tatum.io/ext/bc/C/rpc", + "https://02-chicago-005-02.rpc.tatum.io/ext/bc/C/rpc", + "https://02-tokyo-005-03.rpc.tatum.io/ext/bc/C/rpc", + "https://coston2.enosys.global/ext/C/rpc" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://faucet.flare.network"], + "nativeCurrency": { + "name": "Coston2 Flare", + "symbol": "C2FLR", + "decimals": 18 + }, + "infoURL": "https://flare.network", + "shortName": "c2flr", + "chainId": 114, + "networkId": 114, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://coston2-explorer.flare.network", + "standard": "EIP3091" + }, + { + "name": "Routescan", + "url": "https://coston2.testnet.flarescan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1140.json b/_data/chains/eip155-1140.json index 1d3ebd38894b..b9a68cb28eff 100644 --- a/_data/chains/eip155-1140.json +++ b/_data/chains/eip155-1140.json @@ -1,19 +1,16 @@ { - "name": "MathChain Testnet", - "chain": "MATH", - "rpc": [ - "https://galois-hk.maiziqianbao.net/rpc" - ], - "faucets": [ - "https://scan.boka.network/#/Galois/faucet" - ], - "nativeCurrency": { - "name": "MathChain", - "symbol": "MATH", - "decimals": 18 - }, - "infoURL": "https://mathchain.org", - "shortName": "tMATH", - "chainId": 1140, - "networkId": 1140 - } \ No newline at end of file + "name": "MathChain Testnet", + "chain": "MATH", + "rpc": ["https://galois-hk.maiziqianbao.net/rpc"], + "faucets": ["https://scan.boka.network/#/Galois/faucet"], + "nativeCurrency": { + "name": "MathChain", + "symbol": "MATH", + "decimals": 18 + }, + "infoURL": "https://mathchain.org", + "shortName": "tMATH", + "chainId": 1140, + "networkId": 1140, + "slip44": 1 +} diff --git a/_data/chains/eip155-11437.json b/_data/chains/eip155-11437.json index 0dcbf80f11e1..aca48b17f14e 100644 --- a/_data/chains/eip155-11437.json +++ b/_data/chains/eip155-11437.json @@ -2,9 +2,7 @@ "name": "Shyft Testnet", "chain": "SHYFTT", "icon": "shyft", - "rpc": [ - "https://rpc.testnet.shyft.network/" - ], + "rpc": [], "faucets": [], "nativeCurrency": { "name": "Shyft Test Token", @@ -15,9 +13,12 @@ "shortName": "shyftt", "chainId": 11437, "networkId": 11437, - "explorers": [{ - "name": "Shyft Testnet BX", - "url": "https://bx.testnet.shyft.network", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "Shyft Testnet BX", + "url": "https://bx.testnet.shyft.network", + "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-1146703430.json b/_data/chains/eip155-1146703430.json new file mode 100644 index 000000000000..4b1d5d8cd989 --- /dev/null +++ b/_data/chains/eip155-1146703430.json @@ -0,0 +1,25 @@ +{ + "name": "CyberdeckNet", + "chain": "cyberdeck", + "rpc": ["http://cybeth1.cyberdeck.eu:8545"], + "faucets": [], + "nativeCurrency": { + "name": "Cyb", + "symbol": "CYB", + "decimals": 18 + }, + "infoURL": "https://cyberdeck.eu", + "shortName": "cyb", + "chainId": 1146703430, + "networkId": 1146703430, + "icon": "cyberdeck", + "status": "active", + "explorers": [ + { + "name": "CybEthExplorer", + "url": "http://cybeth1.cyberdeck.eu:8000", + "icon": "cyberdeck", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1147.json b/_data/chains/eip155-1147.json new file mode 100644 index 000000000000..317a7897f719 --- /dev/null +++ b/_data/chains/eip155-1147.json @@ -0,0 +1,23 @@ +{ + "name": "Flag Testnet", + "chain": "Flag", + "icon": "flag", + "rpc": ["https://testnet-rpc.flagscan.xyz"], + "faucets": ["https://faucet.flagscan.xyz"], + "nativeCurrency": { + "name": "Flag Testnet", + "symbol": "FLAG", + "decimals": 18 + }, + "infoURL": "https://testnet-explorer.flagscan.xyz", + "shortName": "tFLAG", + "chainId": 1147, + "networkId": 1147, + "explorers": [ + { + "name": "Flag Testnet Explorer", + "url": "https://testnet-explorer.flagscan.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1149.json b/_data/chains/eip155-1149.json new file mode 100644 index 000000000000..6aca302e30e9 --- /dev/null +++ b/_data/chains/eip155-1149.json @@ -0,0 +1,24 @@ +{ + "name": "Symplexia Smart Chain", + "chain": "Plexchain", + "rpc": ["https://plex-rpc.plexfinance.us"], + "faucets": [], + "nativeCurrency": { + "name": "Plex Native Token", + "symbol": "PLEX", + "decimals": 18 + }, + "infoURL": "https://plexfinance.us/", + "shortName": "Plexchain", + "chainId": 1149, + "networkId": 1149, + "icon": "plexchain", + "explorers": [ + { + "name": "Plexchain Explorer", + "url": "https://explorer.plexfinance.us", + "icon": "plexchain", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-115.json b/_data/chains/eip155-115.json new file mode 100644 index 000000000000..74ad1f08f23f --- /dev/null +++ b/_data/chains/eip155-115.json @@ -0,0 +1,19 @@ +{ + "name": "DeBank Testnet(Deprecated)", + "chain": "DeBank", + "rpc": [], + "faucets": [], + "icon": "debank", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "status": "deprecated", + "infoURL": "https://debank.com", + "shortName": "debank-testnet", + "chainId": 115, + "networkId": 115, + "slip44": 1, + "explorers": [] +} diff --git a/_data/chains/eip155-11501.json b/_data/chains/eip155-11501.json new file mode 100644 index 000000000000..e83e5f2aac0f --- /dev/null +++ b/_data/chains/eip155-11501.json @@ -0,0 +1,31 @@ +{ + "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://geb.network", + "shortName": "geb", + "chainId": 11501, + "networkId": 11501, + "icon": "geb", + "explorers": [ + { + "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-11503.json b/_data/chains/eip155-11503.json new file mode 100644 index 000000000000..30c5ee1eb883 --- /dev/null +++ b/_data/chains/eip155-11503.json @@ -0,0 +1,23 @@ +{ + "name": "BEVM Testnet", + "chain": "BEVM", + "rpc": ["https://testnet.bevm.io/"], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://bevm.io", + "shortName": "bevm-test", + "chainId": 11503, + "networkId": 11503, + "icon": "bevm", + "explorers": [ + { + "name": "bevm testnet scan", + "url": "https://scan-testnet.bevm.io", + "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-116.json b/_data/chains/eip155-116.json new file mode 100644 index 000000000000..26b8a270edc1 --- /dev/null +++ b/_data/chains/eip155-116.json @@ -0,0 +1,18 @@ +{ + "name": "DeBank Mainnet", + "chain": "DeBank", + "rpc": [], + "faucets": [], + "icon": "debank", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "status": "deprecated", + "infoURL": "https://debank.com", + "shortName": "debank-mainnet", + "chainId": 116, + "networkId": 116, + "explorers": [] +} diff --git a/_data/chains/eip155-11612.json b/_data/chains/eip155-11612.json new file mode 100644 index 000000000000..ff2fdb7198d7 --- /dev/null +++ b/_data/chains/eip155-11612.json @@ -0,0 +1,24 @@ +{ + "name": "Sardis Testnet", + "chain": "SRDX", + "icon": "sardisTestnet", + "rpc": ["https://testnet-rpc.sardisnetwork.com"], + "faucets": ["https://faucet.sardisnetwork.com"], + "nativeCurrency": { + "name": "Sardis", + "symbol": "SRDX", + "decimals": 18 + }, + "infoURL": "https://mysardis.com", + "shortName": "SRDXt", + "chainId": 11612, + "networkId": 11612, + "slip44": 1, + "explorers": [ + { + "name": "Sardis", + "url": "https://testnet.sardisnetwork.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-117.json b/_data/chains/eip155-117.json new file mode 100644 index 000000000000..f74c9c498f0f --- /dev/null +++ b/_data/chains/eip155-117.json @@ -0,0 +1,24 @@ +{ + "name": "Uptick Mainnet", + "chain": "Uptick", + "rpc": ["https://json-rpc.uptick.network"], + "faucets": [], + "nativeCurrency": { + "name": "Uptick", + "symbol": "UPTICK", + "decimals": 18 + }, + "infoURL": "https://www.uptick.network", + "shortName": "auptick", + "chainId": 117, + "networkId": 117, + "icon": "uptick", + "explorers": [ + { + "name": "Uptick Explorer", + "url": "https://evm-explorer.uptick.network", + "icon": "uptick", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1170.json b/_data/chains/eip155-1170.json new file mode 100644 index 000000000000..c7647625992a --- /dev/null +++ b/_data/chains/eip155-1170.json @@ -0,0 +1,25 @@ +{ + "name": "Origin Testnet", + "chain": "Origin", + "rpc": ["https://json-rpc.origin.uptick.network"], + "faucets": [], + "nativeCurrency": { + "name": "Origin", + "symbol": "UOC", + "decimals": 18 + }, + "infoURL": "https://www.uptick.network", + "shortName": "auoc", + "chainId": 1170, + "networkId": 1170, + "slip44": 1, + "icon": "origin", + "explorers": [ + { + "name": "Origin Explorer", + "url": "https://evm-explorer.origin.uptick.network", + "icon": "origin", + "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-1177.json b/_data/chains/eip155-1177.json new file mode 100644 index 000000000000..2ff06a0d91de --- /dev/null +++ b/_data/chains/eip155-1177.json @@ -0,0 +1,33 @@ +{ + "name": "Smart Host Teknoloji TESTNET", + "chain": "SHT", + "rpc": ["https://s2.tl.web.tr:4041"], + "faucets": [], + "nativeCurrency": { + "name": "Smart Host Teknoloji TESTNET", + "symbol": "tSHT", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://smart-host.com.tr", + "shortName": "sht", + "chainId": 1177, + "networkId": 1177, + "slip44": 1, + "icon": "smarthost", + "explorers": [ + { + "name": "Smart Host Teknoloji TESTNET Explorer", + "url": "https://s2.tl.web.tr:4000", + "icon": "smarthost", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-118.json b/_data/chains/eip155-118.json new file mode 100644 index 000000000000..2765a101c904 --- /dev/null +++ b/_data/chains/eip155-118.json @@ -0,0 +1,24 @@ +{ + "name": "Arcology Testnet", + "chain": "Arcology", + "icon": "acolicon", + "rpc": ["https://testnet.arcology.network/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Arcology Coin", + "symbol": "Acol", + "decimals": 18 + }, + "infoURL": "https://arcology.network/", + "shortName": "arcology", + "chainId": 118, + "networkId": 118, + "slip44": 1, + "explorers": [ + { + "name": "arcology", + "url": "https://testnet.arcology.network/explorer", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-11811.json b/_data/chains/eip155-11811.json new file mode 100644 index 000000000000..4ac5814c6a00 --- /dev/null +++ b/_data/chains/eip155-11811.json @@ -0,0 +1,25 @@ +{ + "name": "ARK Mainnet", + "chain": "ARK", + "icon": "ark", + "rpc": ["https://rpc.ark.io"], + "faucets": [], + "nativeCurrency": { + "name": "ARK Token", + "symbol": "ARK", + "decimals": 18 + }, + "infoURL": "https://ark.io", + "shortName": "ark", + "chainId": 11811, + "networkId": 11811, + "slip44": 60, + "explorers": [ + { + "name": "ARK Mainnet Explorer", + "url": "https://arkscan.io", + "standard": "none" + } + ], + "status": "incubating" +} diff --git a/_data/chains/eip155-11812.json b/_data/chains/eip155-11812.json new file mode 100644 index 000000000000..dc3f56ca1667 --- /dev/null +++ b/_data/chains/eip155-11812.json @@ -0,0 +1,25 @@ +{ + "name": "ARK Testnet", + "chain": "ARK", + "icon": "ark", + "rpc": ["https://testnet.mainsailhq.com/rpc"], + "faucets": ["https://faucet.mainsailhq.com"], + "nativeCurrency": { + "name": "DARK Token", + "symbol": "DARK", + "decimals": 18 + }, + "infoURL": "https://ark.io", + "shortName": "ark-testnet", + "chainId": 11812, + "networkId": 11812, + "slip44": 60, + "explorers": [ + { + "name": "ARK Testnet Explorer", + "url": "https://explorer-demo.mainsailhq.com", + "standard": "none" + } + ], + "status": "incubating" +} 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-1187947933.json b/_data/chains/eip155-1187947933.json new file mode 100644 index 000000000000..7180047638a5 --- /dev/null +++ b/_data/chains/eip155-1187947933.json @@ -0,0 +1,25 @@ +{ + "name": "SKALE Base", + "chain": "skale-base", + "rpc": [ + "https://skale-base.skalenodes.com/v1/base", + "wss://skale-base.skalenodes.com/v1/ws/base" + ], + "faucets": ["http://base-sepolia-faucet.skale.space"], + "nativeCurrency": { + "name": "Credits", + "symbol": "CREDIT", + "decimals": 18 + }, + "infoURL": "https://docs.skale.space/welcome/skale-on-base", + "shortName": "skale-base", + "chainId": 1187947933, + "networkId": 1187947933, + "explorers": [ + { + "name": "Blockscout", + "url": "https://skale-base-explorer.skalenodes.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1188.json b/_data/chains/eip155-1188.json new file mode 100644 index 000000000000..aa3dee90f20b --- /dev/null +++ b/_data/chains/eip155-1188.json @@ -0,0 +1,24 @@ +{ + "name": "ClubMos Mainnet", + "chain": "MOS", + "rpc": ["https://mainnet.mosscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "ClubMos", + "symbol": "MOS", + "decimals": 18 + }, + "infoURL": "https://www.mosscan.com", + "shortName": "MOS", + "chainId": 1188, + "networkId": 1188, + "icon": "clubmos", + "explorers": [ + { + "name": "mosscan", + "url": "https://www.mosscan.com", + "icon": "clubmos", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-11888.json b/_data/chains/eip155-11888.json new file mode 100644 index 000000000000..40d172b3a594 --- /dev/null +++ b/_data/chains/eip155-11888.json @@ -0,0 +1,33 @@ +{ + "status": "deprecated", + "name": "Santiment Intelligence Network DEPRECATED", + "chain": "Santiment Intelligence Network DEPRECATED", + "rpc": ["https://sanrchain-node.santiment.net"], + "faucets": [], + "nativeCurrency": { + "name": "SANold", + "symbol": "SANold", + "decimals": 18 + }, + "infoURL": "https://sanr.app", + "shortName": "SANold", + "chainId": 11888, + "networkId": 11888, + "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-11891.json b/_data/chains/eip155-11891.json new file mode 100644 index 000000000000..d01bd42ff465 --- /dev/null +++ b/_data/chains/eip155-11891.json @@ -0,0 +1,26 @@ +{ + "name": "Polygon Supernet Arianee", + "chain": "Arianee", + "rpc": ["https://rpc.polygonsupernet.public.arianee.net"], + "faucets": [], + "nativeCurrency": { + "name": "Arianee", + "symbol": "ARIA20", + "decimals": 18 + }, + "infoURL": "https://arianee.org", + "shortName": "Arianee", + "chainId": 11891, + "networkId": 11891, + "explorers": [ + { + "name": "Polygon Supernet Arianee Explorer", + "url": "https://polygonsupernet.explorer.arianee.net", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-1", + "type": "L2" + } +} diff --git a/_data/chains/eip155-119.json b/_data/chains/eip155-119.json new file mode 100644 index 000000000000..002fede2f9c7 --- /dev/null +++ b/_data/chains/eip155-119.json @@ -0,0 +1,24 @@ +{ + "name": "ENULS Mainnet", + "chain": "ENULS", + "rpc": ["https://evmapi.nuls.io", "https://evmapi2.nuls.io"], + "faucets": [], + "nativeCurrency": { + "name": "NULS", + "symbol": "NULS", + "decimals": 18 + }, + "infoURL": "https://nuls.io", + "shortName": "enuls", + "chainId": 119, + "networkId": 119, + "icon": "enuls", + "explorers": [ + { + "name": "enulsscan", + "url": "https://evmscan.nuls.io", + "icon": "enuls", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-119139.json b/_data/chains/eip155-119139.json new file mode 100644 index 000000000000..6a71b45afa9b --- /dev/null +++ b/_data/chains/eip155-119139.json @@ -0,0 +1,27 @@ +{ + "name": "MetaDAP Enterprise Testnet", + "title": "MetaDAP Enterprise Testnet", + "chain": "MetaDAP", + "icon": "metadap", + "faucets": [], + "rpc": [ + "https://rpc.testnet.chain.metadap.io", + "wss://rpc-ws.testnet.chain.metadap.io" + ], + "nativeCurrency": { + "name": "DAP", + "symbol": "DAP", + "decimals": 18 + }, + "infoURL": "https://metadap.io/", + "shortName": "MetaDAP-T", + "chainId": 119139, + "networkId": 119139, + "explorers": [ + { + "name": "MetaDAP Enterprise Testnet explorer", + "url": "https://explorer.testnet.chain.metadap.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1197.json b/_data/chains/eip155-1197.json index fa0b6f606784..0ae3ee48e8ae 100644 --- a/_data/chains/eip155-1197.json +++ b/_data/chains/eip155-1197.json @@ -1,7 +1,6 @@ { "name": "Iora Chain", "chain": "IORA", - "network": "iorachain", "icon": "iorachain", "rpc": ["https://dataseed.iorachain.com"], "faucets": [], @@ -22,4 +21,3 @@ } ] } - diff --git a/_data/chains/eip155-12.json b/_data/chains/eip155-12.json index 7086dab16e05..5174539b71be 100644 --- a/_data/chains/eip155-12.json +++ b/_data/chains/eip155-12.json @@ -1,9 +1,7 @@ { "name": "Metadium Testnet", "chain": "META", - "rpc": [ - "https://api.metadium.com/dev" - ], + "rpc": ["https://api.metadium.com/dev"], "faucets": [], "nativeCurrency": { "name": "Metadium Testnet Ether", @@ -13,5 +11,6 @@ "infoURL": "https://metadium.com", "shortName": "kal", "chainId": 12, - "networkId": 12 -} \ No newline at end of file + "networkId": 12, + "slip44": 1 +} diff --git a/_data/chains/eip155-120.json b/_data/chains/eip155-120.json new file mode 100644 index 000000000000..2e39d7178dcd --- /dev/null +++ b/_data/chains/eip155-120.json @@ -0,0 +1,25 @@ +{ + "name": "ENULS Testnet", + "chain": "ENULS", + "rpc": ["https://beta.evmapi.nuls.io", "https://beta.evmapi2.nuls.io"], + "faucets": ["http://faucet.nuls.io"], + "nativeCurrency": { + "name": "NULS", + "symbol": "NULS", + "decimals": 18 + }, + "infoURL": "https://nuls.io", + "shortName": "enulst", + "chainId": 120, + "networkId": 120, + "slip44": 1, + "icon": "enuls", + "explorers": [ + { + "name": "enulsscan", + "url": "https://beta.evmscan.nuls.io", + "icon": "enuls", + "standard": "EIP3091" + } + ] +} 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-12009.json b/_data/chains/eip155-12009.json new file mode 100644 index 000000000000..c7184c622b2d --- /dev/null +++ b/_data/chains/eip155-12009.json @@ -0,0 +1,23 @@ +{ + "name": "SatoshiChain Mainnet", + "chain": "SATS", + "icon": "satoshichain", + "rpc": ["https://mainnet-rpc.satoshichain.io"], + "faucets": [], + "nativeCurrency": { + "name": "SatoshiChain Coin", + "symbol": "SATS", + "decimals": 18 + }, + "infoURL": "https://satoshichain.net", + "shortName": "sats", + "chainId": 12009, + "networkId": 12009, + "explorers": [ + { + "name": "SatoshiChain Explorer", + "url": "https://satoshiscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1201.json b/_data/chains/eip155-1201.json index 1c22b0d04c59..6ca355eef5ae 100644 --- a/_data/chains/eip155-1201.json +++ b/_data/chains/eip155-1201.json @@ -1,10 +1,7 @@ { "name": "Evanesco Testnet", "chain": "Evanesco Testnet", - "network": "avis", - "rpc": [ - "https://seed5.evanesco.org:8547" - ], + "rpc": ["https://seed5.evanesco.org:8547"], "faucets": [], "nativeCurrency": { "name": "AVIS", @@ -14,5 +11,6 @@ "infoURL": "https://evanesco.org/", "shortName": "avis", "chainId": 1201, - "networkId": 1201 -} \ No newline at end of file + "networkId": 1201, + "slip44": 1 +} diff --git a/_data/chains/eip155-1202.json b/_data/chains/eip155-1202.json index e27acc8163fb..acebf2bb9359 100644 --- a/_data/chains/eip155-1202.json +++ b/_data/chains/eip155-1202.json @@ -1,10 +1,7 @@ { "name": "World Trade Technical Chain Mainnet", "chain": "WTT", - "rpc": [ - "https://rpc.cadaut.com", - "wss://rpc.cadaut.com/ws" - ], + "rpc": ["https://rpc.cadaut.com", "wss://rpc.cadaut.com/ws"], "faucets": [], "nativeCurrency": { "name": "World Trade Token", @@ -15,9 +12,11 @@ "shortName": "wtt", "chainId": 1202, "networkId": 2048, - "explorers": [{ - "name": "WTTScout", - "url": "https://explorer.cadaut.com", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "WTTScout", + "url": "https://explorer.cadaut.com", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-12020.json b/_data/chains/eip155-12020.json new file mode 100644 index 000000000000..3bd1e73772c6 --- /dev/null +++ b/_data/chains/eip155-12020.json @@ -0,0 +1,24 @@ +{ + "name": "Aternos", + "chain": "Aternos", + "icon": "aternos", + "rpc": ["https://rpc.aternoschain.com"], + "faucets": ["https://faucet.aternoschain.com"], + "nativeCurrency": { + "name": "Aternos", + "symbol": "ATR", + "decimals": 18 + }, + "infoURL": "https://aternoschain.com", + "shortName": "ATR", + "chainId": 12020, + "networkId": 12020, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.aternoschain.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} 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-12051.json b/_data/chains/eip155-12051.json index 5ad0b00e4cb7..0c036aa1f58c 100644 --- a/_data/chains/eip155-12051.json +++ b/_data/chains/eip155-12051.json @@ -1,12 +1,8 @@ { "name": "Singularity ZERO Testnet", "chain": "ZERO", - "rpc": [ - "https://betaenv.singularity.gold:18545" - ], - "faucets": [ - "https://nft.singularity.gold" - ], + "rpc": ["https://betaenv.singularity.gold:18545"], + "faucets": ["https://nft.singularity.gold"], "nativeCurrency": { "name": "ZERO", "symbol": "tZERO", @@ -16,9 +12,12 @@ "shortName": "tZERO", "chainId": 12051, "networkId": 12051, - "explorers": [{ - "name": "zeroscan", - "url": "https://betaenv.singularity.gold:18002", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "zeroscan", + "url": "https://betaenv.singularity.gold:18002", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-12052.json b/_data/chains/eip155-12052.json index 38ade39b012d..12d30b6bcf08 100644 --- a/_data/chains/eip155-12052.json +++ b/_data/chains/eip155-12052.json @@ -1,12 +1,8 @@ { "name": "Singularity ZERO Mainnet", "chain": "ZERO", - "rpc": [ - "https://zerorpc.singularity.gold" - ], - "faucets": [ - "https://zeroscan.singularity.gold" - ], + "rpc": ["https://zerorpc.singularity.gold"], + "faucets": ["https://zeroscan.singularity.gold"], "nativeCurrency": { "name": "ZERO", "symbol": "ZERO", @@ -17,9 +13,11 @@ "chainId": 12052, "networkId": 12052, "slip44": 621, - "explorers": [{ - "name": "zeroscan", - "url": "https://zeroscan.singularity.gold", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "zeroscan", + "url": "https://zeroscan.singularity.gold", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-12052024.json b/_data/chains/eip155-12052024.json new file mode 100644 index 000000000000..c2dde60c8c63 --- /dev/null +++ b/_data/chains/eip155-12052024.json @@ -0,0 +1,17 @@ +{ + "name": "Memento Testnet (deprecated)", + "chain": "Memento", + "rpc": [], + "faucets": [], + "status": "deprecated", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "memento-test", + "chainId": 12052024, + "networkId": 12052024, + "explorers": [] +} 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-1209.json b/_data/chains/eip155-1209.json new file mode 100644 index 000000000000..4eb9fcfba7ad --- /dev/null +++ b/_data/chains/eip155-1209.json @@ -0,0 +1,24 @@ +{ + "name": "SaitaBlockChain(SBC)", + "chain": "SaitaBlockChain(SBC)", + "rpc": ["https://rpc-nodes.saitascan.io"], + "faucets": [], + "nativeCurrency": { + "name": "SaitaBlockChain(SBC)", + "symbol": "STC", + "decimals": 18 + }, + "infoURL": "https://saitachain.com", + "shortName": "SBC", + "chainId": 1209, + "networkId": 1209, + "icon": "SaitaBlockChain(SBC)", + "explorers": [ + { + "name": "Saitascan explorer", + "url": "https://saitascan.io", + "standard": "none", + "icon": "SaitaBlockChain(SBC)" + } + ] +} diff --git a/_data/chains/eip155-121.json b/_data/chains/eip155-121.json new file mode 100644 index 000000000000..8d1b1258bd15 --- /dev/null +++ b/_data/chains/eip155-121.json @@ -0,0 +1,32 @@ +{ + "name": "Realchain Mainnet", + "chain": "REAL", + "rpc": [ + "https://rcl-dataseed1.rclsidechain.com", + "https://rcl-dataseed2.rclsidechain.com", + "https://rcl-dataseed3.rclsidechain.com", + "https://rcl-dataseed4.rclsidechain.com", + "wss://rcl-dataseed1.rclsidechain.com/v1/", + "wss://rcl-dataseed2.rclsidechain.com/v1/", + "wss://rcl-dataseed3.rclsidechain.com/v1/", + "wss://rcl-dataseed4.rclsidechain.com/v1/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Realchain", + "symbol": "REAL", + "decimals": 18 + }, + "infoURL": "https://www.rclsidechain.com/", + "shortName": "REAL", + "chainId": 121, + "networkId": 121, + "slip44": 714, + "explorers": [ + { + "name": "realscan", + "url": "https://rclscan.com", + "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..5fc79393a220 --- /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": "FREE", + "symbol": "FREE", + "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-12123.json b/_data/chains/eip155-12123.json new file mode 100644 index 000000000000..118cca15ae47 --- /dev/null +++ b/_data/chains/eip155-12123.json @@ -0,0 +1,23 @@ +{ + "name": "BRC Chain Mainnet", + "chain": "BRC", + "rpc": ["https://rpc.brcchain.io"], + "faucets": ["https://faucet.brcchain.io"], + "nativeCurrency": { + "name": "BRC Chain mainnet native token", + "symbol": "BRC", + "decimals": 18 + }, + "infoURL": "https://bridge.brcchain.io", + "shortName": "BRC", + "chainId": 12123, + "networkId": 12123, + "icon": "brcchain", + "explorers": [ + { + "name": "BRC Chain Explorer", + "url": "https://scan.brcchain.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1213.json b/_data/chains/eip155-1213.json index badea0256821..34331498f127 100644 --- a/_data/chains/eip155-1213.json +++ b/_data/chains/eip155-1213.json @@ -1,9 +1,7 @@ { "name": "Popcateum Mainnet", "chain": "POPCATEUM", - "rpc": [ - "https://dataseed.popcateum.org" - ], + "rpc": ["https://dataseed.popcateum.org"], "faucets": [], "nativeCurrency": { "name": "Popcat", @@ -21,4 +19,4 @@ "standard": "none" } ] -} \ No newline at end of file +} diff --git a/_data/chains/eip155-1214.json b/_data/chains/eip155-1214.json index 6e1a0c4a1763..861695242b65 100644 --- a/_data/chains/eip155-1214.json +++ b/_data/chains/eip155-1214.json @@ -1,25 +1,24 @@ { - "name": "EnterChain Mainnet", - "chain": "ENTER", - "network": "mainnet", - "rpc": [ - "https://tapi.entercoin.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "EnterCoin", - "symbol": "ENTER", - "decimals": 18 - }, - "infoURL": "https://entercoin.net", - "shortName": "enter", - "chainId": 1214, - "networkId": 1214, - "icon": "enter", - "explorers": [{ - "name": "Enter Explorer - Expenter", - "url": "https://explorer.entercoin.net", - "icon": "enter", - "standard": "EIP3091" - }] + "name": "EnterChain Mainnet", + "chain": "ENTER", + "rpc": ["https://tapi.entercoin.net/"], + "faucets": [], + "nativeCurrency": { + "name": "EnterCoin", + "symbol": "ENTER", + "decimals": 18 + }, + "infoURL": "https://entercoin.net", + "shortName": "enter", + "chainId": 1214, + "networkId": 1214, + "icon": "enter", + "explorers": [ + { + "name": "Enter Explorer - Expenter", + "url": "https://explorer.entercoin.net", + "icon": "enter", + "standard": "EIP3091" + } + ] } 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-121525.json b/_data/chains/eip155-121525.json new file mode 100644 index 000000000000..8da349091a48 --- /dev/null +++ b/_data/chains/eip155-121525.json @@ -0,0 +1,19 @@ +{ + "name": "Ethernova Mainnet", + "chain": "NOVA", + "rpc": ["https://rpc.ethnova.net"], + "faucets": [], + "nativeCurrency": { "name": "Ethernova", "symbol": "NOVA", "decimals": 18 }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://ethnova.net", + "shortName": "ethnova", + "chainId": 121525, + "networkId": 121525, + "explorers": [ + { + "name": "Ethernova Explorer", + "url": "https://explorer.ethnova.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-122.json b/_data/chains/eip155-122.json index 7693266462dd..2a0d2ea66f06 100644 --- a/_data/chains/eip155-122.json +++ b/_data/chains/eip155-122.json @@ -2,7 +2,9 @@ "name": "Fuse Mainnet", "chain": "FUSE", "rpc": [ - "https://rpc.fuse.io" + "https://rpc.fuse.io", + "https://fuse.drpc.org", + "wss://fuse.drpc.org" ], "faucets": [], "nativeCurrency": { @@ -13,5 +15,14 @@ "infoURL": "https://fuse.io/", "shortName": "fuse", "chainId": 122, - "networkId": 122 + "networkId": 122, + "icon": "fuse", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.fuse.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-1221.json b/_data/chains/eip155-1221.json new file mode 100644 index 000000000000..ef6a6cb5d73d --- /dev/null +++ b/_data/chains/eip155-1221.json @@ -0,0 +1,16 @@ +{ + "name": "Cycle Network Testnet", + "chain": "ETH", + "rpc": ["https://rpc-testnet.cyclenetwork.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.cyclenetwork.io/", + "shortName": "Cycle", + "chainId": 1221, + "networkId": 1221, + "icon": "cycle" +} 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 new file mode 100644 index 000000000000..de860cdbed13 --- /dev/null +++ b/_data/chains/eip155-1224.json @@ -0,0 +1,24 @@ +{ + "name": "Hybrid Testnet (Deprecated)", + "chain": "HYB", + "icon": "hybridIcon", + "rpc": ["https://testnet-rpc.buildonhybrid.com"], + "faucets": [], + "nativeCurrency": { + "name": "Hybrid", + "symbol": "HYB", + "decimals": 18 + }, + "infoURL": "https://buildonhybrid.com", + "shortName": "hyb_deprecated", + "chainId": 1224, + "status": "deprecated", + "networkId": 1224, + "explorers": [ + { + "name": "Hybrid Testnet", + "url": "https://explorer.buildonhybrid.com", + "standard": "EIP3091" + } + ] +} 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-1229.json b/_data/chains/eip155-1229.json new file mode 100644 index 000000000000..38a7e635e687 --- /dev/null +++ b/_data/chains/eip155-1229.json @@ -0,0 +1,23 @@ +{ + "name": "Exzo Network Mainnet", + "chain": "EXZO", + "icon": "exzo", + "rpc": ["https://mainnet.exzo.technology"], + "faucets": [], + "nativeCurrency": { + "name": "Exzo", + "symbol": "XZO", + "decimals": 18 + }, + "infoURL": "https://exzo.network", + "shortName": "xzo", + "chainId": 1229, + "networkId": 1229, + "explorers": [ + { + "name": "blockscout", + "url": "https://exzoscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-123.json b/_data/chains/eip155-123.json index 943e878435f3..5b339ce4f92e 100644 --- a/_data/chains/eip155-123.json +++ b/_data/chains/eip155-123.json @@ -1,9 +1,7 @@ { "name": "Fuse Sparknet", "chain": "fuse", - "rpc": [ - "https://rpc.fusespark.io" - ], + "rpc": ["https://rpc.fusespark.io"], "faucets": ["https://get.fusespark.io"], "nativeCurrency": { "name": "Spark", diff --git a/_data/chains/eip155-1230.json b/_data/chains/eip155-1230.json new file mode 100644 index 000000000000..2504c6097133 --- /dev/null +++ b/_data/chains/eip155-1230.json @@ -0,0 +1,25 @@ +{ + "name": "Ultron Testnet", + "chain": "Ultron", + "icon": "ultron", + "rpc": ["https://ultron-dev.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ultron", + "symbol": "ULX", + "decimals": 18 + }, + "infoURL": "https://ultron.foundation", + "shortName": "UltronTestnet", + "chainId": 1230, + "networkId": 1230, + "slip44": 1, + "explorers": [ + { + "name": "Ultron Testnet Explorer", + "url": "https://explorer.ultron-dev.io", + "icon": "ultron", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-12306.json b/_data/chains/eip155-12306.json new file mode 100644 index 000000000000..a1eb73f462fc --- /dev/null +++ b/_data/chains/eip155-12306.json @@ -0,0 +1,38 @@ +{ + "name": "Fibonacci Mainnet", + "chain": "FIBO", + "icon": "fibonacci", + "rpc": [ + "https://node1.fibo-api.asia", + "https://node2.fibo-api.asia", + "https://node3.fibo-api.asia", + "https://node4.fibo-api.asia", + "https://node5.fibo-api.asia", + "https://node6.fibo-api.asia", + "https://node7.fibo-api.asia", + "https://node1.fibo-rpc.asia", + "https://node2.fibo-rpc.asia", + "https://node3.fibo-rpc.asia", + "https://node4.fibo-rpc.asia", + "https://node5.fibo-rpc.asia", + "https://node6.fibo-rpc.asia", + "https://node7.fibo-rpc.asia" + ], + "faucets": ["https://test.fibochain.org/faucets"], + "nativeCurrency": { + "name": "FIBONACCI UTILITY TOKEN", + "symbol": "FIBO", + "decimals": 18 + }, + "infoURL": "https://fibochain.org", + "shortName": "fibo", + "chainId": 12306, + "networkId": 1230, + "explorers": [ + { + "name": "fiboscan", + "url": "https://scan.fibochain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1231.json b/_data/chains/eip155-1231.json new file mode 100644 index 000000000000..1a68aafc4aa0 --- /dev/null +++ b/_data/chains/eip155-1231.json @@ -0,0 +1,24 @@ +{ + "name": "Ultron Mainnet", + "chain": "Ultron", + "icon": "ultron", + "rpc": ["https://ultron-rpc.net"], + "faucets": [], + "nativeCurrency": { + "name": "Ultron", + "symbol": "ULX", + "decimals": 18 + }, + "infoURL": "https://ultron.foundation", + "shortName": "UtronMainnet", + "chainId": 1231, + "networkId": 1231, + "explorers": [ + { + "name": "Ultron Explorer", + "url": "https://ulxscan.com", + "icon": "ultron", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-12321.json b/_data/chains/eip155-12321.json new file mode 100644 index 000000000000..9300f29c410e --- /dev/null +++ b/_data/chains/eip155-12321.json @@ -0,0 +1,17 @@ +{ + "name": "BLG Testnet", + "chain": "BLG", + "icon": "blg", + "rpc": ["https://rpc.blgchain.com"], + "faucets": ["https://faucet.blgchain.com"], + "nativeCurrency": { + "name": "Blg", + "symbol": "BLG", + "decimals": 18 + }, + "infoURL": "https://blgchain.com", + "shortName": "blgchain", + "chainId": 12321, + "networkId": 12321, + "slip44": 1 +} 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-12324.json b/_data/chains/eip155-12324.json new file mode 100644 index 000000000000..8778b5fb7dea --- /dev/null +++ b/_data/chains/eip155-12324.json @@ -0,0 +1,28 @@ +{ + "name": "L3X Protocol", + "chainId": 12324, + "shortName": "l3x", + "chain": "L3X", + "icon": "l3x", + "networkId": 12324, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": ["https://rpc-mainnet.l3x.com"], + "faucets": [], + "explorers": [ + { + "name": "L3X Mainnet Explorer", + "url": "https://explorer.l3x.com", + "standard": "EIP3091" + } + ], + "infoURL": "https://l3x.com", + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [{ "url": "https://bridge.arbitrum.io" }] + } +} diff --git a/_data/chains/eip155-12325.json b/_data/chains/eip155-12325.json new file mode 100644 index 000000000000..a229cf8ca9d0 --- /dev/null +++ b/_data/chains/eip155-12325.json @@ -0,0 +1,28 @@ +{ + "name": "L3X Protocol Testnet", + "chainId": 12325, + "shortName": "l3x-testnet", + "chain": "L3X", + "icon": "l3x", + "networkId": 12325, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": ["https://rpc-testnet.l3x.com"], + "faucets": [], + "explorers": [ + { + "name": "L3X Testnet Explorer", + "url": "https://explorer-testnet.l3x.com", + "standard": "EIP3091" + } + ], + "infoURL": "https://l3x.com", + "parent": { + "type": "L2", + "chain": "eip155-421614", + "bridges": [{ "url": "https://bridge.arbitrum.io" }] + } +} 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-1234.json b/_data/chains/eip155-1234.json new file mode 100644 index 000000000000..095d08a1c0a6 --- /dev/null +++ b/_data/chains/eip155-1234.json @@ -0,0 +1,30 @@ +{ + "name": "Step Network", + "title": "Step Main Network", + "chain": "STEP", + "icon": "step", + "rpc": ["https://rpc.step.network"], + "faucets": [], + "nativeCurrency": { + "name": "FITFI", + "symbol": "FITFI", + "decimals": 18 + }, + "infoURL": "https://step.network", + "shortName": "step", + "chainId": 1234, + "networkId": 1234, + "explorers": [ + { + "name": "StepScan", + "url": "https://stepscan.io", + "icon": "step", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-43114", + "bridges": [{ "url": "https://bridge.step.network" }] + } +} 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-123420111.json b/_data/chains/eip155-123420111.json new file mode 100644 index 000000000000..0db3588b1aa1 --- /dev/null +++ b/_data/chains/eip155-123420111.json @@ -0,0 +1,36 @@ +{ + "name": "OP Celestia Raspberry", + "title": "OP Celestia Raspberry Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.opcelestia-raspberry.gelato.digital", + "wss://ws.opcelestia-raspberry.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/opcelestia-raspberry", + "shortName": "opcelestia-raspberry", + "chainId": 123420111, + "networkId": 123420111, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://opcelestia-raspberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { "url": "https://bridge.gelato.network/bridge/opcelestia-raspberry" } + ] + }, + "status": "active" +} diff --git a/_data/chains/eip155-12345.json b/_data/chains/eip155-12345.json new file mode 100644 index 000000000000..1f37ca35b636 --- /dev/null +++ b/_data/chains/eip155-12345.json @@ -0,0 +1,30 @@ +{ + "name": "Step Testnet", + "title": "Step Test Network", + "chain": "STEP", + "icon": "step", + "rpc": ["https://rpc.testnet.step.network"], + "faucets": ["https://faucet.step.network"], + "nativeCurrency": { + "name": "FITFI", + "symbol": "FITFI", + "decimals": 18 + }, + "infoURL": "https://step.network", + "shortName": "steptest", + "chainId": 12345, + "networkId": 12345, + "slip44": 1, + "explorers": [ + { + "name": "StepScan", + "url": "https://testnet.stepscan.io", + "icon": "step", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-43113" + } +} diff --git a/_data/chains/eip155-123456.json b/_data/chains/eip155-123456.json new file mode 100644 index 000000000000..a10f2561032a --- /dev/null +++ b/_data/chains/eip155-123456.json @@ -0,0 +1,23 @@ +{ + "name": "ADIL Devnet", + "chain": "ADIL", + "icon": "adil", + "rpc": ["https://devnet.adilchain-rpc.io"], + "faucets": [], + "nativeCurrency": { + "name": "Devnet ADIL", + "symbol": "ADIL", + "decimals": 18 + }, + "infoURL": "https://adilchain.io", + "shortName": "dadil", + "chainId": 123456, + "networkId": 123456, + "explorers": [ + { + "name": "ADIL Devnet Explorer", + "url": "https://devnet.adilchain-scan.io", + "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-124.json b/_data/chains/eip155-124.json index b95ad350024a..370fe64d4b78 100644 --- a/_data/chains/eip155-124.json +++ b/_data/chains/eip155-124.json @@ -2,10 +2,14 @@ "name": "Decentralized Web Mainnet", "shortName": "dwu", "chain": "DWU", - "chainId": 124, + "chainId": 124, "networkId": 124, "rpc": ["https://decentralized-web.tech/dw_rpc.php"], "faucets": [], "infoURL": "https://decentralized-web.tech/dw_chain.php", - "nativeCurrency": {"name":"Decentralized Web Utility","symbol":"DWU","decimals":18} + "nativeCurrency": { + "name": "Decentralized Web Utility", + "symbol": "DWU", + "decimals": 18 + } } diff --git a/_data/chains/eip155-1243.json b/_data/chains/eip155-1243.json new file mode 100644 index 000000000000..7036b9318eb2 --- /dev/null +++ b/_data/chains/eip155-1243.json @@ -0,0 +1,18 @@ +{ + "name": "ARC Mainnet", + "chain": "ARC", + "icon": "arc", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "ARC", + "symbol": "ARC", + "decimals": 18 + }, + "infoURL": "https://archiechain.io/", + "shortName": "ARC", + "chainId": 1243, + "networkId": 1243, + "explorers": [], + "status": "deprecated" +} diff --git a/_data/chains/eip155-1244.json b/_data/chains/eip155-1244.json new file mode 100644 index 000000000000..d5e3ab029f38 --- /dev/null +++ b/_data/chains/eip155-1244.json @@ -0,0 +1,19 @@ +{ + "name": "ARC Testnet", + "chain": "ARC", + "icon": "arc", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "ARC", + "symbol": "ARC", + "decimals": 18 + }, + "infoURL": "https://archiechain.io/", + "shortName": "TARC", + "chainId": 1244, + "networkId": 1244, + "slip44": 1, + "explorers": [], + "status": "deprecated" +} diff --git a/_data/chains/eip155-1246.json b/_data/chains/eip155-1246.json new file mode 100644 index 000000000000..ccc4980daca2 --- /dev/null +++ b/_data/chains/eip155-1246.json @@ -0,0 +1,22 @@ +{ + "name": "OM Platform Mainnet", + "chain": "omplatform", + "rpc": ["https://rpc-cnx.omplatform.com/"], + "faucets": [], + "nativeCurrency": { + "name": "OMCOIN", + "symbol": "OM", + "decimals": 18 + }, + "infoURL": "https://omplatform.com/", + "shortName": "om", + "chainId": 1246, + "networkId": 1246, + "explorers": [ + { + "name": "OMSCAN - Expenter", + "url": "https://omscan.omplatform.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1248.json b/_data/chains/eip155-1248.json new file mode 100644 index 000000000000..78ffdd94d0e3 --- /dev/null +++ b/_data/chains/eip155-1248.json @@ -0,0 +1,22 @@ +{ + "name": "Dogether Mainnet", + "chain": "Dogether", + "rpc": ["https://rpc.dogether.dog/"], + "faucets": [], + "nativeCurrency": { + "name": "Dogether", + "symbol": "dogeth", + "decimals": 18 + }, + "infoURL": "https://www.dogether.dog/", + "shortName": "Dogether", + "chainId": 1248, + "networkId": 1248, + "explorers": [ + { + "name": "DogetherExplorer", + "url": "https://explorer.dogether.dog", + "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-125.json b/_data/chains/eip155-125.json index a0c5f584b6bf..9cd55837bc42 100644 --- a/_data/chains/eip155-125.json +++ b/_data/chains/eip155-125.json @@ -1,25 +1,23 @@ { - "name": "OYchain Testnet", - "chain": "OYchain", - "rpc": [ - "https://rpc.testnet.oychain.io" - ], - "faucets": [ - "https://faucet.oychain.io" - ], - "nativeCurrency": { - "name": "OYchain Token", - "symbol": "OY", - "decimals": 18 - }, - "infoURL": "https://www.oychain.io", - "shortName": "oychain testnet", - "chainId": 125, - "networkId": 125, - "slip44": 125, - "explorers": [{ - "name": "OYchain Testnet Explorer", - "url": "https://explorer.testnet.oychain.io", - "standard": "none" - }] - } + "name": "OYchain Testnet", + "chain": "OYchain", + "rpc": ["https://rpc.testnet.oychain.io"], + "faucets": ["https://faucet.oychain.io"], + "nativeCurrency": { + "name": "OYchain Token", + "symbol": "OY", + "decimals": 18 + }, + "infoURL": "https://www.oychain.io", + "shortName": "OYchainTestnet", + "chainId": 125, + "networkId": 125, + "slip44": 1, + "explorers": [ + { + "name": "OYchain Testnet Explorer", + "url": "https://explorer.testnet.oychain.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1252.json b/_data/chains/eip155-1252.json new file mode 100644 index 000000000000..11e50c8abcbd --- /dev/null +++ b/_data/chains/eip155-1252.json @@ -0,0 +1,25 @@ +{ + "name": "CIC Chain Testnet", + "chain": "CICT", + "rpc": ["https://testapi.cicscan.com"], + "faucets": ["https://cicfaucet.com"], + "nativeCurrency": { + "name": "Crazy Internet Coin", + "symbol": "CICT", + "decimals": 18 + }, + "infoURL": "https://www.cicchain.net", + "shortName": "CICT", + "chainId": 1252, + "networkId": 1252, + "slip44": 1, + "icon": "cicchain", + "explorers": [ + { + "name": "CICscan", + "url": "https://testnet.cicscan.com", + "icon": "cicchain", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-12553.json b/_data/chains/eip155-12553.json new file mode 100644 index 000000000000..35b8b0684275 --- /dev/null +++ b/_data/chains/eip155-12553.json @@ -0,0 +1,28 @@ +{ + "name": "RSS3 VSL Mainnet", + "chain": "RSS3", + "rpc": ["https://rpc.rss3.io"], + "faucets": [], + "nativeCurrency": { + "name": "RSS3", + "symbol": "RSS3", + "decimals": 18 + }, + "infoURL": "https://rss3.io", + "shortName": "rss3", + "chainId": 12553, + "networkId": 12553, + "icon": "rss3", + "explorers": [ + { + "name": "RSS3 VSL Scan", + "url": "https://scan.rss3.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://explorer.rss3.io/bridge" }] + } +} diff --git a/_data/chains/eip155-126.json b/_data/chains/eip155-126.json index dcca42f18dae..11ae4edf030c 100644 --- a/_data/chains/eip155-126.json +++ b/_data/chains/eip155-126.json @@ -1,26 +1,26 @@ { - "name": "OYchain Mainnet", - "chain": "OYchain", - "icon": "oychain", - "rpc": [ - "https://rpc.mainnet.oychain.io" - ], - "faucets": [ ], + "name": "OYchain Mainnet", + "chain": "OYchain", + "icon": "oychain", + "rpc": ["https://rpc.mainnet.oychain.io"], + "faucets": [], - "nativeCurrency": { - "name": "OYchain Token", - "symbol": "OY", - "decimals": 18 - }, + "nativeCurrency": { + "name": "OYchain Token", + "symbol": "OY", + "decimals": 18 + }, - "infoURL": "https://www.oychain.io", - "shortName": "oychain mainnet", - "chainId": 126, - "networkId": 126, - "slip44": 126, - "explorers": [{ - "name": "OYchain Mainnet Explorer", - "url": "https://explorer.oychain.io", - "standard": "none" - }] - } + "infoURL": "https://www.oychain.io", + "shortName": "OYchainMainnet", + "chainId": 126, + "networkId": 126, + "slip44": 126, + "explorers": [ + { + "name": "OYchain Mainnet Explorer", + "url": "https://explorer.oychain.io", + "standard": "none" + } + ] +} 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-1261120.json b/_data/chains/eip155-1261120.json new file mode 100644 index 000000000000..4aa6975306b9 --- /dev/null +++ b/_data/chains/eip155-1261120.json @@ -0,0 +1,47 @@ +{ + "name": "zKatana", + "shortName": "azktn", + "title": "Astar zkEVM Testnet zKatana", + "chain": "ETH", + "icon": "astarzk", + "rpc": [ + "https://rpc.zkatana.gelato.digital", + "https://rpc.startale.com/zkatana", + "https://astar-zkatana.drpc.org", + "wss://astar-zkatana.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://astar.network", + "chainId": 1261120, + "networkId": 1261120, + "explorers": [ + { + "name": "Blockscout zKatana chain explorer", + "url": "https://zkatana.blockscout.com", + "standard": "EIP3091" + }, + { + "name": "Startale zKatana chain explorer", + "url": "https://zkatana.explorer.startale.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://portal.astar.network" + }, + { + "url": "https://bridge.zkatana.gelato.digital" + } + ] + }, + "status": "active" +} diff --git a/_data/chains/eip155-127.json b/_data/chains/eip155-127.json index 7f319a1a798f..4ee2556a8fb6 100644 --- a/_data/chains/eip155-127.json +++ b/_data/chains/eip155-127.json @@ -1,16 +1,16 @@ { - "name": "Factory 127 Mainnet", - "chain": "FETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Factory 127 Token", - "symbol": "FETH", - "decimals": 18 - }, - "infoURL": "https://www.factory127.com", - "shortName": "feth", - "chainId": 127, - "networkId": 127, - "slip44": 127 - } \ No newline at end of file + "name": "Factory 127 Mainnet", + "chain": "FETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Factory 127 Token", + "symbol": "FETH", + "decimals": 18 + }, + "infoURL": "https://www.factory127.com", + "shortName": "feth", + "chainId": 127, + "networkId": 127, + "slip44": 127 +} diff --git a/_data/chains/eip155-12715.json b/_data/chains/eip155-12715.json new file mode 100644 index 000000000000..48667bd15878 --- /dev/null +++ b/_data/chains/eip155-12715.json @@ -0,0 +1,25 @@ +{ + "name": "Rikeza Network Testnet", + "title": "Rikeza Network Testnet", + "chain": "Rikeza", + "icon": "rikeza", + "rpc": ["https://testnet-rpc.rikscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Rikeza", + "symbol": "RIK", + "decimals": 18 + }, + "infoURL": "https://rikeza.io", + "shortName": "tRIK", + "chainId": 12715, + "networkId": 12715, + "slip44": 1, + "explorers": [ + { + "name": "Rikeza Blockchain explorer", + "url": "https://testnet.rikscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1273227453.json b/_data/chains/eip155-1273227453.json new file mode 100644 index 000000000000..13bf9e0b7f40 --- /dev/null +++ b/_data/chains/eip155-1273227453.json @@ -0,0 +1,24 @@ +{ + "name": "HUMAN Protocol", + "title": "HUMAN Protocol", + "chain": "wan-red-ain", + "rpc": ["https://mainnet.skalenodes.com/v1/wan-red-ain"], + "faucets": ["https://dashboard.humanprotocol.org/faucet"], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://www.humanprotocol.org", + "shortName": "human-mainnet", + "chainId": 1273227453, + "networkId": 1273227453, + "explorers": [ + { + "name": "Blockscout", + "url": "https://wan-red-ain.explorer.mainnet.skalenodes.com", + "icon": "human", + "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-12781.json b/_data/chains/eip155-12781.json new file mode 100644 index 000000000000..c130244e85d9 --- /dev/null +++ b/_data/chains/eip155-12781.json @@ -0,0 +1,24 @@ +{ + "name": "Playdapp Testnet", + "chain": "PDA", + "icon": "pda", + "rpc": ["https://subnets.avax.network/playdappte/testnet/rpc"], + "features": [{ "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Playdapp", + "symbol": "PDA", + "decimals": 18 + }, + "infoURL": "https://playdapp.io", + "shortName": "PDA-TESTNET", + "chainId": 12781, + "networkId": 12781, + "explorers": [ + { + "name": "Playdapp Testnet Explorer", + "url": "https://subnets-test.avax.network/playdappte", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-127823.json b/_data/chains/eip155-127823.json new file mode 100644 index 000000000000..170cfa17d1d7 --- /dev/null +++ b/_data/chains/eip155-127823.json @@ -0,0 +1,24 @@ +{ + "name": "Etherlink Shadownet Testnet", + "chain": "Etherlink", + "icon": "etherlink", + "chainId": 127823, + "networkId": 127823, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://etherlink.com", + "shortName": "etlst", + "nativeCurrency": { + "name": "tez", + "symbol": "XTZ", + "decimals": 18 + }, + "rpc": ["https://node.shadownet.etherlink.com"], + "faucets": ["https://faucet.etherlink.com"], + "explorers": [ + { + "name": "Etherlink Shadownet Testnet Explorer", + "url": "https://shadownet.explorer.etherlink.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-128.json b/_data/chains/eip155-128.json index 9044905212ba..c31ea28ac4c0 100644 --- a/_data/chains/eip155-128.json +++ b/_data/chains/eip155-128.json @@ -5,7 +5,7 @@ "https://http-mainnet.hecochain.com", "wss://ws-mainnet.hecochain.com" ], - "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], + "faucets": [], "nativeCurrency": { "name": "Huobi ECO Chain Native Token", "symbol": "HT", @@ -16,9 +16,11 @@ "chainId": 128, "networkId": 128, "slip44": 1010, - "explorers": [{ - "name": "hecoinfo", - "url": "https://hecoinfo.com", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "hecoinfo", + "url": "https://hecoinfo.com", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-1280.json b/_data/chains/eip155-1280.json index e78c0e8a5798..57ae6851f30a 100644 --- a/_data/chains/eip155-1280.json +++ b/_data/chains/eip155-1280.json @@ -1,23 +1,22 @@ -{ - "name": "HALO Mainnet", - "chain": "HALO", - "rpc": [ - "https://nodes.halo.land" - ], - "faucets": [ - ], - "nativeCurrency": { - "name": "HALO", - "symbol": "HO", - "decimals": 18 - }, - "infoURL": "https://halo.land/#/", - "shortName": "HO", - "chainId": 1280, - "networkId": 1280, - "explorers": [{ - "name": "HALOexplorer", - "url": "https://browser.halo.land", - "standard": "none" - }] -} +{ + "name": "HALO Mainnet", + "chain": "HALO", + "rpc": ["https://nodes.halo.land"], + "faucets": [], + "nativeCurrency": { + "name": "HALO", + "symbol": "HO", + "decimals": 18 + }, + "infoURL": "https://halo.land/#/", + "shortName": "HO", + "chainId": 1280, + "networkId": 1280, + "explorers": [ + { + "name": "HALOexplorer", + "url": "https://browser.halo.land", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-128123.json b/_data/chains/eip155-128123.json new file mode 100644 index 000000000000..833b572fafd4 --- /dev/null +++ b/_data/chains/eip155-128123.json @@ -0,0 +1,25 @@ +{ + "name": "Etherlink Ghostnet Testnet", + "chain": "Etherlink", + "icon": "etherlink", + "chainId": 128123, + "networkId": 128123, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://etherlink.com", + "shortName": "etlt", + "nativeCurrency": { + "name": "tez", + "symbol": "XTZ", + "decimals": 18 + }, + "rpc": ["https://node.ghostnet.etherlink.com"], + "faucets": ["https://faucet.etherlink.com"], + "explorers": [ + { + "name": "Etherlink Ghostnet Testnet Explorer", + "url": "https://testnet.explorer.etherlink.com", + "standard": "EIP3091" + } + ], + "status": "deprecated" +} diff --git a/_data/chains/eip155-1284.json b/_data/chains/eip155-1284.json index 5d1cdadab80c..e7ab364846d8 100644 --- a/_data/chains/eip155-1284.json +++ b/_data/chains/eip155-1284.json @@ -1,9 +1,22 @@ { "name": "Moonbeam", "chain": "MOON", + "icon": "moonbeam", "rpc": [ "https://rpc.api.moonbeam.network", - "wss://wss.api.moonbeam.network" + "wss://wss.api.moonbeam.network", + "https://moonbeam.public.blastapi.io", + "wss://moonbeam.public.blastapi.io", + "https://moonbeam-rpc.dwellir.com", + "wss://moonbeam-rpc.dwellir.com", + "https://moonbeam.api.onfinality.io/public", + "wss://moonbeam.api.onfinality.io/public-ws", + "https://moonbeam.unitedbloc.com", + "wss://moonbeam.unitedbloc.com", + "https://moonbeam-rpc.publicnode.com", + "wss://moonbeam-rpc.publicnode.com", + "https://moonbeam.drpc.org", + "wss://moonbeam.drpc.org" ], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-1285.json b/_data/chains/eip155-1285.json index c4a58304e9ee..15e749633f25 100644 --- a/_data/chains/eip155-1285.json +++ b/_data/chains/eip155-1285.json @@ -1,9 +1,22 @@ { "name": "Moonriver", "chain": "MOON", + "icon": "moonriver", "rpc": [ "https://rpc.api.moonriver.moonbeam.network", - "wss://wss.api.moonriver.moonbeam.network" + "wss://wss.api.moonriver.moonbeam.network", + "https://moonriver.public.blastapi.io", + "wss://moonriver.public.blastapi.io", + "https://moonriver-rpc.dwellir.com", + "wss://moonriver-rpc.dwellir.com", + "https://moonriver.api.onfinality.io/public", + "wss://moonriver.api.onfinality.io/public-ws", + "https://moonriver.unitedbloc.com", + "wss://moonriver.unitedbloc.com", + "https://moonriver-rpc.publicnode.com", + "wss://moonriver-rpc.publicnode.com", + "https://moonriver.drpc.org", + "wss://moonriver.drpc.org" ], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-1287.json b/_data/chains/eip155-1287.json index 9e8dd72672ae..e393ced0410e 100644 --- a/_data/chains/eip155-1287.json +++ b/_data/chains/eip155-1287.json @@ -1,20 +1,32 @@ { "name": "Moonbase Alpha", "chain": "MOON", + "icon": "moonbasealpha", "rpc": [ "https://rpc.api.moonbase.moonbeam.network", - "wss://wss.api.moonbase.moonbeam.network" + "wss://wss.api.moonbase.moonbeam.network", + "https://moonbase-alpha.public.blastapi.io", + "wss://moonbase-alpha.public.blastapi.io", + "https://moonbase-rpc.dwellir.com", + "wss://moonbase-rpc.dwellir.com", + "https://moonbeam-alpha.api.onfinality.io/public", + "wss://moonbeam-alpha.api.onfinality.io/public-ws", + "https://moonbase.unitedbloc.com", + "wss://moonbase.unitedbloc.com", + "https://moonbase-alpha.drpc.org", + "wss://moonbase-alpha.drpc.org" ], - "faucets": [], + "faucets": ["https://faucet.moonbeam.network/"], "nativeCurrency": { "name": "Dev", "symbol": "DEV", "decimals": 18 }, - "infoURL": "https://docs.moonbeam.network/networks/testnet/", + "infoURL": "https://docs.moonbeam.network/learn/platform/networks/moonbase/", "shortName": "mbase", "chainId": 1287, "networkId": 1287, + "slip44": 1, "explorers": [ { "name": "moonscan", diff --git a/_data/chains/eip155-1288.json b/_data/chains/eip155-1288.json index 174ff22f3e37..f256cb01c97c 100644 --- a/_data/chains/eip155-1288.json +++ b/_data/chains/eip155-1288.json @@ -15,4 +15,4 @@ "shortName": "mrock", "chainId": 1288, "networkId": 1288 -} \ No newline at end of file +} diff --git a/_data/chains/eip155-12890.json b/_data/chains/eip155-12890.json new file mode 100644 index 000000000000..f281cd416f39 --- /dev/null +++ b/_data/chains/eip155-12890.json @@ -0,0 +1,24 @@ +{ + "name": "Quantum Chain Testnet", + "chain": "tQNET", + "icon": "qnet", + "rpc": ["https://testnet-rpc.quantumscan.org"], + "faucets": [], + "nativeCurrency": { + "name": "Quantum Chain", + "symbol": "tQNET", + "decimals": 18 + }, + "infoURL": "https://quantumnetwork.gg", + "shortName": "tqnet", + "chainId": 12890, + "networkId": 12890, + "slip44": 1, + "explorers": [ + { + "name": "Quantum Scan Testnet", + "url": "https://testnet.quantumscan.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-12898.json b/_data/chains/eip155-12898.json new file mode 100644 index 000000000000..18e66ff31343 --- /dev/null +++ b/_data/chains/eip155-12898.json @@ -0,0 +1,25 @@ +{ + "name": "PlayFair Testnet Subnet", + "chain": "PLAYFAIR", + "icon": "playfair", + "rpc": [ + "https://rpc.letsplayfair.ai/ext/bc/2hhXFNp1jR4RuqvCmWQnBtt9CZnCmmyGr7TNTkxt7XY7pAzHMY/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTLT Token", + "symbol": "BTLT", + "decimals": 18 + }, + "infoURL": "https://letsplayfair.ai", + "shortName": "playfair", + "chainId": 12898, + "networkId": 12898, + "explorers": [ + { + "name": "Avalanche Subnet Explorer", + "url": "https://subnets-test.avax.network/letsplayfair", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-129.json b/_data/chains/eip155-129.json new file mode 100644 index 000000000000..818cf5e6d7fa --- /dev/null +++ b/_data/chains/eip155-129.json @@ -0,0 +1,25 @@ +{ + "name": "Innovator Chain", + "chain": "INNOVATOR", + "rpc": ["https://rpc.innovatorchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "INOV8", + "symbol": "INOV8", + "decimals": 18 + }, + "features": [], + "infoURL": "https://innovatorchain.com", + "shortName": "Innovator", + "chainId": 129, + "networkId": 129, + "icon": "innovator", + "explorers": [ + { + "name": "Innovator Explorer", + "url": "https://evm.innovatorchain.com", + "icon": "blockscout", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1291.json b/_data/chains/eip155-1291.json new file mode 100644 index 000000000000..e5619aad4723 --- /dev/null +++ b/_data/chains/eip155-1291.json @@ -0,0 +1,25 @@ +{ + "name": "Swisstronik Testnet", + "chain": "SWTR Testnet", + "rpc": ["https://json-rpc.testnet.swisstronik.com"], + "faucets": ["https://faucet.testnet.swisstronik.com"], + "nativeCurrency": { + "name": "Swisstronik", + "symbol": "SWTR", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.swisstronik.com", + "shortName": "swtr-testnet", + "chainId": 1291, + "networkId": 1291, + "slip44": 1, + "icon": "swisstronik", + "explorers": [ + { + "name": "Swisstronik Scout", + "url": "https://explorer-evm.testnet.swisstronik.com", + "standard": "none" + } + ] +} 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-1294.json b/_data/chains/eip155-1294.json new file mode 100644 index 000000000000..a1460f242de8 --- /dev/null +++ b/_data/chains/eip155-1294.json @@ -0,0 +1,28 @@ +{ + "name": "Bobabeam", + "chain": "Bobabeam", + "status": "deprecated", + "rpc": [ + "https://bobabeam.boba.network", + "wss://wss.bobabeam.boba.network", + "https://replica.bobabeam.boba.network", + "wss://replica-wss.bobabeam.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Bobabeam", + "chainId": 1294, + "networkId": 1294, + "explorers": [ + { + "name": "Bobabeam block explorer", + "url": "https://blockexplorer.bobabeam.boba.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1297.json b/_data/chains/eip155-1297.json new file mode 100644 index 000000000000..4b6fe10bdd60 --- /dev/null +++ b/_data/chains/eip155-1297.json @@ -0,0 +1,29 @@ +{ + "name": "Bobabase Testnet", + "chain": "Bobabase Testnet", + "status": "deprecated", + "rpc": [ + "https://bobabase.boba.network", + "wss://wss.bobabase.boba.network", + "https://replica.bobabase.boba.network", + "wss://replica-wss.bobabase.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Bobabase", + "chainId": 1297, + "networkId": 1297, + "slip44": 1, + "explorers": [ + { + "name": "Bobabase block explorer", + "url": "https://blockexplorer.bobabase.boba.network", + "standard": "none" + } + ] +} 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-13.json b/_data/chains/eip155-13.json index 0d9b55bbd5fc..6cacd7d04832 100644 --- a/_data/chains/eip155-13.json +++ b/_data/chains/eip155-13.json @@ -1,10 +1,7 @@ { "name": "Diode Testnet Staging", "chain": "DIODE", - "rpc": [ - "https://staging.diode.io:8443/", - "wss://staging.diode.io:8443/ws" - ], + "rpc": ["https://staging.diode.io:8443/", "wss://staging.diode.io:8443/ws"], "faucets": [], "nativeCurrency": { "name": "Staging Diodes", @@ -14,5 +11,6 @@ "infoURL": "https://diode.io/staging", "shortName": "dstg", "chainId": 13, - "networkId": 13 + "networkId": 13, + "slip44": 1 } 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-13000.json b/_data/chains/eip155-13000.json new file mode 100644 index 000000000000..662bbefa7342 --- /dev/null +++ b/_data/chains/eip155-13000.json @@ -0,0 +1,22 @@ +{ + "name": "SPS", + "chain": "SPS", + "rpc": ["https://rpc.ssquad.games"], + "faucets": [], + "nativeCurrency": { + "name": "ECG", + "symbol": "ECG", + "decimals": 18 + }, + "infoURL": "https://ssquad.games/", + "shortName": "SPS", + "chainId": 13000, + "networkId": 13000, + "explorers": [ + { + "name": "SPS Explorer", + "url": "http://spsscan.ssquad.games", + "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-13068200.json b/_data/chains/eip155-13068200.json new file mode 100644 index 000000000000..b9fe44adaae7 --- /dev/null +++ b/_data/chains/eip155-13068200.json @@ -0,0 +1,25 @@ +{ + "name": "COTI Devnet", + "title": "COTI Devnet", + "chain": "COTI", + "icon": "coti", + "rpc": ["https://devnet.coti.io/rpc"], + "faucets": ["https://faucet.coti.io"], + "nativeCurrency": { + "name": "COTI2", + "symbol": "COTI2", + "decimals": 18 + }, + "infoURL": "https://coti.io/", + "shortName": "coti-devnet", + "chainId": 13068200, + "networkId": 13068200, + "explorers": [ + { + "name": "coti devnet explorer", + "url": "https://explorer-devnet.coti.io", + "icon": "ethernal", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-131.json b/_data/chains/eip155-131.json new file mode 100644 index 000000000000..cc84cf2da182 --- /dev/null +++ b/_data/chains/eip155-131.json @@ -0,0 +1,28 @@ +{ + "name": "Engram Testnet", + "chain": "tGRAM", + "icon": "engram", + "rpc": [ + "https://tokioswift.engram.tech", + "https://tokio-archive.engram.tech" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Engram Tokio Testnet", + "symbol": "tGRAM", + "decimals": 18 + }, + "infoURL": "https://engramnet.io", + "shortName": "tgram", + "chainId": 131, + "networkId": 131, + "explorers": [ + { + "name": "blockscout", + "url": "https://tokioscan-v2.engram.tech", + "icon": "engram", + "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-1311.json b/_data/chains/eip155-1311.json new file mode 100644 index 000000000000..eaf1aa12cf2f --- /dev/null +++ b/_data/chains/eip155-1311.json @@ -0,0 +1,22 @@ +{ + "name": "Dos Fuji Subnet", + "chain": "DOS", + "rpc": ["https://test.doschain.com/jsonrpc"], + "faucets": [], + "nativeCurrency": { + "name": "Dos Native Token", + "symbol": "DOS", + "decimals": 18 + }, + "infoURL": "http://doschain.io/", + "shortName": "TDOS", + "chainId": 1311, + "networkId": 1311, + "explorers": [ + { + "name": "dos-testnet", + "url": "https://test.doscan.io", + "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-1313114.json b/_data/chains/eip155-1313114.json index 01182ba2bd49..2acec66e04ca 100644 --- a/_data/chains/eip155-1313114.json +++ b/_data/chains/eip155-1313114.json @@ -1,26 +1,26 @@ { "name": "Etho Protocol", - "chain": "ETHO", - "rpc": [ - "https://rpc.ethoprotocol.com" - ], + "chain": "ETHO", + "rpc": ["https://rpc.ethoprotocol.com"], - "faucets": [], - "nativeCurrency": { - "name": "Etho Protocol", - "symbol": "ETHO", - "decimals": 18 - }, + "faucets": [], + "nativeCurrency": { + "name": "Etho Protocol", + "symbol": "ETHO", + "decimals": 18 + }, - "infoURL": "https://ethoprotocol.com", - "shortName": "etho", - "chainId": 1313114, - "networkId": 1313114, - "slip44": 1313114, + "infoURL": "https://ethoprotocol.com", + "shortName": "etho", + "chainId": 1313114, + "networkId": 1313114, + "slip44": 1313114, - "explorers": [{ + "explorers": [ + { "name": "blockscout", "url": "https://explorer.ethoprotocol.com", "standard": "none" - }] - } + } + ] +} diff --git a/_data/chains/eip155-131313.json b/_data/chains/eip155-131313.json new file mode 100644 index 000000000000..19f7e50e9c58 --- /dev/null +++ b/_data/chains/eip155-131313.json @@ -0,0 +1,17 @@ +{ + "name": "Odyssey Chain (Testnet)", + "chain": "DIONE", + "rpc": ["https://testnode.dioneprotocol.com/ext/bc/D/rpc"], + "faucets": ["https://faucet.dioneprotocol.com/"], + "features": [{ "name": "EIP155" }], + "infoURL": "https://www.dioneprotocol.com/", + "shortName": "DIONE", + "chainId": 131313, + "networkId": 131313, + "icon": "odyssey", + "nativeCurrency": { + "name": "DIONE", + "symbol": "DIONE", + "decimals": 18 + } +} diff --git a/_data/chains/eip155-1313161554.json b/_data/chains/eip155-1313161554.json index 9e1e94eec23e..d887b330506b 100644 --- a/_data/chains/eip155-1313161554.json +++ b/_data/chains/eip155-1313161554.json @@ -2,7 +2,9 @@ "name": "Aurora Mainnet", "chain": "NEAR", "rpc": [ - "https://mainnet.aurora.dev" + "https://mainnet.aurora.dev", + "https://aurora.drpc.org", + "wss://aurora.drpc.org" ], "faucets": [], "nativeCurrency": { @@ -16,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 89d059574b0d..b4b1d8318c3d 100644 --- a/_data/chains/eip155-1313161555.json +++ b/_data/chains/eip155-1313161555.json @@ -2,7 +2,9 @@ "name": "Aurora Testnet", "chain": "NEAR", "rpc": [ - "https://testnet.aurora.dev/" + "https://testnet.aurora.dev/", + "https://aurora-testnet.drpc.org", + "wss://aurora-testnet.drpc.org" ], "faucets": [], "nativeCurrency": { @@ -14,10 +16,11 @@ "shortName": "aurora-testnet", "chainId": 1313161555, "networkId": 1313161555, + "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-1313161556.json b/_data/chains/eip155-1313161556.json index deb7e1186003..e173b1934281 100644 --- a/_data/chains/eip155-1313161556.json +++ b/_data/chains/eip155-1313161556.json @@ -1,9 +1,7 @@ { "name": "Aurora Betanet", "chain": "NEAR", - "rpc": [ - "https://betanet.aurora.dev/" - ], + "rpc": [], "faucets": [], "nativeCurrency": { "name": "Ether", diff --git a/_data/chains/eip155-1313161560.json b/_data/chains/eip155-1313161560.json new file mode 100644 index 000000000000..aefba1dba31e --- /dev/null +++ b/_data/chains/eip155-1313161560.json @@ -0,0 +1,23 @@ +{ + "name": "PowerGold", + "chain": "NEAR", + "rpc": ["https://powergold.aurora.dev"], + "icon": "powergold", + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.powergold.tech", + "shortName": "powergold", + "chainId": 1313161560, + "networkId": 1313161560, + "explorers": [ + { + "name": "PowerGold explorer", + "url": "https://explorer.powergold.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-1313500.json b/_data/chains/eip155-1313500.json index d5cc65154e9c..0f0f1e7edb6d 100644 --- a/_data/chains/eip155-1313500.json +++ b/_data/chains/eip155-1313500.json @@ -1,9 +1,7 @@ { "name": "Xerom", "chain": "XERO", - "rpc": [ - "https://rpc.xerom.org" - ], + "rpc": ["https://rpc.xerom.org"], "faucets": [], "nativeCurrency": { "name": "Xerom Ether", diff --git a/_data/chains/eip155-1314.json b/_data/chains/eip155-1314.json new file mode 100644 index 000000000000..85e6543fc7fa --- /dev/null +++ b/_data/chains/eip155-1314.json @@ -0,0 +1,23 @@ +{ + "name": "Alyx Mainnet", + "chain": "ALYX", + "rpc": ["https://rpc.alyxchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Alyx Chain Native Token", + "symbol": "ALYX", + "decimals": 18 + }, + "infoURL": "https://www.alyxchain.com", + "shortName": "alyx", + "chainId": 1314, + "networkId": 1314, + "explorers": [ + { + "name": "alyxscan", + "url": "https://www.alyxscan.com", + "standard": "EIP3091" + } + ], + "icon": "alyx" +} diff --git a/_data/chains/eip155-131419.json b/_data/chains/eip155-131419.json new file mode 100644 index 000000000000..725e14f51bea --- /dev/null +++ b/_data/chains/eip155-131419.json @@ -0,0 +1,24 @@ +{ + "name": "ETND Chain Mainnets", + "chain": "ETND", + "rpc": ["https://rpc.node1.etnd.pro/"], + "faucets": [], + "nativeCurrency": { + "name": "ETND", + "symbol": "ETND", + "decimals": 18 + }, + "infoURL": "https://www.etnd.pro", + "shortName": "ETND", + "chainId": 131419, + "networkId": 131419, + "icon": "ETND", + "explorers": [ + { + "name": "etndscan", + "url": "https://scan.etnd.pro", + "icon": "ETND", + "standard": "none" + } + ] +} 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-1319.json b/_data/chains/eip155-1319.json new file mode 100755 index 000000000000..0523800012a4 --- /dev/null +++ b/_data/chains/eip155-1319.json @@ -0,0 +1,29 @@ +{ + "name": "AIA Mainnet", + "chain": "AIA", + "icon": "aia", + "rpc": [ + "https://aia-dataseed1.aiachain.org", + "https://aia-dataseed2.aiachain.org", + "https://aia-dataseed3.aiachain.org", + "https://aia-dataseed4.aiachain.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "AIA Mainnet", + "symbol": "AIA", + "decimals": 18 + }, + "infoURL": "https://aiachain.org/", + "shortName": "aia", + "chainId": 1319, + "networkId": 1319, + + "explorers": [ + { + "name": "AIA Chain Explorer Mainnet", + "url": "https://aiascan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-132.json b/_data/chains/eip155-132.json new file mode 100644 index 000000000000..69a93a69e30c --- /dev/null +++ b/_data/chains/eip155-132.json @@ -0,0 +1,15 @@ +{ + "name": "Namefi Chain Mainnet", + "chain": "NFIC", + "rpc": ["https://rpc.chain.namefi.io"], + "faucets": [], + "nativeCurrency": { + "name": "Namefi Coin", + "symbol": "NFIC", + "decimals": 18 + }, + "infoURL": "https://namefi.io/", + "shortName": "nfic", + "chainId": 132, + "networkId": 132 +} diff --git a/_data/chains/eip155-1320.json b/_data/chains/eip155-1320.json new file mode 100755 index 000000000000..f986bdba2d24 --- /dev/null +++ b/_data/chains/eip155-1320.json @@ -0,0 +1,25 @@ +{ + "name": "AIA Testnet", + "chain": "AIA", + "icon": "aia", + "rpc": ["https://aia-dataseed1-testnet.aiachain.org"], + "faucets": ["https://aia-faucet-testnet.aiachain.org"], + "nativeCurrency": { + "name": "AIA Testnet", + "symbol": "AIA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://aiachain.org", + "shortName": "aiatestnet", + "chainId": 1320, + "networkId": 1320, + "slip44": 1, + "explorers": [ + { + "name": "AIA Chain Explorer Testnet", + "url": "https://testnet.aiascan.com", + "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 new file mode 100644 index 000000000000..e31af4100357 --- /dev/null +++ b/_data/chains/eip155-133.json @@ -0,0 +1,28 @@ +{ + "name": "HashKey Chain Testnet", + "title": "HashKey Chain Testnet", + "chain": "HashKey Chain Testnet", + "rpc": ["https://hashkeychain-testnet.alt.technology"], + "faucets": [], + "nativeCurrency": { + "name": "HashKey EcoPoints", + "symbol": "HSK", + "decimals": 18 + }, + "infoURL": "https://hashkey.cloud", + "shortName": "HSKT", + "chainId": 133, + "networkId": 133, + "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-13308.json b/_data/chains/eip155-13308.json new file mode 100644 index 000000000000..5349fd694008 --- /dev/null +++ b/_data/chains/eip155-13308.json @@ -0,0 +1,25 @@ +{ + "name": "Credit Smart Chain", + "chain": "CREDIT", + "rpc": ["https://rpc.creditsmartchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Credit", + "symbol": "CREDIT", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://creditsmartchain.com", + "shortName": "Credit", + "chainId": 13308, + "networkId": 13308, + "icon": "credit", + "explorers": [ + { + "name": "Creditscan", + "url": "https://scan.creditsmartchain.com", + "icon": "credit", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-13337.json b/_data/chains/eip155-13337.json new file mode 100644 index 000000000000..5e993cec26c3 --- /dev/null +++ b/_data/chains/eip155-13337.json @@ -0,0 +1,33 @@ +{ + "name": "Beam Testnet", + "chain": "BEAM", + "rpc": [ + "https://build.onbeam.com/rpc/testnet", + "wss://build.onbeam.com/ws/testnet", + "https://subnets.avax.network/beam/testnet/rpc", + "wss://subnets.avax.network/beam/testnet/ws" + ], + "features": [{ "name": "EIP1559" }], + "faucets": [ + "https://faucet.avax.network/?subnet=beam", + "https://faucet.onbeam.com" + ], + "nativeCurrency": { + "name": "Beam", + "symbol": "BEAM", + "decimals": 18 + }, + "infoURL": "https://www.onbeam.com", + "shortName": "beam-testnet", + "icon": "beam", + "chainId": 13337, + "networkId": 13337, + "slip44": 1, + "explorers": [ + { + "name": "Beam Explorer", + "url": "https://subnets-test.avax.network/beam", + "standard": "EIP3091" + } + ] +} 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-1337.json b/_data/chains/eip155-1337.json index 990b6aaf6647..c9dc9907d67a 100644 --- a/_data/chains/eip155-1337.json +++ b/_data/chains/eip155-1337.json @@ -1,16 +1,17 @@ { - "name": "CENNZnet old", - "chain": "CENNZnet", - "rpc": [], + "name": "Geth Testnet", + "title": "Go Ethereum (Geth) Private Testnet", + "chain": "ETH", + "rpc": ["http://127.0.0.1:8545"], "faucets": [], "nativeCurrency": { - "name": "CPAY", - "symbol": "CPAY", + "name": "Geth Testnet Ether", + "symbol": "ETH", "decimals": 18 }, - "infoURL": "https://cennz.net", - "shortName": "cennz-old", + "infoURL": "https://geth.ethereum.org", + "shortName": "geth", "chainId": 1337, "networkId": 1337, - "status": "deprecated" + "slip44": 1 } 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-13371.json b/_data/chains/eip155-13371.json new file mode 100644 index 000000000000..e5bcf7f5f24c --- /dev/null +++ b/_data/chains/eip155-13371.json @@ -0,0 +1,28 @@ +{ + "name": "Immutable zkEVM", + "chain": "Immutable zkEVM", + "rpc": [ + "https://rpc.immutable.com", + "https://immutable-zkevm.drpc.org", + "wss://immutable-zkevm.drpc.org" + ], + "faucets": ["https://docs.immutable.com/docs/zkEVM/guides/faucet"], + "nativeCurrency": { + "name": "IMX", + "symbol": "IMX", + "decimals": 18 + }, + "infoURL": "https://www.immutable.com", + "shortName": "imx", + "chainId": 13371, + "networkId": 13371, + "icon": "immutable", + "explorers": [ + { + "name": "Immutable explorer", + "url": "https://explorer.immutable.com", + "standard": "EIP3091", + "icon": "immutable" + } + ] +} diff --git a/_data/chains/eip155-13371337.json b/_data/chains/eip155-13371337.json index 2fe6fc336061..a0b7c85fe7fb 100644 --- a/_data/chains/eip155-13371337.json +++ b/_data/chains/eip155-13371337.json @@ -1,9 +1,7 @@ { "name": "PepChain Churchill", "chain": "PEP", - "rpc": [ - "https://churchill-rpc.pepchain.io" - ], + "rpc": ["https://churchill-rpc.pepchain.io"], "faucets": [], "nativeCurrency": { "name": "PepChain Churchill Ether", @@ -14,4 +12,4 @@ "shortName": "tpep", "chainId": 13371337, "networkId": 13371337 -} \ No newline at end of file +} diff --git a/_data/chains/eip155-1337702.json b/_data/chains/eip155-1337702.json index 1b33f38e90eb..55a33f009bf8 100644 --- a/_data/chains/eip155-1337702.json +++ b/_data/chains/eip155-1337702.json @@ -2,12 +2,10 @@ "name": "Kintsugi", "title": "Kintsugi merge testnet", "chain": "ETH", - "rpc": [ - "https://rpc.kintsugi.themerge.dev" - ], - "faucets": [ + "rpc": ["https://rpc.kintsugi.themerge.dev"], + "faucets": [ "http://fauceth.komputing.org?chain=1337702&address=${ADDRESS}", - "https://faucet.kintsugi.themerge.dev" + "https://faucet.kintsugi.themerge.dev" ], "nativeCurrency": { "name": "kintsugi Ethere", @@ -18,9 +16,11 @@ "shortName": "kintsugi", "chainId": 1337702, "networkId": 1337702, - "explorers": [{ - "name": "kintsugi explorer", - "url": "https://explorer.kintsugi.themerge.dev", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "kintsugi explorer", + "url": "https://explorer.kintsugi.themerge.dev", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-1337802.json b/_data/chains/eip155-1337802.json index 7d77a0d002e9..0f05582bda84 100644 --- a/_data/chains/eip155-1337802.json +++ b/_data/chains/eip155-1337802.json @@ -1,14 +1,11 @@ { "name": "Kiln", "chain": "ETH", - "network": "testnet", - "rpc": [ - "https://rpc.kiln.themerge.dev" - ], + "rpc": ["https://rpc.kiln.themerge.dev"], "faucets": [ - "https://faucet.kiln.themerge.dev", - "https://kiln-faucet.pk910.de", - "https://kilnfaucet.com" + "https://faucet.kiln.themerge.dev", + "https://kiln-faucet.pk910.de", + "https://kilnfaucet.com" ], "nativeCurrency": { "name": "Testnet ETH", @@ -20,10 +17,12 @@ "chainId": 1337802, "networkId": 1337802, "icon": "ethereum", - "explorers": [{ - "name": "Kiln Explorer", - "url": "https://explorer.kiln.themerge.dev", - "icon": "ethereum", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "Kiln Explorer", + "url": "https://explorer.kiln.themerge.dev", + "icon": "ethereum", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-1337803.json b/_data/chains/eip155-1337803.json new file mode 100644 index 000000000000..95bbfc8fd0c7 --- /dev/null +++ b/_data/chains/eip155-1337803.json @@ -0,0 +1,27 @@ +{ + "name": "Zhejiang", + "chain": "ETH", + "rpc": ["https://rpc.zhejiang.ethpandaops.io"], + "faucets": [ + "https://faucet.zhejiang.ethpandaops.io", + "https://zhejiang-faucet.pk910.de" + ], + "nativeCurrency": { + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zhejiang.ethpandaops.io", + "shortName": "zhejiang", + "chainId": 1337803, + "networkId": 1337803, + "icon": "ethereum", + "explorers": [ + { + "name": "Zhejiang Explorer", + "url": "https://zhejiang.beaconcha.in", + "icon": "ethereum", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1338.json b/_data/chains/eip155-1338.json new file mode 100644 index 000000000000..c9dcfdebf38e --- /dev/null +++ b/_data/chains/eip155-1338.json @@ -0,0 +1,23 @@ +{ + "name": "Elysium Testnet", + "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged", + "chain": "Atlantis", + "rpc": ["https://rpc.atlantischain.network"], + "faucets": ["https://faucet.atlantischain.network"], + "nativeCurrency": { + "name": "ELY", + "symbol": "ELY", + "decimals": 18 + }, + "infoURL": "https://elysiumchain.tech", + "shortName": "ATL", + "chainId": 1338, + "networkId": 1338, + "explorers": [ + { + "name": "Atlantis explorer", + "url": "https://blockscout.atlantischain.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-13381.json b/_data/chains/eip155-13381.json index 6b580861a716..f5d2f74147e0 100644 --- a/_data/chains/eip155-13381.json +++ b/_data/chains/eip155-13381.json @@ -1,10 +1,7 @@ { "name": "Phoenix Mainnet", "chain": "Phoenix", - "network": "mainnet", - "rpc": [ - "https://rpc.phoenixplorer.com/" - ], + "rpc": ["https://rpc.phoenixplorer.com/"], "faucets": [], "nativeCurrency": { "name": "Phoenix", @@ -16,10 +13,11 @@ "chainId": 13381, "networkId": 13381, "icon": "phoenix", - "explorers": [{ - "name": "phoenixplorer", - "url": "https://phoenixplorer.com", - "icon": "phoenixplorer", - "standard": "EIP3091" - }] -} \ No newline at end of file + "explorers": [ + { + "name": "phoenixplorer", + "url": "https://phoenixplorer.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1339.json b/_data/chains/eip155-1339.json new file mode 100644 index 000000000000..6f25dcd554e7 --- /dev/null +++ b/_data/chains/eip155-1339.json @@ -0,0 +1,29 @@ +{ + "name": "Elysium Mainnet", + "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain.", + "chain": "Elysium", + "rpc": ["https://rpc.elysiumchain.tech", "https://rpc.elysiumchain.us"], + "faucets": ["https://faucet.elysiumchain.tech"], + "nativeCurrency": { + "name": "ELY", + "symbol": "ELY", + "decimals": 18 + }, + "infoURL": "https://elysiumchain.tech/", + "shortName": "ELY", + "chainId": 1339, + "networkId": 1339, + "icon": "elysium", + "explorers": [ + { + "name": "Elysium mainnet explorer", + "url": "https://explorer.elysiumchain.tech", + "standard": "EIP3091" + }, + { + "name": "Elysium blockscout explorer", + "url": "https://blockscout.elysiumchain.tech", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-13396.json b/_data/chains/eip155-13396.json new file mode 100644 index 000000000000..8c3ca601a806 --- /dev/null +++ b/_data/chains/eip155-13396.json @@ -0,0 +1,28 @@ +{ + "name": "Masa", + "chain": "MASA", + "icon": "masa", + "rpc": ["https://subnets.avax.network/masanetwork/mainnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Masa Token", + "symbol": "MASA", + "decimals": 18 + }, + "infoURL": "https://masa.finance", + "shortName": "masa", + "chainId": 13396, + "networkId": 13396, + "explorers": [ + { + "name": "Masa Explorer", + "url": "https://subnets.avax.network/masa", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-134.json b/_data/chains/eip155-134.json new file mode 100644 index 000000000000..4d2fb367fbab --- /dev/null +++ b/_data/chains/eip155-134.json @@ -0,0 +1,24 @@ +{ + "name": "iExec Sidechain", + "chain": "Bellecour", + "icon": "rlc", + "rpc": ["https://bellecour.iex.ec"], + "faucets": [], + "nativeCurrency": { + "name": "xRLC", + "symbol": "xRLC", + "decimals": 18 + }, + "infoURL": "https://iex.ec", + "shortName": "rlc", + "chainId": 134, + "networkId": 134, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.bellecour.iex.ec", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1343.json b/_data/chains/eip155-1343.json new file mode 100644 index 000000000000..05ee7d4d04c6 --- /dev/null +++ b/_data/chains/eip155-1343.json @@ -0,0 +1,27 @@ +{ + "name": "Blitz Subnet", + "chain": "BLITZ", + "rpc": ["https://subnets.avax.network/blitz/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "BLITZ GAS", + "symbol": "BGAS", + "decimals": 18 + }, + "infoURL": "https://blitz.gg", + "shortName": "blitz", + "chainId": 1343, + "networkId": 1343, + "explorers": [ + { + "name": "BLITZ Explorer", + "url": "https://subnets-test.avax.network/blitz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-13473.json b/_data/chains/eip155-13473.json new file mode 100644 index 000000000000..1cfa0fba8262 --- /dev/null +++ b/_data/chains/eip155-13473.json @@ -0,0 +1,29 @@ +{ + "name": "Immutable zkEVM Testnet", + "chain": "Immutable zkEVM", + "rpc": [ + "https://rpc.testnet.immutable.com", + "https://immutable-zkevm-testnet.drpc.org", + "wss://immutable-zkevm-testnet.drpc.org" + ], + "faucets": ["https://docs.immutable.com/docs/zkEVM/guides/faucet"], + "nativeCurrency": { + "name": "Test IMX", + "symbol": "tIMX", + "decimals": 18 + }, + "infoURL": "https://www.immutable.com", + "shortName": "imx-testnet", + "chainId": 13473, + "networkId": 13473, + "slip44": 1, + "icon": "immutable", + "explorers": [ + { + "name": "Immutable Testnet explorer", + "url": "https://explorer.testnet.immutable.com", + "standard": "EIP3091", + "icon": "immutable" + } + ] +} diff --git a/_data/chains/eip155-135.json b/_data/chains/eip155-135.json new file mode 100644 index 000000000000..1a694696c746 --- /dev/null +++ b/_data/chains/eip155-135.json @@ -0,0 +1,24 @@ +{ + "name": "Alyx Chain Testnet", + "chain": "Alyx Chain Testnet", + "rpc": ["https://testnet-rpc.alyxchain.com"], + "faucets": ["https://faucet.alyxchain.com"], + "nativeCurrency": { + "name": "Alyx Testnet Native Token", + "symbol": "ALYX", + "decimals": 18 + }, + "infoURL": "https://www.alyxchain.com", + "shortName": "AlyxTestnet", + "chainId": 135, + "networkId": 135, + "slip44": 1, + "explorers": [ + { + "name": "alyx testnet scan", + "url": "https://testnet.alyxscan.com", + "standard": "EIP3091" + } + ], + "icon": "alyx" +} diff --git a/_data/chains/eip155-1350216234.json b/_data/chains/eip155-1350216234.json new file mode 100644 index 000000000000..dfa720b70f5d --- /dev/null +++ b/_data/chains/eip155-1350216234.json @@ -0,0 +1,26 @@ +{ + "name": "SKALE Titan Hub", + "chain": "parallel-stormy-spica", + "icon": "titan", + "rpc": [ + "https://mainnet.skalenodes.com/v1/parallel-stormy-spica", + "wss://mainnet.skalenodes.com/v1/ws/parallel-stormy-spica" + ], + "faucets": ["https://sfuel.skale.network/"], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "", + "shortName": "titan-mainnet", + "chainId": 1350216234, + "networkId": 1350216234, + "explorers": [ + { + "name": "Blockscout", + "url": "https://parallel-stormy-spica.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-13505.json b/_data/chains/eip155-13505.json new file mode 100644 index 000000000000..a6893dc5ce40 --- /dev/null +++ b/_data/chains/eip155-13505.json @@ -0,0 +1,33 @@ +{ + "name": "Gravity Alpha Testnet Sepolia", + "chain": "Gravity", + "rpc": ["https://rpc-sepolia.gravity.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Gravity", + "symbol": "G", + "decimals": 18 + }, + "features": [ + { "name": "EIP155" }, + { "name": "EIP1559" }, + { "name": "EIP1108" } + ], + "infoURL": "https://gravity.xyz", + "shortName": "gravitysep", + "chainId": 13505, + "networkId": 13505, + "icon": "gravity", + "explorers": [ + { + "name": "Gravity Alpha Testnet Sepolia Explorer", + "url": "https://explorer-sepolia.gravity.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [] + } +} diff --git a/_data/chains/eip155-1351057110.json b/_data/chains/eip155-1351057110.json new file mode 100644 index 000000000000..704805872a6d --- /dev/null +++ b/_data/chains/eip155-1351057110.json @@ -0,0 +1,25 @@ +{ + "name": "Chaos (SKALE Testnet)", + "title": "Chaos Testnet", + "chain": "staging-fast-active-bellatrix", + "rpc": ["https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix"], + "faucets": ["https://sfuel.skale.network/staging/chaos"], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://docs.skale.network/develop/", + "shortName": "chaos-tenet", + "chainId": 1351057110, + "networkId": 1351057110, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://staging-fast-active-bellatrix.explorer.staging-v3.skalenodes.com", + "icon": "chaos", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1353.json b/_data/chains/eip155-1353.json new file mode 100644 index 000000000000..635b04360780 --- /dev/null +++ b/_data/chains/eip155-1353.json @@ -0,0 +1,24 @@ +{ + "name": "CIC Chain Mainnet", + "chain": "CIC", + "rpc": ["https://xapi.cicscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Crazy Internet Coin", + "symbol": "CIC", + "decimals": 18 + }, + "infoURL": "https://www.cicchain.net", + "shortName": "CIC", + "chainId": 1353, + "networkId": 1353, + "icon": "cicchain", + "explorers": [ + { + "name": "CICscan", + "url": "https://cicscan.com", + "icon": "cicchain", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-136.json b/_data/chains/eip155-136.json new file mode 100644 index 000000000000..69dad525d32f --- /dev/null +++ b/_data/chains/eip155-136.json @@ -0,0 +1,25 @@ +{ + "name": "Deamchain Mainnet", + "chain": "Deamchain", + "icon": "deam", + "rpc": ["https://mainnet.deamchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Deamchain Native Token", + "symbol": "DEAM", + "decimals": 18 + }, + "infoURL": "https://deamchain.com", + "shortName": "deam", + "chainId": 136, + "networkId": 136, + + "explorers": [ + { + "name": "Deamchain Block Explorer", + "url": "https://scan.deamchain.com", + "standard": "EIP3091", + "icon": "deam" + } + ] +} diff --git a/_data/chains/eip155-13600.json b/_data/chains/eip155-13600.json new file mode 100644 index 000000000000..e0f131114eb9 --- /dev/null +++ b/_data/chains/eip155-13600.json @@ -0,0 +1,25 @@ +{ + "name": "Kronobit Mainnet", + "title": "Kronobit Mainnet", + "chain": "KNB", + "rpc": ["https://mainnet-rpc.qbitscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Kronobit", + "symbol": "KNB", + "decimals": 18 + }, + "infoURL": "https://kronobit.org", + "shortName": "KNB", + "chainId": 13600, + "networkId": 13600, + "icon": "kronobit", + "explorers": [ + { + "name": "qbitscan", + "url": "https://explorer.qbitscan.com", + "icon": "kronobit", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1369.json b/_data/chains/eip155-1369.json new file mode 100644 index 000000000000..42a77d073a94 --- /dev/null +++ b/_data/chains/eip155-1369.json @@ -0,0 +1,23 @@ +{ + "name": "Zafirium Mainnet", + "chain": "ZAFIC", + "icon": "zafirium", + "rpc": ["https://mainnet.zakumi.io"], + "faucets": [], + "nativeCurrency": { + "name": "Zakumi Chain Native Token", + "symbol": "ZAFIC", + "decimals": 18 + }, + "infoURL": "https://www.zakumi.io", + "shortName": "zafic", + "chainId": 1369, + "networkId": 1369, + "explorers": [ + { + "name": "zafirium-explorer", + "url": "https://explorer.zakumi.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-137.json b/_data/chains/eip155-137.json index 175cb125a384..33be861bc64e 100644 --- a/_data/chains/eip155-137.json +++ b/_data/chains/eip155-137.json @@ -1,28 +1,43 @@ { - "name": "Polygon Mainnet", - "chain": "Polygon", - "rpc": [ - "https://polygon-rpc.com/", - "https://rpc-mainnet.matic.network", - "https://matic-mainnet.chainstacklabs.com", - "https://rpc-mainnet.maticvigil.com", - "https://rpc-mainnet.matic.quiknode.pro", - "https://matic-mainnet-full-rpc.bwarelabs.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "MATIC", - "symbol": "MATIC", - "decimals": 18 + "name": "Polygon Mainnet", + "chain": "Polygon", + "icon": "polygon", + "rpc": [ + "https://polygon-rpc.com/", + "https://rpc-mainnet.matic.network", + "https://matic-mainnet.chainstacklabs.com", + "https://rpc-mainnet.maticvigil.com", + "https://rpc-mainnet.matic.quiknode.pro", + "https://matic-mainnet-full-rpc.bwarelabs.com", + "https://polygon-bor-rpc.publicnode.com", + "wss://polygon-bor-rpc.publicnode.com", + "https://polygon.gateway.tenderly.co", + "wss://polygon.gateway.tenderly.co", + "https://polygon.drpc.org", + "wss://polygon.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "POL", + "symbol": "POL", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/", + "shortName": "pol", + "chainId": 137, + "networkId": 137, + "slip44": 966, + "explorers": [ + { + "name": "polygonscan", + "url": "https://polygonscan.com", + "standard": "EIP3091" }, - "infoURL": "https://polygon.technology/", - "shortName": "MATIC", - "chainId": 137, - "networkId": 137, - "slip44": 966, - "explorers": [{ - "name": "polygonscan", - "url": "https://polygonscan.com", - "standard": "EIP3091" - }] + { + "name": "dexguru", + "url": "https://polygon.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-1370.json b/_data/chains/eip155-1370.json new file mode 100644 index 000000000000..81ef64b06859 --- /dev/null +++ b/_data/chains/eip155-1370.json @@ -0,0 +1,27 @@ +{ + "name": "Ramestta Mainnet", + "chain": "Ramestta", + "icon": "ramestta", + "rpc": [ + "https://blockchain.ramestta.com", + "https://blockchain2.ramestta.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rama", + "symbol": "RAMA", + "decimals": 18 + }, + "infoURL": "https://www.ramestta.com", + "shortName": "RAMA", + "chainId": 1370, + "networkId": 1370, + "explorers": [ + { + "name": "ramascan", + "url": "https://ramascan.com", + "icon": "ramestta", + "standard": "EIP3091" + } + ] +} 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-13766.json b/_data/chains/eip155-13766.json new file mode 100644 index 000000000000..e609062afffb --- /dev/null +++ b/_data/chains/eip155-13766.json @@ -0,0 +1,26 @@ +{ + "name": "Trexx", + "chain": "Trexx", + "icon": "trexx", + "rpc": [ + "https://services.tanssi-mainnet.network/tanssi-2003", + "wss://services.tanssi-mainnet.network/tanssi-2003" + ], + "faucets": [], + "nativeCurrency": { + "name": "TRX", + "symbol": "TRX", + "decimals": 18 + }, + "infoURL": "https://trexx.com.br", + "shortName": "trexx", + "chainId": 13766, + "networkId": 13766, + "explorers": [ + { + "name": "Tanssi EVM Basic Explorer", + "url": "https://evmexplorer.tanssi-chains.network/?rpcUrl=https://services.tanssi-mainnet.network/tanssi-2003", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1377.json b/_data/chains/eip155-1377.json new file mode 100644 index 000000000000..643e79d7b569 --- /dev/null +++ b/_data/chains/eip155-1377.json @@ -0,0 +1,24 @@ +{ + "name": "Pingaksha testnet", + "chain": "Pingaksha", + "icon": "ramestta", + "rpc": ["https://testnet.ramestta.com"], + "faucets": [], + "nativeCurrency": { + "name": "Rama", + "symbol": "tRAMA", + "decimals": 18 + }, + "infoURL": "https://www.ramestta.com", + "shortName": "tRAMA", + "chainId": 1377, + "networkId": 1377, + "explorers": [ + { + "name": "Pingaksha", + "url": "https://pingaksha.ramascan.com", + "icon": "ramestta", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1379.json b/_data/chains/eip155-1379.json new file mode 100644 index 000000000000..d10cadebafc6 --- /dev/null +++ b/_data/chains/eip155-1379.json @@ -0,0 +1,24 @@ +{ + "name": "Kalar Chain", + "chain": "KLC", + "icon": "kalarchain", + "rpc": ["https://rpc-api.kalarchain.tech"], + "faucets": [], + "nativeCurrency": { + "name": "Kalar", + "symbol": "KLC", + "decimals": 18 + }, + "infoURL": "https://kalarchain.tech", + "shortName": "KLC", + "chainId": 1379, + "networkId": 1379, + "explorers": [ + { + "name": "kalarscan", + "url": "https://explorer.kalarchain.tech", + "icon": "kalarscan", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-138.json b/_data/chains/eip155-138.json new file mode 100644 index 000000000000..b241b6b0a5a7 --- /dev/null +++ b/_data/chains/eip155-138.json @@ -0,0 +1,40 @@ +{ + "name": "Defi Oracle Meta Mainnet", + "chain": "dfiometa", + "icon": "defioraclemeta", + "rpc": ["https://rpc.defi-oracle.io", "wss://wss.defi-oracle.io"], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://info.defi-oracle.io/", + "shortName": "dfio-meta-main", + "chainId": 138, + "networkId": 1, + "slip44": 60, + "ens": { + "registry": "0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85" + }, + "explorers": [ + { + "name": "Blockscout Explorer", + "url": "https://blockscout.defi-oracle.io", + "standard": "none" + }, + { + "name": "Quorum Explorer", + "url": "https://explorer.defi-oracle.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1380012617.json b/_data/chains/eip155-1380012617.json new file mode 100644 index 000000000000..446400f81dd8 --- /dev/null +++ b/_data/chains/eip155-1380012617.json @@ -0,0 +1,22 @@ +{ + "name": "RARI Chain Mainnet", + "chain": "RARI", + "rpc": ["https://rari.calderachain.xyz/http"], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://rarichain.org/", + "shortName": "rari-mainnet", + "chainId": 1380012617, + "networkId": 1380012617, + "explorers": [ + { + "name": "rarichain-explorer", + "url": "https://mainnet.explorer.rarichain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1380996178.json b/_data/chains/eip155-1380996178.json new file mode 100644 index 000000000000..c8cc3cd50055 --- /dev/null +++ b/_data/chains/eip155-1380996178.json @@ -0,0 +1,25 @@ +{ + "name": "RaptorChain", + "chain": "RPTR", + "rpc": ["https://rpc.raptorchain.io/web3"], + "faucets": [], + "nativeCurrency": { + "name": "Raptor", + "symbol": "RPTR", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://raptorchain.io", + "shortName": "rptr", + "chainId": 1380996178, + "networkId": 1380996178, + "icon": "raptorchain", + "explorers": [ + { + "name": "RaptorChain Explorer", + "url": "https://explorer.raptorchain.io", + "icon": "raptorchain_explorer", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-13812.json b/_data/chains/eip155-13812.json new file mode 100644 index 000000000000..ca6ac2f8d2e6 --- /dev/null +++ b/_data/chains/eip155-13812.json @@ -0,0 +1,24 @@ +{ + "name": "Susono", + "chain": "SUS", + "rpc": [ + "https://gateway.opn.network/node/ext/bc/2VsZe5DstWw2bfgdx3YbjKcMsJnNDjni95sZorBEdk9L9Qr9Fr/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Susono", + "symbol": "OPN", + "decimals": 18 + }, + "infoURL": "", + "shortName": "sus", + "chainId": 13812, + "networkId": 13812, + "explorers": [ + { + "name": "Susono", + "url": "http://explorer.opn.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-13863860.json b/_data/chains/eip155-13863860.json new file mode 100644 index 000000000000..8c7126ab151c --- /dev/null +++ b/_data/chains/eip155-13863860.json @@ -0,0 +1,30 @@ +{ + "name": "Symbiosis", + "chain": "symbiosis", + "rpc": ["https://symbiosis.calderachain.xyz/http"], + "faucets": [], + "nativeCurrency": { + "name": "Symbiosis", + "symbol": "SIS", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://symbiosis.hub.caldera.xyz", + "shortName": "symbiosis", + "chainId": 13863860, + "networkId": 13863860, + "explorers": [ + { + "name": "Symbiosis Caldera Explorer", + "url": "https://symbiosis.calderaexplorer.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1388.json b/_data/chains/eip155-1388.json new file mode 100644 index 000000000000..c8c0b9c36471 --- /dev/null +++ b/_data/chains/eip155-1388.json @@ -0,0 +1,23 @@ +{ + "name": "AmStar Mainnet", + "chain": "AmStar", + "icon": "amstar", + "rpc": ["https://mainnet-rpc.amstarscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "SINSO", + "symbol": "SINSO", + "decimals": 18 + }, + "infoURL": "https://sinso.io", + "shortName": "ASAR", + "chainId": 1388, + "networkId": 1388, + "explorers": [ + { + "name": "amstarscan", + "url": "https://mainnet.amstarscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-139.json b/_data/chains/eip155-139.json new file mode 100644 index 000000000000..824e523a6929 --- /dev/null +++ b/_data/chains/eip155-139.json @@ -0,0 +1,24 @@ +{ + "name": "WoopChain Mainnet", + "chain": "WOOP", + "icon": "woopchain", + "rpc": ["https://rpc.woop.ai/rpc"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "WoopCoin", + "symbol": "WOOC", + "decimals": 18 + }, + "infoURL": "https://wikiwoop.com", + "shortName": "woop", + "chainId": 139, + "networkId": 139, + "explorers": [ + { + "name": "wikiwoop", + "url": "https://explorer.wikiwoop.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1392.json b/_data/chains/eip155-1392.json new file mode 100644 index 000000000000..cab5310cd9d3 --- /dev/null +++ b/_data/chains/eip155-1392.json @@ -0,0 +1,23 @@ +{ + "name": "Joseon Mainnet", + "chain": "Joseon", + "icon": "joseon", + "rpc": ["https://rpc.modchain.net/blockchain.joseon.com/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Joseon Mun", + "symbol": "JSM", + "decimals": 18 + }, + "infoURL": "https://www.joseon.com/", + "shortName": "mun", + "chainId": 1392, + "networkId": 1392, + "explorers": [ + { + "name": "BlockExplorer", + "url": "https://www.blockexplorer.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1398243.json b/_data/chains/eip155-1398243.json new file mode 100644 index 000000000000..658e52822237 --- /dev/null +++ b/_data/chains/eip155-1398243.json @@ -0,0 +1,26 @@ +{ + "name": "Automata Testnet", + "chain": "Automata Testnet", + "rpc": [ + "https://rpc-testnet.ata.network", + "https://automata-testnet.alt.technology" + ], + "faucets": [], + "nativeCurrency": { + "name": "ATA", + "symbol": "ATA", + "decimals": 18 + }, + "infoURL": "https://ata.network", + "shortName": "automatatest", + "chainId": 1398243, + "networkId": 1398243, + "icon": "automata", + "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 07b88213005c..db645dee67af 100644 --- a/_data/chains/eip155-14.json +++ b/_data/chains/eip155-14.json @@ -3,16 +3,37 @@ "chain": "FLR", "icon": "flare", "rpc": [ + "https://flare-api.flare.network/ext/C/rpc", + "https://flare.rpc.thirdweb.com", + "https://flare-bundler.etherspot.io", + "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.au.cc/flare", + "https://flare.enosys.global/ext/C/rpc", + "https://flare.solidifi.app/ext/C/rpc" ], - "faucets": [ - ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], "nativeCurrency": { - "name": "Spark", + "name": "Flare", "symbol": "FLR", "decimals": 18 }, - "infoURL": "https://flare.xyz", + "infoURL": "https://flare.network", "shortName": "flr", "chainId": 14, - "networkId": 14 + "networkId": 14, + "explorers": [ + { + "name": "blockscout", + "url": "https://flare-explorer.flare.network", + "standard": "EIP3091" + }, + { + "name": "Routescan", + "url": "https://mainnet.flarescan.com", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-140.json b/_data/chains/eip155-140.json new file mode 100644 index 000000000000..fb9b7d127cb1 --- /dev/null +++ b/_data/chains/eip155-140.json @@ -0,0 +1,24 @@ +{ + "name": "Eteria Mainnet", + "chain": "ERA", + "icon": "eteria", + "rpc": ["https://mainnet.eteria.io/v1"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Eteria", + "symbol": "ERA", + "decimals": 18 + }, + "infoURL": "https://eteria.io", + "shortName": "ERA", + "chainId": 140, + "networkId": 140, + "explorers": [ + { + "name": "eteriascan", + "url": "https://explorer.eteria.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-14000.json b/_data/chains/eip155-14000.json new file mode 100644 index 000000000000..923331c54128 --- /dev/null +++ b/_data/chains/eip155-14000.json @@ -0,0 +1,23 @@ +{ + "name": "SPS Testnet", + "chain": "SPS-Testnet", + "rpc": ["https://www.3sps.net"], + "faucets": [], + "nativeCurrency": { + "name": "ECG", + "symbol": "ECG", + "decimals": 18 + }, + "infoURL": "https://ssquad.games/", + "shortName": "SPS-Test", + "chainId": 14000, + "networkId": 14000, + "slip44": 1, + "explorers": [ + { + "name": "SPS Test Explorer", + "url": "https://explorer.3sps.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1402.json b/_data/chains/eip155-1402.json new file mode 100644 index 000000000000..544792b97711 --- /dev/null +++ b/_data/chains/eip155-1402.json @@ -0,0 +1,25 @@ +{ + "name": "Polygon zkEVM Testnet old", + "title": "Polygon zkEVM Testnet", + "chain": "Polygon", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/solutions/polygon-zkevm/", + "shortName": "zkevmtest", + "chainId": 1402, + "networkId": 1402, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.public.zkevm-test.net", + "standard": "EIP3091" + } + ], + "status": "deprecated" +} 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-141.json b/_data/chains/eip155-141.json index 8767132a90a0..53ebbe058e6b 100644 --- a/_data/chains/eip155-141.json +++ b/_data/chains/eip155-141.json @@ -1,26 +1,24 @@ { - "name": "Openpiece Testnet", - "chain": "OPENPIECE", - "icon": "openpiece", - "network": "testnet", - "rpc": [ - "https://testnet.openpiece.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Belly", - "symbol": "BELLY", - "decimals": 18 - }, - "infoURL": "https://cryptopiece.online", - "shortName": "OPtest", - "chainId": 141, - "networkId": 141, - "explorers": [ - { - "name": "Belly Scan", - "url": "https://testnet.bellyscan.com", - "standard": "none" - } - ] + "name": "Openpiece Testnet", + "chain": "OPENPIECE", + "icon": "openpiece", + "rpc": ["https://testnet.openpiece.io"], + "faucets": [], + "nativeCurrency": { + "name": "Belly", + "symbol": "BELLY", + "decimals": 18 + }, + "infoURL": "https://cryptopiece.online", + "shortName": "OPtest", + "chainId": 141, + "networkId": 141, + "slip44": 1, + "explorers": [ + { + "name": "Belly Scan", + "url": "https://testnet.bellyscan.com", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-141319.json b/_data/chains/eip155-141319.json new file mode 100644 index 000000000000..a51171bfc693 --- /dev/null +++ b/_data/chains/eip155-141319.json @@ -0,0 +1,26 @@ +{ + "name": "MagApe Testnet", + "title": "MagApeChain", + "chain": "MagApe", + "rpc": ["https://testnet-api.magape.io/chain/"], + "faucets": [], + "nativeCurrency": { + "name": "MagApe", + "symbol": "MAG", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://magape.io", + "shortName": "mag", + "chainId": 141319, + "networkId": 141319, + "icon": "magape", + "explorers": [ + { + "name": "etherscan", + "url": "http://testnet-api.magape.io:81", + "icon": "magape", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1414.json b/_data/chains/eip155-1414.json new file mode 100644 index 000000000000..4d9834b02a6f --- /dev/null +++ b/_data/chains/eip155-1414.json @@ -0,0 +1,24 @@ +{ + "name": "Silicon zkEVM Sepolia Testnet(Deprecated)", + "title": "Silicon zkEVM Sepolia Testnet(Deprecated)", + "chain": "Silicon", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "silicon-sepolia-testnet-deprecated", + "chainId": 1414, + "networkId": 1414, + "icon": "silicon", + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [] + }, + "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-142.json b/_data/chains/eip155-142.json index 11d54eec7075..5cefd835b39c 100644 --- a/_data/chains/eip155-142.json +++ b/_data/chains/eip155-142.json @@ -1,9 +1,7 @@ { "name": "DAX CHAIN", "chain": "DAX", - "rpc": [ - "https://rpc.prodax.io" - ], + "rpc": ["https://rpc.prodax.io"], "faucets": [], "nativeCurrency": { "name": "Prodax", diff --git a/_data/chains/eip155-1422.json b/_data/chains/eip155-1422.json new file mode 100644 index 000000000000..1fe25519f8c1 --- /dev/null +++ b/_data/chains/eip155-1422.json @@ -0,0 +1,25 @@ +{ + "name": "Polygon zkEVM Testnet Pre Audit-Upgraded", + "title": "Polygon zkEVM Testnet Pre Audit-Upgraded", + "chain": "Polygon", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/solutions/polygon-zkevm/", + "shortName": "testnet-zkEVM-mango-pre-audit-upgraded", + "chainId": 1422, + "networkId": 1422, + "slip44": 1, + "explorers": [ + { + "name": "Polygon zkEVM explorer", + "url": "https://explorer.public.zkevm-test.net", + "standard": "EIP3091" + } + ], + "status": "deprecated" +} 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-142857.json b/_data/chains/eip155-142857.json new file mode 100644 index 000000000000..3d580bdd1d7e --- /dev/null +++ b/_data/chains/eip155-142857.json @@ -0,0 +1,23 @@ +{ + "name": "ICPlaza Mainnet", + "chain": "ICPlaza", + "icon": "icplaza", + "rpc": ["https://rpcmainnet.ic-plaza.org/"], + "faucets": [], + "nativeCurrency": { + "name": "ict", + "symbol": "ict", + "decimals": 18 + }, + "infoURL": "https://docs.ic-plaza.org/", + "shortName": "ICPlaza", + "chainId": 142857, + "networkId": 142857, + "explorers": [ + { + "name": "ICPlaza", + "url": "https://browsemainnet.ic-plaza.org/index", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-14288640.json b/_data/chains/eip155-14288640.json new file mode 100644 index 000000000000..abe871ac64ca --- /dev/null +++ b/_data/chains/eip155-14288640.json @@ -0,0 +1,23 @@ +{ + "name": "Anduschain Mainnet", + "chain": "anduschain", + "rpc": ["https://rpc.anduschain.io/rpc", "wss://rpc.anduschain.io/ws"], + "faucets": [], + "nativeCurrency": { + "name": "DAON", + "symbol": "DEB", + "decimals": 18 + }, + "infoURL": "https://anduschain.io/", + "shortName": "anduschain-mainnet", + "chainId": 14288640, + "networkId": 14288640, + "explorers": [ + { + "name": "anduschain explorer", + "url": "https://explorer.anduschain.io", + "icon": "daon", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-143.json b/_data/chains/eip155-143.json new file mode 100644 index 000000000000..f28f467a5eea --- /dev/null +++ b/_data/chains/eip155-143.json @@ -0,0 +1,30 @@ +{ + "name": "Monad", + "chain": "MON", + "icon": "monad", + "rpc": ["https://rpc.monad.xyz"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Monad", + "symbol": "MON", + "decimals": 18 + }, + "infoURL": "https://monad.xyz", + "shortName": "mon", + "chainId": 143, + "networkId": 143, + "slip44": 268435779, + "explorers": [ + { + "name": "Monad Vision", + "url": "https://monadvision.com", + "standard": "EIP3091" + }, + { + "name": "Monadscan", + "url": "https://monadscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-14324.json b/_data/chains/eip155-14324.json new file mode 100644 index 000000000000..6a84b100acb1 --- /dev/null +++ b/_data/chains/eip155-14324.json @@ -0,0 +1,23 @@ +{ + "name": "EVOLVE Testnet", + "chain": "EVO", + "icon": "evolveIcon", + "rpc": ["https://testnet-rpc.evolveblockchain.io"], + "faucets": ["https://faucet.evolveblockchain.io"], + "nativeCurrency": { + "name": "Evolve", + "symbol": "EVO", + "decimals": 18 + }, + "infoURL": "https://evolveblockchain.io", + "shortName": "evo", + "chainId": 14324, + "networkId": 14324, + "explorers": [ + { + "name": "Evolve Testnet Explorer", + "url": "https://testnet.evolveblockchain.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1433.json b/_data/chains/eip155-1433.json new file mode 100644 index 000000000000..7dc025cb2f11 --- /dev/null +++ b/_data/chains/eip155-1433.json @@ -0,0 +1,24 @@ +{ + "name": "Rikeza Network Mainnet", + "title": "Rikeza Network Mainnet", + "chain": "Rikeza", + "icon": "rikeza", + "rpc": ["https://rpc.rikscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Rikeza", + "symbol": "RIK", + "decimals": 18 + }, + "infoURL": "https://rikeza.io", + "shortName": "RIK", + "chainId": 1433, + "networkId": 1433, + "explorers": [ + { + "name": "Rikeza Blockchain explorer", + "url": "https://rikscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-14333.json b/_data/chains/eip155-14333.json new file mode 100644 index 000000000000..8b3b0e733796 --- /dev/null +++ b/_data/chains/eip155-14333.json @@ -0,0 +1,26 @@ +{ + "name": "Vitruveo Testnet", + "title": "Vitruveo is a blockchain for Creators", + "chain": "Vitruveo", + "rpc": ["https://test-rpc.vitruveo.xyz"], + "faucets": ["https://faucet.vitruveo.xyz"], + "nativeCurrency": { + "name": "Vitruveo Test Coin", + "symbol": "tVTRU", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://www.vitruveo.xyz", + "shortName": "vitruveo-test", + "chainId": 14333, + "networkId": 14333, + "icon": "vitruveo", + "explorers": [ + { + "name": "Vitruveo Testnet Explorer", + "url": "https://test-explorer.vitruveo.xyz", + "icon": "vitruveo", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1439.json b/_data/chains/eip155-1439.json new file mode 100644 index 000000000000..4d1404301abd --- /dev/null +++ b/_data/chains/eip155-1439.json @@ -0,0 +1,31 @@ +{ + "name": "Injective Testnet", + "chain": "Injective", + "icon": "injective", + "rpc": [ + "https://k8s.testnet.json-rpc.injective.network", + "wss://k8s.testnet.ws.injective.network", + "https://injectiveevm-testnet-rpc.polkachu.com", + "wss://injectiveevm-testnet-rpc.polkachu.com" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://testnet.faucet.injective.network"], + "nativeCurrency": { + "name": "Injective", + "symbol": "INJ", + "decimals": 18 + }, + "infoURL": "https://injective.com", + "shortName": "injective-testnet", + "chainId": 1439, + "networkId": 1439, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.blockscout.injective.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-144.json b/_data/chains/eip155-144.json new file mode 100644 index 000000000000..4d1cf5827c50 --- /dev/null +++ b/_data/chains/eip155-144.json @@ -0,0 +1,24 @@ +{ + "name": "PHI Network v2", + "chain": "PHI", + "rpc": ["https://connect.phi.network"], + "faucets": [], + "nativeCurrency": { + "name": "PHI", + "symbol": "Φ", + "decimals": 18 + }, + "infoURL": "https://phi.network", + "shortName": "PHI", + "chainId": 144, + "networkId": 144, + "icon": "phi", + "explorers": [ + { + "name": "Phiscan", + "url": "https://phiscan.com", + "icon": "phi", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1440.json b/_data/chains/eip155-1440.json new file mode 100644 index 000000000000..42fed63044ef --- /dev/null +++ b/_data/chains/eip155-1440.json @@ -0,0 +1,19 @@ +{ + "name": "Living Assets Mainnet", + "chain": "LAS", + "icon": "livingassets", + "rpc": [ + "https://beta.mainnet.livingassets.io/rpc", + "https://gamma.mainnet.livingassets.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "LAS", + "symbol": "LAS", + "decimals": 18 + }, + "infoURL": "https://dev.livingassets.io/", + "shortName": "LAS", + "chainId": 1440, + "networkId": 1440 +} diff --git a/_data/chains/eip155-1440000.json b/_data/chains/eip155-1440000.json new file mode 100644 index 000000000000..b8cc1338255b --- /dev/null +++ b/_data/chains/eip155-1440000.json @@ -0,0 +1,25 @@ +{ + "name": "XRPL EVM Sidechain", + "chain": "XRPL EVM", + "icon": "xrplevm", + "rpc": ["https://rpc.xrplevm.org", "wss://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": "xrplevm", + "chainId": 1440000, + "networkId": 1440000, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.xrplevm.org", + "icon": "xrplevm", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1440002.json b/_data/chains/eip155-1440002.json new file mode 100644 index 000000000000..a86a644b51bc --- /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.devnet.xrplevm.org", "wss://ws.devnet.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-1442.json b/_data/chains/eip155-1442.json new file mode 100644 index 000000000000..7592b0d18923 --- /dev/null +++ b/_data/chains/eip155-1442.json @@ -0,0 +1,28 @@ +{ + "name": "Polygon zkEVM Testnet", + "title": "Polygon zkEVM Testnet", + "chain": "Polygon", + "rpc": [ + "https://rpc.public.zkevm-test.net", + "https://polygon-zkevm-testnet.drpc.org", + "wss://polygon-zkevm-testnet.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/solutions/polygon-zkevm/", + "shortName": "testnet-zkEVM-mango", + "chainId": 1442, + "networkId": 1442, + "slip44": 1, + "explorers": [ + { + "name": "Polygon zkEVM explorer", + "url": "https://explorer.public.zkevm-test.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1444673419.json b/_data/chains/eip155-1444673419.json new file mode 100644 index 000000000000..2785a4035dae --- /dev/null +++ b/_data/chains/eip155-1444673419.json @@ -0,0 +1,25 @@ +{ + "name": "SKALE Europa Hub Testnet", + "title": "SKALE Europa Hub Testnet", + "chain": "juicy-low-small-testnet", + "icon": "europa", + "rpc": ["https://testnet.skalenodes.com/v1/juicy-low-small-testnet"], + "faucets": ["https://www.sfuelstation.com/"], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://europahub.network/", + "shortName": "europa-testnet", + "chainId": 1444673419, + "networkId": 1444673419, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://juicy-low-small-testnet.explorer.testnet.skalenodes.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1449000.json b/_data/chains/eip155-1449000.json new file mode 100644 index 000000000000..9134021525ef --- /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", "wss://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-145.json b/_data/chains/eip155-145.json new file mode 100644 index 000000000000..8fe6d93aef2a --- /dev/null +++ b/_data/chains/eip155-145.json @@ -0,0 +1,31 @@ +{ + "name": "SoraAI Testnet", + "chain": "SETH", + "icon": "ethereum", + "rpc": ["https://rpc-testnet.soraai.bot"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "SoraETH", + "symbol": "SETH", + "decimals": 18 + }, + "infoURL": "https://soraai.bot", + "shortName": "SETH", + "chainId": 145, + "networkId": 145, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.soraai.bot", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.soraai.bot" }] + } +} diff --git a/_data/chains/eip155-1452.json b/_data/chains/eip155-1452.json new file mode 100644 index 000000000000..d3526edb260a --- /dev/null +++ b/_data/chains/eip155-1452.json @@ -0,0 +1,24 @@ +{ + "name": "GIL Testnet", + "chain": "GIL", + "icon": "gauss", + "rpc": ["https://rpc.giltestnet.com"], + "faucets": [], + "nativeCurrency": { + "name": "GANG", + "symbol": "GANG", + "decimals": 18 + }, + "infoURL": "https://gaussgang.com/", + "shortName": "gil", + "chainId": 1452, + "networkId": 1452, + "slip44": 1, + "explorers": [ + { + "name": "GIL Explorer", + "url": "https://explorer.giltestnet.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1453.json b/_data/chains/eip155-1453.json new file mode 100644 index 000000000000..5faab42d7c29 --- /dev/null +++ b/_data/chains/eip155-1453.json @@ -0,0 +1,25 @@ +{ + "name": "MetaChain Istanbul", + "title": "MetaChain Testnet Istanbul", + "chain": "MTC", + "icon": "metachain", + "rpc": ["https://istanbul-rpc.metachain.dev"], + "faucets": ["https://istanbul-faucet.metachain.dev"], + "nativeCurrency": { + "name": "Metatime Coin", + "symbol": "MTC", + "decimals": 18 + }, + "infoURL": "https://metatime.com/en", + "shortName": "metatimeistanbul", + "chainId": 1453, + "networkId": 1453, + "slip44": 1453, + "explorers": [ + { + "name": "MetaExplorer", + "url": "https://istanbul-explorer.metachain.dev", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1455.json b/_data/chains/eip155-1455.json new file mode 100644 index 000000000000..76aa474a1f31 --- /dev/null +++ b/_data/chains/eip155-1455.json @@ -0,0 +1,23 @@ +{ + "name": "Ctex Scan Blockchain", + "chain": "Ctex Scan Blockchain", + "icon": "ctex", + "rpc": ["https://mainnet-rpc.ctexscan.com/"], + "faucets": ["https://faucet.ctexscan.com"], + "nativeCurrency": { + "name": "CTEX", + "symbol": "CTEX", + "decimals": 18 + }, + "infoURL": "https://ctextoken.io", + "shortName": "CTEX", + "chainId": 1455, + "networkId": 1455, + "explorers": [ + { + "name": "Ctex Scan Explorer", + "url": "https://ctexscan.com", + "standard": "none" + } + ] +} 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..9f1cb9d0aee8 --- /dev/null +++ b/_data/chains/eip155-146.json @@ -0,0 +1,35 @@ +{ + "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": "etherscan", + "url": "https://sonicscan.org", + "icon": "sonic", + "standard": "EIP3091" + }, + { + "name": "sonic", + "url": "https://explorer.soniclabs.com", + "icon": "sonic", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-14601.json b/_data/chains/eip155-14601.json new file mode 100644 index 000000000000..51ea1c5417d4 --- /dev/null +++ b/_data/chains/eip155-14601.json @@ -0,0 +1,25 @@ +{ + "name": "Sonic Testnet", + "chain": "sonic-testnet", + "rpc": ["https://rpc.testnet.soniclabs.com"], + "faucets": ["https://testnet.soniclabs.com/account"], + "nativeCurrency": { + "name": "Sonic", + "symbol": "S", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://testnet.soniclabs.com", + "shortName": "sonic-testnet", + "chainId": 14601, + "networkId": 14601, + "icon": "sonic", + "explorers": [ + { + "name": "Sonic Testnet Explorer", + "url": "https://explorer.testnet.soniclabs.com", + "icon": "sonic", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-147.json b/_data/chains/eip155-147.json new file mode 100644 index 000000000000..b183dd931a09 --- /dev/null +++ b/_data/chains/eip155-147.json @@ -0,0 +1,23 @@ +{ + "name": "Flag Mainnet", + "chain": "Flag", + "icon": "flag", + "rpc": ["https://mainnet-rpc.flagscan.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Flag", + "symbol": "FLAG", + "decimals": 18 + }, + "infoURL": "https://flagscan.xyz", + "shortName": "FLAG", + "chainId": 147, + "networkId": 147, + "explorers": [ + { + "name": "Flag Mainnet Explorer", + "url": "https://flagscan.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-148.json b/_data/chains/eip155-148.json new file mode 100644 index 000000000000..b68007b5c998 --- /dev/null +++ b/_data/chains/eip155-148.json @@ -0,0 +1,25 @@ +{ + "name": "ShimmerEVM", + "title": "ShimmerEVM", + "chain": "ShimmerEVM", + "rpc": ["https://json-rpc.evm.shimmer.network"], + "faucets": [], + "nativeCurrency": { + "name": "SMR", + "symbol": "SMR", + "decimals": 18 + }, + "infoURL": "https://shimmer.network", + "shortName": "shimmerevm", + "chainId": 148, + "networkId": 148, + "icon": "shimmerevm", + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.evm.shimmer.network", + "icon": "shimmerevm", + "standard": "EIP3091" + } + ] +} 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-1482601649.json b/_data/chains/eip155-1482601649.json new file mode 100644 index 000000000000..0ad9b138c45e --- /dev/null +++ b/_data/chains/eip155-1482601649.json @@ -0,0 +1,26 @@ +{ + "name": "SKALE Nebula Hub", + "chain": "green-giddy-denebola", + "icon": "nebula", + "rpc": [ + "https://mainnet.skalenodes.com/v1/green-giddy-denebola", + "wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola" + ], + "faucets": ["https://sfuel.skale.network/"], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://nebulachain.io/", + "shortName": "nebula-mainnet", + "chainId": 1482601649, + "networkId": 1482601649, + "explorers": [ + { + "name": "Blockscout", + "url": "https://green-giddy-denebola.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-14853.json b/_data/chains/eip155-14853.json new file mode 100644 index 000000000000..a6a8262d1c17 --- /dev/null +++ b/_data/chains/eip155-14853.json @@ -0,0 +1,18 @@ +{ + "name": "Humanode Testnet 5 Israfel", + "chain": "Humanode Testnet 5", + "rpc": ["https://explorer-rpc-http.testnet5.stages.humanode.io"], + "faucets": ["https://t.me/HumanodeTestnet5FaucetBot"], + "nativeCurrency": { + "name": "eHMND", + "symbol": "eHMND", + "decimals": 18 + }, + "infoURL": "https://humanode.io", + "shortName": "hmnd-t5", + "chainId": 14853, + "networkId": 14853, + "slip44": 1, + "icon": "humanode", + "explorers": [] +} diff --git a/_data/chains/eip155-1490.json b/_data/chains/eip155-1490.json new file mode 100644 index 000000000000..60190ff2c593 --- /dev/null +++ b/_data/chains/eip155-1490.json @@ -0,0 +1,26 @@ +{ + "name": "Vitruveo Mainnet", + "title": "Vitruveo is a blockchain for Creators", + "chain": "Vitruveo", + "rpc": ["https://rpc.vitruveo.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Vitruveo Coin", + "symbol": "VTRU", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://www.vitruveo.xyz", + "shortName": "vitruveo", + "chainId": 1490, + "networkId": 1490, + "icon": "vitruveo", + "explorers": [ + { + "name": "Vitruveo Explorer", + "url": "https://explorer.vitruveo.xyz", + "icon": "vitruveo", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1499.json b/_data/chains/eip155-1499.json new file mode 100644 index 000000000000..53da525ef7a7 --- /dev/null +++ b/_data/chains/eip155-1499.json @@ -0,0 +1,23 @@ +{ + "name": "iDos Games Chain Testnet", + "chain": "IGC", + "icon": "igc-testnet", + "rpc": ["https://rpc-testnet.idos.games"], + "faucets": [], + "nativeCurrency": { + "name": "iDos Games Coin", + "symbol": "IGC", + "decimals": 18 + }, + "infoURL": "https://idosgames.com/", + "shortName": "IGC", + "chainId": 1499, + "networkId": 1499, + "explorers": [ + { + "name": "IGC-Scan", + "url": "https://igcscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-15.json b/_data/chains/eip155-15.json index a6c8cb1250c7..5d102d03e5d2 100644 --- a/_data/chains/eip155-15.json +++ b/_data/chains/eip155-15.json @@ -1,10 +1,8 @@ { + "icon": "diode", "name": "Diode Prenet", "chain": "DIODE", - "rpc": [ - "https://prenet.diode.io:8443/", - "wss://prenet.diode.io:8443/ws" - ], + "rpc": ["https://prenet.diode.io:8443/", "wss://prenet.diode.io:8443/ws"], "faucets": [], "nativeCurrency": { "name": "Diodes", diff --git a/_data/chains/eip155-150.json b/_data/chains/eip155-150.json new file mode 100644 index 000000000000..db37149b2f50 --- /dev/null +++ b/_data/chains/eip155-150.json @@ -0,0 +1,24 @@ +{ + "name": "Six Protocol Testnet", + "chain": "FIVENET", + "icon": "six", + "rpc": ["https://rpc-evm.fivenet.sixprotocol.net"], + "faucets": ["https://faucet.sixprotocol.net"], + "nativeCurrency": { + "name": "SIX testnet evm token", + "symbol": "tSIX", + "decimals": 18 + }, + "infoURL": "https://six.network/", + "shortName": "sixt", + "chainId": 150, + "networkId": 150, + "explorers": [ + { + "name": "SIX Scan fivenet", + "url": "https://sixscan.io/fivenet", + "standard": "none", + "icon": "six" + } + ] +} diff --git a/_data/chains/eip155-15000.json b/_data/chains/eip155-15000.json new file mode 100644 index 000000000000..f28befb1ae25 --- /dev/null +++ b/_data/chains/eip155-15000.json @@ -0,0 +1,24 @@ +{ + "name": "Quai Network Testnet", + "chain": "QUAI", + "icon": "quai", + "rpc": ["https://orchard.rpc.quai.network/cyprus1"], + "features": [{ "name": "EIP155" }], + "faucets": [], + "nativeCurrency": { + "name": "Quai", + "symbol": "QUAI", + "decimals": 18 + }, + "infoURL": "https://qu.ai", + "shortName": "quai-testnet", + "chainId": 15000, + "networkId": 15000, + "explorers": [ + { + "name": "Orchard Quaiscan", + "url": "https://orchard.quaiscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-15003.json b/_data/chains/eip155-15003.json new file mode 100644 index 000000000000..fdda7c2f4d53 --- /dev/null +++ b/_data/chains/eip155-15003.json @@ -0,0 +1,24 @@ +{ + "name": "Immutable zkEVM Devnet", + "chain": "Immutable zkEVM", + "rpc": ["https://rpc.dev.immutable.com"], + "faucets": ["https://docs.immutable.com/docs/zkEVM/guides/faucet"], + "nativeCurrency": { + "name": "Dev IMX", + "symbol": "dIMX", + "decimals": 18 + }, + "infoURL": "https://www.immutable.com", + "shortName": "imx-devnet", + "chainId": 15003, + "networkId": 15003, + "icon": "immutable", + "explorers": [ + { + "name": "Immutable Devnet explorer", + "url": "https://explorer.dev.immutable.com", + "standard": "EIP3091", + "icon": "immutable" + } + ] +} diff --git a/_data/chains/eip155-1501.json b/_data/chains/eip155-1501.json new file mode 100644 index 000000000000..80b5a1a485d6 --- /dev/null +++ b/_data/chains/eip155-1501.json @@ -0,0 +1,23 @@ +{ + "name": "BEVM Canary", + "chain": "ChainX", + "rpc": ["https://rpc-canary-1.bevm.io/", "https://rpc-canary-2.bevm.io/"], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://chainx.org", + "shortName": "chainx", + "chainId": 1501, + "networkId": 1501, + "icon": "bevmcanary", + "explorers": [ + { + "name": "bevm canary scan", + "url": "https://scan-canary.bevm.io", + "standard": "none" + } + ] +} 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-1506.json b/_data/chains/eip155-1506.json index 120f48a842d7..c1d3741ac957 100644 --- a/_data/chains/eip155-1506.json +++ b/_data/chains/eip155-1506.json @@ -1,11 +1,8 @@ { "name": "Sherpax Mainnet", "chain": "Sherpax Mainnet", - "rpc": [ - "https://mainnet.sherpax.io/rpc" - ], - "faucets": [ - ], + "rpc": ["https://mainnet.sherpax.io/rpc"], + "faucets": [], "nativeCurrency": { "name": "KSX", "symbol": "KSX", diff --git a/_data/chains/eip155-1507.json b/_data/chains/eip155-1507.json index 424a3836bcc3..65156d4c0b6d 100644 --- a/_data/chains/eip155-1507.json +++ b/_data/chains/eip155-1507.json @@ -1,20 +1,18 @@ { "name": "Sherpax Testnet", "chain": "Sherpax Testnet", - "rpc": [ - "https://sherpax-testnet.chainx.org/rpc" - ], - "faucets": [ - ], + "rpc": ["https://sherpax-testnet.chainx.org/rpc"], + "faucets": [], "nativeCurrency": { "name": "KSX", "symbol": "KSX", "decimals": 18 }, "infoURL": "https://sherpax.io/", - "shortName": "Sherpax Testnet", + "shortName": "SherpaxTestnet", "chainId": 1507, "networkId": 1507, + "slip44": 1, "explorers": [ { "name": "Sherpax Testnet Explorer", @@ -23,4 +21,3 @@ } ] } - diff --git a/_data/chains/eip155-151.json b/_data/chains/eip155-151.json new file mode 100644 index 000000000000..ec03928ea748 --- /dev/null +++ b/_data/chains/eip155-151.json @@ -0,0 +1,25 @@ +{ + "name": "Redbelly Network Mainnet", + "shortName": "rbn", + "chain": "RBN", + "chainId": 151, + "networkId": 151, + "slip44": 824, + "icon": "redbelly", + "rpc": ["https://governors.mainnet.redbelly.network"], + "faucets": [], + "infoURL": "https://redbelly.network", + "nativeCurrency": { + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 + }, + "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-1515.json b/_data/chains/eip155-1515.json new file mode 100644 index 000000000000..109657af34d8 --- /dev/null +++ b/_data/chains/eip155-1515.json @@ -0,0 +1,22 @@ +{ + "name": "Beagle Messaging Chain", + "chain": "BMC", + "rpc": ["https://beagle.chat/eth"], + "faucets": ["https://faucet.beagle.chat/"], + "nativeCurrency": { + "name": "Beagle", + "symbol": "BG", + "decimals": 18 + }, + "infoURL": "https://beagle.chat/", + "shortName": "beagle", + "chainId": 1515, + "networkId": 1515, + "explorers": [ + { + "name": "Beagle Messaging Chain Explorer", + "url": "https://eth.beagle.chat", + "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-1517929550.json b/_data/chains/eip155-1517929550.json new file mode 100644 index 000000000000..522e2c0ae8f2 --- /dev/null +++ b/_data/chains/eip155-1517929550.json @@ -0,0 +1,28 @@ +{ + "name": "Deprecated SKALE Titan Hub Testnet", + "chain": "staging-aware-chief-gianfar", + "status": "deprecated", + "icon": "titan", + "rpc": [ + "https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar", + "wss://staging-v3.skalenodes.com/v1/ws/staging-aware-chief-gianfar" + ], + "faucets": ["https://sfuel.dirtroad.dev/staging"], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "", + "shortName": "deprecated-titan-testnet", + "chainId": 1517929550, + "networkId": 1517929550, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://staging-aware-chief-gianfar.explorer.staging-v3.skalenodes.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-152.json b/_data/chains/eip155-152.json new file mode 100644 index 000000000000..7db98e60f966 --- /dev/null +++ b/_data/chains/eip155-152.json @@ -0,0 +1,16 @@ +{ + "name": "Redbelly Network Devnet", + "shortName": "rbn-devnet", + "chain": "RBN", + "chainId": 152, + "networkId": 152, + "rpc": [], + "faucets": [], + "infoURL": "https://redbelly.network", + "nativeCurrency": { + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 + }, + "status": "incubating" +} 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-15257.json b/_data/chains/eip155-15257.json new file mode 100644 index 000000000000..be813c9e93e9 --- /dev/null +++ b/_data/chains/eip155-15257.json @@ -0,0 +1,23 @@ +{ + "name": "Poodl Testnet", + "chain": "Poodl", + "icon": "poodlIcon", + "rpc": ["https://testnet-rpc.poodl.org"], + "faucets": ["https://faucet.poodl.org"], + "nativeCurrency": { + "name": "Poodl", + "symbol": "POODL", + "decimals": 18 + }, + "infoURL": "https://poodl.org", + "shortName": "poodlt", + "chainId": 15257, + "networkId": 15257, + "explorers": [ + { + "name": "Poodl Testnet Explorer", + "url": "https://testnet.poodl.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-15259.json b/_data/chains/eip155-15259.json new file mode 100644 index 000000000000..85a24b25f7df --- /dev/null +++ b/_data/chains/eip155-15259.json @@ -0,0 +1,23 @@ +{ + "name": "Poodl Mainnet", + "chain": "Poodl", + "icon": "poodlIcon", + "rpc": ["https://rpc.poodl.org"], + "faucets": [], + "nativeCurrency": { + "name": "Poodl", + "symbol": "POODL", + "decimals": 18 + }, + "infoURL": "https://poodl.org", + "shortName": "poodle", + "chainId": 15259, + "networkId": 15259, + "explorers": [ + { + "name": "Poodl Mainnet Explorer", + "url": "https://explorer.poodl.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-153.json b/_data/chains/eip155-153.json new file mode 100644 index 000000000000..f828ee939d72 --- /dev/null +++ b/_data/chains/eip155-153.json @@ -0,0 +1,25 @@ +{ + "name": "Redbelly Network Testnet", + "shortName": "rbn-testnet", + "chain": "RBN", + "chainId": 153, + "networkId": 153, + "icon": "redbelly", + "slip44": 1, + "rpc": ["https://governors.testnet.redbelly.network"], + "faucets": [], + "infoURL": "https://redbelly.network", + "nativeCurrency": { + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 + }, + "explorers": [ + { + "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-154.json b/_data/chains/eip155-154.json new file mode 100644 index 000000000000..953c15604740 --- /dev/null +++ b/_data/chains/eip155-154.json @@ -0,0 +1,15 @@ +{ + "name": "Redbelly Network TGE", + "shortName": "rbn-tge", + "chain": "RBN", + "chainId": 154, + "networkId": 154, + "rpc": [], + "faucets": [], + "infoURL": "https://redbelly.network", + "nativeCurrency": { + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 + } +} 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-155.json b/_data/chains/eip155-155.json new file mode 100644 index 000000000000..7c3b327ff827 --- /dev/null +++ b/_data/chains/eip155-155.json @@ -0,0 +1,26 @@ +{ + "name": "Tenet Testnet", + "title": "Tenet Testnet", + "chain": "TENET", + "icon": "tenet", + "rpc": ["https://rpc.testnet.tenet.org"], + "faucets": ["https://faucet.testnet.tenet.org"], + "nativeCurrency": { + "name": "TENET", + "symbol": "TENET", + "decimals": 18 + }, + "infoURL": "https://tenet.org/", + "shortName": "tenet-testnet", + "chainId": 155, + "networkId": 155, + "slip44": 1, + "explorers": [ + { + "name": "TenetScan Testnet", + "url": "https://testnet.tenetscan.io", + "icon": "tenet", + "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-15551.json b/_data/chains/eip155-15551.json new file mode 100644 index 000000000000..528ad9dabe9c --- /dev/null +++ b/_data/chains/eip155-15551.json @@ -0,0 +1,22 @@ +{ + "name": "LoopNetwork Mainnet", + "chain": "LoopNetwork", + "rpc": ["https://api.mainnetloop.com"], + "faucets": [], + "nativeCurrency": { + "name": "LOOP", + "symbol": "LOOP", + "decimals": 18 + }, + "infoURL": "http://theloopnetwork.org/", + "shortName": "loop", + "chainId": 15551, + "networkId": 15551, + "explorers": [ + { + "name": "loopscan", + "url": "http://explorer.mainnetloop.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-15555.json b/_data/chains/eip155-15555.json new file mode 100644 index 000000000000..8f93e8ba1062 --- /dev/null +++ b/_data/chains/eip155-15555.json @@ -0,0 +1,23 @@ +{ + "name": "Trust EVM Testnet", + "chain": "Trust EVM Testnet", + "rpc": ["https://api.testnet-dev.trust.one"], + "faucets": ["https://faucet.testnet-dev.trust.one/"], + "nativeCurrency": { + "name": "Trust EVM", + "symbol": "EVM", + "decimals": 18 + }, + "infoURL": "https://www.trust.one/", + "shortName": "TrustTestnet", + "chainId": 15555, + "networkId": 15555, + "slip44": 1, + "explorers": [ + { + "name": "Trust EVM Explorer", + "url": "https://trustscan.one", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-15557.json b/_data/chains/eip155-15557.json new file mode 100644 index 000000000000..c386f3a03fa7 --- /dev/null +++ b/_data/chains/eip155-15557.json @@ -0,0 +1,24 @@ +{ + "name": "EOS EVM Network Testnet", + "chain": "EOS", + "icon": "eos", + "rpc": ["https://api.testnet.evm.eosnetwork.com"], + "faucets": [], + "nativeCurrency": { + "name": "EOS", + "symbol": "EOS", + "decimals": 18 + }, + "infoURL": "https://eosnetwork.com/eos-evm", + "shortName": "eos-testnet", + "chainId": 15557, + "networkId": 15557, + "slip44": 1, + "explorers": [ + { + "name": "EOS EVM Explorer", + "url": "https://explorer.testnet.evm.eosnetwork.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1559.json b/_data/chains/eip155-1559.json new file mode 100644 index 000000000000..3ba28a064ce6 --- /dev/null +++ b/_data/chains/eip155-1559.json @@ -0,0 +1,29 @@ +{ + "name": "Tenet", + "title": "Tenet Mainnet", + "chain": "TENET", + "icon": "tenet", + "rpc": [ + "https://rpc.tenet.org", + "https://tenet-evm.publicnode.com", + "wss://tenet-evm.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "TENET", + "symbol": "TENET", + "decimals": 18 + }, + "infoURL": "https://tenet.org/", + "shortName": "tenet", + "chainId": 1559, + "networkId": 1559, + "explorers": [ + { + "name": "TenetScan Mainnet", + "url": "https://tenetscan.io", + "icon": "tenet", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-156.json b/_data/chains/eip155-156.json new file mode 100644 index 000000000000..50306bfbc5b4 --- /dev/null +++ b/_data/chains/eip155-156.json @@ -0,0 +1,25 @@ +{ + "name": "OEBlock Testnet", + "chain": "OEBt", + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "rpc": ["https://testnet-rpc.oeblock.com"], + "faucets": [], + "nativeCurrency": { + "name": "OEBlock", + "symbol": "OEB", + "decimals": 18 + }, + "infoURL": "https://www.oeblock.com/", + "shortName": "obe", + "chainId": 156, + "networkId": 156, + "slip44": 1, + "icon": "oescan", + "explorers": [ + { + "name": "OEScan explorer", + "url": "https://testnet.oescan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1564830818.json b/_data/chains/eip155-1564830818.json new file mode 100644 index 000000000000..959d5ebc7811 --- /dev/null +++ b/_data/chains/eip155-1564830818.json @@ -0,0 +1,23 @@ +{ + "name": "SKALE Calypso Hub", + "chain": "honorable-steel-rasalhague", + "icon": "calypso", + "rpc": ["https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague"], + "faucets": ["https://sfuel.dirtroad.dev"], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://calypsohub.network/", + "shortName": "calypso-mainnet", + "chainId": 1564830818, + "networkId": 1564830818, + "explorers": [ + { + "name": "Blockscout", + "url": "https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-157.json b/_data/chains/eip155-157.json new file mode 100644 index 000000000000..304103300ae9 --- /dev/null +++ b/_data/chains/eip155-157.json @@ -0,0 +1,23 @@ +{ + "name": "Puppynet", + "chain": "Puppynet", + "icon": "shibarium", + "rpc": ["https://puppynet.shibrpc.com"], + "faucets": ["https://shibarium.shib.io/faucet"], + "nativeCurrency": { + "name": "BONE", + "symbol": "BONE", + "decimals": 18 + }, + "infoURL": "https://shibariumecosystem.com", + "shortName": "puppynet", + "chainId": 157, + "networkId": 157, + "explorers": [ + { + "name": "puppyscan", + "url": "https://puppyscan.shib.io", + "standard": "none" + } + ] +} 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-158.json b/_data/chains/eip155-158.json new file mode 100644 index 000000000000..7c69c8ca12aa --- /dev/null +++ b/_data/chains/eip155-158.json @@ -0,0 +1,31 @@ +{ + "name": "Roburna Mainnet", + "chain": "RBA", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "rpc": ["https://dataseed.roburna.com"], + "faucets": [], + "nativeCurrency": { + "name": "Roburna", + "symbol": "RBA", + "decimals": 18 + }, + "infoURL": "https://www.roburna.com/", + "shortName": "rba", + "chainId": 158, + "networkId": 158, + "icon": "roburna", + "explorers": [ + { + "name": "Rbascan Explorer", + "url": "https://rbascan.com", + "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-15885.json b/_data/chains/eip155-15885.json new file mode 100644 index 000000000000..390448c62b7c --- /dev/null +++ b/_data/chains/eip155-15885.json @@ -0,0 +1,22 @@ +{ + "name": "Bitroot Testnet", + "shortName": "bitroot-testnet", + "chain": "Bitroot", + "chainId": 15885, + "networkId": 15885, + "rpc": ["https://testnet-rpc.bitroot.co"], + "faucets": ["https://faucet.bitroot.co"], + "infoURL": "https://bitroot.co", + "nativeCurrency": { + "name": "BRT", + "symbol": "BRT", + "decimals": 18 + }, + "explorers": [ + { + "name": "Bitroot Testnet Explorer", + "url": "https://testnet-explorer.bitroot.co", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-15888.json b/_data/chains/eip155-15888.json new file mode 100644 index 000000000000..b3d0c3ba610b --- /dev/null +++ b/_data/chains/eip155-15888.json @@ -0,0 +1,22 @@ +{ + "name": "Bitroot", + "shortName": "bitroot", + "chain": "Bitroot", + "chainId": 15888, + "networkId": 15888, + "rpc": ["https://rpc.bitroot.co", "https://mainnet-rpc.bitroot.co"], + "faucets": [], + "infoURL": "https://bitroot.co", + "nativeCurrency": { + "name": "BRT", + "symbol": "BRT", + "decimals": 18 + }, + "explorers": [ + { + "name": "Bitroot Explorer", + "url": "https://explorer.bitroot.co", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-159.json b/_data/chains/eip155-159.json new file mode 100644 index 000000000000..ac6cb06f11db --- /dev/null +++ b/_data/chains/eip155-159.json @@ -0,0 +1,31 @@ +{ + "name": "Roburna Testnet", + "chain": "RBAT", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "rpc": ["https://preseed-testnet-1.roburna.com"], + "faucets": [], + "nativeCurrency": { + "name": "Roburna", + "symbol": "RBAT", + "decimals": 18 + }, + "infoURL": "https://www.roburna.com/", + "shortName": "rbat", + "chainId": 159, + "networkId": 159, + "icon": "roburna", + "explorers": [ + { + "name": "Rbascan Testnet Explorer", + "url": "https://testnet.rbascan.com", + "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 eb19188f49cd..17988af3f7ee 100644 --- a/_data/chains/eip155-16.json +++ b/_data/chains/eip155-16.json @@ -1,25 +1,37 @@ { - "name": "Flare Testnet Coston", - "chain": "FLR", + "name": "Songbird Testnet Coston", + "chain": "SGB", + "icon": "coston", "rpc": [ - "https://coston-api.flare.network/ext/bc/C/rpc" - ], - "faucets": [ - "https://faucet.towolabs.com", - "https://fauceth.komputing.org?chain=16&address=${ADDRESS}" + "https://coston-api.flare.network/ext/C/rpc", + "https://songbird-testnet-coston.rpc.thirdweb.com", + "https://01-gravelines-004-01.rpc.tatum.io/ext/bc/C/rpc", + "https://02-chicago-004-02.rpc.tatum.io/ext/bc/C/rpc", + "https://02-tokyo-004-03.rpc.tatum.io/ext/bc/C/rpc", + "https://coston.enosys.global/ext/C/rpc" ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://faucet.flare.network"], "nativeCurrency": { - "name": "Coston Spark", + "name": "Coston Flare", "symbol": "CFLR", "decimals": 18 }, - "infoURL": "https://flare.xyz", + "infoURL": "https://flare.network", "shortName": "cflr", "chainId": 16, "networkId": 16, - "explorers": [{ - "name": "blockscout", - "url": "https://coston-explorer.flare.network", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://coston-explorer.flare.network", + "standard": "EIP3091" + }, + { + "name": "Routescan", + "url": "https://coston.testnet.flarescan.com", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-160.json b/_data/chains/eip155-160.json new file mode 100644 index 000000000000..c7be9a76a725 --- /dev/null +++ b/_data/chains/eip155-160.json @@ -0,0 +1,16 @@ +{ + "name": "Armonia Eva Chain Mainnet", + "chain": "Eva", + "rpc": ["https://evascan.io/api/eth-rpc/"], + "faucets": [], + "nativeCurrency": { + "name": "Armonia Multichain Native Token", + "symbol": "AMAX", + "decimals": 18 + }, + "infoURL": "https://amax.network", + "shortName": "eva", + "chainId": 160, + "networkId": 160, + "status": "incubating" +} diff --git a/_data/chains/eip155-16000.json b/_data/chains/eip155-16000.json index e3b4cdd53992..21107aee8b1d 100644 --- a/_data/chains/eip155-16000.json +++ b/_data/chains/eip155-16000.json @@ -1,18 +1,15 @@ { - "name": "MetaDot Mainnet", - "chain": "MTT", - "rpc": [ - "https://mainnet.metadot.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "MetaDot Token", - "symbol": "MTT", - "decimals": 18 - }, - "infoURL": "https://metadot.network", - "shortName": "mtt", - "chainId": 16000, - "networkId": 16000 - } - \ No newline at end of file + "name": "MetaDot Mainnet", + "chain": "MTT", + "rpc": ["https://mainnet.metadot.network"], + "faucets": [], + "nativeCurrency": { + "name": "MetaDot Token", + "symbol": "MTT", + "decimals": 18 + }, + "infoURL": "https://metadot.network", + "shortName": "mtt", + "chainId": 16000, + "networkId": 16000 +} diff --git a/_data/chains/eip155-16001.json b/_data/chains/eip155-16001.json index 64d0a66a2271..834e51acf022 100644 --- a/_data/chains/eip155-16001.json +++ b/_data/chains/eip155-16001.json @@ -1,20 +1,16 @@ { - "name": "MetaDot Testnet", - "chain": "MTTTest", - "rpc": [ - "https://testnet.metadot.network" - ], - "faucets": [ - "https://faucet.metadot.network/" - ], - "nativeCurrency": { - "name": "MetaDot Token TestNet", - "symbol": "MTTest", - "decimals": 18 - }, - "infoURL": "https://metadot.network", - "shortName": "mtttest", - "chainId": 16001, - "networkId": 16001 - } - + "name": "MetaDot Testnet", + "chain": "MTTTest", + "rpc": ["https://testnet.metadot.network"], + "faucets": ["https://faucet.metadot.network/"], + "nativeCurrency": { + "name": "MetaDot Token TestNet", + "symbol": "MTTest", + "decimals": 18 + }, + "infoURL": "https://metadot.network", + "shortName": "mtttest", + "chainId": 16001, + "networkId": 16001, + "slip44": 1 +} 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-161.json b/_data/chains/eip155-161.json new file mode 100644 index 000000000000..8f19111b3bb5 --- /dev/null +++ b/_data/chains/eip155-161.json @@ -0,0 +1,23 @@ +{ + "name": "Armonia Eva Chain Testnet", + "chain": "Wall-e", + "rpc": ["https://testnet.evascan.io/api/eth-rpc/"], + "faucets": [], + "nativeCurrency": { + "name": "Armonia Multichain Native Token", + "symbol": "AMAX", + "decimals": 18 + }, + "infoURL": "https://amax.network", + "shortName": "wall-e", + "chainId": 161, + "networkId": 161, + "slip44": 1, + "explorers": [ + { + "name": "blockscout - evascan", + "url": "https://testnet.evascan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-16116.json b/_data/chains/eip155-16116.json new file mode 100644 index 000000000000..2c20157b5b58 --- /dev/null +++ b/_data/chains/eip155-16116.json @@ -0,0 +1,28 @@ +{ + "name": "DeFiVerse Mainnet", + "chain": "DeFiVerse", + "icon": "defiverse", + "rpc": ["https://rpc.defi-verse.org/"], + "faucets": [], + "nativeCurrency": { + "name": "Oasys", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://defi-verse.org", + "shortName": "DFV", + "chainId": 16116, + "networkId": 16116, + "explorers": [ + { + "name": "DeFiVerse Explorer", + "url": "https://scan.defi-verse.org", + "icon": "defiverse", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } +} 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-161212.json b/_data/chains/eip155-161212.json new file mode 100644 index 000000000000..080405880c39 --- /dev/null +++ b/_data/chains/eip155-161212.json @@ -0,0 +1,17 @@ +{ + "name": "PlayFi Mainnet", + "chain": "PLAY", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Play", + "symbol": "PLAY", + "decimals": 18 + }, + "infoURL": "https://www.playfi.ai/", + "shortName": "playfi", + "chainId": 161212, + "networkId": 161212, + "explorers": [], + "status": "incubating" +} diff --git a/_data/chains/eip155-1612127.json b/_data/chains/eip155-1612127.json new file mode 100644 index 000000000000..724c2322c312 --- /dev/null +++ b/_data/chains/eip155-1612127.json @@ -0,0 +1,28 @@ +{ + "name": "PlayFi Albireo Testnet", + "chain": "ETH", + "rpc": ["https://albireo-rpc.playfi.ai"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.playfi.ai/", + "shortName": "alberio", + "chainId": 1612127, + "networkId": 1612127, + "slip44": 1, + "explorers": [ + { + "name": "PlayFi Block Explorer", + "url": "https://albireo-explorer.playfi.ai", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://portal.playfi.ai/bridge" }] + } +} diff --git a/_data/chains/eip155-161221135.json b/_data/chains/eip155-161221135.json new file mode 100644 index 000000000000..42b5867b85fa --- /dev/null +++ b/_data/chains/eip155-161221135.json @@ -0,0 +1,24 @@ +{ + "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://plume.org", + "shortName": "plume-testnet-legacy", + "chainId": 161221135, + "networkId": 161221135, + "slip44": 1, + "icon": "plume", + "status": "deprecated", + "explorers": [], + "parent": { + "type": "L2", + "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-1617.json b/_data/chains/eip155-1617.json new file mode 100644 index 000000000000..a37aff958cdb --- /dev/null +++ b/_data/chains/eip155-1617.json @@ -0,0 +1,23 @@ +{ + "name": "Ethereum Inscription Mainnet", + "chain": "ETINS", + "rpc": ["https://rpc.etins.org"], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum Inscription", + "symbol": "ETINS", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.etins.org", + "shortName": "etins", + "chainId": 1617, + "networkId": 1617, + "explorers": [ + { + "name": "Ethereum Inscription Explorer", + "url": "https://explorer.etins.org", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1618.json b/_data/chains/eip155-1618.json index 9f0b09006b45..693e91e13414 100644 --- a/_data/chains/eip155-1618.json +++ b/_data/chains/eip155-1618.json @@ -1,9 +1,7 @@ { "name": "Catecoin Chain Mainnet", "chain": "Catechain", - "rpc": [ - "https://send.catechain.com" - ], + "rpc": ["https://send.catechain.com"], "faucets": [], "nativeCurrency": { "name": "Catecoin", 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-162.json b/_data/chains/eip155-162.json index 65dbf70a93df..ce4baa091550 100644 --- a/_data/chains/eip155-162.json +++ b/_data/chains/eip155-162.json @@ -1,12 +1,8 @@ { "name": "Lightstreams Testnet", "chain": "PHT", - "rpc": [ - "https://node.sirius.lightstreams.io" - ], - "faucets": [ - "https://discuss.lightstreams.network/t/request-test-tokens" - ], + "rpc": ["https://node.sirius.lightstreams.io"], + "faucets": ["https://discuss.lightstreams.network/t/request-test-tokens"], "nativeCurrency": { "name": "Lightstreams PHT", "symbol": "PHT", @@ -15,5 +11,6 @@ "infoURL": "https://explorer.sirius.lightstreams.io", "shortName": "tpht", "chainId": 162, - "networkId": 162 -} \ No newline at end of file + "networkId": 162, + "slip44": 1 +} diff --git a/_data/chains/eip155-1620.json b/_data/chains/eip155-1620.json index 181015611ecb..fd6d46566187 100644 --- a/_data/chains/eip155-1620.json +++ b/_data/chains/eip155-1620.json @@ -1,18 +1,16 @@ { "name": "Atheios", "chain": "ATH", - "rpc": [ - "https://wallet.atheios.com:8797" - ], + "rpc": ["https://rpc.atheios.org/"], "faucets": [], "nativeCurrency": { "name": "Atheios Ether", "symbol": "ATH", "decimals": 18 }, - "infoURL": "https://atheios.com", + "infoURL": "https://atheios.org", "shortName": "ath", "chainId": 1620, "networkId": 11235813, "slip44": 1620 -} \ No newline at end of file +} diff --git a/_data/chains/eip155-1625.json b/_data/chains/eip155-1625.json new file mode 100644 index 000000000000..fd62d23b9c31 --- /dev/null +++ b/_data/chains/eip155-1625.json @@ -0,0 +1,43 @@ +{ + "name": "Gravity Alpha Mainnet", + "chain": "Gravity", + "rpc": ["https://rpc.gravity.xyz", "https://rpc.ankr.com/gravity"], + "faucets": [], + "nativeCurrency": { + "name": "Gravity", + "symbol": "G", + "decimals": 18 + }, + "features": [ + { "name": "EIP155" }, + { "name": "EIP1559" }, + { "name": "EIP1108" } + ], + "infoURL": "https://gravity.xyz", + "shortName": "gravity", + "chainId": 1625, + "networkId": 1625, + "icon": "gravity", + "explorers": [ + { + "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": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.gravity.xyz" }] + } +} diff --git a/_data/chains/eip155-163.json b/_data/chains/eip155-163.json index 96f89177713b..167a2ac789f8 100644 --- a/_data/chains/eip155-163.json +++ b/_data/chains/eip155-163.json @@ -1,9 +1,7 @@ { "name": "Lightstreams Mainnet", "chain": "PHT", - "rpc": [ - "https://node.mainnet.lightstreams.io" - ], + "rpc": ["https://node.mainnet.lightstreams.io"], "faucets": [], "nativeCurrency": { "name": "Lightstreams PHT", @@ -14,4 +12,4 @@ "shortName": "pht", "chainId": 163, "networkId": 163 -} \ No newline at end of file +} 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 new file mode 100644 index 000000000000..ac1a8b7c9848 --- /dev/null +++ b/_data/chains/eip155-164.json @@ -0,0 +1,26 @@ +{ + "name": "Omni Omega Testnet", + "chain": "Omni", + "status": "active", + "rpc": ["https://omega.omni.network", "wss://wss.omega.omni.network"], + "features": [{ "name": "EIP155" }], + "faucets": [], + "nativeCurrency": { + "name": "Omni", + "symbol": "OMNI", + "decimals": 18 + }, + "infoURL": "https://docs.omni.network", + "shortName": "omni_omega", + "chainId": 164, + "networkId": 164, + "slip44": 1, + "icon": "omni", + "explorers": [ + { + "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-165.json b/_data/chains/eip155-165.json new file mode 100644 index 000000000000..50ad9ae6d0ff --- /dev/null +++ b/_data/chains/eip155-165.json @@ -0,0 +1,19 @@ +{ + "name": "Omni Testnet (Deprecated)", + "chain": "Omni", + "rpc": [], + "features": [{ "name": "EIP155" }], + "faucets": [], + "nativeCurrency": { + "name": "Omni", + "symbol": "OMNI", + "decimals": 18 + }, + "infoURL": "https://docs.omni.network/", + "shortName": "omni_testnet_deprecated", + "chainId": 165, + "networkId": 165, + "slip44": 1, + "explorers": [], + "status": "deprecated" +} diff --git a/_data/chains/eip155-1650.json b/_data/chains/eip155-1650.json new file mode 100644 index 000000000000..6cf034dd842b --- /dev/null +++ b/_data/chains/eip155-1650.json @@ -0,0 +1,23 @@ +{ + "name": "IIC Blockchain Testnet", + "chainId": 1650, + "shortName": "iic-testnet", + "chain": "IIC", + "networkId": 1650, + "nativeCurrency": { + "name": "Saya Coin", + "symbol": "SAYA", + "decimals": 18 + }, + "rpc": ["https://rpc.iic-blockchain.com"], + "faucets": [], + "infoURL": "https://metavtz.com/", + "status": "active", + "explorers": [ + { + "name": "IIC Explorer", + "url": "https://scan.iic-blockchain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-16507.json b/_data/chains/eip155-16507.json new file mode 100644 index 000000000000..3fc8feca8686 --- /dev/null +++ b/_data/chains/eip155-16507.json @@ -0,0 +1,23 @@ +{ + "name": "Genesys Mainnet", + "chain": "Genesys", + "icon": "genesys", + "rpc": ["https://rpc.genesys.network"], + "faucets": [], + "nativeCurrency": { + "name": "Genesys", + "symbol": "GSYS", + "decimals": 18 + }, + "infoURL": "https://www.genesys.network/", + "shortName": "Genesys", + "chainId": 16507, + "networkId": 16507, + "explorers": [ + { + "name": "GchainExplorer", + "url": "https://gchainexplorer.genesys.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-165279.json b/_data/chains/eip155-165279.json new file mode 100644 index 000000000000..3678fded0e92 --- /dev/null +++ b/_data/chains/eip155-165279.json @@ -0,0 +1,23 @@ +{ + "name": "Eclat Mainnet", + "chain": "Eclat", + "icon": "eclat", + "rpc": ["https://mainnet-rpc.eclatscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Eclat", + "symbol": "ECLAT", + "decimals": 18 + }, + "infoURL": "https://eclatscan.com", + "shortName": "ECLAT", + "chainId": 165279, + "networkId": 165279, + "explorers": [ + { + "name": "Eclat Mainnet Explorer", + "url": "https://eclatscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1657.json b/_data/chains/eip155-1657.json index a02af235808c..c14f9b270885 100644 --- a/_data/chains/eip155-1657.json +++ b/_data/chains/eip155-1657.json @@ -1,9 +1,7 @@ { "name": "Btachain", "chain": "btachain", - "rpc": [ - "https://dataseed1.btachain.com/" - ], + "rpc": ["https://dataseed1.btachain.com/"], "faucets": [], "nativeCurrency": { "name": "Bitcoin Asset", diff --git a/_data/chains/eip155-166.json b/_data/chains/eip155-166.json new file mode 100644 index 000000000000..5ed6ee8b1407 --- /dev/null +++ b/_data/chains/eip155-166.json @@ -0,0 +1,26 @@ +{ + "name": "Nomina", + "chain": "Nomina", + "status": "active", + "rpc": ["https://mainnet.nomina.io", "wss://wss.mainnet.nomina.io"], + "features": [{ "name": "EIP155" }], + "faucets": [], + "nativeCurrency": { + "name": "Nomina", + "symbol": "NOM", + "decimals": 18 + }, + "infoURL": "https://docs.omni.network", + "shortName": "nom", + "chainId": 166, + "networkId": 166, + "slip44": 1, + "icon": "nom", + "explorers": [ + { + "name": "Nomina EVM and cross-chain Explorer", + "url": "https://nomscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-16600.json b/_data/chains/eip155-16600.json new file mode 100644 index 000000000000..0e1cfb7646d2 --- /dev/null +++ b/_data/chains/eip155-16600.json @@ -0,0 +1,18 @@ +{ + "name": "0G-Newton-Testnet", + "chain": "0G-Testnet", + "status": "deprecated", + "rpc": [], + "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": [] +} diff --git a/_data/chains/eip155-16601.json b/_data/chains/eip155-16601.json new file mode 100644 index 000000000000..14f9f5452550 --- /dev/null +++ b/_data/chains/eip155-16601.json @@ -0,0 +1,18 @@ +{ + "name": "0G-Galileo-Testnet", + "chain": "0G-Testnet", + "status": "deprecated", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "A0GI", + "symbol": "A0GI", + "decimals": 18 + }, + "infoURL": "https://0g.ai", + "shortName": "0gai-galileo-testnet", + "chainId": 16601, + "networkId": 16601, + "icon": "0gai", + "explorers": [] +} diff --git a/_data/chains/eip155-16602.json b/_data/chains/eip155-16602.json new file mode 100644 index 000000000000..ccbdd26a908e --- /dev/null +++ b/_data/chains/eip155-16602.json @@ -0,0 +1,23 @@ +{ + "name": "0G-Testnet-Galileo", + "chain": "0G-Testnet", + "rpc": ["https://evmrpc-testnet.0g.ai"], + "faucets": ["https://faucet.0g.ai"], + "nativeCurrency": { + "name": "0G", + "symbol": "0G", + "decimals": 18 + }, + "infoURL": "https://0g.ai", + "shortName": "0g-testnet-galileo", + "chainId": 16602, + "networkId": 16602, + "icon": "0g", + "explorers": [ + { + "name": "0G BlockChain Explorer", + "url": "https://chainscan-galileo.0g.ai", + "standard": "EIP3091" + } + ] +} 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-1662.json b/_data/chains/eip155-1662.json new file mode 100644 index 000000000000..f95bddd23e0f --- /dev/null +++ b/_data/chains/eip155-1662.json @@ -0,0 +1,23 @@ +{ + "name": "Liquichain", + "shortName": "Liquichain", + "chain": "LQC", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Licoin", + "symbol": "LCN", + "decimals": 18 + }, + "infoURL": "https://liquichain.io/", + "chainId": 1662, + "networkId": 1662, + "explorers": [ + { + "name": "Liquichain Mainnet", + "url": "https://mainnet.liquichain.io", + "standard": "EIP3091" + } + ], + "redFlags": ["reusedChainId"] +} diff --git a/_data/chains/eip155-1663.json b/_data/chains/eip155-1663.json new file mode 100644 index 000000000000..a199d3457aa6 --- /dev/null +++ b/_data/chains/eip155-1663.json @@ -0,0 +1,36 @@ +{ + "name": "Horizen Gobi Testnet", + "shortName": "Gobi", + "chain": "Gobi", + "icon": "eon", + "rpc": [ + "https://gobi-rpc.horizenlabs.io/ethv1", + "https://rpc.ankr.com/horizen_gobi_testnet" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": ["https://faucet.horizen.io"], + "nativeCurrency": { + "name": "Testnet Zen", + "symbol": "tZEN", + "decimals": 18 + }, + "infoURL": "https://horizen.io/", + "chainId": 1663, + "networkId": 1663, + "slip44": 1, + "explorers": [ + { + "name": "Gobi Testnet Block Explorer", + "url": "https://gobi-explorer.horizen.io", + "icon": "eon", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-16658437.json b/_data/chains/eip155-16658437.json new file mode 100644 index 000000000000..f90e83767ecb --- /dev/null +++ b/_data/chains/eip155-16658437.json @@ -0,0 +1,23 @@ +{ + "name": "Plian Testnet Main", + "chain": "Plian", + "rpc": ["https://testnet.plian.io/testnet"], + "faucets": [], + "nativeCurrency": { + "name": "Plian Testnet Token", + "symbol": "TPI", + "decimals": 18 + }, + "infoURL": "https://plian.org", + "shortName": "plian-testnet", + "chainId": 16658437, + "networkId": 16658437, + "slip44": 1, + "explorers": [ + { + "name": "piscan", + "url": "https://testnet.plian.org/testnet", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-16661.json b/_data/chains/eip155-16661.json new file mode 100644 index 000000000000..88ba835ae0e7 --- /dev/null +++ b/_data/chains/eip155-16661.json @@ -0,0 +1,23 @@ +{ + "name": "0G Mainnet", + "chain": "0G", + "rpc": ["https://evmrpc.0g.ai"], + "faucets": [], + "nativeCurrency": { + "name": "0G", + "symbol": "0G", + "decimals": 18 + }, + "infoURL": "https://0g.ai", + "shortName": "0g", + "chainId": 16661, + "networkId": 16661, + "icon": "0g", + "explorers": [ + { + "name": "0G BlockChain Explorer", + "url": "https://chainscan.0g.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1666600000.json b/_data/chains/eip155-1666600000.json index 0052bd6605c0..ebca587b4985 100644 --- a/_data/chains/eip155-1666600000.json +++ b/_data/chains/eip155-1666600000.json @@ -3,21 +3,33 @@ "chain": "Harmony", "rpc": [ "https://api.harmony.one", - "https://api.s0.t.hmny.io" + "https://a.api.s0.t.hmny.io", + "https://api.s0.t.hmny.io", + "https://rpc.ankr.com/harmony", + + "https://1rpc.io/one", + "https://harmony-0.drpc.org", + "wss://harmony-0.drpc.org" ], - "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], + "faucets": [], "nativeCurrency": { "name": "ONE", "symbol": "ONE", "decimals": 18 }, "infoURL": "https://www.harmony.one/", + "slip44": 1023, + "ens": { + "registry": "0x4cd2563118e57b19179d8dc033f2b0c5b5d69ff5" + }, "shortName": "hmy-s0", "chainId": 1666600000, "networkId": 1666600000, - "explorers": [{ - "name": "Harmony Block Explorer", - "url": "https://explorer.harmony.one", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "Harmony Block Explorer", + "url": "https://explorer.harmony.one", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-1666600001.json b/_data/chains/eip155-1666600001.json index 8f6613ff6ead..c6934d337d18 100644 --- a/_data/chains/eip155-1666600001.json +++ b/_data/chains/eip155-1666600001.json @@ -2,17 +2,26 @@ "name": "Harmony Mainnet Shard 1", "chain": "Harmony", "rpc": [ - "https://api.s1.t.hmny.io" - ], - "faucets": [ + "https://api.s1.t.hmny.io", + "https://harmony-1.drpc.org", + "wss://harmony-1.drpc.org" ], + "faucets": [], "nativeCurrency": { "name": "ONE", "symbol": "ONE", "decimals": 18 }, "infoURL": "https://www.harmony.one/", + "slip44": 1023, "shortName": "hmy-s1", "chainId": 1666600001, - "networkId": 1666600001 + "networkId": 1666600001, + "explorers": [ + { + "name": "Harmony Block Explorer", + "url": "https://explorer.harmony.one/blocks/shard/1", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-1666600002.json b/_data/chains/eip155-1666600002.json index be5f1223b16c..ec2030d09b23 100644 --- a/_data/chains/eip155-1666600002.json +++ b/_data/chains/eip155-1666600002.json @@ -1,18 +1,24 @@ { "name": "Harmony Mainnet Shard 2", "chain": "Harmony", - "rpc": [ - "https://api.s2.t.hmny.io" - ], - "faucets": [ - ], + "rpc": ["https://api.s2.t.hmny.io"], + "faucets": [], "nativeCurrency": { "name": "ONE", "symbol": "ONE", "decimals": 18 }, "infoURL": "https://www.harmony.one/", + "slip44": 1023, "shortName": "hmy-s2", "chainId": 1666600002, - "networkId": 1666600002 + "networkId": 1666600002, + "status": "deprecated", + "explorers": [ + { + "name": "Harmony Block Explorer", + "url": "https://explorer.harmony.one/blocks/shard/2", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-1666600003.json b/_data/chains/eip155-1666600003.json index 50bf2f627702..d56faa6d05ef 100644 --- a/_data/chains/eip155-1666600003.json +++ b/_data/chains/eip155-1666600003.json @@ -1,18 +1,24 @@ { "name": "Harmony Mainnet Shard 3", "chain": "Harmony", - "rpc": [ - "https://api.s3.t.hmny.io" - ], - "faucets": [ - ], + "rpc": ["https://api.s3.t.hmny.io"], + "faucets": [], "nativeCurrency": { "name": "ONE", "symbol": "ONE", "decimals": 18 }, "infoURL": "https://www.harmony.one/", + "slip44": 1023, "shortName": "hmy-s3", "chainId": 1666600003, - "networkId": 1666600003 + "networkId": 1666600003, + "status": "deprecated", + "explorers": [ + { + "name": "Harmony Block Explorer", + "url": "https://explorer.harmony.one/blocks/shard/3", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-1666700000.json b/_data/chains/eip155-1666700000.json index a66f37a6e124..b1237f7acd2f 100644 --- a/_data/chains/eip155-1666700000.json +++ b/_data/chains/eip155-1666700000.json @@ -1,12 +1,8 @@ { "name": "Harmony Testnet Shard 0", "chain": "Harmony", - "rpc": [ - "https://api.s0.b.hmny.io" - ], - "faucets": [ - "https://faucet.pops.one" - ], + "rpc": ["https://api.s0.b.hmny.io"], + "faucets": ["https://faucet.pops.one"], "nativeCurrency": { "name": "ONE", "symbol": "ONE", @@ -16,10 +12,11 @@ "shortName": "hmy-b-s0", "chainId": 1666700000, "networkId": 1666700000, - "explorers": [{ - "name": "Harmony Testnet Block Explorer", - "url": "https://explorer.pops.one", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "Harmony Testnet Block Explorer", + "url": "https://explorer.testnet.harmony.one", + "standard": "EIP3091" + } + ] } - \ No newline at end of file diff --git a/_data/chains/eip155-1666700001.json b/_data/chains/eip155-1666700001.json index fa093995ee37..bffd4438c1e4 100644 --- a/_data/chains/eip155-1666700001.json +++ b/_data/chains/eip155-1666700001.json @@ -1,19 +1,22 @@ { - "name": "Harmony Testnet Shard 1", - "chain": "Harmony", - "rpc": [ - "https://api.s1.b.hmny.io" - ], - "faucets": [ - ], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-b-s1", - "chainId": 1666700001, - "networkId": 1666700001 - } - \ No newline at end of file + "name": "Harmony Testnet Shard 1", + "chain": "Harmony", + "rpc": ["https://api.s1.b.hmny.io"], + "faucets": ["https://faucet.pops.one"], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-b-s1", + "chainId": 1666700001, + "networkId": 1666700001, + "explorers": [ + { + "name": "Harmony Block Explorer", + "url": "https://explorer.testnet.harmony.one", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1666700002.json b/_data/chains/eip155-1666700002.json deleted file mode 100644 index 19230baa8801..000000000000 --- a/_data/chains/eip155-1666700002.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "Harmony Testnet Shard 2", - "chain": "Harmony", - "rpc": [ - "https://api.s2.b.hmny.io" - ], - "faucets": [ - ], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-b-s2", - "chainId": 1666700002, - "networkId": 1666700002 - } - \ No newline at end of file diff --git a/_data/chains/eip155-1666700003.json b/_data/chains/eip155-1666700003.json deleted file mode 100644 index 86b601feccab..000000000000 --- a/_data/chains/eip155-1666700003.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "Harmony Testnet Shard 3", - "chain": "Harmony", - "rpc": [ - "https://api.s3.b.hmny.io" - ], - "faucets": [ - ], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-b-s3", - "chainId": 1666700003, - "networkId": 1666700003 - } - \ No newline at end of file diff --git a/_data/chains/eip155-1666900000.json b/_data/chains/eip155-1666900000.json new file mode 100644 index 000000000000..8e7949a0d2c2 --- /dev/null +++ b/_data/chains/eip155-1666900000.json @@ -0,0 +1,16 @@ +{ + "name": "Harmony Devnet Shard 0", + "chain": "Harmony", + "rpc": ["https://api.s0.ps.hmny.io"], + "faucets": [], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-ps-s0", + "chainId": 1666900000, + "networkId": 1666900000, + "explorers": [] +} diff --git a/_data/chains/eip155-1666900001.json b/_data/chains/eip155-1666900001.json new file mode 100644 index 000000000000..e0de5f2b8543 --- /dev/null +++ b/_data/chains/eip155-1666900001.json @@ -0,0 +1,16 @@ +{ + "name": "Harmony Devnet Shard 1", + "chain": "Harmony", + "rpc": ["https://api.s1.ps.hmny.io"], + "faucets": [], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-ps-s1", + "chainId": 1666900001, + "networkId": 1666900001, + "explorers": [] +} diff --git a/_data/chains/eip155-16688.json b/_data/chains/eip155-16688.json new file mode 100644 index 000000000000..8367166874ad --- /dev/null +++ b/_data/chains/eip155-16688.json @@ -0,0 +1,26 @@ +{ + "name": "IRIShub Testnet", + "chain": "IRIShub", + "rpc": ["https://evmrpc.nyancat.irisnet.org"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Eris", + "symbol": "ERIS", + "decimals": 18 + }, + "infoURL": "https://www.irisnet.org", + "shortName": "nyancat", + "chainId": 16688, + "networkId": 16688, + "slip44": 1, + "icon": "nyancat", + "explorers": [ + { + "name": "IRISHub Testnet Cosmos Explorer (IOBScan)", + "url": "https://nyancat.iobscan.io", + "standard": "none", + "icon": "nyancat" + } + ] +} diff --git a/_data/chains/eip155-167.json b/_data/chains/eip155-167.json new file mode 100644 index 000000000000..62d96e996d52 --- /dev/null +++ b/_data/chains/eip155-167.json @@ -0,0 +1,24 @@ +{ + "name": "Atoshi Testnet", + "chain": "ATOSHI", + "icon": "atoshi", + "rpc": ["https://node.atoshi.io/"], + "faucets": [], + "nativeCurrency": { + "name": "ATOSHI", + "symbol": "ATOS", + "decimals": 18 + }, + "infoURL": "https://atoshi.org", + "shortName": "atoshi", + "chainId": 167, + "networkId": 167, + "slip44": 1, + "explorers": [ + { + "name": "atoshiscan", + "url": "https://scan.atoverse.info", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-167000.json b/_data/chains/eip155-167000.json new file mode 100644 index 000000000000..421de542cdc0 --- /dev/null +++ b/_data/chains/eip155-167000.json @@ -0,0 +1,33 @@ +{ + "name": "Taiko Alethia", + "chain": "ETH", + "status": "active", + "icon": "taiko", + "rpc": [ + "https://rpc.mainnet.taiko.xyz", + "https://taiko-rpc.publicnode.com", + "wss://taiko-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "tko-mainnet", + "chainId": 167000, + "networkId": 167000, + "explorers": [ + { + "name": "etherscan", + "url": "https://taikoscan.io", + "standard": "EIP3091" + }, + { + "name": "Routescan", + "url": "https://taikoexplorer.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-167004.json b/_data/chains/eip155-167004.json new file mode 100644 index 000000000000..86b8f0655939 --- /dev/null +++ b/_data/chains/eip155-167004.json @@ -0,0 +1,25 @@ +{ + "name": "Taiko (Alpha-2 Testnet)", + "chain": "ETH", + "status": "deprecated", + "icon": "taiko", + "rpc": ["https://rpc.a2.taiko.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "taiko-a2", + "chainId": 167004, + "networkId": 167004, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.a2.taiko.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-167005.json b/_data/chains/eip155-167005.json new file mode 100644 index 000000000000..396336cd06ba --- /dev/null +++ b/_data/chains/eip155-167005.json @@ -0,0 +1,24 @@ +{ + "name": "Taiko Grimsvotn L2", + "chain": "ETH", + "status": "deprecated", + "icon": "taiko", + "rpc": ["https://rpc.test.taiko.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "taiko-l2", + "chainId": 167005, + "networkId": 167005, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.test.taiko.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-167006.json b/_data/chains/eip155-167006.json new file mode 100644 index 000000000000..525e5d04baf3 --- /dev/null +++ b/_data/chains/eip155-167006.json @@ -0,0 +1,24 @@ +{ + "name": "Taiko Eldfell L3", + "chain": "ETH", + "status": "deprecated", + "icon": "taiko", + "rpc": ["https://rpc.l3test.taiko.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "taiko-l3", + "chainId": 167006, + "networkId": 167006, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.l3test.taiko.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-167007.json b/_data/chains/eip155-167007.json new file mode 100644 index 000000000000..9e77e3c59128 --- /dev/null +++ b/_data/chains/eip155-167007.json @@ -0,0 +1,24 @@ +{ + "name": "Taiko Jolnir L2", + "chain": "ETH", + "status": "deprecated", + "icon": "taiko", + "rpc": ["https://rpc.jolnir.taiko.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "tko-jolnir", + "chainId": 167007, + "networkId": 167007, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.jolnir.taiko.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-167008.json b/_data/chains/eip155-167008.json new file mode 100644 index 000000000000..5a1284a5773b --- /dev/null +++ b/_data/chains/eip155-167008.json @@ -0,0 +1,18 @@ +{ + "name": "Taiko Katla L2", + "chain": "ETH", + "status": "deprecated", + "icon": "taiko", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "tko-katla", + "chainId": 167008, + "networkId": 167008, + "explorers": [] +} diff --git a/_data/chains/eip155-167009.json b/_data/chains/eip155-167009.json new file mode 100644 index 000000000000..6a652ad6d23e --- /dev/null +++ b/_data/chains/eip155-167009.json @@ -0,0 +1,18 @@ +{ + "name": "Taiko Hekla (deprecated)", + "chain": "ETH", + "status": "deprecated", + "icon": "taiko", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "tko-hekla", + "chainId": 167009, + "networkId": 167009, + "explorers": [] +} diff --git a/_data/chains/eip155-167013.json b/_data/chains/eip155-167013.json new file mode 100644 index 000000000000..a5f8586f61f5 --- /dev/null +++ b/_data/chains/eip155-167013.json @@ -0,0 +1,29 @@ +{ + "name": "Taiko Hoodi", + "chain": "ETH", + "status": "active", + "icon": "taiko", + "rpc": ["https://rpc.hoodi.taiko.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "tko-hoodi", + "chainId": 167013, + "networkId": 167013, + "explorers": [ + { + "name": "Blockscout", + "url": "https://blockscout.hoodi.taiko.xyz", + "standard": "EIP3091" + }, + { + "name": "Etherscan", + "url": "https://hoodi.taikoscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-16718.json b/_data/chains/eip155-16718.json new file mode 100644 index 000000000000..94253e60457b --- /dev/null +++ b/_data/chains/eip155-16718.json @@ -0,0 +1,23 @@ +{ + "name": "AirDAO Mainnet", + "chain": "ambnet", + "icon": "airdao", + "rpc": ["https://network.ambrosus.io"], + "faucets": [], + "nativeCurrency": { + "name": "Amber", + "symbol": "AMB", + "decimals": 18 + }, + "infoURL": "https://airdao.io", + "shortName": "airdao", + "chainId": 16718, + "networkId": 16718, + "explorers": [ + { + "name": "AirDAO Network Explorer", + "url": "https://airdao.io/explorer", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-168.json b/_data/chains/eip155-168.json index 7727c34bdb9f..52bac648818d 100644 --- a/_data/chains/eip155-168.json +++ b/_data/chains/eip155-168.json @@ -1,11 +1,8 @@ { "name": "AIOZ Network", "chain": "AIOZ", - "network": "mainnet", "icon": "aioz", - "rpc": [ - "https://eth-dataseed.aioz.network" - ], + "rpc": ["https://eth-dataseed.aioz.network"], "faucets": [], "nativeCurrency": { "name": "AIOZ", @@ -17,9 +14,11 @@ "chainId": 168, "networkId": 168, "slip44": 60, - "explorers": [{ - "name": "AIOZ Network Explorer", - "url": "https://explorer.aioz.network", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "AIOZ Network Explorer", + "url": "https://explorer.aioz.network", + "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-168587773.json b/_data/chains/eip155-168587773.json new file mode 100644 index 000000000000..508a93d84d32 --- /dev/null +++ b/_data/chains/eip155-168587773.json @@ -0,0 +1,32 @@ +{ + "name": "Blast Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.blast.io", + "https://blast-sepolia.drpc.org", + "wss://blast-sepolia.drpc.org" + ], + "faucets": ["https://faucet.quicknode.com/blast/sepolia"], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://blast.io/", + "shortName": "blastsepolia", + "chainId": 168587773, + "networkId": 168587773, + "icon": "blast", + "explorers": [ + { + "name": "Blast Sepolia Explorer", + "url": "https://testnet.blastscan.io", + "icon": "blast", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } +} diff --git a/_data/chains/eip155-1686.json b/_data/chains/eip155-1686.json new file mode 100644 index 000000000000..7dc42bedb62d --- /dev/null +++ b/_data/chains/eip155-1686.json @@ -0,0 +1,30 @@ +{ + "name": "Mint Testnet", + "chain": "ETH", + "rpc": ["https://testnet-rpc.mintchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.mintchain.io", + "shortName": "minttest", + "chainId": 1686, + "networkId": 1686, + "status": "deprecated", + "icon": "mintTestnet", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.mintchain.io", + "icon": "mintTestnet", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://testnet-bridge.mintchain.io" }] + } +} diff --git a/_data/chains/eip155-1687.json b/_data/chains/eip155-1687.json new file mode 100644 index 000000000000..3e66f5437e0e --- /dev/null +++ b/_data/chains/eip155-1687.json @@ -0,0 +1,29 @@ +{ + "name": "Mint Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://sepolia-testnet-rpc.mintchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.mintchain.io", + "shortName": "mintsepoliatest", + "chainId": 1687, + "networkId": 1687, + "icon": "mintTestnet", + "explorers": [ + { + "name": "blockscout", + "url": "https://sepolia-testnet-explorer.mintchain.io", + "icon": "mintTestnet", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://sepolia-testnet-bridge.mintchain.io" }] + } +} diff --git a/_data/chains/eip155-1688.json b/_data/chains/eip155-1688.json index a70f580a2e88..5a07ca38d835 100644 --- a/_data/chains/eip155-1688.json +++ b/_data/chains/eip155-1688.json @@ -1,9 +1,7 @@ { "name": "LUDAN Mainnet", "chain": "LUDAN", - "rpc": [ - "https://rpc.ludan.org/" - ], + "rpc": ["https://rpc.ludan.org/"], "faucets": [], "nativeCurrency": { "name": "LUDAN", diff --git a/_data/chains/eip155-16888.json b/_data/chains/eip155-16888.json index ea82631fd603..30a395241b42 100644 --- a/_data/chains/eip155-16888.json +++ b/_data/chains/eip155-16888.json @@ -2,12 +2,8 @@ "name": "IVAR Chain Testnet", "chain": "IVAR", "icon": "ivar", - "rpc": [ - "https://testnet-rpc.ivarex.com" - ], - "faucets": [ - "https://tfaucet.ivarex.com/" - ], + "rpc": ["https://testnet-rpc.ivarex.com"], + "faucets": ["https://tfaucet.ivarex.com/"], "nativeCurrency": { "name": "tIvar", "symbol": "tIVAR", @@ -17,9 +13,12 @@ "shortName": "tivar", "chainId": 16888, "networkId": 16888, - "explorers": [{ - "name": "ivarscan", - "url": "https://testnet.ivarscan.com", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "ivarscan", + "url": "https://testnet.ivarscan.com", + "standard": "EIP3091" + } + ] } 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-169.json b/_data/chains/eip155-169.json new file mode 100644 index 000000000000..ed4fee4874b5 --- /dev/null +++ b/_data/chains/eip155-169.json @@ -0,0 +1,28 @@ +{ + "name": "Manta Pacific Mainnet", + "chain": "Manta Pacific", + "rpc": [ + "https://pacific-rpc.manta.network/http", + "https://manta-pacific.drpc.org", + "wss://manta-pacific.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://pacific-info.manta.network", + "shortName": "manta", + "chainId": 169, + "networkId": 169, + "icon": "manta", + "explorers": [ + { + "name": "manta-pacific Explorer", + "url": "https://pacific-explorer.manta.network", + "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-17.json b/_data/chains/eip155-17.json index 8c8a32b071ed..4cb15c967e60 100644 --- a/_data/chains/eip155-17.json +++ b/_data/chains/eip155-17.json @@ -1,9 +1,7 @@ { "name": "ThaiChain 2.0 ThaiFi", "chain": "TCH", - "rpc": [ - "https://rpc.thaifi.com" - ], + "rpc": ["https://rpc.thaifi.com"], "faucets": [], "nativeCurrency": { "name": "Thaifi Ether", diff --git a/_data/chains/eip155-170.json b/_data/chains/eip155-170.json index e8c2e2eae7a3..b93ca5bf96fa 100644 --- a/_data/chains/eip155-170.json +++ b/_data/chains/eip155-170.json @@ -1,12 +1,8 @@ { "name": "HOO Smart Chain Testnet", "chain": "ETH", - "rpc": [ - "https://http-testnet.hoosmartchain.com" - ], - "faucets": [ - "https://faucet-testnet.hscscan.com/" - ], + "rpc": ["https://http-testnet.hoosmartchain.com"], + "faucets": ["https://faucet-testnet.hscscan.com/"], "nativeCurrency": { "name": "HOO", "symbol": "HOO", @@ -15,5 +11,6 @@ "infoURL": "https://www.hoosmartchain.com", "shortName": "hoosmartchain", "chainId": 170, - "networkId": 170 + "networkId": 170, + "slip44": 1 } diff --git a/_data/chains/eip155-17000.json b/_data/chains/eip155-17000.json new file mode 100644 index 000000000000..3975390bb1dd --- /dev/null +++ b/_data/chains/eip155-17000.json @@ -0,0 +1,49 @@ +{ + "name": "Holesky", + "title": "Ethereum Testnet Holesky", + "chain": "ETH", + "rpc": [ + "https://rpc.holesky.ethpandaops.io", + "https://ethereum-holesky-rpc.publicnode.com", + "wss://ethereum-holesky-rpc.publicnode.com", + "https://holesky.drpc.org", + "wss://holesky.drpc.org", + "https://rpc-holesky.rockx.com" + ], + "faucets": [ + "https://faucet.holesky.ethpandaops.io", + "https://holesky-faucet.pk910.de" + ], + "nativeCurrency": { + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://holesky.ethpandaops.io", + "shortName": "holesky", + "chainId": 17000, + "networkId": 17000, + "slip44": 1, + "icon": "ethereum", + "status": "incubating", + "explorers": [ + { + "name": "Holesky Explorer", + "url": "https://holesky.beaconcha.in", + "icon": "ethereum", + "standard": "EIP3091" + }, + { + "name": "otterscan-holesky", + "url": "https://holesky.otterscan.io", + "icon": "ethereum", + "standard": "EIP3091" + }, + { + "name": "Holesky Etherscan", + "url": "https://holesky.etherscan.io", + "icon": "ethereum", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-17000920.json b/_data/chains/eip155-17000920.json new file mode 100644 index 000000000000..e1c4381c179d --- /dev/null +++ b/_data/chains/eip155-17000920.json @@ -0,0 +1,24 @@ +{ + "name": "Lambda Chain Testnet", + "chain": "Lambda Chain", + "rpc": ["https://testnrpc.lambda.im/"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lambda.im", + "shortName": "tlambda", + "chainId": 17000920, + "networkId": 17000920, + "slip44": 1, + "icon": "lambda-chain", + "explorers": [ + { + "name": "Lambda Chain Testnet Explorer", + "url": "https://testscan.lambda.im", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-17001.json b/_data/chains/eip155-17001.json new file mode 100644 index 000000000000..b1f642b5920a --- /dev/null +++ b/_data/chains/eip155-17001.json @@ -0,0 +1,26 @@ +{ + "name": "Redstone Holesky Testnet", + "chain": "ETH", + "rpc": ["https://rpc.holesky.redstone.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Redstone Testnet Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://redstone.xyz/docs/network-info", + "shortName": "redstone-holesky", + "chainId": 17001, + "networkId": 17001, + "slip44": 1, + "icon": "redstone", + "explorers": [ + { + "name": "Redstone Holesky Explorer", + "url": "https://explorer.holesky.redstone.xyz", + "icon": "ethereum", + "standard": "EIP3091" + } + ], + "status": "deprecated" +} diff --git a/_data/chains/eip155-1701.json b/_data/chains/eip155-1701.json new file mode 100644 index 000000000000..41dddd0e6099 --- /dev/null +++ b/_data/chains/eip155-1701.json @@ -0,0 +1,24 @@ +{ + "name": "Anytype EVM Chain", + "chain": "ETH", + "icon": "any", + "rpc": ["https://geth.anytype.io"], + "faucets": ["https://evm.anytype.io/faucet"], + "nativeCurrency": { + "name": "ANY", + "symbol": "ANY", + "decimals": 18 + }, + "infoURL": "https://evm.anytype.io", + "shortName": "AnytypeChain", + "chainId": 1701, + "networkId": 1701, + "explorers": [ + { + "name": "Anytype Explorer", + "url": "https://explorer.anytype.io", + "icon": "any", + "standard": "EIP3091" + } + ] +} 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-17069.json b/_data/chains/eip155-17069.json new file mode 100644 index 000000000000..ad9ecf9adf76 --- /dev/null +++ b/_data/chains/eip155-17069.json @@ -0,0 +1,33 @@ +{ + "name": "Garnet Holesky", + "chain": "ETH", + "rpc": ["https://rpc.garnetchain.com", "wss://rpc.garnetchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://redstone.xyz", + "shortName": "garnet", + "chainId": 17069, + "networkId": 17069, + "icon": "garnet", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.garnetchain.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-17000", + "bridges": [ + { + "url": "https://garnetchain.com/deposit" + } + ] + } +} diff --git a/_data/chains/eip155-1707.json b/_data/chains/eip155-1707.json new file mode 100644 index 000000000000..c33ec4d3fe3f --- /dev/null +++ b/_data/chains/eip155-1707.json @@ -0,0 +1,23 @@ +{ + "name": "TBSI Mainnet", + "title": "Thai Blockchain Service Infrastructure Mainnet", + "chain": "TBSI", + "rpc": ["https://rpc.blockchain.or.th"], + "faucets": [], + "nativeCurrency": { + "name": "Jinda", + "symbol": "JINDA", + "decimals": 18 + }, + "infoURL": "https://blockchain.or.th", + "shortName": "TBSI", + "chainId": 1707, + "networkId": 1707, + "explorers": [ + { + "name": "blockscout", + "url": "https://exp.blockchain.or.th", + "standard": "EIP3091" + } + ] +} 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-1708.json b/_data/chains/eip155-1708.json new file mode 100644 index 000000000000..160c2f153684 --- /dev/null +++ b/_data/chains/eip155-1708.json @@ -0,0 +1,24 @@ +{ + "name": "TBSI Testnet", + "title": "Thai Blockchain Service Infrastructure Testnet", + "chain": "TBSI", + "rpc": ["https://rpc.testnet.blockchain.or.th"], + "faucets": ["https://faucet.blockchain.or.th"], + "nativeCurrency": { + "name": "Jinda", + "symbol": "JINDA", + "decimals": 18 + }, + "infoURL": "https://blockchain.or.th", + "shortName": "tTBSI", + "chainId": 1708, + "networkId": 1708, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://exp.testnet.blockchain.or.th", + "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-17117.json b/_data/chains/eip155-17117.json new file mode 100644 index 000000000000..960e2dc51993 --- /dev/null +++ b/_data/chains/eip155-17117.json @@ -0,0 +1,24 @@ +{ + "name": "DeFiVerse Testnet", + "chain": "DeFiVerse Testnet", + "icon": "defiverse", + "rpc": ["https://rpc-testnet.defi-verse.org/"], + "faucets": [], + "nativeCurrency": { + "name": "Oasys", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://defi-verse.org", + "shortName": "DFV-testnet", + "chainId": 17117, + "networkId": 17117, + "explorers": [ + { + "name": "DeFiVerse Testnet Explorer", + "url": "https://scan-testnet.defi-verse.org", + "icon": "defiverse", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1714.json b/_data/chains/eip155-1714.json new file mode 100644 index 000000000000..6ee1dfe4c65d --- /dev/null +++ b/_data/chains/eip155-1714.json @@ -0,0 +1,18 @@ +{ + "name": "ACiD", + "chain": "ACID", + "rpc": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://github.com/NoBanks/ACiD", + "shortName": "acid", + "chainId": 1714, + "networkId": 1714, + "status": "incubating", + "explorers": [] +} diff --git a/_data/chains/eip155-1717.json b/_data/chains/eip155-1717.json new file mode 100644 index 000000000000..f46100181c72 --- /dev/null +++ b/_data/chains/eip155-1717.json @@ -0,0 +1,23 @@ +{ + "name": "Doric Network", + "chain": "DRC", + "icon": "doric", + "rpc": ["https://mainnet.doric.network"], + "faucets": [], + "nativeCurrency": { + "name": "Doric Native Token", + "symbol": "DRC", + "decimals": 18 + }, + "infoURL": "https://doric.network", + "shortName": "DRC", + "chainId": 1717, + "networkId": 1717, + "explorers": [ + { + "name": "Doric Explorer", + "url": "https://explorer.doric.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-17171.json b/_data/chains/eip155-17171.json new file mode 100644 index 000000000000..36deadfe9880 --- /dev/null +++ b/_data/chains/eip155-17171.json @@ -0,0 +1,23 @@ +{ + "name": "G8Chain Mainnet", + "chain": "G8C", + "icon": "G8Chain", + "rpc": ["https://mainnet-rpc.oneg8.network"], + "faucets": ["https://faucet.oneg8.network"], + "nativeCurrency": { + "name": "G8Chain", + "symbol": "G8C", + "decimals": 18 + }, + "infoURL": "https://oneg8.one", + "shortName": "G8Cm", + "chainId": 17171, + "networkId": 17171, + "explorers": [ + { + "name": "G8Chain", + "url": "https://mainnet.oneg8.network", + "standard": "EIP3091" + } + ] +} 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-17172.json b/_data/chains/eip155-17172.json new file mode 100644 index 000000000000..cab827301e71 --- /dev/null +++ b/_data/chains/eip155-17172.json @@ -0,0 +1,27 @@ +{ + "name": "Eclipse Subnet", + "chain": "ECLIPSE", + "rpc": ["https://subnets.avax.network/eclipse/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Eclipse", + "symbol": "ECLP", + "decimals": 16 + }, + "infoURL": "http://eclipsenet.io", + "shortName": "eclipse", + "chainId": 17172, + "networkId": 17172, + "explorers": [ + { + "name": "ECLIPSE Explorer", + "url": "https://subnets-test.avax.network/eclipse", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1718.json b/_data/chains/eip155-1718.json new file mode 100644 index 000000000000..b4dde53e19c2 --- /dev/null +++ b/_data/chains/eip155-1718.json @@ -0,0 +1,25 @@ +{ + "name": "Palette Chain Mainnet", + "chain": "PLT", + "rpc": ["https://palette-rpc.com:22000"], + "faucets": [], + "nativeCurrency": { + "name": "Palette Token", + "symbol": "PLT", + "decimals": 18 + }, + "features": [], + "infoURL": "https://hashpalette.com/", + "shortName": "PCM", + "chainId": 1718, + "networkId": 1718, + "icon": "PLT", + "explorers": [ + { + "name": "Palettescan", + "url": "https://palettescan.com", + "icon": "PLT", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-17180.json b/_data/chains/eip155-17180.json new file mode 100644 index 000000000000..8e0f10dfd116 --- /dev/null +++ b/_data/chains/eip155-17180.json @@ -0,0 +1,26 @@ +{ + "name": "Palette Chain Testnet", + "chain": "PLT", + "rpc": ["https://palette-opennet.com:22000"], + "faucets": [], + "nativeCurrency": { + "name": "Palette Token", + "symbol": "PLT", + "decimals": 18 + }, + "features": [], + "infoURL": "https://hashpalette.com/", + "shortName": "PCT", + "chainId": 17180, + "networkId": 17180, + "slip44": 1, + "icon": "PLT", + "explorers": [ + { + "name": "Palettescan", + "url": "https://testnet.palettescan.com", + "icon": "PLT", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-172.json b/_data/chains/eip155-172.json index b8cf3865db29..6d8a3b74023f 100644 --- a/_data/chains/eip155-172.json +++ b/_data/chains/eip155-172.json @@ -1,13 +1,8 @@ { "name": "Latam-Blockchain Resil Testnet", "chain": "Resil", - "rpc": [ - "https://rpc.latam-blockchain.com", - "wss://ws.latam-blockchain.com" - ], - "faucets": [ - "https://faucet.latam-blockchain.com" - ], + "rpc": ["https://rpc.latam-blockchain.com", "wss://ws.latam-blockchain.com"], + "faucets": ["https://faucet.latam-blockchain.com"], "nativeCurrency": { "name": "Latam-Blockchain Resil Test Native Token", "symbol": "usd", @@ -16,5 +11,6 @@ "infoURL": "https://latam-blockchain.com", "shortName": "resil", "chainId": 172, - "networkId": 172 + "networkId": 172, + "slip44": 1 } diff --git a/_data/chains/eip155-17217.json b/_data/chains/eip155-17217.json new file mode 100644 index 000000000000..5746553f16bd --- /dev/null +++ b/_data/chains/eip155-17217.json @@ -0,0 +1,24 @@ +{ + "name": "KONET Mainnet", + "chain": "KONET", + "rpc": ["https://api.kon-wallet.com"], + "faucets": [], + "nativeCurrency": { + "name": "KONET", + "symbol": "KONET", + "decimals": 18 + }, + "infoURL": "https://konetmain.com", + "shortName": "KONET", + "chainId": 17217, + "networkId": 17217, + "slip44": 1, + "icon": "konet", + "explorers": [ + { + "name": "konet-explorer", + "url": "https://explorer.kon-wallet.com", + "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-1729.json b/_data/chains/eip155-1729.json new file mode 100644 index 000000000000..3cf26eb404a6 --- /dev/null +++ b/_data/chains/eip155-1729.json @@ -0,0 +1,22 @@ +{ + "name": "Reya Network", + "chain": "Reya", + "rpc": ["https://rpc.reya.network", "wss://ws.reya.network"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://reya.network", + "shortName": "reya", + "chainId": 1729, + "networkId": 1729, + "explorers": [ + { + "name": "Reya Network Explorer", + "url": "https://explorer.reya.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-173.json b/_data/chains/eip155-173.json new file mode 100644 index 000000000000..f6d0d1c01074 --- /dev/null +++ b/_data/chains/eip155-173.json @@ -0,0 +1,31 @@ +{ + "name": "ENI Mainnet", + "chain": "ENI", + "rpc": [ + "https://rpc.eniac.network", + "https://rpc1.eniac.network", + "https://rpc2.eniac.network", + "https://enirpc.com", + "https://jp.enirpc.com", + "https://jp.eniacrpc.net", + "wss://rpc.eniac.network/ws/" + ], + "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-1731313.json b/_data/chains/eip155-1731313.json new file mode 100644 index 000000000000..28a0c9305bb9 --- /dev/null +++ b/_data/chains/eip155-1731313.json @@ -0,0 +1,15 @@ +{ + "name": "Turkey Demo Dev", + "chain": "ETH", + "rpc": ["https://devchain-poa.huabeizhenxuan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "TDD", + "chainId": 1731313, + "networkId": 1731313 +} 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-174.json b/_data/chains/eip155-174.json new file mode 100644 index 000000000000..742a5d13e55c --- /dev/null +++ b/_data/chains/eip155-174.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": 174, + "networkId": 174, + "icon": "eni-test", + "explorers": [ + { + "name": "ENI Testnet Explorer", + "url": "https://scan-testnet.eniac.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1740.json b/_data/chains/eip155-1740.json new file mode 100644 index 000000000000..6e52241ffb8d --- /dev/null +++ b/_data/chains/eip155-1740.json @@ -0,0 +1,24 @@ +{ + "name": "Metal L2 Testnet", + "chain": "Metal L2 Testnet", + "rpc": ["https://testnet.rpc.metall2.com"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://metall2.com", + "shortName": "metall2-testnet", + "chainId": 1740, + "networkId": 1740, + "icon": "metal", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.explorer.metall2.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} 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-1750.json b/_data/chains/eip155-1750.json new file mode 100644 index 000000000000..a4ede915459c --- /dev/null +++ b/_data/chains/eip155-1750.json @@ -0,0 +1,24 @@ +{ + "name": "Metal L2", + "chain": "Metal L2", + "rpc": ["https://rpc.metall2.com"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://metall2.com", + "shortName": "metall2", + "chainId": 1750, + "networkId": 1750, + "icon": "metal", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.metall2.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} 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-175200.json b/_data/chains/eip155-175200.json new file mode 100644 index 000000000000..c3ed6af9d566 --- /dev/null +++ b/_data/chains/eip155-175200.json @@ -0,0 +1,24 @@ +{ + "name": "Lit Chain Mainnet", + "chain": "LITKEY", + "icon": "lit", + "rpc": ["https://lit-chain-rpc.litprotocol.com"], + "faucets": [], + "nativeCurrency": { + "name": "Lit Protocol", + "symbol": "LITKEY", + "decimals": 18 + }, + "infoURL": "https://litprotocol.com", + "shortName": "lit", + "chainId": 175200, + "networkId": 175200, + "explorers": [ + { + "name": "Lit Chain Explorer", + "url": "https://lit-chain-explorer.litprotocol.com", + "icon": "lit", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-176.json b/_data/chains/eip155-176.json new file mode 100644 index 000000000000..13dd8fc07a0b --- /dev/null +++ b/_data/chains/eip155-176.json @@ -0,0 +1,23 @@ +{ + "name": "DC Mainnet", + "chain": "dcchain", + "icon": "dcchain", + "rpc": ["https://rpc.dcnetio.cloud", "wss://ws.dcnetio.cloud"], + "faucets": [], + "nativeCurrency": { + "name": "DC Native Token", + "symbol": "DCT", + "decimals": 18 + }, + "infoURL": "https://www.dcnetio.cloud", + "shortName": "dcchain", + "chainId": 176, + "networkId": 176, + "explorers": [ + { + "name": "dcscan", + "url": "https://exp.dcnetio.cloud", + "standard": "none" + } + ] +} 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-1773.json b/_data/chains/eip155-1773.json new file mode 100644 index 000000000000..b5709c5f32f8 --- /dev/null +++ b/_data/chains/eip155-1773.json @@ -0,0 +1,25 @@ +{ + "name": "PartyChain", + "chain": "mainnet", + "rpc": ["https://tea.mining4people.com/rpc", "http://172.104.194.36:8545"], + "faucets": [], + "nativeCurrency": { + "name": "Grams", + "symbol": "GRAMS", + "decimals": 18 + }, + "infoURL": "TeaPartyCrypto.com", + "shortName": "TeaParty", + "chainId": 1773, + "networkId": 1773, + "icon": "grams", + "status": "incubating", + "explorers": [ + { + "name": "PartyExplorer", + "url": "https://partyexplorer.co", + "icon": "grams", + "standard": "EIP3091" + } + ] +} 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-1776.json b/_data/chains/eip155-1776.json new file mode 100644 index 000000000000..8fde3656e300 --- /dev/null +++ b/_data/chains/eip155-1776.json @@ -0,0 +1,31 @@ +{ + "name": "Injective", + "chain": "Injective", + "icon": "injective", + "rpc": [ + "https://sentry.evm-rpc.injective.network", + "wss://sentry.evm-ws.injective.network", + "https://injectiveevm-rpc.polkachu.com", + "wss://injectiveevm-ws.polkachu.com" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://injective.com/getinj"], + "nativeCurrency": { + "name": "Injective", + "symbol": "INJ", + "decimals": 18 + }, + "infoURL": "https://injective.com", + "shortName": "injective", + "chainId": 1776, + "networkId": 1776, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.injective.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1777.json b/_data/chains/eip155-1777.json new file mode 100644 index 000000000000..de694860d6fc --- /dev/null +++ b/_data/chains/eip155-1777.json @@ -0,0 +1,23 @@ +{ + "name": "Gauss Mainnet", + "chain": "Gauss", + "icon": "gauss", + "rpc": ["https://rpc.gaussgang.com"], + "faucets": [], + "nativeCurrency": { + "name": "GANG", + "symbol": "GANG", + "decimals": 18 + }, + "infoURL": "https://gaussgang.com/", + "shortName": "gauss", + "chainId": 1777, + "networkId": 1777, + "explorers": [ + { + "name": "Gauss Explorer", + "url": "https://explorer.gaussgang.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-17771.json b/_data/chains/eip155-17771.json new file mode 100644 index 000000000000..47a07e84a61d --- /dev/null +++ b/_data/chains/eip155-17771.json @@ -0,0 +1,24 @@ +{ + "name": "DMD Diamond", + "chain": "DMD", + "rpc": ["https://rpc.bit.diamonds"], + "faucets": ["https://faucet.bit.diamonds"], + "nativeCurrency": { + "name": "DMD", + "symbol": "DMD", + "decimals": 18 + }, + "infoURL": "https://bit.diamonds", + "shortName": "dmd", + "chainId": 17771, + "networkId": 17771, + "icon": "dmd", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.bit.diamonds", + "icon": "dmd", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-17777.json b/_data/chains/eip155-17777.json new file mode 100644 index 000000000000..1bb60b25d64d --- /dev/null +++ b/_data/chains/eip155-17777.json @@ -0,0 +1,23 @@ +{ + "name": "EOS EVM Network", + "chain": "EOS", + "icon": "eos", + "rpc": ["https://api.evm.eosnetwork.com"], + "faucets": [], + "nativeCurrency": { + "name": "EOS", + "symbol": "EOS", + "decimals": 18 + }, + "infoURL": "https://eosnetwork.com/eos-evm", + "shortName": "eos", + "chainId": 17777, + "networkId": 17777, + "explorers": [ + { + "name": "EOS EVM Explorer", + "url": "https://explorer.evm.eosnetwork.com", + "standard": "EIP3091" + } + ] +} 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 new file mode 100644 index 000000000000..5a73bf8b1b9d --- /dev/null +++ b/_data/chains/eip155-1789.json @@ -0,0 +1,31 @@ +{ + "name": "ZKBase Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://sepolia-rpc.zkbase.app"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zkbase.org/", + "shortName": "zkbase-sepolia", + "chainId": 1789, + "networkId": 1789, + "slip44": 1, + "icon": "zkbase", + "explorers": [ + { + "name": "ZKbase Block Explorer", + "url": "https://sepolia-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-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-18.json b/_data/chains/eip155-18.json index b2822c64102c..aa807843f6dc 100644 --- a/_data/chains/eip155-18.json +++ b/_data/chains/eip155-18.json @@ -2,11 +2,11 @@ "name": "ThunderCore Testnet", "chain": "TST", "rpc": [ - "https://testnet-rpc.thundercore.com" - ], - "faucets": [ - "https://faucet-testnet.thundercore.com" + "https://testnet-rpc.thundercore.com", + "https://thundercore-testnet.drpc.org", + "wss://thundercore-testnet.drpc.org" ], + "faucets": ["https://faucet-testnet.thundercore.com"], "nativeCurrency": { "name": "ThunderCore Testnet Token", "symbol": "TST", @@ -16,6 +16,7 @@ "shortName": "TST", "chainId": 18, "networkId": 18, + "slip44": 1, "explorers": [ { "name": "thundercore-blockscout-testnet", diff --git a/_data/chains/eip155-180.json b/_data/chains/eip155-180.json index 682fc5808f54..8c840de66f90 100644 --- a/_data/chains/eip155-180.json +++ b/_data/chains/eip155-180.json @@ -1,9 +1,7 @@ { "name": "AME Chain Mainnet", "chain": "AME", - "rpc": [ - "https://node1.amechain.io/" - ], + "rpc": ["https://node1.amechain.io/"], "faucets": [], "nativeCurrency": { "name": "AME", @@ -21,4 +19,4 @@ "standard": "EIP3091" } ] -} \ No newline at end of file +} diff --git a/_data/chains/eip155-18000.json b/_data/chains/eip155-18000.json new file mode 100644 index 000000000000..e5fd69ea0c55 --- /dev/null +++ b/_data/chains/eip155-18000.json @@ -0,0 +1,23 @@ +{ + "name": "Frontier of Dreams Testnet", + "chain": "Game Network", + "rpc": ["https://rpc.fod.games/"], + "nativeCurrency": { + "name": "ZKST", + "symbol": "ZKST", + "decimals": 18 + }, + "faucets": [], + "shortName": "ZKST", + "chainId": 18000, + "networkId": 18000, + "slip44": 1, + "infoURL": "https://goexosphere.com", + "explorers": [ + { + "name": "Game Network", + "url": "https://explorer.fod.games", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1802203764.json b/_data/chains/eip155-1802203764.json new file mode 100644 index 000000000000..90af1822568f --- /dev/null +++ b/_data/chains/eip155-1802203764.json @@ -0,0 +1,33 @@ +{ + "name": "Kakarot Sepolia (Deprecated)", + "chain": "ETH", + "icon": "kakarot", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://kakarot.org", + "shortName": "kkrt-sepolia", + "chainId": 1802203764, + "networkId": 1802203764, + "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-1804.json b/_data/chains/eip155-1804.json new file mode 100644 index 000000000000..0689cb55aed9 --- /dev/null +++ b/_data/chains/eip155-1804.json @@ -0,0 +1,32 @@ +{ + "name": "Kerleano", + "title": "Proof of Climate awaReness testnet", + "chain": "CRC", + "status": "active", + "rpc": [ + "https://cacib-saturn-test.francecentral.cloudapp.azure.com", + "wss://cacib-saturn-test.francecentral.cloudapp.azure.com:9443" + ], + "faucets": [ + "https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md" + ], + "nativeCurrency": { + "name": "Climate awaReness Coin", + "symbol": "CRC", + "decimals": 18 + }, + "infoURL": "https://github.com/ethereum-pocr/kerleano", + "shortName": "kerleano", + "chainId": 1804, + "networkId": 1804, + "slip44": 1, + "icon": "pocr", + "explorers": [ + { + "name": "Lite Explorer", + "url": "https://ethereum-pocr.github.io/explorer/kerleano", + "icon": "pocr", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1807.json b/_data/chains/eip155-1807.json new file mode 100644 index 000000000000..4ccffcc52059 --- /dev/null +++ b/_data/chains/eip155-1807.json @@ -0,0 +1,24 @@ +{ + "name": "Rabbit Analog Testnet Chain", + "chain": "rAna", + "icon": "rabbit", + "rpc": ["https://rabbit.analog-rpc.com"], + "faucets": ["https://analogfaucet.com"], + "nativeCurrency": { + "name": "Rabbit Analog Test Chain Native Token ", + "symbol": "rAna", + "decimals": 18 + }, + "infoURL": "https://rabbit.analogscan.com", + "shortName": "rAna", + "chainId": 1807, + "networkId": 1807, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://rabbit.analogscan.com", + "standard": "none" + } + ] +} 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-18122.json b/_data/chains/eip155-18122.json new file mode 100644 index 000000000000..29219b18a24a --- /dev/null +++ b/_data/chains/eip155-18122.json @@ -0,0 +1,24 @@ +{ + "name": "Smart Trade Networks", + "chain": "Smart Trade Networks", + "rpc": ["https://beefledgerwallet.com:8544"], + "faucets": [], + "nativeCurrency": { + "name": "STN", + "symbol": "STN", + "decimals": 18 + }, + "infoURL": "https://www.smarttradenetworks.com", + "shortName": "STN", + "chainId": 18122, + "networkId": 18122, + "icon": "stn", + "explorers": [ + { + "name": "stnscan", + "url": "https://stnscan.com", + "icon": "stn", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-181228.json b/_data/chains/eip155-181228.json new file mode 100644 index 000000000000..7d87fc68074a --- /dev/null +++ b/_data/chains/eip155-181228.json @@ -0,0 +1,33 @@ +{ + "name": "HPP Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://sepolia.hpp.io"], + "faucets": ["https://faucet.conduit.xyz"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.hpp.io", + "shortName": "hpp-sepolia", + "chainId": 181228, + "networkId": 181228, + "icon": "hpp", + "explorers": [ + { + "name": "HPP Sepolia Explorer", + "url": "https://sepolia-explorer.hpp.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://portal.arbitrum.io/bridge" + } + ] + } +} diff --git a/_data/chains/eip155-18159.json b/_data/chains/eip155-18159.json new file mode 100644 index 000000000000..23dd6131bc99 --- /dev/null +++ b/_data/chains/eip155-18159.json @@ -0,0 +1,29 @@ +{ + "name": "Proof Of Memes", + "title": "Proof Of Memes Mainnet", + "chain": "POM", + "icon": "pom", + "rpc": [ + "https://mainnet-rpc.memescan.io", + "https://mainnet-rpc2.memescan.io", + "https://mainnet-rpc3.memescan.io", + "https://mainnet-rpc4.memescan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Proof Of Memes", + "symbol": "POM", + "decimals": 18 + }, + "infoURL": "https://proofofmemes.org", + "shortName": "pom", + "chainId": 18159, + "networkId": 18159, + "explorers": [ + { + "name": "explorer-proofofmemes", + "url": "https://memescan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1818.json b/_data/chains/eip155-1818.json index ee2b2591ae4b..794197e6e49d 100644 --- a/_data/chains/eip155-1818.json +++ b/_data/chains/eip155-1818.json @@ -21,9 +21,11 @@ "chainId": 1818, "networkId": 1818, "slip44": 1818, - "explorers": [{ - "name": "cube-scan", - "url": "https://cubescan.network", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "cube-scan", + "url": "https://cubescan.network", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-18181.json b/_data/chains/eip155-18181.json new file mode 100644 index 000000000000..b474cbdfcafb --- /dev/null +++ b/_data/chains/eip155-18181.json @@ -0,0 +1,24 @@ +{ + "name": "G8Chain Testnet", + "chain": "G8C", + "icon": "G8Chain", + "rpc": ["https://testnet-rpc.oneg8.network"], + "faucets": ["https://faucet.oneg8.network"], + "nativeCurrency": { + "name": "G8Coin", + "symbol": "G8C", + "decimals": 18 + }, + "infoURL": "https://oneg8.one", + "shortName": "G8Ct", + "chainId": 18181, + "networkId": 18181, + "slip44": 1, + "explorers": [ + { + "name": "G8Chain", + "url": "https://testnet.oneg8.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1819.json b/_data/chains/eip155-1819.json index 50075a5bc5c7..01f3a8f4156f 100644 --- a/_data/chains/eip155-1819.json +++ b/_data/chains/eip155-1819.json @@ -22,10 +22,12 @@ "shortName": "cubet", "chainId": 1819, "networkId": 1819, - "slip44": 1819, - "explorers": [{ - "name": "cubetest-scan", - "url": "https://testnet.cubescan.network", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "cubetest-scan", + "url": "https://testnet.cubescan.network", + "standard": "EIP3091" + } + ] } 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-1821.json b/_data/chains/eip155-1821.json new file mode 100644 index 000000000000..81a36bc47cff --- /dev/null +++ b/_data/chains/eip155-1821.json @@ -0,0 +1,28 @@ +{ + "name": "Ruby Smart Chain MAINNET", + "chain": "RUBY", + "rpc": [ + "https://mainnet-data.rubychain.io/", + "https://mainnet.rubychain.io/" + ], + "nativeCurrency": { + "name": "RUBY Smart Chain Native Token", + "symbol": "RUBY", + "decimals": 18 + }, + "infoURL": "https://rubychain.io", + "faucets": [], + "shortName": "RUBY", + "chainId": 1821, + "networkId": 1821, + "slip44": 1, + "icon": "ruby", + "explorers": [ + { + "name": "RUBY Smart Chain MAINNET Explorer", + "icon": "ruby", + "url": "https://rubyscan.net", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-18231.json b/_data/chains/eip155-18231.json new file mode 100644 index 000000000000..00ab76131cbe --- /dev/null +++ b/_data/chains/eip155-18231.json @@ -0,0 +1,35 @@ +{ + "name": "unreal-old", + "title": "unreal testnet for re.al", + "chain": "unreal", + "rpc": [ + "https://rpc.unreal.gelato.digital", + "wss://ws.unreal.gelato.digital" + ], + "nativeCurrency": { + "name": "unreal Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/unreal", + "faucets": [], + "shortName": "unreal-old", + "chainId": 18231, + "networkId": 18231, + "slip44": 60, + "icon": "unreal", + "explorers": [ + { + "name": "blockscout", + "url": "https://unreal.blockscout.com", + "icon": "unreal", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [] + }, + "status": "deprecated" +} diff --git a/_data/chains/eip155-18233.json b/_data/chains/eip155-18233.json new file mode 100644 index 000000000000..a25bc64a96a2 --- /dev/null +++ b/_data/chains/eip155-18233.json @@ -0,0 +1,34 @@ +{ + "name": "unreal", + "title": "unreal testnet for re.al", + "chain": "unreal", + "rpc": [ + "https://rpc.unreal-orbit.gelato.digital", + "wss://ws.unreal-orbit.gelato.digital" + ], + "nativeCurrency": { + "name": "unreal Ether", + "symbol": "reETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/unreal", + "faucets": [], + "shortName": "unreal", + "chainId": 18233, + "networkId": 18233, + "slip44": 60, + "icon": "unreal", + "explorers": [ + { + "name": "blockscout", + "url": "https://unreal.blockscout.com", + "icon": "unreal", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-17000", + "bridges": [{ "url": "https://bridge.gelato.network/bridge/unreal" }] + } +} diff --git a/_data/chains/eip155-18289463.json b/_data/chains/eip155-18289463.json index d4039afeccd8..d43222164f44 100644 --- a/_data/chains/eip155-18289463.json +++ b/_data/chains/eip155-18289463.json @@ -1,9 +1,7 @@ { "name": "IOLite", "chain": "ILT", - "rpc": [ - "https://net.iolite.io" - ], + "rpc": ["https://net.iolite.io"], "faucets": [], "nativeCurrency": { "name": "IOLite Ether", @@ -14,4 +12,4 @@ "shortName": "ilt", "chainId": 18289463, "networkId": 18289463 -} \ No newline at end of file +} 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-185.json b/_data/chains/eip155-185.json new file mode 100644 index 000000000000..f80db183bd50 --- /dev/null +++ b/_data/chains/eip155-185.json @@ -0,0 +1,28 @@ +{ + "name": "Mint Mainnet", + "chain": "ETH", + "rpc": [ + "https://rpc.mintchain.io", + "https://global.rpc.mintchain.io", + "https://asia.rpc.mintchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.mintchain.io", + "shortName": "mint", + "chainId": 185, + "networkId": 185, + "icon": "mint", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.mintchain.io", + "icon": "mint", + "standard": "EIP3091" + } + ] +} 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-1856.json b/_data/chains/eip155-1856.json index 6e4f240f6b4b..242f143d4615 100644 --- a/_data/chains/eip155-1856.json +++ b/_data/chains/eip155-1856.json @@ -1,9 +1,7 @@ { "name": "Teslafunds", "chain": "TSF", - "rpc": [ - "https://tsfapi.europool.me" - ], + "rpc": ["https://tsfapi.europool.me"], "faucets": [], "nativeCurrency": { "name": "Teslafunds Ether", @@ -14,4 +12,4 @@ "shortName": "tsf", "chainId": 1856, "networkId": 1 -} \ No newline at end of file +} diff --git a/_data/chains/eip155-186.json b/_data/chains/eip155-186.json index 454e28e6e8ec..72878543fd60 100644 --- a/_data/chains/eip155-186.json +++ b/_data/chains/eip155-186.json @@ -1,9 +1,7 @@ { "name": "Seele Mainnet", "chain": "Seele", - "rpc": [ - "https://rpc.seelen.pro/" - ], + "rpc": ["https://rpc.seelen.pro/"], "faucets": [], "nativeCurrency": { "name": "Seele", @@ -14,9 +12,11 @@ "shortName": "Seele", "chainId": 186, "networkId": 186, - "explorers": [{ - "name": "seeleview", - "url": "https://seeleview.net", - "standard": "none" - }] + "explorers": [ + { + "name": "seeleview", + "url": "https://seeleview.net", + "standard": "none" + } + ] } 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-18686.json b/_data/chains/eip155-18686.json new file mode 100644 index 000000000000..7c122f01cac1 --- /dev/null +++ b/_data/chains/eip155-18686.json @@ -0,0 +1,23 @@ +{ + "name": "MXC zkEVM Moonchain", + "chain": "MXC zkEVM", + "icon": "mxczkevm", + "rpc": ["https://rpc.mxc.com"], + "faucets": [], + "nativeCurrency": { + "name": "MXC zkEVM Moonchain", + "symbol": "MXC", + "decimals": 18 + }, + "infoURL": "https://doc.mxc.com/docs/intro", + "shortName": "MXCzkEVM", + "chainId": 18686, + "networkId": 18686, + "explorers": [ + { + "name": "MXC zkEVM Moonchain", + "url": "https://explorer.moonchain.com", + "standard": "EIP3091" + } + ] +} 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-1875.json b/_data/chains/eip155-1875.json new file mode 100644 index 000000000000..549ff8218803 --- /dev/null +++ b/_data/chains/eip155-1875.json @@ -0,0 +1,23 @@ +{ + "name": "Whitechain", + "chain": "WBT", + "rpc": ["https://rpc.whitechain.io"], + "faucets": [], + "nativeCurrency": { + "name": "WhiteBIT Coin", + "symbol": "WBT", + "decimals": 18 + }, + "infoURL": "https://whitechain.io", + "shortName": "wbt", + "chainId": 1875, + "networkId": 1875, + "icon": "whitechain", + "explorers": [ + { + "name": "whitechain-explorer", + "url": "https://explorer.whitechain.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-188.json b/_data/chains/eip155-188.json index 853d6e99255f..b3c79cdbe62e 100644 --- a/_data/chains/eip155-188.json +++ b/_data/chains/eip155-188.json @@ -1,9 +1,7 @@ { "name": "BMC Mainnet", "chain": "BMC", - "rpc": [ - "https://mainnet.bmcchain.com/" - ], + "rpc": ["https://mainnet.bmcchain.com/"], "faucets": [], "nativeCurrency": { "name": "BTM", @@ -14,9 +12,11 @@ "shortName": "BMC", "chainId": 188, "networkId": 188, - "explorers": [{ - "name": "Blockmeta", - "url": "https://bmc.blockmeta.com", - "standard": "none" - }] + "explorers": [ + { + "name": "Blockmeta", + "url": "https://bmc.blockmeta.com", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-1881.json b/_data/chains/eip155-1881.json new file mode 100644 index 000000000000..c039c8859e13 --- /dev/null +++ b/_data/chains/eip155-1881.json @@ -0,0 +1,32 @@ +{ + "name": "Gitshock Cartenz Testnet", + "chain": "Gitshock Cartenz", + "icon": "gitshockchain", + "rpc": ["https://rpc.cartenz.works"], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Gitshock Cartenz", + "symbol": "tGTFX", + "decimals": 18 + }, + "infoURL": "https://gitshock.com", + "shortName": "gitshockchain", + "chainId": 1881, + "networkId": 1881, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.cartenz.works", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-188710.json b/_data/chains/eip155-188710.json new file mode 100644 index 000000000000..f44e8d0a26a8 --- /dev/null +++ b/_data/chains/eip155-188710.json @@ -0,0 +1,22 @@ +{ + "name": "Bitica Chain Mainnet", + "chain": "BDCC", + "rpc": ["https://mainnet-rpc.biticablockchain.com/"], + "faucets": [], + "nativeCurrency": { + "name": "Bitica Coin", + "symbol": "BDCC", + "decimals": 18 + }, + "infoURL": "https://biticablockchain.com/", + "shortName": "bdcc", + "chainId": 188710, + "networkId": 188710, + "explorers": [ + { + "name": "Bitica DPOS Blockchain Explorer", + "url": "https://biticablockchain.com", + "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-18888.json b/_data/chains/eip155-18888.json new file mode 100644 index 000000000000..21e700c2b83d --- /dev/null +++ b/_data/chains/eip155-18888.json @@ -0,0 +1,30 @@ +{ + "name": "Titan (TKX)", + "chain": "Titan (TKX)", + "rpc": [ + "https://titan-json-rpc.titanlab.io", + "https://titan-json-rpc-tokyo.titanlab.io", + "https://titan-json-rpc-seoul.titanlab.io", + "https://titan-json-rpc-hongkong.titanlab.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Titan tkx", + "symbol": "TKX", + "decimals": 18 + }, + "infoURL": "https://titanlab.io", + "shortName": "titan_tkx", + "chainId": 18888, + "networkId": 18888, + "slip44": 1, + "icon": "titan_tkx", + "explorers": [ + { + "name": "Titan Explorer", + "url": "https://tkxscan.io/Titan", + "standard": "none", + "icon": "titan_tkx" + } + ] +} diff --git a/_data/chains/eip155-188881.json b/_data/chains/eip155-188881.json new file mode 100644 index 000000000000..d35cb8a69838 --- /dev/null +++ b/_data/chains/eip155-188881.json @@ -0,0 +1,24 @@ +{ + "name": "Condor Test Network", + "chain": "CONDOR", + "icon": "condor", + "rpc": ["https://testnet.condor.systems/rpc"], + "faucets": ["https://faucet.condor.systems"], + "nativeCurrency": { + "name": "Condor Native Token", + "symbol": "CONDOR", + "decimals": 18 + }, + "infoURL": "https://condor.systems", + "shortName": "condor", + "chainId": 188881, + "networkId": 188881, + "slip44": 1, + "explorers": [ + { + "name": "CondorScan", + "url": "https://explorer.condor.systems", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-18889.json b/_data/chains/eip155-18889.json new file mode 100644 index 000000000000..71c5296da582 --- /dev/null +++ b/_data/chains/eip155-18889.json @@ -0,0 +1,29 @@ +{ + "name": "Titan (TKX) Testnet", + "chain": "Titan (TKX)", + "rpc": [ + "https://titan-testnet-json-rpc.titanlab.io", + "https://titan-testnet-json-rpc-1.titanlab.io", + "https://titan-testnet-json-rpc-2.titanlab.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Titan tkx", + "symbol": "TKX", + "decimals": 18 + }, + "infoURL": "https://titanlab.io", + "shortName": "titan_tkx-testnet", + "chainId": 18889, + "networkId": 18889, + "slip44": 1, + "icon": "titan_tkx", + "explorers": [ + { + "name": "Titan Explorer", + "url": "https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet", + "standard": "none", + "icon": "titan_tkx" + } + ] +} diff --git a/_data/chains/eip155-189.json b/_data/chains/eip155-189.json index 64732c87d4ba..3c405a6752c1 100644 --- a/_data/chains/eip155-189.json +++ b/_data/chains/eip155-189.json @@ -1,9 +1,7 @@ { "name": "BMC Testnet", "chain": "BMC", - "rpc": [ - "https://testnet.bmcchain.com" - ], + "rpc": ["https://testnet.bmcchain.com"], "faucets": [], "nativeCurrency": { "name": "BTM", @@ -14,9 +12,12 @@ "shortName": "BMCT", "chainId": 189, "networkId": 189, - "explorers": [{ - "name": "Blockmeta", - "url": "https://bmctestnet.blockmeta.com", - "standard": "none" - }] + "slip44": 1, + "explorers": [ + { + "name": "Blockmeta", + "url": "https://bmctestnet.blockmeta.com", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-1890.json b/_data/chains/eip155-1890.json new file mode 100644 index 000000000000..53aac1e085f2 --- /dev/null +++ b/_data/chains/eip155-1890.json @@ -0,0 +1,29 @@ +{ + "name": "Lightlink Phoenix Mainnet", + "chain": "Lightlink Phoenix Mainnet", + "icon": "lightlink", + "rpc": ["https://replicator.phoenix.lightlink.io/rpc/v1"], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lightlink.io", + "shortName": "lightlink_phoenix", + "chainId": 1890, + "networkId": 1890, + "explorers": [ + { + "name": "phoenix", + "url": "https://phoenix.lightlink.io", + "icon": "lightlink", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1891.json b/_data/chains/eip155-1891.json new file mode 100644 index 000000000000..781f2af876e1 --- /dev/null +++ b/_data/chains/eip155-1891.json @@ -0,0 +1,30 @@ +{ + "name": "Lightlink Pegasus Testnet", + "chain": "Lightlink Pegasus Testnet", + "icon": "lightlink", + "rpc": ["https://replicator.pegasus.lightlink.io/rpc/v1"], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": ["https://faucet.pegasus.lightlink.io/"], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lightlink.io", + "shortName": "lightlink_pegasus", + "chainId": 1891, + "networkId": 1891, + "slip44": 1, + "explorers": [ + { + "name": "pegasus", + "url": "https://pegasus.lightlink.io", + "icon": "lightlink", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1898.json b/_data/chains/eip155-1898.json index a3c62554f559..273dccb3a336 100644 --- a/_data/chains/eip155-1898.json +++ b/_data/chains/eip155-1898.json @@ -1,11 +1,7 @@ { "name": "BON Network", "chain": "BON", - "network": "testnet", - "rpc": [ - "http://rpc.boyanet.org:8545", - "ws://rpc.boyanet.org:8546" - ], + "rpc": ["http://rpc.boyanet.org:8545", "ws://rpc.boyanet.org:8546"], "faucets": [], "nativeCurrency": { "name": "BOYACoin", @@ -16,9 +12,11 @@ "shortName": "boya", "chainId": 1898, "networkId": 1, - "explorers": [{ - "name": "explorer", - "url": "https://explorer.boyanet.org:4001", - "standard": "EIP3091" - }] -} \ No newline at end of file + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.boyanet.org:4001", + "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 08ad522ad623..92a7effe2a85 100644 --- a/_data/chains/eip155-19.json +++ b/_data/chains/eip155-19.json @@ -3,25 +3,35 @@ "chain": "SGB", "icon": "songbird", "rpc": [ - "https://songbird.towolabs.com/rpc", - "https://sgb.ftso.com.au/ext/bc/C/rpc", - "https://sgb.lightft.so/rpc", - "https://sgb-rpc.ftso.eu" + "https://songbird-api.flare.network/ext/C/rpc", + "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.au.cc/songbird", + "https://songbird.enosys.global/ext/C/rpc", + "https://songbird.solidifi.app/ext/C/rpc" ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": [], "nativeCurrency": { "name": "Songbird", "symbol": "SGB", "decimals": 18 }, - "infoURL": "https://flare.xyz", + "infoURL": "https://flare.network", "shortName": "sgb", "chainId": 19, "networkId": 19, - - "explorers": [{ - "name": "blockscout", - "url": "https://songbird-explorer.flare.network", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "blockscout", + "url": "https://songbird-explorer.flare.network", + "standard": "EIP3091" + }, + { + "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-19011.json b/_data/chains/eip155-19011.json new file mode 100644 index 000000000000..1c7b12ba3bd9 --- /dev/null +++ b/_data/chains/eip155-19011.json @@ -0,0 +1,27 @@ +{ + "name": "HOME Verse Mainnet", + "chain": "HOME Verse", + "icon": "home_verse", + "rpc": ["https://rpc.mainnet.oasys.homeverse.games/"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://www.homeverse.games/", + "shortName": "HMV", + "chainId": 19011, + "networkId": 19011, + "explorers": [ + { + "name": "HOME Verse Explorer", + "url": "https://explorer.oasys.homeverse.games", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } +} 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-1904.json b/_data/chains/eip155-1904.json new file mode 100644 index 000000000000..b5de5112e17b --- /dev/null +++ b/_data/chains/eip155-1904.json @@ -0,0 +1,23 @@ +{ + "name": "Sports Chain Network", + "chain": "SCN", + "rpc": ["https://rpc.sportschainnetwork.xyz/"], + "faucets": [], + "nativeCurrency": { + "name": "SCN", + "symbol": "SCN", + "decimals": 18 + }, + "infoURL": "https://sportschainnetwork.xyz", + "shortName": "SCN", + "chainId": 1904, + "networkId": 1904, + "icon": "scn", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.sportschainnetwork.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-190415.json b/_data/chains/eip155-190415.json new file mode 100644 index 000000000000..77d5fb72a591 --- /dev/null +++ b/_data/chains/eip155-190415.json @@ -0,0 +1,29 @@ +{ + "name": "HPP Mainnet", + "chain": "ETH", + "rpc": ["https://mainnet.hpp.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.hpp.io", + "shortName": "hpp-mainnet", + "chainId": 190415, + "networkId": 190415, + "icon": "hpp", + "explorers": [ + { + "name": "HPP Mainnet Explorer", + "url": "https://explorer.hpp.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://portal.arbitrum.io/bridge" }] + } +} diff --git a/_data/chains/eip155-1907.json b/_data/chains/eip155-1907.json new file mode 100644 index 000000000000..f2d88403726d --- /dev/null +++ b/_data/chains/eip155-1907.json @@ -0,0 +1,23 @@ +{ + "name": "Bitcichain Mainnet", + "chain": "BITCI", + "icon": "bitci", + "rpc": ["https://rpc.bitci.com"], + "faucets": [], + "nativeCurrency": { + "name": "Bitci", + "symbol": "BITCI", + "decimals": 18 + }, + "infoURL": "https://www.bitcichain.com", + "shortName": "bitci", + "chainId": 1907, + "networkId": 1907, + "explorers": [ + { + "name": "Bitci Explorer", + "url": "https://bitciexplorer.com", + "standard": "EIP3091" + } + ] +} 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-1908.json b/_data/chains/eip155-1908.json new file mode 100644 index 000000000000..3f51c7ad7756 --- /dev/null +++ b/_data/chains/eip155-1908.json @@ -0,0 +1,24 @@ +{ + "name": "Bitcichain Testnet", + "chain": "TBITCI", + "icon": "bitci", + "rpc": ["https://testnet.bitcichain.com"], + "faucets": ["https://faucet.bitcichain.com"], + "nativeCurrency": { + "name": "Test Bitci", + "symbol": "TBITCI", + "decimals": 18 + }, + "infoURL": "https://www.bitcichain.com", + "shortName": "tbitci", + "chainId": 1908, + "networkId": 1908, + "slip44": 1, + "explorers": [ + { + "name": "Bitci Explorer Testnet", + "url": "https://testnet.bitciexplorer.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1909.json b/_data/chains/eip155-1909.json new file mode 100644 index 000000000000..ea467d74ee6b --- /dev/null +++ b/_data/chains/eip155-1909.json @@ -0,0 +1,23 @@ +{ + "name": "Merkle Scan", + "chain": "MRK", + "icon": "merklescan", + "rpc": ["https://marklechain-rpc.merklescan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Merkle", + "symbol": "MRK", + "decimals": 18 + }, + "infoURL": "https://merklescan.com", + "shortName": "MRK", + "chainId": 1909, + "networkId": 1909, + "explorers": [ + { + "name": "blockscout", + "url": "https://merklescan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-191.json b/_data/chains/eip155-191.json new file mode 100644 index 000000000000..40579d1f4e9b --- /dev/null +++ b/_data/chains/eip155-191.json @@ -0,0 +1,17 @@ +{ + "name": "FileFileGo", + "chain": "FFG", + "icon": "ffgIcon", + "rpc": ["https://rpc.filefilego.com/rpc"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "FFG", + "symbol": "FFG", + "decimals": 18 + }, + "infoURL": "https://filefilego.com", + "shortName": "ffg", + "chainId": 191, + "networkId": 191 +} diff --git a/_data/chains/eip155-1911.json b/_data/chains/eip155-1911.json new file mode 100644 index 000000000000..41ae7ac90c9f --- /dev/null +++ b/_data/chains/eip155-1911.json @@ -0,0 +1,23 @@ +{ + "name": "Scalind", + "chain": "ETH", + "icon": "scalind", + "rpc": ["https://rpc.scalind.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scalind.com", + "shortName": "scal", + "chainId": 1911, + "networkId": 1911, + "explorers": [ + { + "name": "scalind", + "url": "https://explorer.scalind.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1912.json b/_data/chains/eip155-1912.json new file mode 100644 index 000000000000..eb78fc18f833 --- /dev/null +++ b/_data/chains/eip155-1912.json @@ -0,0 +1,25 @@ +{ + "name": "Ruby Smart Chain Testnet", + "chain": "RUBY", + "rpc": ["https://testnet-rchain.rubychain.io/"], + "nativeCurrency": { + "name": "RUBY Smart Chain Native Token", + "symbol": "tRUBY", + "decimals": 18 + }, + "infoURL": "https://rubychain.io", + "faucets": ["https://claim-faucet.rubychain.io/"], + "shortName": "tRUBY", + "chainId": 1912, + "networkId": 1912, + "slip44": 1, + "icon": "ruby", + "explorers": [ + { + "name": "RUBY Smart Chain Testnet Explorer", + "icon": "ruby", + "url": "https://testnet.rubyscan.net", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1918.json b/_data/chains/eip155-1918.json new file mode 100644 index 000000000000..d28c9558f5f0 --- /dev/null +++ b/_data/chains/eip155-1918.json @@ -0,0 +1,16 @@ +{ + "name": "UPB CRESCDI Testnet", + "chain": "UPBEth", + "rpc": ["https://testnet.crescdi.pub.ro"], + "infoURL": "https://mobylab.docs.crescdi.pub.ro/blog/UPB-CRESCDI-Testnet", + "faucets": [], + "nativeCurrency": { + "name": "UPBEth", + "symbol": "UPBEth", + "decimals": 18 + }, + "shortName": "UPBEth", + "chainId": 1918, + "networkId": 1918, + "explorers": [] +} 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-1918988905.json b/_data/chains/eip155-1918988905.json new file mode 100644 index 000000000000..37f2110427b7 --- /dev/null +++ b/_data/chains/eip155-1918988905.json @@ -0,0 +1,22 @@ +{ + "name": "RARI Chain Testnet", + "chain": "RARI", + "rpc": ["https://testnet.rpc.rarichain.org/http"], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://rarichain.org/", + "shortName": "rari-testnet", + "chainId": 1918988905, + "networkId": 1918988905, + "explorers": [ + { + "name": "rarichain-testnet-explorer", + "url": "https://explorer.rarichain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-19191.json b/_data/chains/eip155-19191.json new file mode 100644 index 000000000000..d67d14781bd9 --- /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-evm.blockxnet.com", + "standard": "EIP3091" + }, + { + "name": "BlockX Cosmos Explorer (Ping)", + "url": "https://ping.pub/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-192.json b/_data/chains/eip155-192.json new file mode 100644 index 000000000000..d64d3b453a28 --- /dev/null +++ b/_data/chains/eip155-192.json @@ -0,0 +1,24 @@ +{ + "name": "Redmansion Chain", + "chain": "RMC", + "icon": "redmansion", + "rpc": ["https://redmansion.io/srpc/"], + "faucets": [], + "nativeCurrency": { + "name": "Redmansion Coin", + "symbol": "RMC", + "decimals": 18 + }, + "infoURL": "https://www.redmansion.io", + "shortName": "rmc", + "chainId": 192, + "networkId": 192, + "explorers": [ + { + "name": "Redmansion explorer", + "url": "https://redmansion.io", + "icon": "redmansion", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-19224.json b/_data/chains/eip155-19224.json new file mode 100644 index 000000000000..d56225f21a1d --- /dev/null +++ b/_data/chains/eip155-19224.json @@ -0,0 +1,23 @@ +{ + "name": "Decentraconnect Social", + "chain": "DCSM", + "icon": "dcsmIcon", + "rpc": ["https://rpc.decentraconnect.io"], + "faucets": [], + "nativeCurrency": { + "name": "Decentraconnect Social", + "symbol": "DCSM", + "decimals": 18 + }, + "infoURL": "https://docs.decentraconnect.io", + "shortName": "DCSMs", + "chainId": 19224, + "networkId": 19224, + "explorers": [ + { + "name": "Decentraconnect Social", + "url": "https://decentraconnect.io", + "standard": "EIP3091" + } + ] +} 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-192837465.json b/_data/chains/eip155-192837465.json index 3c14a9615ced..5de1f2291cee 100644 --- a/_data/chains/eip155-192837465.json +++ b/_data/chains/eip155-192837465.json @@ -1,9 +1,7 @@ { "name": "Gather Mainnet Network", "chain": "GTH", - "rpc": [ - "https://mainnet.gather.network" - ], + "rpc": ["https://mainnet.gather.network"], "faucets": [], "nativeCurrency": { "name": "Gather", @@ -14,9 +12,13 @@ "shortName": "GTH", "chainId": 192837465, "networkId": 192837465, - "explorers": [{ - "name": "Blockscout", - "url": "https://explorer.gather.network", - "standard": "none" - }] + "icon": "gather", + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.gather.network", + "icon": "gather", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-192940.json b/_data/chains/eip155-192940.json new file mode 100644 index 000000000000..dda6166fa428 --- /dev/null +++ b/_data/chains/eip155-192940.json @@ -0,0 +1,19 @@ +{ + "name": "Mind Network Testnet", + "chain": "FHET", + "rpc": [ + "https://rpc-testnet.mindnetwork.xyz", + "wss://rpc-testnet.mindnetwork.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://mindnetwork.xyz", + "shortName": "fhet", + "chainId": 192940, + "networkId": 192940 +} diff --git a/_data/chains/eip155-193.json b/_data/chains/eip155-193.json index aee1b2e8d3cf..43128ac4a3fb 100644 --- a/_data/chains/eip155-193.json +++ b/_data/chains/eip155-193.json @@ -1,22 +1,22 @@ -{ - "name": "Crypto Emergency", - "chain": "CEM", - "rpc": [ - "https://cemchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Crypto Emergency", - "symbol": "CEM", - "decimals": 18 - }, - "infoURL": "https://cemblockchain.com/", - "shortName": "cem", - "chainId": 193, - "networkId": 193, - "explorers": [{ - "name": "cemscan", - "url": "https://cemscan.com", - "standard": "EIP3091" - }] -} +{ + "name": "Crypto Emergency", + "chain": "CEM", + "rpc": ["https://cemchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Crypto Emergency", + "symbol": "CEM", + "decimals": 18 + }, + "infoURL": "https://cemblockchain.com/", + "shortName": "cem", + "chainId": 193, + "networkId": 193, + "explorers": [ + { + "name": "cemscan", + "url": "https://cemscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-193939.json b/_data/chains/eip155-193939.json new file mode 100644 index 000000000000..8de570f6c3ed --- /dev/null +++ b/_data/chains/eip155-193939.json @@ -0,0 +1,24 @@ +{ + "name": "R0AR Chain", + "chain": "R0AR Chain", + "icon": "r0ar", + "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", + "icon": "r0ar", + "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-1945.json b/_data/chains/eip155-1945.json new file mode 100644 index 000000000000..adcf1a4b0324 --- /dev/null +++ b/_data/chains/eip155-1945.json @@ -0,0 +1,25 @@ +{ + "name": "ONUS Chain Testnet", + "title": "ONUS Chain Testnet", + "chain": "onus", + "rpc": ["https://rpc-testnet.onuschain.io"], + "faucets": [], + "nativeCurrency": { + "name": "ONUS", + "symbol": "ONUS", + "decimals": 18 + }, + "infoURL": "https://onuschain.io", + "shortName": "onus-testnet", + "chainId": 1945, + "networkId": 1945, + "slip44": 1, + "explorers": [ + { + "name": "Onus explorer testnet", + "url": "https://explorer-testnet.onuschain.io", + "icon": "onus", + "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-19478.json b/_data/chains/eip155-19478.json new file mode 100644 index 000000000000..ecda5bb6c8f2 --- /dev/null +++ b/_data/chains/eip155-19478.json @@ -0,0 +1,24 @@ +{ + "name": "Trustivon Testnet", + "chain": "Trustivon", + "shortName": "trustivon", + "infoURL": "https://trustivon.com", + "icon": "trustivon", + "chainId": 19478, + "networkId": 19478, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "nativeCurrency": { + "name": "Trustivon", + "symbol": "TC", + "decimals": 18 + }, + "rpc": ["https://rpc.trustivon.com"], + "faucets": ["https://faucet.trustivon.com"], + "explorers": [ + { + "name": "Trustivon Explorer", + "url": "https://scan.trustivon.com", + "standard": "EIP3091" + } + ] +} 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-195.json b/_data/chains/eip155-195.json new file mode 100644 index 000000000000..8d05be7b2176 --- /dev/null +++ b/_data/chains/eip155-195.json @@ -0,0 +1,26 @@ +{ + "name": "X Layer Testnet", + "chain": "X Layer", + "rpc": ["https://testrpc.xlayer.tech", "https://xlayertestrpc.okx.com"], + "faucets": ["https://www.okx.com/xlayer/faucet"], + "nativeCurrency": { + "name": "X Layer Global Utility Token in testnet", + "symbol": "OKB", + "decimals": 18 + }, + "features": [], + "infoURL": "https://www.okx.com/xlayer", + "shortName": "tokb", + "chainId": 195, + "networkId": 195, + "slip44": 1, + "icon": "xlayerTestnet", + "explorers": [ + { + "name": "OKLink", + "url": "https://www.oklink.com/xlayer-test", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-1951.json b/_data/chains/eip155-1951.json new file mode 100644 index 000000000000..76ed0d85ff50 --- /dev/null +++ b/_data/chains/eip155-1951.json @@ -0,0 +1,18 @@ +{ + "name": "D-Chain Mainnet", + "chain": "D-Chain", + "rpc": [ + "https://mainnet.d-chain.network/ext/bc/2ZiR1Bro5E59siVuwdNuRFzqL95NkvkbzyLBdrsYR9BLSHV7H4/rpc" + ], + "nativeCurrency": { + "name": "DOINX", + "symbol": "DOINX", + "decimals": 18 + }, + "shortName": "dchain-mainnet", + "chainId": 1951, + "networkId": 1951, + "icon": "dchain", + "faucets": [], + "infoURL": "" +} 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-19527.json b/_data/chains/eip155-19527.json new file mode 100644 index 000000000000..931dccf11756 --- /dev/null +++ b/_data/chains/eip155-19527.json @@ -0,0 +1,16 @@ +{ + "name": "Magnet Network", + "chain": "Magnet", + "rpc": ["https://magnet-rpc.magport.io/"], + "faucets": [], + "nativeCurrency": { + "name": "Magnet Network", + "symbol": "DOT", + "decimals": 18 + }, + "infoURL": "https://magnet.magport.io/", + "shortName": "mgt", + "chainId": 19527, + "networkId": 19527, + "explorers": [] +} 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 new file mode 100644 index 000000000000..8f374bfaac25 --- /dev/null +++ b/_data/chains/eip155-1953.json @@ -0,0 +1,23 @@ +{ + "name": "Selendra Network Testnet", + "chain": "tSEL", + "rpc": ["https://rpc-testnet.selendra.org"], + "faucets": [], + "nativeCurrency": { + "name": "Selendra", + "symbol": "tSEL", + "decimals": 18 + }, + "infoURL": "https://selendra.org", + "shortName": "tSEL", + "chainId": 1953, + "networkId": 1953, + "icon": "selendra", + "explorers": [ + { + "name": "Selendra Portal", + "url": "https://explorer.selendra.org", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1954.json b/_data/chains/eip155-1954.json new file mode 100644 index 000000000000..67f7b91f313c --- /dev/null +++ b/_data/chains/eip155-1954.json @@ -0,0 +1,29 @@ +{ + "name": "Dexilla Testnet", + "chain": "Dexilla", + "rpc": ["https://rpc.dexilla.com"], + "faucets": [], + "icon": "dxz", + "nativeCurrency": { + "name": "Dexilla Native Token", + "symbol": "DXZ", + "decimals": 18 + }, + "infoURL": "https://dexilla.com", + "shortName": "Dexilla", + "chainId": 1954, + "networkId": 1954, + "slip44": 1, + "explorers": [ + { + "name": "dos-mainnet", + "url": "https://exp.dexilla.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://bridge.dexilla.com" }] + } +} 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-1956.json b/_data/chains/eip155-1956.json new file mode 100644 index 000000000000..85ba6fc8e802 --- /dev/null +++ b/_data/chains/eip155-1956.json @@ -0,0 +1,23 @@ +{ + "name": "AIW3 Testnet", + "chain": "AIW3", + "rpc": ["https://rpc-testnet.aiw3.io/"], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://aiw3.io/", + "shortName": "AIW3-Testnet", + "chainId": 1956, + "networkId": 1956, + "icon": "aiw3", + "explorers": [ + { + "name": "aiw3 testnet scan", + "url": "https://scan-testnet.aiw3.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-196.json b/_data/chains/eip155-196.json new file mode 100644 index 000000000000..e5650bd1f393 --- /dev/null +++ b/_data/chains/eip155-196.json @@ -0,0 +1,25 @@ +{ + "name": "X Layer Mainnet", + "chain": "X Layer", + "rpc": ["https://rpc.xlayer.tech", "https://xlayerrpc.okx.com"], + "faucets": [], + "nativeCurrency": { + "name": "X Layer Global Utility Token", + "symbol": "OKB", + "decimals": 18 + }, + "features": [], + "infoURL": "https://www.okx.com/xlayer", + "shortName": "okb", + "chainId": 196, + "networkId": 196, + "icon": "xlayer", + "explorers": [ + { + "name": "OKLink", + "url": "https://www.oklink.com/xlayer", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-19600.json b/_data/chains/eip155-19600.json new file mode 100644 index 000000000000..0ec7d83cf5b7 --- /dev/null +++ b/_data/chains/eip155-19600.json @@ -0,0 +1,26 @@ +{ + "name": "LBRY Mainnet", + "chain": "LBRY", + "icon": "lbry", + "rpc": ["https://lbry.nl/rpc"], + "features": [{ "name": "EIP155" }], + "faucets": [], + "nativeCurrency": { + "name": "LBRY Credits", + "symbol": "LBC", + "decimals": 8 + }, + "infoURL": "https://lbry.com", + "shortName": "LBRY", + "chainId": 19600, + "networkId": 19600, + "slip44": 140, + "explorers": [ + { + "name": "LBRY Block Explorer", + "url": "https://explorer.lbry.com", + "icon": "lbry", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1961.json b/_data/chains/eip155-1961.json new file mode 100644 index 000000000000..1b59d4a511bd --- /dev/null +++ b/_data/chains/eip155-1961.json @@ -0,0 +1,23 @@ +{ + "name": "Selendra Network Mainnet", + "chain": "SEL", + "rpc": ["https://rpc.selendra.org", "https://rpc2.selendra.org"], + "faucets": [], + "nativeCurrency": { + "name": "Selendra", + "symbol": "SEL", + "decimals": 18 + }, + "infoURL": "https://selendra.org", + "shortName": "SEL", + "chainId": 1961, + "networkId": 1961, + "icon": "selendra", + "explorers": [ + { + "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-1967.json b/_data/chains/eip155-1967.json new file mode 100644 index 000000000000..6f96eca36e40 --- /dev/null +++ b/_data/chains/eip155-1967.json @@ -0,0 +1,24 @@ +{ + "name": "Eleanor", + "title": "Metatime Testnet Eleanor", + "chain": "MTC", + "rpc": ["https://rpc.metatime.com/eleanor", "wss://ws.metatime.com/eleanor"], + "faucets": ["https://faucet.metatime.com/eleanor"], + "nativeCurrency": { + "name": "Eleanor Metacoin", + "symbol": "MTC", + "decimals": 18 + }, + "infoURL": "https://eleanor.metatime.com", + "shortName": "mtc", + "chainId": 1967, + "networkId": 1967, + "slip44": 1, + "explorers": [ + { + "name": "metaexplorer-eleanor", + "url": "https://explorer.metatime.com/eleanor", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1969.json b/_data/chains/eip155-1969.json new file mode 100644 index 000000000000..83b0a86909bc --- /dev/null +++ b/_data/chains/eip155-1969.json @@ -0,0 +1,24 @@ +{ + "name": "Super Smart Chain Testnet", + "chain": "TSCS", + "rpc": ["https://testnetrpc.scschain.com"], + "faucets": ["https://testnet.scschain.com"], + "nativeCurrency": { + "name": "Super Chain Native Token", + "symbol": "TSCS", + "decimals": 18 + }, + "infoURL": "https://testnet.scschain.com", + "shortName": "tscs", + "chainId": 1969, + "networkId": 1969, + "slip44": 1, + "icon": "super", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnetscan.scschain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-197.json b/_data/chains/eip155-197.json new file mode 100644 index 000000000000..4ad807262632 --- /dev/null +++ b/_data/chains/eip155-197.json @@ -0,0 +1,23 @@ +{ + "name": "Neutrinos TestNet", + "chain": "NEUTR", + "rpc": ["https://testnet-rpc.neutrinoschain.com"], + "faucets": ["https://neutrinoschain.com/faucet"], + "nativeCurrency": { + "name": "Neutrinos", + "symbol": "NEUTR", + "decimals": 18 + }, + "infoURL": "https://docs.neutrinoschain.com", + "shortName": "NEUTR", + "chainId": 197, + "networkId": 197, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.neutrinoschain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1970.json b/_data/chains/eip155-1970.json new file mode 100644 index 000000000000..e57b361d37f2 --- /dev/null +++ b/_data/chains/eip155-1970.json @@ -0,0 +1,23 @@ +{ + "name": "Super Smart Chain Mainnet", + "chain": "SCS", + "rpc": ["https://rpc.scschain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Super Chain Native Token", + "symbol": "SCS", + "decimals": 18 + }, + "infoURL": "https://scschain.com", + "shortName": "scs", + "chainId": 1970, + "networkId": 1970, + "icon": "super", + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.scschain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1971.json b/_data/chains/eip155-1971.json new file mode 100644 index 000000000000..ed62f856c7df --- /dev/null +++ b/_data/chains/eip155-1971.json @@ -0,0 +1,18 @@ +{ + "name": "Atelier", + "title": "Atelier Test Network", + "chain": "ALTR", + "rpc": ["https://1971.network/atlr", "wss://1971.network/atlr"], + "faucets": [], + "nativeCurrency": { + "name": "ATLR", + "symbol": "ATLR", + "decimals": 18 + }, + "infoURL": "https://1971.network/", + "shortName": "atlr", + "chainId": 1971, + "networkId": 1971, + "slip44": 1, + "icon": "atlr" +} diff --git a/_data/chains/eip155-1972.json b/_data/chains/eip155-1972.json new file mode 100644 index 000000000000..8f925d77d50b --- /dev/null +++ b/_data/chains/eip155-1972.json @@ -0,0 +1,22 @@ +{ + "name": "RedeCoin", + "chain": "REDEV2", + "rpc": ["https://rpc2.redecoin.eu"], + "faucets": [], + "nativeCurrency": { + "name": "RedeCoin", + "symbol": "REDEV2", + "decimals": 18 + }, + "infoURL": "https://www.redecoin.eu", + "shortName": "rede", + "chainId": 1972, + "networkId": 1972, + "explorers": [ + { + "name": "RedeCoin Explorer", + "url": "https://explorer3.redecoin.eu", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1975.json b/_data/chains/eip155-1975.json new file mode 100644 index 000000000000..9d7f80a28dd7 --- /dev/null +++ b/_data/chains/eip155-1975.json @@ -0,0 +1,24 @@ +{ + "name": "ONUS Chain Mainnet", + "title": "ONUS Chain Mainnet", + "chain": "onus", + "rpc": ["https://rpc.onuschain.io", "wss://ws.onuschain.io"], + "faucets": [], + "nativeCurrency": { + "name": "ONUS", + "symbol": "ONUS", + "decimals": 18 + }, + "infoURL": "https://onuschain.io", + "shortName": "onus-mainnet", + "chainId": 1975, + "networkId": 1975, + "explorers": [ + { + "name": "Onus explorer mainnet", + "url": "https://explorer.onuschain.io", + "icon": "onus", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-197710212030.json b/_data/chains/eip155-197710212030.json index adbe69c2502a..b8d7c83ee65d 100644 --- a/_data/chains/eip155-197710212030.json +++ b/_data/chains/eip155-197710212030.json @@ -1,24 +1,24 @@ { - "name": "Ntity Mainnet", - "chain": "Ntity", - "rpc": [ - "https://rpc.ntity.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ntity", - "symbol": "NTT", - "decimals": 18 - }, - "infoURL": "https://ntity.io", - "shortName": "ntt", - "chainId": 197710212030, - "networkId": 197710212030, - "icon": "ntity", - "explorers": [{ - "name": "Ntity Blockscout", - "url": "https://blockscout.ntity.io", + "name": "Ntity Mainnet", + "chain": "Ntity", + "rpc": ["https://rpc.ntity.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ntity", + "symbol": "NTT", + "decimals": 18 + }, + "infoURL": "https://ntity.io", + "shortName": "ntt", + "chainId": 197710212030, + "networkId": 197710212030, + "icon": "ntity", + "explorers": [ + { + "name": "Ntity Explorer", + "url": "https://explorer.ntity.io", "icon": "ntity", "standard": "EIP3091" - }] - } \ No newline at end of file + } + ] +} diff --git a/_data/chains/eip155-197710212031.json b/_data/chains/eip155-197710212031.json index 779bebabce40..0e4ad68b40a4 100644 --- a/_data/chains/eip155-197710212031.json +++ b/_data/chains/eip155-197710212031.json @@ -1,24 +1,25 @@ { - "name": "Haradev Testnet", - "chain": "Ntity", - "rpc": [ - "https://blockchain.haradev.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ntity Haradev", - "symbol": "NTTH", - "decimals": 18 - }, - "infoURL": "https://ntity.io", - "shortName": "ntt-haradev", - "chainId": 197710212031, - "networkId": 197710212031, - "icon": "ntity", - "explorers": [{ - "name": "Ntity Haradev Blockscout", - "url": "https://blockscout.haradev.com", - "icon": "ntity", + "name": "Haradev Testnet", + "chain": "Ntity", + "rpc": ["https://blockchain.haradev.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ntity Haradev", + "symbol": "NTTH", + "decimals": 18 + }, + "infoURL": "https://ntity.io", + "shortName": "haradev", + "chainId": 197710212031, + "networkId": 197710212031, + "slip44": 1, + "icon": "haradev", + "explorers": [ + { + "name": "Haradev Explorer", + "url": "https://explorer.haradev.com", + "icon": "haradev", "standard": "EIP3091" - }] - } \ No newline at end of file + } + ] +} 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-198.json b/_data/chains/eip155-198.json new file mode 100644 index 000000000000..bf3305887c8d --- /dev/null +++ b/_data/chains/eip155-198.json @@ -0,0 +1,22 @@ +{ + "name": "Bitchain Mainnet", + "chain": "Bit", + "rpc": ["https://rpc.bitchain.biz/"], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://www.bitchain.biz/", + "shortName": "bit", + "chainId": 198, + "networkId": 198, + "explorers": [ + { + "name": "Bitchain Scan", + "url": "https://explorer.bitchain.biz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1983.json b/_data/chains/eip155-1983.json new file mode 100644 index 000000000000..f91c99233022 --- /dev/null +++ b/_data/chains/eip155-1983.json @@ -0,0 +1,24 @@ +{ + "name": "Krown Mainnet", + "chain": "KROWN", + "icon": "krown", + "rpc": ["https://mainnet.krown.network", "https://mainnet1.krown.network"], + "faucets": [], + "nativeCurrency": { + "name": "KROWN", + "symbol": "KROWN", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://krown.network", + "shortName": "krown", + "chainId": 1983, + "networkId": 1983, + "explorers": [ + { + "name": "Krown Explorer", + "url": "https://explorer.krown.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1984.json b/_data/chains/eip155-1984.json index f0a94680e7b3..6947b2726e39 100644 --- a/_data/chains/eip155-1984.json +++ b/_data/chains/eip155-1984.json @@ -1,28 +1,25 @@ { - "name":"Eurus Testnet", - "chain":"EUN", - "network":"eurus-testnet", - "rpc":[ - "https://testnet.eurus.network" - ], - "faucets":[ - ], - "nativeCurrency":{ - "name":"Eurus", - "symbol":"EUN", - "decimals":18 - }, - "infoURL":"https://eurus.network", - "shortName":"euntest", - "chainId":1984, - "networkId":1984, - "icon":"eurus", - "explorers":[ - { - "name":"testnetexplorer", - "url":"https://testnetexplorer.eurus.network", - "icon":"eurus", - "standard":"none" - } - ] - } \ No newline at end of file + "name": "Eurus Testnet", + "chain": "EUN", + "rpc": ["https://testnet.eurus.network"], + "faucets": [], + "nativeCurrency": { + "name": "Eurus", + "symbol": "EUN", + "decimals": 18 + }, + "infoURL": "https://eurus.network", + "shortName": "euntest", + "chainId": 1984, + "networkId": 1984, + "slip44": 1, + "icon": "eurus", + "explorers": [ + { + "name": "testnetexplorer", + "url": "https://testnetexplorer.eurus.network", + "icon": "eurus", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-19845.json b/_data/chains/eip155-19845.json index 5e5c50f1a7c2..fbd1dac1aabd 100644 --- a/_data/chains/eip155-19845.json +++ b/_data/chains/eip155-19845.json @@ -1,9 +1,7 @@ { "name": "BTCIX Network", "chain": "BTCIX", - "rpc": [ - "https://seed.btcix.org/rpc" - ], + "rpc": ["https://seed.btcix.org/rpc"], "faucets": [], "nativeCurrency": { "name": "BTCIX Network", @@ -15,9 +13,11 @@ "chainId": 19845, "networkId": 19845, - "explorers": [{ - "name": "BTCIXScan", - "url": "https://btcixscan.com", - "standard": "none" - }] + "explorers": [ + { + "name": "BTCIXScan", + "url": "https://btcixscan.com", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-1985.json b/_data/chains/eip155-1985.json new file mode 100644 index 000000000000..a6a8ba51dbc3 --- /dev/null +++ b/_data/chains/eip155-1985.json @@ -0,0 +1,24 @@ +{ + "name": "SatoshIE", + "chain": "TUSHY", + "rpc": ["http://rpc.satosh.ie"], + "faucets": [], + "nativeCurrency": { + "name": "Tushy Token", + "symbol": "TUSHY", + "decimals": 18 + }, + "infoURL": "https://satosh.ie", + "shortName": "satoshie", + "chainId": 1985, + "networkId": 1985, + "icon": "satoshie", + "explorers": [ + { + "name": "mainnetexplorer", + "url": "http://explore.satosh.ie", + "icon": "satoshie", + "standard": "none" + } + ] +} 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-1986.json b/_data/chains/eip155-1986.json new file mode 100644 index 000000000000..67661c0fc8e6 --- /dev/null +++ b/_data/chains/eip155-1986.json @@ -0,0 +1,25 @@ +{ + "name": "SatoshIE Testnet", + "chain": "TUSHY", + "rpc": ["http://testnet.satosh.ie"], + "faucets": [], + "nativeCurrency": { + "name": "Tushy Token", + "symbol": "TUSHY", + "decimals": 18 + }, + "infoURL": "https://satosh.ie", + "shortName": "satoshie_testnet", + "chainId": 1986, + "networkId": 1986, + "slip44": 1, + "icon": "satoshie", + "explorers": [ + { + "name": "testnetexplorer", + "url": "http://explore-testnet.satosh.ie", + "icon": "satoshie", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1987.json b/_data/chains/eip155-1987.json index fef6d8fe7ff9..57ce3fb4b104 100644 --- a/_data/chains/eip155-1987.json +++ b/_data/chains/eip155-1987.json @@ -1,9 +1,7 @@ { "name": "EtherGem", "chain": "EGEM", - "rpc": [ - "https://jsonrpc.egem.io/custom" - ], + "rpc": ["https://jsonrpc.egem.io/custom"], "faucets": [], "nativeCurrency": { "name": "EtherGem Ether", @@ -15,4 +13,4 @@ "chainId": 1987, "networkId": 1987, "slip44": 1987 -} \ No newline at end of file +} 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 71140b22846d..bddf2c83867e 100644 --- a/_data/chains/eip155-199.json +++ b/_data/chains/eip155-199.json @@ -1,8 +1,11 @@ { "name": "BitTorrent Chain Mainnet", "chain": "BTTC", + "icon": "bttc", "rpc": [ - "https://rpc.bittorrentchain.io/" + "https://rpc.bt.io", + "https://bittorrent.drpc.org", + "wss://bittorrent.drpc.org" ], "faucets": [], "nativeCurrency": { @@ -10,13 +13,15 @@ "symbol": "BTT", "decimals": 18 }, - "infoURL": "https://bittorrentchain.io/", + "infoURL": "https://bt.io", "shortName": "BTT", "chainId": 199, "networkId": 199, - "explorers": [{ - "name": "bttcscan", - "url": "https://scan.bittorrentchain.io", - "standard": "none" - }] + "explorers": [ + { + "name": "BitTorrent Chain Explorer", + "url": "https://bttcscan.com", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-1992.json b/_data/chains/eip155-1992.json new file mode 100644 index 000000000000..043d60426acf --- /dev/null +++ b/_data/chains/eip155-1992.json @@ -0,0 +1,26 @@ +{ + "name": "Hubble Exchange", + "chain": "Hubblenet", + "icon": "hubblenet", + "rpc": ["https://rpc.hubble.exchange", "wss://ws-rpc.hubble.exchange"], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "USD Coin", + "symbol": "USDC", + "decimals": 18 + }, + "infoURL": "https://www.hubble.exchange", + "shortName": "hubblenet", + "chainId": 1992, + "networkId": 1992, + "slip44": 60, + "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-1994.json b/_data/chains/eip155-1994.json new file mode 100644 index 000000000000..a3ef08dcd992 --- /dev/null +++ b/_data/chains/eip155-1994.json @@ -0,0 +1,24 @@ +{ + "name": "Ekta", + "chain": "EKTA", + "rpc": ["https://main.ekta.io"], + "faucets": [], + "nativeCurrency": { + "name": "EKTA", + "symbol": "EKTA", + "decimals": 18 + }, + "infoURL": "https://www.ekta.io", + "shortName": "ekta", + "chainId": 1994, + "networkId": 1994, + "icon": "ekta", + "explorers": [ + { + "name": "ektascan", + "url": "https://ektascan.io", + "icon": "ekta", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-1995.json b/_data/chains/eip155-1995.json new file mode 100644 index 000000000000..67985b67456f --- /dev/null +++ b/_data/chains/eip155-1995.json @@ -0,0 +1,18 @@ +{ + "name": "edeXa Testnet", + "chain": "edeXa", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "edeXa", + "symbol": "tEDX", + "decimals": 18 + }, + "infoURL": "https://edexa.network/", + "shortName": "edxt", + "chainId": 1995, + "networkId": 1995, + "slip44": 1, + "icon": "edexa", + "explorers": [] +} diff --git a/_data/chains/eip155-1996.json b/_data/chains/eip155-1996.json new file mode 100644 index 000000000000..14a3895e5da4 --- /dev/null +++ b/_data/chains/eip155-1996.json @@ -0,0 +1,23 @@ +{ + "name": "Sanko", + "chain": "Sanko", + "rpc": ["https://mainnet.sanko.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "DMT", + "symbol": "DMT", + "decimals": 18 + }, + "infoURL": "https://sanko.xyz/", + "shortName": "Sanko", + "chainId": 1996, + "networkId": 1996, + "icon": "sanko", + "explorers": [ + { + "name": "Sanko Explorer", + "url": "https://explorer.sanko.xyz", + "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-1998.json b/_data/chains/eip155-1998.json new file mode 100644 index 000000000000..84b4de87bce8 --- /dev/null +++ b/_data/chains/eip155-1998.json @@ -0,0 +1,24 @@ +{ + "name": "Kyoto Testnet", + "chain": "KYOTO", + "rpc": ["https://rpc.testnet.kyotoprotocol.io:8545"], + "faucets": ["https://faucet.kyotoprotocol.io"], + "nativeCurrency": { + "name": "Kyoto", + "symbol": "KYOTO", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://kyotoprotocol.io", + "shortName": "kyoto-testnet", + "chainId": 1998, + "networkId": 1998, + "slip44": 1, + "explorers": [ + { + "name": "Kyotoscan", + "url": "https://testnet.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-2.json b/_data/chains/eip155-2.json index 6ce5d4b00459..e58c4dd85ecf 100644 --- a/_data/chains/eip155-2.json +++ b/_data/chains/eip155-2.json @@ -1,9 +1,7 @@ { "name": "Expanse Network", "chain": "EXP", - "rpc": [ - "https://node.expanse.tech" - ], + "rpc": ["https://node.expanse.tech"], "faucets": [], "nativeCurrency": { "name": "Expanse Network Ether", @@ -15,4 +13,4 @@ "chainId": 2, "networkId": 1, "slip44": 40 -} \ No newline at end of file +} diff --git a/_data/chains/eip155-20.json b/_data/chains/eip155-20.json index 67d3bac89ac3..9e7652b12660 100644 --- a/_data/chains/eip155-20.json +++ b/_data/chains/eip155-20.json @@ -1,22 +1,22 @@ { "name": "Elastos Smart Chain", "chain": "ETH", - "rpc": [ - "https://api.elastos.io/eth" - ], - "faucets": ["https://faucet.elastos.org/"], + "rpc": ["https://api.elastos.io/eth"], + "faucets": [], "nativeCurrency": { "name": "Elastos", "symbol": "ELA", "decimals": 18 }, "infoURL": "https://www.elastos.org/", - "shortName": "elaeth", + "shortName": "esc", "chainId": 20, "networkId": 20, - "explorers": [{ - "name": "elastos eth explorer", - "url": "https://eth.elastos.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "elastos esc explorer", + "url": "https://esc.elastos.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-200.json b/_data/chains/eip155-200.json index cb9b1e4ec7e0..4106d9bf7366 100644 --- a/_data/chains/eip155-200.json +++ b/_data/chains/eip155-200.json @@ -12,13 +12,15 @@ "shortName": "aox", "chainId": 200, "networkId": 200, - "explorers": [{ - "name": "blockscout", - "url": "https://blockscout.com/xdai/arbitrum", - "standard": "EIP3091" - }], + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.com/xdai/arbitrum", + "standard": "EIP3091" + } + ], "parent": { "chain": "eip155-100", "type": "L2" } -} \ No newline at end of file +} diff --git a/_data/chains/eip155-2000.json b/_data/chains/eip155-2000.json new file mode 100644 index 000000000000..62e03149e5a5 --- /dev/null +++ b/_data/chains/eip155-2000.json @@ -0,0 +1,27 @@ +{ + "name": "Dogechain Mainnet", + "chain": "DC", + "icon": "dogechain", + "rpc": [ + "https://rpc.dogechain.dog", + "https://rpc01-sg.dogechain.dog", + "https://rpc.ankr.com/dogechain" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 + }, + "infoURL": "https://dogechain.dog", + "shortName": "dc", + "chainId": 2000, + "networkId": 2000, + "explorers": [ + { + "name": "dogechain explorer", + "url": "https://explorer.dogechain.dog", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-200000.json b/_data/chains/eip155-200000.json new file mode 100644 index 000000000000..f2ea6697c8b4 --- /dev/null +++ b/_data/chains/eip155-200000.json @@ -0,0 +1,16 @@ +{ + "name": "xFair.AI Testnet", + "chain": "FAIT", + "rpc": ["https://rpc_testnet.xfair.ai", "wss://rpc_testnet.xfair.ai"], + "faucets": [], + "nativeCurrency": { + "name": "FAI", + "symbol": "FAI", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://xfair.ai", + "shortName": "fait", + "chainId": 200000, + "networkId": 200000 +} diff --git a/_data/chains/eip155-20001.json b/_data/chains/eip155-20001.json new file mode 100644 index 000000000000..4a7634d53243 --- /dev/null +++ b/_data/chains/eip155-20001.json @@ -0,0 +1,23 @@ +{ + "name": "Camelark Mainnet", + "chainId": 20001, + "shortName": "Camelark", + "chain": "ETHW", + "icon": "camelark", + "networkId": 20001, + "nativeCurrency": { + "name": "EthereumPoW", + "symbol": "ETHW", + "decimals": 18 + }, + "rpc": ["https://mainnet-http-rpc.camelark.com"], + "faucets": [], + "explorers": [ + { + "name": "CamelarkScan", + "url": "https://scan.camelark.com", + "standard": "EIP3091" + } + ], + "infoURL": "https://www.camelark.com" +} diff --git a/_data/chains/eip155-200024.json b/_data/chains/eip155-200024.json new file mode 100644 index 000000000000..0c8288377057 --- /dev/null +++ b/_data/chains/eip155-200024.json @@ -0,0 +1,24 @@ +{ + "name": "NitroGraph Testnet", + "chain": "NOS", + "rpc": ["https://rpc-testnet.nitrograph.foundation"], + "icon": "nitrograph", + "slip44": 1, + "faucets": ["https://faucet-testnet.nitrograph.foundation"], + "infoURL": "https://docs.nitrograph.com", + "chainId": 200024, + "networkId": 200024, + "shortName": "nitro-testnet", + "explorers": [ + { + "url": "https://explorer-testnet.nitrograph.foundation", + "name": "NitroGraphTestnetInfo", + "standard": "EIP3091" + } + ], + "nativeCurrency": { + "name": "Nitro", + "symbol": "NOS", + "decimals": 18 + } +} diff --git a/_data/chains/eip155-2001.json b/_data/chains/eip155-2001.json index 65a69bda2165..36865a493ecf 100644 --- a/_data/chains/eip155-2001.json +++ b/_data/chains/eip155-2001.json @@ -2,7 +2,6 @@ "name": "Milkomeda C1 Mainnet", "chain": "milkAda", "icon": "milkomeda", - "network": "mainnet", "rpc": [ "https://rpc-mainnet-cardano-evm.c1.milkomeda.com", "wss://rpc-mainnet-cardano-evm.c1.milkomeda.com" diff --git a/_data/chains/eip155-200101.json b/_data/chains/eip155-200101.json index 00395c656577..c544c550f2cc 100644 --- a/_data/chains/eip155-200101.json +++ b/_data/chains/eip155-200101.json @@ -2,7 +2,6 @@ "name": "Milkomeda C1 Testnet", "chain": "milkTAda", "icon": "milkomeda", - "network": "testnet", "rpc": [ "https://rpc-devnet-cardano-evm.c1.milkomeda.com", "wss://rpc-devnet-cardano-evm.c1.milkomeda.com" @@ -17,6 +16,7 @@ "shortName": "milkTAda", "chainId": 200101, "networkId": 200101, + "slip44": 1, "explorers": [ { "name": "Blockscout", diff --git a/_data/chains/eip155-2002.json b/_data/chains/eip155-2002.json new file mode 100644 index 000000000000..8bb5bf33b347 --- /dev/null +++ b/_data/chains/eip155-2002.json @@ -0,0 +1,26 @@ +{ + "name": "Milkomeda A1 Mainnet", + "chain": "milkALGO", + "icon": "milkomeda", + "rpc": [ + "https://rpc-mainnet-algorand-rollup.a1.milkomeda.com", + "wss://rpc-mainnet-algorand-rollup.a1.milkomeda.com/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "milkALGO", + "symbol": "mALGO", + "decimals": 18 + }, + "infoURL": "https://milkomeda.com", + "shortName": "milkALGO", + "chainId": 2002, + "networkId": 2002, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com", + "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-200202.json b/_data/chains/eip155-200202.json new file mode 100644 index 000000000000..f9b751057507 --- /dev/null +++ b/_data/chains/eip155-200202.json @@ -0,0 +1,24 @@ +{ + "name": "Milkomeda A1 Testnet", + "chain": "milkTAlgo", + "icon": "milkomeda", + "rpc": ["https://rpc-devnet-algorand-rollup.a1.milkomeda.com"], + "faucets": [], + "nativeCurrency": { + "name": "milkTAlgo", + "symbol": "mTAlgo", + "decimals": 18 + }, + "infoURL": "https://milkomeda.com", + "shortName": "milkTAlgo", + "chainId": 200202, + "networkId": 200202, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com", + "standard": "none" + } + ] +} 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-200625.json b/_data/chains/eip155-200625.json index 375b314cf4d0..6e5ce7b3744d 100644 --- a/_data/chains/eip155-200625.json +++ b/_data/chains/eip155-200625.json @@ -1,9 +1,7 @@ { "name": "Akroma", "chain": "AKA", - "rpc": [ - "https://remote.akroma.io" - ], + "rpc": ["https://remote.akroma.io"], "faucets": [], "nativeCurrency": { "name": "Akroma Ether", 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-2008.json b/_data/chains/eip155-2008.json index ec971117f264..5b03e2470d63 100644 --- a/_data/chains/eip155-2008.json +++ b/_data/chains/eip155-2008.json @@ -12,6 +12,7 @@ "shortName": "cloudwalk_testnet", "chainId": 2008, "networkId": 2008, + "slip44": 1, "explorers": [ { "name": "CloudWalk Testnet Explorer", diff --git a/_data/chains/eip155-200810.json b/_data/chains/eip155-200810.json new file mode 100644 index 000000000000..5a26ab32c92f --- /dev/null +++ b/_data/chains/eip155-200810.json @@ -0,0 +1,30 @@ +{ + "name": "Bitlayer Testnet", + "chain": "Bitlayer", + "rpc": [ + "https://testnet-rpc.bitlayer.org", + "wss://testnet-ws.bitlayer.org", + "https://testnet-rpc.bitlayer-rpc.com", + "wss://testnet-ws.bitlayer-rpc.com", + "https://rpc.ankr.com/bitlayer_testnet" + ], + "faucets": ["https://www.bitlayer.org/faucet"], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://docs.bitlayer.org/", + "shortName": "btrt", + "chainId": 200810, + "networkId": 200810, + "slip44": 1, + "icon": "bitlayer", + "explorers": [ + { + "name": "bitlayer testnet scan", + "url": "https://testnet.btrscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-200901.json b/_data/chains/eip155-200901.json new file mode 100644 index 000000000000..c883ee29fba1 --- /dev/null +++ b/_data/chains/eip155-200901.json @@ -0,0 +1,31 @@ +{ + "name": "Bitlayer Mainnet", + "chain": "Bitlayer", + "rpc": [ + "https://rpc.bitlayer.org", + "https://rpc.bitlayer-rpc.com", + "https://rpc.ankr.com/bitlayer", + "https://rpc-bitlayer.rockx.com", + "wss://ws.bitlayer.org", + "wss://ws.bitlayer-rpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://docs.bitlayer.org/", + "shortName": "btr", + "chainId": 200901, + "networkId": 200901, + "slip44": 1, + "icon": "bitlayer", + "explorers": [ + { + "name": "bitlayer mainnet scan", + "url": "https://www.btrscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-201.json b/_data/chains/eip155-201.json new file mode 100644 index 000000000000..73c9b19d5144 --- /dev/null +++ b/_data/chains/eip155-201.json @@ -0,0 +1,23 @@ +{ + "name": "MOAC testnet", + "chain": "MOAC", + "rpc": ["https://gateway.moac.io/testnet"], + "faucets": [], + "nativeCurrency": { + "name": "MOAC", + "symbol": "mc", + "decimals": 18 + }, + "infoURL": "https://moac.io", + "shortName": "moactest", + "chainId": 201, + "networkId": 201, + "slip44": 1, + "explorers": [ + { + "name": "moac testnet explorer", + "url": "https://testnet.moac.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-201030.json b/_data/chains/eip155-201030.json index d506ca7f535a..6c86eac5105c 100644 --- a/_data/chains/eip155-201030.json +++ b/_data/chains/eip155-201030.json @@ -3,10 +3,10 @@ "chain": "Alaya", "rpc": [ "https://devnetopenapi.alaya.network/rpc", - "wss://devnetopenapi.alaya.network/ws" + "wss://devnetopenapi.alaya.network/ws" ], "faucets": [ - "https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c" + "https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c" ], "nativeCurrency": { "name": "ATP", @@ -17,6 +17,7 @@ "shortName": "alayadev", "chainId": 201030, "networkId": 1, + "slip44": 1, "icon": "alaya", "explorers": [ { @@ -25,4 +26,4 @@ "standard": "none" } ] -} \ No newline at end of file +} diff --git a/_data/chains/eip155-2013.json b/_data/chains/eip155-2013.json new file mode 100644 index 000000000000..2526e6ab71ce --- /dev/null +++ b/_data/chains/eip155-2013.json @@ -0,0 +1,15 @@ +{ + "name": "Panarchy", + "chain": "Panarchy", + "rpc": ["https://polytopia.org:8545"], + "faucets": [], + "nativeCurrency": { + "name": "GAS", + "symbol": "GAS", + "decimals": 18 + }, + "infoURL": "https://polytopia.org/", + "shortName": "panarchy", + "chainId": 2013, + "networkId": 1 +} diff --git a/_data/chains/eip155-2014.json b/_data/chains/eip155-2014.json new file mode 100644 index 000000000000..b0a0dd4a14bf --- /dev/null +++ b/_data/chains/eip155-2014.json @@ -0,0 +1,23 @@ +{ + "name": "NOW Chain Testnet", + "chain": "NOW", + "icon": "nowchain", + "rpc": ["https://rpc-testnet.nowscan.io"], + "faucets": ["https://faucet.nowchain.co"], + "nativeCurrency": { + "name": "NOW Coin", + "symbol": "NOW", + "decimals": 18 + }, + "infoURL": "https://nowchain.co", + "shortName": "tnow", + "chainId": 2014, + "networkId": 2014, + "explorers": [ + { + "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-2016.json b/_data/chains/eip155-2016.json new file mode 100644 index 000000000000..a858e8ab1a9e --- /dev/null +++ b/_data/chains/eip155-2016.json @@ -0,0 +1,23 @@ +{ + "name": "MainnetZ Mainnet", + "chain": "NetZ", + "icon": "mainnetz", + "rpc": ["https://mainnet-rpc.mainnetz.io", "https://eu-rpc.mainnetz.io"], + "faucets": [], + "nativeCurrency": { + "name": "MainnetZ", + "symbol": "NetZ", + "decimals": 18 + }, + "infoURL": "https://mainnetz.io", + "shortName": "netz", + "chainId": 2016, + "networkId": 2016, + "explorers": [ + { + "name": "MainnetZ", + "url": "https://explorer.mainnetz.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2017.json b/_data/chains/eip155-2017.json new file mode 100644 index 000000000000..bd8b9a0aec3a --- /dev/null +++ b/_data/chains/eip155-2017.json @@ -0,0 +1,33 @@ +{ + "name": "Adiri", + "title": "Telcoin Network Testnet", + "chain": "TEL", + "icon": "telcoin", + "rpc": [ + "https://rpc.telcoin.network", + "https://adiri.tel", + "https://node1.telcoin.network", + "https://node2.telcoin.network", + "https://node3.telcoin.network", + "https://node4.telcoin.network" + ], + "faucets": ["https://telcoin.network/faucet"], + "nativeCurrency": { + "name": "Telcoin", + "symbol": "TEL", + "decimals": 18 + }, + "infoURL": "https://telcoin.network", + "shortName": "tel", + "chainId": 2017, + "networkId": 2017, + "slip44": 1, + "explorers": [ + { + "name": "telscan", + "url": "https://telscan.io", + "icon": "telcoin", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2018.json b/_data/chains/eip155-2018.json new file mode 100644 index 000000000000..2d90fbbadc2f --- /dev/null +++ b/_data/chains/eip155-2018.json @@ -0,0 +1,24 @@ +{ + "name": "PublicMint Devnet", + "title": "Public Mint Devnet", + "chain": "PublicMint", + "rpc": ["https://rpc.dev.publicmint.io:8545"], + "faucets": [], + "nativeCurrency": { + "name": "USD", + "symbol": "USD", + "decimals": 18 + }, + "infoURL": "https://publicmint.com", + "shortName": "pmint_dev", + "chainId": 2018, + "networkId": 2018, + "slip44": 60, + "explorers": [ + { + "name": "PublicMint Explorer", + "url": "https://explorer.dev.publicmint.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-201804.json b/_data/chains/eip155-201804.json new file mode 100644 index 000000000000..4733256c011d --- /dev/null +++ b/_data/chains/eip155-201804.json @@ -0,0 +1,25 @@ +{ + "name": "Mythical Chain", + "chain": "MYTH", + "rpc": ["https://chain-rpc.mythicalgames.com"], + "faucets": [], + "nativeCurrency": { + "name": "Mythos", + "symbol": "MYTH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://mythicalgames.com/", + "shortName": "myth", + "chainId": 201804, + "networkId": 201804, + "icon": "mythical", + "explorers": [ + { + "name": "Mythical Chain Explorer", + "url": "https://explorer.mythicalgames.com", + "icon": "mythical", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-20180427.json b/_data/chains/eip155-20180427.json new file mode 100644 index 000000000000..2d6f31f292de --- /dev/null +++ b/_data/chains/eip155-20180427.json @@ -0,0 +1,24 @@ +{ + "name": "Stability Testnet", + "chain": "stabilityTestnet", + "icon": "stabilitytestnet", + "rpc": ["https://free.testnet.stabilityprotocol.com"], + "faucets": [], + "nativeCurrency": { + "name": "FREE", + "symbol": "FREE", + "decimals": 18 + }, + "infoURL": "https://stabilityprotocol.com", + "shortName": "stabilitytestnet", + "chainId": 20180427, + "networkId": 20180427, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://stability-testnet.blockscout.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-20180430.json b/_data/chains/eip155-20180430.json index 74471b395ff1..932fac94d0ef 100644 --- a/_data/chains/eip155-20180430.json +++ b/_data/chains/eip155-20180430.json @@ -1,9 +1,7 @@ { "name": "SmartMesh Mainnet", "chain": "Spectrum", - "rpc": [ - "https://jsonapi1.smartmesh.cn" - ], + "rpc": ["https://jsonapi1.smartmesh.cn"], "faucets": [], "nativeCurrency": { "name": "SmartMesh Native Token", @@ -14,9 +12,11 @@ "shortName": "spectrum", "chainId": 20180430, "networkId": 1, - "explorers": [{ - "name": "spectrum", - "url": "https://spectrum.pub", - "standard": "none" - }] -} \ No newline at end of file + "explorers": [ + { + "name": "spectrum", + "url": "https://spectrum.pub", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-20181205.json b/_data/chains/eip155-20181205.json index 6d7aca7331b6..7f5be1e8176b 100644 --- a/_data/chains/eip155-20181205.json +++ b/_data/chains/eip155-20181205.json @@ -1,18 +1,29 @@ -{ - "name": "quarkblockchain", - "chain": "QKI", - "rpc": [ - "https://hz.rpc.qkiscan.cn", - "https://jp.rpc.qkiscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "quarkblockchain Native Token", - "symbol": "QKI", - "decimals": 18 - }, - "infoURL": "https://quarkblockchain.org/", - "shortName": "qki", - "chainId": 20181205, - "networkId": 20181205 - } +{ + "name": "quarkblockchain", + "chain": "QKI", + "rpc": [ + "https://rpc1.qkirpc.org", + "https://rpc2.qkirpc.org", + "https://rpc3.qkirpc.org", + "https://rpc1.qkiscan.io", + "https://rpc2.qkiscan.io", + "https://rpc3.qkiscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "quarkblockchain Native Token", + "symbol": "QKI", + "decimals": 18 + }, + "infoURL": "https://quarkblockchain.org/", + "shortName": "qki", + "chainId": 20181205, + "networkId": 20181205, + "explorers": [ + { + "name": "qkiscan", + "url": "https://qkiscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2019.json b/_data/chains/eip155-2019.json new file mode 100644 index 000000000000..79813d9ccdce --- /dev/null +++ b/_data/chains/eip155-2019.json @@ -0,0 +1,24 @@ +{ + "name": "PublicMint Testnet", + "title": "Public Mint Testnet", + "chain": "PublicMint", + "rpc": ["https://rpc.tst.publicmint.io:8545"], + "faucets": [], + "nativeCurrency": { + "name": "USD", + "symbol": "USD", + "decimals": 18 + }, + "infoURL": "https://publicmint.com", + "shortName": "pmint_test", + "chainId": 2019, + "networkId": 2019, + "slip44": 1, + "explorers": [ + { + "name": "PublicMint Explorer", + "url": "https://explorer.tst.publicmint.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2019775.json b/_data/chains/eip155-2019775.json new file mode 100644 index 000000000000..7544ed292e7c --- /dev/null +++ b/_data/chains/eip155-2019775.json @@ -0,0 +1,38 @@ +{ + "name": "Jovay Sepolia Testnet", + "chain": "ETH", + "status": "active", + "rpc": [ + "https://api.zan.top/public/jovay-testnet", + "https://api.zan.top/node/v1/jovay/testnet/${ZAN_API_KEY}", + "wss://api.zan.top/node/ws/v1/jovay/testnet/${ZAN_API_KEY}" + ], + "faucets": ["https://zan.top/faucet/jovay"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://jovay.io", + "shortName": "jovay-sepolia", + "chainId": 2019775, + "networkId": 2019775, + "icon": "jovay", + "slip44": 1, + "explorers": [ + { + "name": "Jovay Testnet Explorer", + "url": "https://sepolia-explorer.jovay.io/l2", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://docs.jovay.io/guide/developer-quickstart" + } + ] + } +} diff --git a/_data/chains/eip155-202.json b/_data/chains/eip155-202.json new file mode 100644 index 000000000000..453f387df0a6 --- /dev/null +++ b/_data/chains/eip155-202.json @@ -0,0 +1,23 @@ +{ + "name": "Edgeless Testnet", + "chain": "EdgelessTestnet", + "rpc": ["https://testnet.rpc.edgeless.network/http"], + "features": [{ "name": "EIP155" }], + "faucets": [], + "nativeCurrency": { + "name": "Edgeless Wrapped Eth", + "symbol": "EwEth", + "decimals": 18 + }, + "infoURL": "https://edgeless.network", + "shortName": "edgeless-testnet", + "chainId": 202, + "networkId": 202, + "explorers": [ + { + "name": "Edgeless Explorer", + "url": "https://testnet.explorer.edgeless.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2020.json b/_data/chains/eip155-2020.json index 34887df50bd4..23d01de4e1a4 100644 --- a/_data/chains/eip155-2020.json +++ b/_data/chains/eip155-2020.json @@ -1,15 +1,24 @@ { - "name": "420coin", - "chain": "420", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Fourtwenty", - "symbol": "420", - "decimals": 18 - }, - "infoURL": "https://420integrated.com", - "shortName": "420", - "chainId": 2020, - "networkId": 2020 + "name": "Ronin Mainnet", + "title": "Ronin", + "chain": "ronin", + "rpc": ["https://api.roninchain.com/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "RON", + "symbol": "RON", + "decimals": 18 + }, + "infoURL": "https://roninchain.com", + "shortName": "ron", + "chainId": 2020, + "networkId": 2020, + "redFlags": ["reusedChainId"], + "explorers": [ + { + "name": "Ronin Block Explorer", + "url": "https://app.roninchain.com", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-20201022.json b/_data/chains/eip155-20201022.json new file mode 100644 index 000000000000..b02cc44aa5f8 --- /dev/null +++ b/_data/chains/eip155-20201022.json @@ -0,0 +1,28 @@ +{ + "name": "Pego Network", + "chain": "PEGO", + "rpc": [ + "https://pegorpc.com", + "https://node1.pegorpc.com", + "https://node2.pegorpc.com", + "https://node3.pegorpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Pego Native Token", + "symbol": "PG", + "decimals": 18 + }, + "infoURL": "https://pego.network", + "shortName": "pg", + "chainId": 20201022, + "networkId": 20201022, + "icon": "pego", + "explorers": [ + { + "name": "Pego Network Explorer", + "url": "https://scan.pego.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-202020.json b/_data/chains/eip155-202020.json new file mode 100644 index 000000000000..b5bc27fb4989 --- /dev/null +++ b/_data/chains/eip155-202020.json @@ -0,0 +1,26 @@ +{ + "name": "Decimal Smart Chain Testnet", + "chain": "tDSC", + "rpc": ["https://testnet-val.decimalchain.com/web3/"], + "faucets": [], + "nativeCurrency": { + "name": "Decimal", + "symbol": "tDEL", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://decimalchain.com", + "shortName": "tDSC", + "chainId": 202020, + "networkId": 202020, + "slip44": 1, + "icon": "dsc", + "explorers": [ + { + "name": "DSC Explorer Testnet", + "url": "https://testnet.explorer.decimalchain.com", + "icon": "dsc", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2021.json b/_data/chains/eip155-2021.json index de4654f908a3..b2fbed93f681 100644 --- a/_data/chains/eip155-2021.json +++ b/_data/chains/eip155-2021.json @@ -1,17 +1,42 @@ { - "name": "Edgeware Mainnet", + "name": "Edgeware EdgeEVM Mainnet", "chain": "EDG", + "icon": "edgeware", "rpc": [ - "https://mainnet1.edgewa.re" + "https://edgeware-evm.jelliedowl.net", + "https://edgeware-evm0.jelliedowl.net", + "https://edgeware-evm1.jelliedowl.net", + "https://edgeware-evm2.jelliedowl.net", + "https://edgeware-evm3.jelliedowl.net", + "wss://edgeware.jelliedowl.net", + "wss://edgeware-rpc0.jelliedowl.net", + "wss://edgeware-rpc1.jelliedowl.net", + "wss://edgeware-rpc2.jelliedowl.net", + "wss://edgeware-rpc3.jelliedowl.net" ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": [], "nativeCurrency": { - "name": "Edge", + "name": "Edgeware", "symbol": "EDG", "decimals": 18 }, - "infoURL": "http://edgewa.re", + "infoURL": "https://edgeware.io", "shortName": "edg", "chainId": 2021, - "networkId": 2021 + "networkId": 2021, + "slip44": 523, + "explorers": [ + { + "name": "Edgscan EdgeEVM explorer by Bharathcoorg", + "url": "https://edgscan.live", + "standard": "EIP3091" + }, + { + "name": "Edgscan EdgeWASM explorer by Bharathcoorg", + "url": "https://edgscan.ink", + "standard": "none", + "icon": "edgscan" + } + ] } 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-2021121117.json b/_data/chains/eip155-2021121117.json index 14fcdec35b33..cc5273bfca9d 100644 --- a/_data/chains/eip155-2021121117.json +++ b/_data/chains/eip155-2021121117.json @@ -1,9 +1,7 @@ { "name": "DataHopper", "chain": "HOP", - "rpc": [ - "https://23.92.21.121:8545" - ], + "rpc": ["https://23.92.21.121:8545"], "faucets": [], "nativeCurrency": { "name": "DataHoppers", diff --git a/_data/chains/eip155-2021398.json b/_data/chains/eip155-2021398.json new file mode 100644 index 000000000000..5d7d288a71f0 --- /dev/null +++ b/_data/chains/eip155-2021398.json @@ -0,0 +1,24 @@ +{ + "name": "DeBank Testnet", + "chain": "DeBank", + "rpc": ["http://rpc.testnet.debank.com"], + "faucets": [], + "icon": "debank", + "nativeCurrency": { + "name": "DeBank USD", + "symbol": "USD", + "decimals": 18 + }, + "infoURL": "https://debank.com", + "shortName": "dbk", + "chainId": 2021398, + "networkId": 2021398, + "slip44": 1, + "explorers": [ + { + "name": "DeBank Chain Explorer", + "url": "https://explorer.testnet.debank.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2022.json b/_data/chains/eip155-2022.json index fc5b75256ff5..0692b931b0f1 100644 --- a/_data/chains/eip155-2022.json +++ b/_data/chains/eip155-2022.json @@ -1,17 +1,26 @@ { - "name": "Beresheet Testnet", + "name": "Beresheet BereEVM Testnet", "chain": "EDG", "rpc": [ - "https://beresheet1.edgewa.re" + "https://beresheet-evm.jelliedowl.net", + "wss://beresheet.jelliedowl.net" ], "faucets": [], "nativeCurrency": { - "name": "Testnet Edge", + "name": "Testnet EDG", "symbol": "tEDG", "decimals": 18 }, - "infoURL": "http://edgewa.re", + "infoURL": "https://edgeware.io/build", "shortName": "edgt", "chainId": 2022, - "networkId": 2022 + "networkId": 2022, + "slip44": 1, + "explorers": [ + { + "name": "Edgscan by Bharathcoorg", + "url": "https://testnet.edgscan.live", + "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-202212.json b/_data/chains/eip155-202212.json new file mode 100644 index 000000000000..9e9f1e71e425 --- /dev/null +++ b/_data/chains/eip155-202212.json @@ -0,0 +1,23 @@ +{ + "name": "X1 Devnet", + "chain": "X1", + "rpc": ["https://x1-devnet.xen.network"], + "faucets": [], + "nativeCurrency": { + "name": "XN", + "symbol": "XN", + "decimals": 18 + }, + "infoURL": "https://docs.xen.network/x1/", + "shortName": "x1-devnet", + "chainId": 202212, + "networkId": 202212, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.x1-devnet.xen.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2023.json b/_data/chains/eip155-2023.json index 78e647da33a0..adde1bf7bed4 100644 --- a/_data/chains/eip155-2023.json +++ b/_data/chains/eip155-2023.json @@ -1,12 +1,8 @@ { "name": "Taycan Testnet", "chain": "Taycan", - "rpc": [ - "https://test-taycan.hupayx.io" - ], - "faucets": [ - "https://ttaycan-faucet.hupayx.io/" - ], + "rpc": ["https://test-taycan.hupayx.io"], + "faucets": ["https://ttaycan-faucet.hupayx.io/"], "nativeCurrency": { "name": "test-Shuffle", "symbol": "tSFL", @@ -16,15 +12,20 @@ "shortName": "taycan-testnet", "chainId": 2023, "networkId": 2023, - "explorers": [{ - "name": "Taycan Explorer(Blockscout)", - "url": "https://evmscan-test.hupayx.io", - "standard": "none" - }, - { + "slip44": 1, + "icon": "shuffle", + "explorers": [ + { + "name": "Taycan Explorer(Blockscout)", + "url": "https://evmscan-test.hupayx.io", + "standard": "none", + "icon": "shuffle" + }, + { "name": "Taycan Cosmos Explorer", "url": "https://cosmoscan-test.hupayx.io", - "standard": "none" - } + "standard": "none", + "icon": "shuffle" + } ] } 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 new file mode 100644 index 000000000000..d899e4bbe1d7 --- /dev/null +++ b/_data/chains/eip155-2024.json @@ -0,0 +1,15 @@ +{ + "name": "Swan Saturn Testnet", + "chain": "SWAN", + "rpc": ["https://saturn-rpc.swanchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "SWANETH", + "symbol": "sETH", + "decimals": 18 + }, + "infoURL": "https://swanchain.io/", + "shortName": "saturn", + "chainId": 2024, + "networkId": 2024 +} diff --git a/_data/chains/eip155-202401.json b/_data/chains/eip155-202401.json new file mode 100644 index 000000000000..43559ff8a558 --- /dev/null +++ b/_data/chains/eip155-202401.json @@ -0,0 +1,22 @@ +{ + "name": "YMTECH-BESU Testnet", + "chain": "YMTECH-BESU", + "rpc": ["http://39.119.118.216:8545"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.ymtech.co.kr", + "shortName": "YMTECH-BESU", + "chainId": 202401, + "networkId": 202401, + "explorers": [ + { + "name": "YMTECH-BESU Chainlens", + "url": "http://39.119.118.198", + "standard": "none" + } + ] +} 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-20240324.json b/_data/chains/eip155-20240324.json new file mode 100644 index 000000000000..d669578d898e --- /dev/null +++ b/_data/chains/eip155-20240324.json @@ -0,0 +1,24 @@ +{ + "name": "DeBank Sepolia Testnet", + "chain": "DeBank", + "rpc": ["https://sepolia-rpc.testnet.debank.com"], + "faucets": [], + "icon": "debank", + "nativeCurrency": { + "name": "DeBank USD", + "symbol": "USD", + "decimals": 18 + }, + "infoURL": "https://debank.com", + "shortName": "dbkse", + "chainId": 20240324, + "networkId": 20240324, + "slip44": 1, + "explorers": [ + { + "name": "DeBank Chain Explorer", + "url": "https://sepolia-explorer.testnet.debank.com", + "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-20241133.json b/_data/chains/eip155-20241133.json new file mode 100644 index 000000000000..16c6ef7ec7d4 --- /dev/null +++ b/_data/chains/eip155-20241133.json @@ -0,0 +1,22 @@ +{ + "name": "Swan Proxima Testnet", + "chain": "SWAN", + "rpc": ["https://rpc-proxima.swanchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "SWANETH", + "symbol": "sETH", + "decimals": 18 + }, + "infoURL": "https://swanchain.io/", + "shortName": "Proxima", + "chainId": 20241133, + "networkId": 20241133, + "explorers": [ + { + "name": "Swan Proxima Chain explorer", + "url": "https://proxima-explorer.swanchain.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-2025.json b/_data/chains/eip155-2025.json index 4f89486e2588..cc81850b5466 100644 --- a/_data/chains/eip155-2025.json +++ b/_data/chains/eip155-2025.json @@ -2,9 +2,7 @@ "name": "Rangers Protocol Mainnet", "chain": "Rangers", "icon": "rangers", - "rpc": [ - "https://mainnet.rangersprotocol.com/api/jsonrpc" - ], + "rpc": ["https://mainnet.rangersprotocol.com/api/jsonrpc"], "faucets": [], "nativeCurrency": { "name": "Rangers Protocol Gas", @@ -16,9 +14,11 @@ "chainId": 2025, "networkId": 2025, "slip44": 1008, - "explorers": [{ - "name": "rangersscan", - "url": "https://scan.rangersprotocol.com", - "standard": "none" - }] + "explorers": [ + { + "name": "rangersscan", + "url": "https://scan.rangersprotocol.com", + "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-20250407.json b/_data/chains/eip155-20250407.json new file mode 100644 index 000000000000..fe5ca2c1b746 --- /dev/null +++ b/_data/chains/eip155-20250407.json @@ -0,0 +1,27 @@ +{ + "name": "PlatON Dev Testnet", + "chain": "PlatON", + "rpc": [ + "https://devnet3openapi.platon.network/rpc", + "wss://devnet3openapi.platon.network/ws" + ], + "faucets": ["https://devnet3faucet.platon.network/faucet"], + "nativeCurrency": { + "name": "LAT", + "symbol": "lat", + "decimals": 18 + }, + "infoURL": "https://www.platon.network", + "shortName": "platondev3", + "chainId": 20250407, + "networkId": 1, + "slip44": 1, + "icon": "platon", + "explorers": [ + { + "name": "PlatON devnet explorer", + "url": "https://devnet3scan.platon.network", + "standard": "none" + } + ] +} 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-202599.json b/_data/chains/eip155-202599.json new file mode 100644 index 000000000000..9cfd257b40aa --- /dev/null +++ b/_data/chains/eip155-202599.json @@ -0,0 +1,24 @@ +{ + "name": "JuChain Testnet", + "chain": "JuChain", + "rpc": ["https://testnet-rpc.juchain.org", "wss://testnet-ws.juchain.org"], + "faucets": [], + "nativeCurrency": { + "name": "JU Testnet Token", + "symbol": "JU", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.juchain.org", + "shortName": "ju-test", + "chainId": 202599, + "networkId": 202599, + "icon": "ju-test", + "explorers": [ + { + "name": "JUChain Test Explorer", + "url": "https://testnet.juscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2026.json b/_data/chains/eip155-2026.json new file mode 100644 index 000000000000..d0b007d6c2a7 --- /dev/null +++ b/_data/chains/eip155-2026.json @@ -0,0 +1,23 @@ +{ + "name": "Edgeless Network", + "chain": "Edgeless", + "rpc": ["https://rpc.edgeless.network/http"], + "features": [{ "name": "EIP155" }], + "faucets": [], + "nativeCurrency": { + "name": "Edgeless Wrapped Eth", + "symbol": "EwEth", + "decimals": 18 + }, + "infoURL": "https://edgeless.network", + "shortName": "edgeless", + "chainId": 2026, + "networkId": 2026, + "explorers": [ + { + "name": "Edgeless Explorer", + "url": "https://explorer.edgeless.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-202624.json b/_data/chains/eip155-202624.json new file mode 100644 index 000000000000..676743631cad --- /dev/null +++ b/_data/chains/eip155-202624.json @@ -0,0 +1,26 @@ +{ + "name": "Jellie", + "title": "Twala Testnet Jellie", + "shortName": "twl-jellie", + "chain": "ETH", + "chainId": 202624, + "networkId": 202624, + "slip44": 1, + "icon": "twala", + "nativeCurrency": { + "name": "Twala Coin", + "symbol": "TWL", + "decimals": 18 + }, + "rpc": ["https://jellie-rpc.twala.io/", "wss://jellie-rpc-wss.twala.io/"], + "faucets": [], + "infoURL": "https://twala.io/", + "explorers": [ + { + "name": "Jellie Blockchain Explorer", + "url": "https://jellie.twala.io", + "standard": "EIP3091", + "icon": "twala" + } + ] +} 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-2031.json b/_data/chains/eip155-2031.json new file mode 100644 index 000000000000..80580639004e --- /dev/null +++ b/_data/chains/eip155-2031.json @@ -0,0 +1,34 @@ +{ + "name": "Centrifuge", + "chain": "CFG", + "icon": "centrifuge", + "rpc": [ + "https://fullnode.centrifuge.io", + "wss://fullnode.centrifuge.io", + "https://centrifuge-parachain.api.onfinality.io/public", + "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "https://centrifuge-rpc.dwellir.com", + "wss://centrifuge-rpc.dwellir.com", + "https://rpc-centrifuge.luckyfriday.io", + "wss://rpc-centrifuge.luckyfriday.io" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Centrifuge", + "symbol": "CFG", + "decimals": 18 + }, + "infoURL": "https://centrifuge.io", + "shortName": "cfg", + "chainId": 2031, + "networkId": 2031, + "explorers": [ + { + "name": "subscan", + "url": "https://centrifuge.subscan.io", + "standard": "EIP3091", + "icon": "subscan" + } + ] +} diff --git a/_data/chains/eip155-2032.json b/_data/chains/eip155-2032.json new file mode 100644 index 000000000000..d292712fef75 --- /dev/null +++ b/_data/chains/eip155-2032.json @@ -0,0 +1,16 @@ +{ + "name": "Catalyst", + "chain": "CFG", + "rpc": ["wss://fullnode.catalyst.cntrfg.com"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Catalyst CFG", + "symbol": "NCFG", + "decimals": 18 + }, + "infoURL": "https://centrifuge.io", + "shortName": "ncfg", + "chainId": 2032, + "networkId": 2032 +} diff --git a/_data/chains/eip155-2035.json b/_data/chains/eip155-2035.json new file mode 100644 index 000000000000..ececc6df15e2 --- /dev/null +++ b/_data/chains/eip155-2035.json @@ -0,0 +1,16 @@ +{ + "name": "Phala Network", + "chain": "ETH", + "rpc": ["https://rpc.phala.network"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://phala.network", + "shortName": "phala", + "chainId": 2035, + "networkId": 2035, + "status": "incubating" +} diff --git a/_data/chains/eip155-2037.json b/_data/chains/eip155-2037.json new file mode 100644 index 000000000000..f71588d210d3 --- /dev/null +++ b/_data/chains/eip155-2037.json @@ -0,0 +1,28 @@ +{ + "name": "Kiwi Subnet", + "chain": "KIWI", + "rpc": ["https://subnets.avax.network/kiwi/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Shrapgas", + "symbol": "SHRAP", + "decimals": 18 + }, + "infoURL": "", + "shortName": "kiwi", + "chainId": 2037, + "networkId": 2037, + "slip44": 1, + "explorers": [ + { + "name": "KIWI Explorer", + "url": "https://subnets-test.avax.network/kiwi", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2038.json b/_data/chains/eip155-2038.json new file mode 100644 index 000000000000..b080088c193b --- /dev/null +++ b/_data/chains/eip155-2038.json @@ -0,0 +1,28 @@ +{ + "name": "Shrapnel Testnet", + "chain": "SHRAPNEL", + "rpc": ["https://subnets.avax.network/shrapnel/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "SHRAPG", + "symbol": "SHRAPG", + "decimals": 18 + }, + "infoURL": "https://www.shrapnel.com/", + "shortName": "shraptest", + "chainId": 2038, + "networkId": 2038, + "slip44": 1, + "explorers": [ + { + "name": "SHRAPNEL Explorer", + "url": "https://subnets-test.avax.network/shrapnel", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2039.json b/_data/chains/eip155-2039.json new file mode 100644 index 000000000000..2a7c4c4d9c04 --- /dev/null +++ b/_data/chains/eip155-2039.json @@ -0,0 +1,27 @@ +{ + "name": "Aleph Zero", + "chain": "Aleph Zero", + "icon": "aleph", + "rpc": [ + "https://rpc.alephzero-testnet.gelato.digital", + "wss://rpc.alephzero-testnet.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "TZERO", + "symbol": "TZERO", + "decimals": 18 + }, + "infoURL": "https://alephzero.org/", + "shortName": "aleph", + "chainId": 2039, + "networkId": 2039, + "explorers": [ + { + "name": "Aleph Zero", + "url": "https://evm-explorer-testnet.alephzero.org", + "icon": "aleph", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-204.json b/_data/chains/eip155-204.json new file mode 100644 index 000000000000..74a27b6c4c68 --- /dev/null +++ b/_data/chains/eip155-204.json @@ -0,0 +1,34 @@ +{ + "name": "opBNB Mainnet", + "icon": "bnbchain", + "chain": "opBNB", + "rpc": [ + "https://opbnb-mainnet-rpc.bnbchain.org", + "https://opbnb-mainnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3", + "wss://opbnb-mainnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3", + "https://opbnb-mainnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", + "wss://opbnb-mainnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", + "https://opbnb-rpc.publicnode.com", + "wss://opbnb-rpc.publicnode.com", + "https://opbnb.drpc.org", + "wss://opbnb.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "BNB Chain Native Token", + "symbol": "BNB", + "decimals": 18 + }, + "infoURL": "https://opbnb.bnbchain.org/en", + "shortName": "obnb", + "chainId": 204, + "networkId": 204, + "slip44": 714, + "explorers": [ + { + "name": "opbnbscan", + "url": "https://mainnet.opbnbscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2040.json b/_data/chains/eip155-2040.json new file mode 100644 index 000000000000..506c0a70ab85 --- /dev/null +++ b/_data/chains/eip155-2040.json @@ -0,0 +1,26 @@ +{ + "name": "Vanar Mainnet", + "title": "Vanarchain", + "chain": "VANAR", + "rpc": ["https://rpc.vanarchain.com", "wss://ws.vanarchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "VANRY", + "symbol": "VANRY", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://vanarchain.com", + "shortName": "Vanar", + "chainId": 2040, + "networkId": 2040, + "icon": "vanar", + "explorers": [ + { + "name": "Vanar Explorer", + "url": "https://explorer.vanarchain.com", + "icon": "vanar", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-204005.json b/_data/chains/eip155-204005.json new file mode 100644 index 000000000000..6d5506d277a9 --- /dev/null +++ b/_data/chains/eip155-204005.json @@ -0,0 +1,23 @@ +{ + "name": "X1 Network", + "chain": "X1", + "rpc": ["https://x1-testnet.xen.network"], + "faucets": [], + "nativeCurrency": { + "name": "XN", + "symbol": "XN", + "decimals": 18 + }, + "infoURL": "https://docs.xen.network/go-x1/", + "shortName": "x1-testnet", + "chainId": 204005, + "networkId": 204005, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.x1-testnet.xen.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2043.json b/_data/chains/eip155-2043.json new file mode 100644 index 000000000000..8b4f703c2350 --- /dev/null +++ b/_data/chains/eip155-2043.json @@ -0,0 +1,18 @@ +{ + "name": "NeuroWeb", + "chain": "NEUROWEB", + "rpc": [ + "https://astrosat.origintrail.network", + "wss://parachain-rpc.origin-trail.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "NeuroWeb Token", + "symbol": "NEURO", + "decimals": 12 + }, + "infoURL": "https://neuroweb.ai", + "shortName": "NEURO", + "chainId": 2043, + "networkId": 2043 +} diff --git a/_data/chains/eip155-2044.json b/_data/chains/eip155-2044.json new file mode 100644 index 000000000000..f27ae557ce25 --- /dev/null +++ b/_data/chains/eip155-2044.json @@ -0,0 +1,15 @@ +{ + "name": "Shrapnel Subnet", + "chain": "shrapnel", + "rpc": ["https://subnets.avax.network/shrapnel/mainnet/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Shrapnel Gas Token", + "symbol": "SHRAPG", + "decimals": 18 + }, + "infoURL": "https://www.shrapnel.com/", + "shortName": "Shrapnel", + "chainId": 2044, + "networkId": 2044 +} 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-2045.json b/_data/chains/eip155-2045.json new file mode 100644 index 000000000000..a110a2df78c9 --- /dev/null +++ b/_data/chains/eip155-2045.json @@ -0,0 +1,18 @@ +{ + "name": "AIW3 Mainnet", + "chain": "AIW3", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://aiw3.io/", + "shortName": "AIW3", + "chainId": 2045, + "networkId": 2045, + "icon": "aiw3", + "explorers": [] +} diff --git a/_data/chains/eip155-2046399126.json b/_data/chains/eip155-2046399126.json new file mode 100644 index 000000000000..81acb65a4741 --- /dev/null +++ b/_data/chains/eip155-2046399126.json @@ -0,0 +1,38 @@ +{ + "name": "SKALE Europa Hub", + "chain": "europa", + "icon": "europa", + "rpc": [ + "https://mainnet.skalenodes.com/v1/elated-tan-skat", + "wss://mainnet.skalenodes.com/v1/elated-tan-skat" + ], + "faucets": [ + "https://ruby.exchange/faucet.html", + "https://sfuel.mylilius.com/" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://europahub.network/", + "shortName": "europa", + "chainId": 2046399126, + "networkId": 2046399126, + "explorers": [ + { + "name": "Blockscout", + "url": "https://elated-tan-skat.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://ruby.exchange/bridge.html" + } + ] + } +} diff --git a/_data/chains/eip155-2047.json b/_data/chains/eip155-2047.json new file mode 100644 index 000000000000..1b14e3f537eb --- /dev/null +++ b/_data/chains/eip155-2047.json @@ -0,0 +1,28 @@ +{ + "name": "Stratos Testnet", + "chain": "STOS", + "rpc": ["https://web3-rpc-mesos.thestratos.org"], + "faucets": [], + "nativeCurrency": { + "name": "STOS", + "symbol": "STOS", + "decimals": 18 + }, + "infoURL": "https://www.thestratos.org", + "shortName": "stos-testnet", + "chainId": 2047, + "networkId": 2047, + "slip44": 1, + "explorers": [ + { + "name": "Stratos EVM Explorer (Blockscout)", + "url": "https://web3-explorer-mesos.thestratos.org", + "standard": "none" + }, + { + "name": "Stratos Cosmos Explorer (BigDipper)", + "url": "https://big-dipper-mesos.thestratos.org", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-2048.json b/_data/chains/eip155-2048.json new file mode 100644 index 000000000000..bc7c883feab6 --- /dev/null +++ b/_data/chains/eip155-2048.json @@ -0,0 +1,27 @@ +{ + "name": "Stratos", + "chain": "STOS", + "rpc": ["https://web3-rpc.thestratos.org"], + "faucets": [], + "nativeCurrency": { + "name": "STOS", + "symbol": "STOS", + "decimals": 18 + }, + "infoURL": "https://www.thestratos.org", + "shortName": "stos-mainnet", + "chainId": 2048, + "networkId": 2048, + "explorers": [ + { + "name": "Stratos EVM Explorer (Blockscout)", + "url": "https://web3-explorer.thestratos.org", + "standard": "none" + }, + { + "name": "Stratos Cosmos Explorer (BigDipper)", + "url": "https://explorer.thestratos.org", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-20482050.json b/_data/chains/eip155-20482050.json new file mode 100644 index 000000000000..066123cd47a6 --- /dev/null +++ b/_data/chains/eip155-20482050.json @@ -0,0 +1,23 @@ +{ + "name": "Hokum Testnet", + "chain": "HokumTestnet", + "icon": "hokum", + "rpc": ["https://testnet.hokum.gg"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://hokum.gg", + "shortName": "hokum-testnet", + "chainId": 20482050, + "networkId": 20482050, + "explorers": [ + { + "name": "Hokum Explorer", + "url": "https://testnet-explorer.hokum.gg", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2049.json b/_data/chains/eip155-2049.json new file mode 100644 index 000000000000..3365aabc08ea --- /dev/null +++ b/_data/chains/eip155-2049.json @@ -0,0 +1,29 @@ +{ + "name": "Movo Smart Chain Mainnet", + "chain": "MOVO", + "icon": "movo", + "rpc": [ + "https://msc-rpc.movoscan.com", + "https://msc-rpc.movochain.org", + "https://msc-rpc.movoswap.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Movo Smart Chain", + "symbol": "MOVO", + "decimals": 18 + }, + "infoURL": "https://movo.uk", + "shortName": "movo", + "chainId": 2049, + "networkId": 2049, + "slip44": 2050, + "explorers": [ + { + "name": "movoscan", + "url": "https://movoscan.com", + "icon": "movoscan", + "standard": "none" + } + ] +} 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-205205.json b/_data/chains/eip155-205205.json new file mode 100644 index 000000000000..dc3b02cddf1a --- /dev/null +++ b/_data/chains/eip155-205205.json @@ -0,0 +1,24 @@ +{ + "name": "Auroria Testnet", + "title": "Xertra Testnet Auroria", + "chain": "Auroria", + "rpc": ["https://auroria.rpc.xertra.com"], + "faucets": ["https://auroria.faucet.xertra.com"], + "nativeCurrency": { + "name": "tSTRAX", + "symbol": "tSTRAX", + "decimals": 18 + }, + "infoURL": "https://xertra.com", + "shortName": "auroria", + "chainId": 205205, + "networkId": 205205, + "icon": "auroria", + "explorers": [ + { + "name": "Auroria Testnet Explorer", + "url": "https://auroria.explorer.xertra.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-206.json b/_data/chains/eip155-206.json new file mode 100644 index 000000000000..6fd7cf29878d --- /dev/null +++ b/_data/chains/eip155-206.json @@ -0,0 +1,25 @@ +{ + "name": "VinuChain Testnet", + "chain": "VinuChain Testnet", + "rpc": ["https://vinufoundation-rpc.com"], + "faucets": [], + "nativeCurrency": { + "name": "VinuChain", + "symbol": "VC", + "decimals": 18 + }, + "infoURL": "https://vitainu.org", + "shortName": "VCTEST", + "chainId": 206, + "networkId": 206, + "slip44": 1, + "icon": "vitainu-testnet", + "explorers": [ + { + "name": "VinuScan Testnet", + "url": "https://testnet.vinuscan.com", + "icon": "vinuscan-testnet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-207.json b/_data/chains/eip155-207.json new file mode 100644 index 000000000000..fcfed411c19b --- /dev/null +++ b/_data/chains/eip155-207.json @@ -0,0 +1,24 @@ +{ + "name": "VinuChain Network", + "chain": "VinuChain", + "rpc": ["https://vinuchain-rpc.com"], + "faucets": [], + "nativeCurrency": { + "name": "VinuChain", + "symbol": "VC", + "decimals": 18 + }, + "infoURL": "https://vitainu.org", + "shortName": "VC", + "chainId": 207, + "networkId": 207, + "icon": "vitainu", + "explorers": [ + { + "name": "VinuScan", + "url": "https://vinuscan.com", + "icon": "vinuscan", + "standard": "none" + } + ] +} 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-20729.json b/_data/chains/eip155-20729.json new file mode 100644 index 000000000000..632481e6b512 --- /dev/null +++ b/_data/chains/eip155-20729.json @@ -0,0 +1,16 @@ +{ + "name": "Callisto Testnet", + "chain": "CLO", + "rpc": ["https://testnet-rpc.callisto.network/"], + "faucets": ["https://faucet.callisto.network/"], + "nativeCurrency": { + "name": "Callisto", + "symbol": "CLO", + "decimals": 18 + }, + "infoURL": "https://callisto.network", + "shortName": "CLOTestnet", + "chainId": 20729, + "networkId": 79, + "slip44": 1 +} diff --git a/_data/chains/eip155-20736.json b/_data/chains/eip155-20736.json new file mode 100644 index 000000000000..fd515a867594 --- /dev/null +++ b/_data/chains/eip155-20736.json @@ -0,0 +1,24 @@ +{ + "name": "P12 Chain", + "chain": "P12", + "icon": "p12", + "rpc": ["https://rpc-chain.p12.games"], + "faucets": [], + "nativeCurrency": { + "name": "Hooked P2", + "symbol": "hP2", + "decimals": 18 + }, + "infoURL": "https://p12.network", + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "shortName": "p12", + "chainId": 20736, + "networkId": 20736, + "explorers": [ + { + "name": "P12 Chain Explorer", + "url": "https://explorer.p12.games", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-20765.json b/_data/chains/eip155-20765.json new file mode 100644 index 000000000000..42c5f7e5dc1d --- /dev/null +++ b/_data/chains/eip155-20765.json @@ -0,0 +1,28 @@ +{ + "name": "Jono11 Subnet", + "chain": "JONO11", + "icon": "jono11", + "rpc": ["https://subnets.avax.network/jono11/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Jono11 Token", + "symbol": "JONO", + "decimals": 18 + }, + "infoURL": "", + "shortName": "jono11", + "chainId": 20765, + "networkId": 20765, + "explorers": [ + { + "name": "JONO11 Explorer", + "url": "https://subnets-test.avax.network/jono11", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2077.json b/_data/chains/eip155-2077.json new file mode 100644 index 000000000000..94667f8af327 --- /dev/null +++ b/_data/chains/eip155-2077.json @@ -0,0 +1,22 @@ +{ + "name": "Quokkacoin Mainnet", + "chain": "Qkacoin", + "rpc": ["https://rpc.qkacoin.org"], + "faucets": [], + "nativeCurrency": { + "name": "Qkacoin", + "symbol": "QKA", + "decimals": 18 + }, + "infoURL": "https://qkacoin.org", + "shortName": "QKA", + "chainId": 2077, + "networkId": 2077, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.qkacoin.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-208.json b/_data/chains/eip155-208.json new file mode 100644 index 000000000000..dfb380b54516 --- /dev/null +++ b/_data/chains/eip155-208.json @@ -0,0 +1,15 @@ +{ + "name": "Structx Mainnet", + "chain": "utx", + "rpc": ["https://mainnet.structx.io"], + "faucets": [], + "nativeCurrency": { + "name": "Notes", + "symbol": "utx", + "decimals": 18 + }, + "infoURL": "https://structx.io", + "shortName": "utx", + "chainId": 208, + "networkId": 208 +} diff --git a/_data/chains/eip155-2088.json b/_data/chains/eip155-2088.json new file mode 100644 index 000000000000..7ea1647417f4 --- /dev/null +++ b/_data/chains/eip155-2088.json @@ -0,0 +1,20 @@ +{ + "name": "Altair", + "chain": "AIR", + "icon": "altair", + "rpc": [ + "wss://fullnode.altair.centrifuge.io", + "wss://altair.api.onfinality.io/public-ws" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Altair", + "symbol": "AIR", + "decimals": 18 + }, + "infoURL": "https://centrifuge.io", + "shortName": "air", + "chainId": 2088, + "networkId": 2088 +} diff --git a/_data/chains/eip155-2089.json b/_data/chains/eip155-2089.json new file mode 100644 index 000000000000..0767c2126efe --- /dev/null +++ b/_data/chains/eip155-2089.json @@ -0,0 +1,17 @@ +{ + "name": "Algol", + "chain": "algol", + "status": "deprecated", + "rpc": ["wss://fullnode.algol.cntrfg.com"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Algol", + "symbol": "ALGL", + "decimals": 18 + }, + "infoURL": "https://centrifuge.io", + "shortName": "algl", + "chainId": 2089, + "networkId": 2089 +} diff --git a/_data/chains/eip155-2099156.json b/_data/chains/eip155-2099156.json new file mode 100644 index 000000000000..53d04c574ae1 --- /dev/null +++ b/_data/chains/eip155-2099156.json @@ -0,0 +1,22 @@ +{ + "name": "Plian Mainnet Main", + "chain": "Plian", + "rpc": ["https://mainnet.plian.io/pchain"], + "faucets": [], + "nativeCurrency": { + "name": "Plian Token", + "symbol": "PI", + "decimals": 18 + }, + "infoURL": "https://plian.org/", + "shortName": "plian-mainnet", + "chainId": 2099156, + "networkId": 2099156, + "explorers": [ + { + "name": "piscan", + "url": "https://piscan.plian.org/pchain", + "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-21.json b/_data/chains/eip155-21.json index 2602e65a1cd5..19d63e2507df 100644 --- a/_data/chains/eip155-21.json +++ b/_data/chains/eip155-21.json @@ -1,19 +1,22 @@ { - "name": "ELA-ETH-Sidechain Testnet", + "name": "Elastos Smart Chain Testnet", "chain": "ETH", - "rpc": [ - "https://rpc.elaeth.io" - ], - "faucets": [ - "https://faucet.elaeth.io/" - ], + "rpc": ["https://api-testnet.elastos.io/eth"], + "faucets": ["https://esc-faucet.elastos.io/"], "nativeCurrency": { "name": "Elastos", "symbol": "tELA", "decimals": 18 }, - "infoURL": "https://elaeth.io/", - "shortName": "elaetht", + "infoURL": "https://www.elastos.org/", + "shortName": "esct", "chainId": 21, - "networkId": 21 + "networkId": 21, + "explorers": [ + { + "name": "elastos esc explorer", + "url": "https://esc-testnet.elastos.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-210.json b/_data/chains/eip155-210.json new file mode 100644 index 000000000000..310188040662 --- /dev/null +++ b/_data/chains/eip155-210.json @@ -0,0 +1,29 @@ +{ + "name": "Bitnet", + "chain": "BTN", + "icon": "bitnet", + "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.technology", + "shortName": "BTN", + "chainId": 210, + "networkId": 210, + "explorers": [ + { + "name": "Bitnet Explorer", + "url": "https://btnscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2100.json b/_data/chains/eip155-2100.json index afe88ee84902..a8ab0f743213 100644 --- a/_data/chains/eip155-2100.json +++ b/_data/chains/eip155-2100.json @@ -1,9 +1,7 @@ { "name": "Ecoball Mainnet", "chain": "ECO", - "rpc": [ - "https://api.ecoball.org/ecoball/" - ], + "rpc": ["https://api.ecoball.org/ecoball/"], "faucets": [], "nativeCurrency": { "name": "Ecoball Coin", @@ -14,9 +12,11 @@ "shortName": "eco", "chainId": 2100, "networkId": 2100, - "explorers": [{ - "name": "Ecoball Explorer", - "url": "https://scan.ecoball.org", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "Ecoball Explorer", + "url": "https://scan.ecoball.org", + "standard": "EIP3091" + } + ] } 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-210000.json b/_data/chains/eip155-210000.json new file mode 100644 index 000000000000..8eb03de98339 --- /dev/null +++ b/_data/chains/eip155-210000.json @@ -0,0 +1,24 @@ +{ + "name": "JuChain Mainnet", + "chain": "JuChain", + "rpc": ["https://rpc.juchain.org", "wss://ws.juchain.org"], + "faucets": [], + "nativeCurrency": { + "name": "JU", + "symbol": "JU", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.juchain.org", + "shortName": "ju", + "chainId": 210000, + "networkId": 210000, + "icon": "ju", + "explorers": [ + { + "name": "JUChain Mainnet Explorer", + "url": "https://juscan.io", + "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-21004.json b/_data/chains/eip155-21004.json new file mode 100644 index 000000000000..852e62f36c69 --- /dev/null +++ b/_data/chains/eip155-21004.json @@ -0,0 +1,23 @@ +{ + "name": "C4EI", + "chain": "C4EI", + "rpc": ["https://rpc.c4ei.net"], + "faucets": ["https://play.google.com/store/apps/details?id=net.c4ei.fps2"], + "nativeCurrency": { + "name": "C4EI", + "symbol": "C4EI", + "decimals": 18 + }, + "infoURL": "https://c4ei.net", + "shortName": "c4ei", + "chainId": 21004, + "networkId": 21004, + "explorers": [ + { + "name": "C4EI sirato", + "url": "https://exp.c4ei.net", + "icon": "c4ei", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-210049.json b/_data/chains/eip155-210049.json new file mode 100644 index 000000000000..d171115fb5fb --- /dev/null +++ b/_data/chains/eip155-210049.json @@ -0,0 +1,15 @@ +{ + "name": "GitAGI Atlas Testnet", + "chain": "GitAGI", + "rpc": ["https://rpc.gitagi.org"], + "faucets": [], + "nativeCurrency": { + "name": "GitAGI", + "symbol": "tGAGI", + "decimals": 18 + }, + "infoURL": "https://gitagi.org/", + "shortName": "atlas", + "chainId": 210049, + "networkId": 210049 +} diff --git a/_data/chains/eip155-2101.json b/_data/chains/eip155-2101.json index 543ec819ba1c..34e777962ec1 100644 --- a/_data/chains/eip155-2101.json +++ b/_data/chains/eip155-2101.json @@ -1,9 +1,7 @@ { "name": "Ecoball Testnet Espuma", "chain": "ECO", - "rpc": [ - "https://api.ecoball.org/espuma/" - ], + "rpc": ["https://api.ecoball.org/espuma/"], "faucets": [], "nativeCurrency": { "name": "Espuma Coin", @@ -14,9 +12,12 @@ "shortName": "esp", "chainId": 2101, "networkId": 2101, - "explorers": [{ - "name": "Ecoball Testnet Explorer", - "url": "https://espuma-scan.ecoball.org", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "Ecoball Testnet Explorer", + "url": "https://espuma-scan.ecoball.org", + "standard": "EIP3091" + } + ] } 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-210425.json b/_data/chains/eip155-210425.json index c7b292b10009..623a601863ff 100644 --- a/_data/chains/eip155-210425.json +++ b/_data/chains/eip155-210425.json @@ -1,7 +1,6 @@ { "name": "PlatON Mainnet", "chain": "PlatON", - "network": "mainnet", "rpc": [ "https://openapi2.platon.network/rpc", "wss://openapi2.platon.network/ws" @@ -24,4 +23,4 @@ "standard": "none" } ] -} \ No newline at end of file +} diff --git a/_data/chains/eip155-2109.json b/_data/chains/eip155-2109.json new file mode 100644 index 000000000000..9d5b924539f3 --- /dev/null +++ b/_data/chains/eip155-2109.json @@ -0,0 +1,25 @@ +{ + "name": "Exosama Network", + "chain": "EXN", + "rpc": ["https://rpc.exosama.com", "wss://rpc.exosama.com"], + "faucets": [], + "nativeCurrency": { + "name": "Sama Token", + "symbol": "SAMA", + "decimals": 18 + }, + "infoURL": "https://moonsama.com", + "shortName": "exn", + "chainId": 2109, + "networkId": 2109, + "slip44": 2109, + "icon": "exn", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.exosama.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} 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-211.json b/_data/chains/eip155-211.json index 125be41fc726..fe14c3360c3a 100644 --- a/_data/chains/eip155-211.json +++ b/_data/chains/eip155-211.json @@ -5,9 +5,7 @@ "http://13.57.207.168:3435", "https://app.freighttrust.net/ftn/${API_KEY}" ], - "faucets": [ - "http://faucet.freight.sh" - ], + "faucets": ["http://faucet.freight.sh"], "nativeCurrency": { "name": "Freight Trust Native", "symbol": "0xF", diff --git a/_data/chains/eip155-2112.json b/_data/chains/eip155-2112.json new file mode 100644 index 000000000000..d00cf027498f --- /dev/null +++ b/_data/chains/eip155-2112.json @@ -0,0 +1,24 @@ +{ + "name": "UCHAIN Mainnet", + "chain": "UCHAIN", + "rpc": ["https://rpc.uchain.link/"], + "faucets": [], + "nativeCurrency": { + "name": "UCASH", + "symbol": "UCASH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://u.cash/", + "shortName": "uchain", + "chainId": 2112, + "networkId": 2112, + "icon": "ucash", + "explorers": [ + { + "name": "uchain.info", + "url": "https://uchain.info", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-21133.json b/_data/chains/eip155-21133.json new file mode 100644 index 000000000000..13d4109e6945 --- /dev/null +++ b/_data/chains/eip155-21133.json @@ -0,0 +1,23 @@ +{ + "name": "All About Healthy", + "chain": "AAH", + "rpc": ["https://rpc.c4ex.net"], + "faucets": ["https://t.me/c4eiAirdrop"], + "nativeCurrency": { + "name": "AAH", + "symbol": "AAH", + "decimals": 18 + }, + "infoURL": "https://c4ex.net", + "shortName": "aah", + "chainId": 21133, + "networkId": 21133, + "explorers": [ + { + "name": "AAH Blockscout", + "url": "https://exp.c4ex.net", + "icon": "aah", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-212.json b/_data/chains/eip155-212.json new file mode 100644 index 000000000000..159df7671c8d --- /dev/null +++ b/_data/chains/eip155-212.json @@ -0,0 +1,23 @@ +{ + "name": "MAPO Makalu", + "title": "MAPO Testnet Makalu", + "chain": "MAPO", + "rpc": ["https://testnet-rpc.maplabs.io"], + "faucets": ["https://faucet.mapprotocol.io"], + "nativeCurrency": { + "name": "Makalu MAPO", + "symbol": "MAPO", + "decimals": 18 + }, + "infoURL": "https://mapprotocol.io/", + "shortName": "makalu", + "chainId": 212, + "networkId": 212, + "explorers": [ + { + "name": "maposcan", + "url": "https://testnet.maposcan.io", + "standard": "EIP3091" + } + ] +} 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-2121.json b/_data/chains/eip155-2121.json new file mode 100644 index 000000000000..712f63c5c52b --- /dev/null +++ b/_data/chains/eip155-2121.json @@ -0,0 +1,24 @@ +{ + "name": "Catena Mainnet", + "chain": "CMCX", + "rpc": ["https://rpc1.catenarpc.com"], + "faucets": [], + "nativeCurrency": { + "name": "Catena", + "symbol": "CMCX", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://catena.network", + "shortName": "cmcx", + "chainId": 2121, + "networkId": 2121, + "icon": "catena", + "explorers": [ + { + "name": "catenascan", + "url": "https://catenascan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-21210.json b/_data/chains/eip155-21210.json new file mode 100644 index 000000000000..e5f8ea8a6cd6 --- /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": "FREE", + "symbol": "FREE", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://1money.com", + "shortName": "1money", + "chainId": 21210, + "networkId": 21210, + "explorers": [] +} diff --git a/_data/chains/eip155-2122.json b/_data/chains/eip155-2122.json new file mode 100644 index 000000000000..45d01c7a1376 --- /dev/null +++ b/_data/chains/eip155-2122.json @@ -0,0 +1,24 @@ +{ + "name": "Metaplayerone Mainnet", + "chain": "METAD", + "icon": "metad", + "rpc": ["https://rpc.metaplayer.one/"], + "faucets": [], + "nativeCurrency": { + "name": "METAD", + "symbol": "METAD", + "decimals": 18 + }, + "infoURL": "https://docs.metaplayer.one/", + "shortName": "Metad", + "chainId": 2122, + "networkId": 2122, + "explorers": [ + { + "name": "Metad Scan", + "url": "https://scan.metaplayer.one", + "icon": "metad", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-21223.json b/_data/chains/eip155-21223.json new file mode 100644 index 000000000000..a05a3b548edc --- /dev/null +++ b/_data/chains/eip155-21223.json @@ -0,0 +1,23 @@ +{ + "name": "DCpay Mainnet", + "chain": "DCpay", + "icon": "dcpayIcon", + "rpc": ["https://rpc.dcpay.io"], + "faucets": [], + "nativeCurrency": { + "name": "DCP", + "symbol": "DCP", + "decimals": 18 + }, + "infoURL": "https://dcpay.io", + "shortName": "DCPm", + "chainId": 21223, + "networkId": 21223, + "explorers": [ + { + "name": "DCpay Mainnet Explorer", + "url": "https://mainnet.dcpay.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-21224.json b/_data/chains/eip155-21224.json new file mode 100644 index 000000000000..9e761c17c9f9 --- /dev/null +++ b/_data/chains/eip155-21224.json @@ -0,0 +1,23 @@ +{ + "name": "DCpay Testnet", + "chain": "DCpay", + "icon": "dcpayIcon", + "rpc": ["https://testnet-rpc.dcpay.io"], + "faucets": ["https://faucet.dcpay.io"], + "nativeCurrency": { + "name": "DCP", + "symbol": "DCP", + "decimals": 18 + }, + "infoURL": "https://dcpay.io", + "shortName": "DCPt", + "chainId": 21224, + "networkId": 21224, + "explorers": [ + { + "name": "DCpay Testnet Explorer", + "url": "https://testnet.dcpay.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2124.json b/_data/chains/eip155-2124.json new file mode 100644 index 000000000000..26fc6f46b683 --- /dev/null +++ b/_data/chains/eip155-2124.json @@ -0,0 +1,23 @@ +{ + "name": "Metaplayerone Dubai Testnet", + "chain": "MP1 Dubai-Testnet", + "rpc": ["https://rpc-dubai.mp1network.com/"], + "faucets": [], + "nativeCurrency": { + "name": "Metaunit", + "symbol": "MEU", + "decimals": 18 + }, + "infoURL": "https://docs.metaplayer.one/", + "shortName": "MEU", + "chainId": 2124, + "networkId": 2124, + "slip44": 1, + "explorers": [ + { + "name": "MP1Scan", + "url": "https://dubai.mp1scan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2129.json b/_data/chains/eip155-2129.json new file mode 100644 index 000000000000..fbfab85d405d --- /dev/null +++ b/_data/chains/eip155-2129.json @@ -0,0 +1,21 @@ +{ + "name": "Memento Testnet", + "chain": "Memento", + "rpc": ["https://rpc.memento.zeeve.online"], + "faucets": ["https://faucet.memento.zeeve.online"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "", + "shortName": "memento-testnet", + "chainId": 2129, + "networkId": 2129, + "explorers": [] +} diff --git a/_data/chains/eip155-213.json b/_data/chains/eip155-213.json new file mode 100644 index 000000000000..4866cf06731c --- /dev/null +++ b/_data/chains/eip155-213.json @@ -0,0 +1,24 @@ +{ + "name": "B2 Hub Mainnet", + "chain": "B2", + "rpc": ["https://hub-rpc.bsquared.network"], + "faucets": [], + "nativeCurrency": { + "name": "BSquared Token", + "symbol": "B2", + "decimals": 18 + }, + "infoURL": "https://www.bsquared.network", + "shortName": "B2Hub-mainnet", + "chainId": 213, + "networkId": 213, + "icon": "bsquare", + "explorers": [ + { + "name": "B2 Hub Mainnet Explorer", + "url": "https://hub-explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-21337.json b/_data/chains/eip155-21337.json index cb3525467af2..c02d590218e2 100644 --- a/_data/chains/eip155-21337.json +++ b/_data/chains/eip155-21337.json @@ -1,24 +1,23 @@ { - "name": "CENNZnet Azalea", - "chain": "CENNZnet", - "network": "azalea", - "rpc": [ - "https://cennznet.unfrastructure.io/public" - ], - "faucets": [], - "nativeCurrency": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 - }, - "infoURL": "https://cennz.net", - "shortName": "cennz-a", - "chainId": 21337, - "networkId": 21337, - "icon": "cennz", - "explorers": [{ + "name": "CENNZnet Azalea", + "chain": "CENNZnet", + "rpc": ["https://cennznet.unfrastructure.io/public"], + "faucets": [], + "nativeCurrency": { + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 + }, + "infoURL": "https://cennz.net", + "shortName": "cennz-a", + "chainId": 21337, + "networkId": 21337, + "icon": "cennz", + "explorers": [ + { "name": "UNcover", "url": "https://uncoverexplorer.com", "standard": "none" - }] - } \ No newline at end of file + } + ] +} diff --git a/_data/chains/eip155-2136.json b/_data/chains/eip155-2136.json new file mode 100644 index 000000000000..0ededf1f88f8 --- /dev/null +++ b/_data/chains/eip155-2136.json @@ -0,0 +1,25 @@ +{ + "name": "BigShortBets Testnet", + "chain": "BIGSB Testnet", + "rpc": [ + "https://test-market.bigsb.network", + "wss://test-market.bigsb.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dolarz", + "symbol": "Dolarz", + "decimals": 18 + }, + "infoURL": "https://bigshortbets.com/", + "shortName": "bigsb_testnet", + "chainId": 2136, + "networkId": 2136, + "explorers": [ + { + "name": "Polkadot.js", + "url": "https://polkadot.js.org/apps/?rpc=wss://test-market.bigsb.network#/explorer", + "standard": "none" + } + ] +} 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-2137.json b/_data/chains/eip155-2137.json new file mode 100644 index 000000000000..791c3d2583b3 --- /dev/null +++ b/_data/chains/eip155-2137.json @@ -0,0 +1,16 @@ +{ + "name": "BigShortBets", + "chain": "BIGSB", + "rpc": ["https://market.bigsb.io", "wss://market.bigsb.io"], + "faucets": [], + "nativeCurrency": { + "name": "USD Coin", + "symbol": "USDC", + "decimals": 18 + }, + "infoURL": "https://bigshortbets.com/", + "shortName": "bigsb", + "chainId": 2137, + "networkId": 2137, + "explorers": [] +} diff --git a/_data/chains/eip155-2138.json b/_data/chains/eip155-2138.json new file mode 100644 index 000000000000..e5a273698a5f --- /dev/null +++ b/_data/chains/eip155-2138.json @@ -0,0 +1,31 @@ +{ + "name": "Defi Oracle Meta Testnet", + "chain": "dfiometatest", + "icon": "defioraclemeta", + "rpc": [ + "https://rpc.public-2138.defi-oracle.io", + "wss://rpc.public-2138.defi-oracle.io" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "testEther", + "symbol": "tETH", + "decimals": 18 + }, + "infoURL": "https://defi-oracle.io/", + "shortName": "dfio-meta-test", + "chainId": 2138, + "networkId": 21, + "slip44": 1, + "ens": { + "registry": "0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85" + }, + "explorers": [ + { + "name": "Quorum Explorer", + "url": "https://public-2138.defi-oracle.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-214.json b/_data/chains/eip155-214.json new file mode 100644 index 000000000000..a86cad514b61 --- /dev/null +++ b/_data/chains/eip155-214.json @@ -0,0 +1,23 @@ +{ + "name": "Shinarium Mainnet", + "chain": "Shinarium", + "icon": "shinarium", + "rpc": ["https://mainnet.shinarium.org"], + "faucets": [], + "nativeCurrency": { + "name": "Shina Inu", + "symbol": "SHI", + "decimals": 18 + }, + "infoURL": "https://shinarium.org", + "shortName": "shinarium", + "chainId": 214, + "networkId": 214, + "explorers": [ + { + "name": "shinascan", + "url": "https://shinascan.shinarium.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2140.json b/_data/chains/eip155-2140.json new file mode 100644 index 000000000000..5547f237d8bc --- /dev/null +++ b/_data/chains/eip155-2140.json @@ -0,0 +1,22 @@ +{ + "name": "Oneness Network", + "chain": "Oneness", + "rpc": ["https://rpc.onenesslabs.io/"], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "", + "shortName": "oneness", + "chainId": 2140, + "networkId": 2140, + "explorers": [ + { + "name": "oneness-mainnet", + "url": "https://scan.onenesslabs.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2141.json b/_data/chains/eip155-2141.json new file mode 100644 index 000000000000..5103cedc9f58 --- /dev/null +++ b/_data/chains/eip155-2141.json @@ -0,0 +1,22 @@ +{ + "name": "Oneness TestNet", + "chain": "Oneness-Testnet", + "rpc": ["https://rpc.testnet.onenesslabs.io/"], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "", + "shortName": "oneness-testnet", + "chainId": 2141, + "networkId": 2141, + "explorers": [ + { + "name": "oneness-testnet", + "url": "https://scan.testnet.onenesslabs.io", + "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-2151.json b/_data/chains/eip155-2151.json new file mode 100644 index 000000000000..ea728a6179c5 --- /dev/null +++ b/_data/chains/eip155-2151.json @@ -0,0 +1,24 @@ +{ + "name": "BOSagora Mainnet", + "chain": "ETH", + "rpc": ["https://mainnet.bosagora.org", "https://rpc.bosagora.org"], + "faucets": [], + "nativeCurrency": { + "name": "BOSAGORA", + "symbol": "BOA", + "decimals": 18 + }, + "infoURL": "https://docs.bosagora.org", + "shortName": "boa", + "chainId": 2151, + "networkId": 2151, + "icon": "agora", + "explorers": [ + { + "name": "BOASCAN", + "url": "https://boascan.io", + "icon": "agora", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2152.json b/_data/chains/eip155-2152.json index affa07c3617b..b3ff9d1cdbaf 100644 --- a/_data/chains/eip155-2152.json +++ b/_data/chains/eip155-2152.json @@ -1,8 +1,7 @@ { "name": "Findora Mainnet", "chain": "Findora", - "network": "mainnet", - "rpc": ["https://prod-mainnet.prod.findora.org:8545"], + "rpc": ["https://rpc-mainnet.findora.org"], "faucets": [], "nativeCurrency": { "name": "FRA", diff --git a/_data/chains/eip155-2153.json b/_data/chains/eip155-2153.json index b8e3bed92c27..42e68c94a1c9 100644 --- a/_data/chains/eip155-2153.json +++ b/_data/chains/eip155-2153.json @@ -1,7 +1,6 @@ { "name": "Findora Testnet", "chain": "Testnet-anvil", - "network": "testnet", "rpc": ["https://prod-testnet.prod.findora.org:8545/"], "faucets": [], "nativeCurrency": { @@ -13,6 +12,7 @@ "shortName": "findora-testnet", "chainId": 2153, "networkId": 2153, + "slip44": 1, "explorers": [ { "name": "findorascan", diff --git a/_data/chains/eip155-2154.json b/_data/chains/eip155-2154.json new file mode 100644 index 000000000000..e40ff70229c0 --- /dev/null +++ b/_data/chains/eip155-2154.json @@ -0,0 +1,23 @@ +{ + "name": "Findora Forge", + "chain": "Testnet-forge", + "rpc": ["https://prod-forge.prod.findora.org:8545/"], + "faucets": [], + "nativeCurrency": { + "name": "FRA", + "symbol": "FRA", + "decimals": 18 + }, + "infoURL": "https://findora.org/", + "shortName": "findora-forge", + "chainId": 2154, + "networkId": 2154, + "slip44": 1, + "explorers": [ + { + "name": "findorascan", + "url": "https://testnet-forge.evm.findorascan.io", + "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-217.json b/_data/chains/eip155-217.json new file mode 100644 index 000000000000..fcba305d333a --- /dev/null +++ b/_data/chains/eip155-217.json @@ -0,0 +1,23 @@ +{ + "name": "SiriusNet V2", + "chain": "SIN2", + "faucets": [], + "rpc": ["https://rpc2.siriusnet.io"], + "icon": "siriusnet", + "nativeCurrency": { + "name": "MCD", + "symbol": "MCD", + "decimals": 18 + }, + "infoURL": "https://siriusnet.io", + "shortName": "SIN2", + "chainId": 217, + "networkId": 217, + "explorers": [ + { + "name": "siriusnet explorer", + "url": "https://scan.siriusnet.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-218.json b/_data/chains/eip155-218.json index 4a030a426de6..cbb318044322 100644 --- a/_data/chains/eip155-218.json +++ b/_data/chains/eip155-218.json @@ -1,11 +1,8 @@ { "name": "SoterOne Mainnet old", "chain": "SOTER", - "rpc": [ - "https://rpc.soter.one" - ], - "faucets": [ - ], + "rpc": ["https://rpc.soter.one"], + "faucets": [], "nativeCurrency": { "name": "SoterOne Mainnet Ether", "symbol": "SOTER", @@ -15,5 +12,5 @@ "shortName": "SO1-old", "chainId": 218, "networkId": 218, - "status":"deprecated" + "status": "deprecated" } diff --git a/_data/chains/eip155-21816.json b/_data/chains/eip155-21816.json index 3777134002b1..0f711894c48b 100644 --- a/_data/chains/eip155-21816.json +++ b/_data/chains/eip155-21816.json @@ -2,9 +2,7 @@ "name": "omChain Mainnet", "chain": "OML", "icon": "omlira", - "rpc": [ - "https://seed.omchain.io" - ], + "rpc": ["https://seed.omchain.io"], "faucets": [], "nativeCurrency": { "name": "omChain", @@ -15,9 +13,11 @@ "shortName": "omc", "chainId": 21816, "networkId": 21816, - "explorers": [{ - "name": "omChain Explorer", - "url": "https://explorer.omchain.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "omChain Explorer", + "url": "https://explorer.omchain.io", + "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-21912.json b/_data/chains/eip155-21912.json new file mode 100644 index 000000000000..b2fe4ab83540 --- /dev/null +++ b/_data/chains/eip155-21912.json @@ -0,0 +1,25 @@ +{ + "name": "BSL Mainnet", + "chain": "BSL", + "rpc": [ + "http://rpc-mainnet.nftruth.io:8545", + "ws://rpc-mainnet.nftruth.io:8645" + ], + "faucets": [], + "nativeCurrency": { + "name": "Origin NFT", + "symbol": "ONF", + "decimals": 18 + }, + "infoURL": "https://bsquarelab.com/", + "shortName": "onf", + "chainId": 21912, + "networkId": 21912, + "explorers": [ + { + "name": "BSL Mainnet Explorer", + "url": "https://scan.nftruth.io", + "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-2199.json b/_data/chains/eip155-2199.json new file mode 100644 index 000000000000..63797c3e6a84 --- /dev/null +++ b/_data/chains/eip155-2199.json @@ -0,0 +1,25 @@ +{ + "name": "Moonsama Network", + "chain": "MSN", + "rpc": ["https://rpc.moonsama.com", "wss://rpc.moonsama.com/ws"], + "faucets": ["https://multiverse.moonsama.com/faucet"], + "nativeCurrency": { + "name": "Sama Token", + "symbol": "SAMA", + "decimals": 18 + }, + "infoURL": "https://moonsama.com", + "shortName": "msn", + "chainId": 2199, + "networkId": 2199, + "slip44": 2199, + "icon": "msn", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.moonsama.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-220.json b/_data/chains/eip155-220.json new file mode 100644 index 000000000000..7fba932d4504 --- /dev/null +++ b/_data/chains/eip155-220.json @@ -0,0 +1,23 @@ +{ + "name": "Scalind Testnet", + "chain": "ETH", + "icon": "scalind", + "rpc": ["https://rpc-sepolia.scalind.com"], + "faucets": ["https://faucet.scalind.com"], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scalind.com", + "shortName": "sepscal", + "chainId": 220, + "networkId": 220, + "explorers": [ + { + "name": "scalind", + "url": "https://explorer-sepolia.scalind.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2201.json b/_data/chains/eip155-2201.json new file mode 100644 index 000000000000..44cc338dc7a5 --- /dev/null +++ b/_data/chains/eip155-2201.json @@ -0,0 +1,29 @@ +{ + "name": "Stable Testnet", + "chain": "Stable", + "icon": "stable", + "rpc": ["https://rpc.testnet.stable.xyz"], + "faucets": ["https://faucet.stable.xyz"], + "nativeCurrency": { + "name": "gUSDT", + "symbol": "gUSDT", + "decimals": 18 + }, + "infoURL": "https://stable.xyz", + "shortName": "stable-testnet", + "chainId": 2201, + "networkId": 2201, + "explorers": [ + { + "name": "Blockscout Explorer", + "url": "https://blockscout.testnet.stable.xyz", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "Stablescan", + "url": "https://testnet.stablescan.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2202.json b/_data/chains/eip155-2202.json new file mode 100644 index 000000000000..d1af510b4633 --- /dev/null +++ b/_data/chains/eip155-2202.json @@ -0,0 +1,23 @@ +{ + "name": "Antofy Mainnet", + "chain": "ABN", + "icon": "antofy", + "rpc": ["https://rpc.antofy.io"], + "faucets": ["https://faucet.antofy.io"], + "nativeCurrency": { + "name": "Antofy", + "symbol": "ABN", + "decimals": 18 + }, + "infoURL": "https://antofy.io", + "shortName": "ABNm", + "chainId": 2202, + "networkId": 2202, + "explorers": [ + { + "name": "Antofy Mainnet", + "url": "https://antofyscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-22023.json b/_data/chains/eip155-22023.json index bad3cd8a9d02..214913de2717 100644 --- a/_data/chains/eip155-22023.json +++ b/_data/chains/eip155-22023.json @@ -1,10 +1,7 @@ { "name": "Taycan", "chain": "Taycan", - "network": "mainnet", - "rpc": [ - "https://taycan-rpc.hupayx.io:8545" - ], + "rpc": ["https://taycan-rpc.hupayx.io:8545"], "faucets": [], "nativeCurrency": { "name": "shuffle", @@ -15,14 +12,19 @@ "shortName": "SFL", "chainId": 22023, "networkId": 22023, - "explorers": [{ - "name": "Taycan Explorer(Blockscout)", - "url": "https://taycan-evmscan.hupayx.io", - "standard": "none" - }, - { + "icon": "shuffle", + "explorers": [ + { + "name": "Taycan Explorer(Blockscout)", + "url": "https://taycan-evmscan.hupayx.io", + "standard": "none", + "icon": "shuffle" + }, + { "name": "Taycan Cosmos Explorer(BigDipper)", "url": "https://taycan-cosmoscan.hupayx.io", - "standard": "none" - }] + "standard": "none", + "icon": "shuffle" + } + ] } diff --git a/_data/chains/eip155-2203.json b/_data/chains/eip155-2203.json new file mode 100644 index 000000000000..95e26a712bb3 --- /dev/null +++ b/_data/chains/eip155-2203.json @@ -0,0 +1,24 @@ +{ + "name": "Bitcoin EVM", + "chain": "Bitcoin EVM", + "rpc": ["https://connect.bitcoinevm.com"], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://bitcoinevm.com", + "shortName": "BTC", + "chainId": 2203, + "networkId": 2203, + "icon": "ebtc", + "explorers": [ + { + "name": "Explorer", + "url": "https://explorer.bitcoinevm.com", + "icon": "ebtc", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-220315.json b/_data/chains/eip155-220315.json new file mode 100644 index 000000000000..f11b2453ee08 --- /dev/null +++ b/_data/chains/eip155-220315.json @@ -0,0 +1,24 @@ +{ + "name": "Mas Mainnet", + "chain": "MAS", + "rpc": ["http://node.masnet.ai:8545"], + "faucets": [], + "nativeCurrency": { + "name": "Master Bank", + "symbol": "MAS", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://masterbank.org", + "shortName": "mas", + "chainId": 220315, + "networkId": 220315, + "icon": "mas", + "explorers": [ + { + "name": "explorer masnet", + "url": "https://explorer.masnet.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2203181.json b/_data/chains/eip155-2203181.json index 1b349ce35b2e..2560e2b6ac69 100644 --- a/_data/chains/eip155-2203181.json +++ b/_data/chains/eip155-2203181.json @@ -1,13 +1,11 @@ { - "name": "PlatON Dev Testnet", + "name": "PlatON Dev Testnet Deprecated", "chain": "PlatON", "rpc": [ "https://devnetopenapi2.platon.network/rpc", "wss://devnetopenapi2.platon.network/ws" ], - "faucets": [ - "https://faucet.platon.network/faucet/?id=e5d32df10aee11ec911142010a667c03" - ], + "faucets": ["https://devnet2faucet.platon.network/faucet"], "nativeCurrency": { "name": "LAT", "symbol": "lat", @@ -17,7 +15,9 @@ "shortName": "platondev", "chainId": 2203181, "networkId": 1, + "slip44": 1, "icon": "platon", + "status": "deprecated", "explorers": [ { "name": "PlatON explorer", diff --git a/_data/chains/eip155-22040.json b/_data/chains/eip155-22040.json new file mode 100644 index 000000000000..9ae63a78433b --- /dev/null +++ b/_data/chains/eip155-22040.json @@ -0,0 +1,24 @@ +{ + "name": "AirDAO Testnet", + "chain": "ambnet-test", + "icon": "airdao", + "rpc": ["https://network.ambrosus-test.io"], + "faucets": [], + "nativeCurrency": { + "name": "Amber", + "symbol": "AMB", + "decimals": 18 + }, + "infoURL": "https://testnet.airdao.io", + "shortName": "airdao-test", + "chainId": 22040, + "networkId": 22040, + "slip44": 1, + "explorers": [ + { + "name": "AirDAO Network Explorer", + "url": "https://testnet.airdao.io/explorer", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-22052002.json b/_data/chains/eip155-22052002.json new file mode 100644 index 000000000000..c37d399e5b9c --- /dev/null +++ b/_data/chains/eip155-22052002.json @@ -0,0 +1,23 @@ +{ + "name": "Excelon Mainnet", + "chain": "XLON", + "icon": "xlon", + "rpc": ["https://edgewallet1.xlon.org/"], + "faucets": [], + "nativeCurrency": { + "name": "Excelon", + "symbol": "xlon", + "decimals": 18 + }, + "infoURL": "https://xlon.org", + "shortName": "xlon", + "chainId": 22052002, + "networkId": 22052002, + "explorers": [ + { + "name": "Excelon explorer", + "url": "https://explorer.excelon.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2206132.json b/_data/chains/eip155-2206132.json index 6aa4207dc57c..74454a83a1c1 100644 --- a/_data/chains/eip155-2206132.json +++ b/_data/chains/eip155-2206132.json @@ -5,9 +5,7 @@ "https://devnet2openapi.platon.network/rpc", "wss://devnet2openapi.platon.network/ws" ], - "faucets": [ - "https://devnet2faucet.platon.network/faucet" - ], + "faucets": ["https://devnet2faucet.platon.network/faucet"], "nativeCurrency": { "name": "LAT", "symbol": "lat", @@ -17,6 +15,7 @@ "shortName": "platondev2", "chainId": 2206132, "networkId": 1, + "slip44": 1, "icon": "platon", "explorers": [ { 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-221230.json b/_data/chains/eip155-221230.json new file mode 100644 index 000000000000..f51e4cc9f7f3 --- /dev/null +++ b/_data/chains/eip155-221230.json @@ -0,0 +1,25 @@ +{ + "name": "Reapchain Mainnet", + "chain": "REAP", + "rpc": ["https://eth.reapchain.org"], + "faucets": [], + "nativeCurrency": { + "name": "Reap", + "symbol": "REAP", + "decimals": 18 + }, + "features": [], + "infoURL": "https://reapchain.com", + "shortName": "reap", + "chainId": 221230, + "networkId": 221230, + "icon": "reapchain", + "explorers": [ + { + "name": "Reapchain Dashboard", + "url": "https://dashboard.reapchain.org", + "icon": "reapchain", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-221231.json b/_data/chains/eip155-221231.json new file mode 100644 index 000000000000..053688d3e042 --- /dev/null +++ b/_data/chains/eip155-221231.json @@ -0,0 +1,26 @@ +{ + "name": "Reapchain Testnet", + "chain": "REAP", + "rpc": ["https://test-eth.reapchain.org"], + "faucets": ["http://faucet.reapchain.com"], + "nativeCurrency": { + "name": "test-Reap", + "symbol": "tREAP", + "decimals": 18 + }, + "features": [], + "infoURL": "https://reapchain.com", + "shortName": "reap-testnet", + "chainId": 221231, + "networkId": 221231, + "slip44": 1, + "icon": "reapchain", + "explorers": [ + { + "name": "Reapchain Testnet Dashboard", + "url": "https://test-dashboard.reapchain.org", + "icon": "reapchain", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-2213.json b/_data/chains/eip155-2213.json index 4c34672d452c..97b517bb93eb 100644 --- a/_data/chains/eip155-2213.json +++ b/_data/chains/eip155-2213.json @@ -1,10 +1,7 @@ { "name": "Evanesco Mainnet", "chain": "EVA", - "network": "mainnet", - "rpc": [ - "https://seed4.evanesco.org:8546" - ], + "rpc": ["https://seed4.evanesco.org:8546"], "faucets": [], "nativeCurrency": { "name": "EVA", @@ -23,4 +20,4 @@ "standard": "none" } ] -} \ No newline at end of file +} diff --git a/_data/chains/eip155-222.json b/_data/chains/eip155-222.json index e142a8c0b6e2..cb397fa48482 100644 --- a/_data/chains/eip155-222.json +++ b/_data/chains/eip155-222.json @@ -1,9 +1,7 @@ { "name": "Permission", "chain": "ASK", - "rpc": [ - "https://blockchain-api-mainnet.permission.io/rpc" - ], + "rpc": ["https://blockchain-api-mainnet.permission.io/rpc"], "faucets": [], "nativeCurrency": { "name": "ASK", @@ -14,5 +12,6 @@ "shortName": "ASK", "chainId": 222, "networkId": 2221, - "slip44": 2221 + "slip44": 2221, + "status": "deprecated" } diff --git a/_data/chains/eip155-222000222.json b/_data/chains/eip155-222000222.json new file mode 100644 index 000000000000..57d70b185eec --- /dev/null +++ b/_data/chains/eip155-222000222.json @@ -0,0 +1,33 @@ +{ + "name": "Kanazawa", + "title": "Meld Testnet Kanazawa", + "chain": "Kanazawa", + "rpc": ["https://testnet-rpc.meld.com"], + "faucets": [], + "features": [], + "nativeCurrency": { + "name": "gMeld", + "symbol": "gMELD", + "decimals": 18 + }, + "icon": "meld", + "infoURL": "https://meld.com", + "shortName": "kanazawa", + "chainId": 222000222, + "networkId": 222000222, + "slip44": 1, + "explorers": [ + { + "name": "explorer", + "url": "https://testnet.meldscan.io", + "icon": "meld", + "standard": "EIP3091" + }, + { + "name": "explorer", + "url": "https://subnets-test.avax.network/meld", + "icon": "meld", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2221.json b/_data/chains/eip155-2221.json index ee1fbd873a42..d49961ae39dc 100644 --- a/_data/chains/eip155-2221.json +++ b/_data/chains/eip155-2221.json @@ -1,8 +1,13 @@ { - "name": "Kava EVM Testnet", + "name": "Kava Testnet", "chain": "KAVA", - "network": "testnet", - "rpc": ["https://evm.evm-alpha.kava.io", "wss://evm-ws.evm-alpha.kava.io"], + "rpc": [ + "https://evm.testnet.kava.io", + "https://kava-evm-testnet.rpc.thirdweb.com", + "wss://wevm.testnet.kava.io", + "https://kava-testnet.drpc.org", + "wss://kava-testnet.drpc.org" + ], "faucets": ["https://faucet.kava.io"], "nativeCurrency": { "name": "TKava", @@ -17,7 +22,7 @@ "explorers": [ { "name": "Kava Testnet Explorer", - "url": "https://explorer.evm-alpha.kava.io", + "url": "http://testnet.kavascan.com", "standard": "EIP3091", "icon": "kava" } diff --git a/_data/chains/eip155-2222.json b/_data/chains/eip155-2222.json index 7e00ba16d33d..354cb5d5c45a 100644 --- a/_data/chains/eip155-2222.json +++ b/_data/chains/eip155-2222.json @@ -1,12 +1,18 @@ { - "name": "Kava EVM", + "name": "Kava", "chain": "KAVA", - "network": "mainnet", "rpc": [ "https://evm.kava.io", - "https://evm2.kava.io", + "https://kava-rpc.gateway.pokt.network", + "https://kava-evm.rpc.thirdweb.com", "wss://wevm.kava.io", - "wss://wevm2.kava.io" + "https://kava-evm-rpc.publicnode.com", + "wss://kava-evm-rpc.publicnode.com", + "https://evm.kava-rpc.com", + "https://rpc.ankr.com/kava_evm", + "wss://wevm.kava-rpc.com", + "https://kava.drpc.org", + "wss://kava.drpc.org" ], "faucets": [], "nativeCurrency": { @@ -22,7 +28,7 @@ "explorers": [ { "name": "Kava EVM Explorer", - "url": "https://explorer.kava.io", + "url": "https://kavascan.com", "standard": "EIP3091", "icon": "kava" } diff --git a/_data/chains/eip155-22222.json b/_data/chains/eip155-22222.json new file mode 100644 index 000000000000..96ce0e0552e0 --- /dev/null +++ b/_data/chains/eip155-22222.json @@ -0,0 +1,24 @@ +{ + "name": "Nautilus Mainnet", + "chain": "ETH", + "icon": "nautilus", + "rpc": ["https://api.nautilus.nautchain.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Zebec", + "symbol": "ZBC", + "decimals": 18 + }, + "infoURL": "https://docs.nautchain.xyz", + "shortName": "NAUTCHAIN", + "chainId": 22222, + "networkId": 22222, + "explorers": [ + { + "name": "Nautscan", + "url": "https://nautscan.com", + "standard": "EIP3091", + "icon": "nautilus" + } + ] +} diff --git a/_data/chains/eip155-222222.json b/_data/chains/eip155-222222.json new file mode 100644 index 000000000000..749b59d275b9 --- /dev/null +++ b/_data/chains/eip155-222222.json @@ -0,0 +1,46 @@ +{ + "name": "Hydration", + "chain": "HDX", + "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://hydration.net/", + "shortName": "hdx", + "chainId": 222222, + "networkId": 222222, + "icon": "hydration", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.evm.hydration.cloud", + "standard": "EIP3091" + } + ] +} 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-222555.json b/_data/chains/eip155-222555.json new file mode 100644 index 000000000000..0f11a1439bd9 --- /dev/null +++ b/_data/chains/eip155-222555.json @@ -0,0 +1,25 @@ +{ + "name": "DeepL Mainnet", + "chain": "DEEPL", + "rpc": ["https://rpc.deeplnetwork.org"], + "faucets": [], + "nativeCurrency": { + "name": "DeepL", + "symbol": "DEEPL", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://deeplnetwork.org", + "shortName": "deepl", + "chainId": 222555, + "networkId": 222555, + "icon": "deepl", + "explorers": [ + { + "name": "DeepL Mainnet Explorer", + "url": "https://scan.deeplnetwork.org", + "icon": "deepl", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-222666.json b/_data/chains/eip155-222666.json new file mode 100644 index 000000000000..33969dd890e4 --- /dev/null +++ b/_data/chains/eip155-222666.json @@ -0,0 +1,25 @@ +{ + "name": "DeepL Testnet", + "chain": "DEEPL", + "rpc": ["https://testnet.deeplnetwork.org"], + "faucets": ["https://faucet.deeplnetwork.org"], + "nativeCurrency": { + "name": "DeepL", + "symbol": "DEEPL", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://deeplnetwork.org", + "shortName": "tdeepl", + "chainId": 222666, + "networkId": 222666, + "icon": "deepl", + "explorers": [ + { + "name": "DeepL Testnet Explorer", + "url": "https://testnet-scan.deeplnetwork.org", + "icon": "deepl", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-223.json b/_data/chains/eip155-223.json new file mode 100644 index 000000000000..114ac39415e8 --- /dev/null +++ b/_data/chains/eip155-223.json @@ -0,0 +1,36 @@ +{ + "name": "B2 Mainnet", + "title": "B2 Mainnet", + "chain": "B2", + "rpc": [ + "https://mainnet.b2-rpc.com", + "https://rpc.bsquared.network", + "https://b2-mainnet.alt.technology", + "https://b2-mainnet-public.s.chainbase.com", + "https://rpc.ankr.com/b2" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://www.bsquared.network", + "shortName": "B2-mainnet", + "chainId": 223, + "networkId": 223, + "icon": "bsquare", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-213", + "bridges": [{ "url": "https://www.bsquared.network/bridge" }] + } +} diff --git a/_data/chains/eip155-22324.json b/_data/chains/eip155-22324.json new file mode 100644 index 000000000000..d0433c66687d --- /dev/null +++ b/_data/chains/eip155-22324.json @@ -0,0 +1,22 @@ +{ + "name": "GoldXChain Testnet", + "chain": "GoldXTestnet", + "rpc": ["https://testnet-rpc.goldxchain.io"], + "faucets": ["https://faucet.goldxchain.io"], + "nativeCurrency": { + "name": "GoldX", + "symbol": "GOLDX", + "decimals": 18 + }, + "infoURL": "https://goldxchain.io", + "shortName": "goldx-testnet", + "chainId": 22324, + "networkId": 22324, + "explorers": [ + { + "name": "GoldXChain Testnet Explorer", + "url": "https://testnet-explorer.goldxchain.io", + "standard": "EIP3091" + } + ] +} 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-224.json b/_data/chains/eip155-224.json new file mode 100644 index 000000000000..8298e1774cd8 --- /dev/null +++ b/_data/chains/eip155-224.json @@ -0,0 +1,23 @@ +{ + "name": "Viridis Testnet", + "chain": "VRD", + "icon": "viridis", + "rpc": ["https://testnet-rpc.vrd.network"], + "faucets": ["https://faucet.vrd.network"], + "nativeCurrency": { + "name": "Viridis Token", + "symbol": "VRD", + "decimals": 18 + }, + "infoURL": "https://viridis.network", + "shortName": "VRD-Testnet", + "chainId": 224, + "networkId": 224, + "explorers": [ + { + "name": "Viridis Testnet", + "url": "https://testnet.vrd.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2241.json b/_data/chains/eip155-2241.json new file mode 100644 index 000000000000..500a99ab77df --- /dev/null +++ b/_data/chains/eip155-2241.json @@ -0,0 +1,28 @@ +{ + "name": "Krest Network", + "chain": "Krest", + "icon": "krest", + "rpc": ["https://erpc-krest.peaq.network", "https://krest.unitedbloc.com"], + "faucets": [], + "nativeCurrency": { + "name": "Krest", + "symbol": "KRST", + "decimals": 18 + }, + "infoURL": "https://www.peaq.network", + "shortName": "KRST", + "chainId": 2241, + "networkId": 2241, + "explorers": [ + { + "name": "Polkadot.js", + "url": "https://polkadot.js.org/apps/?rpc=wss://wss-krest.peaq.network#/explorer", + "standard": "none" + }, + { + "name": "Subscan", + "url": "https://krest.subscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-224168.json b/_data/chains/eip155-224168.json new file mode 100644 index 000000000000..aaeae186fc5f --- /dev/null +++ b/_data/chains/eip155-224168.json @@ -0,0 +1,23 @@ +{ + "name": "Taf ECO Chain Mainnet", + "chain": "Taf ECO Chain", + "icon": "taf", + "rpc": ["https://mainnet.tafchain.com/v1"], + "faucets": [], + "nativeCurrency": { + "name": "Taf ECO Chain Mainnet", + "symbol": "TAFECO", + "decimals": 18 + }, + "infoURL": "https://www.tafchain.com", + "shortName": "TAFECO", + "chainId": 224168, + "networkId": 224168, + "explorers": [ + { + "name": "Taf ECO Chain Mainnet", + "url": "https://ecoscan.tafchain.com", + "standard": "EIP3091" + } + ] +} 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-224422.json b/_data/chains/eip155-224422.json new file mode 100644 index 000000000000..ef89ddde18e9 --- /dev/null +++ b/_data/chains/eip155-224422.json @@ -0,0 +1,25 @@ +{ + "name": "CONET Sebolia Testnet", + "chain": "CONET", + "rpc": ["https://rpc1.conet.network"], + "faucets": [], + "nativeCurrency": { + "name": "CONET Sebolia", + "symbol": "CONET", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://conet.network", + "shortName": "conet-sebolia", + "chainId": 224422, + "networkId": 224422, + "slip44": 1, + "icon": "conet", + "explorers": [ + { + "name": "CONET Scan", + "url": "https://scan.conet.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-224433.json b/_data/chains/eip155-224433.json new file mode 100644 index 000000000000..7375726e1ecd --- /dev/null +++ b/_data/chains/eip155-224433.json @@ -0,0 +1,25 @@ +{ + "name": "CONET Cancun", + "chain": "CONET Cancun", + "rpc": ["https://rpc.conet.network"], + "faucets": [], + "nativeCurrency": { + "name": "CONET Cancun", + "symbol": "CONET", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://conet.network", + "shortName": "conet-cancun", + "chainId": 224433, + "networkId": 224433, + "slip44": 2147708081, + "icon": "conet", + "explorers": [ + { + "name": "CONET Cancun Scan", + "url": "https://cancun.conet.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-225.json b/_data/chains/eip155-225.json index ca9055df5d9d..58f36b96e06a 100644 --- a/_data/chains/eip155-225.json +++ b/_data/chains/eip155-225.json @@ -1,10 +1,8 @@ { "name": "LACHAIN Mainnet", "chain": "LA", - "icon": "lachain", - "rpc": [ - "https://rpc-mainnet.lachain.io" - ], + "icon": "lachain-io", + "rpc": ["https://rpc-mainnet.lachain.io"], "faucets": [], "nativeCurrency": { "name": "LA", @@ -15,9 +13,11 @@ "shortName": "LA", "chainId": 225, "networkId": 225, - "explorers": [{ - "name": "blockscout", - "url": "https://scan.lachain.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.lachain.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-226.json b/_data/chains/eip155-226.json index 215729d4d6c1..3a795418e332 100644 --- a/_data/chains/eip155-226.json +++ b/_data/chains/eip155-226.json @@ -1,10 +1,8 @@ { "name": "LACHAIN Testnet", "chain": "TLA", - "icon": "lachain", - "rpc": [ - "https://rpc-testnet.lachain.io" - ], + "icon": "lachain-io", + "rpc": ["https://rpc-testnet.lachain.io"], "faucets": [], "nativeCurrency": { "name": "TLA", @@ -15,9 +13,12 @@ "shortName": "TLA", "chainId": 226, "networkId": 226, - "explorers": [{ - "name": "blockscout", - "url": "https://scan-test.lachain.io", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://scan-test.lachain.io", + "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-22776.json b/_data/chains/eip155-22776.json new file mode 100644 index 000000000000..49846c16c097 --- /dev/null +++ b/_data/chains/eip155-22776.json @@ -0,0 +1,24 @@ +{ + "name": "MAP Protocol", + "chain": "MAPO", + "icon": "map", + "rpc": ["https://rpc.maplabs.io"], + "faucets": [], + "nativeCurrency": { + "name": "MAPO", + "symbol": "MAPO", + "decimals": 18 + }, + "infoURL": "https://mapprotocol.io/", + "shortName": "mapo", + "chainId": 22776, + "networkId": 22776, + "slip44": 60, + "explorers": [ + { + "name": "maposcan", + "url": "https://maposcan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-228.json b/_data/chains/eip155-228.json new file mode 100644 index 000000000000..a4070939ab2e --- /dev/null +++ b/_data/chains/eip155-228.json @@ -0,0 +1,19 @@ +{ + "name": "Mind Network Mainnet", + "chain": "FHE", + "rpc": [ + "https://rpc-mainnet.mindnetwork.xyz", + "wss://rpc-mainnet.mindnetwork.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://mindnetwork.xyz", + "shortName": "fhe", + "chainId": 228, + "networkId": 228 +} 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-23.json b/_data/chains/eip155-23.json index 2f2337626101..37f2fa00ccd6 100644 --- a/_data/chains/eip155-23.json +++ b/_data/chains/eip155-23.json @@ -11,5 +11,6 @@ "infoURL": "https://elaeth.io/", "shortName": "eladidt", "chainId": 23, - "networkId": 23 + "networkId": 23, + "slip44": 1 } diff --git a/_data/chains/eip155-230.json b/_data/chains/eip155-230.json new file mode 100644 index 000000000000..c1651a452979 --- /dev/null +++ b/_data/chains/eip155-230.json @@ -0,0 +1,22 @@ +{ + "name": "SwapDEX", + "chain": "SDX", + "rpc": ["https://rpc.swapdex.network", "wss://ss.swapdex.network"], + "faucets": [], + "nativeCurrency": { + "name": "SwapDEX", + "symbol": "SDX", + "decimals": 18 + }, + "infoURL": "https://swapdex.network/", + "shortName": "SDX", + "chainId": 230, + "networkId": 230, + "explorers": [ + { + "name": "SwapDEX", + "url": "https://evm.swapdex.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-2300.json b/_data/chains/eip155-2300.json new file mode 100644 index 000000000000..be8fcd9ff096 --- /dev/null +++ b/_data/chains/eip155-2300.json @@ -0,0 +1,24 @@ +{ + "name": "BOMB Chain", + "chain": "BOMB", + "rpc": ["https://rpc.bombchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "BOMB Token", + "symbol": "BOMB", + "decimals": 18 + }, + "infoURL": "https://www.bombchain.com", + "shortName": "bomb", + "chainId": 2300, + "networkId": 2300, + "icon": "bomb", + "explorers": [ + { + "name": "bombscan", + "icon": "bomb", + "url": "https://bombscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-23006.json b/_data/chains/eip155-23006.json new file mode 100644 index 000000000000..b132b9a25ed1 --- /dev/null +++ b/_data/chains/eip155-23006.json @@ -0,0 +1,24 @@ +{ + "name": "Antofy Testnet", + "chain": "ABN", + "icon": "antofy", + "rpc": ["https://testnet-rpc.antofy.io"], + "faucets": ["https://faucet.antofy.io"], + "nativeCurrency": { + "name": "Antofy", + "symbol": "ABN", + "decimals": 18 + }, + "infoURL": "https://antofy.io", + "shortName": "ABNt", + "chainId": 23006, + "networkId": 23006, + "slip44": 1, + "explorers": [ + { + "name": "Antofy Testnet", + "url": "https://test.antofyscan.com", + "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-230315.json b/_data/chains/eip155-230315.json new file mode 100644 index 000000000000..19ab3e696f15 --- /dev/null +++ b/_data/chains/eip155-230315.json @@ -0,0 +1,24 @@ +{ + "name": "HashKey Chain Testnet(discard)", + "chain": "HashKey", + "rpc": ["https://testnet.hashkeychain/rpc"], + "faucets": ["https://testnet.hashkeychain/faucet"], + "nativeCurrency": { + "name": "HashKey Token", + "symbol": "tHSK", + "decimals": 18 + }, + "infoURL": "https://www.hashkey.com", + "shortName": "hsktest", + "chainId": 230315, + "networkId": 230315, + "slip44": 1, + "icon": "hsk", + "explorers": [ + { + "name": "HashKey Chain Testnet Explorer", + "url": "https://testnet.hashkeyscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-2306.json b/_data/chains/eip155-2306.json new file mode 100644 index 000000000000..251708cffbea --- /dev/null +++ b/_data/chains/eip155-2306.json @@ -0,0 +1,15 @@ +{ + "name": "Ebro Network", + "chain": "ebro", + "rpc": ["https://greendinoswap.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ebro", + "symbol": "ebro", + "decimals": 18 + }, + "infoURL": "https://www.ebrochain.com", + "shortName": "ebro", + "chainId": 2306, + "networkId": 2306 +} diff --git a/_data/chains/eip155-2309.json b/_data/chains/eip155-2309.json new file mode 100644 index 000000000000..c7d358f5b453 --- /dev/null +++ b/_data/chains/eip155-2309.json @@ -0,0 +1,17 @@ +{ + "name": "Arevia", + "chain": "Arevia", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Arev", + "symbol": "ARÉV", + "decimals": 18 + }, + "infoURL": "", + "shortName": "arevia", + "chainId": 2309, + "networkId": 2309, + "explorers": [], + "status": "incubating" +} 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-23118.json b/_data/chains/eip155-23118.json new file mode 100644 index 000000000000..842f46934b42 --- /dev/null +++ b/_data/chains/eip155-23118.json @@ -0,0 +1,24 @@ +{ + "name": "Opside Testnet", + "chain": "Opside", + "rpc": ["https://testrpc.opside.network"], + "faucets": ["https://faucet.opside.network"], + "nativeCurrency": { + "name": "IDE", + "symbol": "IDE", + "decimals": 18 + }, + "infoURL": "https://opside.network", + "shortName": "opside", + "chainId": 23118, + "networkId": 23118, + "slip44": 1, + "icon": "opside", + "explorers": [ + { + "name": "opsideInfo", + "url": "https://opside.info", + "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-2323.json b/_data/chains/eip155-2323.json new file mode 100644 index 000000000000..99bf3d42bddc --- /dev/null +++ b/_data/chains/eip155-2323.json @@ -0,0 +1,31 @@ +{ + "name": "SOMA Network Testnet", + "chain": "SOMA", + "rpc": [ + "https://data-testnet-v1.somanetwork.io/", + "https://testnet-au-server-2.somanetwork.io", + "https://testnet-au-server-1.somanetwork.io", + "https://testnet-sg-server-1.somanetwork.io", + "https://testnet-sg-server-2.somanetwork.io" + ], + "faucets": ["https://faucet.somanetwork.io"], + "nativeCurrency": { + "name": "SMA", + "symbol": "tSMA", + "decimals": 18 + }, + "infoURL": "https://somanetwork.io", + "shortName": "sma", + "chainId": 2323, + "networkId": 2323, + "slip44": 1, + "icon": "soma", + "explorers": [ + { + "name": "SOMA Testnet Explorer", + "icon": "soma", + "url": "https://testnet.somascan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-23232.json b/_data/chains/eip155-23232.json new file mode 100644 index 000000000000..21872a9ad376 --- /dev/null +++ b/_data/chains/eip155-23232.json @@ -0,0 +1,26 @@ +{ + "name": "Gotas Social", + "chain": "Gotas", + "icon": "gotas", + "rpc": [ + "https://services.tanssi-mainnet.network/tanssi-2006", + "wss://services.tanssi-mainnet.network/tanssi-2006" + ], + "faucets": [], + "nativeCurrency": { + "name": "GOTAS", + "symbol": "GOTAS", + "decimals": 18 + }, + "infoURL": "https://gotas.com/", + "shortName": "gotas", + "chainId": 23232, + "networkId": 23232, + "explorers": [ + { + "name": "Tanssi EVM Basic Explorer", + "url": "https://evmexplorer.tanssi-chains.network/?rpcUrl=https://services.tanssi-mainnet.network/tanssi-2006", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-23294.json b/_data/chains/eip155-23294.json new file mode 100644 index 000000000000..e0bf6827569e --- /dev/null +++ b/_data/chains/eip155-23294.json @@ -0,0 +1,23 @@ +{ + "name": "Oasis Sapphire", + "chain": "Sapphire", + "icon": "oasis", + "rpc": ["https://sapphire.oasis.io", "wss://sapphire.oasis.io/ws"], + "faucets": [], + "nativeCurrency": { + "name": "Sapphire Rose", + "symbol": "ROSE", + "decimals": 18 + }, + "infoURL": "https://docs.oasis.io/dapp/sapphire", + "shortName": "sapphire", + "chainId": 23294, + "networkId": 23294, + "explorers": [ + { + "name": "Oasis Sapphire Explorer", + "url": "https://explorer.oasis.io/mainnet/sapphire", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-23295.json b/_data/chains/eip155-23295.json new file mode 100644 index 000000000000..7791cc125914 --- /dev/null +++ b/_data/chains/eip155-23295.json @@ -0,0 +1,27 @@ +{ + "name": "Oasis Sapphire Testnet", + "chain": "Sapphire", + "icon": "oasis", + "rpc": [ + "https://testnet.sapphire.oasis.io", + "wss://testnet.sapphire.oasis.io/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sapphire Test Rose", + "symbol": "TEST", + "decimals": 18 + }, + "infoURL": "https://docs.oasis.io/dapp/sapphire", + "shortName": "sapphire-testnet", + "chainId": 23295, + "networkId": 23295, + "slip44": 1, + "explorers": [ + { + "name": "Oasis Sapphire Testnet Explorer", + "url": "https://explorer.oasis.io/testnet/sapphire", + "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-2330.json b/_data/chains/eip155-2330.json new file mode 100644 index 000000000000..2d4fed666c8e --- /dev/null +++ b/_data/chains/eip155-2330.json @@ -0,0 +1,25 @@ +{ + "name": "Altcoinchain", + "chain": "mainnet", + "rpc": ["https://rpc0.altcoinchain.org/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Altcoin", + "symbol": "ALT", + "decimals": 18 + }, + "infoURL": "https://altcoinchain.org", + "shortName": "alt", + "chainId": 2330, + "networkId": 2330, + "icon": "altcoinchain", + "status": "active", + "explorers": [ + { + "name": "expedition", + "url": "http://expedition.altcoinchain.org", + "icon": "altcoinchain", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-2331.json b/_data/chains/eip155-2331.json new file mode 100644 index 000000000000..d8aae8af683a --- /dev/null +++ b/_data/chains/eip155-2331.json @@ -0,0 +1,28 @@ +{ + "name": "RSS3 VSL Sepolia Testnet", + "chain": "RSS3", + "rpc": ["https://rpc.testnet.rss3.io"], + "faucets": [], + "nativeCurrency": { + "name": "RSS3", + "symbol": "RSS3", + "decimals": 18 + }, + "infoURL": "https://rss3.io", + "shortName": "rss3-testnet", + "chainId": 2331, + "networkId": 2331, + "icon": "rss3-testnet", + "explorers": [ + { + "name": "RSS3 VSL Sepolia Testnet Scan", + "url": "https://scan.testnet.rss3.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://explorer.testnet.rss3.io/bridge" }] + } +} diff --git a/_data/chains/eip155-2332.json b/_data/chains/eip155-2332.json new file mode 100644 index 000000000000..7383b6a488b9 --- /dev/null +++ b/_data/chains/eip155-2332.json @@ -0,0 +1,30 @@ +{ + "name": "SOMA Network Mainnet", + "chain": "SOMA", + "rpc": [ + "https://data-mainnet-v1.somanetwork.io/", + "https://id-mainnet.somanetwork.io", + "https://hk-mainnet.somanetwork.io", + "https://sg-mainnet.somanetwork.io" + ], + "faucets": ["https://airdrop.somanetwork.io"], + "nativeCurrency": { + "name": "Soma Native Token", + "symbol": "SMA", + "decimals": 18 + }, + "infoURL": "https://somanetwork.io", + "shortName": "smam", + "chainId": 2332, + "networkId": 2332, + "icon": "soma", + "status": "incubating", + "explorers": [ + { + "name": "SOMA Explorer Mainnet", + "icon": "soma", + "url": "https://somascan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-234.json b/_data/chains/eip155-234.json new file mode 100644 index 000000000000..2eecb12e20a9 --- /dev/null +++ b/_data/chains/eip155-234.json @@ -0,0 +1,24 @@ +{ + "name": "ProtoJumbo Testnet", + "chain": "Jumbo", + "rpc": ["https://testnode.jumbochain.org"], + "faucets": ["https://protojumbo.jumbochain.org/faucet-smart"], + "nativeCurrency": { + "name": "JNFTC", + "symbol": "JNFTC", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://jumbochain.org", + "shortName": "ProtoJumbo", + "chainId": 234, + "networkId": 234, + "slip44": 1, + "explorers": [ + { + "name": "ProtoJumbo", + "url": "https://protojumbo.jumbochain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2340.json b/_data/chains/eip155-2340.json new file mode 100644 index 000000000000..6430e5ae0b94 --- /dev/null +++ b/_data/chains/eip155-2340.json @@ -0,0 +1,38 @@ +{ + "name": "Atleta Olympia", + "chain": "Atleta Testnet Olympia", + "rpc": [ + "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://app-olympia.atleta.network/faucet"], + "nativeCurrency": { + "name": "Atla Olympia", + "symbol": "ATLA", + "decimals": 18 + }, + "infoURL": "https://atleta.network", + "shortName": "olym", + "chainId": 2340, + "networkId": 2340, + "slip44": 1, + "icon": "atleta", + "explorers": [ + { + "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-2342.json b/_data/chains/eip155-2342.json new file mode 100644 index 000000000000..ebefa6ffb2cd --- /dev/null +++ b/_data/chains/eip155-2342.json @@ -0,0 +1,23 @@ +{ + "name": "Omnia Chain", + "chain": "OMNIA", + "icon": "omnia", + "rpc": ["https://rpc.omniaverse.io"], + "faucets": ["https://www.omniaverse.io"], + "nativeCurrency": { + "name": "Omnia", + "symbol": "OMNIA", + "decimals": 18 + }, + "infoURL": "https://www.omniaverse.io", + "shortName": "omnia", + "chainId": 2342, + "networkId": 2342, + "explorers": [ + { + "name": "OmniaVerse Explorer", + "url": "https://scan.omniaverse.io", + "standard": "EIP3091" + } + ] +} 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-23451.json b/_data/chains/eip155-23451.json new file mode 100644 index 000000000000..588432422a51 --- /dev/null +++ b/_data/chains/eip155-23451.json @@ -0,0 +1,24 @@ +{ + "name": "DreyerX Mainnet", + "chain": "DreyerX", + "rpc": ["https://rpc.dreyerx.com"], + "faucets": [], + "nativeCurrency": { + "name": "DreyerX", + "symbol": "DRX", + "decimals": 18 + }, + "infoURL": "https://dreyerx.com", + "shortName": "dreyerx", + "chainId": 23451, + "networkId": 23451, + "icon": "dreyerx", + "explorers": [ + { + "name": "drxscan", + "url": "https://scan.dreyerx.com", + "icon": "dreyerx", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-23452.json b/_data/chains/eip155-23452.json new file mode 100644 index 000000000000..0181869a7a76 --- /dev/null +++ b/_data/chains/eip155-23452.json @@ -0,0 +1,24 @@ +{ + "name": "DreyerX Testnet", + "chain": "DreyerX", + "rpc": ["https://testnet-rpc.dreyerx.com"], + "faucets": [], + "nativeCurrency": { + "name": "DreyerX", + "symbol": "DRX", + "decimals": 18 + }, + "infoURL": "https://dreyerx.com", + "shortName": "dreyerx-testnet", + "chainId": 23452, + "networkId": 23452, + "icon": "dreyerx", + "explorers": [ + { + "name": "drxscan", + "url": "https://testnet-scan.dreyerx.com", + "icon": "dreyerx", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-234666.json b/_data/chains/eip155-234666.json index 2a1cc4e2df05..56e3627d9e99 100644 --- a/_data/chains/eip155-234666.json +++ b/_data/chains/eip155-234666.json @@ -1,12 +1,8 @@ { "name": "Haymo Testnet", "chain": "tHYM", - "network": "testnet", - "rpc": [ - "https://testnet1.haymo.network" - ], - "faucets": [ - ], + "rpc": ["https://testnet1.haymo.network"], + "faucets": [], "nativeCurrency": { "name": "HAYMO", "symbol": "HYM", @@ -15,5 +11,6 @@ "infoURL": "https://haymoswap.web.app/", "shortName": "hym", "chainId": 234666, - "networkId": 234666 + "networkId": 234666, + "slip44": 1 } diff --git a/_data/chains/eip155-2355.json b/_data/chains/eip155-2355.json new file mode 100644 index 000000000000..f025c51439b8 --- /dev/null +++ b/_data/chains/eip155-2355.json @@ -0,0 +1,36 @@ +{ + "name": "Silicon zkEVM", + "title": "Silicon zkEVM Mainnet", + "chain": "Silicon", + "rpc": [ + "https://rpc.silicon.network", + "https://silicon-mainnet.nodeinfra.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.silicon.network", + "shortName": "silicon-zk", + "chainId": 2355, + "networkId": 2355, + "icon": "silicon", + "explorers": [ + { + "name": "siliconscope", + "url": "https://scope.silicon.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { "url": "https://bridge.silicon.network" }, + { "url": "https://bridge.orbitchain.io" } + ] + }, + "status": "active" +} diff --git a/_data/chains/eip155-2357.json b/_data/chains/eip155-2357.json new file mode 100644 index 000000000000..f52b7baed635 --- /dev/null +++ b/_data/chains/eip155-2357.json @@ -0,0 +1,32 @@ +{ + "name": "(deprecated) Kroma Sepolia", + "title": "(deprecated) Kroma Testnet Sepolia", + "chainId": 2357, + "shortName": "deprecated-kroma-sepolia", + "chain": "ETH", + "networkId": 2357, + "slip44": 1, + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": ["https://api.sepolia-deprecated.kroma.network"], + "faucets": [], + "infoURL": "https://kroma.network", + "icon": "kroma", + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.sepolia-deprecated.kroma.network", + "icon": "kroma", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://kroma.network/bridge" }] + }, + "status": "deprecated" +} 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-2358.json b/_data/chains/eip155-2358.json new file mode 100644 index 000000000000..98452428f3ce --- /dev/null +++ b/_data/chains/eip155-2358.json @@ -0,0 +1,31 @@ +{ + "name": "Kroma Sepolia", + "title": "Kroma Testnet Sepolia", + "chainId": 2358, + "shortName": "kroma-sepolia", + "chain": "ETH", + "networkId": 2358, + "slip44": 1, + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": ["https://api.sepolia.kroma.network"], + "faucets": [], + "infoURL": "https://kroma.network", + "icon": "kroma", + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.sepolia.kroma.network", + "icon": "kroma", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://kroma.network/bridge" }] + } +} diff --git a/_data/chains/eip155-236.json b/_data/chains/eip155-236.json new file mode 100644 index 000000000000..045981f4095b --- /dev/null +++ b/_data/chains/eip155-236.json @@ -0,0 +1,25 @@ +{ + "name": "Deamchain Testnet", + "chain": "Deamchain", + "icon": "deam", + "rpc": ["https://testnet.deamchain.com"], + "faucets": ["https://faucet.deamchain.com"], + "nativeCurrency": { + "name": "Deamchain Native Token", + "symbol": "DEAM", + "decimals": 18 + }, + "infoURL": "https://deamchain.com", + "shortName": "deamtest", + "chainId": 236, + "networkId": 236, + "slip44": 1, + "explorers": [ + { + "name": "Deamchain Testnet Explorer", + "url": "https://testnet-scan.deamchain.com", + "standard": "EIP3091", + "icon": "deam" + } + ] +} diff --git a/_data/chains/eip155-2366.json b/_data/chains/eip155-2366.json new file mode 100644 index 000000000000..d418e07e52bb --- /dev/null +++ b/_data/chains/eip155-2366.json @@ -0,0 +1,24 @@ +{ + "name": "KiteAI", + "chain": "KiteAI", + "icon": "kite", + "rpc": ["https://rpc.gokite.ai"], + "faucets": [], + "nativeCurrency": { + "name": "Kite", + "symbol": "KITE", + "decimals": 18 + }, + "infoURL": "https://gokite.ai/", + "shortName": "KiteAI", + "chainId": 2366, + "networkId": 2366, + "slip44": 1, + "explorers": [ + { + "name": "Kitescan", + "url": "https://kitescan.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2368.json b/_data/chains/eip155-2368.json new file mode 100644 index 000000000000..90efea4c6758 --- /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": "KiteAITestnet", + "chainId": 2368, + "networkId": 1, + "slip44": 1, + "explorers": [ + { + "name": "Kitescan", + "url": "https://testnet.kitescan.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2370.json b/_data/chains/eip155-2370.json new file mode 100644 index 000000000000..3cad3c06cafe --- /dev/null +++ b/_data/chains/eip155-2370.json @@ -0,0 +1,23 @@ +{ + "name": "Nexis Network Testnet", + "chain": "Nexis Network", + "icon": "nexis", + "rpc": ["https://evm-testnet.nexis.network"], + "faucets": ["https://evm-faucet.nexis.network"], + "nativeCurrency": { + "name": "Nexis", + "symbol": "NZT", + "decimals": 18 + }, + "infoURL": "https://nexis.network/", + "shortName": "nzt", + "chainId": 2370, + "networkId": 2370, + "explorers": [ + { + "name": "Nexis Testnet Explorer", + "url": "https://evm-testnet.nexscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-238.json b/_data/chains/eip155-238.json new file mode 100644 index 000000000000..04b965f7d6fa --- /dev/null +++ b/_data/chains/eip155-238.json @@ -0,0 +1,23 @@ +{ + "name": "Blast Mainnet", + "chain": "ETH", + "icon": "blastIcon", + "rpc": ["https://zkevmrpc.blastchain.org"], + "faucets": [], + "nativeCurrency": { + "name": "One World Chain", + "symbol": "OWCT", + "decimals": 18 + }, + "infoURL": "https://docs.blastchain.org", + "shortName": "blast", + "chainId": 238, + "networkId": 238, + "explorers": [ + { + "name": "Blast Mainnet", + "url": "https://blastchain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-23888.json b/_data/chains/eip155-23888.json new file mode 100644 index 000000000000..fafe542def0b --- /dev/null +++ b/_data/chains/eip155-23888.json @@ -0,0 +1,23 @@ +{ + "name": "Blast Testnet", + "chain": "ETH", + "icon": "blastIcon", + "rpc": ["http://testnet-rpc.blastblockchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.blastblockchain.com", + "shortName": "blastT", + "chainId": 23888, + "networkId": 23888, + "explorers": [ + { + "name": "Blast Testnet", + "url": "http://testnet-explorer.blastblockchain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-239.json b/_data/chains/eip155-239.json index aa936059721b..9ad09e98211c 100644 --- a/_data/chains/eip155-239.json +++ b/_data/chains/eip155-239.json @@ -1,26 +1,34 @@ { - "name": "Aitd Testnet", - "chain": "AITD", - "icon": "aitd", + "name": "TAC Mainnet", + "title": "TAC Mainnet", + "chain": "TAC", + "icon": "tac", "rpc": [ - "http://http-testnet.aitd.io" - ], - "faucets": [ - "https://aitd-faucet-pre.aitdcoin.com/" + "https://rpc.tac.build", + "https://rpc.ankr.com/tac", + "https://ws.rpc.tac.build" ], + "faucets": [], "nativeCurrency": { - "name": "AITD Testnet", - "symbol": "AITD", + "name": "TAC", + "symbol": "TAC", "decimals": 18 }, - "infoURL": "https://www.aitd.io/", - "shortName": "AITD", + "infoURL": "https://tac.build/", + "shortName": "tacchain_239-1", + "slip44": 60, "chainId": 239, "networkId": 239, - - "explorers": [{ - "name": "AITD Chain Explorer", - "url": "https://aitd-explorer-pre.aitdcoin.com", - "standard": "EIP3091" - }] + "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-2399.json b/_data/chains/eip155-2399.json new file mode 100644 index 000000000000..7375a122af76 --- /dev/null +++ b/_data/chains/eip155-2399.json @@ -0,0 +1,25 @@ +{ + "name": "BOMB Chain Testnet", + "chain": "BOMB", + "rpc": ["https://bombchain-testnet.ankr.com/bas_full_rpc_1"], + "faucets": ["https://faucet.bombchain-testnet.ankr.com/"], + "nativeCurrency": { + "name": "BOMB Token", + "symbol": "tBOMB", + "decimals": 18 + }, + "infoURL": "https://www.bombmoney.com", + "shortName": "bombt", + "chainId": 2399, + "networkId": 2399, + "slip44": 1, + "icon": "bomb", + "explorers": [ + { + "name": "bombscan-testnet", + "icon": "bomb", + "url": "https://explorer.bombchain-testnet.ankr.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-24.json b/_data/chains/eip155-24.json index c5240775a69f..e28f06a60e56 100644 --- a/_data/chains/eip155-24.json +++ b/_data/chains/eip155-24.json @@ -1,20 +1,17 @@ { - "name": "Dithereum Mainnet", - "chain": "DTH", - "icon": "dithereum", - "rpc": [ - "https://node-mainnet.dithereum.io" - ], - "faucets": [ - "https://faucet.dithereum.org" - ], + "name": "KardiaChain Mainnet", + "chain": "KAI", + "icon": "kardiachain", + "rpc": ["https://rpc.kardiachain.io"], + "faucets": [], "nativeCurrency": { - "name": "Dither", - "symbol": "DTH", + "name": "KardiaChain", + "symbol": "KAI", "decimals": 18 }, - "infoURL": "https://dithereum.org", - "shortName": "dthmainnet", + "infoURL": "https://kardiachain.io", + "shortName": "kardiachain", "chainId": 24, - "networkId": 24 + "networkId": 0, + "redFlags": ["reusedChainId"] } 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-2400.json b/_data/chains/eip155-2400.json new file mode 100644 index 000000000000..e535a074f0be --- /dev/null +++ b/_data/chains/eip155-2400.json @@ -0,0 +1,27 @@ +{ + "name": "TCG Verse Mainnet", + "chain": "TCG Verse", + "icon": "tcg_verse", + "rpc": ["https://rpc.tcgverse.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://tcgverse.xyz/", + "shortName": "TCGV", + "chainId": 2400, + "networkId": 2400, + "explorers": [ + { + "name": "TCG Verse Explorer", + "url": "https://explorer.tcgverse.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } +} 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 new file mode 100644 index 000000000000..9483543e243d --- /dev/null +++ b/_data/chains/eip155-2410.json @@ -0,0 +1,27 @@ +{ + "name": "K2 Mainnet", + "chain": "K2", + "icon": "karak", + "rpc": ["https://rpc.karak.network"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://karak.network", + "shortName": "K2-mainnet", + "chainId": 2410, + "networkId": 2410, + "explorers": [ + { + "name": "K2 Mainnet Explorer", + "url": "https://explorer.karak.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + } +} 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-2415.json b/_data/chains/eip155-2415.json new file mode 100644 index 000000000000..4e2e4aeba580 --- /dev/null +++ b/_data/chains/eip155-2415.json @@ -0,0 +1,24 @@ +{ + "name": "XODEX", + "chain": "XODEX", + "rpc": ["https://mainnet.xo-dex.com/rpc", "https://xo-dex.io"], + "faucets": [], + "nativeCurrency": { + "name": "XODEX Native Token", + "symbol": "XODEX", + "decimals": 18 + }, + "infoURL": "https://xo-dex.com", + "shortName": "xodex", + "chainId": 2415, + "networkId": 10, + "icon": "xodex", + "explorers": [ + { + "name": "XODEX Explorer", + "url": "https://explorer.xo-dex.com", + "standard": "EIP3091", + "icon": "xodex" + } + ] +} diff --git a/_data/chains/eip155-242.json b/_data/chains/eip155-242.json new file mode 100644 index 000000000000..c62f1ad0de40 --- /dev/null +++ b/_data/chains/eip155-242.json @@ -0,0 +1,27 @@ +{ + "name": "Plinga Mainnet", + "chain": "Plinga", + "icon": "plinga", + "rpc": [ + "https://rpcurl.mainnet.plgchain.com", + "https://rpcurl.plgchain.blockchain.evmnode.online", + "https://rpcurl.mainnet.plgchain.plinga.technology" + ], + "faucets": [], + "nativeCurrency": { + "name": "Plinga", + "symbol": "PLINGA", + "decimals": 18 + }, + "infoURL": "https://www.plinga.technology/", + "shortName": "plgchain", + "chainId": 242, + "networkId": 242, + "explorers": [ + { + "name": "plgscan", + "url": "https://www.plgscan.com", + "standard": "EIP3091" + } + ] +} 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 new file mode 100644 index 000000000000..a319e0a58a57 --- /dev/null +++ b/_data/chains/eip155-2425.json @@ -0,0 +1,26 @@ +{ + "name": "King Of Legends Mainnet", + "title": "King Of Legends Mainnet", + "chain": "KCC", + "icon": "kol", + "rpc": ["https://rpc-mainnet.kinggamer.org/"], + "faucets": [], + "nativeCurrency": { + "name": "King Of Legends", + "symbol": "KCC", + "decimals": 18 + }, + "infoURL": "https://kingoflegends.net/", + "shortName": "kcc", + "chainId": 2425, + "networkId": 2425, + "slip44": 1, + "explorers": [ + { + "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 new file mode 100644 index 000000000000..c85dfde97f91 --- /dev/null +++ b/_data/chains/eip155-2442.json @@ -0,0 +1,29 @@ +{ + "name": "Polygon zkEVM Cardona Testnet", + "title": "Polygon zkEVM Cardona Testnet", + "chain": "Polygon", + "rpc": ["https://rpc.cardona.zkevm-rpc.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/polygon-zkevm", + "shortName": "zkevm-testnet-cardona", + "chainId": 2442, + "networkId": 2442, + "icon": "zkevm", + "explorers": [ + { + "name": "polygonscan", + "url": "https://cardona-zkevm.polygonscan.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://bridge-ui.cardona.zkevm-rpc.com" }] + } +} diff --git a/_data/chains/eip155-24484.json b/_data/chains/eip155-24484.json index 9e312c823426..80503e95d1b9 100644 --- a/_data/chains/eip155-24484.json +++ b/_data/chains/eip155-24484.json @@ -1,9 +1,7 @@ { "name": "Webchain", "chain": "WEB", - "rpc": [ - "https://node1.webchain.network" - ], + "rpc": [], "faucets": [], "nativeCurrency": { "name": "Webchain Ether", @@ -15,4 +13,4 @@ "chainId": 24484, "networkId": 37129, "slip44": 227 -} \ No newline at end of file +} diff --git a/_data/chains/eip155-245022926.json b/_data/chains/eip155-245022926.json index 51ba4a0a68e1..abbd5667a024 100644 --- a/_data/chains/eip155-245022926.json +++ b/_data/chains/eip155-245022926.json @@ -1,12 +1,12 @@ { - "name": "Neon EVM DevNet", + "name": "Neon EVM Devnet", "chain": "Solana", "rpc": [ - "https://proxy.devnet.neonlabs.org/solana" - ], - "faucets": [ - "https://neonswap.live/#/get-tokens" + "https://devnet.neonevm.org", + "https://neon-evm-devnet.drpc.org", + "wss://neon-evm-devnet.drpc.org" ], + "faucets": ["https://neonfaucet.org"], "icon": "neon", "nativeCurrency": { "name": "Neon", @@ -17,13 +17,17 @@ "shortName": "neonevm-devnet", "chainId": 245022926, "networkId": 245022926, - "explorers": [{ - "name": "native", - "url": "https://devnet.explorer.neon-labs.org", - "standard": "EIP3091" - }, { - "name": "neonscan", - "url": "https://devnet.neonscan.org", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "neonscan", + "url": "https://devnet.neonscan.org", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://neon-devnet.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] } 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-245022934.json b/_data/chains/eip155-245022934.json index 633323874806..6e183b48d2b9 100644 --- a/_data/chains/eip155-245022934.json +++ b/_data/chains/eip155-245022934.json @@ -1,8 +1,10 @@ { - "name": "Neon EVM MainNet", + "name": "Neon EVM Mainnet", "chain": "Solana", "rpc": [ - "https://proxy.mainnet.neonlabs.org/solana" + "https://neon-proxy-mainnet.solana.p2p.org", + "https://neon-evm.drpc.org", + "wss://neon-evm.drpc.org" ], "faucets": [], "icon": "neon", @@ -11,17 +13,20 @@ "symbol": "NEON", "decimals": 18 }, - "infoURL": "https://neon-labs.org", + "infoURL": "https://neonevm.org", "shortName": "neonevm-mainnet", "chainId": 245022934, "networkId": 245022934, - "explorers": [{ - "name": "native", - "url": "https://mainnet.explorer.neon-labs.org", - "standard": "EIP3091" - }, { - "name": "neonscan", - "url": "https://mainnet.neonscan.org", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "neonscan", + "url": "https://neonscan.org", + "standard": "EIP3091" + }, + { + "name": "native", + "url": "https://neon.blockscout.com", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-245022940.json b/_data/chains/eip155-245022940.json index 81be90213c7a..fa923f88f110 100644 --- a/_data/chains/eip155-245022940.json +++ b/_data/chains/eip155-245022940.json @@ -1,9 +1,8 @@ { "name": "Neon EVM TestNet", + "status": "deprecated", "chain": "Solana", - "rpc": [ - "https://proxy.testnet.neonlabs.org/solana" - ], + "rpc": ["https://testnet.neonevm.org"], "faucets": [], "icon": "neon", "nativeCurrency": { @@ -15,13 +14,17 @@ "shortName": "neonevm-testnet", "chainId": 245022940, "networkId": 245022940, - "explorers": [{ - "name": "native", - "url": "https://testnet.explorer.neon-labs.org", - "standard": "EIP3091" - }, { - "name": "neonscan", - "url": "https://testnet.neonscan.org", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "native", + "url": "https://testnet.explorer.neon-labs.org", + "standard": "EIP3091" + }, + { + "name": "neonscan", + "url": "https://testnet.neonscan.org", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-2458.json b/_data/chains/eip155-2458.json new file mode 100644 index 000000000000..b413d545a92f --- /dev/null +++ b/_data/chains/eip155-2458.json @@ -0,0 +1,25 @@ +{ + "name": "Hybrid Chain Network Testnet", + "chain": "HYBRID", + "rpc": ["https://rpc-testnet.hybridchain.ai/"], + "faucets": ["https://faucet-testnet.hybridchain.ai"], + "nativeCurrency": { + "name": "Hybrid Chain Native Token", + "symbol": "tHRC", + "decimals": 18 + }, + "infoURL": "https://hybridchain.ai", + "shortName": "thrc", + "chainId": 2458, + "networkId": 2458, + "slip44": 1, + "icon": "hybrid", + "explorers": [ + { + "name": "Hybrid Chain Explorer Testnet", + "icon": "hybrid", + "url": "https://testnet.hybridscan.ai", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-246.json b/_data/chains/eip155-246.json index 2af6fe22a79e..ce616c828e85 100644 --- a/_data/chains/eip155-246.json +++ b/_data/chains/eip155-246.json @@ -1,13 +1,8 @@ { "name": "Energy Web Chain", "chain": "Energy Web Chain", - "rpc": [ - "https://rpc.energyweb.org", - "wss://rpc.energyweb.org/ws" - ], - "faucets": [ - "https://faucet.carbonswap.exchange", "https://free-online-app.com/faucet-for-eth-evm-chains/" - ], + "rpc": ["https://rpc.energyweb.org", "wss://rpc.energyweb.org/ws"], + "faucets": [], "nativeCurrency": { "name": "Energy Web Token", "symbol": "EWT", @@ -19,11 +14,11 @@ "networkId": 246, "slip44": 246, - "explorers": [{ - "name": "blockscout", - "url": "https://explorer.energyweb.org", - "standard": "none" - }] - - + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.energyweb.org", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-246529.json b/_data/chains/eip155-246529.json index 21a168b977f3..f5f02a74bacd 100644 --- a/_data/chains/eip155-246529.json +++ b/_data/chains/eip155-246529.json @@ -1,9 +1,7 @@ { "name": "ARTIS sigma1", "chain": "ARTIS", - "rpc": [ - "https://rpc.sigma1.artis.network" - ], + "rpc": ["https://rpc.sigma1.artis.network"], "faucets": [], "nativeCurrency": { "name": "ARTIS sigma1 Ether", diff --git a/_data/chains/eip155-246785.json b/_data/chains/eip155-246785.json index 15248e15d3cf..3cd5e7daf65b 100644 --- a/_data/chains/eip155-246785.json +++ b/_data/chains/eip155-246785.json @@ -1,9 +1,7 @@ { "name": "ARTIS Testnet tau1", "chain": "ARTIS", - "rpc": [ - "https://rpc.tau1.artis.network" - ], + "rpc": ["https://rpc.tau1.artis.network"], "faucets": [], "nativeCurrency": { "name": "ARTIS tau1 Ether", @@ -13,5 +11,6 @@ "infoURL": "https://artis.network", "shortName": "atstau", "chainId": 246785, - "networkId": 246785 + "networkId": 246785, + "slip44": 1 } diff --git a/_data/chains/eip155-2468.json b/_data/chains/eip155-2468.json new file mode 100644 index 000000000000..57c9501388dd --- /dev/null +++ b/_data/chains/eip155-2468.json @@ -0,0 +1,27 @@ +{ + "name": "Hybrid Chain Network Mainnet", + "chain": "HYBRID", + "rpc": [ + "https://coredata-mainnet.hybridchain.ai/", + "https://rpc-mainnet.hybridchain.ai" + ], + "faucets": ["https://faucet-testnet.hybridchain.ai"], + "nativeCurrency": { + "name": "Hybrid Chain Native Token", + "symbol": "HRC", + "decimals": 18 + }, + "infoURL": "https://hybridchain.ai", + "shortName": "hrc", + "chainId": 2468, + "networkId": 2468, + "icon": "hybrid", + "explorers": [ + { + "name": "Hybrid Chain Explorer Mainnet", + "icon": "hybrid", + "url": "https://hybridscan.ai", + "standard": "none" + } + ] +} 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-247253.json b/_data/chains/eip155-247253.json new file mode 100644 index 000000000000..36bc2154a5e7 --- /dev/null +++ b/_data/chains/eip155-247253.json @@ -0,0 +1,24 @@ +{ + "name": "Saakuru Testnet", + "chain": "Saakuru", + "icon": "saakuru", + "rpc": ["https://rpc-testnet.saakuru.network"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://saakuru.network", + "shortName": "saakuru-testnet", + "chainId": 247253, + "networkId": 247253, + "slip44": 1, + "explorers": [ + { + "name": "saakuru-explorer-testnet", + "url": "https://explorer-testnet.saakuru.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-24734.json b/_data/chains/eip155-24734.json index 6319d3139203..d1619698b9e9 100644 --- a/_data/chains/eip155-24734.json +++ b/_data/chains/eip155-24734.json @@ -1,9 +1,7 @@ { "name": "MintMe.com Coin", "chain": "MINTME", - "rpc": [ - "https://node1.mintme.com" - ], + "rpc": ["https://node1.mintme.com"], "faucets": [], "nativeCurrency": { "name": "MintMe.com Coin", 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-248.json b/_data/chains/eip155-248.json new file mode 100644 index 000000000000..c6e028da2ee0 --- /dev/null +++ b/_data/chains/eip155-248.json @@ -0,0 +1,23 @@ +{ + "name": "Oasys Mainnet", + "chain": "Oasys", + "icon": "oasys", + "rpc": ["https://rpc.mainnet.oasys.games"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://oasys.games", + "shortName": "OAS", + "chainId": 248, + "networkId": 248, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.oasys.games", + "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-2484.json b/_data/chains/eip155-2484.json new file mode 100644 index 000000000000..abdeebf5ef03 --- /dev/null +++ b/_data/chains/eip155-2484.json @@ -0,0 +1,25 @@ +{ + "name": "Unicorn Ultra Nebulas Testnet", + "chain": "u2u", + "rpc": ["https://rpc-nebulas-testnet.uniultra.xyz"], + "faucets": ["https://faucet.uniultra.xyz"], + "nativeCurrency": { + "name": "Unicorn Ultra Nebulas Testnet", + "symbol": "U2U", + "decimals": 18 + }, + "infoURL": "https://uniultra.xyz", + "shortName": "u2u_nebulas", + "chainId": 2484, + "networkId": 2484, + "slip44": 1, + "icon": "u2u_nebulas", + "explorers": [ + { + "icon": "u2u_nebulas", + "name": "U2U Explorer", + "url": "https://testnet.u2uscan.xyz", + "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-25.json b/_data/chains/eip155-25.json index 7d1b2871de69..4b5db6a00c58 100644 --- a/_data/chains/eip155-25.json +++ b/_data/chains/eip155-25.json @@ -1,9 +1,14 @@ { - "name": "Cronos Mainnet Beta", + "name": "Cronos Mainnet", "chain": "CRO", "rpc": [ - "https://evm.cronos.org" + "https://evm.cronos.org", + "https://cronos-evm-rpc.publicnode.com", + "wss://cronos-evm-rpc.publicnode.com", + "https://cronos.drpc.org", + "wss://cronos.drpc.org" ], + "features": [{ "name": "EIP1559" }], "faucets": [], "nativeCurrency": { "name": "Cronos", @@ -14,9 +19,11 @@ "shortName": "cro", "chainId": 25, "networkId": 25, - "explorers": [{ - "name": "Cronos Explorer", - "url": "https://cronos.org/explorer", - "standard": "none" - }] + "explorers": [ + { + "name": "Cronos Explorer", + "url": "https://explorer.cronos.org", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-250.json b/_data/chains/eip155-250.json index a93e1cf0891b..92f41a646887 100644 --- a/_data/chains/eip155-250.json +++ b/_data/chains/eip155-250.json @@ -1,8 +1,14 @@ { "name": "Fantom Opera", "chain": "FTM", - "rpc": ["https://rpc.ftm.tools"], - "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], + "rpc": [ + "https://rpc.ftm.tools", + "https://fantom-rpc.publicnode.com", + "wss://fantom-rpc.publicnode.com", + "https://fantom.drpc.org", + "wss://fantom.drpc.org" + ], + "faucets": [], "nativeCurrency": { "name": "Fantom", "symbol": "FTM", @@ -19,6 +25,12 @@ "url": "https://ftmscan.com", "icon": "ftmscan", "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://fantom.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" } ] } 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-2511.json b/_data/chains/eip155-2511.json new file mode 100644 index 000000000000..f6436884c7a1 --- /dev/null +++ b/_data/chains/eip155-2511.json @@ -0,0 +1,28 @@ +{ + "name": "Karak Goerli", + "chain": "Karak", + "icon": "karak", + "status": "deprecated", + "rpc": ["https://goerli.node1.karak.network"], + "faucets": [], + "nativeCurrency": { + "name": "Karak", + "symbol": "KRK", + "decimals": 18 + }, + "infoURL": "https://karak.network", + "shortName": "karak-goerli", + "chainId": 2511, + "networkId": 2511, + "explorers": [ + { + "name": "Karak Goerli Explorer", + "url": "https://goerli.scan.karak.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5" + } +} 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-25186.json b/_data/chains/eip155-25186.json new file mode 100644 index 000000000000..2a35c4d18c0d --- /dev/null +++ b/_data/chains/eip155-25186.json @@ -0,0 +1,23 @@ +{ + "name": "LiquidLayer Mainnet", + "chain": "LiquidLayer", + "icon": "lila", + "rpc": ["https://mainnet.liquidlayer.network"], + "faucets": [], + "nativeCurrency": { + "name": "LiquidLayer", + "symbol": "LILA", + "decimals": 18 + }, + "infoURL": "https://scan.liquidlayer.network", + "shortName": "LILA", + "chainId": 25186, + "networkId": 25186, + "explorers": [ + { + "name": "LiquidLayer Mainnet Explorer", + "url": "https://scan.liquidlayer.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-252.json b/_data/chains/eip155-252.json new file mode 100644 index 000000000000..d7d88bc3989a --- /dev/null +++ b/_data/chains/eip155-252.json @@ -0,0 +1,28 @@ +{ + "name": "Fraxtal", + "chain": "FRAX", + "rpc": [ + "https://rpc.frax.com", + "https://fraxtal-rpc.publicnode.com", + "wss://fraxtal-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Frax", + "symbol": "FRAX", + "decimals": 18 + }, + "infoURL": "https://mainnet.frax.com", + "shortName": "frax", + "chainId": 252, + "networkId": 252, + "icon": "fraxtal", + "explorers": [ + { + "name": "fraxscan", + "url": "https://fraxscan.com", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-2522.json b/_data/chains/eip155-2522.json new file mode 100644 index 000000000000..9d3bd30cf419 --- /dev/null +++ b/_data/chains/eip155-2522.json @@ -0,0 +1,19 @@ +{ + "name": "Fraxtal Testnet", + "chain": "FRAX", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Frax", + "symbol": "FRAX", + "decimals": 18 + }, + "infoURL": "https://testnet.frax.com", + "shortName": "fraxtal-testnet", + "chainId": 2522, + "networkId": 2522, + "slip44": 1, + "icon": "fraxtal", + "explorers": [], + "status": "deprecated" +} diff --git a/_data/chains/eip155-2523.json b/_data/chains/eip155-2523.json new file mode 100644 index 000000000000..26d6c88f8e9a --- /dev/null +++ b/_data/chains/eip155-2523.json @@ -0,0 +1,19 @@ +{ + "name": "Fraxtal Hoodi Testnet", + "chain": "FRAX", + "rpc": ["https://rpc.testnet.frax.com"], + "faucets": ["https://faucet.testnet.frax.com/"], + "nativeCurrency": { + "name": "Frax", + "symbol": "FRAX", + "decimals": 18 + }, + "infoURL": "https://testnet.frax.com", + "shortName": "fraxtal-hoodi-testnet", + "chainId": 2523, + "networkId": 2523, + "slip44": 1, + "icon": "fraxtal", + "explorers": [], + "status": "active" +} diff --git a/_data/chains/eip155-2525.json b/_data/chains/eip155-2525.json new file mode 100644 index 000000000000..cab4124df010 --- /dev/null +++ b/_data/chains/eip155-2525.json @@ -0,0 +1,18 @@ +{ + "name": "inEVM Mainnet", + "chain": "inEVM", + "icon": "inevm", + "rpc": ["https://mainnet.rpc.inevm.com/http"], + "faucets": [], + "nativeCurrency": { + "name": "Injective", + "symbol": "INJ", + "decimals": 18 + }, + "infoURL": "https://inevm.com", + "shortName": "inevm", + "chainId": 2525, + "networkId": 2525, + "explorers": [], + "status": "active" +} 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-255.json b/_data/chains/eip155-255.json new file mode 100644 index 000000000000..151522b1d2fc --- /dev/null +++ b/_data/chains/eip155-255.json @@ -0,0 +1,29 @@ +{ + "name": "Kroma", + "chain": "ETH", + "rpc": ["https://api.kroma.network", "https://rpc-kroma.rockx.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://kroma.network", + "icon": "kroma", + "shortName": "kroma", + "chainId": 255, + "networkId": 255, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.kroma.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://kroma.network/bridge" }] + } +} 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-2559.json b/_data/chains/eip155-2559.json index 15d52faedbbe..b2cba75f4b75 100644 --- a/_data/chains/eip155-2559.json +++ b/_data/chains/eip155-2559.json @@ -1,18 +1,15 @@ { - "name": "Kortho Mainnet", - "chain": "Kortho Chain", - "rpc": [ - "https://www.kortho-chain.com" - ], - "faucets": [ - ], - "nativeCurrency": { + "name": "Kortho Mainnet", + "chain": "Kortho Chain", + "rpc": ["https://www.kortho-chain.com"], + "faucets": [], + "nativeCurrency": { "name": "KorthoChain", "symbol": "KTO", "decimals": 11 - }, - "infoURL": "https://www.kortho.io/", - "shortName": "ktoc", - "chainId": 2559, - "networkId": 2559 -} \ No newline at end of file + }, + "infoURL": "https://www.kortho.io/", + "shortName": "ktoc", + "chainId": 2559, + "networkId": 2559 +} diff --git a/_data/chains/eip155-256.json b/_data/chains/eip155-256.json index bac1e7d399d2..f1ee7bbd1b50 100644 --- a/_data/chains/eip155-256.json +++ b/_data/chains/eip155-256.json @@ -5,9 +5,7 @@ "https://http-testnet.hecochain.com", "wss://ws-testnet.hecochain.com" ], - "faucets": [ - "https://scan-testnet.hecochain.com/faucet" - ], + "faucets": ["https://scan-testnet.hecochain.com/faucet"], "nativeCurrency": { "name": "Huobi ECO Chain Test Native Token", "symbol": "htt", diff --git a/_data/chains/eip155-256256.json b/_data/chains/eip155-256256.json new file mode 100644 index 000000000000..9caad3ceab39 --- /dev/null +++ b/_data/chains/eip155-256256.json @@ -0,0 +1,25 @@ +{ + "name": "CMP-Mainnet", + "chain": "CMP", + "rpc": [ + "https://mainnet.block.caduceus.foundation", + "wss://mainnet.block.caduceus.foundation" + ], + "faucets": [], + "nativeCurrency": { + "name": "Caduceus Token", + "symbol": "CMP", + "decimals": 18 + }, + "infoURL": "https://caduceus.foundation/", + "shortName": "cmp-mainnet", + "chainId": 256256, + "networkId": 256256, + "explorers": [ + { + "name": "Mainnet Scan", + "url": "https://mainnet.scan.caduceus.foundation", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-2569.json b/_data/chains/eip155-2569.json index 3372528213bf..34f9b9f589c2 100644 --- a/_data/chains/eip155-2569.json +++ b/_data/chains/eip155-2569.json @@ -1,10 +1,7 @@ { "name": "TechPay Mainnet", "chain": "TPC", - "network": "mainnet", - "rpc": [ - "https://api.techpay.io/" - ], + "rpc": ["https://api.techpay.io/"], "faucets": [], "nativeCurrency": { "name": "TechPay", @@ -16,10 +13,12 @@ "chainId": 2569, "networkId": 2569, "icon": "techpay", - "explorers": [{ - "name": "tpcscan", - "url": "https://tpcscan.com", - "icon": "techpay", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "tpcscan", + "url": "https://tpcscan.com", + "icon": "techpay", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-2582.json b/_data/chains/eip155-2582.json new file mode 100644 index 000000000000..e1b84abe7488 --- /dev/null +++ b/_data/chains/eip155-2582.json @@ -0,0 +1,23 @@ +{ + "name": "H2 Chain Mainnet", + "chain": "H2", + "rpc": ["https://rpc.h2chain.io"], + "faucets": [], + "nativeCurrency": { + "name": "H2 Chain Native Token", + "symbol": "H2", + "decimals": 18 + }, + "infoURL": "https://h2chain.io", + "shortName": "h2", + "chainId": 2582, + "networkId": 2582, + "icon": "h2", + "explorers": [ + { + "name": "h2scan", + "url": "https://h2scan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-25821.json b/_data/chains/eip155-25821.json new file mode 100644 index 000000000000..da9540e553dd --- /dev/null +++ b/_data/chains/eip155-25821.json @@ -0,0 +1,23 @@ +{ + "name": "H2 Chain Testnet Lambda", + "chain": "H2", + "rpc": ["https://rpc.h-1.io"], + "faucets": [], + "nativeCurrency": { + "name": "Lambda H2", + "symbol": "H2", + "decimals": 18 + }, + "infoURL": "https://h2chain.io", + "shortName": "h2-lambda", + "chainId": 25821, + "networkId": 25821, + "icon": "h2", + "explorers": [ + { + "name": "h2scan-lambda", + "url": "https://lambda.h2scan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-25839.json b/_data/chains/eip155-25839.json new file mode 100644 index 000000000000..bb9060f66f05 --- /dev/null +++ b/_data/chains/eip155-25839.json @@ -0,0 +1,22 @@ +{ + "name": "AlveyChain Testnet", + "chain": "tALV", + "rpc": ["https://testnet-rpc.alvey.io"], + "faucets": ["https://faucet.alveytestnet.com"], + "nativeCurrency": { + "name": "AlveyCoin Testnet", + "symbol": "tALV", + "decimals": 18 + }, + "infoURL": "https://alveychain.com/", + "shortName": "talv", + "chainId": 25839, + "networkId": 25839, + "explorers": [ + { + "name": "AlveyScan Testnet", + "url": "https://alveytestnet.com", + "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-25888.json b/_data/chains/eip155-25888.json new file mode 100644 index 000000000000..a4aab0559c5d --- /dev/null +++ b/_data/chains/eip155-25888.json @@ -0,0 +1,22 @@ +{ + "name": "Hammer Chain Mainnet", + "chain": "HammerChain", + "rpc": ["https://www.hammerchain.io/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "GOLDT", + "symbol": "GOLDT", + "decimals": 18 + }, + "infoURL": "https://www.hammerchain.io", + "shortName": "GOLDT", + "chainId": 25888, + "networkId": 25888, + "explorers": [ + { + "name": "Hammer Chain Explorer", + "url": "https://www.hammerchain.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-259.json b/_data/chains/eip155-259.json new file mode 100644 index 000000000000..65ee87675cc1 --- /dev/null +++ b/_data/chains/eip155-259.json @@ -0,0 +1,24 @@ +{ + "name": "Neonlink Mainnet", + "chain": "Neonlink", + "rpc": ["https://mainnet.neonlink.io"], + "faucets": [], + "nativeCurrency": { + "name": "Neonlink Native Token", + "symbol": "NEON", + "decimals": 18 + }, + "infoURL": "https://neonlink.io", + "shortName": "neon", + "chainId": 259, + "networkId": 259, + "icon": "neonlink", + "explorers": [ + { + "name": "Neon Blockchain Explorer", + "url": "https://scan.neonlink.io", + "standard": "EIP3091", + "icon": "neonlink" + } + ] +} diff --git a/_data/chains/eip155-25925.json b/_data/chains/eip155-25925.json new file mode 100644 index 000000000000..4ceb1a29ecf1 --- /dev/null +++ b/_data/chains/eip155-25925.json @@ -0,0 +1,28 @@ +{ + "name": "KUB Testnet", + "chain": "KUB", + "rpc": [ + "https://rpc-testnet.bitkubchain.io", + "wss://wss-testnet.bitkubchain.io" + ], + "faucets": ["https://faucet.kubchain.com"], + "nativeCurrency": { + "name": "KUB Coin", + "symbol": "tKUB", + "decimals": 18 + }, + "infoURL": "https://www.kubchain.com/", + "shortName": "kubt", + "chainId": 25925, + "networkId": 25925, + "icon": "kub", + "slip44": 1, + "explorers": [ + { + "name": "KUB Testnet Explorer", + "url": "https://testnet.kubscan.com", + "standard": "none", + "icon": "kub" + } + ] +} diff --git a/_data/chains/eip155-26.json b/_data/chains/eip155-26.json index 88981cd867fe..af62417c4eb8 100644 --- a/_data/chains/eip155-26.json +++ b/_data/chains/eip155-26.json @@ -1,9 +1,7 @@ { "name": "Genesis L1 testnet", "chain": "genesis", - "rpc": [ - "https://testrpc.genesisl1.org" - ], + "rpc": ["https://testrpc.genesisl1.org"], "faucets": [], "nativeCurrency": { "name": "L1 testcoin", @@ -14,9 +12,12 @@ "shortName": "L1test", "chainId": 26, "networkId": 26, - "explorers": [{ - "name": "Genesis L1 testnet explorer", - "url": "https://testnet.genesisl1.org", - "standard": "none" - }] + "slip44": 1, + "explorers": [ + { + "name": "Genesis L1 testnet explorer", + "url": "https://testnet.genesisl1.org", + "standard": "none" + } + ] } 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-26026.json b/_data/chains/eip155-26026.json new file mode 100644 index 000000000000..7551bb976578 --- /dev/null +++ b/_data/chains/eip155-26026.json @@ -0,0 +1,24 @@ +{ + "name": "Ferrum Testnet", + "chain": "tFRM", + "rpc": ["http://testnet.dev.svcs.ferrumnetwork.io:9933"], + "faucets": ["https://testnet.faucet.ferrumnetwork.io"], + "nativeCurrency": { + "name": "Ferrum", + "symbol": "tFRM", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://ferrum.network", + "shortName": "frm", + "chainId": 26026, + "networkId": 26026, + "slip44": 1, + "explorers": [ + { + "name": "polkadotjs", + "url": "https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet.dev.svcs.ferrumnetwork.io#/explorer", + "standard": "none" + } + ] +} 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-2606.json b/_data/chains/eip155-2606.json new file mode 100644 index 000000000000..0b285e1fd3d0 --- /dev/null +++ b/_data/chains/eip155-2606.json @@ -0,0 +1,29 @@ +{ + "name": "PoCRNet", + "title": "Proof of Climate awaReness mainnet", + "chain": "CRC", + "status": "active", + "rpc": [ + "https://pocrnet.westeurope.cloudapp.azure.com/http", + "wss://pocrnet.westeurope.cloudapp.azure.com/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Climate awaReness Coin", + "symbol": "CRC", + "decimals": 18 + }, + "infoURL": "https://github.com/ethereum-pocr/pocrnet", + "shortName": "pocrnet", + "chainId": 2606, + "networkId": 2606, + "icon": "pocr", + "explorers": [ + { + "name": "Lite Explorer", + "url": "https://ethereum-pocr.github.io/explorer/pocrnet", + "icon": "pocr", + "standard": "EIP3091" + } + ] +} 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-2611.json b/_data/chains/eip155-2611.json new file mode 100644 index 000000000000..31afe52d49b9 --- /dev/null +++ b/_data/chains/eip155-2611.json @@ -0,0 +1,22 @@ +{ + "name": "Redlight Chain Mainnet", + "chain": "REDLC", + "rpc": ["https://dataseed2.redlightscan.finance"], + "faucets": [], + "nativeCurrency": { + "name": "Redlight Coin", + "symbol": "REDLC", + "decimals": 18 + }, + "infoURL": "https://redlight.finance/", + "shortName": "REDLC", + "chainId": 2611, + "networkId": 2611, + "explorers": [ + { + "name": "REDLC Explorer", + "url": "https://redlightscan.finance", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2611555.json b/_data/chains/eip155-2611555.json new file mode 100644 index 000000000000..3b14d79fa50a --- /dev/null +++ b/_data/chains/eip155-2611555.json @@ -0,0 +1,15 @@ +{ + "name": "DPU Chain", + "chain": "DPU", + "rpc": ["https://sc-rpc.dpu.ac.th"], + "faucets": [], + "nativeCurrency": { + "name": "DGC", + "symbol": "DGC", + "decimals": 18 + }, + "infoURL": "", + "shortName": "DPU", + "chainId": 2611555, + "networkId": 2611555 +} diff --git a/_data/chains/eip155-2612.json b/_data/chains/eip155-2612.json index 1d1a849b7224..f5daa708d7ff 100644 --- a/_data/chains/eip155-2612.json +++ b/_data/chains/eip155-2612.json @@ -1,9 +1,7 @@ { "name": "EZChain C-Chain Mainnet", "chain": "EZC", - "rpc": [ - "https://api.ezchain.com/ext/bc/C/rpc" - ], + "rpc": ["https://api.ezchain.com/ext/bc/C/rpc"], "faucets": [], "nativeCurrency": { "name": "EZChain", diff --git a/_data/chains/eip155-2613.json b/_data/chains/eip155-2613.json index 5e6e84dbcfa3..eee11f3fbb78 100644 --- a/_data/chains/eip155-2613.json +++ b/_data/chains/eip155-2613.json @@ -1,12 +1,8 @@ { "name": "EZChain C-Chain Testnet", "chain": "EZC", - "rpc": [ - "https://testnet-api.ezchain.com/ext/bc/C/rpc" - ], - "faucets": [ - "https://testnet-faucet.ezchain.com" - ], + "rpc": ["https://testnet-api.ezchain.com/ext/bc/C/rpc"], + "faucets": ["https://testnet-faucet.ezchain.com"], "nativeCurrency": { "name": "EZChain", "symbol": "EZC", @@ -16,6 +12,7 @@ "shortName": "Fuji-EZChain", "chainId": 2613, "networkId": 2613, + "slip44": 1, "icon": "ezchain", "explorers": [ { diff --git a/_data/chains/eip155-262.json b/_data/chains/eip155-262.json index 58a1a0abbf34..fd874293f119 100644 --- a/_data/chains/eip155-262.json +++ b/_data/chains/eip155-262.json @@ -1,9 +1,7 @@ { "name": "SUR Blockchain Network", "chain": "SUR", - "rpc": [ - "https://sur.nilin.org" - ], + "rpc": ["https://sur.nilin.org"], "faucets": [], "nativeCurrency": { "name": "Suren", @@ -15,10 +13,12 @@ "chainId": 262, "networkId": 1, "icon": "SUR", - "explorers": [{ - "name": "Surnet Explorer", - "url": "https://explorer.surnet.org", - "icon": "SUR", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "Surnet Explorer", + "url": "https://explorer.surnet.org", + "icon": "SUR", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-262371.json b/_data/chains/eip155-262371.json new file mode 100644 index 000000000000..c94b06697a42 --- /dev/null +++ b/_data/chains/eip155-262371.json @@ -0,0 +1,23 @@ +{ + "name": "Eclat Testnet", + "chain": "Eclat", + "icon": "eclat", + "rpc": ["https://testnet-rpc.eclatscan.com"], + "faucets": ["https://faucet.eclatscan.com"], + "nativeCurrency": { + "name": "Eclat Testnet", + "symbol": "ECLAT", + "decimals": 18 + }, + "infoURL": "https://testnet-explorer.eclatscan.com", + "shortName": "tECLAT", + "chainId": 262371, + "networkId": 262371, + "explorers": [ + { + "name": "Eclat Testnet Explorer", + "url": "https://testnet-explorer.eclatscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2625.json b/_data/chains/eip155-2625.json new file mode 100644 index 000000000000..6762b07938d8 --- /dev/null +++ b/_data/chains/eip155-2625.json @@ -0,0 +1,24 @@ +{ + "name": "Whitechain Testnet", + "chain": "WBT", + "rpc": ["https://rpc-testnet.whitechain.io"], + "faucets": ["https://testnet.whitechain.io/faucet"], + "nativeCurrency": { + "name": "WhiteBIT Coin", + "symbol": "WBT", + "decimals": 18 + }, + "infoURL": "https://whitechain.io", + "shortName": "twbt", + "chainId": 2625, + "networkId": 2625, + "slip44": 1, + "icon": "whitechain-testnet", + "explorers": [ + { + "name": "whitechain-testnet-explorer", + "url": "https://testnet.whitechain.io", + "standard": "EIP3091" + } + ] +} 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-26514.json b/_data/chains/eip155-26514.json new file mode 100644 index 000000000000..e5a47e02dc8c --- /dev/null +++ b/_data/chains/eip155-26514.json @@ -0,0 +1,31 @@ +{ + "name": "Horizen Mainnet", + "chain": "horizen", + "rpc": ["https://horizen.calderachain.xyz/http"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://horizen.hub.caldera.xyz", + "shortName": "horizen", + "chainId": 26514, + "networkId": 26514, + "icon": "horizen", + "explorers": [ + { + "name": "Horizen Mainnet Caldera Explorer", + "url": "https://horizen.calderaexplorer.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-266.json b/_data/chains/eip155-266.json new file mode 100644 index 000000000000..3d596a93a48b --- /dev/null +++ b/_data/chains/eip155-266.json @@ -0,0 +1,20 @@ +{ + "name": "Neura", + "title": "Neura Mainnet", + "chain": "NEURA", + "icon": "neura", + "rpc": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Ankr", + "symbol": "ANKR", + "decimals": 18 + }, + "infoURL": "https://www.neuraprotocol.io/", + "shortName": "neura", + "chainId": 266, + "networkId": 266, + "status": "incubating", + "explorers": [] +} diff --git a/_data/chains/eip155-26600.json b/_data/chains/eip155-26600.json new file mode 100644 index 000000000000..cac497860d0d --- /dev/null +++ b/_data/chains/eip155-26600.json @@ -0,0 +1,25 @@ +{ + "name": "Hertz Network Mainnet", + "chain": "HTZ", + "rpc": ["https://mainnet-rpc.hertzscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Hertz", + "symbol": "HTZ", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.hertz-network.com", + "shortName": "HTZ", + "chainId": 26600, + "networkId": 26600, + "icon": "hertz-network", + "explorers": [ + { + "name": "Hertz Scan", + "url": "https://hertzscan.com", + "icon": "hertz-network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2662.json b/_data/chains/eip155-2662.json new file mode 100644 index 000000000000..aa280738af26 --- /dev/null +++ b/_data/chains/eip155-2662.json @@ -0,0 +1,22 @@ +{ + "name": "APEX", + "status": "incubating", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://apexlayer.xyz/", + "shortName": "apexmainnet", + "chainId": 2662, + "networkId": 2662, + "icon": "apexmainnet", + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-1" + } +} diff --git a/_data/chains/eip155-266256.json b/_data/chains/eip155-266256.json new file mode 100644 index 000000000000..cbc78ceb332a --- /dev/null +++ b/_data/chains/eip155-266256.json @@ -0,0 +1,17 @@ +{ + "name": "Gear Zero Network Testnet", + "chain": "GearZero", + "rpc": ["https://gzn-test.linksme.info"], + "faucets": [], + "nativeCurrency": { + "name": "Gear Zero Network Native Token", + "symbol": "GZN", + "decimals": 18 + }, + "infoURL": "https://token.gearzero.ca/testnet", + "shortName": "gz-testnet", + "chainId": 266256, + "networkId": 266256, + "slip44": 1, + "explorers": [] +} diff --git a/_data/chains/eip155-267.json b/_data/chains/eip155-267.json new file mode 100644 index 000000000000..341e6174ad55 --- /dev/null +++ b/_data/chains/eip155-267.json @@ -0,0 +1,34 @@ +{ + "name": "Neura Testnet", + "title": "Neura Testnet", + "chain": "NEURA", + "icon": "neura", + "rpc": ["https://rpc.ankr.com/neura_testnet"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://testnet.neuraprotocol.io/faucet"], + "nativeCurrency": { + "name": "Testnet Ankr", + "symbol": "ANKR", + "decimals": 18 + }, + "infoURL": "https://www.neuraprotocol.io/", + "shortName": "tneura", + "chainId": 267, + "networkId": 267, + "explorers": [ + { + "name": "ankrscan-neura", + "url": "https://testnet.explorer.neuraprotocol.io", + "icon": "neura", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://explorer.neura-testnet.ankr.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "status": "active", + "slip44": 1 +} diff --git a/_data/chains/eip155-268.json b/_data/chains/eip155-268.json new file mode 100644 index 000000000000..9e25002bd741 --- /dev/null +++ b/_data/chains/eip155-268.json @@ -0,0 +1,21 @@ +{ + "name": "Neura Devnet", + "title": "Neura Devnet", + "chain": "NEURA", + "icon": "neura", + "rpc": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Devnet Ankr", + "symbol": "ANKR", + "decimals": 18 + }, + "infoURL": "https://www.neuraprotocol.io/", + "shortName": "dneura", + "chainId": 268, + "networkId": 268, + "explorers": [], + "status": "incubating", + "slip44": 1 +} diff --git a/_data/chains/eip155-26863.json b/_data/chains/eip155-26863.json index 7f3416dbdcb1..f459b40fbd64 100644 --- a/_data/chains/eip155-26863.json +++ b/_data/chains/eip155-26863.json @@ -6,9 +6,7 @@ "https://rpc2.oasischain.io", "https://rpc3.oasischain.io" ], - "faucets": [ - "http://faucet.oasischain.io" - ], + "faucets": ["http://faucet.oasischain.io"], "nativeCurrency": { "name": "OAC", "symbol": "OAC", @@ -18,9 +16,11 @@ "shortName": "OAC", "chainId": 26863, "networkId": 26863, - "explorers": [{ - "name": "OasisChain Explorer", - "url": "https://scan.oasischain.io", - "standard": "EIP3091" - }] -} \ No newline at end of file + "explorers": [ + { + "name": "OasisChain Explorer", + "url": "https://scan.oasischain.io", + "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-269.json b/_data/chains/eip155-269.json index 0e8faa01e281..c9f2073f6551 100644 --- a/_data/chains/eip155-269.json +++ b/_data/chains/eip155-269.json @@ -1,13 +1,8 @@ { "name": "High Performance Blockchain", "chain": "HPB", - "rpc": [ - "https://hpbnode.com", - "wss://ws.hpbnode.com" - ], - "faucets": [ - "https://myhpbwallet.com/" - ], + "rpc": ["https://hpbnode.com", "wss://ws.hpbnode.com"], + "faucets": ["https://myhpbwallet.com/"], "nativeCurrency": { "name": "High Performance Blockchain Ether", "symbol": "HPB", @@ -18,10 +13,11 @@ "chainId": 269, "networkId": 269, "slip44": 269, - "explorers": [{ - "name": "hscan", - "url": "https://hscan.org", - "standard": "EIP3091" - }] - + "explorers": [ + { + "name": "hscan", + "url": "https://hscan.org", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-2691.json b/_data/chains/eip155-2691.json new file mode 100644 index 000000000000..0a46b8daf742 --- /dev/null +++ b/_data/chains/eip155-2691.json @@ -0,0 +1,25 @@ +{ + "name": "Splendor Mainnet", + "chain": "SPLENDOR", + "rpc": ["https://mainnet-rpc.splendor.org", "https://splendor-rpc.org/"], + "faucets": [], + "nativeCurrency": { + "name": "Splendor Token", + "symbol": "SPLD", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://splendor.org", + "shortName": "spld", + "chainId": 2691, + "networkId": 2691, + "icon": "splendor", + "explorers": [ + { + "name": "Splendor Explorer", + "url": "https://explorer.splendor.org", + "icon": "splendor", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2692.json b/_data/chains/eip155-2692.json new file mode 100644 index 000000000000..ab5b3644849b --- /dev/null +++ b/_data/chains/eip155-2692.json @@ -0,0 +1,25 @@ +{ + "name": "Splendor Testnet", + "chain": "SPLD-TESTNET", + "rpc": ["https://testnet-rpc.splendor.org"], + "faucets": [], + "nativeCurrency": { + "name": "Splendor Test Token", + "symbol": "SPLDT", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://splendor.org", + "shortName": "spldt", + "chainId": 2692, + "networkId": 2692, + "icon": "spld-testnet", + "explorers": [ + { + "name": "Splendor Testnet Explorer", + "url": "https://testnet-explorer.splendor.org", + "icon": "splendor", + "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-27.json b/_data/chains/eip155-27.json index cc9cdf2fe44f..664aebf63b79 100644 --- a/_data/chains/eip155-27.json +++ b/_data/chains/eip155-27.json @@ -1,22 +1,22 @@ { "name": "ShibaChain", "chain": "SHIB", - "rpc": [ - "https://rpc.shibachain.net" - ], + "rpc": ["https://rpc.shibchain.org"], "faucets": [], "nativeCurrency": { "name": "SHIBA INU COIN", "symbol": "SHIB", "decimals": 18 }, - "infoURL": "https://www.shibachain.net", + "infoURL": "https://shibchain.org", "shortName": "shib", "chainId": 27, "networkId": 27, - "explorers": [{ - "name": "Shiba Explorer", - "url": "https://exp.shibachain.net", - "standard": "none" - }] + "explorers": [ + { + "name": "Shiba Explorer", + "url": "https://exp.shibchain.org", + "standard": "none" + } + ] } 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-27082017.json b/_data/chains/eip155-27082017.json new file mode 100644 index 000000000000..8d2bcd3c5566 --- /dev/null +++ b/_data/chains/eip155-27082017.json @@ -0,0 +1,25 @@ +{ + "name": "Excoincial Chain Volta-Testnet", + "chain": "TEXL", + "icon": "exl", + "rpc": ["https://testnet-rpc.exlscan.com"], + "faucets": ["https://faucet.exlscan.com"], + "nativeCurrency": { + "name": "TExlcoin", + "symbol": "TEXL", + "decimals": 18 + }, + "infoURL": "", + "shortName": "exlvolta", + "chainId": 27082017, + "networkId": 27082017, + "slip44": 1, + "explorers": [ + { + "name": "exlscan", + "url": "https://testnet-explorer.exlscan.com", + "icon": "exl", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-27082022.json b/_data/chains/eip155-27082022.json new file mode 100644 index 000000000000..27bdda193282 --- /dev/null +++ b/_data/chains/eip155-27082022.json @@ -0,0 +1,24 @@ +{ + "name": "Excoincial Chain Mainnet", + "chain": "EXL", + "icon": "exl", + "rpc": ["https://rpc.exlscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Exlcoin", + "symbol": "EXL", + "decimals": 18 + }, + "infoURL": "", + "shortName": "exl", + "chainId": 27082022, + "networkId": 27082022, + "explorers": [ + { + "name": "exlscan", + "url": "https://exlscan.com", + "icon": "exl", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-271.json b/_data/chains/eip155-271.json new file mode 100644 index 000000000000..e80b7bb6d821 --- /dev/null +++ b/_data/chains/eip155-271.json @@ -0,0 +1,23 @@ +{ + "name": "EgonCoin Mainnet", + "chain": "EGON", + "icon": "egonicon", + "rpc": ["https://rpc.egonscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "EgonCoin", + "symbol": "EGON", + "decimals": 18 + }, + "infoURL": "https://egonscan.com", + "shortName": "EGONm", + "chainId": 271, + "networkId": 271, + "explorers": [ + { + "name": "EgonCoin Mainnet", + "url": "https://egonscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2710.json b/_data/chains/eip155-2710.json new file mode 100644 index 000000000000..5eaa8c4d4014 --- /dev/null +++ b/_data/chains/eip155-2710.json @@ -0,0 +1,28 @@ +{ + "name": "Morph Testnet", + "chain": "ETH", + "rpc": ["https://rpc-testnet.morphl2.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://morphl2.io", + "shortName": "tmorph", + "chainId": 2710, + "networkId": 2710, + "slip44": 1, + "explorers": [ + { + "name": "Morph Testnet Explorer", + "url": "https://explorer-testnet.morphl2.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge-testnet.morphl2.io" }] + } +} 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-271271.json b/_data/chains/eip155-271271.json new file mode 100644 index 000000000000..e53eb5ac56db --- /dev/null +++ b/_data/chains/eip155-271271.json @@ -0,0 +1,24 @@ +{ + "name": "EgonCoin Testnet", + "chain": "EGON", + "icon": "egonicon", + "rpc": ["https://rpctest.egonscan.com"], + "faucets": ["https://faucet.egonscan.com"], + "nativeCurrency": { + "name": "EgonCoin", + "symbol": "EGON", + "decimals": 18 + }, + "infoURL": "https://egonscan.com", + "shortName": "EGONt", + "chainId": 271271, + "networkId": 271271, + "slip44": 1, + "explorers": [ + { + "name": "EgonCoin Testnet", + "url": "https://testnet.egonscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2713017997578000.json b/_data/chains/eip155-2713017997578000.json new file mode 100644 index 000000000000..fc679d65f2e8 --- /dev/null +++ b/_data/chains/eip155-2713017997578000.json @@ -0,0 +1,27 @@ +{ + "name": "DCHAIN Testnet", + "title": "DCHAIN Testnet", + "chain": "dchaint", + "icon": "dchaint", + "rpc": [ + "https://dchaintestnet-2713017997578000-1.jsonrpc.testnet.sagarpc.io" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.dchain.foundation/", + "shortName": "dchaint", + "chainId": 2713017997578000, + "networkId": 2713017997578000, + "explorers": [ + { + "name": "dchaint scan", + "url": "https://dchaintestnet-2713017997578000-1.testnet.sagaexplorer.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2716446429837000.json b/_data/chains/eip155-2716446429837000.json new file mode 100644 index 000000000000..043efb6db51b --- /dev/null +++ b/_data/chains/eip155-2716446429837000.json @@ -0,0 +1,25 @@ +{ + "name": "DCHAIN", + "title": "DCHAIN Mainnet", + "chain": "dchainmainnet", + "icon": "dchainmainnet", + "rpc": ["https://dchain-2716446429837000-1.jsonrpc.sagarpc.io"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.dchain.foundation/", + "shortName": "dchainmainnet", + "chainId": 2716446429837000, + "networkId": 2716446429837000, + "explorers": [ + { + "name": "dchain scan", + "url": "https://dchain-2716446429837000-1.sagaexplorer.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2718.json b/_data/chains/eip155-2718.json new file mode 100644 index 000000000000..127d27efa876 --- /dev/null +++ b/_data/chains/eip155-2718.json @@ -0,0 +1,28 @@ +{ + "name": "K-LAOS", + "title": "K-LAOS: LAOS on Kusama", + "chain": "K-LAOS", + "icon": "k-laos", + "rpc": [ + "https://rpc.klaos.laosfoundation.io", + "wss://rpc.klaos.laosfoundation.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "KLAOS", + "symbol": "KLAOS", + "decimals": 18 + }, + "infoURL": "https://www.laosfoundation.io/", + "shortName": "k-laos", + "chainId": 2718, + "networkId": 2718, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.klaos.laosfoundation.io", + "icon": "k-laos", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-27181.json b/_data/chains/eip155-27181.json new file mode 100644 index 000000000000..05a426ac0fd9 --- /dev/null +++ b/_data/chains/eip155-27181.json @@ -0,0 +1,28 @@ +{ + "name": "KLAOS Nova", + "title": "KLAOS Nova Test Chain", + "chain": "KLAOS Nova", + "icon": "k-laos", + "rpc": [ + "https://rpc.klaosnova.laosfoundation.io", + "wss://rpc.klaosnova.laosfoundation.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "KLAOS", + "symbol": "KLAOS", + "decimals": 18 + }, + "infoURL": "https://www.laosfoundation.io/", + "shortName": "klaosnova", + "chainId": 27181, + "networkId": 27181, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.klaosnova.laosfoundation.io", + "icon": "k-laos", + "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-2730.json b/_data/chains/eip155-2730.json new file mode 100644 index 000000000000..010fd1a05a4d --- /dev/null +++ b/_data/chains/eip155-2730.json @@ -0,0 +1,43 @@ +{ + "name": "XR Sepolia", + "chain": "ETH", + "rpc": ["https://xr-sepolia-testnet.rpc.caldera.xyz/http"], + "faucets": [], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "tXR", + "symbol": "tXR", + "decimals": 18 + }, + "infoURL": "https://xr-one.gitbook.io", + "shortName": "txr", + "chainId": 2730, + "networkId": 2730, + "icon": "xr", + "slip44": 60, + "explorers": [ + { + "name": "XR Sepolia Explorer", + "url": "https://xr-sepolia-testnet.explorer.caldera.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-421614", + "bridges": [ + { + "url": "https://xr-sepolia-testnet.bridge.caldera.xyz" + } + ] + }, + "status": "active" +} diff --git a/_data/chains/eip155-2731.json b/_data/chains/eip155-2731.json new file mode 100644 index 000000000000..af37acfbfb78 --- /dev/null +++ b/_data/chains/eip155-2731.json @@ -0,0 +1,24 @@ +{ + "name": "Elizabeth Testnet", + "chain": "Elizabeth", + "rpc": ["https://testnet-rpc.timenetwork.io"], + "faucets": [], + "nativeCurrency": { + "name": "TIME", + "symbol": "TIME", + "decimals": 18 + }, + "infoURL": "https://whitepaper.anttime.net/overview/anttime", + "shortName": "TIME", + "chainId": 2731, + "networkId": 2731, + "icon": "timenet", + "explorers": [ + { + "name": "Time Network Explorer", + "url": "https://testnet-scanner.timenetwork.io", + "standard": "none", + "icon": "timenet" + } + ] +} diff --git a/_data/chains/eip155-274.json b/_data/chains/eip155-274.json new file mode 100644 index 000000000000..71a5873e3bd2 --- /dev/null +++ b/_data/chains/eip155-274.json @@ -0,0 +1,28 @@ +{ + "name": "LaChain", + "chain": "LaChain", + "icon": "lachain-network", + "rpc": [ + "https://rpc1.mainnet.lachain.network", + "https://rpc2.mainnet.lachain.network", + "https://lachain.rpc-nodes.cedalio.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "LaCoin", + "symbol": "LAC", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "", + "shortName": "lachain", + "chainId": 274, + "networkId": 274, + "explorers": [ + { + "name": "LaChain Explorer", + "url": "https://explorer.lachain.network", + "standard": "EIP3091" + } + ] +} 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-2748.json b/_data/chains/eip155-2748.json new file mode 100644 index 000000000000..40d972cc0ef3 --- /dev/null +++ b/_data/chains/eip155-2748.json @@ -0,0 +1,34 @@ +{ + "name": "Nanon", + "title": "Nanon Rollup", + "chain": "ETH", + "rpc": ["https://rpc.nanon.network"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.nanon.network", + "shortName": "Nanon", + "chainId": 2748, + "networkId": 2748, + "slip44": 1, + "icon": "nanon", + "explorers": [ + { + "name": "Nanon Rollup Explorer", + "url": "https://explorer.nanon.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.nanon.network" + } + ] + } +} diff --git a/_data/chains/eip155-27483.json b/_data/chains/eip155-27483.json new file mode 100644 index 000000000000..cb81f7cebba4 --- /dev/null +++ b/_data/chains/eip155-27483.json @@ -0,0 +1,34 @@ +{ + "name": "Nanon Sepolia", + "title": "Nanon Sepolia Rollup Testnet", + "chain": "ETH", + "rpc": ["https://sepolia-rpc.nanon.network"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.nanon.network", + "shortName": "Nanon-Testnet", + "chainId": 27483, + "networkId": 27483, + "slip44": 1, + "icon": "nanon", + "explorers": [ + { + "name": "Nanon Sepolia Rollup Testnet Explorer", + "url": "https://sepolia-explorer.nanon.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://sepolia-bridge.nanon.network" + } + ] + } +} 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-278.json b/_data/chains/eip155-278.json new file mode 100644 index 000000000000..33051be6999f --- /dev/null +++ b/_data/chains/eip155-278.json @@ -0,0 +1,16 @@ +{ + "name": "xFair.AI Mainnet", + "chain": "FAI", + "rpc": ["https://rpc_mainnet.xfair.ai", "wss://rpc_mainnet.xfair.ai"], + "faucets": [], + "nativeCurrency": { + "name": "FAI", + "symbol": "FAI", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://xfair.ai", + "shortName": "fai", + "chainId": 278, + "networkId": 278 +} diff --git a/_data/chains/eip155-27827.json b/_data/chains/eip155-27827.json new file mode 100644 index 000000000000..87b1d150a810 --- /dev/null +++ b/_data/chains/eip155-27827.json @@ -0,0 +1,27 @@ +{ + "name": "zeroone Mainnet Subnet", + "chain": "ZEROONEMAI", + "rpc": ["https://subnets.avax.network/zeroonemai/mainnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 + }, + "infoURL": "https://zeroone.art/", + "shortName": "zeroonemai", + "chainId": 27827, + "networkId": 27827, + "explorers": [ + { + "name": "ZEROONEMAI Explorer", + "url": "https://subnets.avax.network/zeroonemai", + "standard": "EIP3091" + } + ] +} 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-278611351.json b/_data/chains/eip155-278611351.json new file mode 100644 index 000000000000..2e00641a504b --- /dev/null +++ b/_data/chains/eip155-278611351.json @@ -0,0 +1,23 @@ +{ + "name": "Razor Skale Chain", + "chain": "Razor Schain", + "icon": "razornetwork", + "rpc": ["https://mainnet.skalenodes.com/v1/turbulent-unique-scheat"], + "faucets": ["https://faucet.razorscan.io/"], + "nativeCurrency": { + "name": "sFuel", + "symbol": "SFUEL", + "decimals": 18 + }, + "infoURL": "https://razor.network", + "shortName": "razor", + "chainId": 278611351, + "networkId": 278611351, + "explorers": [ + { + "name": "turbulent-unique-scheat", + "url": "https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-279.json b/_data/chains/eip155-279.json new file mode 100644 index 000000000000..7b5d212b697f --- /dev/null +++ b/_data/chains/eip155-279.json @@ -0,0 +1,24 @@ +{ + "name": "BPX Chain", + "chain": "BPX", + "icon": "bpx", + "rpc": ["https://rpc.bpxchain.cc"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "BPX", + "symbol": "BPX", + "decimals": 18 + }, + "infoURL": "https://bpxchain.cc", + "shortName": "bpx", + "chainId": 279, + "networkId": 279, + "explorers": [ + { + "name": "BPX Chain Block Explorer", + "url": "https://explorer.bpxchain.cc", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-28.json b/_data/chains/eip155-28.json index 6bc23e6811e3..cce78461a6ab 100644 --- a/_data/chains/eip155-28.json +++ b/_data/chains/eip155-28.json @@ -1,6 +1,7 @@ { "name": "Boba Network Rinkeby Testnet", "chain": "ETH", + "status": "deprecated", "rpc": ["https://rinkeby.boba.network/"], "faucets": [], "nativeCurrency": { @@ -9,18 +10,20 @@ "decimals": 18 }, "infoURL": "https://boba.network", - "shortName": "Boba Rinkeby", + "shortName": "BobaRinkeby", "chainId": 28, "networkId": 28, - - "explorers": [{ - "name": "Blockscout", - "url": "https://blockexplorer.rinkeby.boba.network", - "standard": "none" - }], + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://blockexplorer.rinkeby.boba.network", + "standard": "none" + } + ], "parent": { - "type" : "L2", - "chain": "eip155-4", - "bridges": [ {"url":"https://gateway.rinkeby.boba.network"} ] + "type": "L2", + "chain": "eip155-4", + "bridges": [{ "url": "https://gateway.rinkeby.boba.network" }] } } diff --git a/_data/chains/eip155-280.json b/_data/chains/eip155-280.json new file mode 100644 index 000000000000..170ca9936f5f --- /dev/null +++ b/_data/chains/eip155-280.json @@ -0,0 +1,31 @@ +{ + "name": "zkSync Era Goerli Testnet (deprecated)", + "status": "deprecated", + "chain": "ETH", + "rpc": ["https://testnet.era.zksync.dev"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zksync.io/", + "shortName": "zksync-goerli", + "chainId": 280, + "networkId": 280, + "slip44": 1, + "icon": "zksync-era", + "explorers": [ + { + "name": "zkSync Era Block Explorer", + "url": "https://goerli.explorer.zksync.io", + "icon": "zksync-era", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.zksync.io/" }] + } +} diff --git a/_data/chains/eip155-2810.json b/_data/chains/eip155-2810.json new file mode 100644 index 000000000000..1d6966e9bd07 --- /dev/null +++ b/_data/chains/eip155-2810.json @@ -0,0 +1,33 @@ +{ + "name": "Morph Holesky", + "title": "Morph Holesky Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc-quicknode-holesky.morphl2.io", + "wss://rpc-quicknode-holesky.morphl2.io", + "https://rpc-holesky.morphl2.io" + ], + "faucets": ["https://morphfaucet.com/"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://morphl2.io", + "shortName": "hmorph", + "chainId": 2810, + "networkId": 2810, + "slip44": 1, + "explorers": [ + { + "name": "Morph Holesky Testnet Explorer", + "url": "https://explorer-holesky.morphl2.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge-holesky.morphl2.io" }] + } +} diff --git a/_data/chains/eip155-281121.json b/_data/chains/eip155-281121.json index 7e757132048f..b41b62bfb930 100644 --- a/_data/chains/eip155-281121.json +++ b/_data/chains/eip155-281121.json @@ -1,9 +1,7 @@ { "name": "Social Smart Chain Mainnet", "chain": "SoChain", - "rpc": [ - "https://socialsmartchain.digitalnext.business" - ], + "rpc": ["https://socialsmartchain.digitalnext.business"], "faucets": [], "nativeCurrency": { "name": "SoChain", 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-28122024.json b/_data/chains/eip155-28122024.json new file mode 100644 index 000000000000..b01f46cbdd1d --- /dev/null +++ b/_data/chains/eip155-28122024.json @@ -0,0 +1,24 @@ +{ + "name": "Ancient8 Testnet", + "chain": "Ancient8", + "icon": "ancient8", + "rpc": ["https://rpcv2-testnet.ancient8.gg"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ancient8.gg/", + "shortName": "a8", + "chainId": 28122024, + "networkId": 28122024, + "slip44": 1, + "explorers": [ + { + "name": "scan-testnet", + "url": "https://scanv2-testnet.ancient8.gg", + "standard": "EIP3091" + } + ] +} 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 new file mode 100644 index 000000000000..a76286dcfc43 --- /dev/null +++ b/_data/chains/eip155-282.json @@ -0,0 +1,24 @@ +{ + "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": "zkTCRO", + "decimals": 18 + }, + "infoURL": "https://docs-zkevm.cronos.org", + "shortName": "deprecated-zkTCRO", + "chainId": 282, + "networkId": 282, + "slip44": 1, + "explorers": [ + { + "name": "Cronos zkEVM Testnet Explorer", + "url": "https://explorer.zkevm.cronos.org/testnet", + "standard": "none" + } + ], + "status": "deprecated" +} diff --git a/_data/chains/eip155-282828.json b/_data/chains/eip155-282828.json new file mode 100644 index 000000000000..de4d2da4c1f5 --- /dev/null +++ b/_data/chains/eip155-282828.json @@ -0,0 +1,30 @@ +{ + "name": "Zillion Sepolia Testnet", + "status": "active", + "chain": "ETH", + "rpc": ["https://sepolia.zillnet.io/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zillnet.io", + "shortName": "zillsep", + "chainId": 282828, + "networkId": 282828, + "slip44": 1, + "icon": "zillion", + "explorers": [ + { + "name": "zillscout", + "url": "https://sepolia.zillnet.io", + "icon": "zillion", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } +} diff --git a/_data/chains/eip155-28516.json b/_data/chains/eip155-28516.json new file mode 100644 index 000000000000..e5ad5116e1ba --- /dev/null +++ b/_data/chains/eip155-28516.json @@ -0,0 +1,25 @@ +{ + "name": "Vizing Testnet", + "title": "Vizing Testnet", + "chain": "Vizing Testnet", + "rpc": ["https://rpc-sepolia.vizing.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://vizing.com", + "shortName": "Vizing-Testnet", + "chainId": 28516, + "networkId": 28516, + "icon": "vizing", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer-sepolia.vizing.com", + "icon": "vizing", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-28518.json b/_data/chains/eip155-28518.json new file mode 100644 index 000000000000..268e684f6a85 --- /dev/null +++ b/_data/chains/eip155-28518.json @@ -0,0 +1,30 @@ +{ + "name": "Vizing Mainnet", + "title": "Vizing Mainnet", + "chain": "Vizing Mainnet", + "rpc": ["https://rpc.vizing.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://vizing.com", + "shortName": "Vizing", + "chainId": 28518, + "networkId": 28518, + "icon": "vizing", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.vizing.com", + "icon": "vizing", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.vizing.com" }] + } +} diff --git a/_data/chains/eip155-28528.json b/_data/chains/eip155-28528.json new file mode 100644 index 000000000000..bbcf7663ece8 --- /dev/null +++ b/_data/chains/eip155-28528.json @@ -0,0 +1,28 @@ +{ + "name": "Optimism Bedrock (Goerli Alpha Testnet)", + "chain": "ETH", + "rpc": [ + "https://alpha-1-replica-0.bedrock-goerli.optimism.io", + "https://alpha-1-replica-1.bedrock-goerli.optimism.io", + "https://alpha-1-replica-2.bedrock-goerli.optimism.io", + "https://alpha-1-replica-2.bedrock-goerli.optimism.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://community.optimism.io/docs/developers/bedrock", + "shortName": "obgor", + "chainId": 28528, + "networkId": 28528, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.com/optimism/bedrock-alpha", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-28540.json b/_data/chains/eip155-28540.json new file mode 100644 index 000000000000..11faaffa6915 --- /dev/null +++ b/_data/chains/eip155-28540.json @@ -0,0 +1,26 @@ +{ + "name": "Rivool", + "chain": "Rivool", + "icon": "rivool", + "rpc": [ + "https://services.tanssi-mainnet.network/tanssi-2005", + "wss://services.tanssi-mainnet.network/tanssi-2005" + ], + "faucets": [], + "nativeCurrency": { + "name": "RVO", + "symbol": "RVO", + "decimals": 18 + }, + "infoURL": "https://rivool.finance/", + "shortName": "rivool", + "chainId": 28540, + "networkId": 28540, + "explorers": [ + { + "name": "Tanssi EVM Basic Explorer", + "url": "https://evmexplorer.tanssi-chains.network/?rpcUrl=https://services.tanssi-mainnet.network/tanssi-2005", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-2863311531.json b/_data/chains/eip155-2863311531.json new file mode 100644 index 000000000000..1582a0c514b2 --- /dev/null +++ b/_data/chains/eip155-2863311531.json @@ -0,0 +1,25 @@ +{ + "name": "Ancient8 Testnet (deprecated)", + "status": "deprecated", + "chain": "Ancient8", + "icon": "ancient8", + "rpc": ["https://rpc-testnet.ancient8.gg"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ancient8.gg/", + "shortName": "a8old", + "chainId": 2863311531, + "networkId": 2863311531, + "slip44": 1, + "explorers": [ + { + "name": "a8scan-testnet", + "url": "https://testnet.a8scan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2868.json b/_data/chains/eip155-2868.json new file mode 100644 index 000000000000..ca8b7a4d3c5f --- /dev/null +++ b/_data/chains/eip155-2868.json @@ -0,0 +1,24 @@ +{ + "name": "HyperAGI Mainnet", + "chain": "HyperAGI", + "icon": "hyperagi", + "rpc": ["https://rpc.hyperagi.network", "https://rpc.hyperagi.ai"], + "faucets": [], + "nativeCurrency": { + "name": "Hyperdust", + "symbol": "HYPT", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.hyperagi.ai", + "shortName": "hypt", + "chainId": 2868, + "networkId": 2868, + "explorers": [ + { + "name": "hyperscan", + "url": "https://hyperscan.hyperagi.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-288.json b/_data/chains/eip155-288.json index 31d1c9e80e6f..69ee4c0d2e80 100644 --- a/_data/chains/eip155-288.json +++ b/_data/chains/eip155-288.json @@ -1,7 +1,16 @@ { "name": "Boba Network", "chain": "ETH", - "rpc": ["https://mainnet.boba.network/"], + "rpc": [ + "https://mainnet.boba.network", + "https://replica.boba.network", + "https://boba-ethereum.gateway.tenderly.co", + "https://gateway.tenderly.co/public/boba-ethereum", + "wss://boba-ethereum.gateway.tenderly.co/", + "wss://gateway.tenderly.co/public/boba-ethereum", + "https://boba-eth.drpc.org", + "wss://boba-eth.drpc.org" + ], "faucets": [], "nativeCurrency": { "name": "Ether", @@ -13,14 +22,16 @@ "chainId": 288, "networkId": 288, - "explorers": [{ - "name": "Blockscout", - "url": "https://blockexplorer.boba.network", - "standard": "none" - }], + "explorers": [ + { + "name": "Bobascan", + "url": "https://bobascan.com", + "standard": "none" + } + ], "parent": { - "type" : "L2", - "chain": "eip155-1", - "bridges": [ {"url":"https://gateway.boba.network"} ] + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://gateway.boba.network" }] } } 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 new file mode 100644 index 000000000000..4e20152ba4e6 --- /dev/null +++ b/_data/chains/eip155-28872323069.json @@ -0,0 +1,20 @@ +{ + "name": "GitSwarm Test Network", + "title": "GitSwarm Test Network", + "chain": "ETH", + "icon": "gitswarm", + "rpc": ["https://testnet.gitswarm.com:2096"], + "faucets": [], + "nativeCurrency": { + "name": "GitSwarm Ether", + "symbol": "GS-ETH", + "decimals": 18 + }, + "infoURL": "https://gitswarm.com/", + "shortName": "GS-ETH", + "chainId": 28872323069, + "networkId": 28872323069, + "slip44": 1, + "explorers": [], + "status": "incubating" +} diff --git a/_data/chains/eip155-2888.json b/_data/chains/eip155-2888.json new file mode 100644 index 000000000000..d7dce0b68b58 --- /dev/null +++ b/_data/chains/eip155-2888.json @@ -0,0 +1,33 @@ +{ + "name": "Boba Network Goerli Testnet", + "chain": "ETH", + "status": "deprecated", + "rpc": ["https://goerli.boba.network/", "wss://wss.goerli.boba.network/"], + "faucets": [], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaGoerli", + "chainId": 2888, + "networkId": 2888, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://testnet.bobascan.com", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://gateway.boba.network" + } + ] + } +} diff --git a/_data/chains/eip155-28882.json b/_data/chains/eip155-28882.json new file mode 100644 index 000000000000..543edaded33b --- /dev/null +++ b/_data/chains/eip155-28882.json @@ -0,0 +1,34 @@ +{ + "name": "Boba Sepolia", + "chain": "ETH", + "rpc": [ + "https://sepolia.boba.network", + "https://boba-sepolia.gateway.tenderly.co", + "https://gateway.tenderly.co/public/boba-sepolia", + "wss://boba-sepolia.gateway.tenderly.co/", + "wss://gateway.tenderly.co/public/boba-sepolia" + ], + "faucets": ["https://www.l2faucet.com/boba"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaSepolia", + "chainId": 28882, + "networkId": 28882, + + "explorers": [ + { + "name": "Routescan", + "url": "https://testnet.bobascan.com", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "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-28945486.json b/_data/chains/eip155-28945486.json index d26c7dc94aac..9d7027161156 100644 --- a/_data/chains/eip155-28945486.json +++ b/_data/chains/eip155-28945486.json @@ -1,9 +1,7 @@ { "name": "Auxilium Network Mainnet", "chain": "AUX", - "rpc": [ - "https://rpc.auxilium.global" - ], + "rpc": ["https://rpc.auxilium.global"], "faucets": [], "nativeCurrency": { "name": "Auxilium coin", diff --git a/_data/chains/eip155-29.json b/_data/chains/eip155-29.json index 5c8dd3682437..10c45fa21cc7 100644 --- a/_data/chains/eip155-29.json +++ b/_data/chains/eip155-29.json @@ -1,9 +1,7 @@ { "name": "Genesis L1", "chain": "genesis", - "rpc": [ - "https://rpc.genesisl1.org" - ], + "rpc": ["https://rpc.genesisl1.org"], "faucets": [], "nativeCurrency": { "name": "L1 coin", @@ -14,9 +12,11 @@ "shortName": "L1", "chainId": 29, "networkId": 29, - "explorers": [{ - "name": "Genesis L1 blockchain explorer", - "url": "https://explorer.genesisl1.org", - "standard": "none" - }] + "explorers": [ + { + "name": "Genesis L1 blockchain explorer", + "url": "https://explorer.genesisl1.org", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-29032022.json b/_data/chains/eip155-29032022.json new file mode 100644 index 000000000000..f213f24f3386 --- /dev/null +++ b/_data/chains/eip155-29032022.json @@ -0,0 +1,24 @@ +{ + "name": "Flachain Mainnet", + "chain": "FLX", + "icon": "flacoin", + "rpc": ["https://flachain.flaexchange.top/"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Flacoin", + "symbol": "FLA", + "decimals": 18 + }, + "infoURL": "https://www.flaexchange.top", + "shortName": "fla", + "chainId": 29032022, + "networkId": 29032022, + "explorers": [ + { + "name": "FLXExplorer", + "url": "https://explorer.flaexchange.top", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2907.json b/_data/chains/eip155-2907.json new file mode 100644 index 000000000000..d62411804acc --- /dev/null +++ b/_data/chains/eip155-2907.json @@ -0,0 +1,23 @@ +{ + "name": "Elux Chain", + "chain": "ELUX", + "icon": "eluxchain", + "rpc": ["https://rpc.eluxscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Elux Chain", + "symbol": "ELUX", + "decimals": 18 + }, + "infoURL": "https://eluxscan.com", + "shortName": "ELUX", + "chainId": 2907, + "networkId": 2907, + "explorers": [ + { + "name": "blockscout", + "url": "https://eluxscan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-291.json b/_data/chains/eip155-291.json new file mode 100644 index 000000000000..3df30e259165 --- /dev/null +++ b/_data/chains/eip155-291.json @@ -0,0 +1,24 @@ +{ + "name": "Orderly Mainnet", + "chain": "ETH", + "rpc": ["https://rpc.orderly.network"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://orderly.network/", + "shortName": "orderly", + "chainId": 291, + "networkId": 291, + "icon": "orderly", + "explorers": [ + { + "name": "orderlyscout", + "url": "https://explorer.orderly.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-2911.json b/_data/chains/eip155-2911.json new file mode 100644 index 000000000000..7596f1c8fbec --- /dev/null +++ b/_data/chains/eip155-2911.json @@ -0,0 +1,29 @@ +{ + "name": "HYCHAIN", + "chainId": 2911, + "shortName": "hychain", + "chain": "ETH", + "networkId": 2911, + "nativeCurrency": { + "name": "TOPIA", + "symbol": "TOPIA", + "decimals": 18 + }, + "rpc": ["https://rpc.hychain.com/http"], + "faucets": [], + "infoURL": "https://www.hychain.com", + "icon": "hychain", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.hychain.com", + "icon": "hychain", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.hychain.com" }] + } +} diff --git a/_data/chains/eip155-29112.json b/_data/chains/eip155-29112.json new file mode 100644 index 000000000000..59ac6ac36785 --- /dev/null +++ b/_data/chains/eip155-29112.json @@ -0,0 +1,29 @@ +{ + "name": "HYCHAIN Testnet", + "chainId": 29112, + "shortName": "hychain-testnet", + "chain": "ETH", + "networkId": 29112, + "nativeCurrency": { + "name": "TOPIA", + "symbol": "TOPIA", + "decimals": 18 + }, + "rpc": ["https://testnet-rpc.hychain.com/http"], + "faucets": [], + "infoURL": "https://www.hychain.com", + "icon": "hychain", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.explorer.hychain.com", + "icon": "hychain", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-58008", + "bridges": [] + } +} 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-2941.json b/_data/chains/eip155-2941.json new file mode 100644 index 000000000000..932ef2069916 --- /dev/null +++ b/_data/chains/eip155-2941.json @@ -0,0 +1,27 @@ +{ + "name": "Xenon Chain Testnet", + "chain": "XEN", + "rpc": [ + "https://testnet-chain.xenonchain.com/", + "https://testnet-dev.xenonchain.com/" + ], + "faucets": ["https://xfaucet.xenonchain.com"], + "nativeCurrency": { + "name": "Xenon Testnet", + "symbol": "tXEN", + "decimals": 18 + }, + "infoURL": "https://xenonchain.com", + "shortName": "xenon", + "chainId": 2941, + "networkId": 2941, + "icon": "xenon", + "slip44": 1, + "explorers": [ + { + "name": "Xenon testnet Explorer", + "url": "https://testnet.xenonchain.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-295.json b/_data/chains/eip155-295.json new file mode 100644 index 000000000000..98c44cb3e144 --- /dev/null +++ b/_data/chains/eip155-295.json @@ -0,0 +1,35 @@ +{ + "name": "Hedera Mainnet", + "chain": "Hedera", + "icon": "hedera", + "rpc": ["https://mainnet.hashio.io/api", "https://hedera.linkpool.pro"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "hbar", + "symbol": "HBAR", + "decimals": 18 + }, + "infoURL": "https://hedera.com", + "shortName": "hedera-mainnet", + "chainId": 295, + "networkId": 295, + "slip44": 3030, + "explorers": [ + { + "name": "Arkhia Explorer", + "url": "https://explorer.arkhia.io", + "standard": "none" + }, + { + "name": "DragonGlass", + "url": "https://app.dragonglass.me", + "standard": "none" + }, + { + "name": "Hedera Explorer", + "url": "https://hederaexplorer.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-29536.json b/_data/chains/eip155-29536.json new file mode 100644 index 000000000000..c5f1ead37f24 --- /dev/null +++ b/_data/chains/eip155-29536.json @@ -0,0 +1,22 @@ +{ + "name": "KaiChain Testnet", + "chain": "KaiChain", + "rpc": ["https://testnet-rpc.kaichain.net"], + "faucets": ["https://faucet.kaichain.net"], + "nativeCurrency": { + "name": "KaiChain Testnet Native Token", + "symbol": "KEC", + "decimals": 18 + }, + "infoURL": "https://kaichain.net", + "shortName": "tkec", + "chainId": 29536, + "networkId": 29536, + "explorers": [ + { + "name": "KaiChain Explorer", + "url": "https://testnet-explorer.kaichain.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-29548.json b/_data/chains/eip155-29548.json new file mode 100644 index 000000000000..b75a50fb406f --- /dev/null +++ b/_data/chains/eip155-29548.json @@ -0,0 +1,27 @@ +{ + "name": "MCH Verse Mainnet", + "chain": "MCH Verse", + "icon": "mch_verse", + "rpc": ["https://rpc.oasys.mycryptoheroes.net"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://www.mycryptoheroes.net/verse", + "shortName": "MCHV", + "chainId": 29548, + "networkId": 29548, + "explorers": [ + { + "name": "MCH Verse Explorer", + "url": "https://explorer.oasys.mycryptoheroes.net", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } +} diff --git a/_data/chains/eip155-296.json b/_data/chains/eip155-296.json new file mode 100644 index 000000000000..ca351f06aa44 --- /dev/null +++ b/_data/chains/eip155-296.json @@ -0,0 +1,45 @@ +{ + "name": "Hedera Testnet", + "chain": "Hedera", + "icon": "hedera", + "rpc": ["https://testnet.hashio.io/api"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://portal.hedera.com"], + "nativeCurrency": { + "name": "hbar", + "symbol": "HBAR", + "decimals": 18 + }, + "infoURL": "https://hedera.com", + "shortName": "hedera-testnet", + "chainId": 296, + "networkId": 296, + "slip44": 1, + "explorers": [ + { + "name": "HashScan", + "url": "https://hashscan.io/testnet", + "standard": "EIP3091" + }, + { + "name": "Arkhia Explorer", + "url": "https://explorer.arkhia.io", + "standard": "none" + }, + { + "name": "DragonGlass", + "url": "https://app.dragonglass.me", + "standard": "none" + }, + { + "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-297.json b/_data/chains/eip155-297.json new file mode 100644 index 000000000000..f33efb5be8ee --- /dev/null +++ b/_data/chains/eip155-297.json @@ -0,0 +1,25 @@ +{ + "name": "Hedera Previewnet", + "chain": "Hedera", + "icon": "hedera", + "rpc": ["https://previewnet.hashio.io/api"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://portal.hedera.com"], + "nativeCurrency": { + "name": "hbar", + "symbol": "HBAR", + "decimals": 18 + }, + "infoURL": "https://hedera.com", + "shortName": "hedera-previewnet", + "chainId": 297, + "networkId": 297, + "slip44": 3030, + "explorers": [ + { + "name": "HashScan", + "url": "https://hashscan.io/previewnet", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-298.json b/_data/chains/eip155-298.json new file mode 100644 index 000000000000..6c0bae6c2367 --- /dev/null +++ b/_data/chains/eip155-298.json @@ -0,0 +1,19 @@ +{ + "name": "Hedera Localnet", + "chain": "Hedera", + "icon": "hedera", + "rpc": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "hbar", + "symbol": "HBAR", + "decimals": 18 + }, + "infoURL": "https://hedera.com", + "shortName": "hedera-localnet", + "chainId": 298, + "networkId": 298, + "slip44": 3030, + "explorers": [] +} diff --git a/_data/chains/eip155-2999.json b/_data/chains/eip155-2999.json new file mode 100644 index 000000000000..518b2dce7315 --- /dev/null +++ b/_data/chains/eip155-2999.json @@ -0,0 +1,23 @@ +{ + "name": "BitYuan Mainnet", + "chain": "BTY", + "rpc": ["https://mainnet.bityuan.com/eth"], + "faucets": [], + "nativeCurrency": { + "name": "BTY", + "symbol": "BTY", + "decimals": 18 + }, + "infoURL": "https://www.bityuan.com", + "shortName": "bty", + "chainId": 2999, + "networkId": 2999, + "icon": "bty", + "explorers": [ + { + "name": "BitYuan Block Chain Explorer", + "url": "https://mainnet.bityuan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-3.json b/_data/chains/eip155-3.json index cd487bb1ba5c..9b753cf0c0fa 100644 --- a/_data/chains/eip155-3.json +++ b/_data/chains/eip155-3.json @@ -2,7 +2,6 @@ "name": "Ropsten", "title": "Ethereum Testnet Ropsten", "chain": "ETH", - "network": "testnet", "rpc": [ "https://ropsten.infura.io/v3/${INFURA_API_KEY}", "wss://ropsten.infura.io/ws/v3/${INFURA_API_KEY}" @@ -13,19 +12,22 @@ ], "nativeCurrency": { "name": "Ropsten Ether", - "symbol": "ROP", + "symbol": "ETH", "decimals": 18 }, "infoURL": "https://github.com/ethereum/ropsten", "shortName": "rop", "chainId": 3, "networkId": 3, + "slip44": 1, "ens": { - "registry":"0x112234455c3a32fd11230c42e7bccd4a84e02010" + "registry": "0x112234455c3a32fd11230c42e7bccd4a84e02010" }, - "explorers": [{ - "name": "etherscan", - "url": "https://ropsten.etherscan.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "etherscan", + "url": "https://ropsten.etherscan.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-30.json b/_data/chains/eip155-30.json index c3541990ccbb..90ceea27d524 100644 --- a/_data/chains/eip155-30.json +++ b/_data/chains/eip155-30.json @@ -1,25 +1,31 @@ { - "name": "RSK Mainnet", - "chain": "RSK", - "rpc": [ - "https://public-node.rsk.co", - "https://mycrypto.rsk.co" - ], - "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], + "name": "Rootstock Mainnet", + "chain": "Rootstock", + "rpc": ["https://public-node.rsk.co", "https://mycrypto.rsk.co"], + "faucets": [], + "icon": "rootstock", "nativeCurrency": { - "name": "RSK Mainnet Ether", + "name": "Smart Bitcoin", "symbol": "RBTC", "decimals": 18 }, - "infoURL": "https://rsk.co", + "infoURL": "https://rootstock.io", "shortName": "rsk", "chainId": 30, "networkId": 30, "slip44": 137, - "explorers": [{ - "name": "blockscout", - "url": "https://explorer.rsk.co", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "Rootstock Explorer", + "url": "https://explorer.rsk.co", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://rootstock.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-300.json b/_data/chains/eip155-300.json index fb5b4f86c549..1bbc4ce3e9c0 100644 --- a/_data/chains/eip155-300.json +++ b/_data/chains/eip155-300.json @@ -1,24 +1,35 @@ { - "name": "Optimism on Gnosis Chain", - "chain": "OGC", + "name": "zkSync Sepolia Testnet", + "chain": "ETH", "rpc": [ - "https://optimism.gnosischain.com", - "wss://optimism.gnosischain.com/wss" + "https://sepolia.era.zksync.dev", + "https://zksync-sepolia.drpc.org", + "wss://zksync-sepolia.drpc.org" ], - "faucets": ["https://faucet.gimlu.com/gnosis"], + "faucets": [], "nativeCurrency": { - "name": "xDAI", - "symbol": "xDAI", + "name": "Ether", + "symbol": "ETH", "decimals": 18 }, - "infoURL": "https://www.xdaichain.com/for-developers/optimism-optimistic-rollups-on-gc", - "shortName": "ogc", + "infoURL": "https://zksync.io/", + "shortName": "zksync-sepolia", "chainId": 300, "networkId": 300, - "explorers": [{ - "name": "blockscout", - "url": "https://blockscout.com/xdai/optimism", - "icon": "blockscout", - "standard": "EIP3091" - }] + "slip44": 1, + "icon": "zksync-era", + "explorers": [ + { + "name": "zkSync Block Explorer", + "url": "https://sepolia.explorer.zksync.io", + "icon": "zksync-era", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://bridge.zksync.io/" }] + }, + "redFlags": ["reusedChainId"] } diff --git a/_data/chains/eip155-3000.json b/_data/chains/eip155-3000.json index 87b75f7bba52..9ece12f971bc 100644 --- a/_data/chains/eip155-3000.json +++ b/_data/chains/eip155-3000.json @@ -1,21 +1,16 @@ { - "name": "CENNZnet Rata", - "chain": "CENNZnet", - "network": "rata", - "rpc": [ - "https://rata.centrality.me/public" - ], - "faucets": [ - "https://app-faucet.centrality.me" - ], - "nativeCurrency": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 - }, - "infoURL": "https://cennz.net", - "shortName": "cennz-r", - "chainId": 3000, - "networkId": 3000, - "icon": "cennz" - } \ No newline at end of file + "name": "CENNZnet Rata", + "chain": "CENNZnet", + "rpc": [], + "faucets": ["https://app-faucet.centrality.me"], + "nativeCurrency": { + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 + }, + "infoURL": "https://cennz.net", + "shortName": "cennz-r", + "chainId": 3000, + "networkId": 3000, + "icon": "cennz" +} 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-3001.json b/_data/chains/eip155-3001.json index 486e98d604c2..2db6c2df9451 100644 --- a/_data/chains/eip155-3001.json +++ b/_data/chains/eip155-3001.json @@ -1,26 +1,23 @@ { - "name": "CENNZnet Nikau", - "chain": "CENNZnet", - "network": "nikau", - "rpc": [ - "https://nikau.centrality.me/public" - ], - "faucets": [ - "https://app-faucet.centrality.me" - ], - "nativeCurrency": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 - }, - "infoURL": "https://cennz.net", - "shortName": "cennz-n", - "chainId": 3001, - "networkId": 3001, - "icon": "cennz", - "explorers": [{ + "name": "CENNZnet Nikau", + "chain": "CENNZnet", + "rpc": ["https://nikau.centrality.me/public"], + "faucets": ["https://app-faucet.centrality.me"], + "nativeCurrency": { + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 + }, + "infoURL": "https://cennz.net", + "shortName": "cennz-n", + "chainId": 3001, + "networkId": 3001, + "icon": "cennz", + "explorers": [ + { "name": "UNcover", "url": "https://www.uncoverexplorer.com/?network=Nikau", "standard": "none" - }] - } \ No newline at end of file + } + ] +} diff --git a/_data/chains/eip155-3003.json b/_data/chains/eip155-3003.json new file mode 100644 index 000000000000..da515ab45574 --- /dev/null +++ b/_data/chains/eip155-3003.json @@ -0,0 +1,23 @@ +{ + "name": "Canxium Mainnet", + "chain": "CAU", + "icon": "canxium", + "rpc": ["https://rpc.canxium.org"], + "faucets": [], + "nativeCurrency": { + "name": "Canxium", + "symbol": "CAU", + "decimals": 18 + }, + "infoURL": "https://canxium.org", + "shortName": "cau", + "chainId": 3003, + "networkId": 3003, + "explorers": [ + { + "name": "canxium explorer", + "url": "https://explorer.canxium.org", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-30067.json b/_data/chains/eip155-30067.json index 5040dfd58d76..fa06e0cd39f1 100644 --- a/_data/chains/eip155-30067.json +++ b/_data/chains/eip155-30067.json @@ -13,6 +13,7 @@ "shortName": "Piece", "chainId": 30067, "networkId": 30067, + "slip44": 1, "explorers": [ { "name": "Piece Scan", diff --git a/_data/chains/eip155-30088.json b/_data/chains/eip155-30088.json new file mode 100644 index 000000000000..342e15008c23 --- /dev/null +++ b/_data/chains/eip155-30088.json @@ -0,0 +1,24 @@ +{ + "name": "MiYou Mainnet", + "chain": "MiYou Chain", + "icon": "miyou", + "faucets": [], + "rpc": ["https://blockchain.miyou.io", "https://blockchain.miyoulab.com"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "nativeCurrency": { "name": "Miyou", "symbol": "MY", "decimals": 18 }, + "infoURL": "https://www.miyou.io", + "shortName": "MiYou", + "chainId": 30088, + "networkId": 30088, + "slip44": 60, + "ens": { + "registry": "0xFEfa9B3061435977424DD947E756566cFB60473E" + }, + "explorers": [ + { + "name": "MiYou block explorer", + "url": "https://myscan.miyou.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-301.json b/_data/chains/eip155-301.json new file mode 100644 index 000000000000..a9f0149fd7bc --- /dev/null +++ b/_data/chains/eip155-301.json @@ -0,0 +1,28 @@ +{ + "name": "Bobaopera", + "chain": "Bobaopera", + "status": "deprecated", + "rpc": [ + "https://bobaopera.boba.network", + "wss://wss.bobaopera.boba.network", + "https://replica.bobaopera.boba.network", + "wss://replica-wss.bobaopera.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Bobaopera", + "chainId": 301, + "networkId": 301, + "explorers": [ + { + "name": "Bobaopera block explorer", + "url": "https://blockexplorer.bobaopera.boba.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-30103.json b/_data/chains/eip155-30103.json new file mode 100644 index 000000000000..2b6306ad745e --- /dev/null +++ b/_data/chains/eip155-30103.json @@ -0,0 +1,24 @@ +{ + "name": "Cerium Testnet", + "chain": "CAU", + "icon": "canxium", + "rpc": ["https://cerium-rpc.canxium.net"], + "faucets": [], + "nativeCurrency": { + "name": "Canxium", + "symbol": "CAU", + "decimals": 18 + }, + "infoURL": "https://canxium.org", + "shortName": "ceri", + "chainId": 30103, + "networkId": 30103, + "slip44": 1, + "explorers": [ + { + "name": "canxium explorer", + "url": "https://cerium-explorer.canxium.net", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-3011.json b/_data/chains/eip155-3011.json new file mode 100644 index 000000000000..ff8bb6c7ec5c --- /dev/null +++ b/_data/chains/eip155-3011.json @@ -0,0 +1,25 @@ +{ + "name": "PLAYA3ULL GAMES", + "chain": "3ULL", + "rpc": ["https://api.mainnet.playa3ull.games"], + "faucets": [], + "nativeCurrency": { + "name": "3ULL", + "symbol": "3ULL", + "decimals": 18 + }, + "features": [{ "name": "EIP1559" }], + "infoURL": "https://playa3ull.games", + "shortName": "3ULL", + "chainId": 3011, + "networkId": 3011, + "icon": "playa3ull", + "explorers": [ + { + "name": "PLAYA3ULL GAMES Explorer", + "url": "https://3011.routescan.io", + "icon": "playa3ull", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-302.json b/_data/chains/eip155-302.json new file mode 100644 index 000000000000..9db5462cc235 --- /dev/null +++ b/_data/chains/eip155-302.json @@ -0,0 +1,30 @@ +{ + "name": "ZKcandy Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://sepolia.rpc.zkcandy.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zkcandy.io/", + "shortName": "zkcandy-sepolia", + "chainId": 302, + "networkId": 302, + "icon": "zkcandy", + "explorers": [ + { + "name": "ZKcandy Block Explorer", + "url": "https://sepolia.explorer.zkcandy.io", + "icon": "zkcandy", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://sepolia.bridge.zkcandy.io/" }] + }, + "redFlags": ["reusedChainId"] +} diff --git a/_data/chains/eip155-303.json b/_data/chains/eip155-303.json new file mode 100644 index 000000000000..a1b8441a54ad --- /dev/null +++ b/_data/chains/eip155-303.json @@ -0,0 +1,24 @@ +{ + "name": "Neurochain Testnet", + "chain": "NCN", + "rpc": ["https://nc-rpc-test1.neurochain.io"], + "faucets": [], + "nativeCurrency": { + "name": "Neurochain", + "symbol": "tNCN", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.neurochain.ai", + "shortName": "ncnt", + "chainId": 303, + "networkId": 303, + "slip44": 1, + "explorers": [ + { + "name": "neuroscan", + "url": "https://testnet.ncnscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3030.json b/_data/chains/eip155-3030.json new file mode 100644 index 000000000000..b18f9a3e4606 --- /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", "https://datahub-asia02.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-30303.json b/_data/chains/eip155-30303.json new file mode 100644 index 000000000000..b9219aff24c2 --- /dev/null +++ b/_data/chains/eip155-30303.json @@ -0,0 +1,34 @@ +{ + "name": "Ethiq", + "chain": "ETH", + "rpc": ["https://rpc.ethiq.network", "wss://rpc.ethiq.network"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.ethiq.network", + "shortName": "ethiq", + "chainId": 30303, + "networkId": 30303, + "features": [ + { "name": "EIP155" }, + { "name": "EIP1559" }, + { "name": "EIP2718" }, + { "name": "EIP2930" } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://shell.haqq.network/bridge" }] + }, + "explorers": [ + { + "name": "Ethiq Blockscout", + "url": "https://explorer.ethiq.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3031.json b/_data/chains/eip155-3031.json new file mode 100644 index 000000000000..084499ed4449 --- /dev/null +++ b/_data/chains/eip155-3031.json @@ -0,0 +1,24 @@ +{ + "name": "Orlando Chain", + "chain": "ORL", + "rpc": ["https://rpc-testnet.orlchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Orlando", + "symbol": "ORL", + "decimals": 18 + }, + "infoURL": "https://orlchain.com", + "shortName": "ORL", + "chainId": 3031, + "networkId": 3031, + "icon": "orl", + "explorers": [ + { + "name": "Orlando (ORL) Explorer", + "url": "https://orlscan.com", + "icon": "orl", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3033.json b/_data/chains/eip155-3033.json new file mode 100644 index 000000000000..77e2ff7e096d --- /dev/null +++ b/_data/chains/eip155-3033.json @@ -0,0 +1,31 @@ +{ + "name": "Rebus Testnet", + "title": "Rebuschain Testnet", + "chain": "REBUS", + "rpc": ["https://testnet.rebus.money/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Rebus", + "symbol": "REBUS", + "decimals": 18 + }, + "infoURL": "https://www.rebuschain.com", + "shortName": "rebus-testnet", + "chainId": 3033, + "networkId": 3033, + "icon": "rebus", + "explorers": [ + { + "name": "Rebus EVM Explorer (Blockscout)", + "url": "https://evm.testnet.rebus.money", + "icon": "rebus", + "standard": "none" + }, + { + "name": "Rebus Cosmos Explorer (ping.pub)", + "url": "https://testnet.rebus.money/rebustestnet", + "icon": "rebus", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-305.json b/_data/chains/eip155-305.json new file mode 100644 index 000000000000..2b3a95c74477 --- /dev/null +++ b/_data/chains/eip155-305.json @@ -0,0 +1,25 @@ +{ + "name": "ZKSats Mainnet", + "title": "ZKSats Mainnet", + "chain": "ZKSats", + "rpc": ["https://mainnet.zksats.io"], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://zksats.io", + "shortName": "ZKSats-Mainnet", + "chainId": 305, + "networkId": 305, + "icon": "zksats", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.zksats.io", + "icon": "zksats", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3068.json b/_data/chains/eip155-3068.json new file mode 100644 index 000000000000..1a3b0fdb309d --- /dev/null +++ b/_data/chains/eip155-3068.json @@ -0,0 +1,27 @@ +{ + "name": "Bifrost Mainnet", + "title": "Bifrost Network Mainnet", + "chain": "BFC", + "rpc": [ + "https://public-01.mainnet.bifrostnetwork.com/rpc", + "https://public-02.mainnet.bifrostnetwork.com/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bifrost", + "symbol": "BFC", + "decimals": 18 + }, + "infoURL": "https://bifrostnetwork.com", + "shortName": "bfc", + "chainId": 3068, + "networkId": 3068, + "icon": "bifrost", + "explorers": [ + { + "name": "explorer-thebifrost", + "url": "https://explorer.mainnet.bifrostnetwork.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-307.json b/_data/chains/eip155-307.json new file mode 100644 index 000000000000..c5cb6916cb6e --- /dev/null +++ b/_data/chains/eip155-307.json @@ -0,0 +1,23 @@ +{ + "name": "Lovely Network Testnet", + "chain": "Lovely", + "icon": "lovely", + "rpc": ["https://trpc.lovely.network"], + "faucets": ["https://faucet.lovely.network"], + "nativeCurrency": { + "name": "Lovely", + "symbol": "LOVELY", + "decimals": 18 + }, + "infoURL": "https://lovely.network", + "shortName": "LOVELY-Testnet", + "chainId": 307, + "networkId": 307, + "explorers": [ + { + "name": "Lovely Network Testnet", + "url": "https://tscan.lovely.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3073.json b/_data/chains/eip155-3073.json new file mode 100644 index 000000000000..5a66db9466b7 --- /dev/null +++ b/_data/chains/eip155-3073.json @@ -0,0 +1,24 @@ +{ + "name": "Movement EVM", + "chain": "MOVE", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Move", + "symbol": "MOVE", + "decimals": 18 + }, + "infoURL": "https://movementlabs.xyz", + "shortName": "move", + "chainId": 3073, + "networkId": 3073, + "icon": "move", + "explorers": [ + { + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } + ], + "status": "incubating" +} diff --git a/_data/chains/eip155-30730.json b/_data/chains/eip155-30730.json new file mode 100644 index 000000000000..9a753fc503f4 --- /dev/null +++ b/_data/chains/eip155-30730.json @@ -0,0 +1,24 @@ +{ + "name": "Movement EVM Legacy", + "chain": "MOVE", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Move", + "symbol": "MOVE", + "decimals": 18 + }, + "infoURL": "https://movementlabs.xyz", + "shortName": "moveleg", + "chainId": 30730, + "networkId": 30730, + "icon": "move", + "explorers": [ + { + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } + ], + "status": "incubating" +} diff --git a/_data/chains/eip155-30731.json b/_data/chains/eip155-30731.json new file mode 100644 index 000000000000..c6a757067e08 --- /dev/null +++ b/_data/chains/eip155-30731.json @@ -0,0 +1,24 @@ +{ + "name": "Movement EVM Devnet", + "chain": "MOVE", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Move", + "symbol": "MOVE", + "decimals": 18 + }, + "infoURL": "https://movementlabs.xyz", + "shortName": "movedev", + "chainId": 30731, + "networkId": 30731, + "icon": "move", + "explorers": [ + { + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } + ], + "status": "incubating" +} diff --git a/_data/chains/eip155-30732.json b/_data/chains/eip155-30732.json new file mode 100644 index 000000000000..ad75bfe608c3 --- /dev/null +++ b/_data/chains/eip155-30732.json @@ -0,0 +1,24 @@ +{ + "name": "Movement EVM Testnet", + "chain": "MOVE", + "rpc": ["https://mevm.testnet.imola.movementlabs.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Move", + "symbol": "MOVE", + "decimals": 18 + }, + "infoURL": "https://movementlabs.xyz", + "shortName": "movetest", + "chainId": 30732, + "networkId": 30732, + "icon": "move", + "explorers": [ + { + "name": "mevm explorer", + "url": "https://explorer.testnet.imola.movementlabs.xyz", + "standard": "none" + } + ], + "status": "incubating" +} diff --git a/_data/chains/eip155-308.json b/_data/chains/eip155-308.json new file mode 100644 index 000000000000..7145f83ece04 --- /dev/null +++ b/_data/chains/eip155-308.json @@ -0,0 +1,22 @@ +{ + "name": "Furtheon", + "chain": "Furtheon Network", + "rpc": ["https://rpc.furtheon.org"], + "faucets": [], + "nativeCurrency": { + "name": "Furtheon", + "symbol": "FTH", + "decimals": 18 + }, + "infoURL": "https://furtheon.org/", + "shortName": "furtheon", + "chainId": 308, + "networkId": 308, + "explorers": [ + { + "name": "furthscan", + "url": "http://furthscan.com", + "standard": "EIP3091" + } + ] +} 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-309.json b/_data/chains/eip155-309.json new file mode 100644 index 000000000000..0173400a5b75 --- /dev/null +++ b/_data/chains/eip155-309.json @@ -0,0 +1,26 @@ +{ + "name": "Wyzth Testnet", + "chain": "WYZ", + "rpc": ["https://rpc-testnet3.wyzthchain.org/"], + "faucets": [], + "nativeCurrency": { + "name": "Wyzth", + "symbol": "WYZ", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://wyzth.org/", + "shortName": "wyz", + "chainId": 309, + "networkId": 309, + "slip44": 1, + "icon": "wyzth_icon", + "explorers": [ + { + "name": "wyzth", + "url": "http://24.199.108.65:4000", + "icon": "wyzth", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-309075.json b/_data/chains/eip155-309075.json new file mode 100644 index 000000000000..d6ffec5f217d --- /dev/null +++ b/_data/chains/eip155-309075.json @@ -0,0 +1,23 @@ +{ + "name": "One World Chain Mainnet", + "chain": "One World Chain", + "icon": "oneWorldChainIcon", + "rpc": ["https://mainnet-rpc.oneworldchain.org"], + "faucets": [], + "nativeCurrency": { + "name": "OWCT", + "symbol": "OWCT", + "decimals": 18 + }, + "infoURL": "https://oneworldchain.org", + "shortName": "OWCTm", + "chainId": 309075, + "networkId": 309075, + "explorers": [ + { + "name": "One World Chain Mainnet Explorer", + "url": "https://mainnet.oneworldchain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-30939.json b/_data/chains/eip155-30939.json new file mode 100644 index 000000000000..1ddf89f0efe9 --- /dev/null +++ b/_data/chains/eip155-30939.json @@ -0,0 +1,37 @@ +{ + "name": "Dilithium3 Testnet", + "chain": "DLT", + "icon": "dilithium3", + "rpc": [ + "https://rpc-testnet.dilithium3.com", + "wss://rpc-testnet.dilithium3.com/ws" + ], + "faucets": ["https://faucet-testnet.dilithium3.com"], + "nativeCurrency": { + "name": "Dilithium3", + "symbol": "DLT", + "decimals": 18 + }, + "infoURL": "https://dilithium3.com", + "shortName": "dlt-testnet", + "chainId": 30939, + "networkId": 30939, + "slip44": 60, + "explorers": [ + { + "name": "D3 Navigator", + "url": "https://explorer-testnet.dilithium3.com", + "standard": "EIP3091" + } + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "status": "active", + "redFlags": [] +} diff --git a/_data/chains/eip155-31.json b/_data/chains/eip155-31.json index 53f988f9a368..cf492b6b482c 100644 --- a/_data/chains/eip155-31.json +++ b/_data/chains/eip155-31.json @@ -1,20 +1,27 @@ { - "name": "RSK Testnet", - "chain": "RSK", + "name": "Rootstock Testnet", + "chain": "Rootstock", "rpc": [ "https://public-node.testnet.rsk.co", "https://mycrypto.testnet.rsk.co" ], - "faucets": [ - "https://faucet.testnet.rsk.co" - ], + "faucets": ["https://faucet.rsk.co/"], + "icon": "rootstock", "nativeCurrency": { - "name": "RSK Testnet Ether", + "name": "Testnet Smart Bitcoin", "symbol": "tRBTC", "decimals": 18 }, - "infoURL": "https://rsk.co", + "infoURL": "https://rootstock.io", "shortName": "trsk", "chainId": 31, - "networkId": 31 + "networkId": 31, + "slip44": 1, + "explorers": [ + { + "name": "RSK Testnet Explorer", + "url": "https://explorer.testnet.rsk.co", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-3100.json b/_data/chains/eip155-3100.json new file mode 100644 index 000000000000..a59a6eda4a9b --- /dev/null +++ b/_data/chains/eip155-3100.json @@ -0,0 +1,19 @@ +{ + "name": "Immu3 EVM", + "chain": "EVMCC", + "rpc": [ + "https://fraa-flashbox-2800-rpc.a.stagenet.tanssi.network", + "wss://fraa-flashbox-2800-rpc.a.stagenet.tanssi.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "IMMU", + "symbol": "IMMU", + "decimals": 18 + }, + "infoURL": "https://immu3.io", + "shortName": "Immu3", + "chainId": 3100, + "networkId": 3100, + "explorers": [] +} diff --git a/_data/chains/eip155-3102.json b/_data/chains/eip155-3102.json new file mode 100644 index 000000000000..d9bbe86ab904 --- /dev/null +++ b/_data/chains/eip155-3102.json @@ -0,0 +1,19 @@ +{ + "name": "Vulture EVM Beta", + "chain": "VFIEVMCC", + "rpc": [ + "https://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network", + "wss://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "VFI", + "symbol": "VFI", + "decimals": 18 + }, + "infoURL": "https://vulture.finance", + "shortName": "VFI", + "chainId": 3102, + "networkId": 3102, + "explorers": [] +} diff --git a/_data/chains/eip155-3109.json b/_data/chains/eip155-3109.json new file mode 100644 index 000000000000..0bd813aeb3f0 --- /dev/null +++ b/_data/chains/eip155-3109.json @@ -0,0 +1,16 @@ +{ + "name": "SatoshiVM Alpha Mainnet", + "chain": "SatoshiVM", + "rpc": ["https://alpha-rpc-node-http.svmscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://www.satoshivm.io/", + "shortName": "SAVM", + "chainId": 3109, + "networkId": 3109, + "icon": "satoshivm" +} diff --git a/_data/chains/eip155-311.json b/_data/chains/eip155-311.json new file mode 100644 index 000000000000..b5d5c564c224 --- /dev/null +++ b/_data/chains/eip155-311.json @@ -0,0 +1,24 @@ +{ + "name": "Omax Mainnet", + "chain": "OMAX Chain", + "rpc": ["https://mainapi.omaxray.com", "https://mainapi.omaxscan.com"], + "faucets": ["https://faucet.omaxray.com/"], + "nativeCurrency": { + "name": "OMAX COIN", + "symbol": "OMAX", + "decimals": 18 + }, + "infoURL": "https://www.omaxcoin.com/", + "shortName": "omax", + "chainId": 311, + "networkId": 311, + "icon": "omaxchain", + "explorers": [ + { + "name": "Omax Chain Explorer", + "url": "https://omaxray.com", + "icon": "omaxray", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3110.json b/_data/chains/eip155-3110.json new file mode 100644 index 000000000000..3403d65e7f8a --- /dev/null +++ b/_data/chains/eip155-3110.json @@ -0,0 +1,16 @@ +{ + "name": "SatoshiVM Testnet", + "chain": "SatoshiVM", + "rpc": ["https://test-rpc-node-http.svmscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://www.satoshivm.io/", + "shortName": "tSAVM", + "chainId": 3110, + "networkId": 3110, + "icon": "satoshivm" +} diff --git a/_data/chains/eip155-31102.json b/_data/chains/eip155-31102.json index 925b32c6a423..ef772aee7ced 100644 --- a/_data/chains/eip155-31102.json +++ b/_data/chains/eip155-31102.json @@ -1,9 +1,7 @@ { "name": "Ethersocial Network", "chain": "ESN", - "rpc": [ - "https://api.esn.gonspool.com" - ], + "rpc": ["https://api.esn.gonspool.com"], "faucets": [], "nativeCurrency": { "name": "Ethersocial Network Ether", diff --git a/_data/chains/eip155-3111.json b/_data/chains/eip155-3111.json new file mode 100644 index 000000000000..32b77e142301 --- /dev/null +++ b/_data/chains/eip155-3111.json @@ -0,0 +1,24 @@ +{ + "name": "Alpha Chain Mainnet", + "chain": "Alpha Chain", + "rpc": ["https://rpc.goalpha.org"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.alphatoken.com/AlphaChain/about-alpha-chain", + "shortName": "alpha", + "chainId": 3111, + "networkId": 3111, + "slip44": 1, + "icon": "alphachain", + "explorers": [ + { + "name": "Alpha Chain Scan", + "url": "https://scan.goalpha.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-311752642.json b/_data/chains/eip155-311752642.json index 0ea0a8a47712..d779c5a1d8ca 100644 --- a/_data/chains/eip155-311752642.json +++ b/_data/chains/eip155-311752642.json @@ -2,9 +2,7 @@ "name": "OneLedger Mainnet", "chain": "OLT", "icon": "oneledger", - "rpc": [ - "https://mainnet-rpc.oneledger.network" - ], + "rpc": ["https://mainnet-rpc.oneledger.network"], "faucets": [], "nativeCurrency": { "name": "OLT", @@ -22,4 +20,4 @@ "standard": "EIP3091" } ] -} \ No newline at end of file +} diff --git a/_data/chains/eip155-31223.json b/_data/chains/eip155-31223.json new file mode 100644 index 000000000000..1eec26fd6fb9 --- /dev/null +++ b/_data/chains/eip155-31223.json @@ -0,0 +1,23 @@ +{ + "name": "CloudTx Mainnet", + "chain": "CLD", + "icon": "cloudtx", + "rpc": ["https://mainnet-rpc.cloudtx.finance"], + "faucets": [], + "nativeCurrency": { + "name": "CloudTx", + "symbol": "CLD", + "decimals": 18 + }, + "infoURL": "https://cloudtx.finance", + "shortName": "CLDTX", + "chainId": 31223, + "networkId": 31223, + "explorers": [ + { + "name": "cloudtxscan", + "url": "https://scan.cloudtx.finance", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-31224.json b/_data/chains/eip155-31224.json new file mode 100644 index 000000000000..6ad689684b77 --- /dev/null +++ b/_data/chains/eip155-31224.json @@ -0,0 +1,24 @@ +{ + "name": "CloudTx Testnet", + "chain": "CloudTx", + "icon": "cloudtx", + "rpc": ["https://testnet-rpc.cloudtx.finance"], + "faucets": ["https://faucet.cloudtx.finance"], + "nativeCurrency": { + "name": "CloudTx", + "symbol": "CLD", + "decimals": 18 + }, + "infoURL": "https://cloudtx.finance/", + "shortName": "CLD", + "chainId": 31224, + "networkId": 31224, + "slip44": 1, + "explorers": [ + { + "name": "cloudtxexplorer", + "url": "https://explorer.cloudtx.finance", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3125659152.json b/_data/chains/eip155-3125659152.json index 24fa01729654..a2fb155c1d1f 100644 --- a/_data/chains/eip155-3125659152.json +++ b/_data/chains/eip155-3125659152.json @@ -1,9 +1,7 @@ { "name": "Pirl", "chain": "PIRL", - "rpc": [ - "https://wallrpc.pirl.io" - ], + "rpc": ["https://wallrpc.pirl.io"], "faucets": [], "nativeCurrency": { "name": "Pirl Ether", diff --git a/_data/chains/eip155-313.json b/_data/chains/eip155-313.json new file mode 100644 index 000000000000..48cfd5a8c420 --- /dev/null +++ b/_data/chains/eip155-313.json @@ -0,0 +1,26 @@ +{ + "name": "Neurochain Mainnet", + "chain": "NCN", + "rpc": [ + "https://nc-rpc-prd1.neurochain.io", + "https://nc-rpc-prd2.neurochain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Neurochain", + "symbol": "NCN", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.neurochain.ai", + "shortName": "ncn", + "chainId": 313, + "networkId": 313, + "explorers": [ + { + "name": "neuroscan", + "url": "https://ncnscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3132023.json b/_data/chains/eip155-3132023.json new file mode 100644 index 000000000000..f22d36577766 --- /dev/null +++ b/_data/chains/eip155-3132023.json @@ -0,0 +1,18 @@ +{ + "name": "Sahara AI", + "chain": "Sahara", + "rpc": ["https://mainnet.saharalabs.ai"], + "faucets": [], + "nativeCurrency": { + "name": "Sahara AI", + "symbol": "SAHARA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://saharalabs.ai", + "shortName": "sahara", + "chainId": 3132023, + "networkId": 3132023, + "icon": "sahara", + "explorers": [] +} diff --git a/_data/chains/eip155-313313.json b/_data/chains/eip155-313313.json new file mode 100644 index 000000000000..f1c1f364c74d --- /dev/null +++ b/_data/chains/eip155-313313.json @@ -0,0 +1,24 @@ +{ + "name": "Sahara AI Testnet", + "chain": "Sahara", + "rpc": ["https://testnet.saharalabs.ai"], + "faucets": [], + "nativeCurrency": { + "name": "Sahara AI", + "symbol": "SAHARA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://saharalabs.ai", + "shortName": "saharatest", + "chainId": 313313, + "networkId": 313313, + "icon": "sahara", + "explorers": [ + { + "name": "Testnet Scan", + "url": "https://testnet-explorer.saharalabs.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-31337.json b/_data/chains/eip155-31337.json index f2f18daa804d..fa649a006a62 100644 --- a/_data/chains/eip155-31337.json +++ b/_data/chains/eip155-31337.json @@ -1,9 +1,7 @@ { "name": "GoChain Testnet", "chain": "GO", - "rpc": [ - "https://testnet-rpc.gochain.io" - ], + "rpc": ["https://testnet-rpc.gochain.io"], "faucets": [], "nativeCurrency": { "name": "GoChain Coin", @@ -14,10 +12,12 @@ "shortName": "got", "chainId": 31337, "networkId": 31337, - "slip44": 6060, - "explorers": [{ - "name": "GoChain Testnet Explorer", - "url": "https://testnet-explorer.gochain.io", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "GoChain Testnet Explorer", + "url": "https://testnet-explorer.gochain.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-314.json b/_data/chains/eip155-314.json new file mode 100644 index 000000000000..dc8583f3ba64 --- /dev/null +++ b/_data/chains/eip155-314.json @@ -0,0 +1,56 @@ +{ + "name": "Filecoin - Mainnet", + "chain": "FIL", + "icon": "filecoin", + "rpc": [ + "https://api.node.glif.io/", + "https://rpc.ankr.com/filecoin", + "https://filecoin-mainnet.chainstacklabs.com/rpc/v1", + "https://filfox.info/rpc/v1", + "https://filecoin.drpc.org", + "wss://filecoin.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "filecoin", + "symbol": "FIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin", + "chainId": 314, + "networkId": 314, + "slip44": 461, + "explorers": [ + { + "name": "Filfox", + "url": "https://filfox.info/en", + "standard": "none" + }, + { + "name": "Beryx", + "url": "https://beryx.zondax.ch", + "standard": "none" + }, + { + "name": "Glif Explorer", + "url": "https://explorer.glif.io", + "standard": "EIP3091" + }, + { + "name": "Dev.storage", + "url": "https://dev.storage", + "standard": "none" + }, + { + "name": "Filscan", + "url": "https://filscan.io", + "standard": "none" + }, + { + "name": "Filscout", + "url": "https://filscout.io/en", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-3141.json b/_data/chains/eip155-3141.json new file mode 100644 index 000000000000..8c27ccaa08c1 --- /dev/null +++ b/_data/chains/eip155-3141.json @@ -0,0 +1,19 @@ +{ + "name": "Filecoin - Hyperspace testnet", + "status": "deprecated", + "chain": "FIL", + "icon": "filecoin", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin-hyperspace", + "chainId": 3141, + "networkId": 3141, + "slip44": 1, + "explorers": [] +} diff --git a/_data/chains/eip155-31414.json b/_data/chains/eip155-31414.json new file mode 100644 index 000000000000..33007f85dc63 --- /dev/null +++ b/_data/chains/eip155-31414.json @@ -0,0 +1,23 @@ +{ + "name": "Evoke Testnet", + "chain": "Evoke", + "icon": "mthn", + "rpc": ["https://testnet-rpc.evokescan.org"], + "faucets": ["https://faucet.evokescan.org"], + "nativeCurrency": { + "name": "MTHN Testnet", + "symbol": "MTHN", + "decimals": 18 + }, + "infoURL": "https://testnet-explorer.evokescan.org", + "shortName": "tmthn", + "chainId": 31414, + "networkId": 31414, + "explorers": [ + { + "name": "Evoke SmartChain Testnet Explorer", + "url": "https://testnet-explorer.evokescan.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-31415.json b/_data/chains/eip155-31415.json new file mode 100644 index 000000000000..c0c0988e4450 --- /dev/null +++ b/_data/chains/eip155-31415.json @@ -0,0 +1,24 @@ +{ + "name": "Wirex Pay Mainnet", + "chain": "WirexPay", + "icon": "wpay", + "rpc": ["https://rpc.wirexpaychain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.wirexpaychain.com/tech/wirex-pay-chain", + "shortName": "wpay", + "chainId": 31415, + "networkId": 31415, + "explorers": [ + { + "name": "Wirex Pay Explorer", + "url": "https://blockscout.wirexpaychain.com", + "standard": "EIP3091" + } + ], + "redFlags": ["reusedChainId"] +} diff --git a/_data/chains/eip155-314159.json b/_data/chains/eip155-314159.json new file mode 100644 index 000000000000..9b99e3502eda --- /dev/null +++ b/_data/chains/eip155-314159.json @@ -0,0 +1,52 @@ +{ + "name": "Filecoin - Calibration testnet", + "chain": "FIL", + "icon": "filecoin", + "rpc": [ + "https://api.calibration.node.glif.io/rpc/v1", + "https://rpc.ankr.com/filecoin_testnet", + "https://filecoin-calibration.chainstacklabs.com/rpc/v1", + "https://filecoin-calibration.chainup.net/rpc/v1", + "https://calibration.filfox.info/rpc/v1", + "https://filecoin-calibration.drpc.org", + "wss://filecoin-calibration.drpc.org" + ], + "faucets": ["https://faucet.calibration.fildev.network/"], + "nativeCurrency": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin-calibration", + "chainId": 314159, + "networkId": 314159, + "slip44": 1, + "explorers": [ + { + "name": "Filscan - Calibration", + "url": "https://calibration.filscan.io", + "standard": "none" + }, + { + "name": "Filscout - Calibration", + "url": "https://calibration.filscout.com/en", + "standard": "none" + }, + { + "name": "Filfox - Calibration", + "url": "https://calibration.filfox.info", + "standard": "none" + }, + { + "name": "Glif Explorer - Calibration", + "url": "https://explorer.glif.io/?network=calibration", + "standard": "none" + }, + { + "name": "Beryx", + "url": "https://beryx.zondax.ch", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-3141592.json b/_data/chains/eip155-3141592.json new file mode 100644 index 000000000000..4bdd67c88383 --- /dev/null +++ b/_data/chains/eip155-3141592.json @@ -0,0 +1,19 @@ +{ + "name": "Filecoin - Butterfly testnet", + "chain": "FIL", + "status": "incubating", + "rpc": [], + "faucets": ["https://faucet.butterfly.fildev.network"], + "nativeCurrency": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin-butterfly", + "icon": "filecoin", + "chainId": 3141592, + "networkId": 3141592, + "slip44": 1, + "explorers": [] +} diff --git a/_data/chains/eip155-31415926.json b/_data/chains/eip155-31415926.json new file mode 100644 index 000000000000..a75d3c985d69 --- /dev/null +++ b/_data/chains/eip155-31415926.json @@ -0,0 +1,19 @@ +{ + "name": "Filecoin - Local testnet", + "chain": "FIL", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin-local", + "icon": "filecoin", + "chainId": 31415926, + "networkId": 31415926, + "slip44": 1, + "explorers": [] +} 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..e1f6c4f38d63 --- /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://rpc-http.mezo.boar.network", + "wss://rpc-ws.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 new file mode 100644 index 000000000000..5456943482f8 --- /dev/null +++ b/_data/chains/eip155-31753.json @@ -0,0 +1,18 @@ +{ + "name": "Xchain Mainnet (Deprecated)", + "chain": "XchainDeprecated", + "icon": "intd", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Intdestcoin", + "symbol": "INTD", + "decimals": 18 + }, + "infoURL": "https://chainlist.org/chain/31753", + "shortName": "INTD_deprecated", + "chainId": 31753, + "networkId": 31753, + "status": "deprecated", + "explorers": [] +} diff --git a/_data/chains/eip155-31754.json b/_data/chains/eip155-31754.json new file mode 100644 index 000000000000..acb7828bd5b7 --- /dev/null +++ b/_data/chains/eip155-31754.json @@ -0,0 +1,18 @@ +{ + "name": "Xchain Testnet (Deprecated)", + "chain": "XchainDeprecated", + "icon": "intd", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Intdestcoin Testnet", + "symbol": "INTD", + "decimals": 18 + }, + "infoURL": "https://chainlist.org/chain/31754", + "shortName": "tINTD_deprecated", + "chainId": 31754, + "networkId": 31754, + "status": "deprecated", + "explorers": [] +} diff --git a/_data/chains/eip155-32.json b/_data/chains/eip155-32.json index 92c544115569..8a47926d6b89 100644 --- a/_data/chains/eip155-32.json +++ b/_data/chains/eip155-32.json @@ -1,11 +1,8 @@ { "name": "GoodData Testnet", "chain": "GooD", - "rpc": [ - "https://test2.goodata.io" - ], - "faucets": [ - ], + "rpc": ["https://test2.goodata.io"], + "faucets": [], "nativeCurrency": { "name": "GoodData Testnet Ether", "symbol": "GooD", @@ -14,5 +11,6 @@ "infoURL": "https://www.goodata.org", "shortName": "GooDT", "chainId": 32, - "networkId": 32 + "networkId": 32, + "slip44": 1 } 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-32001.json b/_data/chains/eip155-32001.json new file mode 100644 index 000000000000..954ab4e33207 --- /dev/null +++ b/_data/chains/eip155-32001.json @@ -0,0 +1,25 @@ +{ + "name": "W3Gamez Holesky Testnet", + "chain": "ETH", + "rpc": ["https://rpc-holesky.w3gamez.network"], + "faucets": [], + "nativeCurrency": { + "name": "W3Gamez Testnet Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://web3games.com/", + "shortName": "w3gamez", + "chainId": 32001, + "networkId": 32001, + "slip44": 1, + "icon": "w3gamez", + "explorers": [ + { + "name": "W3Gamez Holesky Explorer", + "url": "https://w3gamez-holesky.web3games.com", + "icon": "web3games", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-321.json b/_data/chains/eip155-321.json index 7d25a648024e..852bf3351136 100644 --- a/_data/chains/eip155-321.json +++ b/_data/chains/eip155-321.json @@ -3,7 +3,8 @@ "chain": "KCC", "rpc": [ "https://rpc-mainnet.kcc.network", - "wss://rpc-ws-mainnet.kcc.network" + "https://kcc.mytokenpocket.vip", + "https://public-rpc.blockpi.io/http/kcc" ], "faucets": [], "nativeCurrency": { @@ -14,10 +15,13 @@ "infoURL": "https://kcc.io", "shortName": "kcs", "chainId": 321, - "networkId": 1, - "explorers": [{ - "name": "KCC Explorer", - "url": "https://explorer.kcc.io/en", - "standard": "EIP3091" - }] + "networkId": 321, + "slip44": 641, + "explorers": [ + { + "name": "KCC Explorer", + "url": "https://explorer.kcc.io/en", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-322.json b/_data/chains/eip155-322.json index 4fb3a7943dfa..c5528a827856 100644 --- a/_data/chains/eip155-322.json +++ b/_data/chains/eip155-322.json @@ -1,13 +1,8 @@ { "name": "KCC Testnet", "chain": "KCC", - "rpc": [ - "https://rpc-testnet.kcc.network", - "wss://rpc-ws-testnet.kcc.network" - ], - "faucets": [ - "https://faucet-testnet.kcc.network" - ], + "rpc": ["https://rpc-testnet.kcc.network"], + "faucets": ["https://faucet-testnet.kcc.network"], "nativeCurrency": { "name": "KuCoin Testnet Token", "symbol": "tKCS", @@ -17,9 +12,12 @@ "shortName": "kcst", "chainId": 322, "networkId": 322, - "explorers": [{ - "name": "kcc-scan", - "url": "https://scan-testnet.kcc.network", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "kcc-scan-testnet", + "url": "https://scan-testnet.kcc.network", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-322202.json b/_data/chains/eip155-322202.json new file mode 100644 index 000000000000..3f8afe757fff --- /dev/null +++ b/_data/chains/eip155-322202.json @@ -0,0 +1,25 @@ +{ + "name": "Parex Mainnet", + "title": "Parex Mainnet", + "chain": "Parex", + "rpc": ["https://mainnet-rpc.parex.network"], + "faucets": [], + "nativeCurrency": { + "name": "PAREX", + "symbol": "PRX", + "decimals": 18 + }, + "infoURL": "https://parex.network", + "shortName": "parex", + "chainId": 322202, + "networkId": 322202, + "icon": "parexmain", + "explorers": [ + { + "name": "Parex Mainnet Explorer", + "url": "https://scan.parex.network", + "icon": "parexmain", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-323.json b/_data/chains/eip155-323.json new file mode 100644 index 000000000000..5d4a03b58300 --- /dev/null +++ b/_data/chains/eip155-323.json @@ -0,0 +1,24 @@ +{ + "name": "BuyCex Infinity Chain", + "chain": "BUYCEX", + "rpc": ["https://rpc.buycex.net", "wss://socket.buycex.net"], + "faucets": [], + "nativeCurrency": { + "name": "Buycex", + "symbol": "BCX", + "decimals": 18 + }, + "infoURL": "https://infinity.buycex.com", + "shortName": "buycex", + "chainId": 323, + "networkId": 323, + "status": "active", + "explorers": [ + { + "name": "Blockscout", + "url": "https://buycex.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3230.json b/_data/chains/eip155-3230.json new file mode 100644 index 000000000000..c1d53329ca30 --- /dev/null +++ b/_data/chains/eip155-3230.json @@ -0,0 +1,26 @@ +{ + "name": "C9XChain", + "chain": "C9XChain", + "icon": "c9xchain", + "rpc": [ + "https://services.tanssi-mainnet.network/tanssi-2002", + "wss://services.tanssi-mainnet.network/tanssi-2002" + ], + "faucets": [], + "nativeCurrency": { + "name": "CXC", + "symbol": "CXC", + "decimals": 18 + }, + "infoURL": "https://c9tech.com.br/", + "shortName": "c9xchain", + "chainId": 3230, + "networkId": 3230, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscan-tanssi.c9tech.com.br", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-323213.json b/_data/chains/eip155-323213.json new file mode 100644 index 000000000000..38e48585aa32 --- /dev/null +++ b/_data/chains/eip155-323213.json @@ -0,0 +1,23 @@ +{ + "name": "Bloom Genesis Testnet", + "chain": "Bloom", + "icon": "bloom", + "rpc": ["https://testnet-rpc.bloomgenesis.com"], + "faucets": ["https://faucet.bloomgenesis.com"], + "nativeCurrency": { + "name": "Bloom", + "symbol": "BGBC", + "decimals": 18 + }, + "infoURL": "https://www.bloomgenesis.com", + "shortName": "BGBC-Testnet", + "chainId": 323213, + "networkId": 323213, + "explorers": [ + { + "name": "Bloom Genesis Testnet", + "url": "https://testnet.bloomgenesis.com", + "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..f6fa9f13bf45 --- /dev/null +++ b/_data/chains/eip155-323432.json @@ -0,0 +1,22 @@ +{ + "name": "World Mobile Chain Testnet", + "chain": "WOMOX", + "rpc": ["https://worldmobile-testnet.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-324.json b/_data/chains/eip155-324.json new file mode 100644 index 000000000000..a116378cf36e --- /dev/null +++ b/_data/chains/eip155-324.json @@ -0,0 +1,33 @@ +{ + "name": "zkSync Mainnet", + "chain": "ETH", + "rpc": [ + "https://mainnet.era.zksync.io", + "https://zksync.drpc.org", + "wss://zksync.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zksync.io/", + "shortName": "zksync", + "chainId": 324, + "networkId": 324, + "icon": "zksync-era", + "explorers": [ + { + "name": "zkSync Era Block Explorer", + "url": "https://explorer.zksync.io", + "icon": "zksync-era", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.zksync.io/" }] + } +} diff --git a/_data/chains/eip155-324705682.json b/_data/chains/eip155-324705682.json new file mode 100644 index 000000000000..a4888eee8ff0 --- /dev/null +++ b/_data/chains/eip155-324705682.json @@ -0,0 +1,26 @@ +{ + "name": "SKALE Base Sepolia", + "chain": "skale-base-sepolia", + "icon": "skale", + "rpc": [ + "https://base-sepolia-testnet.skalenodes.com/v1/jubilant-horrible-ancha", + "wss://base-sepolia-testnet.skalenodes.com/v1/ws/jubilant-horrible-ancha" + ], + "faucets": ["http://base-sepolia-faucet.skale.space"], + "nativeCurrency": { + "name": "Credits", + "symbol": "CREDIT", + "decimals": 18 + }, + "infoURL": "https://docs.skale.space/welcome/skale-on-base", + "shortName": "skale-base-sepolia", + "chainId": 324705682, + "networkId": 324705682, + "explorers": [ + { + "name": "Blockscout", + "url": "https://base-sepolia-testnet-explorer.skalenodes.com", + "standard": "EIP3091" + } + ] +} 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 5de79e750225..6f07f700d7d2 100644 --- a/_data/chains/eip155-32520.json +++ b/_data/chains/eip155-32520.json @@ -2,6 +2,7 @@ "name": "Bitgert Mainnet", "chain": "Brise", "rpc": [ + "https://rpc-bitgert.icecreamswap.com", "https://mainnet-rpc.brisescan.com", "https://chainrpc.com", "https://serverrpc.com" @@ -25,4 +26,4 @@ "standard": "EIP3091" } ] -} \ No newline at end of file +} 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-32659.json b/_data/chains/eip155-32659.json index 3308f5df8f48..38ace90080f8 100644 --- a/_data/chains/eip155-32659.json +++ b/_data/chains/eip155-32659.json @@ -1,18 +1,26 @@ { "name": "Fusion Mainnet", "chain": "FSN", - "rpc": [ - "https://mainnet.anyswap.exchange", - "https://fsn.dev/api" - ], + "icon": "fusion", + "rpc": ["https://mainnet.fusionnetwork.io", "wss://mainnet.fusionnetwork.io"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": [], "nativeCurrency": { "name": "Fusion", "symbol": "FSN", "decimals": 18 }, - "infoURL": "https://www.fusion.org/", + "infoURL": "https://fusion.org", "shortName": "fsn", "chainId": 32659, - "networkId": 32659 + "networkId": 32659, + "slip44": 288, + "explorers": [ + { + "name": "fsnscan", + "url": "https://fsnscan.com", + "icon": "fsnscan", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-3269.json b/_data/chains/eip155-3269.json new file mode 100644 index 000000000000..bca7f7565556 --- /dev/null +++ b/_data/chains/eip155-3269.json @@ -0,0 +1,15 @@ +{ + "name": "Dubxcoin network", + "chain": "DUBX", + "rpc": ["https://rpcmain.arabianchain.org"], + "faucets": [], + "nativeCurrency": { + "name": "Dubxcoin mainnet", + "symbol": "DUBX", + "decimals": 18 + }, + "infoURL": "https://arabianchain.org", + "shortName": "dubx", + "chainId": 3269, + "networkId": 3269 +} diff --git a/_data/chains/eip155-3270.json b/_data/chains/eip155-3270.json new file mode 100644 index 000000000000..3fb484b91103 --- /dev/null +++ b/_data/chains/eip155-3270.json @@ -0,0 +1,16 @@ +{ + "name": "Dubxcoin testnet", + "chain": "TESTDUBX", + "rpc": ["https://rpctestnet.arabianchain.org"], + "faucets": ["https://faucet.arabianchain.org/"], + "nativeCurrency": { + "name": "Dubxcoin testnet", + "symbol": "TDUBX", + "decimals": 18 + }, + "infoURL": "https://arabianchain.org", + "shortName": "testdubx", + "chainId": 3270, + "networkId": 3270, + "slip44": 1 +} diff --git a/_data/chains/eip155-327126.json b/_data/chains/eip155-327126.json new file mode 100644 index 000000000000..2d5c001c1521 --- /dev/null +++ b/_data/chains/eip155-327126.json @@ -0,0 +1,23 @@ +{ + "name": "WABA Chain Mainnet", + "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 new file mode 100644 index 000000000000..6496cf185ae6 --- /dev/null +++ b/_data/chains/eip155-32769.json @@ -0,0 +1,23 @@ +{ + "name": "Zilliqa 2", + "chain": "ZIL", + "rpc": ["https://api.zilliqa.com"], + "faucets": [], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com/", + "shortName": "zil", + "chainId": 32769, + "networkId": 32769, + "icon": "zilliqa", + "explorers": [ + { + "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-329.json b/_data/chains/eip155-329.json new file mode 100644 index 000000000000..ae6152a1becb --- /dev/null +++ b/_data/chains/eip155-329.json @@ -0,0 +1,25 @@ +{ + "name": "VirBiCoin", + "chain": "VBC", + "rpc": ["https://rpc.digitalregion.jp"], + "faucets": [], + "nativeCurrency": { + "name": "VBC", + "symbol": "VBC", + "decimals": 18 + }, + "infoURL": "https://vbc.digitalregion.jp", + "shortName": "virbicoin", + "chainId": 329, + "networkId": 329, + "icon": "vbc", + "explorers": [ + { + "name": "VirBiCoin Explorer", + "url": "https://explorer.digitalregion.jp", + "icon": "vbc", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-32990.json b/_data/chains/eip155-32990.json new file mode 100644 index 000000000000..a706d85e7a8e --- /dev/null +++ b/_data/chains/eip155-32990.json @@ -0,0 +1,23 @@ +{ + "name": "Zilliqa EVM Isolated Server", + "chain": "ZIL", + "rpc": ["https://zilliqa-isolated-server.zilliqa.com/"], + "faucets": ["https://dev-wallet.zilliqa.com/faucet?network=isolated_server"], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com/", + "shortName": "zil-isolated-server", + "chainId": 32990, + "networkId": 32990, + "icon": "zilliqa", + "explorers": [ + { + "name": "Zilliqa EVM Isolated Server Explorer", + "url": "https://devex.zilliqa.com/?network=https://zilliqa-isolated-server.zilliqa.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-33.json b/_data/chains/eip155-33.json index 74c4ad12113f..0ff60bbe62ad 100644 --- a/_data/chains/eip155-33.json +++ b/_data/chains/eip155-33.json @@ -1,11 +1,8 @@ { "name": "GoodData Mainnet", "chain": "GooD", - "rpc": [ - "https://rpc.goodata.io" - ], - "faucets": [ - ], + "rpc": ["https://rpc.goodata.io"], + "faucets": [], "nativeCurrency": { "name": "GoodData Mainnet Ether", "symbol": "GooD", 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-33033.json b/_data/chains/eip155-33033.json new file mode 100644 index 000000000000..773570be5ac2 --- /dev/null +++ b/_data/chains/eip155-33033.json @@ -0,0 +1,23 @@ +{ + "name": "Entangle Mainnet", + "chain": "NGL", + "icon": "ngl", + "rpc": ["https://json-rpc.entangle.fi"], + "faucets": [], + "nativeCurrency": { + "name": "Entangle", + "symbol": "NGL", + "decimals": 18 + }, + "infoURL": "https://www.entangle.fi", + "shortName": "ngl", + "chainId": 33033, + "networkId": 33033, + "explorers": [ + { + "name": "Entangle Mainnet Explorer", + "url": "https://explorer.entangle.fi", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-3306.json b/_data/chains/eip155-3306.json new file mode 100644 index 000000000000..01952a297a24 --- /dev/null +++ b/_data/chains/eip155-3306.json @@ -0,0 +1,24 @@ +{ + "name": "Debounce Subnet Testnet", + "chain": "Debounce Network", + "icon": "debounce", + "rpc": ["https://dev-rpc.debounce.network"], + "faucets": [], + "nativeCurrency": { + "name": "Debounce Network", + "symbol": "DB", + "decimals": 18 + }, + "infoURL": "https://debounce.network", + "shortName": "debounce-devnet", + "chainId": 3306, + "networkId": 3306, + "slip44": 1, + "explorers": [ + { + "name": "Debounce Devnet Explorer", + "url": "https://explorer.debounce.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-330844.json b/_data/chains/eip155-330844.json new file mode 100644 index 000000000000..a2829a37151d --- /dev/null +++ b/_data/chains/eip155-330844.json @@ -0,0 +1,24 @@ +{ + "name": "TTcoin Smart Chain Mainnet", + "chain": "TSC", + "icon": "tscscan", + "rpc": ["https://mainnet-rpc.tscscan.com"], + "faucets": ["https://faucet.tscscan.com"], + "nativeCurrency": { + "name": "TTcoin", + "symbol": "TC", + "decimals": 18 + }, + "infoURL": "https://ttcoin.info/", + "shortName": "tc", + "chainId": 330844, + "networkId": 330844, + "explorers": [ + { + "name": "TTcoin Smart Chain Explorer", + "url": "https://tscscan.com", + "standard": "EIP3091", + "icon": "tscscan" + } + ] +} 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 new file mode 100644 index 000000000000..84c5297134bc --- /dev/null +++ b/_data/chains/eip155-33101.json @@ -0,0 +1,23 @@ +{ + "name": "Zilliqa 2 Testnet", + "chain": "ZIL", + "rpc": ["https://api.testnet.zilliqa.com"], + "faucets": ["https://faucet.testnet.zilliqa.com"], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com", + "shortName": "zil-testnet", + "chainId": 33101, + "networkId": 33101, + "slip44": 1, + "explorers": [ + { + "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-33133.json b/_data/chains/eip155-33133.json new file mode 100644 index 000000000000..f09dee203d0a --- /dev/null +++ b/_data/chains/eip155-33133.json @@ -0,0 +1,17 @@ +{ + "name": "Entangle Testnet", + "chain": "NGL", + "icon": "ngl", + "rpc": ["https://evm-testnet.entangle.fi"], + "faucets": [], + "nativeCurrency": { + "name": "Entangle", + "symbol": "NGL", + "decimals": 18 + }, + "infoURL": "https://www.entangle.fi", + "shortName": "tngl", + "chainId": 33133, + "networkId": 33133, + "explorers": [] +} 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-33210.json b/_data/chains/eip155-33210.json new file mode 100644 index 000000000000..f2fd57ebb8ca --- /dev/null +++ b/_data/chains/eip155-33210.json @@ -0,0 +1,27 @@ +{ + "name": "Cloudverse Subnet", + "chain": "CLOUDVERSE", + "rpc": ["https://subnets.avax.network/cloudverse/mainnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "XCLOUD", + "symbol": "XCLOUD", + "decimals": 18 + }, + "infoURL": "https://muadao.build/", + "shortName": "cloudverse", + "chainId": 33210, + "networkId": 33210, + "explorers": [ + { + "name": "CLOUDVERSE Explorer", + "url": "https://subnets.avax.network/cloudverse", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-333.json b/_data/chains/eip155-333.json index 53c061b9f91a..1f5f962195a7 100644 --- a/_data/chains/eip155-333.json +++ b/_data/chains/eip155-333.json @@ -1,23 +1,22 @@ { - "name": "Web3Q Mainnet", - "chain": "Web3Q", - "rpc": [ - "https://mainnet.web3q.io:8545" - ], - "faucets": [ - ], + "name": "EthStorage Mainnet", + "chain": "EthStorage", + "rpc": ["https://rpc.mainnet.ethstorage.io:9540"], + "faucets": [], "nativeCurrency": { - "name": "Web3Q", - "symbol": "W3Q", + "name": "Ether", + "symbol": "ETH", "decimals": 18 }, - "infoURL": "https://web3q.io/home.w3q/", - "shortName": "w3q", + "infoURL": "https://ethstorage.io/", + "shortName": "es-m", "chainId": 333, "networkId": 333, - "explorers": [{ - "name": "w3q-mainnet", - "url": "https://explorer.mainnet.web3q.io", - "standard": "EIP3091" - }] + "slip44": 1, + "status": "incubating", + "redFlags": ["reusedChainId"], + "parent": { + "type": "L2", + "chain": "eip155-1" + } } diff --git a/_data/chains/eip155-333000333.json b/_data/chains/eip155-333000333.json new file mode 100644 index 000000000000..d39c8a9efe58 --- /dev/null +++ b/_data/chains/eip155-333000333.json @@ -0,0 +1,32 @@ +{ + "name": "Meld", + "title": "Meld Mainnet", + "chain": "MELD", + "rpc": ["https://rpc-1.meld.com"], + "faucets": [], + "features": [], + "nativeCurrency": { + "name": "gMeld", + "symbol": "gMELD", + "decimals": 18 + }, + "icon": "meld", + "infoURL": "https://meld.com", + "shortName": "meld", + "chainId": 333000333, + "networkId": 333000333, + "explorers": [ + { + "name": "explorer", + "url": "https://meldscan.io", + "icon": "meld", + "standard": "EIP3091" + }, + { + "name": "explorer", + "url": "https://subnets.avax.network/meld", + "icon": "meld", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3331.json b/_data/chains/eip155-3331.json index 8c9ac9b52c87..35701a1874db 100644 --- a/_data/chains/eip155-3331.json +++ b/_data/chains/eip155-3331.json @@ -2,12 +2,8 @@ "name": "ZCore Testnet", "chain": "Beach", "icon": "zcore", - "rpc": [ - "https://rpc-testnet.zcore.cash" - ], - "faucets": [ - "https://faucet.zcore.cash" - ], + "rpc": ["https://rpc-testnet.zcore.cash"], + "faucets": ["https://faucet.zcore.cash"], "nativeCurrency": { "name": "ZCore", "symbol": "ZCR", @@ -16,5 +12,6 @@ "infoURL": "https://zcore.cash", "shortName": "zcrbeach", "chainId": 3331, - "networkId": 3331 + "networkId": 3331, + "slip44": 1 } diff --git a/_data/chains/eip155-3332.json b/_data/chains/eip155-3332.json new file mode 100644 index 000000000000..170beb2000b0 --- /dev/null +++ b/_data/chains/eip155-3332.json @@ -0,0 +1,21 @@ +{ + "name": "EthStorage L2 Mainnet", + "chain": "EthStorage L2", + "rpc": ["https://rpc.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-100011" + } +} diff --git a/_data/chains/eip155-3333.json b/_data/chains/eip155-3333.json index 6444b138940e..9bc935cd80d6 100644 --- a/_data/chains/eip155-3333.json +++ b/_data/chains/eip155-3333.json @@ -1,23 +1,20 @@ { - "name": "Web3Q Testnet", - "chain": "Web3Q", - "rpc": [ - "https://testnet.web3q.io:8545" - ], - "faucets": [ - ], + "name": "EthStorage Testnet", + "chain": "EthStorage", + "rpc": ["https://rpc.testnet.ethstorage.io:9546"], + "faucets": [], "nativeCurrency": { - "name": "Web3Q", - "symbol": "W3Q", + "name": "Ether", + "symbol": "ETH", "decimals": 18 }, - "infoURL": "https://testnet.web3q.io/home.w3q/", - "shortName": "w3q-t", + "infoURL": "https://ethstorage.io/", + "shortName": "es-t", "chainId": 3333, "networkId": 3333, - "explorers": [{ - "name": "w3q-testnet", - "url": "https://explorer.testnet.web3q.io", - "standard": "EIP3091" - }] + "slip44": 1, + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } } diff --git a/_data/chains/eip155-333313.json b/_data/chains/eip155-333313.json new file mode 100644 index 000000000000..437ebad1ae2a --- /dev/null +++ b/_data/chains/eip155-333313.json @@ -0,0 +1,23 @@ +{ + "name": "Bloom Genesis Mainnet", + "chain": "Bloom", + "icon": "bloom", + "rpc": ["https://mainnet-rpc.bloomgenesis.com"], + "faucets": [], + "nativeCurrency": { + "name": "Bloom", + "symbol": "BGBC", + "decimals": 18 + }, + "infoURL": "https://www.bloomgenesis.com", + "shortName": "BGBC", + "chainId": 333313, + "networkId": 333313, + "explorers": [ + { + "name": "Bloom Genesis Mainnet", + "url": "https://explorer.bloomgenesis.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-33333.json b/_data/chains/eip155-33333.json new file mode 100644 index 000000000000..3b05960618cc --- /dev/null +++ b/_data/chains/eip155-33333.json @@ -0,0 +1,25 @@ +{ + "name": "Aves Mainnet", + "chain": "AVS", + "rpc": ["https://rpc.avescoin.io"], + "faucets": [], + "nativeCurrency": { + "name": "Aves", + "symbol": "AVS", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://avescoin.io", + "shortName": "avs", + "chainId": 33333, + "networkId": 33333, + "icon": "aves", + "explorers": [ + { + "name": "avescan", + "url": "https://avescan.io", + "icon": "avescan", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-333331.json b/_data/chains/eip155-333331.json new file mode 100644 index 000000000000..1113133d9b8c --- /dev/null +++ b/_data/chains/eip155-333331.json @@ -0,0 +1,33 @@ +{ + "name": "Aves Testnet", + "chain": "AVST", + "rpc": ["https://test.rpc.avescoin.io"], + "faucets": [], + "nativeCurrency": { + "name": "AvesT", + "symbol": "AVST", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://ethereum.org", + "shortName": "avst", + "chainId": 333331, + "networkId": 333331, + "slip44": 1, + "icon": "aves", + "explorers": [ + { + "name": "avescan", + "url": "https://testnet.avescoin.io", + "icon": "avescan", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-333333.json b/_data/chains/eip155-333333.json new file mode 100644 index 000000000000..0f9033f17d3b --- /dev/null +++ b/_data/chains/eip155-333333.json @@ -0,0 +1,33 @@ +{ + "name": "Nativ3 Testnet", + "chainId": 333333, + "shortName": "N3-Test", + "chain": "N3-Test", + "icon": "nativ3", + "networkId": 333333, + "slip44": 1, + "nativeCurrency": { + "name": "USNT", + "symbol": "USNT", + "decimals": 18 + }, + "rpc": ["https://rpctest.nativ3.network", "wss://wstest.nativ3.network"], + "faucets": [], + "explorers": [ + { + "name": "Nativ3 Test Explorer", + "url": "https://scantest.nativ3.network", + "standard": "EIP3091" + } + ], + "infoURL": "https://nativ3.network", + "parent": { + "type": "L2", + "chain": "eip155-421613", + "bridges": [ + { + "url": "https://bridgetest.nativ3.network" + } + ] + } +} diff --git a/_data/chains/eip155-3334.json b/_data/chains/eip155-3334.json index 4d4ba513d229..8da170f477d2 100644 --- a/_data/chains/eip155-3334.json +++ b/_data/chains/eip155-3334.json @@ -1,11 +1,8 @@ { "name": "Web3Q Galileo", "chain": "Web3Q", - "rpc": [ - "https://galileo.web3q.io:8545" - ], - "faucets": [ - ], + "rpc": ["https://galileo.web3q.io:8545"], + "faucets": [], "nativeCurrency": { "name": "Web3Q", "symbol": "W3Q", @@ -15,9 +12,11 @@ "shortName": "w3q-g", "chainId": 3334, "networkId": 3334, - "explorers": [{ - "name": "w3q-galileo", - "url": "https://explorer.galileo.web3q.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "w3q-galileo", + "url": "https://explorer.galileo.web3q.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-3335.json b/_data/chains/eip155-3335.json new file mode 100644 index 000000000000..c8cb83ac84f1 --- /dev/null +++ b/_data/chains/eip155-3335.json @@ -0,0 +1,27 @@ +{ + "name": "QuarkChain L2 Beta Testnet", + "chain": "QuarkChain", + "rpc": ["https://rpc.beta.testnet.l2.quarkchain.io:8545"], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkcl2-b", + "chainId": 3335, + "networkId": 3335, + "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..7fe85fd35af6 --- /dev/null +++ b/_data/chains/eip155-3336.json @@ -0,0 +1,21 @@ +{ + "name": "EthStorage L2 Testnet", + "chain": "EthStorage L2", + "rpc": ["https://rpc.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-110011" + } +} diff --git a/_data/chains/eip155-333666.json b/_data/chains/eip155-333666.json new file mode 100644 index 000000000000..9031d25ceec3 --- /dev/null +++ b/_data/chains/eip155-333666.json @@ -0,0 +1,23 @@ +{ + "name": "Oone Chain Testnet", + "chain": "OONE Testnet", + "rpc": ["https://rpc.testnet.oonechain.com"], + "faucets": ["https://apps-test.adigium.com/faucet"], + "nativeCurrency": { + "name": "tOONE", + "symbol": "tOONE", + "decimals": 18 + }, + "infoURL": "https://oonechain.com", + "shortName": "oonetest", + "chainId": 333666, + "networkId": 333666, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.oonescan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-3337.json b/_data/chains/eip155-3337.json new file mode 100644 index 000000000000..efcd4049242a --- /dev/null +++ b/_data/chains/eip155-3337.json @@ -0,0 +1,17 @@ +{ + "name": "EthStorage Devnet", + "chain": "EthStorage", + "rpc": ["https://rpc.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-333777.json b/_data/chains/eip155-333777.json new file mode 100644 index 000000000000..6d7470938de4 --- /dev/null +++ b/_data/chains/eip155-333777.json @@ -0,0 +1,22 @@ +{ + "name": "Oone Chain Devnet", + "chain": "OONE Devnet", + "rpc": ["https://rpc.dev.oonechain.com"], + "faucets": ["https://apps-test.adigium.com/faucet"], + "nativeCurrency": { + "name": "tOONE", + "symbol": "tOONE", + "decimals": 18 + }, + "infoURL": "https://oonechain.com", + "shortName": "oonedev", + "chainId": 333777, + "networkId": 333777, + "explorers": [ + { + "name": "blockscout", + "url": "https://dev.oonescan.com", + "standard": "none" + } + ] +} 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-33385.json b/_data/chains/eip155-33385.json new file mode 100644 index 000000000000..29cfe9cd4945 --- /dev/null +++ b/_data/chains/eip155-33385.json @@ -0,0 +1,23 @@ +{ + "name": "Zilliqa EVM Devnet", + "chain": "ZIL", + "rpc": ["https://api.devnet.zilliqa.com/"], + "faucets": ["https://faucet.devnet.zilliqa.com/"], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com/", + "shortName": "zil-devnet", + "chainId": 33385, + "networkId": 33385, + "icon": "zilliqa", + "explorers": [ + { + "name": "Zilliqa EVM Devnet Explorer", + "url": "https://otterscan.devnet.zilliqa.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-333888.json b/_data/chains/eip155-333888.json index 633e05b070b0..3bd5246827de 100644 --- a/_data/chains/eip155-333888.json +++ b/_data/chains/eip155-333888.json @@ -2,12 +2,8 @@ "name": "Polis Testnet", "chain": "Sparta", "icon": "polis", - "rpc": [ - "https://sparta-rpc.polis.tech" - ], - "faucets": [ - "https://faucet.polis.tech" - ], + "rpc": ["https://sparta-rpc.polis.tech"], + "faucets": ["https://faucet.polis.tech"], "nativeCurrency": { "name": "tPolis", "symbol": "tPOLIS", @@ -16,5 +12,6 @@ "infoURL": "https://polis.tech", "shortName": "sparta", "chainId": 333888, - "networkId": 333888 + "networkId": 333888, + "slip44": 1 } diff --git a/_data/chains/eip155-3339.json b/_data/chains/eip155-3339.json new file mode 100644 index 000000000000..3b1610c3ecf9 --- /dev/null +++ b/_data/chains/eip155-3339.json @@ -0,0 +1,18 @@ +{ + "name": "EthStorage L2 Devnet", + "chain": "EthStorage L2", + "rpc": ["https://rpc.devnet.l2.ethstorage.io:9540"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ethstorage.io/", + "shortName": "esl2-d", + "chainId": 3339, + "networkId": 3339, + "slip44": 1, + "status": "incubating", + "redFlags": ["reusedChainId"] +} diff --git a/_data/chains/eip155-333999.json b/_data/chains/eip155-333999.json index b36b0aba560f..15e899282e59 100644 --- a/_data/chains/eip155-333999.json +++ b/_data/chains/eip155-333999.json @@ -2,12 +2,8 @@ "name": "Polis Mainnet", "chain": "Olympus", "icon": "polis", - "rpc": [ - "https://rpc.polis.tech" - ], - "faucets": [ - "https://faucet.polis.tech" - ], + "rpc": ["https://rpc.polis.tech"], + "faucets": ["https://faucet.polis.tech"], "nativeCurrency": { "name": "Polis", "symbol": "POLIS", 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-3343.json b/_data/chains/eip155-3343.json new file mode 100644 index 000000000000..15e65e7bb3c3 --- /dev/null +++ b/_data/chains/eip155-3343.json @@ -0,0 +1,22 @@ +{ + "name": "Edge", + "chain": "ETH", + "rpc": ["https://edge-mainnet.g.alchemy.com/public"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.edgex.exchange", + "shortName": "edge", + "chainId": 3343, + "networkId": 3343, + "explorers": [ + { + "name": "Alchemy Explorer", + "url": "https://edge-mainnet.explorer.alchemy.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-33431.json b/_data/chains/eip155-33431.json new file mode 100644 index 000000000000..17224be603c9 --- /dev/null +++ b/_data/chains/eip155-33431.json @@ -0,0 +1,22 @@ +{ + "name": "Edge Testnet", + "chain": "ETH", + "rpc": ["https://edge-testnet.g.alchemy.com/public"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.edgex.exchange", + "shortName": "edge-testnet", + "chainId": 33431, + "networkId": 33431, + "explorers": [ + { + "name": "Alchemy Explorer", + "url": "https://edge-testnet.explorer.alchemy.com", + "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 new file mode 100644 index 000000000000..ad5b5707bccb --- /dev/null +++ b/_data/chains/eip155-33469.json @@ -0,0 +1,23 @@ +{ + "name": "Zilliqa 2 EVM devnet", + "chain": "ZIL", + "rpc": ["https://api.zq2-devnet.zilliqa.com"], + "faucets": ["https://faucet.zq2-devnet.zilliqa.com"], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com/", + "shortName": "zq2-devnet", + "chainId": 33469, + "networkId": 33469, + "icon": "zilliqa", + "explorers": [ + { + "name": "Zilliqa-2 EVM Devnet Explorer", + "url": "https://explorer.zq2-devnet.zilliqa.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-335.json b/_data/chains/eip155-335.json index aea5f4b4da85..658e166ebe44 100644 --- a/_data/chains/eip155-335.json +++ b/_data/chains/eip155-335.json @@ -2,10 +2,7 @@ "name": "DFK Chain Test", "chain": "DFK", "icon": "dfk", - "network": "testnet", - "rpc": [ - "https://subnets.avax.network/defi-kingdoms/dfk-chain-testnet/rpc" - ], + "rpc": ["https://subnets.avax.network/defi-kingdoms/dfk-chain-testnet/rpc"], "faucets": [], "nativeCurrency": { "name": "Jewel", @@ -16,6 +13,7 @@ "shortName": "DFKTEST", "chainId": 335, "networkId": 335, + "slip44": 1, "explorers": [ { "name": "ethernal", @@ -24,4 +22,4 @@ "standard": "none" } ] -} \ No newline at end of file +} diff --git a/_data/chains/eip155-335700.json b/_data/chains/eip155-335700.json new file mode 100644 index 000000000000..1c1d89d79248 --- /dev/null +++ b/_data/chains/eip155-335700.json @@ -0,0 +1,26 @@ +{ + "name": "Scenium", + "chain": "Scenium", + "icon": "scenium", + "rpc": [ + "https://services.tanssi-mainnet.network/tanssi-2004", + "wss://services.tanssi-mainnet.network/tanssi-2004" + ], + "faucets": [], + "nativeCurrency": { + "name": "SCEN", + "symbol": "SCEN", + "decimals": 18 + }, + "infoURL": "hhttps://www.scenium.io/", + "shortName": "scenium", + "chainId": 335700, + "networkId": 335700, + "explorers": [ + { + "name": "Tanssi EVM Basic Explorer", + "url": "https://evmexplorer.tanssi-chains.network/?rpcUrl=https://services.tanssi-mainnet.network/tanssi-2004", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-336.json b/_data/chains/eip155-336.json index a86553f62640..82325a43bba0 100644 --- a/_data/chains/eip155-336.json +++ b/_data/chains/eip155-336.json @@ -2,8 +2,12 @@ "name": "Shiden", "chain": "SDN", "rpc": [ - "https://rpc.shiden.astar.network:8545", - "wss://shiden.api.onfinality.io/public-ws" + "https://shiden.api.onfinality.io/public", + "https://shiden-rpc.dwellir.com", + "https://shiden.public.blastapi.io", + "wss://shiden.api.onfinality.io/public-ws", + "wss://shiden.public.blastapi.io", + "wss://shiden-rpc.dwellir.com" ], "faucets": [], "nativeCurrency": { @@ -22,6 +26,12 @@ "url": "https://shiden.subscan.io", "standard": "none", "icon": "subscan" + }, + { + "name": "blockscout", + "url": "https://blockscout.com/shiden", + "icon": "blockscout", + "standard": "EIP3091" } ] } 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-336655.json b/_data/chains/eip155-336655.json new file mode 100644 index 000000000000..697cca988dc7 --- /dev/null +++ b/_data/chains/eip155-336655.json @@ -0,0 +1,29 @@ +{ + "name": "UPchain Testnet", + "chain": "UPchain", + "rpc": ["https://rpc-testnet.uniport.network"], + "faucets": ["https://faucet-testnet.uniport.network"], + "nativeCurrency": { + "name": "UBTC", + "symbol": "UBTC", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://uniport.network", + "shortName": "UPchain-testnet", + "chainId": 336655, + "networkId": 336655, + "icon": "up", + "explorers": [ + { + "name": "UPchain Testnet Explorer", + "url": "https://explorer-testnet.uniport.network", + "icon": "up", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-336666.json b/_data/chains/eip155-336666.json new file mode 100644 index 000000000000..a1b484a52bea --- /dev/null +++ b/_data/chains/eip155-336666.json @@ -0,0 +1,29 @@ +{ + "name": "UPchain Mainnet", + "chain": "UPchain", + "rpc": ["https://rpc.uniport.network"], + "nativeCurrency": { + "name": "UBTC", + "symbol": "UBTC", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "infoURL": "https://uniport.network", + "shortName": "UPchain-mainnet", + "chainId": 336666, + "networkId": 336666, + "icon": "up", + "explorers": [ + { + "name": "UPchain Mainnet Explorer", + "url": "https://explorer.uniport.network", + "icon": "up", + "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..262093157d06 --- /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://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": "xone_test", + "url": "https://testnet.xonescan.com", + "icon": "xone_test", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-338.json b/_data/chains/eip155-338.json index 40aaeda8f04e..cdec9b715300 100644 --- a/_data/chains/eip155-338.json +++ b/_data/chains/eip155-338.json @@ -2,24 +2,26 @@ "name": "Cronos Testnet", "chain": "CRO", "rpc": [ - "https://cronos-testnet-3.crypto.org:8545", - "wss://cronos-testnet-3.crypto.org:8546" - ], - "faucets": [ - "https://cronos.crypto.org/faucet" + "https://evm-t3.cronos.org", + "https://cronos-testnet.drpc.org", + "wss://cronos-testnet.drpc.org" ], + "faucets": ["https://cronos.org/faucet"], "nativeCurrency": { - "name": "Crypto.org Test Coin", + "name": "Cronos Test Coin", "symbol": "TCRO", "decimals": 18 }, - "infoURL": "https://cronos.crypto.org", + "infoURL": "https://cronos.org", "shortName": "tcro", "chainId": 338, "networkId": 338, - "explorers": [{ - "name": "Cronos Testnet Explorer", - "url": "https://cronos.crypto.org/explorer/testnet3", - "standard": "none" - }] + "slip44": 1, + "explorers": [ + { + "name": "Cronos Testnet Explorer", + "url": "https://explorer.cronos.org/testnet", + "standard": "none" + } + ] } 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 new file mode 100644 index 000000000000..82bd2fe377b1 --- /dev/null +++ b/_data/chains/eip155-33979.json @@ -0,0 +1,31 @@ +{ + "name": "Funki", + "chain": "ETH", + "icon": "funki", + "rpc": [ + "https://rpc-mainnet.funkichain.com", + "wss://rpc-mainnet.funkichain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://funkichain.com", + "shortName": "funki", + "chainId": 33979, + "networkId": 33979, + "explorers": [ + { + "name": "Funki Mainnet Explorer", + "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 new file mode 100644 index 000000000000..0a106540b95f --- /dev/null +++ b/_data/chains/eip155-3397901.json @@ -0,0 +1,33 @@ +{ + "name": "Funki Sepolia Testnet", + "chain": "ETH", + "icon": "funki", + "rpc": ["https://funki-testnet.alt.technology"], + "faucets": ["https://funkichain.com/portfolio"], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://funkichain.com", + "shortName": "funkisepolia", + "chainId": 3397901, + "networkId": 3397901, + "explorers": [ + { + "name": "Funki Sepolia Testnet Explorer", + "url": "https://testnet.funkiscan.io", + "standard": "none" + }, + { + "name": "Funki Sepolia Sandbox Explorer", + "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-34.json b/_data/chains/eip155-34.json index 7a509601d057..077914cc223f 100644 --- a/_data/chains/eip155-34.json +++ b/_data/chains/eip155-34.json @@ -1,20 +1,24 @@ { - "name": "Dithereum Testnet", - "chain": "DTH", - "icon": "dithereum", - "rpc": [ - "https://node-testnet.dithereum.io" - ], - "faucets": [ - "https://faucet.dithereum.org" - ], + "name": "SecureChain Mainnet", + "chain": "SCAI", + "icon": "scaiIcon", + "rpc": ["https://mainnet-rpc.scai.network"], + "faucets": [], "nativeCurrency": { - "name": "Dither", - "symbol": "DTH", + "name": "SecureChain", + "symbol": "SCAI", "decimals": 18 }, - "infoURL": "https://dithereum.org", - "shortName": "dth", + "infoURL": "https://securechain.ai", + "shortName": "scai", "chainId": 34, - "networkId": 34 + "networkId": 34, + "redFlags": ["reusedChainId"], + "explorers": [ + { + "name": "SecureChain Mainnet", + "url": "https://explorer.securechain.ai", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-3400.json b/_data/chains/eip155-3400.json index d4df1cd876ad..6266cf34465a 100644 --- a/_data/chains/eip155-3400.json +++ b/_data/chains/eip155-3400.json @@ -1,10 +1,7 @@ { "name": "Paribu Net Mainnet", "chain": "PRB", - "network": "Paribu Net", - "rpc": [ - "https://rpc.paribu.network" - ], + "rpc": ["https://rpc.paribu.network"], "faucets": [], "nativeCurrency": { "name": "PRB", @@ -16,10 +13,11 @@ "chainId": 3400, "networkId": 3400, "icon": "prb", - "explorers": [{ - "name": "Paribu Net Explorer", - "url": "https://explorer.paribu.network", - "icon": "explorer", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "Paribu Net Explorer", + "url": "https://explorer.paribu.network", + "standard": "EIP3091" + } + ] } 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 new file mode 100644 index 000000000000..c4cefd1b87ea --- /dev/null +++ b/_data/chains/eip155-3424.json @@ -0,0 +1,23 @@ +{ + "name": "EVOLVE Mainnet", + "chain": "EVO", + "icon": "evolveIcon", + "rpc": ["https://rpc.evoexplorer.com"], + "faucets": [], + "nativeCurrency": { + "name": "Evolve", + "symbol": "EVO", + "decimals": 18 + }, + "infoURL": "https://evolveblockchain.io", + "shortName": "EVOm", + "chainId": 3424, + "networkId": 3424, + "explorers": [ + { + "name": "Evolve Mainnet Explorer", + "url": "https://evoexplorer.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3434.json b/_data/chains/eip155-3434.json new file mode 100644 index 000000000000..4f6c1ee86234 --- /dev/null +++ b/_data/chains/eip155-3434.json @@ -0,0 +1,24 @@ +{ + "name": "SecureChain Testnet", + "chain": "SCAI", + "icon": "scaiIcon", + "rpc": ["https://testnet-rpc.securechain.ai"], + "faucets": ["https://faucet.securechain.ai"], + "nativeCurrency": { + "name": "SCAI", + "symbol": "SCAI", + "decimals": 18 + }, + "infoURL": "https://securechain.ai", + "shortName": "SCAIt", + "chainId": 3434, + "networkId": 3434, + "slip44": 1, + "explorers": [ + { + "name": "SecureChain", + "url": "https://testnet.securechain.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3441005.json b/_data/chains/eip155-3441005.json new file mode 100644 index 000000000000..4a75724bd171 --- /dev/null +++ b/_data/chains/eip155-3441005.json @@ -0,0 +1,29 @@ +{ + "name": "Manta Pacific Testnet", + "chain": "Manta Pacific", + "rpc": [ + "https://manta-testnet.calderachain.xyz/http", + "https://manta-pacific-testnet.drpc.org", + "wss://manta-pacific-testnet.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Manta", + "symbol": "MANTA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://manta-testnet.caldera.dev/", + "shortName": "mantaTestnet", + "chainId": 3441005, + "networkId": 3441005, + "slip44": 1, + "icon": "manta", + "explorers": [ + { + "name": "manta-testnet Explorer", + "url": "https://manta-testnet.calderaexplorer.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3441006.json b/_data/chains/eip155-3441006.json new file mode 100644 index 000000000000..36df4dd7a2a2 --- /dev/null +++ b/_data/chains/eip155-3441006.json @@ -0,0 +1,25 @@ +{ + "name": "Manta Pacific Sepolia Testnet", + "chain": "Manta Pacific", + "rpc": ["https://pacific-rpc.sepolia-testnet.manta.network/http"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://manta-testnet.caldera.dev/", + "shortName": "mantaSepoliaTestnet", + "chainId": 3441006, + "networkId": 3441006, + "slip44": 1, + "icon": "manta", + "explorers": [ + { + "name": "manta-testnet Explorer", + "url": "https://pacific-explorer.sepolia-testnet.manta.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-344106930.json b/_data/chains/eip155-344106930.json new file mode 100644 index 000000000000..381de0ac7da6 --- /dev/null +++ b/_data/chains/eip155-344106930.json @@ -0,0 +1,26 @@ +{ + "name": "Deprecated SKALE Calypso Hub Testnet", + "title": "Deprecated Calypso NFT Hub Testnet", + "status": "deprecated", + "chain": "staging-utter-unripe-menkar", + "icon": "calypso", + "rpc": ["https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar"], + "faucets": ["https://sfuel.dirtroad.dev/staging"], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://calypsohub.network/", + "shortName": "deprected-calypso-testnet", + "chainId": 344106930, + "networkId": 344106930, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://staging-utter-unripe-menkar.explorer.staging-v3.skalenodes.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-34443.json b/_data/chains/eip155-34443.json new file mode 100644 index 000000000000..9a26ae8baae1 --- /dev/null +++ b/_data/chains/eip155-34443.json @@ -0,0 +1,32 @@ +{ + "name": "Mode", + "chain": "ETH", + "rpc": [ + "https://mainnet.mode.network", + "https://mode.drpc.org", + "wss://mode.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.mode.network/", + "shortName": "mode", + "chainId": 34443, + "networkId": 34443, + "icon": "mode", + "explorers": [ + { + "name": "modescout", + "url": "https://explorer.mode.network", + "standard": "none" + }, + { + "name": "Routescan", + "url": "https://modescan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-3448148188.json b/_data/chains/eip155-3448148188.json new file mode 100644 index 000000000000..132753b6c839 --- /dev/null +++ b/_data/chains/eip155-3448148188.json @@ -0,0 +1,24 @@ +{ + "name": "Tron Nile", + "chain": "TRON", + "rpc": ["https://nile.trongrid.io/jsonrpc"], + "faucets": [], + "nativeCurrency": { + "name": "Tron", + "symbol": "TRX", + "decimals": 6 + }, + "infoURL": "https://tron.network", + "shortName": "tron-nile", + "chainId": 3448148188, + "networkId": 3448148188, + "icon": "tron", + "explorers": [ + { + "name": "nile tronscan", + "url": "https://nile.tronscan.org", + "icon": "tron", + "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-35.json b/_data/chains/eip155-35.json index 6563091e3879..6e7986279c64 100644 --- a/_data/chains/eip155-35.json +++ b/_data/chains/eip155-35.json @@ -1,9 +1,7 @@ { "name": "TBWG Chain", "chain": "TBWG", - "rpc": [ - "https://rpc.tbwg.io" - ], + "rpc": ["https://rpc.tbwg.io"], "faucets": [], "nativeCurrency": { "name": "TBWG Ether", diff --git a/_data/chains/eip155-3500.json b/_data/chains/eip155-3500.json index 344a26878f60..413f0aba8d3c 100644 --- a/_data/chains/eip155-3500.json +++ b/_data/chains/eip155-3500.json @@ -1,10 +1,7 @@ { "name": "Paribu Net Testnet", "chain": "PRB", - "network": "Paribu Net", - "rpc": [ - "https://rpc.testnet.paribuscan.com" - ], + "rpc": ["https://rpc.testnet.paribuscan.com"], "faucets": ["https://faucet.paribuscan.com"], "nativeCurrency": { "name": "PRB", @@ -15,11 +12,13 @@ "shortName": "prbtestnet", "chainId": 3500, "networkId": 3500, + "slip44": 1, "icon": "prb", - "explorers": [{ - "name": "Paribu Net Testnet Explorer", - "url": "https://testnet.paribuscan.com", - "icon": "explorer", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "Paribu Net Testnet Explorer", + "url": "https://testnet.paribuscan.com", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-3501.json b/_data/chains/eip155-3501.json new file mode 100644 index 000000000000..b29343027cd7 --- /dev/null +++ b/_data/chains/eip155-3501.json @@ -0,0 +1,22 @@ +{ + "name": "JFIN Chain", + "chain": "JFIN", + "rpc": ["https://rpc.jfinchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "JFIN Coin", + "symbol": "JFIN", + "decimals": 18 + }, + "infoURL": "https://jfinchain.com", + "shortName": "JFIN", + "chainId": 3501, + "networkId": 3501, + "explorers": [ + { + "name": "JFIN Chain Explorer", + "url": "https://exp.jfinchain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-35011.json b/_data/chains/eip155-35011.json new file mode 100644 index 000000000000..7ade538be50b --- /dev/null +++ b/_data/chains/eip155-35011.json @@ -0,0 +1,24 @@ +{ + "name": "J2O Taro", + "chain": "TARO", + "rpc": ["https://rpc.j2o.io"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "TARO Coin", + "symbol": "taro", + "decimals": 18 + }, + "infoURL": "https://j2o.io", + "shortName": "j2o", + "chainId": 35011, + "networkId": 35011, + "explorers": [ + { + "name": "J2O Taro Explorer", + "url": "https://exp.j2o.io", + "icon": "j2otaro", + "standard": "EIP3091" + } + ] +} 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-35441.json b/_data/chains/eip155-35441.json new file mode 100644 index 000000000000..b6d401ef27a7 --- /dev/null +++ b/_data/chains/eip155-35441.json @@ -0,0 +1,24 @@ +{ + "name": "Q Mainnet", + "chain": "Q", + "rpc": ["https://rpc.q.org"], + "faucets": [], + "nativeCurrency": { + "name": "QGOV", + "symbol": "QGOV", + "decimals": 18 + }, + "infoURL": "https://q.org", + "shortName": "q", + "chainId": 35441, + "networkId": 35441, + "icon": "q", + "explorers": [ + { + "name": "Q explorer", + "url": "https://explorer.q.org", + "icon": "q", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-35443.json b/_data/chains/eip155-35443.json new file mode 100644 index 000000000000..6262bb25d5a6 --- /dev/null +++ b/_data/chains/eip155-35443.json @@ -0,0 +1,25 @@ +{ + "name": "Q Testnet", + "chain": "Q", + "rpc": ["https://rpc.qtestnet.org"], + "faucets": [], + "nativeCurrency": { + "name": "Q token", + "symbol": "Q", + "decimals": 18 + }, + "infoURL": "https://q.org/", + "shortName": "q-testnet", + "chainId": 35443, + "networkId": 35443, + "slip44": 1, + "icon": "q", + "explorers": [ + { + "name": "Q explorer", + "url": "https://explorer.qtestnet.org", + "icon": "q", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-355110.json b/_data/chains/eip155-355110.json new file mode 100644 index 000000000000..1a5b5d4b93ba --- /dev/null +++ b/_data/chains/eip155-355110.json @@ -0,0 +1,31 @@ +{ + "name": "Bitfinity Network Mainnet", + "chain": "BTF", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "rpc": ["https://mainnet.bitfinity.network"], + "faucets": [], + "nativeCurrency": { + "name": "Bitfinity Token", + "symbol": "BTF", + "decimals": 18 + }, + "infoURL": "https://bitfinity.network", + "shortName": "bitfinity-mainnet", + "chainId": 355110, + "networkId": 355110, + "explorers": [ + { + "name": "Bitfinity Mainnet Block Explorer", + "url": "https://explorer.mainnet.bitfinity.network", + "icon": "bitfinity", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-355113.json b/_data/chains/eip155-355113.json new file mode 100644 index 000000000000..bf29b86af762 --- /dev/null +++ b/_data/chains/eip155-355113.json @@ -0,0 +1,37 @@ +{ + "name": "Bitfinity Network Testnet", + "chain": "BTF", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "rpc": ["https://testnet.bitfinity.network"], + "faucets": ["https://bitfinity.network/faucet"], + "nativeCurrency": { + "name": "Bitfinity Token", + "symbol": "BTF", + "decimals": 18 + }, + "infoURL": "https://bitfinity.network", + "shortName": "bitfinity-testnet", + "chainId": 355113, + "networkId": 355113, + "explorers": [ + { + "name": "Bitfinity Testnet Block Explorer", + "url": "https://explorer.testnet.bitfinity.network", + "icon": "bitfinity", + "standard": "EIP3091" + }, + { + "name": "Bitfinity Testnet Block Explorer", + "url": "https://bitfinity-test.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-356256156.json b/_data/chains/eip155-356256156.json index eec8b1a64b55..2d89aad2d836 100644 --- a/_data/chains/eip155-356256156.json +++ b/_data/chains/eip155-356256156.json @@ -1,9 +1,7 @@ { "name": "Gather Testnet Network", "chain": "GTH", - "rpc": [ - "https://testnet.gather.network" - ], + "rpc": ["https://testnet.gather.network"], "faucets": [], "nativeCurrency": { "name": "Gather", @@ -14,9 +12,14 @@ "shortName": "tGTH", "chainId": 356256156, "networkId": 356256156, - "explorers": [{ - "name": "Blockscout", - "url": "https://testnet-explorer.gather.network", - "standard": "none" - }] + "slip44": 1, + "icon": "gather", + "explorers": [ + { + "name": "Blockscout", + "url": "https://testnet-explorer.gather.network", + "icon": "gather", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-35855456.json b/_data/chains/eip155-35855456.json index 9a1eaa25833e..477b3af49452 100644 --- a/_data/chains/eip155-35855456.json +++ b/_data/chains/eip155-35855456.json @@ -1,9 +1,7 @@ { "name": "Joys Digital Mainnet", "chain": "JOYS", - "rpc": [ - "https://node.joys.digital" - ], + "rpc": ["https://node.joys.digital"], "faucets": [], "nativeCurrency": { "name": "JOYS", @@ -14,4 +12,4 @@ "shortName": "JOYS", "chainId": 35855456, "networkId": 35855456 -} \ No newline at end of file +} diff --git a/_data/chains/eip155-36.json b/_data/chains/eip155-36.json new file mode 100644 index 000000000000..7e7d77b622ca --- /dev/null +++ b/_data/chains/eip155-36.json @@ -0,0 +1,23 @@ +{ + "name": "Dxchain Mainnet", + "chain": "Dxchain", + "icon": "dx", + "rpc": ["https://mainnet.dxchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Dxchain", + "symbol": "DX", + "decimals": 18 + }, + "infoURL": "https://www.dxchain.com/", + "shortName": "dx", + "chainId": 36, + "networkId": 36, + "explorers": [ + { + "name": "dxscan", + "url": "https://dxscan.io", + "standard": "EIP3091" + } + ] +} 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-3601.json b/_data/chains/eip155-3601.json new file mode 100644 index 000000000000..dba24f7ab114 --- /dev/null +++ b/_data/chains/eip155-3601.json @@ -0,0 +1,23 @@ +{ + "name": "PandoProject Mainnet", + "chain": "PandoProject", + "icon": "pando", + "rpc": ["https://eth-rpc-api.pandoproject.org/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "pando-token", + "symbol": "PTX", + "decimals": 18 + }, + "infoURL": "https://www.pandoproject.org/", + "shortName": "pando-mainnet", + "chainId": 3601, + "networkId": 3601, + "explorers": [ + { + "name": "Pando Mainnet Explorer", + "url": "https://explorer.pandoproject.org", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-3602.json b/_data/chains/eip155-3602.json new file mode 100644 index 000000000000..bdfa17d149c1 --- /dev/null +++ b/_data/chains/eip155-3602.json @@ -0,0 +1,24 @@ +{ + "name": "PandoProject Testnet", + "chain": "PandoProject", + "icon": "pando", + "rpc": ["https://testnet.ethrpc.pandoproject.org/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "pando-token", + "symbol": "PTX", + "decimals": 18 + }, + "infoURL": "https://www.pandoproject.org/", + "shortName": "pando-testnet", + "chainId": 3602, + "networkId": 3602, + "slip44": 1, + "explorers": [ + { + "name": "Pando Testnet Explorer", + "url": "https://testnet.explorer.pandoproject.org", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-360890.json b/_data/chains/eip155-360890.json new file mode 100644 index 000000000000..426a31a2a3bf --- /dev/null +++ b/_data/chains/eip155-360890.json @@ -0,0 +1,24 @@ +{ + "name": "LAVITA Mainnet", + "chain": "LAVITA", + "icon": "lavita", + "rpc": ["https://tsub360890-eth-rpc.thetatoken.org/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "vTFUEL", + "symbol": "vTFUEL", + "decimals": 18 + }, + "infoURL": "https://www.lavita.ai", + "shortName": "lavita-mainnet", + "chainId": 360890, + "networkId": 360890, + "explorers": [ + { + "name": "LAVITA Mainnet Explorer", + "url": "https://tsub360890-explorer.thetatoken.org", + "icon": "lavita", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-361.json b/_data/chains/eip155-361.json index b26a92ed82fa..e238850723bd 100644 --- a/_data/chains/eip155-361.json +++ b/_data/chains/eip155-361.json @@ -1,11 +1,8 @@ { "name": "Theta Mainnet", "chain": "Theta", - "rpc": [ - "https://eth-rpc-api.thetatoken.org/rpc" - ], - "faucets": [ - ], + "rpc": ["https://eth-rpc-api.thetatoken.org/rpc"], + "faucets": [], "nativeCurrency": { "name": "Theta Fuel", "symbol": "TFUEL", @@ -15,9 +12,11 @@ "shortName": "theta-mainnet", "chainId": 361, "networkId": 361, - "explorers": [{ - "name": "Theta Mainnet Explorer", - "url": "https://explorer.thetatoken.org", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "Theta Mainnet Explorer", + "url": "https://explorer.thetatoken.org", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-363.json b/_data/chains/eip155-363.json index db00476636f7..af4a9e20e9fb 100644 --- a/_data/chains/eip155-363.json +++ b/_data/chains/eip155-363.json @@ -1,11 +1,8 @@ { "name": "Theta Sapphire Testnet", "chain": "Theta", - "rpc": [ - "https://eth-rpc-api-sapphire.thetatoken.org/rpc" - ], - "faucets": [ - ], + "rpc": ["https://eth-rpc-api-sapphire.thetatoken.org/rpc"], + "faucets": [], "nativeCurrency": { "name": "Theta Fuel", "symbol": "TFUEL", @@ -15,9 +12,12 @@ "shortName": "theta-sapphire", "chainId": 363, "networkId": 363, - "explorers": [{ - "name": "Theta Sapphire Testnet Explorer", - "url": "https://guardian-testnet-sapphire-explorer.thetatoken.org", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "Theta Sapphire Testnet Explorer", + "url": "https://guardian-testnet-sapphire-explorer.thetatoken.org", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-3630.json b/_data/chains/eip155-3630.json new file mode 100644 index 000000000000..88427f8e4630 --- /dev/null +++ b/_data/chains/eip155-3630.json @@ -0,0 +1,15 @@ +{ + "name": "Tycooncoin", + "chain": "TYCON", + "rpc": ["https://mainnet-rpc.tycoscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "Tycooncoin", + "symbol": "TYCO", + "decimals": 18 + }, + "infoURL": "", + "shortName": "TYCON", + "chainId": 3630, + "networkId": 3630 +} diff --git a/_data/chains/eip155-3636.json b/_data/chains/eip155-3636.json new file mode 100644 index 000000000000..fa4b06faf9f8 --- /dev/null +++ b/_data/chains/eip155-3636.json @@ -0,0 +1,24 @@ +{ + "name": "Botanix Testnet", + "chain": "BOTANIX", + "icon": "botanix", + "rpc": ["https://node.botanixlabs.dev"], + "faucets": ["https://faucet.botanixlabs.dev"], + "nativeCurrency": { + "name": "Botanix", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://botanixlabs.xyz", + "shortName": "BTNXt", + "chainId": 3636, + "networkId": 3636, + "slip44": 1, + "explorers": [ + { + "name": "Botanix Explorer", + "url": "https://testnet.botanixscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-363636.json b/_data/chains/eip155-363636.json new file mode 100644 index 000000000000..f0419501956d --- /dev/null +++ b/_data/chains/eip155-363636.json @@ -0,0 +1,23 @@ +{ + "name": "Digit Soul Smart Chain 2", + "chain": "DS2", + "rpc": ["https://dgs-rpc.digitsoul.co.th"], + "faucets": [], + "icon": "pnet", + "nativeCurrency": { + "name": "Digit Coin", + "symbol": "DGC", + "decimals": 18 + }, + "infoURL": "", + "shortName": "DS2", + "chainId": 363636, + "networkId": 363636, + "explorers": [ + { + "name": "Digit Soul Explorer", + "url": "https://dgs-exp.digitsoul.co.th", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3637.json b/_data/chains/eip155-3637.json new file mode 100644 index 000000000000..05b51faa093f --- /dev/null +++ b/_data/chains/eip155-3637.json @@ -0,0 +1,23 @@ +{ + "name": "Botanix Mainnet", + "chain": "BOTANIX", + "icon": "botanix", + "rpc": ["https://rpc.botanixlabs.com"], + "faucets": [], + "nativeCurrency": { + "name": "Botanix", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://botanixlabs.com", + "shortName": "BTNX", + "chainId": 3637, + "networkId": 3637, + "explorers": [ + { + "name": "Botanix Explorer", + "url": "https://botanixscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3639.json b/_data/chains/eip155-3639.json new file mode 100644 index 000000000000..05a802788693 --- /dev/null +++ b/_data/chains/eip155-3639.json @@ -0,0 +1,23 @@ +{ + "name": "iChain Network", + "chain": "iChain", + "icon": "iChain", + "rpc": ["https://rpc.ichainscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "ISLAMICOIN", + "symbol": "ISLAMI", + "decimals": 18 + }, + "infoURL": "https://islamicoin.finance", + "shortName": "ISLAMI", + "chainId": 3639, + "networkId": 3639, + "explorers": [ + { + "name": "iChainscan", + "url": "https://ichainscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-364.json b/_data/chains/eip155-364.json index a09c90a0cc86..c76962d71b5a 100644 --- a/_data/chains/eip155-364.json +++ b/_data/chains/eip155-364.json @@ -1,11 +1,8 @@ { "name": "Theta Amber Testnet", "chain": "Theta", - "rpc": [ - "https://eth-rpc-api-amber.thetatoken.org/rpc" - ], - "faucets": [ - ], + "rpc": ["https://eth-rpc-api-amber.thetatoken.org/rpc"], + "faucets": [], "nativeCurrency": { "name": "Theta Fuel", "symbol": "TFUEL", @@ -15,9 +12,12 @@ "shortName": "theta-amber", "chainId": 364, "networkId": 364, - "explorers": [{ - "name": "Theta Amber Testnet Explorer", - "url": "https://guardian-testnet-amber-explorer.thetatoken.org", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "Theta Amber Testnet Explorer", + "url": "https://guardian-testnet-amber-explorer.thetatoken.org", + "standard": "EIP3091" + } + ] } 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-365.json b/_data/chains/eip155-365.json index 6bc81d07fa1e..249f91564402 100644 --- a/_data/chains/eip155-365.json +++ b/_data/chains/eip155-365.json @@ -1,11 +1,8 @@ { "name": "Theta Testnet", "chain": "Theta", - "rpc": [ - "https://eth-rpc-api-testnet.thetatoken.org/rpc" - ], - "faucets": [ - ], + "rpc": ["https://eth-rpc-api-testnet.thetatoken.org/rpc"], + "faucets": [], "nativeCurrency": { "name": "Theta Fuel", "symbol": "TFUEL", @@ -15,9 +12,12 @@ "shortName": "theta-testnet", "chainId": 365, "networkId": 365, - "explorers": [{ - "name": "Theta Testnet Explorer", - "url": "https://testnet-explorer.thetatoken.org", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "Theta Testnet Explorer", + "url": "https://testnet-explorer.thetatoken.org", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-3666.json b/_data/chains/eip155-3666.json new file mode 100644 index 000000000000..a3e045d2f49b --- /dev/null +++ b/_data/chains/eip155-3666.json @@ -0,0 +1,22 @@ +{ + "name": "Jouleverse Mainnet", + "chain": "Jouleverse", + "rpc": ["https://rpc.jnsdao.com:8503"], + "faucets": [], + "nativeCurrency": { + "name": "J", + "symbol": "J", + "decimals": 18 + }, + "infoURL": "https://jnsdao.com", + "shortName": "jouleverse", + "chainId": 3666, + "networkId": 3666, + "explorers": [ + { + "name": "jscan", + "url": "https://jscan.jnsdao.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-36888.json b/_data/chains/eip155-36888.json new file mode 100644 index 000000000000..c59290182db2 --- /dev/null +++ b/_data/chains/eip155-36888.json @@ -0,0 +1,24 @@ +{ + "name": "AB Core Mainnet", + "chain": "AB", + "rpc": ["https://rpc.core.ab.org", "https://rpc1.core.ab.org"], + "faucets": [], + "nativeCurrency": { + "name": "AB", + "symbol": "AB", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://ab.org", + "shortName": "abcore", + "chainId": 36888, + "networkId": 36888, + "explorers": [ + { + "name": "AB Core Explorer", + "url": "https://explorer.core.ab.org", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-369.json b/_data/chains/eip155-369.json index 7950d7169132..74811b8efec6 100644 --- a/_data/chains/eip155-369.json +++ b/_data/chains/eip155-369.json @@ -1,18 +1,40 @@ { - "name": "PulseChain Mainnet", + "name": "PulseChain", "shortName": "pls", "chain": "PLS", "chainId": 369, "networkId": 369, "infoURL": "https://pulsechain.com/", "rpc": [ - "https://rpc.mainnet.pulsechain.com/", - "wss://rpc.mainnet.pulsechain.com/" + "https://rpc.pulsechain.com", + "https://pulsechain-rpc.publicnode.com", + "wss://pulsechain-rpc.publicnode.com", + "https://rpc-pulsechain.g4mm4.io" ], + "icon": "pulsechain", + "slip44": 60, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": [], + "ens": { + "registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" + }, + "status": "active", "nativeCurrency": { "name": "Pulse", "symbol": "PLS", "decimals": 18 - } -} \ No newline at end of file + }, + "explorers": [ + { + "name": "pulsechain", + "url": "https://ipfs.scan.pulsechain.com", + "icon": "pulsechain", + "standard": "EIP3091" + }, + { + "name": "otterscan", + "url": "https://otter.pulsechain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3690.json b/_data/chains/eip155-3690.json index 547699ad2418..864b09e3b365 100644 --- a/_data/chains/eip155-3690.json +++ b/_data/chains/eip155-3690.json @@ -1,10 +1,7 @@ { "name": "Bittex Mainnet", "chain": "BTX", - "rpc": [ - "https://rpc1.bittexscan.info", - "https://rpc2.bittexscan.info" - ], + "rpc": ["https://rpc1.bittexscan.info", "https://rpc2.bittexscan.info"], "faucets": [], "nativeCurrency": { "name": "Bittex", @@ -15,11 +12,11 @@ "shortName": "btx", "chainId": 3690, "networkId": 3690, - "icon": "ethereum", - "explorers": [{ - "name": "bittexscan", - "url": "https://bittexscan.com", - "icon": "etherscan", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "bittexscan", + "url": "https://bittexscan.com", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-36900.json b/_data/chains/eip155-36900.json new file mode 100644 index 000000000000..8e963e833c07 --- /dev/null +++ b/_data/chains/eip155-36900.json @@ -0,0 +1,23 @@ +{ + "name": "ADI Chain", + "chain": "ADI", + "icon": "adi", + "rpc": ["https://rpc.adifoundation.ai"], + "faucets": [], + "nativeCurrency": { + "name": "ADI", + "symbol": "ADI", + "decimals": 18 + }, + "infoURL": "https://adifoundation.ai", + "shortName": "adi", + "chainId": 36900, + "networkId": 36900, + "explorers": [ + { + "name": "ADI Explorer", + "url": "https://explorer.adifoundation.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3693.json b/_data/chains/eip155-3693.json new file mode 100644 index 000000000000..68f9270f3213 --- /dev/null +++ b/_data/chains/eip155-3693.json @@ -0,0 +1,22 @@ +{ + "name": "Empire Network", + "chain": "EMPIRE", + "rpc": ["https://rpc.empirenetwork.io"], + "faucets": [], + "nativeCurrency": { + "name": "Empire", + "symbol": "EMPIRE", + "decimals": 18 + }, + "infoURL": "https://www.empirenetwork.io/", + "shortName": "empire", + "chainId": 3693, + "networkId": 3693, + "explorers": [ + { + "name": "Empire Explorer", + "url": "https://explorer.empirenetwork.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-369369.json b/_data/chains/eip155-369369.json new file mode 100644 index 000000000000..118c55a39eba --- /dev/null +++ b/_data/chains/eip155-369369.json @@ -0,0 +1,24 @@ +{ + "name": "Denergy Network", + "chain": "DEN", + "rpc": ["https://rpc.d.energy/"], + "faucets": [], + "nativeCurrency": { + "name": "WATT", + "symbol": "WATT", + "decimals": 18 + }, + "infoURL": "https://d.energy/", + "shortName": "den-mainnet", + "chainId": 369369, + "networkId": 369369, + "icon": "denergy", + "explorers": [ + { + "name": "Denergy Explorer", + "url": "https://explorer.denergychain.com", + "icon": "denergy", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3698.json b/_data/chains/eip155-3698.json new file mode 100644 index 000000000000..a0398363bb6e --- /dev/null +++ b/_data/chains/eip155-3698.json @@ -0,0 +1,24 @@ +{ + "name": "SenjePowers Testnet", + "chain": "SPC", + "icon": "SenjePowers", + "rpc": ["https://testnet-rpc.senjepowersscan.com"], + "faucets": ["https://faucet.senjepowersscan.com"], + "nativeCurrency": { + "name": "SenjePowers", + "symbol": "SPC", + "decimals": 18 + }, + "infoURL": "https://senjepowersscan.com", + "shortName": "SPCt", + "chainId": 3698, + "networkId": 3698, + "slip44": 1, + "explorers": [ + { + "name": "SenjePowers", + "url": "https://testnet.senjepowersscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3699.json b/_data/chains/eip155-3699.json new file mode 100644 index 000000000000..af22f2b7d4dd --- /dev/null +++ b/_data/chains/eip155-3699.json @@ -0,0 +1,23 @@ +{ + "name": "SenjePowers Mainnet", + "chain": "SPC", + "icon": "SenjePowers", + "rpc": ["https://rpc.senjepowersscan.com"], + "faucets": ["https://faucet.senjepowersscan.com"], + "nativeCurrency": { + "name": "SenjePowers", + "symbol": "SPC", + "decimals": 18 + }, + "infoURL": "https://senjepowersscan.com", + "shortName": "SPCm", + "chainId": 3699, + "networkId": 3699, + "explorers": [ + { + "name": "SenjePowers", + "url": "https://senjepowersscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-37.json b/_data/chains/eip155-37.json new file mode 100644 index 000000000000..ddcd8af3c8ac --- /dev/null +++ b/_data/chains/eip155-37.json @@ -0,0 +1,24 @@ +{ + "name": "Xpla Mainnet", + "chain": "XPLA", + "rpc": ["https://dimension-evm-rpc.xpla.dev"], + "faucets": [], + "nativeCurrency": { + "name": "XPLA", + "symbol": "XPLA", + "decimals": 18 + }, + "infoURL": "https://xpla.io", + "shortName": "xpla", + "chainId": 37, + "networkId": 37, + "icon": "xpla", + "explorers": [ + { + "name": "XPLA Explorer", + "url": "https://explorer.xpla.io/mainnet", + "standard": "EIP3091" + } + ], + "redFlags": ["reusedChainId"] +} diff --git a/_data/chains/eip155-3701.json b/_data/chains/eip155-3701.json new file mode 100644 index 000000000000..54c11dede341 --- /dev/null +++ b/_data/chains/eip155-3701.json @@ -0,0 +1,25 @@ +{ + "name": "Xpla Testnet", + "chain": "XPLATest", + "rpc": ["https://dimension-rpc.xpla.dev"], + "faucets": ["https://faucet.xpla.io"], + "nativeCurrency": { + "name": "XPLA", + "symbol": "XPLA", + "decimals": 18 + }, + "infoURL": "https://xpla.io", + "shortName": "xplatest", + "chainId": 3701, + "networkId": 3701, + "slip44": 1, + "icon": "xpla", + "explorers": [ + { + "name": "XPLA Explorer", + "url": "https://explorer.xpla.io", + "standard": "none" + } + ], + "status": "deprecated" +} diff --git a/_data/chains/eip155-37084624.json b/_data/chains/eip155-37084624.json new file mode 100644 index 000000000000..d1f67cd4b80b --- /dev/null +++ b/_data/chains/eip155-37084624.json @@ -0,0 +1,28 @@ +{ + "name": "SKALE Nebula Hub Testnet", + "title": "SKALE Nebula Hub Testnet", + "chain": "lanky-ill-funny-testnet", + "icon": "nebula", + "rpc": [ + "https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet", + "wss://testnet.skalenodes.com/v1/ws/lanky-ill-funny-testnet" + ], + "faucets": ["https://www.sfuelstation.com/"], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://nebulachain.io/", + "shortName": "nebula-testnet", + "chainId": 37084624, + "networkId": 37084624, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-371.json b/_data/chains/eip155-371.json new file mode 100644 index 000000000000..246f12b9c488 --- /dev/null +++ b/_data/chains/eip155-371.json @@ -0,0 +1,24 @@ +{ + "name": "Consta Testnet", + "chain": "tCNT", + "rpc": ["https://rpc-testnet.theconsta.com"], + "faucets": [], + "nativeCurrency": { + "name": "tCNT", + "symbol": "tCNT", + "decimals": 18 + }, + "infoURL": "http://theconsta.com", + "shortName": "tCNT", + "chainId": 371, + "networkId": 371, + "slip44": 1, + "icon": "constachain", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer-testnet.theconsta.com", + "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..98f0f84de8b5 --- /dev/null +++ b/_data/chains/eip155-3721.json @@ -0,0 +1,32 @@ +{ + "name": "Xone Mainnet", + "chain": "XOC", + "icon": "xone_main", + "rpc": [ + "https://rpc.xone.org", + "https://rpc-node-1.xone.org", + "https://rpc-node-2.xone.org", + "https://rpc-node-3.xone.org", + "https://rpc-node-4.xone.org", + "wss://rpc.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": "xone_main", + "url": "https://xonescan.com", + "icon": "xone_main", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-373.json b/_data/chains/eip155-373.json new file mode 100644 index 000000000000..8eca9670047f --- /dev/null +++ b/_data/chains/eip155-373.json @@ -0,0 +1,28 @@ +{ + "name": "Status Network", + "title": "Status Network Mainnet", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://status.network", + "shortName": "snt", + "chainId": 373, + "networkId": 373, + "icon": "snt", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.status.network" + } + ] + }, + "explorers": [], + "status": "incubating" +} diff --git a/_data/chains/eip155-3737.json b/_data/chains/eip155-3737.json index 19e9abe39902..2b73b5f2c64d 100644 --- a/_data/chains/eip155-3737.json +++ b/_data/chains/eip155-3737.json @@ -1,13 +1,8 @@ { "name": "Crossbell", "chain": "Crossbell", - "network": "mainnet", - "rpc": [ - "https://rpc.crossbell.io" - ], - "faucets": [ - "https://faucet.crossbell.io" - ], + "rpc": ["https://rpc.crossbell.io"], + "faucets": ["https://faucet.crossbell.io"], "nativeCurrency": { "name": "Crossbell Token", "symbol": "CSB", @@ -26,4 +21,3 @@ } ] } - diff --git a/_data/chains/eip155-373737.json b/_data/chains/eip155-373737.json new file mode 100644 index 000000000000..0de2e8fd0158 --- /dev/null +++ b/_data/chains/eip155-373737.json @@ -0,0 +1,25 @@ +{ + "name": "HAPchain Testnet", + "chain": "HAPchain", + "rpc": ["https://jsonrpc-test.hap.land"], + "faucets": [], + "nativeCurrency": { + "name": "HAP", + "symbol": "HAP", + "decimals": 18 + }, + "infoURL": "https://hap.land", + "shortName": "hap-testnet", + "chainId": 373737, + "networkId": 373737, + "slip44": 1, + "icon": "hap", + "explorers": [ + { + "name": "HAP EVM Explorer (Blockscout)", + "url": "https://blockscout-test.hap.land", + "standard": "none", + "icon": "hap" + } + ] +} diff --git a/_data/chains/eip155-374.json b/_data/chains/eip155-374.json new file mode 100644 index 000000000000..7757a4c07bd2 --- /dev/null +++ b/_data/chains/eip155-374.json @@ -0,0 +1,28 @@ +{ + "name": "Status Network Hoodi", + "title": "Status Network Hoodi", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://status.network", + "shortName": "snt-hoodi", + "chainId": 374, + "networkId": 374, + "icon": "snt", + "parent": { + "type": "L2", + "chain": "eip155-560048", + "bridges": [ + { + "url": "https://bridge.status.network" + } + ] + }, + "explorers": [], + "status": "incubating" +} diff --git a/_data/chains/eip155-375.json b/_data/chains/eip155-375.json new file mode 100644 index 000000000000..01b966e820af --- /dev/null +++ b/_data/chains/eip155-375.json @@ -0,0 +1,23 @@ +{ + "name": "zkXPLA Mainnet", + "chain": "zkXPLA", + "rpc": ["https://rpc.zkxpla.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://xpla.io", + "shortName": "zkxpla", + "chainId": 375, + "networkId": 375, + "icon": "xpla", + "explorers": [ + { + "name": "zkXPLA Mainnet Explorer", + "url": "https://explorer.zkxpla.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-37714555429.json b/_data/chains/eip155-37714555429.json new file mode 100644 index 000000000000..a5d298f86eb3 --- /dev/null +++ b/_data/chains/eip155-37714555429.json @@ -0,0 +1,22 @@ +{ + "name": "Xai Testnet v2", + "chainId": 37714555429, + "shortName": "xaitestnet", + "chain": "XAI Testnet", + "networkId": 37714555429, + "nativeCurrency": { + "name": "sXai", + "symbol": "sXAI", + "decimals": 18 + }, + "rpc": ["https://testnet-v2.xai-chain.net/rpc"], + "faucets": [], + "explorers": [ + { + "name": "Blockscout", + "url": "https://testnet-explorer-v2.xai-chain.net", + "standard": "EIP3091" + } + ], + "infoURL": "https://xai.games" +} diff --git a/_data/chains/eip155-3776.json b/_data/chains/eip155-3776.json new file mode 100644 index 000000000000..07ac8d8466b9 --- /dev/null +++ b/_data/chains/eip155-3776.json @@ -0,0 +1,33 @@ +{ + "name": "Astar zkEVM", + "shortName": "astrzk", + "title": "Astar zkEVM Mainnet", + "chain": "ETH", + "icon": "astar", + "rpc": ["https://rpc.startale.com/astar-zkevm"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://astar.network", + "chainId": 3776, + "networkId": 3776, + "explorers": [ + { + "name": "Blockscout Astar zkEVM explorer", + "url": "https://astar-zkevm.explorer.startale.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://portal.astar.network" + } + ] + } +} diff --git a/_data/chains/eip155-3797.json b/_data/chains/eip155-3797.json new file mode 100644 index 000000000000..1f88a56f0ac8 --- /dev/null +++ b/_data/chains/eip155-3797.json @@ -0,0 +1,26 @@ +{ + "name": "AlveyChain Mainnet", + "chain": "ALV", + "rpc": [ + "https://elves-core1.alvey.io", + "https://elves-core2.alvey.io", + "https://elves-core3.alvey.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "AlveyCoin", + "symbol": "ALV", + "decimals": 18 + }, + "infoURL": "https://alveychain.com/", + "shortName": "alv", + "chainId": 3797, + "networkId": 3797, + "explorers": [ + { + "name": "AlveyScan", + "url": "https://alveyscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3799.json b/_data/chains/eip155-3799.json new file mode 100644 index 000000000000..4396d148223a --- /dev/null +++ b/_data/chains/eip155-3799.json @@ -0,0 +1,29 @@ +{ + "name": "Tangle Testnet", + "chain": "Tangle Testnet", + "icon": "tangle", + "rpc": [ + "https://testnet-rpc.tangle.tools", + "https://testnet-rpc-archive.tangle.tools", + "wss://testnet-rpc.tangle.tools", + "wss://testnet-rpc-archive.tangle.tools" + ], + "faucets": ["https://faucet.tangle.tools"], + "nativeCurrency": { + "name": "Testnet Tangle Network Token", + "symbol": "tTNT", + "decimals": 18 + }, + "infoURL": "https://docs.tangle.tools", + "shortName": "tTangle", + "chainId": 3799, + "networkId": 3799, + "explorers": [ + { + "name": "ttntscan", + "url": "https://testnet-explorer.tangle.tools", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-38.json b/_data/chains/eip155-38.json index 015fca922122..a5a81c712a26 100644 --- a/_data/chains/eip155-38.json +++ b/_data/chains/eip155-38.json @@ -1,9 +1,7 @@ { "name": "Valorbit", "chain": "VAL", - "rpc": [ - "https://rpc.valorbit.com/v2" - ], + "rpc": ["https://rpc.valorbit.com/v2"], "faucets": [], "nativeCurrency": { "name": "Valorbit", @@ -15,4 +13,4 @@ "chainId": 38, "networkId": 38, "slip44": 538 -} \ No newline at end of file +} diff --git a/_data/chains/eip155-380.json b/_data/chains/eip155-380.json new file mode 100644 index 000000000000..66d6dff3480b --- /dev/null +++ b/_data/chains/eip155-380.json @@ -0,0 +1,32 @@ +{ + "name": "ZKAmoeba Testnet", + "chain": "FIL", + "rpc": [ + "https://rpc.testnet.zkamoeba.com:4050/", + "https://rpc1.testnet.zkamoeba.com:4050/" + ], + "faucets": [], + "nativeCurrency": { + "name": "filecoin", + "symbol": "FIL", + "decimals": 18 + }, + "infoURL": "https://testnet.zkamoeba.com", + "shortName": "zkamoeba-test", + "chainId": 380, + "networkId": 380, + "icon": "zkamoeba-micro", + "explorers": [ + { + "name": "ZKAmoeba Test Explorer", + "url": "https://testnetexplorer.zkamoeba.com", + "icon": "zkamoeba-micro", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-314", + "bridges": [{ "url": "https://testnet.zkamoeba.com/en/bridge" }] + } +} diff --git a/_data/chains/eip155-380929.json b/_data/chains/eip155-380929.json new file mode 100644 index 000000000000..bb6c4615e18b --- /dev/null +++ b/_data/chains/eip155-380929.json @@ -0,0 +1,29 @@ +{ + "name": "Silent Data Mainnet", + "chain": "Silent Data", + "rpc": ["https://mainnet.silentdata.com/${SILENTDATA_AUTH_TOKEN}"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.silentdata.com", + "shortName": "silent-data-mainnet", + "chainId": 380929, + "networkId": 380929, + "icon": "silentdata", + "explorers": [ + { + "name": "Silent Data Mainnet Explorer", + "url": "https://explorer-mainnet.rollup.silentdata.com", + "icon": "silentdata", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge-mainnet.rollup.silentdata.com" }] + } +} diff --git a/_data/chains/eip155-381.json b/_data/chains/eip155-381.json new file mode 100644 index 000000000000..66a837cad371 --- /dev/null +++ b/_data/chains/eip155-381.json @@ -0,0 +1,29 @@ +{ + "name": "ZKAmoeba Mainnet", + "chain": "FIL", + "rpc": ["https://rpc.mainnet.zkamoeba.com/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "filecoin", + "symbol": "FIL", + "decimals": 18 + }, + "infoURL": "https://www.zkamoeba.com", + "shortName": "zkamoeba", + "chainId": 381, + "networkId": 381, + "icon": "zkamoeba-micro", + "explorers": [ + { + "name": "ZKAmoeba Explorer", + "url": "https://explorer.zkamoeba.com", + "icon": "zkamoeba-micro", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-314", + "bridges": [{ "url": "https://www.zkamoeba.com/en/bridge" }] + } +} diff --git a/_data/chains/eip155-381185.json b/_data/chains/eip155-381185.json new file mode 100644 index 000000000000..50c03de81fe1 --- /dev/null +++ b/_data/chains/eip155-381185.json @@ -0,0 +1,29 @@ +{ + "name": "Silent Data Testnet", + "chain": "Silent Data", + "rpc": ["https://testnet.silentdata.com/${SILENTDATA_AUTH_TOKEN}"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.silentdata.com", + "shortName": "silent-data-testnet", + "chainId": 381185, + "networkId": 381185, + "icon": "silentdata-testnet", + "explorers": [ + { + "name": "Silent Data Testnet Explorer", + "url": "https://explorer-testnet.rollup.silentdata.com", + "icon": "silentdata-testnet", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://bridge-testnet.rollup.silentdata.com" }] + } +} diff --git a/_data/chains/eip155-381931.json b/_data/chains/eip155-381931.json new file mode 100644 index 000000000000..812482c040a6 --- /dev/null +++ b/_data/chains/eip155-381931.json @@ -0,0 +1,23 @@ +{ + "name": "Metal C-Chain", + "chain": "Metal", + "rpc": ["https://api.metalblockchain.org/ext/bc/C/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Metal", + "symbol": "METAL", + "decimals": 18 + }, + "infoURL": "https://www.metalblockchain.org/", + "shortName": "metal", + "chainId": 381931, + "networkId": 381931, + "slip44": 9005, + "explorers": [ + { + "name": "metalscan", + "url": "https://metalscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-381932.json b/_data/chains/eip155-381932.json new file mode 100644 index 000000000000..c231af759e3f --- /dev/null +++ b/_data/chains/eip155-381932.json @@ -0,0 +1,23 @@ +{ + "name": "Metal Tahoe C-Chain", + "chain": "Metal", + "rpc": ["https://tahoe.metalblockchain.org/ext/bc/C/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Metal", + "symbol": "METAL", + "decimals": 18 + }, + "infoURL": "https://www.metalblockchain.org/", + "shortName": "Tahoe", + "chainId": 381932, + "networkId": 381932, + "slip44": 9005, + "explorers": [ + { + "name": "metalscan", + "url": "https://tahoe.metalscan.io", + "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 new file mode 100644 index 000000000000..42077af0b9a9 --- /dev/null +++ b/_data/chains/eip155-383414847825.json @@ -0,0 +1,34 @@ +{ + "name": "Zeniq", + "chain": "ZENIQ", + "icon": "zeniq", + "rpc": ["https://api.zeniq.network"], + "features": [{ "name": "EIP155" }], + "faucets": ["https://faucet.nomo.zone/", "https://faucet.zeniq.net/"], + "nativeCurrency": { + "name": "Zeniq", + "symbol": "ZENIQ", + "decimals": 18 + }, + "infoURL": "https://www.zeniq.dev/", + "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-38400.json b/_data/chains/eip155-38400.json new file mode 100644 index 000000000000..e0fabb69dbfd --- /dev/null +++ b/_data/chains/eip155-38400.json @@ -0,0 +1,23 @@ +{ + "name": "ConnectorManager", + "chain": "Rangers", + "icon": "rangers", + "rpc": ["https://cm.rangersprotocol.com/api/jsonrpc"], + "faucets": [], + "nativeCurrency": { + "name": "Rangers Protocol Gas", + "symbol": "cmRPG", + "decimals": 18 + }, + "infoURL": "https://rangersprotocol.com", + "shortName": "cmrpg", + "chainId": 38400, + "networkId": 38400, + "explorers": [ + { + "name": "rangersscan", + "url": "https://scan.rangersprotocol.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-38401.json b/_data/chains/eip155-38401.json new file mode 100644 index 000000000000..1f0d51222da1 --- /dev/null +++ b/_data/chains/eip155-38401.json @@ -0,0 +1,23 @@ +{ + "name": "ConnectorManager Robin", + "chain": "Rangers", + "icon": "rangers", + "rpc": ["https://robin-cm.rangersprotocol.com/api/jsonrpc"], + "faucets": ["https://robin-faucet.rangersprotocol.com"], + "nativeCurrency": { + "name": "Rangers Protocol Gas", + "symbol": "ttRPG", + "decimals": 18 + }, + "infoURL": "https://rangersprotocol.com", + "shortName": "ttrpg", + "chainId": 38401, + "networkId": 38401, + "explorers": [ + { + "name": "rangersscan-robin", + "url": "https://robin-rangersscan.rangersprotocol.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-385.json b/_data/chains/eip155-385.json index 30c74158aa09..86da9c96614f 100644 --- a/_data/chains/eip155-385.json +++ b/_data/chains/eip155-385.json @@ -1,12 +1,8 @@ { "name": "Lisinski", "chain": "CRO", - "rpc": [ - "https://rpc-bitfalls1.lisinski.online" - ], - "faucets": [ - "https://pipa.lisinski.online" - ], + "rpc": ["https://rpc-bitfalls1.lisinski.online"], + "faucets": ["https://pipa.lisinski.online"], "nativeCurrency": { "name": "Lisinski Ether", "symbol": "LISINS", 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 new file mode 100644 index 000000000000..f94fbb73546d --- /dev/null +++ b/_data/chains/eip155-3885.json @@ -0,0 +1,30 @@ +{ + "name": "Firechain zkEVM Ghostrider", + "title": "Firechain zkEVM Testnet", + "chain": "Firechain", + "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", + "decimals": 18 + }, + "infoURL": "https://docs.thefirechain.com/", + "shortName": "firechain-zkEVM-testnet", + "chainId": 3885, + "networkId": 3885, + "icon": "ethereum", + "explorers": [ + { + "name": "FireScan", + "url": "https://ghostrider-zkevm.firescan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3888.json b/_data/chains/eip155-3888.json new file mode 100644 index 000000000000..997a4b484ba1 --- /dev/null +++ b/_data/chains/eip155-3888.json @@ -0,0 +1,24 @@ +{ + "name": "KalyChain Mainnet", + "chain": "KLC", + "icon": "kalychain", + "rpc": ["https://rpc.kalychain.io/rpc"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "KalyCoin", + "symbol": "KLC", + "decimals": 18 + }, + "infoURL": "https://kalychain.io", + "shortName": "kalymainnet", + "chainId": 3888, + "networkId": 3888, + "explorers": [ + { + "name": "KalyScan", + "url": "https://kalyscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3889.json b/_data/chains/eip155-3889.json new file mode 100644 index 000000000000..57e29b2a6a93 --- /dev/null +++ b/_data/chains/eip155-3889.json @@ -0,0 +1,25 @@ +{ + "name": "KalyChain Testnet", + "chain": "KLC", + "icon": "kalychain", + "rpc": ["https://testnetrpc.kalychain.io/rpc"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "KalyCoin", + "symbol": "KLC", + "decimals": 18 + }, + "infoURL": "https://kalychain.io", + "shortName": "kalytestnet", + "chainId": 3889, + "networkId": 3889, + "slip44": 1, + "explorers": [ + { + "name": "KalyScan", + "url": "https://testnet.kalyscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-39.json b/_data/chains/eip155-39.json new file mode 100644 index 000000000000..a69ee184c228 --- /dev/null +++ b/_data/chains/eip155-39.json @@ -0,0 +1,24 @@ +{ + "name": "U2U Solaris Mainnet", + "chain": "u2u", + "rpc": ["https://rpc-mainnet.u2u.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "U2U Network", + "symbol": "U2U", + "decimals": 18 + }, + "infoURL": "https://u2u.xyz", + "shortName": "u2u", + "chainId": 39, + "networkId": 39, + "icon": "u2u", + "explorers": [ + { + "icon": "u2u", + "name": "U2U Explorer", + "url": "https://u2uscan.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3912.json b/_data/chains/eip155-3912.json new file mode 100644 index 000000000000..37d4ccf6be03 --- /dev/null +++ b/_data/chains/eip155-3912.json @@ -0,0 +1,31 @@ +{ + "name": "DRAC Network", + "chain": "DRAC", + "rpc": ["https://www.dracscan.com/rpc"], + "faucets": ["https://www.dracscan.io/faucet"], + "nativeCurrency": { + "name": "DRAC", + "symbol": "DRAC", + "decimals": 18 + }, + "infoURL": "https://drac.io/", + "shortName": "drac", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "chainId": 3912, + "networkId": 3912, + "icon": "drac", + "explorers": [ + { + "name": "DRAC_Network Scan", + "url": "https://www.dracscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3939.json b/_data/chains/eip155-3939.json new file mode 100644 index 000000000000..98b42f572e66 --- /dev/null +++ b/_data/chains/eip155-3939.json @@ -0,0 +1,25 @@ +{ + "name": "DOS Testnet", + "chain": "DOS", + "rpc": ["https://test.doschain.com/"], + "faucets": [], + "nativeCurrency": { + "name": "DOS", + "symbol": "DOS", + "decimals": 18 + }, + "infoURL": "http://doschain.io/", + "shortName": "dost", + "chainId": 3939, + "networkId": 3939, + "slip44": 1, + "icon": "doschain", + "explorers": [ + { + "name": "DOScan-Test", + "url": "https://test.doscan.io", + "icon": "doschain", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-395.json b/_data/chains/eip155-395.json new file mode 100644 index 000000000000..7913fb47eb4c --- /dev/null +++ b/_data/chains/eip155-395.json @@ -0,0 +1,25 @@ +{ + "name": "CamDL Testnet", + "chain": "CADL", + "rpc": ["https://rpc1.testnet.camdl.gov.kh/"], + "faucets": ["https://faucet.testnet.camdl.gov.kh/"], + "nativeCurrency": { + "name": "CADL", + "symbol": "CADL", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://camdl.gov.kh/", + "shortName": "camdl-testnet", + "chainId": 395, + "networkId": 395, + "icon": "camdl", + "explorers": [ + { + "name": "CamDL Testnet Explorer", + "url": "https://explorer.testnet.camdl.gov.kh", + "standard": "EIP3091" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-39656.json b/_data/chains/eip155-39656.json new file mode 100644 index 000000000000..c0e693bacc9a --- /dev/null +++ b/_data/chains/eip155-39656.json @@ -0,0 +1,23 @@ +{ + "name": "PRM Mainnet", + "chain": "prm", + "icon": "prmIcon", + "rpc": ["https://mainnet-rpc.prmscan.org"], + "faucets": [], + "nativeCurrency": { + "name": "Primal Network", + "symbol": "PRM", + "decimals": 18 + }, + "infoURL": "https://primalnetwork.org", + "shortName": "prm", + "chainId": 39656, + "networkId": 39656, + "explorers": [ + { + "name": "Primal Network", + "url": "https://prmscan.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3966.json b/_data/chains/eip155-3966.json index 4d10f1431893..338d5c647d5a 100644 --- a/_data/chains/eip155-3966.json +++ b/_data/chains/eip155-3966.json @@ -1,12 +1,8 @@ { "name": "DYNO Mainnet", "chain": "DYNO", - "rpc": [ - "https://api.dynoprotocol.com" - ], - "faucets": [ - "https://faucet.dynoscan.io" - ], + "rpc": ["https://api.dynoprotocol.com"], + "faucets": ["https://faucet.dynoscan.io"], "nativeCurrency": { "name": "DYNO Token", "symbol": "DYNO", @@ -16,9 +12,11 @@ "shortName": "dyno", "chainId": 3966, "networkId": 3966, - "explorers": [{ - "name": "DYNO Explorer", - "url": "https://dynoscan.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "DYNO Explorer", + "url": "https://dynoscan.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-3967.json b/_data/chains/eip155-3967.json index 444db10802d9..57f71551f8ea 100644 --- a/_data/chains/eip155-3967.json +++ b/_data/chains/eip155-3967.json @@ -1,12 +1,8 @@ { "name": "DYNO Testnet", "chain": "DYNO", - "rpc": [ - "https://tapi.dynoprotocol.com" - ], - "faucets": [ - "https://faucet.dynoscan.io" - ], + "rpc": ["https://tapi.dynoprotocol.com"], + "faucets": ["https://faucet.dynoscan.io"], "nativeCurrency": { "name": "DYNO Token", "symbol": "tDYNO", @@ -16,9 +12,12 @@ "shortName": "tdyno", "chainId": 3967, "networkId": 3967, - "explorers": [{ - "name": "DYNO Explorer", - "url": "https://testnet.dynoscan.io", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "DYNO Explorer", + "url": "https://testnet.dynoscan.io", + "standard": "EIP3091" + } + ] } 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 new file mode 100644 index 000000000000..ede53d7410cb --- /dev/null +++ b/_data/chains/eip155-397.json @@ -0,0 +1,23 @@ +{ + "name": "NEAR Protocol", + "chain": "NEAR", + "rpc": ["https://eth-rpc.mainnet.near.org"], + "icon": "near", + "faucets": [], + "nativeCurrency": { + "name": "NEAR", + "symbol": "NEAR", + "decimals": 18 + }, + "infoURL": "https://near.org", + "shortName": "near", + "chainId": 397, + "networkId": 397, + "explorers": [ + { + "name": "NEAR Explorer", + "url": "https://eth-explorer.near.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-39797.json b/_data/chains/eip155-39797.json index 7d087d081c7f..090c3026cae4 100644 --- a/_data/chains/eip155-39797.json +++ b/_data/chains/eip155-39797.json @@ -1,9 +1,7 @@ { "name": "Energi Mainnet", "chain": "NRG", - "rpc": [ - "https://nodeapi.energi.network" - ], + "rpc": ["https://nodeapi.energi.network"], "faucets": [], "nativeCurrency": { "name": "Energi", diff --git a/_data/chains/eip155-398.json b/_data/chains/eip155-398.json new file mode 100644 index 000000000000..a907c77fc0a1 --- /dev/null +++ b/_data/chains/eip155-398.json @@ -0,0 +1,23 @@ +{ + "name": "NEAR Protocol Testnet", + "chain": "NEAR", + "rpc": ["https://eth-rpc.testnet.near.org"], + "icon": "near", + "faucets": [], + "nativeCurrency": { + "name": "NEAR", + "symbol": "NEAR", + "decimals": 18 + }, + "infoURL": "https://near.org", + "shortName": "near-testnet", + "chainId": 398, + "networkId": 398, + "explorers": [ + { + "name": "NEAR Explorer", + "url": "https://eth-explorer-testnet.near.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-39815.json b/_data/chains/eip155-39815.json new file mode 100644 index 000000000000..e680fafc2da3 --- /dev/null +++ b/_data/chains/eip155-39815.json @@ -0,0 +1,24 @@ +{ + "name": "OHO Mainnet", + "chain": "OHO", + "rpc": ["https://mainnet.oho.ai"], + "faucets": [], + "nativeCurrency": { + "name": "OHO", + "symbol": "OHO", + "decimals": 18 + }, + "infoURL": "https://oho.ai", + "shortName": "oho", + "chainId": 39815, + "networkId": 39815, + "icon": "oho", + "explorers": [ + { + "name": "ohoscan", + "url": "https://ohoscan.com", + "icon": "ohoscan", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-399.json b/_data/chains/eip155-399.json new file mode 100644 index 000000000000..cbb08314a095 --- /dev/null +++ b/_data/chains/eip155-399.json @@ -0,0 +1,32 @@ +{ + "name": "Nativ3 Mainnet", + "chainId": 399, + "shortName": "N3", + "chain": "Nativ3", + "icon": "nativ3", + "networkId": 399, + "nativeCurrency": { + "name": "USNT", + "symbol": "USNT", + "decimals": 18 + }, + "rpc": ["https://rpc.nativ3.network", "wss://ws.nativ3.network"], + "faucets": [], + "explorers": [ + { + "name": "N3scan", + "url": "https://scan.nativ3.network", + "standard": "EIP3091" + } + ], + "infoURL": "https://nativ3.network", + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [ + { + "url": "https://bridge.nativ3.network" + } + ] + } +} diff --git a/_data/chains/eip155-39916801.json b/_data/chains/eip155-39916801.json new file mode 100644 index 000000000000..882b7695c4a0 --- /dev/null +++ b/_data/chains/eip155-39916801.json @@ -0,0 +1,23 @@ +{ + "name": "Kingdom Chain", + "chain": "KingdomChain", + "rpc": ["https://kingdomchain.observer/rpc"], + "features": [{ "name": "EIP155" }], + "faucets": [], + "nativeCurrency": { + "name": "Kozi", + "symbol": "KOZI", + "decimals": 18 + }, + "infoURL": "https://www.beastkingdom.io/", + "shortName": "kchain", + "chainId": 39916801, + "networkId": 39916801, + "explorers": [ + { + "name": "TravelSong", + "url": "https://www.beastkingdom.io/travelsong", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-3993.json b/_data/chains/eip155-3993.json new file mode 100644 index 000000000000..d2e820263fa8 --- /dev/null +++ b/_data/chains/eip155-3993.json @@ -0,0 +1,29 @@ +{ + "name": "APEX Testnet", + "chain": "ETH", + "rpc": ["https://rpc-testnet.apexlayer.xyz"], + "faucets": ["https://sepoliafaucet.com/"], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.apexlayer.xyz/", + "shortName": "apexsep", + "chainId": 3993, + "networkId": 3993, + "slip44": 1, + "icon": "apextestnet", + "explorers": [ + { + "name": "blockscout", + "url": "https://exp-testnet.apexlayer.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://apexlayer.xyz/bridge" }] + } +} diff --git a/_data/chains/eip155-3999.json b/_data/chains/eip155-3999.json index f6bb57cf542f..8e6ba036db4a 100644 --- a/_data/chains/eip155-3999.json +++ b/_data/chains/eip155-3999.json @@ -1,10 +1,7 @@ { "name": "YuanChain Mainnet", "chain": "YCC", - "network": "mainnet", - "rpc": [ - "https://mainnet.yuan.org/eth" - ], + "rpc": ["https://mainnet.yuan.org/eth"], "faucets": [], "nativeCurrency": { "name": "YCC", @@ -16,9 +13,11 @@ "chainId": 3999, "networkId": 3999, "icon": "ycc", - "explorers": [{ - "name": "YuanChain Explorer", - "url": "https://mainnet.yuan.org", - "standard": "none" - }] -} \ No newline at end of file + "explorers": [ + { + "name": "YuanChain Explorer", + "url": "https://mainnet.yuan.org", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-4.json b/_data/chains/eip155-4.json index 84c772766fd5..613405d7d3c2 100644 --- a/_data/chains/eip155-4.json +++ b/_data/chains/eip155-4.json @@ -2,24 +2,24 @@ "name": "Rinkeby", "title": "Ethereum Testnet Rinkeby", "chain": "ETH", - "network": "testnet", "rpc": [ "https://rinkeby.infura.io/v3/${INFURA_API_KEY}", "wss://rinkeby.infura.io/ws/v3/${INFURA_API_KEY}" ], "faucets": [ - "http://fauceth.komputing.org?chain=4&address=${ADDRESS}", + "http://fauceth.komputing.org?chain=4&address=${ADDRESS}", "https://faucet.rinkeby.io" ], "nativeCurrency": { "name": "Rinkeby Ether", - "symbol": "RIN", + "symbol": "ETH", "decimals": 18 }, "infoURL": "https://www.rinkeby.io", "shortName": "rin", "chainId": 4, "networkId": 4, + "slip44": 1, "ens": { "registry": "0xe7410170f87102df0055eb195163a03b7f2bff4a" }, diff --git a/_data/chains/eip155-40.json b/_data/chains/eip155-40.json index f67df5e11ada..b86dd4a47cbb 100644 --- a/_data/chains/eip155-40.json +++ b/_data/chains/eip155-40.json @@ -2,22 +2,25 @@ "name": "Telos EVM Mainnet", "chain": "TLOS", "rpc": [ - "https://mainnet.telos.net/evm" - ], - "faucets": [ + "https://rpc.telos.net", + "https://telos.drpc.org", + "wss://telos.drpc.org" ], + "faucets": [], "nativeCurrency": { "name": "Telos", "symbol": "TLOS", "decimals": 18 }, "infoURL": "https://telos.net", - "shortName": "Telos EVM", + "shortName": "TelosEVM", "chainId": 40, "networkId": 40, - "explorers": [{ - "name": "teloscan", - "url": "https://teloscan.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "teloscan", + "url": "https://teloscan.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-400.json b/_data/chains/eip155-400.json new file mode 100644 index 000000000000..9adac8299a9c --- /dev/null +++ b/_data/chains/eip155-400.json @@ -0,0 +1,25 @@ +{ + "name": "HyperonChain TestNet", + "chain": "HPN", + "icon": "hyperonchain", + "rpc": ["https://testnet-rpc.hyperonchain.com"], + "faucets": ["https://faucet.hyperonchain.com"], + "nativeCurrency": { + "name": "HyperonChain", + "symbol": "HPN", + "decimals": 18 + }, + "infoURL": "https://docs.hyperonchain.com", + "shortName": "hpn", + "chainId": 400, + "networkId": 400, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.hyperonchain.com", + "icon": "hyperonchain", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4000.json b/_data/chains/eip155-4000.json new file mode 100644 index 000000000000..b1c0d803e271 --- /dev/null +++ b/_data/chains/eip155-4000.json @@ -0,0 +1,23 @@ +{ + "name": "Ozone Chain Mainnet", + "chain": "OZONE", + "rpc": ["https://node1.ozonechain.io"], + "faucets": [], + "nativeCurrency": { + "name": "OZONE", + "symbol": "OZO", + "decimals": 18 + }, + "infoURL": "https://ozonechain.io", + "shortName": "ozo", + "chainId": 4000, + "networkId": 4000, + "icon": "ozonechain", + "explorers": [ + { + "name": "OZONE Scan", + "url": "https://ozonescan.io", + "standard": "EIP3091" + } + ] +} 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-4000003.json b/_data/chains/eip155-4000003.json new file mode 100644 index 000000000000..39c6e822693a --- /dev/null +++ b/_data/chains/eip155-4000003.json @@ -0,0 +1,25 @@ +{ + "name": "AltLayer Zero Gas Network", + "chain": "ETH", + "rpc": ["https://zero.alt.technology"], + "faucets": [], + "nativeCurrency": { + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://altlayer.io", + "shortName": "alt-zerogas", + "chainId": 4000003, + "networkId": 4000003, + "icon": "altlayer", + "explorers": [ + { + "name": "blockscout", + "url": "https://zero-explorer.alt.technology", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4001.json b/_data/chains/eip155-4001.json new file mode 100644 index 000000000000..adf0be84c8e0 --- /dev/null +++ b/_data/chains/eip155-4001.json @@ -0,0 +1,25 @@ +{ + "name": "Peperium Chain Testnet", + "chain": "PERIUM", + "rpc": ["https://rpc-testnet.peperium.io"], + "faucets": [], + "nativeCurrency": { + "name": "Peperium Chain Testnet", + "symbol": "PERIUM", + "decimals": 18 + }, + "infoURL": "https://peperium.io", + "shortName": "PERIUM", + "chainId": 4001, + "networkId": 4001, + "slip44": 1, + "icon": "peperium", + "explorers": [ + { + "name": "Peperium Chain Explorer", + "url": "https://scan-testnet.peperium.io", + "icon": "peperium", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4002.json b/_data/chains/eip155-4002.json index 652697975e41..345378d20887 100644 --- a/_data/chains/eip155-4002.json +++ b/_data/chains/eip155-4002.json @@ -1,7 +1,13 @@ { "name": "Fantom Testnet", "chain": "FTM", - "rpc": ["https://rpc.testnet.fantom.network"], + "rpc": [ + "https://rpc.testnet.fantom.network", + "https://fantom-testnet-rpc.publicnode.com", + "wss://fantom-testnet-rpc.publicnode.com", + "https://fantom-testnet.drpc.org", + "wss://fantom-testnet.drpc.org" + ], "faucets": ["https://faucet.fantom.network"], "nativeCurrency": { "name": "Fantom", @@ -13,6 +19,7 @@ "shortName": "tftm", "chainId": 4002, "networkId": 4002, + "slip44": 1, "icon": "fantom", "explorers": [ { diff --git a/_data/chains/eip155-4003.json b/_data/chains/eip155-4003.json new file mode 100644 index 000000000000..218b692761d0 --- /dev/null +++ b/_data/chains/eip155-4003.json @@ -0,0 +1,24 @@ +{ + "name": "X1 Fastnet", + "chain": "X1", + "rpc": ["https://x1-fastnet.xen.network"], + "faucets": [], + "nativeCurrency": { + "name": "XN", + "symbol": "XN", + "decimals": 18 + }, + "infoURL": "https://docs.xen.network/go-x1/", + "shortName": "x1-fastnet", + "chainId": 4003, + "networkId": 4003, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.x1-fastnet.xen.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-401.json b/_data/chains/eip155-401.json new file mode 100644 index 000000000000..e35be0b02890 --- /dev/null +++ b/_data/chains/eip155-401.json @@ -0,0 +1,24 @@ +{ + "name": "Ozone Chain Testnet", + "chain": "OZONE", + "rpc": ["https://node1.testnet.ozonechain.io"], + "faucets": [], + "nativeCurrency": { + "name": "OZONE", + "symbol": "OZO", + "decimals": 18 + }, + "infoURL": "https://ozonechain.io", + "shortName": "ozo_tst", + "chainId": 401, + "networkId": 401, + "slip44": 1, + "icon": "ozonechain", + "explorers": [ + { + "name": "OZONE Scan", + "url": "https://testnet.ozonescan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-404.json b/_data/chains/eip155-404.json new file mode 100644 index 000000000000..969caef8b030 --- /dev/null +++ b/_data/chains/eip155-404.json @@ -0,0 +1,33 @@ +{ + "name": "Syndr L3", + "chainId": 404, + "shortName": "syndr-l3", + "title": "Syndr L3 Rollup", + "chain": "SYNDR", + "networkId": 404, + "icon": "syndr", + "rpc": ["https://rpc.syndr.com", "wss://rpc.syndr.com/ws"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://syndr.com", + "explorers": [ + { + "name": "Syndr L3 Explorer", + "url": "https://explorer.syndr.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [ + { + "url": "https://bridge.syndr.com" + } + ] + } +} diff --git a/_data/chains/eip155-4040.json b/_data/chains/eip155-4040.json new file mode 100644 index 000000000000..f471b6cda212 --- /dev/null +++ b/_data/chains/eip155-4040.json @@ -0,0 +1,28 @@ +{ + "name": "Carbonium Testnet Network", + "chain": "CBR", + "rpc": [ + "https://rpc-dev.carbonium.network/", + "https://server-testnet.carbonium.network" + ], + "nativeCurrency": { + "name": "Carbonium", + "symbol": "tCBR", + "decimals": 18 + }, + "infoURL": "https://carbonium.network", + "shortName": "tcbr", + "chainId": 4040, + "networkId": 4040, + "slip44": 1, + "icon": "cbr", + "faucets": ["https://getfaucet.carbonium.network"], + "explorers": [ + { + "name": "Carbonium Network tesnet Explorer", + "icon": "cbr", + "url": "https://testnet.carboniumscan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-404040.json b/_data/chains/eip155-404040.json new file mode 100644 index 000000000000..caf47c1810bd --- /dev/null +++ b/_data/chains/eip155-404040.json @@ -0,0 +1,23 @@ +{ + "name": "Tipboxcoin Mainnet", + "chain": "TPBX", + "icon": "tipboxcoinIcon", + "rpc": ["https://mainnet-rpc.tipboxcoin.net"], + "faucets": ["https://faucet.tipboxcoin.net"], + "nativeCurrency": { + "name": "Tipboxcoin", + "symbol": "TPBX", + "decimals": 18 + }, + "infoURL": "https://tipboxcoin.net", + "shortName": "TPBXm", + "chainId": 404040, + "networkId": 404040, + "explorers": [ + { + "name": "Tipboxcoin", + "url": "https://tipboxcoin.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4048.json b/_data/chains/eip155-4048.json new file mode 100644 index 000000000000..638d363a0789 --- /dev/null +++ b/_data/chains/eip155-4048.json @@ -0,0 +1,23 @@ +{ + "name": "GANchain L1", + "chain": "GAN", + "icon": "gpu", + "rpc": ["https://rpc.gpu.net"], + "faucets": [], + "nativeCurrency": { + "name": "GPUnet", + "symbol": "GPU", + "decimals": 18 + }, + "infoURL": "https://docs.gpu.net/", + "shortName": "GANchain", + "chainId": 4048, + "networkId": 4048, + "explorers": [ + { + "name": "ganscan", + "url": "https://ganscan.gpu.net", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-4051.json b/_data/chains/eip155-4051.json new file mode 100644 index 000000000000..deb763a17de9 --- /dev/null +++ b/_data/chains/eip155-4051.json @@ -0,0 +1,29 @@ +{ + "name": "Bobaopera Testnet", + "chain": "Bobaopera Testnet", + "status": "deprecated", + "rpc": [ + "https://testnet.bobaopera.boba.network", + "wss://wss.testnet.bobaopera.boba.network", + "https://replica.testnet.bobaopera.boba.network", + "wss://replica-wss.testnet.bobaopera.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaoperaTestnet", + "chainId": 4051, + "networkId": 4051, + "slip44": 1, + "explorers": [ + { + "name": "Bobaopera Testnet block explorer", + "url": "https://blockexplorer.testnet.bobaopera.boba.network", + "standard": "none" + } + ] +} 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 new file mode 100644 index 000000000000..44e435ebf6f4 --- /dev/null +++ b/_data/chains/eip155-4061.json @@ -0,0 +1,34 @@ +{ + "name": "Nahmii 3 Mainnet", + "chain": "Nahmii", + "rpc": ["https://rpc.n3.nahmii.io"], + "status": "active", + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://nahmii.io", + "shortName": "Nahmii3Mainnet", + "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://accounts.nahmii.io" + } + ] + } +} diff --git a/_data/chains/eip155-4062.json b/_data/chains/eip155-4062.json new file mode 100644 index 000000000000..e869c24a8384 --- /dev/null +++ b/_data/chains/eip155-4062.json @@ -0,0 +1,35 @@ +{ + "name": "Nahmii 3 Testnet", + "chain": "Nahmii", + "rpc": ["https://rpc.testnet.nahmii.io"], + "status": "active", + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://nahmii.io", + "shortName": "Nahmii3Testnet", + "chainId": 4062, + "networkId": 4062, + "slip44": 1, + "icon": "nahmii", + "explorers": [ + { + "name": "Nahmii 3 Testnet Explorer", + "url": "https://explorer.testnet.nahmii.io", + "icon": "nahmii", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://accounts.testnet.nahmii.io" + } + ] + } +} diff --git a/_data/chains/eip155-4078.json b/_data/chains/eip155-4078.json new file mode 100644 index 000000000000..9d105105bf69 --- /dev/null +++ b/_data/chains/eip155-4078.json @@ -0,0 +1,28 @@ +{ + "name": "Muster Mainnet", + "chainId": 4078, + "shortName": "muster", + "chain": "Muster", + "icon": "muster", + "networkId": 4078, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": ["https://muster.alt.technology"], + "faucets": [], + "explorers": [ + { + "name": "Musterscan", + "url": "https://muster-explorer.alt.technology", + "standard": "EIP3091" + } + ], + "infoURL": "", + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [] + } +} diff --git a/_data/chains/eip155-4080.json b/_data/chains/eip155-4080.json new file mode 100644 index 000000000000..2ef9c445bd95 --- /dev/null +++ b/_data/chains/eip155-4080.json @@ -0,0 +1,23 @@ +{ + "name": "Tobe Chain Testnet", + "chain": "TBC", + "icon": "tobe", + "rpc": ["https://rpc-testnet.tobescan.com"], + "faucets": ["https://faucet.tobescan.com/faucet"], + "nativeCurrency": { + "name": "Tobe Coin", + "symbol": "TOBE", + "decimals": 18 + }, + "infoURL": "https://tobechain.net", + "shortName": "tbc", + "chainId": 4080, + "networkId": 4080, + "explorers": [ + { + "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-4090.json b/_data/chains/eip155-4090.json new file mode 100644 index 000000000000..43609f0ef2c5 --- /dev/null +++ b/_data/chains/eip155-4090.json @@ -0,0 +1,26 @@ +{ + "name": "Fastex Chain (Bahamut) Oasis Testnet", + "title": "Bahamut testnet Oasis", + "icon": "bahamut", + "chain": "Fastex Chain (Bahamut)", + "rpc": ["https://rpc1.oasis.bahamutchain.com"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://faucet.oasis.fastexchain.com"], + "nativeCurrency": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "infoURL": "https://fastexchain.com", + "shortName": "Oasis", + "chainId": 4090, + "networkId": 4090, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://oasis.ftnscan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-4096.json b/_data/chains/eip155-4096.json new file mode 100644 index 000000000000..dd9aa4cff066 --- /dev/null +++ b/_data/chains/eip155-4096.json @@ -0,0 +1,24 @@ +{ + "name": "Bitindi Testnet", + "chain": "BNI", + "icon": "bitindiTestnet", + "rpc": ["https://testnet-rpc.bitindi.org"], + "faucets": ["https://faucet.bitindi.org"], + "nativeCurrency": { + "name": "BNI", + "symbol": "$BNI", + "decimals": 18 + }, + "infoURL": "https://bitindi.org", + "shortName": "BNIt", + "chainId": 4096, + "networkId": 4096, + "slip44": 1, + "explorers": [ + { + "name": "Bitindi", + "url": "https://testnet.bitindiscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4099.json b/_data/chains/eip155-4099.json new file mode 100644 index 000000000000..4edf8d6ea233 --- /dev/null +++ b/_data/chains/eip155-4099.json @@ -0,0 +1,23 @@ +{ + "name": "Bitindi Mainnet", + "chain": "BNI", + "icon": "bitindi", + "rpc": ["https://mainnet-rpc.bitindi.org"], + "faucets": ["https://faucet.bitindi.org"], + "nativeCurrency": { + "name": "BNI", + "symbol": "$BNI", + "decimals": 18 + }, + "infoURL": "https://bitindi.org", + "shortName": "BNIm", + "chainId": 4099, + "networkId": 4099, + "explorers": [ + { + "name": "Bitindi", + "url": "https://bitindiscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-41.json b/_data/chains/eip155-41.json index 4b8fe6ccf21a..ca7a1554749b 100644 --- a/_data/chains/eip155-41.json +++ b/_data/chains/eip155-41.json @@ -2,18 +2,26 @@ "name": "Telos EVM Testnet", "chain": "TLOS", "rpc": [ - "https://testnet.telos.net/evm" - ], - "faucets": [ - "https://app.telos.net/testnet/developers" + "https://rpc.testnet.telos.net", + "https://telos-testnet.drpc.org", + "wss://telos-testnet.drpc.org" ], + "faucets": ["https://app.telos.net/testnet/developers"], "nativeCurrency": { "name": "Telos", "symbol": "TLOS", "decimals": 18 }, "infoURL": "https://telos.net", - "shortName": "Telos EVM Testnet", + "shortName": "TelosEVMTestnet", "chainId": 41, - "networkId": 41 + "networkId": 41, + "slip44": 1, + "explorers": [ + { + "name": "teloscan", + "url": "https://testnet.teloscan.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-4102.json b/_data/chains/eip155-4102.json index 8593a57755f7..4b4c22fbe994 100644 --- a/_data/chains/eip155-4102.json +++ b/_data/chains/eip155-4102.json @@ -1,11 +1,8 @@ { "name": "AIOZ Network Testnet", "chain": "AIOZ", - "network": "testnet", "icon": "aioz", - "rpc": [ - "https://eth-ds.testnet.aioz.network" - ], + "rpc": ["https://eth-ds.testnet.aioz.network"], "faucets": [], "nativeCurrency": { "name": "testAIOZ", @@ -16,10 +13,12 @@ "shortName": "aioz-testnet", "chainId": 4102, "networkId": 4102, - "slip44": 60, - "explorers": [{ - "name": "AIOZ Network Testnet Explorer", - "url": "https://testnet.explorer.aioz.network", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "AIOZ Network Testnet Explorer", + "url": "https://testnet.explorer.aioz.network", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-411.json b/_data/chains/eip155-411.json new file mode 100644 index 000000000000..2c01713eae2a --- /dev/null +++ b/_data/chains/eip155-411.json @@ -0,0 +1,24 @@ +{ + "name": "Pepe Chain Mainnet", + "chain": "PC", + "status": "active", + "icon": "pepechain", + "rpc": ["https://rpc.pepe-chain.vip"], + "faucets": [], + "nativeCurrency": { + "name": "Pepe", + "symbol": "PEPE", + "decimals": 18 + }, + "infoURL": "https://pepe-chain.vip", + "shortName": "pepe", + "chainId": 411, + "networkId": 411, + "explorers": [ + { + "name": "pepechain explorer", + "url": "https://explorer.pepe-chain.vip", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-413413.json b/_data/chains/eip155-413413.json new file mode 100644 index 000000000000..eee1edacd263 --- /dev/null +++ b/_data/chains/eip155-413413.json @@ -0,0 +1,24 @@ +{ + "name": "AIE Testnet", + "chain": "AIE", + "rpc": ["https://rpc1-testnet.aiechain.io"], + "faucets": [], + "nativeCurrency": { + "name": "AIE", + "symbol": "AIE", + "decimals": 18 + }, + "infoURL": "https://testnet.aiescan.io", + "shortName": "aie", + "chainId": 413413, + "networkId": 413413, + "icon": "aie", + "explorers": [ + { + "name": "aiescan-testnet", + "icon": "aie", + "url": "https://testnet.aiescan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-4139.json b/_data/chains/eip155-4139.json new file mode 100644 index 000000000000..dc10e7428bdc --- /dev/null +++ b/_data/chains/eip155-4139.json @@ -0,0 +1,25 @@ +{ + "name": "Humans.ai Testnet", + "chain": "Humans Testnet", + "rpc": ["https://evm-rpc.testnet.humans.zone"], + "faucets": [], + "nativeCurrency": { + "name": "HEART", + "symbol": "HEART", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://humans.ai", + "shortName": "humans_testnet", + "chainId": 4139, + "networkId": 4139, + "slip44": 1, + "icon": "humans-dark" +} diff --git a/_data/chains/eip155-4141.json b/_data/chains/eip155-4141.json new file mode 100644 index 000000000000..97ccc1b993bb --- /dev/null +++ b/_data/chains/eip155-4141.json @@ -0,0 +1,24 @@ +{ + "name": "Tipboxcoin Testnet", + "chain": "TPBX", + "icon": "tipboxcoinIcon", + "rpc": ["https://testnet-rpc.tipboxcoin.net"], + "faucets": ["https://faucet.tipboxcoin.net"], + "nativeCurrency": { + "name": "Tipboxcoin", + "symbol": "TPBX", + "decimals": 18 + }, + "infoURL": "https://tipboxcoin.net", + "shortName": "TPBXt", + "chainId": 4141, + "networkId": 4141, + "slip44": 1, + "explorers": [ + { + "name": "Tipboxcoin", + "url": "https://testnet.tipboxcoin.net", + "standard": "EIP3091" + } + ] +} 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-41500.json b/_data/chains/eip155-41500.json new file mode 100644 index 000000000000..2253033de2df --- /dev/null +++ b/_data/chains/eip155-41500.json @@ -0,0 +1,22 @@ +{ + "name": "Opulent-X BETA", + "chainId": 41500, + "shortName": "ox-beta", + "chain": "Opulent-X", + "networkId": 41500, + "nativeCurrency": { + "name": "Oxyn Gas", + "symbol": "OXYN", + "decimals": 18 + }, + "rpc": ["https://connect.opulent-x.com"], + "faucets": [], + "infoURL": "https://beta.opulent-x.com", + "explorers": [ + { + "name": "Opulent-X BETA Explorer", + "url": "https://explorer.opulent-x.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-4157.json b/_data/chains/eip155-4157.json new file mode 100644 index 000000000000..472676b3f4c9 --- /dev/null +++ b/_data/chains/eip155-4157.json @@ -0,0 +1,26 @@ +{ + "name": "CrossFi Testnet", + "title": "CrossFi Testnet", + "chain": "XFI", + "icon": "crossfi", + "rpc": ["https://rpc.testnet.ms"], + "faucets": [], + "nativeCurrency": { + "name": "XFI", + "symbol": "XFI", + "decimals": 18 + }, + "infoURL": "https://crossfi.org", + "shortName": "crossfi-testnet", + "chainId": 4157, + "networkId": 4157, + "slip44": 1, + "explorers": [ + { + "name": "CrossFi Testnet Scan", + "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-416.json b/_data/chains/eip155-416.json index f0de295a9b6c..7df1e1e6ecbd 100644 --- a/_data/chains/eip155-416.json +++ b/_data/chains/eip155-416.json @@ -2,12 +2,8 @@ "name": "SX Network Mainnet", "chain": "SX", "icon": "SX", - "network": "mainnet", - "rpc": [ - "https://rpc.sx.technology" - ], - "faucets": [ - ], + "rpc": ["https://rpc.sx.technology"], + "faucets": [], "nativeCurrency": { "name": "SX Network", "symbol": "SX", @@ -17,9 +13,11 @@ "shortName": "SX", "chainId": 416, "networkId": 416, - "explorers": [{ - "name": "SX Network Explorer", - "url": "https://explorer.sx.technology", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "SX Network Explorer", + "url": "https://explorer.sx.technology", + "standard": "EIP3091" + } + ] } 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-418.json b/_data/chains/eip155-418.json new file mode 100644 index 000000000000..a9331cd5f494 --- /dev/null +++ b/_data/chains/eip155-418.json @@ -0,0 +1,27 @@ +{ + "name": "LaTestnet", + "chain": "LaTestnet", + "icon": "lachain-network", + "rpc": [ + "https://rpc.testnet.lachain.network", + "https://lachain-testnet.rpc-nodes.cedalio.dev" + ], + "faucets": ["https://faucet.lachain.network"], + "nativeCurrency": { + "name": "Test LaCoin", + "symbol": "TLA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "", + "shortName": "latestnet", + "chainId": 418, + "networkId": 418, + "explorers": [ + { + "name": "LaTestnet Explorer", + "url": "https://testexplorer.lachain.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4181.json b/_data/chains/eip155-4181.json index 47bbd6e0eca1..c1bcd975eacf 100644 --- a/_data/chains/eip155-4181.json +++ b/_data/chains/eip155-4181.json @@ -1,11 +1,7 @@ { - "name": "PHI Network", - "chain": "PHI", - "network": "mainnet", - "rpc": [ - "https://rpc1.phi.network", - "https://rpc2.phi.network" - ], + "name": "PHI Network V1", + "chain": "PHI V1", + "rpc": ["https://rpc1.phi.network", "https://rpc2.phi.network"], "faucets": [], "nativeCurrency": { "name": "PHI", @@ -13,14 +9,16 @@ "decimals": 18 }, "infoURL": "https://phi.network", - "shortName": "PHI", + "shortName": "PHIv1", "chainId": 4181, "networkId": 4181, "icon": "phi", - "explorers": [{ - "name": "PHI Explorer", - "url": "https://explorer.phi.network", - "icon": "phi", - "standard": "none" - }] + "explorers": [ + { + "name": "PHI Explorer", + "url": "https://explorer.phi.network", + "icon": "phi", + "standard": "none" + } + ] } 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-42.json b/_data/chains/eip155-42.json index cb231a53492c..77f10fc99eca 100644 --- a/_data/chains/eip155-42.json +++ b/_data/chains/eip155-42.json @@ -1,32 +1,30 @@ { - "name": "Kovan", - "title": "Ethereum Testnet Kovan", - "chain": "ETH", - "network": "testnet", + "name": "LUKSO Mainnet", + "chain": "LUKSO", + "icon": "lukso", "rpc": [ - "https://kovan.poa.network", - "http://kovan.poa.network:8545", - "https://kovan.infura.io/v3/${INFURA_API_KEY}", - "wss://kovan.infura.io/ws/v3/${INFURA_API_KEY}", - "ws://kovan.poa.network:8546" - ], - "faucets": [ - "http://fauceth.komputing.org?chain=42&address=${ADDRESS}", - "https://faucet.kovan.network", - "https://gitter.im/kovan-testnet/faucet" + "https://42.rpc.thirdweb.com", + "https://rpc.lukso.sigmacore.io", + "https://rpc.mainnet.lukso.network", + "wss://ws-rpc.mainnet.lukso.network" ], + "faucets": [], "nativeCurrency": { - "name": "Kovan Ether", - "symbol": "KOV", + "name": "LUKSO", + "symbol": "LYX", "decimals": 18 }, - "explorers": [{ - "name": "etherscan", - "url": "https://kovan.etherscan.io", - "standard": "EIP3091" - }], - "infoURL": "https://kovan-testnet.github.io/website", - "shortName": "kov", + "explorers": [ + { + "name": "LUKSO Execution Explorer", + "url": "https://explorer.lukso.network", + "standard": "EIP3091" + } + ], + "infoURL": "https://lukso.network", + "shortName": "lukso", "chainId": 42, - "networkId": 42 + "networkId": 42, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "redFlags": ["reusedChainId"] } diff --git a/_data/chains/eip155-420.json b/_data/chains/eip155-420.json index a5836fbfd942..18c1a44bf260 100644 --- a/_data/chains/eip155-420.json +++ b/_data/chains/eip155-420.json @@ -1,15 +1,32 @@ { - "name": "Optimistic Ethereum Testnet Goerli", + "name": "Optimism Goerli Testnet", "chain": "ETH", - "rpc": ["https://goerli.optimism.io/"], + "rpc": [ + "https://goerli.optimism.io", + "https://optimism-goerli-rpc.publicnode.com", + "wss://optimism-goerli-rpc.publicnode.com", + "https://optimism-goerli.gateway.tenderly.co", + "wss://optimism-goerli.gateway.tenderly.co", + "https://optimism-testnet.drpc.org", + "wss://optimism-testnet.drpc.org" + ], "faucets": [], "nativeCurrency": { - "name": "Görli Ether", - "symbol": "GOR", + "name": "Goerli Ether", + "symbol": "ETH", "decimals": 18 }, "infoURL": "https://optimism.io", "shortName": "ogor", "chainId": 420, - "networkId": 420 + "networkId": 420, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://optimism-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-4200.json b/_data/chains/eip155-4200.json new file mode 100644 index 000000000000..b61a0c65a674 --- /dev/null +++ b/_data/chains/eip155-4200.json @@ -0,0 +1,29 @@ +{ + "name": "Merlin Mainnet", + "title": "Merlin Mainnet", + "chain": "Merlin", + "rpc": [ + "https://rpc.merlinchain.io", + "https://merlin-mainnet-enterprise.unifra.io", + "https://rpc-merlin.rockx.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://merlinchain.io", + "shortName": "Merlin-Mainnet", + "chainId": 4200, + "networkId": 4200, + "icon": "merlin", + "explorers": [ + { + "name": "L2scan", + "url": "https://scan.merlinchain.io", + "icon": "merlin", + "standard": "EIP3091" + } + ] +} 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-4201.json b/_data/chains/eip155-4201.json new file mode 100644 index 000000000000..106e1fac34d7 --- /dev/null +++ b/_data/chains/eip155-4201.json @@ -0,0 +1,35 @@ +{ + "name": "LUKSO Testnet", + "chain": "LUKSO Testnet", + "icon": "lukso-testnet", + "rpc": [ + "https://rpc.testnet.lukso.network", + "wss://ws-rpc.testnet.lukso.network" + ], + "faucets": ["https://faucet.testnet.lukso.network"], + "nativeCurrency": { + "name": "TestLYX", + "symbol": "LYXt", + "decimals": 18 + }, + "explorers": [ + { + "name": "LUKSO Testnet Execution Explorer", + "url": "https://explorer.execution.testnet.lukso.network", + "standard": "EIP3091" + } + ], + "infoURL": "https://lukso.network", + "shortName": "lukso-testnet", + "chainId": 4201, + "networkId": 4201, + "slip44": 1, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ] +} diff --git a/_data/chains/eip155-4202.json b/_data/chains/eip155-4202.json new file mode 100644 index 000000000000..cd4f5688328f --- /dev/null +++ b/_data/chains/eip155-4202.json @@ -0,0 +1,25 @@ +{ + "name": "Lisk Sepolia Testnet", + "chain": "ETH", + "icon": "lisk", + "rpc": ["https://rpc.sepolia-api.lisk.com"], + "faucets": ["https://app.optimism.io/faucet"], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lisk.com", + "shortName": "lisksep", + "chainId": 4202, + "networkId": 4202, + "slip44": 134, + "explorers": [ + { + "name": "liskscout", + "url": "https://sepolia-blockscout.lisk.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} 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-420420.json b/_data/chains/eip155-420420.json new file mode 100644 index 000000000000..00359bf1c4cd --- /dev/null +++ b/_data/chains/eip155-420420.json @@ -0,0 +1,24 @@ +{ + "name": "Kekchain", + "chain": "kek", + "rpc": ["https://mainnet.kekchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "KEK", + "symbol": "KEK", + "decimals": 18 + }, + "infoURL": "https://kekchain.com", + "shortName": "KEK", + "chainId": 420420, + "networkId": 103090, + "icon": "kek", + "explorers": [ + { + "name": "blockscout", + "url": "https://mainnet-explorer.kekchain.com", + "icon": "kek", + "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-420666.json b/_data/chains/eip155-420666.json new file mode 100644 index 000000000000..f3a8861e7385 --- /dev/null +++ b/_data/chains/eip155-420666.json @@ -0,0 +1,25 @@ +{ + "name": "Kekchain (kektest)", + "chain": "kek", + "rpc": ["https://testnet.kekchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "tKEK", + "symbol": "tKEK", + "decimals": 18 + }, + "infoURL": "https://kekchain.com", + "shortName": "tKEK", + "chainId": 420666, + "networkId": 1, + "slip44": 1, + "icon": "kek", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.kekchain.com", + "icon": "kek", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-42069.json b/_data/chains/eip155-42069.json index 82d45c45764d..7358c91120a1 100644 --- a/_data/chains/eip155-42069.json +++ b/_data/chains/eip155-42069.json @@ -1,16 +1,15 @@ - { + "name": "pegglecoin", + "chain": "42069", + "rpc": [], + "faucets": [], + "nativeCurrency": { "name": "pegglecoin", - "chain": "42069", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "pegglecoin", - "symbol": "peggle", - "decimals": 18 - }, - "infoURL": "https://teampeggle.com", - "shortName": "PC", - "chainId": 42069, - "networkId": 42069 + "symbol": "peggle", + "decimals": 18 + }, + "infoURL": "https://teampeggle.com", + "shortName": "PC", + "chainId": 42069, + "networkId": 42069 } diff --git a/_data/chains/eip155-420692.json b/_data/chains/eip155-420692.json new file mode 100644 index 000000000000..ed0605e8d98d --- /dev/null +++ b/_data/chains/eip155-420692.json @@ -0,0 +1,29 @@ +{ + "name": "Alterium L2 Testnet", + "chain": "ALT", + "icon": "alterium", + "rpc": ["https://l2-testnet-rpc.altscan.org"], + "faucets": [], + "nativeCurrency": { + "name": "Alterium ETH", + "symbol": "AltETH", + "decimals": 18 + }, + "infoURL": "https://alteriumprotocol.org", + "shortName": "alterium", + "chainId": 420692, + "networkId": 420692, + "slip44": 1, + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [{ "url": "https://testnet-bridge.alteriumprotocol.org" }] + }, + "explorers": [ + { + "name": "Alterium L2 Testnet Explorer", + "url": "https://l2-testnet.altscan.org", + "standard": "EIP3091" + } + ] +} 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-42072.json b/_data/chains/eip155-42072.json new file mode 100644 index 000000000000..9995393f0d60 --- /dev/null +++ b/_data/chains/eip155-42072.json @@ -0,0 +1,23 @@ +{ + "name": "AgentLayer Testnet", + "chain": "AgentLayer", + "icon": "agentLayerIcon", + "rpc": ["https://testnet-rpc.agentlayer.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Agent", + "symbol": "AGENT", + "decimals": 18 + }, + "infoURL": "https://agentlayer.xyz/home", + "shortName": "agent", + "chainId": 42072, + "networkId": 42072, + "explorers": [ + { + "name": "AgentLayer Testnet Explorer", + "url": "https://testnet-explorer.agentlayer.xyz", + "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 522672767a1a..37dc056decd8 100644 --- a/_data/chains/eip155-42161.json +++ b/_data/chains/eip155-42161.json @@ -12,7 +12,9 @@ "rpc": [ "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://arb1.arbitrum.io/rpc", + "https://arbitrum-one-rpc.publicnode.com", + "wss://arbitrum-one-rpc.publicnode.com" ], "faucets": [], "explorers": [ @@ -25,12 +27,18 @@ "name": "Arbitrum Explorer", "url": "https://explorer.arbitrum.io", "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://arbitrum.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" } ], "infoURL": "https://arbitrum.io", "parent": { - "type" : "L2", - "chain": "eip155-1", - "bridges": [ {"url":"https://bridge.arbitrum.io"} ] + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.arbitrum.io" }] } } diff --git a/_data/chains/eip155-421611.json b/_data/chains/eip155-421611.json index e883727e4093..94b9067d79fd 100644 --- a/_data/chains/eip155-421611.json +++ b/_data/chains/eip155-421611.json @@ -5,17 +5,14 @@ "shortName": "arb-rinkeby", "chain": "ETH", "networkId": 421611, + "slip44": 1, "nativeCurrency": { "name": "Arbitrum Rinkeby Ether", - "symbol": "ARETH", + "symbol": "ETH", "decimals": 18 }, - "rpc": [ - "https://rinkeby.arbitrum.io/rpc" - ], - "faucets": [ - "http://fauceth.komputing.org?chain=421611&address=${ADDRESS}" - ], + "rpc": ["https://rinkeby.arbitrum.io/rpc"], + "faucets": ["http://fauceth.komputing.org?chain=421611&address=${ADDRESS}"], "infoURL": "https://arbitrum.io", "explorers": [ { @@ -30,8 +27,8 @@ } ], "parent": { - "type" : "L2", - "chain": "eip155-4", - "bridges": [ {"url":"https://bridge.arbitrum.io"} ] + "type": "L2", + "chain": "eip155-4", + "bridges": [{ "url": "https://bridge.arbitrum.io" }] } } diff --git a/_data/chains/eip155-421613.json b/_data/chains/eip155-421613.json new file mode 100644 index 000000000000..950a007ed720 --- /dev/null +++ b/_data/chains/eip155-421613.json @@ -0,0 +1,33 @@ +{ + "name": "Arbitrum Goerli", + "title": "Arbitrum Goerli Rollup Testnet", + "chainId": 421613, + "shortName": "arb-goerli", + "chain": "ETH", + "networkId": 421613, + "slip44": 1, + "nativeCurrency": { + "name": "Arbitrum Goerli Ether", + "symbol": "AGOR", + "decimals": 18 + }, + "rpc": [ + "https://goerli-rollup.arbitrum.io/rpc", + "https://arbitrum-goerli.publicnode.com", + "wss://arbitrum-goerli.publicnode.com" + ], + "faucets": [], + "infoURL": "https://arbitrum.io/", + "explorers": [ + { + "name": "Arbitrum Goerli Arbiscan", + "url": "https://goerli.arbiscan.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [{ "url": "https://bridge.arbitrum.io/" }] + } +} diff --git a/_data/chains/eip155-4216137055.json b/_data/chains/eip155-4216137055.json index 027c47d59a53..aee85ac2e51b 100644 --- a/_data/chains/eip155-4216137055.json +++ b/_data/chains/eip155-4216137055.json @@ -2,12 +2,8 @@ "name": "OneLedger Testnet Frankenstein", "chain": "OLT", "icon": "oneledger", - "rpc": [ - "https://frankenstein-rpc.oneledger.network" - ], - "faucets": [ - "https://frankenstein-faucet.oneledger.network" - ], + "rpc": ["https://frankenstein-rpc.oneledger.network"], + "faucets": ["https://frankenstein-faucet.oneledger.network"], "nativeCurrency": { "name": "OLT", "symbol": "OLT", @@ -17,6 +13,7 @@ "shortName": "frankenstein", "chainId": 4216137055, "networkId": 4216137055, + "slip44": 1, "explorers": [ { "name": "OneLedger Block Explorer", @@ -24,4 +21,4 @@ "standard": "EIP3091" } ] -} \ No newline at end of file +} diff --git a/_data/chains/eip155-421614.json b/_data/chains/eip155-421614.json new file mode 100644 index 000000000000..0bd6274bb4d4 --- /dev/null +++ b/_data/chains/eip155-421614.json @@ -0,0 +1,43 @@ +{ + "name": "Arbitrum Sepolia", + "title": "Arbitrum Sepolia Rollup Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia-rollup.arbitrum.io/rpc", + "https://arbitrum-sepolia.infura.io/v3/${INFURA_API_KEY}", + "https://arbitrum-sepolia-rpc.publicnode.com", + "wss://arbitrum-sepolia-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://arbitrum.io", + "shortName": "arb-sep", + "chainId": 421614, + "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", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + } +} diff --git a/_data/chains/eip155-42170.json b/_data/chains/eip155-42170.json new file mode 100644 index 000000000000..46e4a1d0473b --- /dev/null +++ b/_data/chains/eip155-42170.json @@ -0,0 +1,32 @@ +{ + "name": "Arbitrum Nova", + "chainId": 42170, + "shortName": "arb-nova", + "chain": "ETH", + "networkId": 42170, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://nova.arbitrum.io/rpc", + "https://arbitrum-nova-rpc.publicnode.com", + "wss://arbitrum-nova-rpc.publicnode.com" + ], + "faucets": [], + "explorers": [ + { + "name": "Arbitrum Nova Chain Explorer", + "url": "https://nova-explorer.arbitrum.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "infoURL": "https://arbitrum.io", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.arbitrum.io" }] + } +} diff --git a/_data/chains/eip155-422.json b/_data/chains/eip155-422.json new file mode 100644 index 000000000000..abdf155a75e4 --- /dev/null +++ b/_data/chains/eip155-422.json @@ -0,0 +1,23 @@ +{ + "name": "Viridis Mainnet", + "chain": "VRD", + "icon": "viridis", + "rpc": ["https://mainnet-rpc.vrd.network"], + "faucets": [], + "nativeCurrency": { + "name": "Viridis Token", + "symbol": "VRD", + "decimals": 18 + }, + "infoURL": "https://viridis.network", + "shortName": "vrd", + "chainId": 422, + "networkId": 422, + "explorers": [ + { + "name": "Viridis Mainnet", + "url": "https://explorer.vrd.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-42220.json b/_data/chains/eip155-42220.json index d12808203c36..b721f05968ac 100644 --- a/_data/chains/eip155-42220.json +++ b/_data/chains/eip155-42220.json @@ -1,7 +1,7 @@ { "name": "Celo Mainnet", "chainId": 42220, - "shortName": "CELO", + "shortName": "celo", "chain": "CELO", "networkId": 42220, "nativeCurrency": { @@ -10,12 +10,23 @@ "decimals": 18 }, "rpc": ["https://forno.celo.org", "wss://forno.celo.org/ws"], - "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], + "faucets": [], "infoURL": "https://docs.celo.org/", - - "explorers": [{ - "name": "blockscout", - "url": "https://explorer.celo.org", - "standard": "none" - }] + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://superbridge.app/celo" }] + }, + "explorers": [ + { + "name": "Celoscan", + "url": "https://celoscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://celo.blockscout.com", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-42261.json b/_data/chains/eip155-42261.json index 7ebfaa7f21fa..5bda79d97c74 100644 --- a/_data/chains/eip155-42261.json +++ b/_data/chains/eip155-42261.json @@ -1,24 +1,27 @@ { - "name": "Emerald Paratime Testnet", + "name": "Oasis Emerald Testnet", "chain": "Emerald", "icon": "oasis", "rpc": [ - "https://testnet.emerald.oasis.dev/", - "wss://testnet.emerald.oasis.dev/ws" + "https://testnet.emerald.oasis.io/", + "wss://testnet.emerald.oasis.io/ws" ], - "faucets": [], + "faucets": ["https://faucet.testnet.oasis.io/"], "nativeCurrency": { - "name": "Emerald Rose", - "symbol": "ROSE", + "name": "Emerald Test Rose", + "symbol": "TEST", "decimals": 18 }, - "infoURL": "https://docs.oasis.dev/general/developer-resources/overview", - "shortName": "emerald", + "infoURL": "https://docs.oasis.io/dapp/emerald", + "shortName": "emerald-testnet", "chainId": 42261, "networkId": 42261, - "explorers": [{ - "name": "Emerald Paratime Testnet Explorer", - "url": "https://testnet.explorer.emerald.oasis.dev", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "Oasis Emerald Testnet Explorer", + "url": "https://explorer.oasis.io/testnet/emerald", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-42262.json b/_data/chains/eip155-42262.json index 5bf927bdc3db..e1d67c2a3826 100644 --- a/_data/chains/eip155-42262.json +++ b/_data/chains/eip155-42262.json @@ -1,24 +1,23 @@ { - "name": "Emerald Paratime Mainnet", + "name": "Oasis Emerald", "chain": "Emerald", "icon": "oasis", - "rpc": [ - "https://emerald.oasis.dev", - "wss://emerald.oasis.dev/ws" - ], + "rpc": ["https://emerald.oasis.io", "wss://emerald.oasis.io/ws"], "faucets": [], "nativeCurrency": { "name": "Emerald Rose", "symbol": "ROSE", "decimals": 18 }, - "infoURL": "https://docs.oasis.dev/general/developer-resources/overview", - "shortName": "oasis", + "infoURL": "https://docs.oasis.io/dapp/emerald", + "shortName": "emerald", "chainId": 42262, "networkId": 42262, - "explorers": [{ - "name": "Emerald Paratime Mainnet Explorer", - "url": "https://explorer.emerald.oasis.dev", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "Oasis Emerald Explorer", + "url": "https://explorer.oasis.io/mainnet/emerald", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-42355.json b/_data/chains/eip155-42355.json new file mode 100644 index 000000000000..58ff22527edb --- /dev/null +++ b/_data/chains/eip155-42355.json @@ -0,0 +1,22 @@ +{ + "name": "GoldXChain Mainnet", + "chain": "GoldX", + "rpc": ["https://mainnet-rpc.goldxchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "GoldX", + "symbol": "GOLDX", + "decimals": 18 + }, + "infoURL": "https://goldxchain.io", + "shortName": "goldx", + "chainId": 42355, + "networkId": 42355, + "explorers": [ + { + "name": "GoldXChain Explorer", + "url": "https://explorer.goldxchain.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-424.json b/_data/chains/eip155-424.json new file mode 100644 index 000000000000..3bd8306809f6 --- /dev/null +++ b/_data/chains/eip155-424.json @@ -0,0 +1,30 @@ +{ + "name": "PGN (Public Goods Network)", + "chain": "ETH", + "rpc": ["https://rpc.publicgoods.network"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://publicgoods.network/", + "shortName": "PGN", + "chainId": 424, + "networkId": 424, + "icon": "publicGoodsNetwork", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.publicgoods.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.publicgoods.network" }] + } +} diff --git a/_data/chains/eip155-4242.json b/_data/chains/eip155-4242.json new file mode 100644 index 000000000000..122ff3d02d60 --- /dev/null +++ b/_data/chains/eip155-4242.json @@ -0,0 +1,28 @@ +{ + "name": "Nexi Mainnet", + "chain": "Nexi", + "icon": "nexi", + "rpc": [ + "https://rpc.chain.nexi.technology/", + "https://chain.nexilix.com", + "https://chain.nexi.evmnode.online" + ], + "faucets": [], + "nativeCurrency": { + "name": "Nexi", + "symbol": "NEXI", + "decimals": 18 + }, + "infoURL": "https://www.nexi.technology/", + "shortName": "nexi", + "chainId": 4242, + "networkId": 4242, + "slip44": 2500, + "explorers": [ + { + "name": "nexiscan", + "url": "https://www.nexiscan.com", + "standard": "EIP3091" + } + ] +} 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-424242.json b/_data/chains/eip155-424242.json new file mode 100644 index 000000000000..0b1d22e53701 --- /dev/null +++ b/_data/chains/eip155-424242.json @@ -0,0 +1,25 @@ +{ + "name": "Fastex Chain testnet", + "chain": "FTN", + "title": "Fastex Chain testnet", + "rpc": ["https://rpc.testnet.fastexchain.com"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "infoURL": "https://fastex.com", + "shortName": "fastexTestnet", + "chainId": 424242, + "networkId": 424242, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.ftnscan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-42429.json b/_data/chains/eip155-42429.json new file mode 100644 index 000000000000..34ff1ec98c95 --- /dev/null +++ b/_data/chains/eip155-42429.json @@ -0,0 +1,24 @@ +{ + "name": "Tempo Testnet", + "chain": "ETH", + "rpc": ["https://rpc.testnet.tempo.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "No native currency", + "symbol": "USD", + "decimals": 6 + }, + "infoURL": "https://tempo.xyz", + "shortName": "tempotest", + "chainId": 42429, + "networkId": 42429, + "icon": "tempo", + "explorers": [ + { + "name": "tempo-explorer", + "url": "https://explore.tempo.xyz", + "icon": "tempo", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4243.json b/_data/chains/eip155-4243.json new file mode 100644 index 000000000000..a9c29c8a3185 --- /dev/null +++ b/_data/chains/eip155-4243.json @@ -0,0 +1,27 @@ +{ + "name": "Nexi V2 Mainnet", + "chain": "Nexi V2", + "icon": "nexi", + "rpc": [ + "https://chain.nexiv2.nexilix.com", + "https://rpc.chainv1.nexi.technology" + ], + "faucets": [], + "nativeCurrency": { + "name": "NexiV2", + "symbol": "NEXI", + "decimals": 18 + }, + "infoURL": "https://www.nexi.technology/", + "shortName": "NexiV2", + "chainId": 4243, + "networkId": 4243, + "slip44": 2500, + "explorers": [ + { + "name": "nexiscan", + "url": "https://www.nexiscan.com", + "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-427.json b/_data/chains/eip155-427.json new file mode 100644 index 000000000000..8d02293defb7 --- /dev/null +++ b/_data/chains/eip155-427.json @@ -0,0 +1,22 @@ +{ + "name": "Zeeth Chain", + "chain": "ZeethChain", + "rpc": ["https://rpc.zeeth.io"], + "faucets": [], + "nativeCurrency": { + "name": "Zeeth Token", + "symbol": "ZTH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "zeeth", + "chainId": 427, + "networkId": 427, + "explorers": [ + { + "name": "Zeeth Explorer", + "url": "https://explorer.zeeth.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-42766.json b/_data/chains/eip155-42766.json new file mode 100644 index 000000000000..0be7bc21fa35 --- /dev/null +++ b/_data/chains/eip155-42766.json @@ -0,0 +1,30 @@ +{ + "name": "ZKFair Mainnet", + "title": "ZKFair Mainnet", + "chain": "ZKFair", + "rpc": ["https://rpc.zkfair.io"], + "faucets": [], + "nativeCurrency": { + "name": "USDC Token", + "symbol": "USDC", + "decimals": 18 + }, + "infoURL": "https://zkfair.io", + "shortName": "ZKFair-Mainnet", + "chainId": 42766, + "networkId": 42766, + "icon": "zkfair", + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.zkfair.io", + "icon": "zkfair", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://wallet.zkfair.io" }] + } +} 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-42793.json b/_data/chains/eip155-42793.json new file mode 100644 index 000000000000..8fff97819289 --- /dev/null +++ b/_data/chains/eip155-42793.json @@ -0,0 +1,24 @@ +{ + "name": "Etherlink Mainnet", + "chain": "Etherlink", + "icon": "etherlink", + "chainId": 42793, + "networkId": 42793, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://etherlink.com", + "shortName": "etlk", + "nativeCurrency": { + "name": "tez", + "symbol": "XTZ", + "decimals": 18 + }, + "rpc": ["https://node.mainnet.etherlink.com"], + "faucets": [], + "explorers": [ + { + "name": "Etherlink Explorer", + "url": "https://explorer.etherlink.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-428.json b/_data/chains/eip155-428.json new file mode 100644 index 000000000000..05bd437e4945 --- /dev/null +++ b/_data/chains/eip155-428.json @@ -0,0 +1,23 @@ +{ + "name": "Geso Verse", + "chain": "Geso Verse", + "rpc": ["https://rpc.verse.gesoten.com/"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://gesoten.com/", + "shortName": "GSV", + "icon": "gesoten", + "chainId": 428, + "networkId": 428, + "explorers": [ + { + "name": "Geso Verse Explorer", + "url": "https://explorer.verse.gesoten.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-42801.json b/_data/chains/eip155-42801.json new file mode 100644 index 000000000000..37a36ad277d2 --- /dev/null +++ b/_data/chains/eip155-42801.json @@ -0,0 +1,24 @@ +{ + "name": "Gesoten Verse Testnet", + "chain": "Gesoten Verse", + "rpc": ["https://rpc.testnet.verse.gesoten.com/"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://gesoten.com/", + "shortName": "GST", + "icon": "gesoten", + "chainId": 42801, + "networkId": 42801, + "slip44": 1, + "explorers": [ + { + "name": "Gesoten Verse Testnet Explorer", + "url": "https://explorer.testnet.verse.gesoten.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4281033.json b/_data/chains/eip155-4281033.json new file mode 100644 index 000000000000..a73458058d3c --- /dev/null +++ b/_data/chains/eip155-4281033.json @@ -0,0 +1,18 @@ +{ + "name": "Worlds Caldera", + "chain": "WCal", + "rpc": ["https://worlds-test.calderachain.xyz/http"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://caldera.xyz/", + "shortName": "worldscal", + "chainId": 4281033, + "networkId": 4281033, + "icon": "ethereum", + "explorers": [] +} 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-42888.json b/_data/chains/eip155-42888.json new file mode 100644 index 000000000000..2ca0bf35a937 --- /dev/null +++ b/_data/chains/eip155-42888.json @@ -0,0 +1,25 @@ +{ + "name": "Kinto Testnet", + "title": "Kinto Testnet", + "chain": "ETH", + "rpc": ["http://35.215.120.180:8545"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ethereum.org", + "shortName": "keth", + "chainId": 42888, + "networkId": 42888, + "slip44": 1, + "explorers": [ + { + "name": "kintoscan", + "url": "http://35.215.120.180:4000", + "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-43.json b/_data/chains/eip155-43.json index 1360967d2980..406db2549338 100644 --- a/_data/chains/eip155-43.json +++ b/_data/chains/eip155-43.json @@ -1,14 +1,12 @@ { "name": "Darwinia Pangolin Testnet", "chain": "pangolin", - "rpc": [ - "https://pangolin-rpc.darwinia.network" - ], + "rpc": ["https://pangolin-rpc.darwinia.network"], "faucets": [ - "https://docs.crab.network/dvm/wallets/dvm-metamask#apply-for-the-test-token" + "https://docs.darwinia.network/pangolin-testnet-1e9ac8b09e874e8abd6a7f18c096ca6a" ], "nativeCurrency": { - "name": "Pangolin Network Native Token”", + "name": "Pangolin Network Native Token", "symbol": "PRING", "decimals": 18 }, @@ -16,9 +14,12 @@ "shortName": "pangolin", "chainId": 43, "networkId": 43, - "explorers": [{ - "name": "subscan", - "url": "https://pangolin.subscan.io", - "standard": "none" - }] + "slip44": 1, + "explorers": [ + { + "name": "subscan", + "url": "https://pangolin.subscan.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-43110.json b/_data/chains/eip155-43110.json index a3492bdb6e97..53d57d4a14a8 100644 --- a/_data/chains/eip155-43110.json +++ b/_data/chains/eip155-43110.json @@ -1,12 +1,8 @@ { "name": "Athereum", "chain": "ATH", - "rpc": [ - "https://ava.network:21015/ext/evm/rpc" - ], - "faucets": [ - "http://athfaucet.ava.network//?address=${ADDRESS}" - ], + "rpc": ["https://ava.network:21015/ext/evm/rpc"], + "faucets": ["http://athfaucet.ava.network//?address=${ADDRESS}"], "nativeCurrency": { "name": "Athereum Ether", "symbol": "ATH", diff --git a/_data/chains/eip155-43111.json b/_data/chains/eip155-43111.json new file mode 100644 index 000000000000..055afd9e35ab --- /dev/null +++ b/_data/chains/eip155-43111.json @@ -0,0 +1,29 @@ +{ + "name": "Hemi", + "chain": "ETH", + "rpc": ["https://rpc.hemi.network/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://hemi.xyz", + "shortName": "hemi", + "chainId": 43111, + "networkId": 43111, + "icon": "hemi", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.hemi.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + }, + "status": "active" +} diff --git a/_data/chains/eip155-43113.json b/_data/chains/eip155-43113.json index 56eafee8588c..565fd95a42ff 100644 --- a/_data/chains/eip155-43113.json +++ b/_data/chains/eip155-43113.json @@ -1,12 +1,13 @@ { "name": "Avalanche Fuji Testnet", "chain": "AVAX", + "icon": "avax", "rpc": [ - "https://api.avax-test.network/ext/bc/C/rpc" - ], - "faucets": [ - "https://faucet.avax-test.network/" + "https://api.avax-test.network/ext/bc/C/rpc", + "https://avalanche-fuji-c-chain-rpc.publicnode.com", + "wss://avalanche-fuji-c-chain-rpc.publicnode.com" ], + "faucets": ["https://faucet.avax-test.network/"], "nativeCurrency": { "name": "Avalanche", "symbol": "AVAX", @@ -16,11 +17,22 @@ "shortName": "Fuji", "chainId": 43113, "networkId": 1, + "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 2784924b58a9..f3f7575946a9 100644 --- a/_data/chains/eip155-43114.json +++ b/_data/chains/eip155-43114.json @@ -1,25 +1,35 @@ { "name": "Avalanche C-Chain", "chain": "AVAX", + "icon": "avax", "rpc": [ - "https://api.avax.network/ext/bc/C/rpc" + "https://api.avax.network/ext/bc/C/rpc", + "https://avalanche-c-chain-rpc.publicnode.com", + "wss://avalanche-c-chain-rpc.publicnode.com" ], - "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], + "features": [{ "name": "EIP1559" }], + "faucets": [], "nativeCurrency": { "name": "Avalanche", "symbol": "AVAX", "decimals": 18 }, "infoURL": "https://www.avax.network/", - "shortName": "Avalanche", + "shortName": "avax", "chainId": 43114, "networkId": 43114, "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-431140.json b/_data/chains/eip155-431140.json new file mode 100644 index 000000000000..fcbcbff21003 --- /dev/null +++ b/_data/chains/eip155-431140.json @@ -0,0 +1,18 @@ +{ + "name": "Markr Go", + "chain": "Unified", + "icon": "markrgo", + "rpc": ["https://rpc.markr.io/ext/"], + "faucets": [], + "nativeCurrency": { + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 + }, + "infoURL": "https://www.markr.io/", + "shortName": "markr-go", + "chainId": 431140, + "networkId": 431140, + "explorers": [], + "status": "incubating" +} diff --git a/_data/chains/eip155-432.json b/_data/chains/eip155-432.json new file mode 100644 index 000000000000..a0e7bab75297 --- /dev/null +++ b/_data/chains/eip155-432.json @@ -0,0 +1,28 @@ +{ + "name": "NutriEmp Chain", + "chain": "nutriemp-chain", + "rpc": ["https://rpc.nutriemp-chain.link", "https://rpc.nutriemp.com"], + "faucets": [], + "nativeCurrency": { "name": "GRAMZ", "symbol": "GRAMZ", "decimals": 18 }, + "infoURL": "https://nutriemp.com", + "shortName": "nutriemp", + "chainId": 432, + "networkId": 432, + "icon": "GRAMZ", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "explorers": [ + { + "name": "NutriEmp Explorer", + "url": "https://explorer.nutriemp-chain.link", + "standard": "EIP3091", + "icon": "GRAMZ" + } + ] +} 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-43214913.json b/_data/chains/eip155-43214913.json new file mode 100644 index 000000000000..8e615a2dff5d --- /dev/null +++ b/_data/chains/eip155-43214913.json @@ -0,0 +1,25 @@ +{ + "name": "maistestsubnet", + "chain": "MAI", + "rpc": [ + "http://174.138.9.169:9650/ext/bc/VUKSzFZKckx4PoZF9gX5QAqLPxbLzvu1vcssPG5QuodaJtdHT/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "maistestsubnet", + "symbol": "MAI", + "decimals": 18 + }, + "infoURL": "", + "shortName": "mais", + "chainId": 43214913, + "networkId": 43214913, + "slip44": 1, + "explorers": [ + { + "name": "maistesntet", + "url": "http://174.138.9.169:3006/?network=maistesntet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-432201.json b/_data/chains/eip155-432201.json index d059e497ec06..def7539cb682 100644 --- a/_data/chains/eip155-432201.json +++ b/_data/chains/eip155-432201.json @@ -1,25 +1,24 @@ -{ - "name": "Dexalot Testnet", - "chain": "DEXALOT", - "network": "testnet", - "rpc": [ - "https://subnets.avax.network/dexalot/testnet/rpc" - ], - "faucets": ["https://sfaucet.dexalot-test.com"], - "nativeCurrency": { - "name": "Dexalot", - "symbol": "ALOT", - "decimals": 18 - }, - "infoURL": "https://dexalot.com", - "shortName": "Dexalot", - "chainId": 432201, - "networkId": 432201, - "explorers": [ - { - "name": "Avalanche Subnet Explorer", - "url": "https://subnets.avax.network/dexalot/testnet/explorer", - "standard": "EIP3091" - } - ] -} +{ + "name": "Dexalot Subnet Testnet", + "chain": "DEXALOT", + "icon": "dexalot", + "rpc": ["https://subnets.avax.network/dexalot/testnet/rpc"], + "faucets": ["https://faucet.avax.network/?subnet=dexalot"], + "nativeCurrency": { + "name": "Dexalot", + "symbol": "ALOT", + "decimals": 18 + }, + "infoURL": "https://dexalot.com", + "shortName": "dexalot-testnet", + "chainId": 432201, + "networkId": 432201, + "slip44": 1, + "explorers": [ + { + "name": "Avalanche Subnet Testnet Explorer", + "url": "https://subnets-test.avax.network/dexalot", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-432204.json b/_data/chains/eip155-432204.json new file mode 100644 index 000000000000..56daaafdbafb --- /dev/null +++ b/_data/chains/eip155-432204.json @@ -0,0 +1,23 @@ +{ + "name": "Dexalot Subnet", + "chain": "DEXALOT", + "icon": "dexalot", + "rpc": ["https://subnets.avax.network/dexalot/mainnet/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Dexalot", + "symbol": "ALOT", + "decimals": 18 + }, + "infoURL": "https://dexalot.com", + "shortName": "dexalot", + "chainId": 432204, + "networkId": 432204, + "explorers": [ + { + "name": "Avalanche Subnet Explorer", + "url": "https://subnets.avax.network/dexalot", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4326.json b/_data/chains/eip155-4326.json new file mode 100644 index 000000000000..f9458894af19 --- /dev/null +++ b/_data/chains/eip155-4326.json @@ -0,0 +1,16 @@ +{ + "name": "MegaETH Mainnet", + "chain": "ETH", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "explorers": [], + "infoURL": "https://megaeth.com", + "shortName": "megaeth", + "chainId": 4326, + "networkId": 4326 +} diff --git a/_data/chains/eip155-4328.json b/_data/chains/eip155-4328.json new file mode 100644 index 000000000000..3823b4837cc5 --- /dev/null +++ b/_data/chains/eip155-4328.json @@ -0,0 +1,37 @@ +{ + "name": "Bobafuji Testnet", + "chain": "Bobafuji Testnet", + "status": "deprecated", + "rpc": [ + "https://testnet.avax.boba.network", + "wss://wss.testnet.avax.boba.network", + "https://replica.testnet.avax.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaFujiTestnet", + "chainId": 4328, + "networkId": 4328, + "slip44": 1, + "explorers": [ + { + "name": "Bobafuji Testnet block explorer", + "url": "https://blockexplorer.testnet.avax.boba.network", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://gateway.boba.network" + } + ] + } +} diff --git a/_data/chains/eip155-43288.json b/_data/chains/eip155-43288.json new file mode 100644 index 000000000000..272fc66a89cf --- /dev/null +++ b/_data/chains/eip155-43288.json @@ -0,0 +1,28 @@ +{ + "name": "Boba Avax", + "chain": "Boba Avax", + "status": "deprecated", + "rpc": [ + "https://avax.boba.network", + "wss://wss.avax.boba.network", + "https://replica.avax.boba.network", + "wss://replica-wss.avax.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://docs.boba.network/for-developers/network-avalanche", + "shortName": "bobaavax", + "chainId": 43288, + "networkId": 43288, + "explorers": [ + { + "name": "Boba Avax Explorer", + "url": "https://blockexplorer.avax.boba.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-4337.json b/_data/chains/eip155-4337.json new file mode 100644 index 000000000000..7ce633f07f5d --- /dev/null +++ b/_data/chains/eip155-4337.json @@ -0,0 +1,33 @@ +{ + "name": "Beam", + "chain": "BEAM", + "rpc": [ + "https://build.onbeam.com/rpc", + "wss://build.onbeam.com/ws", + "https://subnets.avax.network/beam/mainnet/rpc", + "wss://subnets.avax.network/beam/mainnet/ws" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": ["https://faucet.onbeam.com"], + "nativeCurrency": { + "name": "Beam", + "symbol": "BEAM", + "decimals": 18 + }, + "infoURL": "https://www.onbeam.com", + "shortName": "beam", + "icon": "beam", + "chainId": 4337, + "networkId": 4337, + "explorers": [ + { + "name": "Beam Explorer", + "url": "https://subnets.avax.network/beam", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-434.json b/_data/chains/eip155-434.json new file mode 100644 index 000000000000..d7f86f177ed7 --- /dev/null +++ b/_data/chains/eip155-434.json @@ -0,0 +1,23 @@ +{ + "name": "Boyaa Mainnet", + "chain": "BYC", + "rpc": ["https://evm-rpc.mainnet.boyaa.network"], + "faucets": [], + "nativeCurrency": { + "name": "Boyaa mainnet native coin", + "symbol": "BYC", + "decimals": 18 + }, + "infoURL": "https://boyaa.network", + "shortName": "BYC", + "chainId": 434, + "networkId": 434, + "icon": "boyaanetwork", + "explorers": [ + { + "name": "Boyaa explorer", + "url": "https://explorer.mainnet.boyaa.network", + "standard": "EIP3091" + } + ] +} 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-43851.json b/_data/chains/eip155-43851.json new file mode 100644 index 000000000000..68f50432df89 --- /dev/null +++ b/_data/chains/eip155-43851.json @@ -0,0 +1,26 @@ +{ + "name": "ZKFair Testnet", + "chain": "ETH", + "rpc": ["https://testnet-rpc.zkfair.io"], + "faucets": [], + "nativeCurrency": { + "name": "USDC Token", + "symbol": "USDC", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://zkfair.io", + "shortName": "ZKFair-Testnet", + "chainId": 43851, + "networkId": 43851, + "slip44": 1, + "icon": "zkfair", + "explorers": [ + { + "name": "ZKFair Testnet Info", + "url": "https://testnet-scan.zkfair.io", + "icon": "zkfair", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-44.json b/_data/chains/eip155-44.json index f461a3e98675..3a746a07121d 100644 --- a/_data/chains/eip155-44.json +++ b/_data/chains/eip155-44.json @@ -1,9 +1,7 @@ { - "name": "Darwinia Crab Network", + "name": "Crab Network", "chain": "crab", - "rpc": [ - "https://crab-rpc.darwinia.network" - ], + "rpc": ["https://crab-rpc.darwinia.network", "https://crab-rpc.dcdao.box"], "faucets": [], "nativeCurrency": { "name": "Crab Network Native Token", @@ -14,9 +12,11 @@ "shortName": "crab", "chainId": 44, "networkId": 44, - "explorers": [{ - "name": "subscan", - "url": "https://crab.subscan.io", - "standard": "none" - }] + "explorers": [ + { + "name": "blockscout", + "url": "https://crab-scan.darwinia.network", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-4400.json b/_data/chains/eip155-4400.json new file mode 100644 index 000000000000..75b16b48bc29 --- /dev/null +++ b/_data/chains/eip155-4400.json @@ -0,0 +1,25 @@ +{ + "name": "Credit Smart Chain Mainnet", + "chain": "CREDIT", + "rpc": ["https://rpc.creditsmartchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Credit", + "symbol": "CREDIT", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://creditsmartchain.com", + "shortName": "CreditEdge", + "chainId": 4400, + "networkId": 4400, + "icon": "credit", + "explorers": [ + { + "name": "Creditscan", + "url": "https://scan.creditsmartchain.com", + "icon": "credit", + "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-443.json b/_data/chains/eip155-443.json new file mode 100644 index 000000000000..98e2c7f2973f --- /dev/null +++ b/_data/chains/eip155-443.json @@ -0,0 +1,29 @@ +{ + "name": "Ten Testnet", + "title": "Ten Sepolia Rollup Testnet", + "chainId": 443, + "shortName": "ten-testnet", + "chain": "ETH", + "networkId": 443, + "slip44": 1, + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": ["https://testnet.ten.xyz"], + "faucets": [], + "infoURL": "https://ten.xyz", + "explorers": [ + { + "name": "Ten Sepolia Rollup Explorer", + "url": "https://tenscan.io", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [{ "url": "https://bridge.ten.xyz" }] + } +} diff --git a/_data/chains/eip155-444.json b/_data/chains/eip155-444.json new file mode 100644 index 000000000000..8558cfe59b5c --- /dev/null +++ b/_data/chains/eip155-444.json @@ -0,0 +1,34 @@ +{ + "name": "Synapse Chain Testnet", + "status": "active", + "chain": "ETH", + "rpc": ["https://sepolia.synapseprotocol.com"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://synapseprotocol.com", + "shortName": "synapse-sepolia", + "chainId": 444, + "networkId": 444, + "slip44": 1, + "redFlags": ["reusedChainId"], + "explorers": [ + { + "name": "Synapse Chain Sepolia", + "url": "https://sepolia.synapsescan.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://docs.synapseprotocol.com/synapse-chain/using-synapse-chain/bridging-to-synapse-chain" + } + ] + } +} diff --git a/_data/chains/eip155-4442.json b/_data/chains/eip155-4442.json new file mode 100644 index 000000000000..db56d9f0c621 --- /dev/null +++ b/_data/chains/eip155-4442.json @@ -0,0 +1,24 @@ +{ + "name": "Denergy Testnet", + "chain": "DEN", + "rpc": ["https://rpc.denergytestnet.com/"], + "faucets": [], + "nativeCurrency": { + "name": "WATT", + "symbol": "WATT", + "decimals": 18 + }, + "infoURL": "https://d.energy/", + "shortName": "den-testnet", + "chainId": 4442, + "networkId": 4442, + "icon": "denergy", + "explorers": [ + { + "name": "Denergy Explorer", + "url": "https://explorer.denergytestnet.com", + "icon": "denergy", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4444.json b/_data/chains/eip155-4444.json new file mode 100644 index 000000000000..d394b590af05 --- /dev/null +++ b/_data/chains/eip155-4444.json @@ -0,0 +1,25 @@ +{ + "name": "Htmlcoin Mainnet", + "chain": "mainnet", + "rpc": ["https://janus.htmlcoin.com/api/"], + "faucets": ["https://gruvin.me/htmlcoin"], + "nativeCurrency": { + "name": "Htmlcoin", + "symbol": "HTML", + "decimals": 8 + }, + "infoURL": "https://htmlcoin.com", + "shortName": "html", + "chainId": 4444, + "networkId": 4444, + "icon": "htmlcoin", + "status": "active", + "explorers": [ + { + "name": "htmlcoin", + "url": "https://explorer.htmlcoin.com", + "icon": "htmlcoin", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-44444.json b/_data/chains/eip155-44444.json new file mode 100644 index 000000000000..56420a3b66fc --- /dev/null +++ b/_data/chains/eip155-44444.json @@ -0,0 +1,24 @@ +{ + "name": "Frenchain", + "chain": "fren", + "rpc": ["https://rpc-02.frenscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "FREN", + "symbol": "FREN", + "decimals": 18 + }, + "infoURL": "https://frenchain.app", + "shortName": "FREN", + "chainId": 44444, + "networkId": 44444, + "icon": "fren", + "explorers": [ + { + "name": "blockscout", + "url": "https://frenscan.io", + "icon": "fren", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-444444.json b/_data/chains/eip155-444444.json new file mode 100644 index 000000000000..92efa0bd8f3d --- /dev/null +++ b/_data/chains/eip155-444444.json @@ -0,0 +1,32 @@ +{ + "name": "Syndr L3 Sepolia", + "title": "Syndr L3 Sepolia Rollup Testnet", + "chain": "SYNDRSEPOLIA", + "rpc": ["https://sepolia.syndr.com/http", "wss://sepolia.syndr.com/ws"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://syndr.com", + "shortName": "syndr", + "chainId": 444444, + "networkId": 444444, + "explorers": [ + { + "name": "Syndr L3 Sepolia Testnet Explorer", + "url": "https://sepolia-explorer.syndr.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-421614", + "bridges": [ + { + "url": "https://sepolia-bridge.syndr.com" + } + ] + } +} 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-44445.json b/_data/chains/eip155-44445.json new file mode 100644 index 000000000000..be13aefb3eed --- /dev/null +++ b/_data/chains/eip155-44445.json @@ -0,0 +1,24 @@ +{ + "name": "Quantum Network", + "chain": "Quantum", + "rpc": ["https://rpcqtm.avescoin.io"], + "faucets": [], + "nativeCurrency": { + "name": "Quantum", + "symbol": "QTM", + "decimals": 18 + }, + "infoURL": "https://avescoin.io/", + "shortName": "QTM", + "chainId": 44445, + "networkId": 44445, + "icon": "quantum", + "explorers": [ + { + "name": "Quantum Explorer", + "url": "https://qtm.avescoin.io", + "icon": "quantum", + "standard": "EIP3091" + } + ] +} 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-444900.json b/_data/chains/eip155-444900.json index c0ebc624a33c..abfada29f201 100644 --- a/_data/chains/eip155-444900.json +++ b/_data/chains/eip155-444900.json @@ -1,12 +1,8 @@ { "name": "Weelink Testnet", "chain": "WLK", - "rpc": [ - "https://weelinknode1c.gw002.oneitfarm.com" - ], - "faucets": [ - "https://faucet.weelink.gw002.oneitfarm.com" - ], + "rpc": ["https://weelinknode1c.gw002.oneitfarm.com"], + "faucets": ["https://faucet.weelink.gw002.oneitfarm.com"], "nativeCurrency": { "name": "Weelink Chain Token", "symbol": "tWLK", @@ -16,9 +12,12 @@ "shortName": "wlkt", "chainId": 444900, "networkId": 444900, - "explorers": [{ - "name": "weelink-testnet", - "url": "https://weelink.cloud/#/blockView/overview", - "standard": "none" - }] -} \ No newline at end of file + "slip44": 1, + "explorers": [ + { + "name": "weelink-testnet", + "url": "https://weelink.cloud/#/blockView/overview", + "standard": "none" + } + ] +} 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 new file mode 100644 index 000000000000..766b9df61c10 --- /dev/null +++ b/_data/chains/eip155-4460.json @@ -0,0 +1,25 @@ +{ + "name": "Orderly Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://testnet-rpc.orderly.org"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://orderly.network", + "shortName": "orderlyl2", + "chainId": 4460, + "networkId": 4460, + "slip44": 1, + "icon": "orderlyTestnet", + "explorers": [ + { + "name": "basescout", + "url": "https://testnet-explorer.orderly.org", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-44787.json b/_data/chains/eip155-44787.json index daac272925f6..023eacf71f0f 100644 --- a/_data/chains/eip155-44787.json +++ b/_data/chains/eip155-44787.json @@ -4,6 +4,8 @@ "shortName": "ALFA", "chain": "CELO", "networkId": 44787, + "slip44": 1, + "status": "deprecated", "nativeCurrency": { "name": "CELO", "symbol": "CELO", @@ -17,5 +19,12 @@ "https://celo.org/developers/faucet", "https://cauldron.pretoriaresearchlab.io/alfajores-faucet" ], - "infoURL": "https://docs.celo.org/" + "infoURL": "https://docs.celo.org/", + "explorers": [ + { + "name": "Alfajoresscan", + "url": "https://alfajores.celoscan.io", + "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-45.json b/_data/chains/eip155-45.json index 87d8a4909f44..b092d6ec643a 100644 --- a/_data/chains/eip155-45.json +++ b/_data/chains/eip155-45.json @@ -1,10 +1,12 @@ { "name": "Darwinia Pangoro Testnet", "chain": "pangoro", - "rpc": ["http://pangoro-rpc.darwinia.network"], - "faucets": [], + "rpc": ["https://pangoro-rpc.darwinia.network"], + "faucets": [ + "https://docs.darwinia.network/pangoro-testnet-70cfec5dc9ca42759959ba3803edaec2" + ], "nativeCurrency": { - "name": "Pangoro Network Native Token”", + "name": "Pangoro Network Native Token", "symbol": "ORING", "decimals": 18 }, @@ -12,6 +14,7 @@ "shortName": "pangoro", "chainId": 45, "networkId": 45, + "slip44": 1, "explorers": [ { "name": "subscan", diff --git a/_data/chains/eip155-45000.json b/_data/chains/eip155-45000.json index ced69409a3dc..4d9ea7d4b46f 100644 --- a/_data/chains/eip155-45000.json +++ b/_data/chains/eip155-45000.json @@ -1,10 +1,7 @@ { "name": "Autobahn Network", "chain": "TXL", - "network": "mainnet", - "rpc": [ - "https://rpc.autobahn.network" - ], + "rpc": ["https://rpc.autobahn.network"], "faucets": [], "nativeCurrency": { "name": "TXL", @@ -12,14 +9,16 @@ "decimals": 18 }, "infoURL": "https://autobahn.network", - "shortName": "Autobahn Network", + "shortName": "AutobahnNetwork", "chainId": 45000, "networkId": 45000, "icon": "autobahn", - "explorers": [{ - "name": "autobahn explorer", - "url": "https://explorer.autobahn.network", - "icon": "autobahn", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "autobahn explorer", + "url": "https://explorer.autobahn.network", + "icon": "autobahn", + "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-45056.json b/_data/chains/eip155-45056.json new file mode 100644 index 000000000000..8db035a2f9f3 --- /dev/null +++ b/_data/chains/eip155-45056.json @@ -0,0 +1,35 @@ +{ + "name": "Billions", + "shortName": "Billions", + "title": "Billions", + "chain": "Billions", + "icon": "billions", + "rpc": ["https://billions-rpc.eu-north-2.gateway.fm"], + "faucets": [], + "nativeCurrency": { + "name": "ETHER", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://billions.network", + "chainId": 45056, + "networkId": 45056, + "explorers": [ + { + "name": "Billions Explorer", + "url": "https://billions-blockscout.eu-north-2.gateway.fm", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://billions-bridge.eu-north-2.gateway.fm" + } + ] + }, + "features": [{ "name": "EIP155" }], + "status": "active" +} diff --git a/_data/chains/eip155-4544.json b/_data/chains/eip155-4544.json new file mode 100644 index 000000000000..95152ada195c --- /dev/null +++ b/_data/chains/eip155-4544.json @@ -0,0 +1,25 @@ +{ + "name": "Emoney Network Testnet", + "chain": "Emoney", + "rpc": ["https://testnet.emoney.network/"], + "faucets": ["https://faucet.emoney.network/faucet"], + "nativeCurrency": { + "name": "Emoney Network", + "symbol": "EMYC", + "decimals": 18 + }, + "infoURL": "https://emoney.network/", + "shortName": "EmoneyTestnet", + "chainId": 4544, + "networkId": 4544, + "slip44": 118, + "icon": "emoney", + "explorers": [ + { + "name": "EMoney Explorer", + "url": "https://explore-stage.emoney.network", + "icon": "emoney", + "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-45454.json b/_data/chains/eip155-45454.json new file mode 100644 index 000000000000..818099f128dd --- /dev/null +++ b/_data/chains/eip155-45454.json @@ -0,0 +1,24 @@ +{ + "name": "Swamps L2", + "chain": "SWP", + "icon": "swamps", + "rpc": ["https://swamps.tc.l2aas.com"], + "faucets": [], + "nativeCurrency": { + "name": "SWP", + "symbol": "SWP", + "decimals": 18 + }, + "infoURL": "https://www.swamps.fi", + "shortName": "SWP", + "chainId": 45454, + "networkId": 45454, + "explorers": [ + { + "name": "blockscout", + "url": "https://swamps-explorer.tc.l2aas.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} 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-45510.json b/_data/chains/eip155-45510.json new file mode 100644 index 000000000000..5f9ce14d22ae --- /dev/null +++ b/_data/chains/eip155-45510.json @@ -0,0 +1,24 @@ +{ + "name": "Deelance Mainnet", + "title": "Deelance Network Mainnet", + "chain": "DEE", + "rpc": ["https://rpc.deelance.com"], + "faucets": ["https://faucet.deelance.com"], + "nativeCurrency": { + "name": "Deelance", + "symbol": "DEE", + "decimals": 18 + }, + "infoURL": "https://deelance.com", + "shortName": "dee", + "chainId": 45510, + "networkId": 45510, + "icon": "deelance", + "explorers": [ + { + "name": "Deelance Mainnet Explorer", + "url": "https://deescan.com", + "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-456.json b/_data/chains/eip155-456.json new file mode 100644 index 000000000000..815a4f2ef5fb --- /dev/null +++ b/_data/chains/eip155-456.json @@ -0,0 +1,23 @@ +{ + "name": "ARZIO Chain", + "chain": "ARZIO", + "icon": "arzio", + "rpc": ["https://chain-rpc.arzio.co"], + "faucets": [], + "nativeCurrency": { + "name": "ARZIO", + "symbol": "AZO", + "decimals": 18 + }, + "infoURL": "https://chain.arzio.co", + "shortName": "arzio", + "chainId": 456, + "networkId": 456, + "explorers": [ + { + "name": "ARZIO Scan", + "url": "https://scan.arzio.co", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-46.json b/_data/chains/eip155-46.json new file mode 100644 index 000000000000..f68b70562faf --- /dev/null +++ b/_data/chains/eip155-46.json @@ -0,0 +1,27 @@ +{ + "name": "Darwinia Network", + "chain": "darwinia", + "rpc": [ + "https://rpc.darwinia.network", + "https://darwinia-rpc.dcdao.box", + "https://darwinia-rpc.dwellir.com", + "https://darwinia.rpc.subquery.network/public" + ], + "faucets": [], + "nativeCurrency": { + "name": "Darwinia Network Native Token", + "symbol": "RING", + "decimals": 18 + }, + "infoURL": "https://darwinia.network", + "shortName": "darwinia", + "chainId": 46, + "networkId": 46, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.darwinia.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4613.json b/_data/chains/eip155-4613.json new file mode 100644 index 000000000000..99cd6fd3e404 --- /dev/null +++ b/_data/chains/eip155-4613.json @@ -0,0 +1,25 @@ +{ + "name": "VERY Mainnet", + "title": "VERY Mainnet", + "chain": "VERY Mainnet", + "icon": "very", + "rpc": ["https://rpc.verylabs.io"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "VERY", + "symbol": "VERY", + "decimals": 18 + }, + "infoURL": "https://www.verylabs.io/", + "shortName": "very", + "chainId": 4613, + "networkId": 4613, + "explorers": [ + { + "name": "VERY explorer", + "url": "https://www.veryscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-462.json b/_data/chains/eip155-462.json new file mode 100644 index 000000000000..c42a07e9c293 --- /dev/null +++ b/_data/chains/eip155-462.json @@ -0,0 +1,30 @@ +{ + "name": "Areon Network Testnet", + "chain": "Areon", + "icon": "areon", + "rpc": [ + "https://testnet-rpc.areon.network", + "https://testnet-rpc2.areon.network", + "https://testnet-rpc3.areon.network", + "https://testnet-rpc4.areon.network", + "https://testnet-rpc5.areon.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Areon", + "symbol": "TAREA", + "decimals": 18 + }, + "infoURL": "https://areon.network", + "shortName": "tarea", + "chainId": 462, + "networkId": 462, + "slip44": 1, + "explorers": [ + { + "name": "AreonScan", + "url": "https://areonscan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-463.json b/_data/chains/eip155-463.json new file mode 100644 index 000000000000..56dfdda043d4 --- /dev/null +++ b/_data/chains/eip155-463.json @@ -0,0 +1,29 @@ +{ + "name": "Areon Network Mainnet", + "chain": "Areon", + "icon": "areon", + "rpc": [ + "https://mainnet-rpc.areon.network", + "https://mainnet-rpc2.areon.network", + "https://mainnet-rpc3.areon.network", + "https://mainnet-rpc4.areon.network", + "https://mainnet-rpc5.areon.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Areon", + "symbol": "AREA", + "decimals": 18 + }, + "infoURL": "https://areon.network", + "shortName": "area", + "chainId": 463, + "networkId": 463, + "explorers": [ + { + "name": "AreonScan", + "url": "https://areonscan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-4646.json b/_data/chains/eip155-4646.json new file mode 100644 index 000000000000..ba176c9706bd --- /dev/null +++ b/_data/chains/eip155-4646.json @@ -0,0 +1,29 @@ +{ + "name": "MST Mainnet", + "chain": "MST", + "rpc": [ + "https://mariorpc.mstblockchain.com", + "https://craftrpc.mstblockchain.com", + "wss://mariorpc.mstblockchain.com", + "wss://craftrpc.mstblockchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "MST Native Coin", + "symbol": "MSTC", + "decimals": 18 + }, + "infoURL": "https://mstblockchain.com", + "shortName": "mst", + "chainId": 4646, + "networkId": 4646, + "slip44": 4646, + "icon": "mst", + "explorers": [ + { + "name": "mstscan", + "url": "https://mstscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4653.json b/_data/chains/eip155-4653.json new file mode 100644 index 000000000000..38ba85b375cd --- /dev/null +++ b/_data/chains/eip155-4653.json @@ -0,0 +1,18 @@ +{ + "name": "Gold Chain", + "title": "Gold Chain", + "chain": "Gold", + "rpc": ["https://chain-rpc.gold.dev"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://gold.dev", + "shortName": "gold", + "chainId": 4653, + "networkId": 4653, + "status": "incubating", + "icon": "gold" +} 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-46688.json b/_data/chains/eip155-46688.json new file mode 100644 index 000000000000..defa7afe2b0b --- /dev/null +++ b/_data/chains/eip155-46688.json @@ -0,0 +1,26 @@ +{ + "name": "Fusion Testnet", + "chain": "FSN", + "icon": "fusion", + "rpc": ["https://testnet.fusionnetwork.io", "wss://testnet.fusionnetwork.io"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Testnet Fusion", + "symbol": "T-FSN", + "decimals": 18 + }, + "infoURL": "https://fusion.org", + "shortName": "tfsn", + "chainId": 46688, + "networkId": 46688, + "slip44": 1, + "explorers": [ + { + "name": "fsnscan", + "url": "https://testnet.fsnscan.com", + "icon": "fsnscan", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4689.json b/_data/chains/eip155-4689.json index 165741d7d3d6..1aea53d6eaf2 100644 --- a/_data/chains/eip155-4689.json +++ b/_data/chains/eip155-4689.json @@ -1,11 +1,8 @@ { "name": "IoTeX Network Mainnet", "chain": "iotex.io", - "rpc": [ - "https://babel-api.mainnet.iotex.io" - ], - "faucets": [ - ], + "rpc": ["https://babel-api.mainnet.iotex.io"], + "faucets": [], "nativeCurrency": { "name": "IoTeX", "symbol": "IOTX", @@ -15,9 +12,11 @@ "shortName": "iotex-mainnet", "chainId": 4689, "networkId": 4689, - "explorers": [{ - "name": "iotexscan", - "url": "https://iotexscan.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "iotexscan", + "url": "https://iotexscan.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-4690.json b/_data/chains/eip155-4690.json index cec09ec772d2..d3f49941dfd0 100644 --- a/_data/chains/eip155-4690.json +++ b/_data/chains/eip155-4690.json @@ -1,12 +1,8 @@ { "name": "IoTeX Network Testnet", "chain": "iotex.io", - "rpc": [ - "https://babel-api.testnet.iotex.io" - ], - "faucets": [ - "https://faucet.iotex.io/" - ], + "rpc": ["https://babel-api.testnet.iotex.io"], + "faucets": ["https://faucet.iotex.io/"], "nativeCurrency": { "name": "IoTeX", "symbol": "IOTX", @@ -16,9 +12,12 @@ "shortName": "iotex-testnet", "chainId": 4690, "networkId": 4690, - "explorers": [{ - "name": "testnet iotexscan", - "url": "https://testnet.iotexscan.io", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "testnet iotexscan", + "url": "https://testnet.iotexscan.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-47.json b/_data/chains/eip155-47.json new file mode 100644 index 000000000000..ef2afa964862 --- /dev/null +++ b/_data/chains/eip155-47.json @@ -0,0 +1,23 @@ +{ + "name": "Acria IntelliChain", + "chain": "AIC", + "rpc": ["https://aic.acria.ai"], + "faucets": [], + "nativeCurrency": { + "name": "ACRIA", + "symbol": "ACRIA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://acria.ai", + "shortName": "aic", + "chainId": 47, + "networkId": 47, + "explorers": [ + { + "name": "Acria IntelliChain-Explorer", + "url": "https://explorer.acria.ai", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-471100.json b/_data/chains/eip155-471100.json new file mode 100644 index 000000000000..ded56f5d6a9b --- /dev/null +++ b/_data/chains/eip155-471100.json @@ -0,0 +1,16 @@ +{ + "name": "Patex Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://test-rpc.patex.io/"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://patex.io/", + "shortName": "psep", + "chainId": 471100, + "networkId": 471100, + "slip44": 1 +} diff --git a/_data/chains/eip155-473861.json b/_data/chains/eip155-473861.json new file mode 100644 index 000000000000..77ec1e79209f --- /dev/null +++ b/_data/chains/eip155-473861.json @@ -0,0 +1,25 @@ +{ + "name": "Ultra Pro Mainnet", + "chain": "ultrapro", + "icon": "ultrapro", + "rpc": ["https://mainnet-rpc.ultraproscan.io"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Ultra Pro", + "symbol": "UPRO", + "decimals": 18 + }, + "infoURL": "https://ultrapro.info", + "shortName": "ultrapro", + "chainId": 473861, + "networkId": 473861, + "explorers": [ + { + "name": "ultraproscan", + "url": "https://ultraproscan.io", + "icon": "ultrapro", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-474142.json b/_data/chains/eip155-474142.json index bece78ea267f..45bbe7cd059a 100644 --- a/_data/chains/eip155-474142.json +++ b/_data/chains/eip155-474142.json @@ -1,22 +1,22 @@ -{ - "name": "OpenChain Mainnet", - "chain": "OpenChain", - "rpc": [ - "https://baas-rpc.luniverse.io:18545?lChainId=1641349324562974539" - ], - "faucets": [], - "nativeCurrency": { - "name": "OpenCoin", - "symbol": "OPC", - "decimals": 10 - }, - "infoURL": "https://www.openchain.live", - "shortName": "oc", - "chainId": 474142, - "networkId": 474142, - "explorers": [{ - "name": "SIDE SCAN", - "url": "https://sidescan.luniverse.io/1641349324562974539", - "standard": "none" - }] -} \ No newline at end of file +{ + "name": "OpenChain Mainnet", + "chain": "OpenChain", + "rpc": ["https://baas-rpc.luniverse.io:18545?lChainId=1641349324562974539"], + "faucets": [], + "nativeCurrency": { + "name": "OpenCoin", + "symbol": "OPC", + "decimals": 10 + }, + "infoURL": "https://www.openchain.live", + "shortName": "oc", + "chainId": 474142, + "networkId": 474142, + "explorers": [ + { + "name": "SIDE SCAN", + "url": "https://sidescan.luniverse.io/1641349324562974539", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-475.json b/_data/chains/eip155-475.json new file mode 100644 index 000000000000..57a1b3208218 --- /dev/null +++ b/_data/chains/eip155-475.json @@ -0,0 +1,23 @@ +{ + "name": "zkXPLA Testnet", + "chain": "zkXPLA", + "rpc": ["https://testnet-rpc.zkxpla.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://xpla.io", + "shortName": "zkxpla-testnet", + "chainId": 475, + "networkId": 475, + "icon": "xpla", + "explorers": [ + { + "name": "zkXPLA Testnet Explorer", + "url": "https://testnet-explorer.zkxpla.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4759.json b/_data/chains/eip155-4759.json new file mode 100644 index 000000000000..844113b3cc17 --- /dev/null +++ b/_data/chains/eip155-4759.json @@ -0,0 +1,25 @@ +{ + "name": "MEVerse Chain Testnet", + "chain": "MEVerse", + "rpc": ["https://rpc.meversetestnet.io"], + "faucets": [], + "nativeCurrency": { + "name": "MEVerse", + "symbol": "MEV", + "decimals": 18 + }, + "infoURL": "https://www.meverse.sg", + "shortName": "TESTMEV", + "chainId": 4759, + "networkId": 4759, + "slip44": 1, + "icon": "meverse", + "explorers": [ + { + "name": "MEVerse Chain Testnet Explorer", + "url": "https://testnet.meversescan.io", + "standard": "none", + "icon": "meverse" + } + ] +} diff --git a/_data/chains/eip155-476158412.json b/_data/chains/eip155-476158412.json new file mode 100644 index 000000000000..06c93f2ea5d7 --- /dev/null +++ b/_data/chains/eip155-476158412.json @@ -0,0 +1,26 @@ +{ + "name": "Deprecated SKALE Europa Hub Testnet", + "title": "Deprecated Europa Hub Testnet", + "status": "deprecated", + "chain": "staging-legal-crazy-castor", + "icon": "europa", + "rpc": ["https://staging-v3.skalenodes.com/v1/staging-legal-crazy-castor"], + "faucets": ["https://sfuel.dirtroad.dev/staging"], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://europahub.network/", + "shortName": "deprecated-europa-testnet", + "chainId": 476158412, + "networkId": 476158412, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://staging-legal-crazy-castor.explorer.staging-v3.skalenodes.com", + "standard": "EIP3091" + } + ] +} 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 new file mode 100644 index 000000000000..435c4423d30b --- /dev/null +++ b/_data/chains/eip155-4777.json @@ -0,0 +1,27 @@ +{ + "name": "BlackFort Exchange Network Testnet DEPRECATED", + "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/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-47805.json b/_data/chains/eip155-47805.json index c0f706ed2c6c..bde945038f4d 100644 --- a/_data/chains/eip155-47805.json +++ b/_data/chains/eip155-47805.json @@ -1,10 +1,7 @@ { "name": "REI Network", "chain": "REI", - "rpc": [ - "https://rpc.rei.network", - "wss://rpc.rei.network" - ], + "rpc": ["https://rpc.rei.network", "wss://rpc.rei.network"], "faucets": [], "nativeCurrency": { "name": "REI", @@ -15,9 +12,11 @@ "shortName": "REI", "chainId": 47805, "networkId": 47805, - "explorers": [{ - "name": "rei-scan", - "url": "https://scan.rei.network", - "standard": "none" - }] + "explorers": [ + { + "name": "rei-scan", + "url": "https://scan.rei.network", + "standard": "none" + } + ] } 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-48.json b/_data/chains/eip155-48.json new file mode 100644 index 000000000000..265847e6b67a --- /dev/null +++ b/_data/chains/eip155-48.json @@ -0,0 +1,24 @@ +{ + "name": "Ennothem Mainnet Proterozoic", + "chain": "ETMP", + "rpc": ["https://rpc.etm.network"], + "faucets": [], + "nativeCurrency": { + "name": "Ennothem", + "symbol": "ETMP", + "decimals": 18 + }, + "infoURL": "https://etm.network", + "shortName": "etmp", + "chainId": 48, + "networkId": 48, + "icon": "etmp", + "explorers": [ + { + "name": "etmpscan", + "url": "https://etmscan.network", + "icon": "etmp", + "standard": "EIP3091" + } + ] +} 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-484.json b/_data/chains/eip155-484.json new file mode 100644 index 000000000000..5b94726e94b9 --- /dev/null +++ b/_data/chains/eip155-484.json @@ -0,0 +1,26 @@ +{ + "name": "Camp Network Mainnet", + "chain": "CAMP", + "icon": "camp", + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "rpc": ["https://rpc.camp.raas.gelato.cloud"], + "faucets": [], + "nativeCurrency": { + "name": "Camp", + "symbol": "CAMP", + "decimals": 18 + }, + "infoURL": "https://docs.campnetwork.xyz", + "shortName": "CampMainnet", + "chainId": 484, + "networkId": 484, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://camp.cloud.blockscout.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-486217935.json b/_data/chains/eip155-486217935.json index 19b4050e7f3f..887119991e78 100644 --- a/_data/chains/eip155-486217935.json +++ b/_data/chains/eip155-486217935.json @@ -1,9 +1,7 @@ { "name": "Gather Devnet Network", "chain": "GTH", - "rpc": [ - "https://devnet.gather.network" - ], + "rpc": ["https://devnet.gather.network"], "faucets": [], "nativeCurrency": { "name": "Gather", @@ -14,9 +12,11 @@ "shortName": "dGTH", "chainId": 486217935, "networkId": 486217935, - "explorers": [{ - "name": "Blockscout", - "url": "https://devnet-explorer.gather.network", - "standard": "none" - }] + "explorers": [ + { + "name": "Blockscout", + "url": "https://devnet-explorer.gather.network", + "standard": "none" + } + ] } 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-4893.json b/_data/chains/eip155-4893.json new file mode 100644 index 000000000000..44ea7ca96a04 --- /dev/null +++ b/_data/chains/eip155-4893.json @@ -0,0 +1,23 @@ +{ + "name": "Globel Chain", + "chain": "GC", + "icon": "globelchain", + "rpc": ["https://rpc.gcscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "Globel Chain", + "symbol": "GC", + "decimals": 18 + }, + "infoURL": "https://gcscan.io", + "shortName": "GC", + "chainId": 4893, + "networkId": 4893, + "explorers": [ + { + "name": "blockscout", + "url": "https://gcscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-49.json b/_data/chains/eip155-49.json new file mode 100644 index 000000000000..32247cd1e108 --- /dev/null +++ b/_data/chains/eip155-49.json @@ -0,0 +1,24 @@ +{ + "name": "Ennothem Testnet Pioneer", + "chain": "ETMP", + "rpc": ["https://rpc.pioneer.etm.network"], + "faucets": [], + "nativeCurrency": { + "name": "Ennothem", + "symbol": "ETMP", + "decimals": 18 + }, + "infoURL": "https://etm.network", + "shortName": "etmpTest", + "chainId": 49, + "networkId": 49, + "slip44": 1, + "icon": "etmp", + "explorers": [ + { + "name": "etmp", + "url": "https://pioneer.etmscan.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-490000.json b/_data/chains/eip155-490000.json new file mode 100644 index 000000000000..8fd1b75ce017 --- /dev/null +++ b/_data/chains/eip155-490000.json @@ -0,0 +1,19 @@ +{ + "name": "Autonomys Taurus Testnet", + "chain": "autonomys-taurus-testnet", + "rpc": ["https://auto-evm.taurus.autonomys.xyz/ws"], + "status": "deprecated", + "icon": "autonomys", + "faucets": [], + "nativeCurrency": { + "name": "AI3", + "symbol": "AI3", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.autonomys.xyz", + "shortName": "ATN-deprecated", + "chainId": 490000, + "networkId": 490000, + "explorers": [] +} 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-49049.json b/_data/chains/eip155-49049.json new file mode 100644 index 000000000000..e6f22a514842 --- /dev/null +++ b/_data/chains/eip155-49049.json @@ -0,0 +1,28 @@ +{ + "name": "Wireshape Floripa Testnet", + "title": "Wireshape Floripa Testnet", + "chain": "Wireshape", + "icon": "wireshape", + "rpc": [ + "https://rpc-floripa.wireshape.org", + "https://wireshape-floripa-testnet.rpc.thirdweb.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "WIRE", + "symbol": "WIRE", + "decimals": 18 + }, + "infoURL": "https://wireshape.org", + "shortName": "floripa", + "chainId": 49049, + "networkId": 49049, + "slip44": 1, + "explorers": [ + { + "name": "Wire Explorer", + "url": "https://floripa-explorer.wireshape.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-49088.json b/_data/chains/eip155-49088.json new file mode 100644 index 000000000000..64f77336217e --- /dev/null +++ b/_data/chains/eip155-49088.json @@ -0,0 +1,28 @@ +{ + "name": "Bifrost Testnet", + "title": "Bifrost Network Testnet", + "chain": "BFC", + "rpc": [ + "https://public-01.testnet.bifrostnetwork.com/rpc", + "https://public-02.testnet.bifrostnetwork.com/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bifrost", + "symbol": "BFC", + "decimals": 18 + }, + "infoURL": "https://bifrostnetwork.com", + "shortName": "tbfc", + "chainId": 49088, + "networkId": 49088, + "slip44": 1, + "icon": "bifrost", + "explorers": [ + { + "name": "explorer-thebifrost", + "url": "https://explorer.testnet.bifrostnetwork.com", + "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-4918.json b/_data/chains/eip155-4918.json index 90b904dbdf18..c33914bb3fa6 100644 --- a/_data/chains/eip155-4918.json +++ b/_data/chains/eip155-4918.json @@ -1,20 +1,23 @@ { - "name": "Venidium Testnet", - "chain": "XVM", - "rpc": ["https://rpc-evm-testnet.venidium.io"], - "faucets": [], - "nativeCurrency": { - "name": "Venidium", - "symbol": "XVM", - "decimals": 18 - }, - "infoURL": "https://venidium.io", - "shortName": "txvm", - "chainId": 4918, - "networkId": 4918, - "explorers": [{ + "name": "Venidium Testnet", + "chain": "XVM", + "rpc": ["https://rpc-evm-testnet.venidium.io"], + "faucets": [], + "nativeCurrency": { + "name": "Venidium", + "symbol": "XVM", + "decimals": 18 + }, + "infoURL": "https://venidium.io", + "shortName": "txvm", + "chainId": 4918, + "networkId": 4918, + "slip44": 1, + "explorers": [ + { "name": "Venidium EVM Testnet Explorer", "url": "https://evm-testnet.venidiumexplorer.com", "standard": "EIP3091" - }] - } + } + ] +} diff --git a/_data/chains/eip155-4919.json b/_data/chains/eip155-4919.json index c9877e03712a..ce5e857298f1 100644 --- a/_data/chains/eip155-4919.json +++ b/_data/chains/eip155-4919.json @@ -1,21 +1,23 @@ -{ - "name": "Venidium Mainnet", - "chain": "XVM", - "icon": "venidium", - "rpc": ["https://rpc.venidium.io"], - "faucets": [], - "nativeCurrency": { - "name": "Venidium", - "symbol": "XVM", - "decimals": 18 - }, - "infoURL": "https://venidium.io", - "shortName": "xvm", - "chainId": 4919, - "networkId": 4919, - "explorers": [{ - "name": "Venidium Explorer", - "url": "https://evm.venidiumexplorer.com", - "standard": "EIP3091" - }] - } \ No newline at end of file +{ + "name": "Venidium Mainnet", + "chain": "XVM", + "icon": "venidium", + "rpc": ["https://rpc.venidium.io"], + "faucets": [], + "nativeCurrency": { + "name": "Venidium", + "symbol": "XVM", + "decimals": 18 + }, + "infoURL": "https://venidium.io", + "shortName": "xvm", + "chainId": 4919, + "networkId": 4919, + "explorers": [ + { + "name": "Venidium Explorer", + "url": "https://evm.venidiumexplorer.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-49321.json b/_data/chains/eip155-49321.json new file mode 100644 index 000000000000..5c00ddaeb2ad --- /dev/null +++ b/_data/chains/eip155-49321.json @@ -0,0 +1,26 @@ +{ + "name": "GUNZ Testnet", + "chain": "tGUN", + "rpc": [ + "https://rpc.gunz.dev/ext/bc/ryk9vkvNuKtewME2PeCgybo9sdWXGmCkBrrx4VPuZPdVdAak8/rpc" + ], + "faucets": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "nativeCurrency": { + "name": "GUN", + "symbol": "GUN", + "decimals": 18 + }, + "icon": "guntestnet", + "infoURL": "https://gunbygunz.com", + "shortName": "Stork", + "chainId": 49321, + "networkId": 49321, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.gunzscan.io", + "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-49797.json b/_data/chains/eip155-49797.json index efa209d814c5..b3e85f72bcc5 100644 --- a/_data/chains/eip155-49797.json +++ b/_data/chains/eip155-49797.json @@ -1,9 +1,7 @@ { "name": "Energi Testnet", "chain": "NRG", - "rpc": [ - "https://nodeapi.test.energi.network" - ], + "rpc": ["https://nodeapi.test.energi.network"], "faucets": [], "nativeCurrency": { "name": "Energi", @@ -14,5 +12,5 @@ "shortName": "tnrg", "chainId": 49797, "networkId": 49797, - "slip44": 49797 + "slip44": 1 } diff --git a/_data/chains/eip155-499.json b/_data/chains/eip155-499.json index 3c463b0a46a3..827e5b935878 100644 --- a/_data/chains/eip155-499.json +++ b/_data/chains/eip155-499.json @@ -1,16 +1,23 @@ { "name": "Rupaya", "chain": "RUPX", - "rpc": [], - "faucets": [], + "rpc": ["https://rpc.rupaya.io"], + "faucets": ["https://faucet.rupaya.io"], "nativeCurrency": { "name": "Rupaya", "symbol": "RUPX", "decimals": 18 }, - "infoURL": "https://www.rupx.io", + "infoURL": "https://www.rupaya.io", "shortName": "rupx", "chainId": 499, "networkId": 499, - "slip44": 499 -} \ No newline at end of file + "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 new file mode 100644 index 000000000000..1dfda42973fb --- /dev/null +++ b/_data/chains/eip155-4999.json @@ -0,0 +1,31 @@ +{ + "name": "BlackFort Exchange Network Deprecated", + "chain": "BXNdpr", + "rpc": [ + "https://mainnet.blackfort.network/rpc", + "https://mainnet-1.blackfort.network/rpc", + "https://mainnet-2.blackfort.network/rpc", + "https://mainnet-3.blackfort.network/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "BlackFort Token", + "symbol": "BXNdpr", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://blackfort.exchange", + "shortName": "BXNdpr", + "chainId": 4999, + "networkId": 4999, + "icon": "bxn", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.blackfort.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "status": "deprecated" +} diff --git a/_data/chains/eip155-5.json b/_data/chains/eip155-5.json index 512694073c57..95c1defb5631 100644 --- a/_data/chains/eip155-5.json +++ b/_data/chains/eip155-5.json @@ -1,35 +1,45 @@ -{ - "name": "Görli", - "title": "Ethereum Testnet Görli", - "chain": "ETH", - "network": "testnet", - "rpc": [ - "https://goerli.infura.io/v3/${INFURA_API_KEY}", - "wss://goerli.infura.io/v3/${INFURA_API_KEY}", - "https://rpc.goerli.mudit.blog/" - ], - "faucets": [ - "http://fauceth.komputing.org?chain=5&address=${ADDRESS}", - "https://goerli-faucet.slock.it?address=${ADDRESS}", - "https://faucet.goerli.mudit.blog" - ], - "nativeCurrency": { - "name": "Görli Ether", - "symbol": "GOR", - "decimals": 18 - }, - "infoURL": "https://goerli.net/#about", - "shortName": "gor", - "chainId": 5, - "networkId": 5, - "ens": { - "registry":"0x112234455c3a32fd11230c42e7bccd4a84e02010" - }, - "explorers": [ - { - "name": "etherscan-goerli", - "url": "https://goerli.etherscan.io", - "standard": "EIP3091" - } - ] -} +{ + "name": "Goerli", + "title": "Ethereum Testnet Goerli", + "chain": "ETH", + "rpc": [ + "https://goerli.infura.io/v3/${INFURA_API_KEY}", + "wss://goerli.infura.io/v3/${INFURA_API_KEY}", + "https://rpc.goerli.mudit.blog/", + "https://ethereum-goerli-rpc.publicnode.com", + "wss://ethereum-goerli-rpc.publicnode.com", + "https://goerli.gateway.tenderly.co", + "wss://goerli.gateway.tenderly.co" + ], + "faucets": [ + "http://fauceth.komputing.org?chain=5&address=${ADDRESS}", + "https://goerli-faucet.slock.it?address=${ADDRESS}", + "https://faucet.goerli.mudit.blog" + ], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://goerli.net/#about", + "shortName": "gor", + "chainId": 5, + "networkId": 5, + "slip44": 1, + "ens": { + "registry": "0x112234455c3a32fd11230c42e7bccd4a84e02010" + }, + "explorers": [ + { + "name": "etherscan-goerli", + "url": "https://goerli.etherscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout-goerli", + "url": "https://eth-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-50.json b/_data/chains/eip155-50.json index 2e5d27107948..f84b3ab782a9 100644 --- a/_data/chains/eip155-50.json +++ b/_data/chains/eip155-50.json @@ -1,8 +1,14 @@ { - "name": "XinFin Network Mainnet", + "name": "XDC Network", "chain": "XDC", "rpc": [ - "https://rpc.xinfin.network" + "https://erpc.xinfin.network", + "https://rpc.xinfin.network", + "https://rpc1.xinfin.network", + "https://rpc.xdcrpc.com", + "https://erpc.xdcrpc.com", + "https://rpc.ankr.com/xdc", + "https://rpc.xdc.org" ], "faucets": [], "nativeCurrency": { @@ -13,5 +19,20 @@ "infoURL": "https://xinfin.org", "shortName": "xdc", "chainId": 50, - "networkId": 50 + "networkId": 50, + "icon": "xdc", + "explorers": [ + { + "name": "xdcscan", + "url": "https://xdcscan.com", + "icon": "blocksscan", + "standard": "EIP3091" + }, + { + "name": "openscan", + "url": "https://xdcscan.io", + "icon": "blocksscan", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-500.json b/_data/chains/eip155-500.json new file mode 100644 index 000000000000..c1ab40f5f928 --- /dev/null +++ b/_data/chains/eip155-500.json @@ -0,0 +1,23 @@ +{ + "name": "Camino C-Chain", + "chain": "CAM", + "rpc": ["https://api.camino.network/ext/bc/C/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Camino", + "symbol": "CAM", + "decimals": 18 + }, + "infoURL": "https://camino.network/", + "shortName": "Camino", + "chainId": 500, + "networkId": 1000, + "icon": "camino", + "explorers": [ + { + "name": "blockexplorer", + "url": "https://suite.camino.network/explorer", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-5000.json b/_data/chains/eip155-5000.json new file mode 100644 index 000000000000..298e15725545 --- /dev/null +++ b/_data/chains/eip155-5000.json @@ -0,0 +1,37 @@ +{ + "name": "Mantle", + "chain": "ETH", + "icon": "mantle", + "rpc": [ + "https://rpc.mantle.xyz", + "https://mantle-rpc.publicnode.com", + "wss://mantle-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Mantle", + "symbol": "MNT", + "decimals": 18 + }, + "infoURL": "https://mantle.xyz", + "shortName": "mantle", + "chainId": 5000, + "networkId": 5000, + "explorers": [ + { + "name": "mantlescan", + "url": "https://mantlescan.xyz", + "standard": "EIP3091" + }, + { + "name": "Mantle Explorer", + "url": "https://explorer.mantle.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.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-50001.json b/_data/chains/eip155-50001.json new file mode 100644 index 000000000000..d9b3c45f5c4a --- /dev/null +++ b/_data/chains/eip155-50001.json @@ -0,0 +1,16 @@ +{ + "name": "Liveplex OracleEVM", + "chain": "Liveplex OracleEVM Network", + "rpc": ["https://rpc.oracle.liveplex.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "LOE", + "chainId": 50001, + "networkId": 50001, + "explorers": [] +} diff --git a/_data/chains/eip155-50005.json b/_data/chains/eip155-50005.json new file mode 100644 index 000000000000..90a611486390 --- /dev/null +++ b/_data/chains/eip155-50005.json @@ -0,0 +1,27 @@ +{ + "name": "Yooldo Verse Mainnet", + "chain": "Yooldo Verse", + "icon": "yooldo_verse", + "rpc": ["https://rpc.yooldo-verse.xyz/"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://yooldo.gg/", + "shortName": "YVM", + "chainId": 50005, + "networkId": 50005, + "explorers": [ + { + "name": "Yooldo Verse Explorer", + "url": "https://explorer.yooldo-verse.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } +} diff --git a/_data/chains/eip155-50006.json b/_data/chains/eip155-50006.json new file mode 100644 index 000000000000..b8f420887410 --- /dev/null +++ b/_data/chains/eip155-50006.json @@ -0,0 +1,28 @@ +{ + "name": "Yooldo Verse Testnet", + "chain": "Yooldo Verse", + "icon": "yooldo_verse", + "rpc": ["https://rpc.testnet.yooldo-verse.xyz/"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://yooldo.gg/", + "shortName": "YVT", + "chainId": 50006, + "networkId": 50006, + "slip44": 1, + "explorers": [ + { + "name": "Yooldo Verse Explorer", + "url": "https://explorer.testnet.yooldo-verse.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } +} diff --git a/_data/chains/eip155-5001.json b/_data/chains/eip155-5001.json new file mode 100644 index 000000000000..0312177ec395 --- /dev/null +++ b/_data/chains/eip155-5001.json @@ -0,0 +1,23 @@ +{ + "name": "Mantle Testnet", + "chain": "ETH", + "rpc": ["https://rpc.testnet.mantle.xyz"], + "faucets": ["https://faucet.testnet.mantle.xyz"], + "nativeCurrency": { + "name": "Testnet Mantle", + "symbol": "MNT", + "decimals": 18 + }, + "infoURL": "https://mantle.xyz", + "shortName": "mantle-testnet", + "chainId": 5001, + "networkId": 5001, + "slip44": 1, + "explorers": [ + { + "name": "Mantle Testnet Explorer", + "url": "https://explorer.testnet.mantle.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5002.json b/_data/chains/eip155-5002.json new file mode 100644 index 000000000000..25aa2f8900be --- /dev/null +++ b/_data/chains/eip155-5002.json @@ -0,0 +1,34 @@ +{ + "name": "Treasurenet Mainnet Alpha", + "chain": "Treasurenet Mainnet Alpha", + "icon": "treasurenet", + "rpc": [ + "https://node0.treasurenet.io", + "https://node1.treasurenet.io", + "https://node2.treasurenet.io", + "https://node3.treasurenet.io" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "UNIT", + "symbol": "UNIT", + "decimals": 18 + }, + "infoURL": "https://www.treasurenet.io", + "shortName": "treasurenet", + "chainId": 5002, + "networkId": 5002, + "explorers": [ + { + "name": "Treasurenet EVM BlockExplorer", + "url": "https://evmexplorer.treasurenet.io", + "icon": "treasurenet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-50021.json b/_data/chains/eip155-50021.json new file mode 100644 index 000000000000..5ec2a131fb7c --- /dev/null +++ b/_data/chains/eip155-50021.json @@ -0,0 +1,27 @@ +{ + "name": "GTON Testnet", + "chain": "GTON Testnet", + "rpc": ["https://testnet.gton.network/"], + "faucets": [], + "nativeCurrency": { + "name": "GCD", + "symbol": "GCD", + "decimals": 18 + }, + "infoURL": "https://gton.capital", + "shortName": "tgton", + "chainId": 50021, + "networkId": 50021, + "slip44": 1, + "explorers": [ + { + "name": "GTON Testnet Network Explorer", + "url": "https://explorer.testnet.gton.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-3" + } +} diff --git a/_data/chains/eip155-5003.json b/_data/chains/eip155-5003.json new file mode 100644 index 000000000000..ee7f56aa11a0 --- /dev/null +++ b/_data/chains/eip155-5003.json @@ -0,0 +1,23 @@ +{ + "name": "Mantle Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://rpc.sepolia.mantle.xyz"], + "faucets": ["https://faucet.sepolia.mantle.xyz"], + "nativeCurrency": { + "name": "Sepolia Mantle", + "symbol": "MNT", + "decimals": 18 + }, + "infoURL": "https://mantle.xyz", + "shortName": "mnt-sep", + "chainId": 5003, + "networkId": 5003, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.sepolia.mantle.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5005.json b/_data/chains/eip155-5005.json new file mode 100644 index 000000000000..4c577135d558 --- /dev/null +++ b/_data/chains/eip155-5005.json @@ -0,0 +1,35 @@ +{ + "name": "Treasurenet Testnet", + "chain": "Treasurenet Testnet", + "icon": "treasurenet", + "rpc": [ + "https://node0.testnet.treasurenet.io", + "https://node1.testnet.treasurenet.io", + "https://node2.testnet.treasurenet.io", + "https://node3.testnet.treasurenet.io" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "UNIT", + "symbol": "UNIT", + "decimals": 18 + }, + "infoURL": "https://www.testnet.treasurenet.io", + "shortName": "tntest", + "chainId": 5005, + "networkId": 5005, + "slip44": 1, + "explorers": [ + { + "name": "Treasurenet EVM BlockExplorer", + "url": "https://evmexplorer.testnet.treasurenet.io", + "icon": "treasurenet", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-501.json b/_data/chains/eip155-501.json new file mode 100644 index 000000000000..ee159e9be8cd --- /dev/null +++ b/_data/chains/eip155-501.json @@ -0,0 +1,24 @@ +{ + "name": "Columbus Test Network", + "chain": "CAM", + "rpc": ["https://columbus.camino.network/ext/bc/C/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Camino", + "symbol": "CAM", + "decimals": 18 + }, + "infoURL": "https://camino.network/", + "shortName": "Columbus", + "chainId": 501, + "networkId": 1001, + "slip44": 1, + "icon": "camino", + "explorers": [ + { + "name": "blockexplorer", + "url": "https://suite.camino.network/explorer", + "standard": "none" + } + ] +} 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-5031.json b/_data/chains/eip155-5031.json new file mode 100644 index 000000000000..3b74c9d91483 --- /dev/null +++ b/_data/chains/eip155-5031.json @@ -0,0 +1,23 @@ +{ + "name": "Somnia Mainnet", + "chain": "Somnia", + "rpc": ["https://api.infra.mainnet.somnia.network"], + "faucets": [], + "nativeCurrency": { + "name": "Somnia Mainnet", + "symbol": "SOMI", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://somnia.network", + "shortName": "SomniaMainnet", + "chainId": 5031, + "networkId": 5031, + "explorers": [ + { + "name": "Somnia Mainnet", + "url": "https://mainnet.somnia.w3us.site", + "standard": "EIP3091" + } + ] +} 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-503129905.json b/_data/chains/eip155-503129905.json new file mode 100644 index 000000000000..8c1702218df6 --- /dev/null +++ b/_data/chains/eip155-503129905.json @@ -0,0 +1,28 @@ +{ + "name": "Deprecated SKALE Nebula Hub Testnet", + "chain": "staging-faint-slimy-achird", + "status": "deprecated", + "icon": "nebula", + "rpc": [ + "https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird", + "wss://staging-v3.skalenodes.com/v1/ws/staging-faint-slimy-achird" + ], + "faucets": ["https://sfuel.dirtroad.dev/staging"], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://nebulachain.io/", + "shortName": "deprecated-nebula-testnet", + "chainId": 503129905, + "networkId": 503129905, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com", + "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-5039.json b/_data/chains/eip155-5039.json new file mode 100644 index 000000000000..2bf4493f7215 --- /dev/null +++ b/_data/chains/eip155-5039.json @@ -0,0 +1,24 @@ +{ + "name": "ONIGIRI Test Subnet", + "chain": "ONIGIRI", + "rpc": ["https://subnets.avax.network/onigiri/testnet/rpc"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "ONIGIRI", + "symbol": "ONGR", + "decimals": 18 + }, + "infoURL": "https://www.ongr.org/", + "shortName": "onigiritest", + "chainId": 5039, + "networkId": 5039, + "icon": "onigiri", + "explorers": [ + { + "name": "ONIGIRI Explorer", + "url": "https://subnets-test.avax.network/onigiri", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5040.json b/_data/chains/eip155-5040.json new file mode 100644 index 000000000000..b5454f65d08e --- /dev/null +++ b/_data/chains/eip155-5040.json @@ -0,0 +1,24 @@ +{ + "name": "ONIGIRI Subnet", + "chain": "ONIGIRI", + "rpc": ["https://subnets.avax.network/onigiri/mainnet/rpc"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "ONIGIRI", + "symbol": "ONGR", + "decimals": 18 + }, + "infoURL": "https://www.ongr.org/", + "shortName": "onigiri", + "chainId": 5040, + "networkId": 5040, + "icon": "onigiri", + "explorers": [ + { + "name": "ONIGIRI Explorer", + "url": "https://subnets.avax.network/onigiri", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5042002.json b/_data/chains/eip155-5042002.json new file mode 100644 index 000000000000..6e7c834c4168 --- /dev/null +++ b/_data/chains/eip155-5042002.json @@ -0,0 +1,30 @@ +{ + "name": "Arc Network Testnet", + "chain": "Arc Network", + "icon": "arcnetwork", + "rpc": [ + "https://rpc.testnet.arc.network", + "wss://rpc.testnet.arc.network", + "https://rpc.quicknode.testnet.arc.network", + "wss://rpc.quicknode.testnet.arc.network", + "https://rpc.blockdaemon.testnet.arc.network" + ], + "faucets": ["https://faucet.circle.com/"], + "nativeCurrency": { + "name": "USDC", + "symbol": "USDC", + "decimals": 18 + }, + "infoURL": "https://arc.network", + "shortName": "arc-testnet", + "chainId": 5042002, + "networkId": 5042002, + "slip44": 1, + "explorers": [ + { + "name": "Arcscan", + "url": "https://testnet.arcscan.app", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-504441.json b/_data/chains/eip155-504441.json new file mode 100644 index 000000000000..05d5a38b15ae --- /dev/null +++ b/_data/chains/eip155-504441.json @@ -0,0 +1,24 @@ +{ + "name": "Playdapp Network", + "chain": "PDA", + "icon": "pda", + "rpc": ["https://subnets.avax.network/playdappne/mainnet/rpc"], + "features": [{ "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Playdapp", + "symbol": "PDA", + "decimals": 18 + }, + "infoURL": "https://playdapp.io", + "shortName": "PDA", + "chainId": 504441, + "networkId": 504441, + "explorers": [ + { + "name": "Playdapp Explorer", + "url": "https://subnets.avax.network/playdappne", + "standard": "EIP3091" + } + ] +} 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-5051.json b/_data/chains/eip155-5051.json new file mode 100644 index 000000000000..2b722e63b6ad --- /dev/null +++ b/_data/chains/eip155-5051.json @@ -0,0 +1,25 @@ +{ + "name": "Nollie Skatechain Testnet", + "chain": "Skatechain", + "rpc": ["https://nollie-rpc.skatechain.org/"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "", + "shortName": "nollie-testnet", + "chainId": 5051, + "networkId": 5051, + "icon": "nollie", + "explorers": [ + { + "name": "Nollie Skate Chain Testnet Explorer", + "url": "https://nolliescan.skatechain.org", + "standard": "EIP3091" + } + ], + "status": "active" +} 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 c332a32f5167..d54b1948f5ef 100644 --- a/_data/chains/eip155-51.json +++ b/_data/chains/eip155-51.json @@ -1,17 +1,38 @@ { - "name": "XinFin Apothem Testnet", - "chain": "TXDC", + "name": "XDC Apothem Network", + "chain": "XDC", "rpc": [ - "https://rpc.apothem.network" + "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" ], - "faucets": [], "nativeCurrency": { - "name": "XinFinTest", + "name": "XinFin", "symbol": "TXDC", "decimals": 18 }, "infoURL": "https://xinfin.org", - "shortName": "TXDC", + "shortName": "txdc", "chainId": 51, - "networkId": 51 + "networkId": 51, + "icon": "xdc", + "explorers": [ + { + "name": "xdcscan", + "url": "https://testnet.xdcscan.com", + "icon": "blocksscan", + "standard": "EIP3091" + }, + { + "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 new file mode 100644 index 000000000000..ce35369c8a96 --- /dev/null +++ b/_data/chains/eip155-510.json @@ -0,0 +1,29 @@ +{ + "name": "Syndicate Mainnet", + "chain": "Syndicate", + "shortName": "syndicate", + "infoURL": "https://syndicate.io", + "icon": "syndicate", + "status": "active", + "chainId": 510, + "networkId": 510, + "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-5100.json b/_data/chains/eip155-5100.json new file mode 100644 index 000000000000..05968c2b8756 --- /dev/null +++ b/_data/chains/eip155-5100.json @@ -0,0 +1,18 @@ +{ + "name": "Syndicate Testnet", + "title": "Syndicate Testnet", + "chain": "Syndicate", + "rpc": ["https://rpc-testnet.syndicate.io"], + "faucets": [], + "nativeCurrency": { + "name": "S-Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://syndicate.io", + "shortName": "syndicate-chain-testnet", + "chainId": 5100, + "networkId": 5100, + "status": "incubating", + "icon": "syndicate" +} diff --git a/_data/chains/eip155-5101.json b/_data/chains/eip155-5101.json new file mode 100644 index 000000000000..9b8d24248c6c --- /dev/null +++ b/_data/chains/eip155-5101.json @@ -0,0 +1,18 @@ +{ + "name": "Syndicate Frame Chain", + "title": "Syndicate Frame Chain", + "chain": "Syndicate Frame", + "rpc": ["https://rpc-frame.syndicate.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://syndicate.io", + "shortName": "syndicate-chain-frame", + "chainId": 5101, + "networkId": 5101, + "status": "incubating", + "icon": "syndicate" +} diff --git a/_data/chains/eip155-5102.json b/_data/chains/eip155-5102.json new file mode 100644 index 000000000000..573d6177d585 --- /dev/null +++ b/_data/chains/eip155-5102.json @@ -0,0 +1,22 @@ +{ + "name": "SIC Testnet", + "chain": "SIC Testnet", + "rpc": ["https://rpc-sic-testnet-zvr7tlkzsi.t.conduit.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.fwb.help/", + "shortName": "sic-testnet", + "chainId": 5102, + "networkId": 5102, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorerl2new-sic-testnet-zvr7tlkzsi.t.conduit.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5103.json b/_data/chains/eip155-5103.json new file mode 100644 index 000000000000..8cc1b8dfc088 --- /dev/null +++ b/_data/chains/eip155-5103.json @@ -0,0 +1,15 @@ +{ + "name": "Coordinape Testnet", + "chain": "Coordinape Testnet", + "rpc": ["https://rpc-coordinape-testnet-vs9se3oc4v.t.conduit.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://coordinape.com/", + "shortName": "coordinape-testnet", + "chainId": 5103, + "networkId": 5103 +} diff --git a/_data/chains/eip155-5104.json b/_data/chains/eip155-5104.json new file mode 100644 index 000000000000..15ec4aad0866 --- /dev/null +++ b/_data/chains/eip155-5104.json @@ -0,0 +1,15 @@ +{ + "name": "Charmverse Testnet", + "chain": "Charmverse Testnet", + "rpc": ["https://rpc-charmverse-testnet-g6blnaebes.t.conduit.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://charmverse.io/", + "shortName": "charmverse-testnet", + "chainId": 5104, + "networkId": 5104 +} diff --git a/_data/chains/eip155-5105.json b/_data/chains/eip155-5105.json new file mode 100644 index 000000000000..00de771c9cc0 --- /dev/null +++ b/_data/chains/eip155-5105.json @@ -0,0 +1,15 @@ +{ + "name": "Superloyalty Testnet", + "chain": "Superloyalty Testnet", + "rpc": ["https://rpc-superloyalty-testnet-1m5gwjbsv1.t.conduit.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.superloyal.com/", + "shortName": "superloyalty-testnet", + "chainId": 5105, + "networkId": 5105 +} diff --git a/_data/chains/eip155-5106.json b/_data/chains/eip155-5106.json new file mode 100644 index 000000000000..9091f5687b8c --- /dev/null +++ b/_data/chains/eip155-5106.json @@ -0,0 +1,22 @@ +{ + "name": "Azra Testnet", + "chain": "Azra Testnet", + "rpc": ["https://rpc-azra-testnet-6hz86owb1n.t.conduit.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://azragames.com", + "shortName": "azra-testnet", + "chainId": 5106, + "networkId": 5106, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorerl2new-azra-testnet-6hz86owb1n.t.conduit.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-511111.json b/_data/chains/eip155-511111.json new file mode 100644 index 000000000000..fb3c5327b16b --- /dev/null +++ b/_data/chains/eip155-511111.json @@ -0,0 +1,24 @@ +{ + "name": "Alpha Chain Testnet", + "chain": "Alpha Chain", + "rpc": ["https://testnet-rpc.goalpha.org"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.alphatoken.com/AlphaChain/about-alpha-chain", + "shortName": "alpha-testnet", + "chainId": 511111, + "networkId": 511111, + "slip44": 1, + "icon": "alphachain", + "explorers": [ + { + "name": "Alpha Chain Testnet Scan", + "url": "https://testnet-scan.goalpha.org", + "standard": "EIP3091" + } + ] +} 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-51178.json b/_data/chains/eip155-51178.json new file mode 100644 index 000000000000..fee3104b7b3f --- /dev/null +++ b/_data/chains/eip155-51178.json @@ -0,0 +1,29 @@ +{ + "name": "Lumoz Testnet Alpha", + "chain": "ETH", + "rpc": [ + "https://alpha-us-http-geth.lumoz.org", + "https://alpha-hk-http-geth.lumoz.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Lumoz Test Token", + "symbol": "MOZ", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://lumoz.org", + "shortName": "Lumoz-Testnet", + "chainId": 51178, + "networkId": 51178, + "slip44": 1, + "icon": "opside-new", + "explorers": [ + { + "name": "LumozTestnetInfo", + "url": "https://lumoz.info", + "icon": "opside-new", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-512.json b/_data/chains/eip155-512.json index f9f5305e363f..7a35ad3e5328 100644 --- a/_data/chains/eip155-512.json +++ b/_data/chains/eip155-512.json @@ -1,24 +1,24 @@ { - "name": "Double-A Chain Mainnet", - "chain": "AAC", - "rpc": [ - "https://rpc.acuteangle.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Acuteangle Native Token", - "symbol": "AAC", - "decimals": 18 - }, - "infoURL": "https://www.acuteangle.com/", - "shortName": "aac", - "chainId": 512, - "networkId": 512, - "slip44": 1512, - "explorers": [{ + "name": "Double-A Chain Mainnet", + "chain": "AAC", + "rpc": ["https://rpc.acuteangle.com"], + "faucets": [], + "nativeCurrency": { + "name": "Acuteangle Native Token", + "symbol": "AAC", + "decimals": 18 + }, + "infoURL": "https://www.acuteangle.com/", + "shortName": "aac", + "chainId": 512, + "networkId": 512, + "slip44": 1512, + "explorers": [ + { "name": "aacscan", "url": "https://scan.acuteangle.com", "standard": "EIP3091" - }], + } + ], "icon": "aac" - } \ No newline at end of file +} 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-512512.json b/_data/chains/eip155-512512.json index 934acfe7b04b..54afd5402a0a 100644 --- a/_data/chains/eip155-512512.json +++ b/_data/chains/eip155-512512.json @@ -1,26 +1,26 @@ { - "name": "CMP-Testnet", - "chain": "CMP", - "network": "testnet", - "rpc": [ - "https://galaxy.block.caduceus.foundation", - "wss://galaxy.block.caduceus.foundation" - ], - "faucets": [ - "https://dev.caduceus.foundation/testNetwork" - ], - "nativeCurrency": { - "name": "Caduceus Testnet Token", - "symbol": "CMP", - "decimals": 18 - }, - "infoURL": "https://caduceus.foundation/", - "shortName": "cmp", - "chainId": 512512, - "networkId": 512512, - "explorers": [{ + "name": "CMP-Testnet", + "chain": "CMP", + "rpc": [ + "https://galaxy.block.caduceus.foundation", + "wss://galaxy.block.caduceus.foundation" + ], + "faucets": ["https://dev.caduceus.foundation/testNetwork"], + "nativeCurrency": { + "name": "Caduceus Testnet Token", + "symbol": "CMP", + "decimals": 18 + }, + "infoURL": "https://caduceus.foundation/", + "shortName": "cmp", + "chainId": 512512, + "networkId": 512512, + "slip44": 1, + "explorers": [ + { "name": "Galaxy Scan", "url": "https://galaxy.scan.caduceus.foundation", "standard": "none" - }] - } + } + ] +} diff --git a/_data/chains/eip155-513.json b/_data/chains/eip155-513.json index 6afa7572ff47..97bbc377458e 100644 --- a/_data/chains/eip155-513.json +++ b/_data/chains/eip155-513.json @@ -1,25 +1,24 @@ { - "name": "Double-A Chain Testnet", - "chain": "AAC", - "icon": "aac", - "rpc": [ - "https://rpc-testnet.acuteangle.com" - ], - "faucets": [ - "https://scan-testnet.acuteangle.com/faucet" - ], - "nativeCurrency": { - "name": "Acuteangle Native Token", - "symbol": "AAC", - "decimals": 18 - }, - "infoURL": "https://www.acuteangle.com/", - "shortName": "aact", - "chainId": 513, - "networkId": 513, - "explorers": [{ + "name": "Double-A Chain Testnet", + "chain": "AAC", + "icon": "aac", + "rpc": ["https://rpc-testnet.acuteangle.com"], + "faucets": ["https://scan-testnet.acuteangle.com/faucet"], + "nativeCurrency": { + "name": "Acuteangle Native Token", + "symbol": "AAC", + "decimals": 18 + }, + "infoURL": "https://www.acuteangle.com/", + "shortName": "aact", + "chainId": 513, + "networkId": 513, + "slip44": 1, + "explorers": [ + { "name": "aacscan-testnet", "url": "https://scan-testnet.acuteangle.com", "standard": "EIP3091" - }] - } \ No newline at end of file + } + ] +} diff --git a/_data/chains/eip155-513100.json b/_data/chains/eip155-513100.json new file mode 100644 index 000000000000..7a022f8f8324 --- /dev/null +++ b/_data/chains/eip155-513100.json @@ -0,0 +1,22 @@ +{ + "name": "EthereumFair", + "chainId": 513100, + "networkId": 513100, + "shortName": "ethf", + "chain": "ETHF", + "nativeCurrency": { + "name": "EthereumFair", + "symbol": "ETHF", + "decimals": 18 + }, + "rpc": ["https://rpc.etherfair.org"], + "faucets": [], + "explorers": [ + { + "name": "EthereumFair", + "url": "https://www.oklink.com/ethf", + "standard": "EIP3091" + } + ], + "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-516.json b/_data/chains/eip155-516.json new file mode 100644 index 000000000000..2ceabac66263 --- /dev/null +++ b/_data/chains/eip155-516.json @@ -0,0 +1,17 @@ +{ + "name": "Gear Zero Network Mainnet", + "chain": "GearZero", + "rpc": ["https://gzn.linksme.info"], + "faucets": [], + "nativeCurrency": { + "name": "Gear Zero Network Native Token", + "symbol": "GZN", + "decimals": 18 + }, + "infoURL": "https://token.gearzero.ca/mainnet", + "shortName": "gz-mainnet", + "chainId": 516, + "networkId": 516, + "slip44": 516, + "explorers": [] +} diff --git a/_data/chains/eip155-5165.json b/_data/chains/eip155-5165.json new file mode 100644 index 000000000000..be7712ff5c13 --- /dev/null +++ b/_data/chains/eip155-5165.json @@ -0,0 +1,39 @@ +{ + "name": "Bahamut", + "title": "Bahamut mainnet", + "chain": "Bahamut", + "icon": "bahamut", + "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", + "wss://bahamut-rpc.publicnode.com" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "shortName": "ftn", + "infoURL": "https://bahamut.io", + "chainId": 5165, + "networkId": 5165, + "explorers": [ + { + "name": "blockscout", + "url": "https://ftnscan.com", + "standard": "none" + }, + { + "name": "blockscout", + "url": "https://ftnscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-5167003.json b/_data/chains/eip155-5167003.json new file mode 100644 index 000000000000..603dfaa42161 --- /dev/null +++ b/_data/chains/eip155-5167003.json @@ -0,0 +1,24 @@ +{ + "name": "MXC Wannsee zkEVM Testnet", + "chain": "MXC zkEVM", + "icon": "mxc", + "rpc": ["https://wannsee-rpc.mxc.com"], + "faucets": [], + "nativeCurrency": { + "name": "MXC Wannsee zkEVM Testnet", + "symbol": "MXC", + "decimals": 18 + }, + "infoURL": "https://wannsee.mxc.com/docs/intro", + "shortName": "MXCdiscontinued", + "chainId": 5167003, + "networkId": 5167003, + "slip44": 1, + "explorers": [ + { + "name": "MXC Wannsee zkEVM Testnet", + "url": "https://wannsee-explorer.mxc.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5167004.json b/_data/chains/eip155-5167004.json new file mode 100644 index 000000000000..69cbeeb6ae52 --- /dev/null +++ b/_data/chains/eip155-5167004.json @@ -0,0 +1,24 @@ +{ + "name": "Moonchain Geneva Testnet", + "chain": "MXC zkEVM", + "icon": "mxc", + "rpc": ["https://geneva-rpc.moonchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Moonchain Geneva Testnet", + "symbol": "MXC", + "decimals": 18 + }, + "infoURL": "https://doc.mxc.com/docs/intro", + "shortName": "MXC", + "chainId": 5167004, + "networkId": 5167004, + "slip44": 1, + "explorers": [ + { + "name": "Moonchain Geneva Testnet", + "url": "https://geneva-explorer.moonchain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5169.json b/_data/chains/eip155-5169.json new file mode 100644 index 000000000000..688c1dee3e31 --- /dev/null +++ b/_data/chains/eip155-5169.json @@ -0,0 +1,22 @@ +{ + "name": "Smart Layer Network", + "chain": "SLN", + "rpc": ["https://rpc.main.smartlayer.network"], + "faucets": [], + "nativeCurrency": { + "name": "Service Unit Token", + "symbol": "SU", + "decimals": 18 + }, + "infoURL": "https://www.smartlayer.network/", + "shortName": "SLN", + "chainId": 5169, + "networkId": 5169, + "explorers": [ + { + "name": "SLN Mainnet Explorer", + "url": "https://explorer.main.smartlayer.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-51712.json b/_data/chains/eip155-51712.json new file mode 100644 index 000000000000..7e2d38421493 --- /dev/null +++ b/_data/chains/eip155-51712.json @@ -0,0 +1,23 @@ +{ + "name": "Sardis Mainnet", + "chain": "SRDX", + "icon": "sardis", + "rpc": ["https://mainnet-rpc.sardisnetwork.com"], + "faucets": ["https://faucet.sardisnetwork.com"], + "nativeCurrency": { + "name": "Sardis", + "symbol": "SRDX", + "decimals": 18 + }, + "infoURL": "https://mysardis.com", + "shortName": "SRDXm", + "chainId": 51712, + "networkId": 51712, + "explorers": [ + { + "name": "Sardis", + "url": "https://contract-mainnet.sardisnetwork.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5177.json b/_data/chains/eip155-5177.json index cd1df84cbf9f..53b80203d1f7 100644 --- a/_data/chains/eip155-5177.json +++ b/_data/chains/eip155-5177.json @@ -1,26 +1,23 @@ { - "name": "TLChain Network Mainnet", - "chain": "TLC", - "icon": "tlc", - "rpc": [ - "https://mainnet-rpc.tlxscan.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TLChain Network", - "symbol": "TLC", - "decimals": 18 - }, - "infoURL": "https://tlchain.network/", - "shortName": "tlc", - "chainId": 5177, - "networkId": 5177, - "explorers": [ - { - "name": "TLChain Explorer", - "url": "https://explorer.tlchain.network", - "standard": "none" - } - ] - } - \ No newline at end of file + "name": "TLChain Network Mainnet", + "chain": "TLC", + "icon": "tlc", + "rpc": ["https://mainnet-rpc.tlxscan.com/"], + "faucets": [], + "nativeCurrency": { + "name": "TLChain Network", + "symbol": "TLC", + "decimals": 18 + }, + "infoURL": "https://tlchain.network/", + "shortName": "tlc", + "chainId": 5177, + "networkId": 5177, + "explorers": [ + { + "name": "TLChain Explorer", + "url": "https://explorer.tlchain.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-51888.json b/_data/chains/eip155-51888.json new file mode 100644 index 000000000000..9d9a5062b8f9 --- /dev/null +++ b/_data/chains/eip155-51888.json @@ -0,0 +1,21 @@ +{ + "name": "Memento Mainnet", + "chain": "Memento", + "rpc": ["https://rpc.mementoblockchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "", + "shortName": "memento-mainnet", + "chainId": 51888, + "networkId": 51888, + "explorers": [] +} diff --git a/_data/chains/eip155-52.json b/_data/chains/eip155-52.json index d57083ea7a92..206d1261672e 100644 --- a/_data/chains/eip155-52.json +++ b/_data/chains/eip155-52.json @@ -1,9 +1,7 @@ { "name": "CoinEx Smart Chain Mainnet", "chain": "CSC", - "rpc": [ - "https://rpc.coinex.net" - ], + "rpc": ["https://rpc.coinex.net"], "faucets": [], "nativeCurrency": { "name": "CoinEx Chain Native Token", @@ -14,9 +12,11 @@ "shortName": "cet", "chainId": 52, "networkId": 52, - "explorers": [{ - "name": "coinexscan", - "url": "https://www.coinex.net", - "standard": "none" - }] + "explorers": [ + { + "name": "coinexscan", + "url": "https://www.coinex.net", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-520.json b/_data/chains/eip155-520.json index 539315c4c017..fbad7f1d0d68 100644 --- a/_data/chains/eip155-520.json +++ b/_data/chains/eip155-520.json @@ -1,26 +1,27 @@ { - "name": "XT Smart Chain Mainnet", - "chain": "XSC", - "icon": "xsc", - "rpc": [ - "https://datarpc1.xsc.pub", - "https://datarpc2.xsc.pub", - "https://datarpc3.xsc.pub" - ], - "faucets": ["https://xsc.pub/faucet"], - "nativeCurrency": { - "name": "XT Smart Chain Native Token", - "symbol": "XT", - "decimals": 18 - }, - "infoURL": "https://xsc.pub/", - "shortName": "xt", - "chainId": 520, - "networkId": 1024, - "explorers": [{ + "name": "XT Smart Chain Mainnet", + "chain": "XSC", + "icon": "xsc", + "rpc": [ + "https://datarpc1.xsc.pub", + "https://datarpc2.xsc.pub", + "https://datarpc3.xsc.pub" + ], + "faucets": ["https://xsc.pub/faucet"], + "nativeCurrency": { + "name": "XT Smart Chain Native Token", + "symbol": "XT", + "decimals": 18 + }, + "infoURL": "https://xsc.pub/", + "shortName": "xt", + "chainId": 520, + "networkId": 1024, + "explorers": [ + { "name": "xscscan", "url": "https://xscscan.pub", "standard": "EIP3091" - }] - } - \ No newline at end of file + } + ] +} diff --git a/_data/chains/eip155-52014.json b/_data/chains/eip155-52014.json new file mode 100644 index 000000000000..63990d769d73 --- /dev/null +++ b/_data/chains/eip155-52014.json @@ -0,0 +1,25 @@ +{ + "name": "Electroneum Mainnet", + "chain": "Electroneum", + "rpc": ["https://rpc.electroneum.com", "https://rpc.ankr.com/electroneum"], + "faucets": [], + "nativeCurrency": { + "name": "Electroneum", + "symbol": "ETN", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://electroneum.com", + "shortName": "etn-mainnet", + "chainId": 52014, + "networkId": 52014, + "icon": "electroneum", + "explorers": [ + { + "name": "blockscout", + "url": "https://blockexplorer.electroneum.com", + "icon": "electroneum", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5201420.json b/_data/chains/eip155-5201420.json new file mode 100644 index 000000000000..7fb831e48e18 --- /dev/null +++ b/_data/chains/eip155-5201420.json @@ -0,0 +1,26 @@ +{ + "name": "Electroneum Testnet", + "chain": "Electroneum", + "rpc": ["https://rpc.ankr.com/electroneum_testnet"], + "faucets": ["https://faucet.electroneum.com"], + "nativeCurrency": { + "name": "Electroneum", + "symbol": "ETN", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://electroneum.com", + "shortName": "etn-testnet", + "chainId": 5201420, + "networkId": 5201420, + "slip44": 1, + "icon": "electroneum", + "explorers": [ + { + "name": "blockscout", + "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-5234.json b/_data/chains/eip155-5234.json new file mode 100644 index 000000000000..7327941c704b --- /dev/null +++ b/_data/chains/eip155-5234.json @@ -0,0 +1,24 @@ +{ + "name": "Humanode Mainnet", + "chain": "HMND", + "rpc": ["https://explorer-rpc-http.mainnet.stages.humanode.io"], + "faucets": [], + "nativeCurrency": { + "name": "eHMND", + "symbol": "eHMND", + "decimals": 18 + }, + "infoURL": "https://humanode.io", + "shortName": "hmnd", + "chainId": 5234, + "networkId": 5234, + "icon": "humanode", + "explorers": [ + { + "name": "Subscan", + "url": "https://humanode.subscan.io", + "standard": "EIP3091", + "icon": "subscan" + } + ] +} diff --git a/_data/chains/eip155-526916.json b/_data/chains/eip155-526916.json new file mode 100644 index 000000000000..c888a2ffba55 --- /dev/null +++ b/_data/chains/eip155-526916.json @@ -0,0 +1,23 @@ +{ + "name": "DoCoin Community Chain", + "title": "DoCoin Community Chain", + "chain": "DoCoin", + "rpc": ["https://rpc.docoin.shop"], + "faucets": [], + "nativeCurrency": { + "name": "DO", + "symbol": "DCT", + "decimals": 18 + }, + "infoURL": "https://docoin.network", + "shortName": "DoCoin", + "chainId": 526916, + "networkId": 526916, + "explorers": [ + { + "name": "DoCoin Community Chain Explorer", + "url": "https://explorer.docoin.shop", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-529.json b/_data/chains/eip155-529.json new file mode 100644 index 000000000000..f16bb132817a --- /dev/null +++ b/_data/chains/eip155-529.json @@ -0,0 +1,17 @@ +{ + "name": "Firechain Mainnet", + "chain": "FIRE", + "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-5290.json b/_data/chains/eip155-5290.json new file mode 100644 index 000000000000..bf2214d62235 --- /dev/null +++ b/_data/chains/eip155-5290.json @@ -0,0 +1,14 @@ +{ + "name": "Firechain Mainnet Old", + "chain": "FIRE", + "icon": "firechain", + "rpc": ["https://mainnet.rpc1.thefirechain.com"], + "faucets": [], + "nativeCurrency": { "name": "Firechain", "symbol": "FIRE", "decimals": 18 }, + "infoURL": "https://thefirechain.com", + "shortName": "_old_fire", + "chainId": 5290, + "networkId": 5290, + "explorers": [], + "status": "deprecated" +} diff --git a/_data/chains/eip155-53.json b/_data/chains/eip155-53.json index b13957b6dd78..828b87e16c9b 100644 --- a/_data/chains/eip155-53.json +++ b/_data/chains/eip155-53.json @@ -1,9 +1,7 @@ { "name": "CoinEx Smart Chain Testnet", "chain": "CSC", - "rpc": [ - "https://testnet-rpc.coinex.net/" - ], + "rpc": ["https://testnet-rpc.coinex.net/"], "faucets": [], "nativeCurrency": { "name": "CoinEx Chain Test Native Token", @@ -14,9 +12,12 @@ "shortName": "tcet", "chainId": 53, "networkId": 53, - "explorers": [{ - "name": "coinexscan", - "url": "https://testnet.coinex.net", - "standard": "none" - }] + "slip44": 1, + "explorers": [ + { + "name": "coinexscan", + "url": "https://testnet.coinex.net", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-530.json b/_data/chains/eip155-530.json new file mode 100644 index 000000000000..157c9d79c501 --- /dev/null +++ b/_data/chains/eip155-530.json @@ -0,0 +1,23 @@ +{ + "name": "Pundi AIFX Omnilayer", + "chain": "PUNDIAI", + "rpc": ["https://fx-json-web3.functionx.io:8545"], + "faucets": [], + "nativeCurrency": { + "name": "Pundi AIFX", + "symbol": "PUNDAI", + "decimals": 18 + }, + "infoURL": "https://fx.pundi.ai/", + "shortName": "pundiai", + "chainId": 530, + "networkId": 530, + "icon": "pundiai", + "explorers": [ + { + "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-5315.json b/_data/chains/eip155-5315.json index 2fc15fe33860..b93a9f8ec848 100644 --- a/_data/chains/eip155-5315.json +++ b/_data/chains/eip155-5315.json @@ -1,17 +1,15 @@ -{ - "name": "Uzmi Network Mainnet", - "chain": "UZMI", - "rpc": [ - "https://network.uzmigames.com.br/" - ], - "faucets": [], - "nativeCurrency": { - "name": "UZMI", - "symbol": "UZMI", - "decimals": 18 - }, - "infoURL": "https://uzmigames.com.br/", - "shortName": "UZMI", - "chainId": 5315, - "networkId": 5315 -} \ No newline at end of file +{ + "name": "Uzmi Network Mainnet", + "chain": "UZMI", + "rpc": ["https://network.uzmigames.com.br/"], + "faucets": [], + "nativeCurrency": { + "name": "UZMI", + "symbol": "UZMI", + "decimals": 18 + }, + "infoURL": "https://uzmigames.com.br/", + "shortName": "UZMI", + "chainId": 5315, + "networkId": 5315 +} diff --git a/_data/chains/eip155-5317.json b/_data/chains/eip155-5317.json new file mode 100644 index 000000000000..20f5f409abe6 --- /dev/null +++ b/_data/chains/eip155-5317.json @@ -0,0 +1,24 @@ +{ + "name": "OpTrust Testnet", + "chain": "OpTrust", + "rpc": ["https://rpctest.optrust.io"], + "faucets": [], + "nativeCurrency": { + "name": "TestBSC", + "symbol": "tBNB", + "decimals": 18 + }, + "infoURL": "https://optrust.io", + "shortName": "toptrust", + "chainId": 5317, + "networkId": 5317, + "icon": "optrust", + "explorers": [ + { + "name": "OpTrust Testnet explorer", + "url": "https://scantest.optrust.io", + "icon": "optrust", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-5318007.json b/_data/chains/eip155-5318007.json new file mode 100644 index 000000000000..d4302e0c2e0f --- /dev/null +++ b/_data/chains/eip155-5318007.json @@ -0,0 +1,27 @@ +{ + "name": "Reactive Lasna", + "title": "Reactive Network Testnet Lasna", + "chain": "REACT", + "rpc": ["https://lasna-rpc.rnk.dev"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [ + "https://dev.reactive.network/reactive-mainnet#get-testnet-react" + ], + "nativeCurrency": { + "name": "Lasna React", + "symbol": "lREACT", + "decimals": 18 + }, + "infoURL": "https://reactive.network", + "shortName": "lreact", + "icon": "reactive", + "chainId": 5318007, + "networkId": 5318007, + "explorers": [ + { + "name": "Reactscan", + "url": "https://lasna.reactscan.net", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-5318008.json b/_data/chains/eip155-5318008.json new file mode 100644 index 000000000000..7010342d9e23 --- /dev/null +++ b/_data/chains/eip155-5318008.json @@ -0,0 +1,25 @@ +{ + "name": "Reactive Kopli", + "title": "Reactive Network Testnet Kopli", + "chain": "REACT", + "rpc": ["https://kopli-rpc.rnk.dev"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://dev.reactive.network/docs/kopli-testnet#faucet"], + "nativeCurrency": { + "name": "Kopli React", + "symbol": "REACT", + "decimals": 18 + }, + "infoURL": "https://reactive.network", + "shortName": "kreact", + "icon": "reactive", + "chainId": 5318008, + "networkId": 5318008, + "explorers": [ + { + "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-53277.json b/_data/chains/eip155-53277.json new file mode 100644 index 000000000000..f030c34a3acd --- /dev/null +++ b/_data/chains/eip155-53277.json @@ -0,0 +1,25 @@ +{ + "name": "DOID", + "chain": "DOID", + "rpc": ["https://rpc.doid.tech"], + "faucets": [], + "nativeCurrency": { + "name": "DOID", + "symbol": "DOID", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://doid.tech", + "shortName": "DOID", + "chainId": 53277, + "networkId": 53277, + "icon": "doid", + "explorers": [ + { + "name": "DOID Scan", + "url": "https://scan.doid.tech", + "icon": "doid", + "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-534.json b/_data/chains/eip155-534.json index 712e7a1b4e5a..357f9fd8e6da 100644 --- a/_data/chains/eip155-534.json +++ b/_data/chains/eip155-534.json @@ -1,24 +1,23 @@ { - "name": "Candle", - "chain": "Candle", - "rpc": [ - "https://candle-rpc.com/", - "https://rpc.cndlchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "CANDLE", - "symbol": "CNDL", - "decimals": 18 - }, - "infoURL": "https://candlelabs.org/", - "shortName": "CNDL", - "chainId": 534, - "networkId": 534, - "slip44": 674, - "explorers": [{ - "name": "candleexplorer", - "url": "https://candleexplorer.com", - "standard": "EIP3091" - }] + "name": "Candle", + "chain": "Candle", + "rpc": ["https://candle-rpc.com/", "https://rpc.cndlchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "CANDLE", + "symbol": "CNDL", + "decimals": 18 + }, + "infoURL": "https://candlelabs.org/", + "shortName": "CNDL", + "chainId": 534, + "networkId": 534, + "slip44": 674, + "explorers": [ + { + "name": "candleexplorer", + "url": "https://candleexplorer.com", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-534351.json b/_data/chains/eip155-534351.json new file mode 100644 index 000000000000..8a56bbe23434 --- /dev/null +++ b/_data/chains/eip155-534351.json @@ -0,0 +1,36 @@ +{ + "name": "Scroll Sepolia Testnet", + "chain": "ETH", + "status": "active", + "rpc": [ + "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-sepolia-rpc.publicnode.com", + "wss://scroll-sepolia-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scroll.io", + "shortName": "scr-sepolia", + "chainId": 534351, + "networkId": 534351, + "slip44": 1, + "explorers": [ + { + "name": "Scroll Sepolia Etherscan", + "url": "https://sepolia.scrollscan.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://sepolia.scroll.io/bridge" }] + } +} diff --git a/_data/chains/eip155-534352.json b/_data/chains/eip155-534352.json new file mode 100644 index 000000000000..46ccb11b7304 --- /dev/null +++ b/_data/chains/eip155-534352.json @@ -0,0 +1,34 @@ +{ + "name": "Scroll", + "chain": "ETH", + "status": "active", + "rpc": [ + "https://rpc.scroll.io", + "https://rpc.ankr.com/scroll", + "https://scroll-mainnet.chainstacklabs.com", + "https://scroll-rpc.publicnode.com", + "wss://scroll-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scroll.io", + "shortName": "scr", + "chainId": 534352, + "networkId": 534352, + "explorers": [ + { + "name": "Scrollscan", + "url": "https://scrollscan.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://scroll.io/bridge" }] + } +} diff --git a/_data/chains/eip155-534353.json b/_data/chains/eip155-534353.json new file mode 100644 index 000000000000..243805719b60 --- /dev/null +++ b/_data/chains/eip155-534353.json @@ -0,0 +1,29 @@ +{ + "name": "Scroll Alpha Testnet", + "chain": "ETH", + "status": "deprecated", + "rpc": ["https://alpha-rpc.scroll.io/l2"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scroll.io", + "shortName": "scr-alpha", + "chainId": 534353, + "networkId": 534353, + "slip44": 1, + "explorers": [ + { + "name": "Scroll Alpha Testnet Block Explorer", + "url": "https://alpha-blockscout.scroll.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [] + } +} diff --git a/_data/chains/eip155-534354.json b/_data/chains/eip155-534354.json new file mode 100644 index 000000000000..9401ad537b10 --- /dev/null +++ b/_data/chains/eip155-534354.json @@ -0,0 +1,18 @@ +{ + "name": "Scroll Pre-Alpha Testnet", + "chain": "ETH", + "status": "deprecated", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "TSETH", + "decimals": 18 + }, + "infoURL": "https://scroll.io", + "shortName": "scr-prealpha", + "chainId": 534354, + "networkId": 534354, + "slip44": 1, + "explorers": [] +} 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-53457.json b/_data/chains/eip155-53457.json new file mode 100644 index 000000000000..576d9f1ce6e8 --- /dev/null +++ b/_data/chains/eip155-53457.json @@ -0,0 +1,28 @@ +{ + "name": "DODOchain testnet", + "title": "DODOchain testnet", + "chain": "DODOchain", + "icon": "dodochain_testnet", + "rpc": [ + "https://dodochain-testnet.alt.technology", + "wss://dodochain-testnet.alt.technology/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "DODO", + "symbol": "DODO", + "decimals": 18 + }, + "infoURL": "https://www.dodochain.com", + "shortName": "dodochain", + "chainId": 53457, + "networkId": 53457, + "explorers": [ + { + "name": "DODOchain Testnet (Sepolia) Explorer", + "url": "https://testnet-scan.dodochain.com", + "icon": "dodochain_testnet", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-534849.json b/_data/chains/eip155-534849.json new file mode 100644 index 000000000000..65a74642c9a2 --- /dev/null +++ b/_data/chains/eip155-534849.json @@ -0,0 +1,23 @@ +{ + "name": "Shinarium Beta", + "chain": "Shinarium", + "icon": "shinarium", + "rpc": ["https://rpc.shinarium.org"], + "faucets": ["https://faucet.shinarium.org"], + "nativeCurrency": { + "name": "Shina Inu", + "symbol": "SHI", + "decimals": 18 + }, + "infoURL": "https://shinarium.org", + "shortName": "shi", + "chainId": 534849, + "networkId": 534849, + "explorers": [ + { + "name": "shinascan", + "url": "https://shinascan.shinarium.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-535037.json b/_data/chains/eip155-535037.json new file mode 100644 index 000000000000..fe988b7eea86 --- /dev/null +++ b/_data/chains/eip155-535037.json @@ -0,0 +1,23 @@ +{ + "name": "BeanEco SmartChain", + "title": "BESC Mainnet", + "chain": "BESC", + "rpc": ["https://mainnet-rpc.bescscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "BeanEco SmartChain", + "symbol": "BESC", + "decimals": 18 + }, + "infoURL": "besceco.finance", + "shortName": "BESC", + "chainId": 535037, + "networkId": 535037, + "explorers": [ + { + "name": "bescscan", + "url": "https://Bescscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5353.json b/_data/chains/eip155-5353.json new file mode 100644 index 000000000000..25693a6c40b8 --- /dev/null +++ b/_data/chains/eip155-5353.json @@ -0,0 +1,28 @@ +{ + "name": "Tritanium Testnet", + "chain": "TRITANIUM", + "rpc": [ + "https://nodetestnet-station-one.tritanium.network/", + "https://nodetestnet-station-two.tritanium.network/" + ], + "faucets": ["https://faucet.tritanium.network"], + "nativeCurrency": { + "name": "Tritanium Native Token", + "symbol": "tTRN", + "decimals": 18 + }, + "infoURL": "https://tritanium.network", + "shortName": "ttrn", + "chainId": 5353, + "networkId": 5353, + "slip44": 1, + "icon": "tritanium", + "explorers": [ + { + "name": "TRITANIUM Testnet Explorer", + "icon": "tritanium", + "url": "https://testnet.tritanium.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-537.json b/_data/chains/eip155-537.json new file mode 100644 index 000000000000..216d20d3959e --- /dev/null +++ b/_data/chains/eip155-537.json @@ -0,0 +1,24 @@ +{ + "name": "OpTrust Mainnet", + "chain": "OpTrust", + "rpc": ["https://rpc.optrust.io"], + "faucets": [], + "nativeCurrency": { + "name": "BSC", + "symbol": "BNB", + "decimals": 18 + }, + "infoURL": "https://optrust.io", + "shortName": "optrust", + "chainId": 537, + "networkId": 537, + "icon": "optrust", + "explorers": [ + { + "name": "OpTrust explorer", + "url": "https://scan.optrust.io", + "icon": "optrust", + "standard": "none" + } + ] +} 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 new file mode 100644 index 000000000000..506de28aea51 --- /dev/null +++ b/_data/chains/eip155-5372.json @@ -0,0 +1,16 @@ +{ + "name": "Settlus Testnet", + "chain": "Settlus", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Setl", + "symbol": "SETL", + "decimals": 18 + }, + "infoURL": "https://settlus.org", + "shortName": "settlus-testnet", + "chainId": 5372, + "networkId": 5372, + "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-53935.json b/_data/chains/eip155-53935.json index 5b36e61ee781..c858f1c8a6d3 100644 --- a/_data/chains/eip155-53935.json +++ b/_data/chains/eip155-53935.json @@ -2,10 +2,7 @@ "name": "DFK Chain", "chain": "DFK", "icon": "dfk", - "network": "mainnet", - "rpc": [ - "https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc" - ], + "rpc": ["https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc"], "faucets": [], "nativeCurrency": { "name": "Jewel", @@ -24,4 +21,4 @@ "standard": "none" } ] -} \ No newline at end of file +} diff --git a/_data/chains/eip155-54.json b/_data/chains/eip155-54.json index 3ae973d4394e..84fbffb3f7c7 100644 --- a/_data/chains/eip155-54.json +++ b/_data/chains/eip155-54.json @@ -1,26 +1,23 @@ { - "name": "Openpiece Mainnet", - "chain": "OPENPIECE", - "icon": "openpiece", - "network": "mainnet", - "rpc": [ - "https://mainnet.openpiece.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Belly", - "symbol": "BELLY", - "decimals": 18 - }, - "infoURL": "https://cryptopiece.online", - "shortName": "OP", - "chainId": 54, - "networkId": 54, - "explorers": [ - { - "name": "Belly Scan", - "url": "https://bellyscan.com", - "standard": "none" - } - ] + "name": "Openpiece Mainnet", + "chain": "OPENPIECE", + "icon": "openpiece", + "rpc": ["https://mainnet.openpiece.io"], + "faucets": [], + "nativeCurrency": { + "name": "Belly", + "symbol": "BELLY", + "decimals": 18 + }, + "infoURL": "https://cryptopiece.online", + "shortName": "OP", + "chainId": 54, + "networkId": 54, + "explorers": [ + { + "name": "Belly Scan", + "url": "https://bellyscan.com", + "standard": "none" + } + ] } 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-542.json b/_data/chains/eip155-542.json new file mode 100644 index 000000000000..58f1f39cba0b --- /dev/null +++ b/_data/chains/eip155-542.json @@ -0,0 +1,23 @@ +{ + "name": "PAWCHAIN Testnet", + "chain": "PAW", + "rpc": ["https://pawchainx.com/"], + "faucets": [], + "nativeCurrency": { + "name": "PAW", + "symbol": "PAW", + "decimals": 18 + }, + "infoURL": "https://pawchainx.com/", + "shortName": "PAW", + "chainId": 542, + "networkId": 542, + "slip44": 1, + "explorers": [ + { + "name": "PAWCHAIN Testnet", + "url": "https://pawscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-54211.json b/_data/chains/eip155-54211.json new file mode 100644 index 000000000000..c2e7f31e8aa5 --- /dev/null +++ b/_data/chains/eip155-54211.json @@ -0,0 +1,23 @@ +{ + "name": "Haqq Chain Testnet", + "chain": "TestEdge2", + "rpc": ["https://rpc.eth.testedge2.haqq.network"], + "faucets": ["https://testedge2.haqq.network"], + "nativeCurrency": { + "name": "Islamic Coin", + "symbol": "ISLMT", + "decimals": 18 + }, + "infoURL": "https://islamiccoin.net", + "shortName": "ISLMT", + "chainId": 54211, + "networkId": 54211, + "slip44": 1, + "explorers": [ + { + "name": "TestEdge HAQQ Explorer", + "url": "https://explorer.testedge2.haqq.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5424.json b/_data/chains/eip155-5424.json new file mode 100644 index 000000000000..8481365cc0af --- /dev/null +++ b/_data/chains/eip155-5424.json @@ -0,0 +1,32 @@ +{ + "name": "edeXa Mainnet", + "chain": "edeXa", + "rpc": ["https://rpc.edexa.network", "https://rpc.edexa.com"], + "faucets": [], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "edeXa", + "symbol": "EDX", + "decimals": 18 + }, + "infoURL": "https://edexa.network/", + "shortName": "edx", + "chainId": 5424, + "networkId": 5424, + "slip44": 1, + "icon": "edexa", + "explorers": [ + { + "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 new file mode 100644 index 000000000000..012b044b743d --- /dev/null +++ b/_data/chains/eip155-54321.json @@ -0,0 +1,27 @@ +{ + "name": "Toronet Testnet", + "chain": "Toronet", + "icon": "toronet", + "rpc": ["https://testnet.toronet.org/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Toroe", + "symbol": "TOROE", + "decimals": 18 + }, + "infoURL": "https://toronet.org", + "shortName": "ToronetTestnet", + "chainId": 54321, + "networkId": 54321, + "slip44": 1, + "ens": { + "registry": "0x059C474f26D65B0458F9da10A649a7322aB02C09" + }, + "explorers": [ + { + "name": "toronet_explorer", + "url": "https://testnet.toronet.org", + "standard": "none" + } + ] +} 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-5439.json b/_data/chains/eip155-5439.json new file mode 100644 index 000000000000..1eb91ba22d6a --- /dev/null +++ b/_data/chains/eip155-5439.json @@ -0,0 +1,22 @@ +{ + "name": "Egochain", + "chainId": 5439, + "shortName": "egax", + "chain": "EGAX", + "networkId": 5439, + "nativeCurrency": { + "name": "EGAX", + "symbol": "EGAX", + "decimals": 18 + }, + "rpc": ["https://mainnet.egochain.org"], + "faucets": [], + "infoURL": "https://docs.egochain.org/", + "explorers": [ + { + "name": "egoscan", + "url": "https://egoscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-545.json b/_data/chains/eip155-545.json new file mode 100644 index 000000000000..9a1ad7e30040 --- /dev/null +++ b/_data/chains/eip155-545.json @@ -0,0 +1,23 @@ +{ + "name": "Flow EVM Testnet", + "chain": "Flow", + "rpc": ["https://testnet.evm.nodes.onflow.org"], + "faucets": ["https://faucet.flow.com/fund-account"], + "nativeCurrency": { + "name": "FLOW", + "symbol": "FLOW", + "decimals": 18 + }, + "infoURL": "https://developers.flow.com/evm/about", + "shortName": "flow-testnet", + "chainId": 545, + "networkId": 545, + "icon": "flowevm", + "explorers": [ + { + "name": "FlowScan Testnet", + "url": "https://evm-testnet.flowscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5464.json b/_data/chains/eip155-5464.json new file mode 100644 index 000000000000..8069a53b0f8d --- /dev/null +++ b/_data/chains/eip155-5464.json @@ -0,0 +1,32 @@ +{ + "name": "SagaEVM", + "chain": "SagaEVM", + "rpc": ["https://sagaevm.jsonrpc.sagarpc.io"], + "faucets": [], + "nativeCurrency": { + "name": "gas", + "symbol": "GAS", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.saga.xyz", + "shortName": "sagaevm", + "chainId": 5464, + "networkId": 5464, + "icon": "sagaevm", + "explorers": [ + { + "name": "blockscout", + "url": "https://sagaevm.sagaexplorer.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-55.json b/_data/chains/eip155-55.json index 38b4fde77b7d..072d13cbbe83 100644 --- a/_data/chains/eip155-55.json +++ b/_data/chains/eip155-55.json @@ -19,9 +19,11 @@ "shortName": "ZYX", "chainId": 55, "networkId": 55, - "explorers": [{ - "name": "zyxscan", - "url": "https://zyxscan.com", - "standard": "none" - }] + "explorers": [ + { + "name": "zyxscan", + "url": "https://zyxscan.com", + "standard": "none" + } + ] } 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-55004.json b/_data/chains/eip155-55004.json new file mode 100644 index 000000000000..85e6dbb516d3 --- /dev/null +++ b/_data/chains/eip155-55004.json @@ -0,0 +1,25 @@ +{ + "name": "Titan", + "chain": "ETH", + "rpc": [ + "https://rpc.titan.tokamak.network", + "wss://rpc.titan.tokamak.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://tokamak.network", + "shortName": "teth", + "chainId": 55004, + "networkId": 55004, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.titan.tokamak.network", + "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-5522.json b/_data/chains/eip155-5522.json new file mode 100644 index 000000000000..76ffd8afe868 --- /dev/null +++ b/_data/chains/eip155-5522.json @@ -0,0 +1,24 @@ +{ + "name": "VEX EVM TESTNET", + "chain": "vex", + "icon": "vex", + "rpc": ["https://testnet.vexascan.com/evmapi"], + "faucets": ["https://t.me/vexfaucetbot"], + "nativeCurrency": { + "name": "VEX EVM TESTNET", + "symbol": "VEX", + "decimals": 18 + }, + "infoURL": "https://vexanium.com", + "shortName": "VEX", + "chainId": 5522, + "networkId": 5522, + "slip44": 1, + "explorers": [ + { + "name": "Vexascan-EVM-TestNet", + "url": "https://testnet.vexascan.com/evmexplorer", + "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-552981.json b/_data/chains/eip155-552981.json new file mode 100644 index 000000000000..f34627ff1ad4 --- /dev/null +++ b/_data/chains/eip155-552981.json @@ -0,0 +1,23 @@ +{ + "name": "One World Chain Testnet", + "chain": "One World Chain", + "icon": "oneWorldChainIcon", + "rpc": ["https://testnet-rpc.oneworldchain.org"], + "faucets": ["https://faucet.oneworldchain.org"], + "nativeCurrency": { + "name": "OWCT", + "symbol": "OWCT", + "decimals": 18 + }, + "infoURL": "https://oneworldchain.org", + "shortName": "OWCTt", + "chainId": 552981, + "networkId": 552981, + "explorers": [ + { + "name": "One World Chain Testnet Explorer", + "url": "https://testnet.oneworldchain.org", + "standard": "EIP3091" + } + ] +} 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-555.json b/_data/chains/eip155-555.json index af8c94d6dd3a..10552dab7c98 100644 --- a/_data/chains/eip155-555.json +++ b/_data/chains/eip155-555.json @@ -1,9 +1,7 @@ { "name": "Vela1 Chain Mainnet", "chain": "VELA1", - "rpc": [ - "https://rpc.velaverse.io" - ], + "rpc": ["https://rpc.velaverse.io"], "faucets": [], "nativeCurrency": { "name": "CLASS COIN", diff --git a/_data/chains/eip155-5551.json b/_data/chains/eip155-5551.json index 124469dbf175..2fe949ac8995 100644 --- a/_data/chains/eip155-5551.json +++ b/_data/chains/eip155-5551.json @@ -1,10 +1,8 @@ { - "name": "Nahmii Mainnet", + "name": "Nahmii 2 Mainnet", "chain": "Nahmii", - "network": "mainnet", - "rpc": [ - "https://l2.nahmii.io" - ], + "rpc": ["https://l2.nahmii.io"], + "status": "active", "faucets": [], "nativeCurrency": { "name": "Ether", @@ -16,17 +14,21 @@ "chainId": 5551, "networkId": 5551, "icon": "nahmii", - "explorers": [{ - "name": "Nahmii mainnet explorer", - "url": "https://explorer.nahmii.io", - "icon": "nahmii", - "standard": "EIP3091" - }], + "explorers": [ + { + "name": "Nahmii 2 Mainnet Explorer", + "url": "https://explorer.n2.nahmii.io", + "icon": "nahmii", + "standard": "EIP3091" + } + ], "parent": { - "type" : "L2", + "type": "L2", "chain": "eip155-1", - "bridges": [{ - "url":"https://bridge.nahmii.io" - }] + "bridges": [ + { + "url": "https://n2.bridge.nahmii.io" + } + ] } -} \ No newline at end of file +} diff --git a/_data/chains/eip155-5553.json b/_data/chains/eip155-5553.json index 972881f40550..41e06007ac01 100644 --- a/_data/chains/eip155-5553.json +++ b/_data/chains/eip155-5553.json @@ -1,10 +1,8 @@ { - "name": "Nahmii Testnet", + "name": "Nahmii 2 Testnet", "chain": "Nahmii", - "network": "testnet", - "rpc": [ - "https://l2.testnet.nahmii.io" - ], + "rpc": ["https://l2.testnet.nahmii.io"], + "status": "deprecated", "faucets": [], "nativeCurrency": { "name": "Ether", @@ -12,21 +10,26 @@ "decimals": 18 }, "infoURL": "https://nahmii.io", - "shortName": "Nahmii testnet", + "shortName": "NahmiiTestnet", "chainId": 5553, "networkId": 5553, + "slip44": 1, "icon": "nahmii", - "explorers": [{ - "name": "blockscout", - "url": "https://explorer.testnet.nahmii.io", - "icon": "nahmii", - "standard": "EIP3091" - }], + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.testnet.nahmii.io", + "icon": "nahmii", + "standard": "EIP3091" + } + ], "parent": { - "type" : "L2", + "type": "L2", "chain": "eip155-3", - "bridges": [{ - "url":"https://bridge.nahmii.io" - }] + "bridges": [ + { + "url": "https://bridge.nahmii.io" + } + ] } -} \ No newline at end of file +} diff --git a/_data/chains/eip155-5555.json b/_data/chains/eip155-5555.json new file mode 100644 index 000000000000..c4a5a53a48a0 --- /dev/null +++ b/_data/chains/eip155-5555.json @@ -0,0 +1,23 @@ +{ + "name": "Chain Verse Mainnet", + "chain": "CVERSE", + "icon": "chain_verse", + "rpc": ["https://rpc.chainverse.info"], + "faucets": [], + "nativeCurrency": { + "name": "Oasys", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://chainverse.info", + "shortName": "cverse", + "chainId": 5555, + "networkId": 5555, + "explorers": [ + { + "name": "Chain Verse Explorer", + "url": "https://explorer.chainverse.info", + "standard": "EIP3091" + } + ] +} 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-55555.json b/_data/chains/eip155-55555.json index 250f0a0c2c34..dcdbdd94d6ca 100644 --- a/_data/chains/eip155-55555.json +++ b/_data/chains/eip155-55555.json @@ -2,24 +2,22 @@ "name": "REI Chain Mainnet", "chain": "REI", "icon": "reichain", - "rpc": [ - "https://rei-rpc.moonrhythm.io" - ], - "faucets": [ - "http://kururu.finance/faucet?chainId=55555" - ], + "rpc": ["https://rei-rpc.moonrhythm.io"], + "faucets": ["http://kururu.finance/faucet?chainId=55555"], "nativeCurrency": { "name": "Rei", "symbol": "REI", "decimals": 18 }, "infoURL": "https://reichain.io", - "shortName": "rei", + "shortName": "reichain", "chainId": 55555, "networkId": 55555, - "explorers": [{ - "name": "reiscan", - "url": "https://reiscan.com", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "reiscan", + "url": "https://reiscan.com", + "standard": "EIP3091" + } + ] } 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-5555555.json b/_data/chains/eip155-5555555.json new file mode 100644 index 000000000000..6df5e5621537 --- /dev/null +++ b/_data/chains/eip155-5555555.json @@ -0,0 +1,33 @@ +{ + "name": "Imversed Mainnet", + "chain": "Imversed", + "rpc": [ + "https://jsonrpc.imversed.network", + "https://ws-jsonrpc.imversed.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Imversed Token", + "symbol": "IMV", + "decimals": 18 + }, + "infoURL": "https://imversed.com", + "shortName": "imversed", + "chainId": 5555555, + "networkId": 5555555, + "icon": "imversed", + "explorers": [ + { + "name": "Imversed EVM explorer (Blockscout)", + "url": "https://txe.imversed.network", + "icon": "imversed", + "standard": "EIP3091" + }, + { + "name": "Imversed Cosmos Explorer (Big Dipper)", + "url": "https://tex-c.imversed.com", + "icon": "imversed", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-5555558.json b/_data/chains/eip155-5555558.json new file mode 100644 index 000000000000..a3bbf38c48c2 --- /dev/null +++ b/_data/chains/eip155-5555558.json @@ -0,0 +1,34 @@ +{ + "name": "Imversed Testnet", + "chain": "Imversed", + "rpc": [ + "https://jsonrpc-test.imversed.network", + "https://ws-jsonrpc-test.imversed.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Imversed Token", + "symbol": "IMV", + "decimals": 18 + }, + "infoURL": "https://imversed.com", + "shortName": "imversed-testnet", + "chainId": 5555558, + "networkId": 5555558, + "slip44": 1, + "icon": "imversed", + "explorers": [ + { + "name": "Imversed EVM Explorer (Blockscout)", + "url": "https://txe-test.imversed.network", + "icon": "imversed", + "standard": "EIP3091" + }, + { + "name": "Imversed Cosmos Explorer (Big Dipper)", + "url": "https://tex-t.imversed.com", + "icon": "imversed", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-55556.json b/_data/chains/eip155-55556.json index 79332b683c42..2c0143d25660 100644 --- a/_data/chains/eip155-55556.json +++ b/_data/chains/eip155-55556.json @@ -2,12 +2,8 @@ "name": "REI Chain Testnet", "chain": "REI", "icon": "reichain", - "rpc": [ - "https://rei-testnet-rpc.moonrhythm.io" - ], - "faucets": [ - "http://kururu.finance/faucet?chainId=55556" - ], + "rpc": ["https://rei-testnet-rpc.moonrhythm.io"], + "faucets": ["http://kururu.finance/faucet?chainId=55556"], "nativeCurrency": { "name": "tRei", "symbol": "tREI", @@ -17,9 +13,12 @@ "shortName": "trei", "chainId": 55556, "networkId": 55556, - "explorers": [{ - "name": "reiscan", - "url": "https://testnet.reiscan.com", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "reiscan", + "url": "https://testnet.reiscan.com", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-555666.json b/_data/chains/eip155-555666.json new file mode 100644 index 000000000000..dbb1ba596228 --- /dev/null +++ b/_data/chains/eip155-555666.json @@ -0,0 +1,27 @@ +{ + "name": "Eclipse Testnet", + "chain": "ECLIPSE", + "rpc": ["https://subnets.avax.network/eclipsecha/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Eclipse", + "symbol": "ECLPS", + "decimals": 18 + }, + "infoURL": "http://eclipsenet.io", + "shortName": "eclipset", + "chainId": 555666, + "networkId": 555666, + "explorers": [ + { + "name": "ECLIPSE Explorer", + "url": "https://subnets-test.avax.network/eclipsecha", + "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-5589.json b/_data/chains/eip155-5589.json new file mode 100644 index 000000000000..06f196756fbf --- /dev/null +++ b/_data/chains/eip155-5589.json @@ -0,0 +1,18 @@ +{ + "name": "Jamton", + "chain": "Jamton", + "rpc": ["https://rpc.jamton.network/"], + "faucets": [], + "nativeCurrency": { + "name": "DOTON", + "symbol": "DOTON", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://app.jamton.network/", + "shortName": "jamton", + "chainId": 5589, + "networkId": 5589, + "icon": "jamton", + "explorers": [] +} diff --git a/_data/chains/eip155-55930.json b/_data/chains/eip155-55930.json new file mode 100644 index 000000000000..daa68854aff2 --- /dev/null +++ b/_data/chains/eip155-55930.json @@ -0,0 +1,26 @@ +{ + "name": "DataHaven Mainnet", + "chain": "datahaven", + "icon": "datahaven", + "rpc": [ + "https://services.datahaven-mainnet.network/mainnet", + "wss://services.datahaven-mainnet.network/mainnet" + ], + "faucets": [], + "nativeCurrency": { + "name": "HAVE", + "symbol": "HAVE", + "decimals": 18 + }, + "infoURL": "https://datahaven.xyz", + "shortName": "datahaven", + "chainId": 55930, + "networkId": 55930, + "explorers": [ + { + "name": "Blockscout", + "url": "https://dhscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-55931.json b/_data/chains/eip155-55931.json new file mode 100644 index 000000000000..6730369eaf95 --- /dev/null +++ b/_data/chains/eip155-55931.json @@ -0,0 +1,26 @@ +{ + "name": "DataHaven Testnet", + "chain": "datahaven-testnet", + "icon": "datahaven-testnet", + "rpc": [ + "https://services.datahaven-testnet.network/testnet", + "wss://services.datahaven-testnet.network/testnet" + ], + "faucets": ["https://apps.datahaven.xyz/faucet"], + "nativeCurrency": { + "name": "MOCK", + "symbol": "MOCK", + "decimals": 18 + }, + "infoURL": "https://datahaven.xyz", + "shortName": "datahaven-testnet", + "chainId": 55931, + "networkId": 55931, + "explorers": [ + { + "name": "Blockscout", + "url": "https://testnet.dhscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-56.json b/_data/chains/eip155-56.json index 5efe694602ac..3725777f354a 100644 --- a/_data/chains/eip155-56.json +++ b/_data/chains/eip155-56.json @@ -1,11 +1,11 @@ { - "name": "Binance Smart Chain Mainnet", + "name": "BNB Smart Chain Mainnet", "chain": "BSC", "rpc": [ - "https://bsc-dataseed1.binance.org", - "https://bsc-dataseed2.binance.org", - "https://bsc-dataseed3.binance.org", - "https://bsc-dataseed4.binance.org", + "https://bsc-dataseed1.bnbchain.org", + "https://bsc-dataseed2.bnbchain.org", + "https://bsc-dataseed3.bnbchain.org", + "https://bsc-dataseed4.bnbchain.org", "https://bsc-dataseed1.defibit.io", "https://bsc-dataseed2.defibit.io", "https://bsc-dataseed3.defibit.io", @@ -14,22 +14,32 @@ "https://bsc-dataseed2.ninicoin.io", "https://bsc-dataseed3.ninicoin.io", "https://bsc-dataseed4.ninicoin.io", + "https://bsc-rpc.publicnode.com", + "wss://bsc-rpc.publicnode.com", "wss://bsc-ws-node.nariox.org" ], - "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], + "faucets": [], "nativeCurrency": { - "name": "Binance Chain Native Token", + "name": "BNB Chain Native Token", "symbol": "BNB", "decimals": 18 }, - "infoURL": "https://www.binance.org", + "infoURL": "https://www.bnbchain.org/en", "shortName": "bnb", "chainId": 56, "networkId": 56, "slip44": 714, - "explorers": [{ - "name": "bscscan", - "url": "https://bscscan.com", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "bscscan", + "url": "https://bscscan.com", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://bnb.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-560000.json b/_data/chains/eip155-560000.json new file mode 100644 index 000000000000..dc265197494e --- /dev/null +++ b/_data/chains/eip155-560000.json @@ -0,0 +1,23 @@ +{ + "name": "Hetu Mainnet", + "chain": "HETU", + "rpc": ["https://rpc.va.hetu.org"], + "faucets": [], + "nativeCurrency": { + "name": "HETU", + "symbol": "HETU", + "decimals": 18 + }, + "infoURL": "https://hetu.org", + "shortName": "HETU", + "chainId": 560000, + "networkId": 560000, + "explorers": [ + { + "name": "Hetu Mainnet Scan", + "url": "https://scan.v1.hetu.org", + "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-56026.json b/_data/chains/eip155-56026.json new file mode 100644 index 000000000000..faa0c76e83ac --- /dev/null +++ b/_data/chains/eip155-56026.json @@ -0,0 +1,24 @@ +{ + "name": "Lambda Chain Mainnet", + "chain": "Lambda Chain", + "rpc": ["https://nrpc.lambda.im/"], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lambda.im", + "shortName": "lambda", + "chainId": 56026, + "networkId": 56026, + "slip44": 1, + "icon": "lambda-chain", + "explorers": [ + { + "name": "Lambda Chain Mainnet Explorer", + "url": "https://scan.lambda.im", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5611.json b/_data/chains/eip155-5611.json new file mode 100644 index 000000000000..f76a72aae960 --- /dev/null +++ b/_data/chains/eip155-5611.json @@ -0,0 +1,37 @@ +{ + "name": "opBNB Testnet", + "chain": "opBNB", + "icon": "bnbchain", + "rpc": [ + "https://opbnb-testnet-rpc.bnbchain.org", + "https://opbnb-testnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3", + "wss://opbnb-testnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3", + "https://opbnb-testnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", + "wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", + "https://opbnb-testnet-rpc.publicnode.com", + "wss://opbnb-testnet-rpc.publicnode.com" + ], + "faucets": ["https://testnet.bnbchain.org/faucet-smart"], + "nativeCurrency": { + "name": "BNB Chain Native Token", + "symbol": "tBNB", + "decimals": 18 + }, + "infoURL": "https://opbnb.bnbchain.org/en", + "shortName": "obnbt", + "chainId": 5611, + "networkId": 5611, + "slip44": 1, + "explorers": [ + { + "name": "bscscan-opbnb-testnet", + "url": "https://opbnb-testnet.bscscan.com", + "standard": "EIP3091" + }, + { + "name": "opbnbscan", + "url": "https://opbnbscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5615.json b/_data/chains/eip155-5615.json new file mode 100644 index 000000000000..68a08d0e64cf --- /dev/null +++ b/_data/chains/eip155-5615.json @@ -0,0 +1,23 @@ +{ + "name": "Arcturus Testneet", + "chain": "Arcturus", + "rpc": ["https://rpc-testnet.arcturuschain.io/"], + "faucets": ["https://faucet.arcturuschain.io"], + "nativeCurrency": { + "name": "tARC", + "symbol": "tARC", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://arcturuschain.io", + "shortName": "arcturus-testnet", + "chainId": 5615, + "networkId": 5615, + "explorers": [ + { + "name": "explorer-arcturus-testnet", + "url": "https://testnet.arcscan.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5616.json b/_data/chains/eip155-5616.json new file mode 100644 index 000000000000..e28f6f4434f1 --- /dev/null +++ b/_data/chains/eip155-5616.json @@ -0,0 +1,16 @@ +{ + "name": "Arcturus Chain Testnet", + "chain": "ARCTURUS", + "rpc": ["http://185.99.196.3:8545"], + "faucets": [], + "nativeCurrency": { + "name": "Test Arct", + "symbol": "tARCT", + "decimals": 18 + }, + "infoURL": "https://arcturuschain.io", + "shortName": "ARCT", + "chainId": 5616, + "networkId": 5616, + "slip44": 1 +} diff --git a/_data/chains/eip155-56288.json b/_data/chains/eip155-56288.json new file mode 100644 index 000000000000..020b1dca862a --- /dev/null +++ b/_data/chains/eip155-56288.json @@ -0,0 +1,38 @@ +{ + "name": "Boba BNB Mainnet", + "chain": "Boba BNB Mainnet", + "rpc": [ + "https://bnb.boba.network", + "https://boba-bnb.gateway.tenderly.co/", + "https://gateway.tenderly.co/public/boba-bnb", + "https://replica.bnb.boba.network", + "wss://boba-bnb.gateway.tenderly.co/", + "wss://gateway.tenderly.co/public/boba-bnb" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaBnb", + "chainId": 56288, + "networkId": 56288, + "explorers": [ + { + "name": "Boba BNB block explorer", + "url": "https://bobascan.com", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-56", + "bridges": [ + { + "url": "https://gateway.boba.network" + } + ] + } +} diff --git a/_data/chains/eip155-56400.json b/_data/chains/eip155-56400.json new file mode 100644 index 000000000000..e18be54a81c3 --- /dev/null +++ b/_data/chains/eip155-56400.json @@ -0,0 +1,23 @@ +{ + "name": "Testnet Zeroone Subnet", + "chain": "TESTNETZER", + "rpc": ["https://subnets.avax.network/testnetzer/testnet/rpc"], + "features": [{ "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 + }, + "infoURL": "https://zeroone.art/", + "shortName": "testnetzer", + "chainId": 56400, + "networkId": 56400, + "explorers": [ + { + "name": "TESTNETZER Explorer", + "url": "https://subnets-test.avax.network/testnetzer", + "standard": "EIP3091" + } + ] +} 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-5656.json b/_data/chains/eip155-5656.json new file mode 100644 index 000000000000..cb1da8368aab --- /dev/null +++ b/_data/chains/eip155-5656.json @@ -0,0 +1,26 @@ +{ + "name": "QIE Blockchain", + "chain": "QIE", + "icon": "qie", + "rpc": [ + "https://rpc-main1.qiblockchain.online/", + "https://rpc-main2.qiblockchain.online/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QIE Blockchain", + "symbol": "QIE", + "decimals": 18 + }, + "infoURL": "https://qiblockchain.online/", + "shortName": "QIE", + "chainId": 5656, + "networkId": 5656, + "explorers": [ + { + "name": "QIE Explorer", + "url": "https://mainnet.qiblockchain.online", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-567.json b/_data/chains/eip155-567.json new file mode 100644 index 000000000000..e3aa617caf57 --- /dev/null +++ b/_data/chains/eip155-567.json @@ -0,0 +1,28 @@ +{ + "name": "Validium Network", + "chain": "Validium Network Testnet", + "rpc": ["https://testnet.l2.rpc.validium.network"], + "nativeCurrency": { + "name": "Validium", + "symbol": "VLDM", + "decimals": 18 + }, + "faucets": ["https://testnet.faucet.validium.network"], + "infoURL": "https://www.validium.network", + "shortName": "validium-testnet", + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://testnet.bridge.validium.network/bridge" }] + }, + "status": "active", + "chainId": 567, + "networkId": 567, + "explorers": [ + { + "name": "Validium Network Testnet Block Explorer", + "url": "https://testnet.explorer.validium.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-5675.json b/_data/chains/eip155-5675.json new file mode 100644 index 000000000000..0a7a746ea647 --- /dev/null +++ b/_data/chains/eip155-5675.json @@ -0,0 +1,24 @@ +{ + "name": "Filenova Testnet", + "chain": "Filenova", + "rpc": ["https://rpctest.filenova.org"], + "faucets": [], + "nativeCurrency": { + "name": "Test Filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "infoURL": "https://filenova.org", + "shortName": "tfilenova", + "chainId": 5675, + "networkId": 5675, + "icon": "filenova", + "explorers": [ + { + "name": "filenova testnet explorer", + "url": "https://scantest.filenova.org", + "icon": "filenova", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-5678.json b/_data/chains/eip155-5678.json new file mode 100644 index 000000000000..8bec1515663b --- /dev/null +++ b/_data/chains/eip155-5678.json @@ -0,0 +1,25 @@ +{ + "name": "Tanssi Demo", + "chain": "TANGO", + "rpc": [ + "https://services.tanssi-testnet.network/dancelight-2001", + "wss://services.tanssi-testnet.network/dancelight-2001" + ], + "faucets": ["https://apps.tanssi.network/demo"], + "nativeCurrency": { + "name": "TANGO", + "symbol": "TANGO", + "decimals": 18 + }, + "infoURL": "https://docs.tanssi.network/builders/tanssi-network/testnet/demo-evm-network/", + "shortName": "tango", + "chainId": 5678, + "networkId": 5678, + "explorers": [ + { + "name": "BlockScout", + "url": "https://dancelight-2001-blockscout.tanssi-chains.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-56789.json b/_data/chains/eip155-56789.json new file mode 100644 index 000000000000..58c15e4b1d35 --- /dev/null +++ b/_data/chains/eip155-56789.json @@ -0,0 +1,23 @@ +{ + "name": "VELO Labs Mainnet", + "chain": "NOVA chain", + "rpc": ["https://nova.velo.org"], + "faucets": ["https://nova-faucet.velo.org"], + "nativeCurrency": { + "name": "Nova", + "symbol": "NOVA", + "decimals": 18 + }, + "infoURL": "https://velo.org", + "shortName": "VELO", + "chainId": 56789, + "networkId": 56789, + "icon": "novachain", + "explorers": [ + { + "name": "novascan", + "url": "https://novascan.velo.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-56797.json b/_data/chains/eip155-56797.json new file mode 100644 index 000000000000..83346b153729 --- /dev/null +++ b/_data/chains/eip155-56797.json @@ -0,0 +1,25 @@ +{ + "name": "DOID Testnet", + "chain": "DOID", + "rpc": ["https://rpc.testnet.doid.tech"], + "faucets": [], + "nativeCurrency": { + "name": "DOID", + "symbol": "DOID", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://doid.tech", + "shortName": "doidTestnet", + "chainId": 56797, + "networkId": 56797, + "icon": "doid", + "explorers": [ + { + "name": "DOID Testnet Scan", + "url": "https://scan.testnet.doid.tech", + "icon": "doid", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-568.json b/_data/chains/eip155-568.json new file mode 100644 index 000000000000..29541d8f0a7f --- /dev/null +++ b/_data/chains/eip155-568.json @@ -0,0 +1,24 @@ +{ + "name": "Dogechain Testnet", + "chain": "DC", + "icon": "dogechain", + "rpc": ["https://rpc-testnet.dogechain.dog"], + "faucets": ["https://faucet.dogechain.dog"], + "nativeCurrency": { + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 + }, + "infoURL": "https://dogechain.dog", + "shortName": "dct", + "chainId": 568, + "networkId": 568, + "slip44": 1, + "explorers": [ + { + "name": "dogechain testnet explorer", + "url": "https://explorer-testnet.dogechain.dog", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-57.json b/_data/chains/eip155-57.json index ffe22827e19f..e59c0993355d 100644 --- a/_data/chains/eip155-57.json +++ b/_data/chains/eip155-57.json @@ -3,7 +3,12 @@ "chain": "SYS", "rpc": [ "https://rpc.syscoin.org", - "wss://rpc.syscoin.org/wss" + "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" ], "faucets": ["https://faucet.syscoin.org"], "nativeCurrency": { diff --git a/_data/chains/eip155-570.json b/_data/chains/eip155-570.json new file mode 100644 index 000000000000..d62e9df2b825 --- /dev/null +++ b/_data/chains/eip155-570.json @@ -0,0 +1,26 @@ +{ + "name": "Rollux Mainnet", + "chain": "SYS", + "rpc": [ + "https://rpc.rollux.com", + "wss://rpc.rollux.com/wss", + "https://rpc.ankr.com/rollux" + ], + "faucets": ["https://rollux.id/faucet"], + "nativeCurrency": { + "name": "Syscoin", + "symbol": "SYS", + "decimals": 18 + }, + "infoURL": "https://rollux.com", + "shortName": "sys-rollux", + "chainId": 570, + "networkId": 570, + "explorers": [ + { + "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 063b3b2bc60e..5cdc67ef1714 100644 --- a/_data/chains/eip155-5700.json +++ b/_data/chains/eip155-5700.json @@ -3,7 +3,9 @@ "chain": "SYS", "rpc": [ "https://rpc.tanenbaum.io", - "wss://rpc.tanenbaum.io/wss" + "wss://rpc.tanenbaum.io/wss", + "https://syscoin-tanenbaum-evm.publicnode.com", + "wss://syscoin-tanenbaum-evm.publicnode.com" ], "faucets": ["https://faucet.tanenbaum.io"], "nativeCurrency": { @@ -15,10 +17,11 @@ "shortName": "tsys", "chainId": 5700, "networkId": 5700, + "slip44": 1, "explorers": [ { "name": "Syscoin Testnet Block Explorer", - "url": "https://tanenbaum.io", + "url": "https://explorer.tanenbaum.io", "standard": "EIP3091" } ] diff --git a/_data/chains/eip155-57000.json b/_data/chains/eip155-57000.json new file mode 100644 index 000000000000..1e50a135e13f --- /dev/null +++ b/_data/chains/eip155-57000.json @@ -0,0 +1,29 @@ +{ + "name": "Rollux Testnet", + "chain": "SYS", + "rpc": [ + "https://rpc-tanenbaum.rollux.com", + "https://rpc.ankr.com/rollux_testnet/${ANKR_API_KEY}", + "wss://rpc-tanenbaum.rollux.com/wss", + "https://rollux.rpc.tanenbaum.io", + "wss://rollux.rpc.tanenbaum.io/wss" + ], + "faucets": ["https://rollux.id/faucetapp"], + "nativeCurrency": { + "name": "Testnet Syscoin", + "symbol": "TSYS", + "decimals": 18 + }, + "infoURL": "https://rollux.com", + "shortName": "tsys-rollux", + "chainId": 57000, + "networkId": 57000, + "slip44": 1, + "explorers": [ + { + "name": "Rollux Testnet Explorer", + "url": "https://rollux.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-571.json b/_data/chains/eip155-571.json new file mode 100644 index 000000000000..19b80ececf82 --- /dev/null +++ b/_data/chains/eip155-571.json @@ -0,0 +1,25 @@ +{ + "name": "MetaChain Mainnet", + "chain": "MTC", + "icon": "metachain", + "rpc": ["https://rpc.metatime.com"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Metatime Coin", + "symbol": "MTC", + "decimals": 18 + }, + "infoURL": "https://metatime.com/en", + "shortName": "metatime", + "chainId": 571, + "networkId": 571, + "slip44": 571, + "explorers": [ + { + "name": "MetaExplorer", + "url": "https://explorer.metatime.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5729.json b/_data/chains/eip155-5729.json new file mode 100644 index 000000000000..9cf3a6425765 --- /dev/null +++ b/_data/chains/eip155-5729.json @@ -0,0 +1,24 @@ +{ + "name": "Hika Network Testnet", + "title": "Hika Network Testnet", + "chain": "HIK", + "icon": "hik", + "rpc": ["https://rpc-testnet.hika.network/"], + "faucets": [], + "nativeCurrency": { + "name": "Hik Token", + "symbol": "HIK", + "decimals": 18 + }, + "infoURL": "https://hika.network/", + "shortName": "hik", + "chainId": 5729, + "networkId": 5729, + "explorers": [ + { + "name": "Hika Network Testnet Explorer", + "url": "https://scan-testnet.hika.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-5734951.json b/_data/chains/eip155-5734951.json new file mode 100644 index 000000000000..d418fa7d1bf6 --- /dev/null +++ b/_data/chains/eip155-5734951.json @@ -0,0 +1,33 @@ +{ + "name": "Jovay Mainnet", + "chain": "ETH", + "status": "active", + "rpc": [ + "https://rpc.jovay.io", + "https://api.zan.top/node/v1/jovay/mainnet/${ZAN_API_KEY}", + "wss://api.zan.top/node/ws/v1/jovay/mainnet/${ZAN_API_KEY}" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://jovay.io", + "shortName": "jovay", + "chainId": 5734951, + "networkId": 5734951, + "icon": "jovay", + "explorers": [ + { + "name": "Jovay Explorer", + "url": "https://explorer.jovay.io/l2", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [] + } +} 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-5758.json b/_data/chains/eip155-5758.json new file mode 100644 index 000000000000..eda1c1d24b27 --- /dev/null +++ b/_data/chains/eip155-5758.json @@ -0,0 +1,24 @@ +{ + "name": "SatoshiChain Testnet", + "chain": "SATS", + "icon": "satoshichain", + "rpc": ["https://testnet-rpc.satoshichain.io"], + "faucets": ["https://faucet.satoshichain.io"], + "nativeCurrency": { + "name": "SatoshiChain Coin", + "symbol": "SATS", + "decimals": 18 + }, + "infoURL": "https://satoshichain.net", + "shortName": "satst", + "chainId": 5758, + "networkId": 5758, + "slip44": 1, + "explorers": [ + { + "name": "SatoshiChain Testnet Explorer", + "url": "https://testnet.satoshiscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5777.json b/_data/chains/eip155-5777.json index d37a28c4e442..482644c30a11 100644 --- a/_data/chains/eip155-5777.json +++ b/_data/chains/eip155-5777.json @@ -1,26 +1,19 @@ { - "name": "Digest Swarm Chain", - "chain": "DSC", - "icon": "swarmchain", - "rpc": [ - "https://rpc.digestgroup.ltd" - ], + "name": "Ganache", + "title": "Ganache GUI Ethereum Testnet", + "chain": "ETH", + "icon": "ganache", + "rpc": ["https://127.0.0.1:7545"], "faucets": [], "nativeCurrency": { - "name": "DigestCoin", - "symbol": "DGCC", + "name": "Ganache Test Ether", + "symbol": "ETH", "decimals": 18 }, - "infoURL": "https://digestgroup.ltd", - "shortName": "dgcc", + "infoURL": "https://trufflesuite.com/ganache/", + "shortName": "ggui", "chainId": 5777, "networkId": 5777, - "explorers": [ - { - "name": "swarmexplorer", - "url": "https://explorer.digestgroup.ltd", - "standard": "EIP3091" - } - ] + "slip44": 1, + "explorers": [] } - \ No newline at end of file diff --git a/_data/chains/eip155-579.json b/_data/chains/eip155-579.json new file mode 100644 index 000000000000..7bf8460493fb --- /dev/null +++ b/_data/chains/eip155-579.json @@ -0,0 +1,24 @@ +{ + "name": "Filenova Mainnet", + "chain": "Filenova", + "rpc": ["https://rpc.filenova.org"], + "faucets": [], + "nativeCurrency": { + "name": "Filecoin", + "symbol": "FIL", + "decimals": 18 + }, + "infoURL": "https://filenova.org", + "shortName": "filenova", + "chainId": 579, + "networkId": 579, + "icon": "filenova", + "explorers": [ + { + "name": "filenova explorer", + "url": "https://scan.filenova.org", + "icon": "filenova", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-58.json b/_data/chains/eip155-58.json index fc081b157523..98c9184f5356 100644 --- a/_data/chains/eip155-58.json +++ b/_data/chains/eip155-58.json @@ -1,6 +1,7 @@ { "name": "Ontology Mainnet", "chain": "Ontology", + "icon": "ontology", "rpc": [ "http://dappnode1.ont.io:20339", "http://dappnode2.ont.io:20339", @@ -11,15 +12,14 @@ "https://dappnode3.ont.io:10339", "https://dappnode4.ont.io:10339" ], - "faucets": [ - ], + "faucets": [], "nativeCurrency": { "name": "ONG", "symbol": "ONG", "decimals": 18 }, "infoURL": "https://ont.io/", - "shortName": "Ontology Mainnet", + "shortName": "OntologyMainnet", "chainId": 58, "networkId": 58, "explorers": [ diff --git a/_data/chains/eip155-58008.json b/_data/chains/eip155-58008.json new file mode 100644 index 000000000000..8def2d085bb8 --- /dev/null +++ b/_data/chains/eip155-58008.json @@ -0,0 +1,30 @@ +{ + "name": "Sepolia PGN (Public Goods Network)", + "chain": "ETH", + "rpc": ["https://sepolia.publicgoods.network"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://publicgoods.network/", + "shortName": "sepPGN", + "chainId": 58008, + "networkId": 58008, + "icon": "publicGoodsNetwork", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.sepolia.publicgoods.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://pgn-bridge.vercel.app/bridge" }] + } +} diff --git a/_data/chains/eip155-5845.json b/_data/chains/eip155-5845.json new file mode 100644 index 000000000000..29e2f6c1b532 --- /dev/null +++ b/_data/chains/eip155-5845.json @@ -0,0 +1,24 @@ +{ + "name": "Tangle", + "chain": "Tangle", + "rpc": ["https://rpc.tangle.tools", "wss://rpc.tangle.tools"], + "faucets": [], + "nativeCurrency": { + "name": "Tangle", + "symbol": "TNT", + "decimals": 18 + }, + "infoURL": "https://docs.tangle.tools", + "shortName": "tangle", + "chainId": 5845, + "networkId": 5845, + "icon": "tangle", + "explorers": [ + { + "name": "Tangle EVM Explorer", + "url": "https://explorer.tangle.tools", + "standard": "EIP3091", + "icon": "tangle" + } + ] +} diff --git a/_data/chains/eip155-5851.json b/_data/chains/eip155-5851.json index a5611ebab596..e5cd0069250b 100644 --- a/_data/chains/eip155-5851.json +++ b/_data/chains/eip155-5851.json @@ -1,6 +1,7 @@ { "name": "Ontology Testnet", "chain": "Ontology", + "icon": "ontology", "rpc": [ "http://polaris1.ont.io:20339", "http://polaris2.ont.io:20339", @@ -11,21 +12,22 @@ "https://polaris3.ont.io:10339", "https://polaris4.ont.io:10339" ], - "faucets": [ - "https://developer.ont.io/" - ], + "faucets": ["https://developer.ont.io/"], "nativeCurrency": { "name": "ONG", "symbol": "ONG", "decimals": 18 }, "infoURL": "https://ont.io/", - "shortName": "Ontology Testnet", + "shortName": "OntologyTestnet", "chainId": 5851, "networkId": 5851, - "explorers": [{ - "name": "explorer", - "url": "https://explorer.ont.io/testnet", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.ont.io/testnet", + "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-5869.json b/_data/chains/eip155-5869.json index 8a92eac18373..50188179b2bf 100644 --- a/_data/chains/eip155-5869.json +++ b/_data/chains/eip155-5869.json @@ -1,10 +1,7 @@ { "name": "Wegochain Rubidium Mainnet", "chain": "RBD", - "rpc": [ - "https://proxy.wegochain.io", - "http://wallet.wegochain.io:7764" - ], + "rpc": ["https://proxy.wegochain.io", "http://wallet.wegochain.io:7764"], "faucets": [], "nativeCurrency": { "name": "Rubid", @@ -15,9 +12,11 @@ "shortName": "rbd", "chainId": 5869, "networkId": 5869, - "explorers": [{ - "name": "wegoscan2", - "url": "https://scan2.wegochain.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "wegoscan2", + "url": "https://scan2.wegochain.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-588.json b/_data/chains/eip155-588.json index 3548d4400373..14abbcbe3efa 100644 --- a/_data/chains/eip155-588.json +++ b/_data/chains/eip155-588.json @@ -12,6 +12,7 @@ "shortName": "metis-stardust", "chainId": 588, "networkId": 588, + "slip44": 1, "explorers": [ { "name": "blockscout", @@ -23,5 +24,6 @@ "type": "L2", "chain": "eip155-4", "bridges": [{ "url": "https://bridge.metis.io" }] - } + }, + "status": "deprecated" } diff --git a/_data/chains/eip155-5887.json b/_data/chains/eip155-5887.json new file mode 100644 index 000000000000..7d0379cce468 --- /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": "MANTRA", + "symbol": "MANTRA", + "decimals": 18 + }, + "infoURL": "https://mantrachain.io", + "shortName": "dukong", + "chainId": 5887, + "networkId": 5887, + "slip44": 1, + "icon": "mantra", + "explorers": [ + { + "name": "Dukong Explorer", + "url": "http://mantrascan.io/dukong", + "standard": "none", + "icon": "mantra" + } + ] +} 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-59.json b/_data/chains/eip155-59.json index b5a98f31212c..e4a152e9b4d5 100644 --- a/_data/chains/eip155-59.json +++ b/_data/chains/eip155-59.json @@ -1,23 +1,17 @@ { - "name": "EOS Mainnet", + "name": "EOS EVM Legacy", "chain": "EOS", - "rpc": [ - "https://api.eosargentina.io" - ], - "faucets": [ - ], + "rpc": ["https://api.eosargentina.io"], + "faucets": [], "nativeCurrency": { "name": "EOS", "symbol": "EOS", "decimals": 18 }, - "infoURL": "https://eoscommunity.org/", - "shortName": "EOS Mainnet", + "infoURL": "https://eosargentina.io", + "shortName": "eos-legacy", "chainId": 59, "networkId": 59, - "explorers": [{ - "name": "bloks", - "url": "https://bloks.eosargentina.io", - "standard": "EIP3091" - }] + "explorers": [], + "status": "deprecated" } diff --git a/_data/chains/eip155-59140.json b/_data/chains/eip155-59140.json new file mode 100644 index 000000000000..7925b2612306 --- /dev/null +++ b/_data/chains/eip155-59140.json @@ -0,0 +1,47 @@ +{ + "name": "Linea Goerli", + "title": "Linea Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.goerli.linea.build", + "wss://rpc.goerli.linea.build", + "https://linea-goerli.infura.io/v3/${INFURA_API_KEY}", + "wss://linea-goerli.infura.io/ws/v3/${INFURA_API_KEY}" + ], + "faucets": ["https://faucetlink.to/goerli"], + "nativeCurrency": { + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://linea.build", + "shortName": "linea-goerli", + "chainId": 59140, + "networkId": 59140, + "slip44": 1, + "icon": "linea", + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://goerli.hop.exchange/#/send?token=ETH&sourceNetwork=ethereum&destNetwork=linea" + } + ] + }, + "explorers": [ + { + "name": "Etherscan", + "url": "https://goerli.lineascan.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "Blockscout", + "url": "https://explorer.goerli.linea.build", + "standard": "EIP3091", + "icon": "linea" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-59141.json b/_data/chains/eip155-59141.json new file mode 100644 index 000000000000..2e63c4b3751c --- /dev/null +++ b/_data/chains/eip155-59141.json @@ -0,0 +1,49 @@ +{ + "name": "Linea Sepolia", + "title": "Linea Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "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}", + "https://linea-sepolia-rpc.publicnode.com", + "wss://linea-sepolia-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://linea.build", + "shortName": "linea-sepolia", + "chainId": 59141, + "networkId": 59141, + "slip44": 1, + "icon": "linea", + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.linea.build/" + } + ] + }, + "explorers": [ + { + "name": "Etherscan", + "url": "https://sepolia.lineascan.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "Blockscout", + "url": "https://explorer.sepolia.linea.build", + "standard": "EIP3091", + "icon": "linea" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-59144.json b/_data/chains/eip155-59144.json new file mode 100644 index 000000000000..08ae917bcad2 --- /dev/null +++ b/_data/chains/eip155-59144.json @@ -0,0 +1,54 @@ +{ + "name": "Linea", + "title": "Linea Mainnet", + "chain": "ETH", + "rpc": [ + "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}", + "https://linea-rpc.publicnode.com", + "wss://linea-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://linea.build", + "shortName": "linea", + "chainId": 59144, + "networkId": 59144, + "icon": "linea", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.linea.build" + } + ] + }, + "explorers": [ + { + "name": "Etherscan", + "url": "https://lineascan.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "Blockscout", + "url": "https://explorer.linea.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "L2scan", + "url": "https://linea.l2scan.co", + "standard": "EIP3091", + "icon": "linea" + } + ], + "status": "active" +} diff --git a/_data/chains/eip155-592.json b/_data/chains/eip155-592.json index 4b93c5157fe8..4feea06818d9 100644 --- a/_data/chains/eip155-592.json +++ b/_data/chains/eip155-592.json @@ -19,6 +19,12 @@ "url": "https://astar.subscan.io", "standard": "none", "icon": "subscan" + }, + { + "name": "blockscout", + "url": "https://blockscout.com/astar", + "icon": "blockscout", + "standard": "EIP3091" } ] } diff --git a/_data/chains/eip155-595.json b/_data/chains/eip155-595.json index 0b23b5c360ea..461634a88c7f 100644 --- a/_data/chains/eip155-595.json +++ b/_data/chains/eip155-595.json @@ -1,7 +1,11 @@ { - "name": "Acala Mandala Testnet", + "name": "Acala Mandala Testnet TC9", "chain": "mACA", - "rpc": [], + "rpc": [ + "https://eth-rpc-tc9.aca-staging.network", + "wss://eth-rpc-tc9.aca-staging.network" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": [], "nativeCurrency": { "name": "Acala Mandala Token", @@ -11,5 +15,13 @@ "infoURL": "https://acala.network", "shortName": "maca", "chainId": 595, - "networkId": 595 + "networkId": 595, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.mandala.aca-staging.network", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-596.json b/_data/chains/eip155-596.json index d3d7edc6fc00..e7e2c733cec9 100644 --- a/_data/chains/eip155-596.json +++ b/_data/chains/eip155-596.json @@ -1,7 +1,10 @@ { "name": "Karura Network Testnet", "chain": "KAR", - "rpc": [], + "rpc": [ + "https://eth-rpc-karura-testnet.aca-staging.network", + "wss://eth-rpc-karura-testnet.aca-staging.network" + ], "faucets": [], "nativeCurrency": { "name": "Karura Token", @@ -12,5 +15,12 @@ "shortName": "tkar", "chainId": 596, "networkId": 596, - "slip44": 596 + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.karura-testnet.aca-staging.network", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-597.json b/_data/chains/eip155-597.json index b7d4568e55c1..e3c2c5ab33aa 100644 --- a/_data/chains/eip155-597.json +++ b/_data/chains/eip155-597.json @@ -1,7 +1,10 @@ { "name": "Acala Network Testnet", "chain": "ACA", - "rpc": [], + "rpc": [ + "https://eth-rpc-acala-testnet.aca-staging.network", + "wss://eth-rpc-acala-testnet.aca-staging.network" + ], "faucets": [], "nativeCurrency": { "name": "Acala Token", @@ -12,5 +15,12 @@ "shortName": "taca", "chainId": 597, "networkId": 597, - "slip44": 597 + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.acala-dev.aca-dev.network", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-599.json b/_data/chains/eip155-599.json new file mode 100644 index 000000000000..10234a294c2c --- /dev/null +++ b/_data/chains/eip155-599.json @@ -0,0 +1,29 @@ +{ + "name": "Metis Goerli Testnet", + "chain": "ETH", + "rpc": ["https://goerli.gateway.metisdevops.link"], + "faucets": ["https://goerli.faucet.metisdevops.link"], + "nativeCurrency": { + "name": "Goerli Metis", + "symbol": "METIS", + "decimals": 18 + }, + "infoURL": "https://www.metis.io", + "shortName": "metis-goerli", + "chainId": 599, + "networkId": 599, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://goerli.explorer.metisdevops.link", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-4", + "bridges": [{ "url": "https://testnet-bridge.metis.io" }] + }, + "status": "deprecated" +} 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-59971.json b/_data/chains/eip155-59971.json new file mode 100644 index 000000000000..6251d58ef23e --- /dev/null +++ b/_data/chains/eip155-59971.json @@ -0,0 +1,24 @@ +{ + "name": "Genesys Code Mainnet", + "chain": "GCODE", + "rpc": ["https://mainnet.genesyscode.io/"], + "faucets": [], + "nativeCurrency": { + "name": "GenesysCode", + "symbol": "GCODE", + "decimals": 18 + }, + "infoURL": "https://genesyscode.io", + "shortName": "gcode", + "chainId": 59971, + "networkId": 59971, + "icon": "genesyscode", + "explorers": [ + { + "name": "Genesys Scan", + "url": "https://genesysscan.io", + "icon": "genesyscode", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-6.json b/_data/chains/eip155-6.json index 3025c81799cf..462f062dd836 100644 --- a/_data/chains/eip155-6.json +++ b/_data/chains/eip155-6.json @@ -1,17 +1,19 @@ { - "name": "Ethereum Classic Testnet Kotti", + "name": "Kotti Testnet", + "title": "Ethereum Classic Kotti Testnet", + "status": "deprecated", "chain": "ETC", - "rpc": [ - "https://www.ethercluster.com/kotti" - ], + "icon": "ethereumclassictestnet", + "rpc": [], "faucets": [], "nativeCurrency": { "name": "Kotti Ether", "symbol": "KOT", "decimals": 18 }, - "infoURL": "https://explorer.jade.builders/?network=kotti", + "infoURL": "https://ethereumclassic.org/development/testnets", "shortName": "kot", "chainId": 6, - "networkId": 6 + "networkId": 6, + "slip44": 1 } diff --git a/_data/chains/eip155-60.json b/_data/chains/eip155-60.json index dd05bb882aee..36be0d9932a4 100644 --- a/_data/chains/eip155-60.json +++ b/_data/chains/eip155-60.json @@ -1,10 +1,8 @@ { "name": "GoChain", "chain": "GO", - "rpc": [ - "https://rpc.gochain.io" - ], - "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], + "rpc": ["https://rpc.gochain.io"], + "faucets": [], "nativeCurrency": { "name": "GoChain Ether", "symbol": "GO", @@ -15,9 +13,11 @@ "chainId": 60, "networkId": 60, "slip44": 6060, - "explorers": [{ - "name": "GoChain Explorer", - "url": "https://explorer.gochain.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "GoChain Explorer", + "url": "https://explorer.gochain.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-600.json b/_data/chains/eip155-600.json index b3d08784dc73..a79fad497612 100644 --- a/_data/chains/eip155-600.json +++ b/_data/chains/eip155-600.json @@ -1,18 +1,16 @@ { - "name": "Meshnyan testnet", - "chain": "MeshTestChain", - "rpc": [ - ], - "faucets": [ - ], - "nativeCurrency": { - "name": "Meshnyan Testnet Native Token", - "symbol": "MESHT", - "decimals": 18 - }, - "infoURL": "", - "shortName": "mesh-chain-testnet", - "chainId": 600, - "networkId": 600 - } - \ No newline at end of file + "name": "Meshnyan testnet", + "chain": "MeshTestChain", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Meshnyan Testnet Native Token", + "symbol": "MESHT", + "decimals": 18 + }, + "infoURL": "", + "shortName": "mesh-chain-testnet", + "chainId": 600, + "networkId": 600, + "slip44": 1 +} diff --git a/_data/chains/eip155-6000.json b/_data/chains/eip155-6000.json new file mode 100644 index 000000000000..601c72a868a2 --- /dev/null +++ b/_data/chains/eip155-6000.json @@ -0,0 +1,23 @@ +{ + "name": "BounceBit Testnet", + "chain": "BounceBit", + "rpc": ["https://fullnode-testnet.bouncebitapi.com/"], + "faucets": [], + "nativeCurrency": { + "name": "BounceBit", + "symbol": "BB", + "decimals": 18 + }, + "infoURL": "https://bouncebit.io", + "shortName": "bouncebit-testnet", + "chainId": 6000, + "networkId": 6000, + "icon": "bouncebit", + "explorers": [ + { + "name": "BBScan Testnet Explorer", + "url": "https://bbscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-60000.json b/_data/chains/eip155-60000.json index bf9c3bde7d9b..874d36a6a186 100644 --- a/_data/chains/eip155-60000.json +++ b/_data/chains/eip155-60000.json @@ -1,24 +1,23 @@ { - "name": "Thinkium Testnet Chain 0", - "chain": "Thinkium", - "rpc": [ - "https://test.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test0", - "chainId": 60000, - "networkId": 60000, - "explorers": [{ - "name": "thinkiumscan", - "url": "https://test0.thinkiumscan.net", - "standard": "EIP3091" - }] + "name": "Thinkium Testnet Chain 0", + "chain": "Thinkium", + "rpc": ["https://test.thinkiumrpc.net/"], + "faucets": ["https://www.thinkiumdev.net/faucet"], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test0", + "chainId": 60000, + "networkId": 60000, + "slip44": 1, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://test0.thinkiumscan.net", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-60001.json b/_data/chains/eip155-60001.json index cece7c86e491..697fc99b5b9d 100644 --- a/_data/chains/eip155-60001.json +++ b/_data/chains/eip155-60001.json @@ -1,24 +1,23 @@ { - "name": "Thinkium Testnet Chain 1", - "chain": "Thinkium", - "rpc": [ - "https://test1.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test1", - "chainId": 60001, - "networkId": 60001, - "explorers": [{ - "name": "thinkiumscan", - "url": "https://test1.thinkiumscan.net", - "standard": "EIP3091" - }] + "name": "Thinkium Testnet Chain 1", + "chain": "Thinkium", + "rpc": ["https://test1.thinkiumrpc.net/"], + "faucets": ["https://www.thinkiumdev.net/faucet"], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test1", + "chainId": 60001, + "networkId": 60001, + "slip44": 1, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://test1.thinkiumscan.net", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-60002.json b/_data/chains/eip155-60002.json index e8affefc18ec..bd2d5efba19f 100644 --- a/_data/chains/eip155-60002.json +++ b/_data/chains/eip155-60002.json @@ -1,24 +1,23 @@ { - "name": "Thinkium Testnet Chain 2", - "chain": "Thinkium", - "rpc": [ - "https://test2.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test2", - "chainId": 60002, - "networkId": 60002, - "explorers": [{ - "name": "thinkiumscan", - "url": "https://test2.thinkiumscan.net", - "standard": "EIP3091" - }] + "name": "Thinkium Testnet Chain 2", + "chain": "Thinkium", + "rpc": ["https://test2.thinkiumrpc.net/"], + "faucets": ["https://www.thinkiumdev.net/faucet"], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test2", + "chainId": 60002, + "networkId": 60002, + "slip44": 1, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://test2.thinkiumscan.net", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-6001.json b/_data/chains/eip155-6001.json new file mode 100644 index 000000000000..b7d4b1f3fa67 --- /dev/null +++ b/_data/chains/eip155-6001.json @@ -0,0 +1,23 @@ +{ + "name": "BounceBit Mainnet", + "chain": "BounceBit", + "rpc": ["https://fullnode-mainnet.bouncebitapi.com/"], + "faucets": [], + "nativeCurrency": { + "name": "BounceBit", + "symbol": "BB", + "decimals": 18 + }, + "infoURL": "https://bouncebit.io", + "shortName": "bouncebit-mainnet", + "chainId": 6001, + "networkId": 6001, + "icon": "bouncebit", + "explorers": [ + { + "name": "BBScan Mainnet Explorer", + "url": "https://bbscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-601.json b/_data/chains/eip155-601.json new file mode 100644 index 000000000000..b8cf1bc438b7 --- /dev/null +++ b/_data/chains/eip155-601.json @@ -0,0 +1,24 @@ +{ + "name": "Vine Testnet", + "chain": "VINE", + "rpc": ["https://rpc-testnet.vne.network"], + "faucets": ["https://vne.network/rose"], + "nativeCurrency": { + "name": "VINE", + "symbol": "VNE", + "decimals": 18 + }, + "infoURL": "https://www.peer.inc", + "shortName": "VINE", + "chainId": 601, + "networkId": 601, + "icon": "vine", + "explorers": [ + { + "name": "Vine Explorer", + "url": "https://vne.network/rose", + "standard": "none", + "icon": "vine" + } + ] +} diff --git a/_data/chains/eip155-60103.json b/_data/chains/eip155-60103.json index 10aa7dc1036d..9b2976fafc42 100644 --- a/_data/chains/eip155-60103.json +++ b/_data/chains/eip155-60103.json @@ -1,24 +1,23 @@ { - "name": "Thinkium Testnet Chain 103", - "chain": "Thinkium", - "rpc": [ - "https://test103.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test103", - "chainId": 60103, - "networkId": 60103, - "explorers": [{ - "name": "thinkiumscan", - "url": "https://test103.thinkiumscan.net", - "standard": "EIP3091" - }] -} \ No newline at end of file + "name": "Thinkium Testnet Chain 103", + "chain": "Thinkium", + "rpc": ["https://test103.thinkiumrpc.net/"], + "faucets": ["https://www.thinkiumdev.net/faucet"], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test103", + "chainId": 60103, + "networkId": 60103, + "slip44": 1, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://test103.thinkiumscan.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-6022140761023.json b/_data/chains/eip155-6022140761023.json index edad5b1d324e..9e26ed4d51b6 100644 --- a/_data/chains/eip155-6022140761023.json +++ b/_data/chains/eip155-6022140761023.json @@ -1,9 +1,7 @@ { "name": "Molereum Network", "chain": "ETH", - "rpc": [ - "https://molereum.jdubedition.com" - ], + "rpc": ["https://molereum.jdubedition.com"], "faucets": [], "nativeCurrency": { "name": "Molereum Ether", @@ -14,4 +12,4 @@ "shortName": "mole", "chainId": 6022140761023, "networkId": 6022140761023 -} \ No newline at end of file +} diff --git a/_data/chains/eip155-6038361.json b/_data/chains/eip155-6038361.json new file mode 100644 index 000000000000..c7daa9c77519 --- /dev/null +++ b/_data/chains/eip155-6038361.json @@ -0,0 +1,39 @@ +{ + "name": "Astar zKyoto", + "shortName": "azkyt", + "title": "Astar zkEVM Testnet zKyoto", + "chain": "ETH", + "icon": "astarzk", + "rpc": [ + "https://rpc.startale.com/zkyoto", + "https://rpc.zkyoto.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://astar.network", + "chainId": 6038361, + "networkId": 6038361, + "explorers": [ + { + "name": "Blockscout zKyoto explorer", + "url": "https://astar-zkyoto.blockscout.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://portal.astar.network" + }, + { + "url": "https://bridge.gelato.network/bridge/astar-zkyoto" + } + ] + } +} 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-60600.json b/_data/chains/eip155-60600.json new file mode 100644 index 000000000000..c38314d10dfe --- /dev/null +++ b/_data/chains/eip155-60600.json @@ -0,0 +1,25 @@ +{ + "name": "POTOS Testnet", + "chain": "POTOS", + "icon": "potos", + "rpc": ["https://rpc-testnet.potos.hk"], + "faucets": ["https://faucet-testnet.potos.hk"], + "nativeCurrency": { + "name": "POTOS Token", + "symbol": "POT", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://potos.hk", + "shortName": "potos-testnet", + "chainId": 60600, + "networkId": 60600, + "explorers": [ + { + "name": "POTOS Testnet explorer", + "url": "https://scan-testnet.potos.hk", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-60603.json b/_data/chains/eip155-60603.json new file mode 100644 index 000000000000..087b959aa6dc --- /dev/null +++ b/_data/chains/eip155-60603.json @@ -0,0 +1,25 @@ +{ + "name": "POTOS Mainnet", + "chain": "POTOS", + "icon": "potos", + "rpc": ["https://rpc.potos.hk"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "nativeCurrency": { + "name": "POTOS Token", + "symbol": "POT", + "decimals": 18 + }, + "faucets": [], + "infoURL": "https://potos.hk", + "shortName": "potos", + "chainId": 60603, + "networkId": 60603, + "explorers": [ + { + "name": "POTOS Mainnet explorer", + "url": "https://scan.potos.hk", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-6065.json b/_data/chains/eip155-6065.json new file mode 100644 index 000000000000..4753d694386b --- /dev/null +++ b/_data/chains/eip155-6065.json @@ -0,0 +1,25 @@ +{ + "name": "Tres Testnet", + "chain": "TresLeches", + "rpc": ["https://rpc-test.tresleches.finance/"], + "faucets": ["http://faucet.tresleches.finance:8080"], + "nativeCurrency": { + "name": "TRES", + "symbol": "TRES", + "decimals": 18 + }, + "infoURL": "https://treschain.com", + "shortName": "TRESTEST", + "chainId": 6065, + "networkId": 6065, + "slip44": 1, + "icon": "tresleches", + "explorers": [ + { + "name": "treslechesexplorer", + "url": "https://explorer-test.tresleches.finance", + "icon": "treslechesexplorer", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-6066.json b/_data/chains/eip155-6066.json new file mode 100644 index 000000000000..0449b8b68dcb --- /dev/null +++ b/_data/chains/eip155-6066.json @@ -0,0 +1,24 @@ +{ + "name": "Tres Mainnet", + "chain": "TresLeches", + "rpc": ["https://rpc.tresleches.finance/", "https://rpc.treschain.io/"], + "faucets": [], + "nativeCurrency": { + "name": "TRES", + "symbol": "TRES", + "decimals": 18 + }, + "infoURL": "https://treschain.com", + "shortName": "TRESMAIN", + "chainId": 6066, + "networkId": 6066, + "icon": "tresleches", + "explorers": [ + { + "name": "treslechesexplorer", + "url": "https://explorer.tresleches.finance", + "icon": "treslechesexplorer", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-60808.json b/_data/chains/eip155-60808.json new file mode 100644 index 000000000000..6368a6b58a2d --- /dev/null +++ b/_data/chains/eip155-60808.json @@ -0,0 +1,35 @@ +{ + "name": "BOB", + "chain": "ETH", + "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", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://gobob.xyz", + "shortName": "bob", + "chainId": 60808, + "networkId": 60808, + "icon": "bob", + "explorers": [ + { + "name": "bobscout", + "url": "https://explorer.gobob.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "status": "active", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://app.gobob.xyz" }] + } +} 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-61.json b/_data/chains/eip155-61.json index 006fa0b4f9b8..82d37b35e552 100644 --- a/_data/chains/eip155-61.json +++ b/_data/chains/eip155-61.json @@ -1,12 +1,20 @@ { - "name": "Ethereum Classic Mainnet", + "name": "Ethereum Classic", + "title": "Ethereum Classic Mainnet", + "status": "active", "chain": "ETC", + "icon": "ethereumclassic", "rpc": [ - "https://www.ethercluster.com/etc" + "https://etc.rivet.link", + "https://besu-at.etc-network.info", + "https://geth-at.etc-network.info", + "https://etc.etcdesktop.com", + "https://etc.mytokenpocket.vip" ], -"faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/?"], + "features": [{ "name": "EIP155" }], + "faucets": [], "nativeCurrency": { - "name": "Ethereum Classic Ether", + "name": "Ether", "symbol": "ETC", "decimals": 18 }, @@ -15,10 +23,41 @@ "chainId": 61, "networkId": 1, "slip44": 61, - - "explorers": [{ - "name": "blockscout", - "url": "https://blockscout.com/etc/mainnet", - "standard": "none" - }] + "explorers": [ + { + "name": "blockscout-ethereum-classic", + "url": "https://etc.blockscout.com", + "standard": "EIP3091" + }, + { + "name": "etcnetworkinfo-blockscout-ethereum-classic", + "url": "https://explorer-blockscout.etc-network.info", + "standard": "none" + }, + { + "name": "etcnetworkinfo-alethio-ethereum-classic", + "url": "https://explorer-alethio.etc-network.info", + "standard": "none" + }, + { + "name": "etcnetworkinfo-expedition-ethereum-classic", + "url": "https://explorer-expedition.etc-network.info", + "standard": "none" + }, + { + "name": "hebeblock-ethereum-classic", + "url": "https://etcerscan.com", + "standard": "EIP3091" + }, + { + "name": "oklink-ethereum-classic", + "url": "https://www.oklink.com/etc", + "standard": "EIP3091" + }, + { + "name": "tokenview-ethereum-classic", + "url": "https://etc.tokenview.io", + "standard": "EIP3091" + } + ] } 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-6102.json b/_data/chains/eip155-6102.json new file mode 100644 index 000000000000..79407042684c --- /dev/null +++ b/_data/chains/eip155-6102.json @@ -0,0 +1,30 @@ +{ + "name": "Cascadia Testnet", + "chain": "Cascadia", + "rpc": ["https://testnet.cascadia.foundation"], + "faucets": ["https://www.cascadia.foundation/faucet"], + "nativeCurrency": { + "name": "CC", + "symbol": "tCC", + "decimals": 18 + }, + "infoURL": "https://www.cascadia.foundation", + "shortName": "cascadia", + "chainId": 6102, + "networkId": 6102, + "icon": "cascadia", + "explorers": [ + { + "name": "Cascadia EVM Explorer", + "url": "https://explorer.cascadia.foundation", + "standard": "none", + "icon": "cascadia" + }, + { + "name": "Cascadia Cosmos Explorer", + "url": "https://validator.cascadia.foundation", + "standard": "none", + "icon": "cascadia" + } + ] +} 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-6118.json b/_data/chains/eip155-6118.json new file mode 100644 index 000000000000..cd9fa97054c8 --- /dev/null +++ b/_data/chains/eip155-6118.json @@ -0,0 +1,25 @@ +{ + "name": "UPTN Testnet", + "chain": "UPTN", + "icon": "uptn", + "rpc": ["https://node-api.alp.uptn.io/v1/ext/rpc"], + "features": [{ "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "UPTN", + "symbol": "UPTN", + "decimals": 18 + }, + "infoURL": "https://uptn.io", + "shortName": "UPTN-TEST", + "chainId": 6118, + "networkId": 6118, + "slip44": 1, + "explorers": [ + { + "name": "UPTN Testnet Explorer", + "url": "https://testnet.explorer.uptn.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-6119.json b/_data/chains/eip155-6119.json new file mode 100644 index 000000000000..a0e68fd7da67 --- /dev/null +++ b/_data/chains/eip155-6119.json @@ -0,0 +1,24 @@ +{ + "name": "UPTN", + "chain": "UPTN", + "icon": "uptn", + "rpc": ["https://node-api.uptn.io/v1/ext/rpc"], + "features": [{ "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "UPTN", + "symbol": "UPTN", + "decimals": 18 + }, + "infoURL": "https://uptn.io", + "shortName": "UPTN", + "chainId": 6119, + "networkId": 6119, + "explorers": [ + { + "name": "UPTN Explorer", + "url": "https://explorer.uptn.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-612.json b/_data/chains/eip155-612.json new file mode 100644 index 000000000000..53f90159b4d6 --- /dev/null +++ b/_data/chains/eip155-612.json @@ -0,0 +1,23 @@ +{ + "name": "EIOB Mainnet", + "chain": "EIOB", + "icon": "eiob", + "rpc": ["https://rpc.eiob.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "EIOB", + "symbol": "EIOB", + "decimals": 18 + }, + "infoURL": "", + "shortName": "eiob", + "chainId": 612, + "networkId": 612, + "explorers": [ + { + "name": "EIOB Explorer", + "url": "https://explorer.eiob.xyz", + "standard": "none" + } + ] +} 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-614.json b/_data/chains/eip155-614.json new file mode 100644 index 000000000000..f398a00ac013 --- /dev/null +++ b/_data/chains/eip155-614.json @@ -0,0 +1,22 @@ +{ + "name": "Graphlinq Blockchain Mainnet", + "chain": "GLQ Blockchain", + "rpc": ["https://glq-dataseed.graphlinq.io"], + "faucets": [], + "nativeCurrency": { + "name": "GLQ", + "symbol": "GLQ", + "decimals": 18 + }, + "infoURL": "https://graphlinq.io", + "shortName": "glq", + "chainId": 614, + "networkId": 614, + "explorers": [ + { + "name": "GLQ Explorer", + "url": "https://explorer.graphlinq.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-61406.json b/_data/chains/eip155-61406.json new file mode 100644 index 000000000000..0f8e1456e496 --- /dev/null +++ b/_data/chains/eip155-61406.json @@ -0,0 +1,22 @@ +{ + "name": "KaiChain", + "chain": "KaiChain", + "rpc": ["https://mainnet-rpc.kaichain.net"], + "faucets": [], + "nativeCurrency": { + "name": "KaiChain Native Token", + "symbol": "KEC", + "decimals": 18 + }, + "infoURL": "https://kaichain.net", + "shortName": "kec", + "chainId": 61406, + "networkId": 61406, + "explorers": [ + { + "name": "KaiChain Explorer", + "url": "https://explorer.kaichain.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-61717561.json b/_data/chains/eip155-61717561.json index e82f11e4cbfa..37260f920d63 100644 --- a/_data/chains/eip155-61717561.json +++ b/_data/chains/eip155-61717561.json @@ -1,13 +1,8 @@ { "name": "Aquachain", "chain": "AQUA", - "rpc": [ - "https://c.onical.org", - "https://tx.aquacha.in/api" - ], - "faucets": [ - "https://aquacha.in/faucet" - ], + "rpc": ["https://c.onical.org", "https://tx.aquacha.in/api"], + "faucets": ["https://aquacha.in/faucet"], "nativeCurrency": { "name": "Aquachain Ether", "symbol": "AQUA", @@ -18,4 +13,4 @@ "chainId": 61717561, "networkId": 61717561, "slip44": 61717561 -} \ No newline at end of file +} diff --git a/_data/chains/eip155-61800.json b/_data/chains/eip155-61800.json new file mode 100644 index 000000000000..2142e63e3288 --- /dev/null +++ b/_data/chains/eip155-61800.json @@ -0,0 +1,23 @@ +{ + "name": "AxelChain Dev-Net", + "chain": "AXEL", + "rpc": ["https://aium-rpc-dev.viacube.com"], + "faucets": [], + "nativeCurrency": { + "name": "Axelium", + "symbol": "AIUM", + "decimals": 18 + }, + "infoURL": "https://www.axel.org", + "shortName": "aium-dev", + "chainId": 61800, + "networkId": 61800, + "icon": "axelium", + "explorers": [ + { + "name": "AxelChain Dev-Net Explorer", + "url": "https://devexplorer2.viacube.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-61803.json b/_data/chains/eip155-61803.json new file mode 100644 index 000000000000..beb4c197a995 --- /dev/null +++ b/_data/chains/eip155-61803.json @@ -0,0 +1,31 @@ +{ + "name": "Etica Mainnet", + "chain": "Etica Protocol (ETI/EGAZ)", + "icon": "etica", + "rpc": [ + "https://eticamainnet.eticascan.org", + "https://eticamainnet.eticaprotocol.org" + ], + "faucets": ["http://faucet.etica-stats.org/"], + "nativeCurrency": { + "name": "EGAZ", + "symbol": "EGAZ", + "decimals": 18 + }, + "infoURL": "https://eticaprotocol.org", + "shortName": "Etica", + "chainId": 61803, + "networkId": 61803, + "explorers": [ + { + "name": "eticascan", + "url": "https://eticascan.org", + "standard": "EIP3091" + }, + { + "name": "eticastats", + "url": "http://explorer.etica-stats.org", + "standard": "EIP3091" + } + ] +} 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-61916.json b/_data/chains/eip155-61916.json new file mode 100644 index 000000000000..e49f0ec5077d --- /dev/null +++ b/_data/chains/eip155-61916.json @@ -0,0 +1,28 @@ +{ + "name": "DoKEN Super Chain Mainnet", + "chain": "DoKEN Super Chain", + "rpc": [ + "https://sgrpc.doken.dev", + "https://nyrpc.doken.dev", + "https://ukrpc.doken.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "DoKEN", + "symbol": "DKN", + "decimals": 18 + }, + "infoURL": "https://doken.dev/", + "shortName": "DoKEN", + "chainId": 61916, + "networkId": 61916, + "icon": "doken", + "explorers": [ + { + "name": "DSC Scan", + "url": "https://explore.doken.dev", + "icon": "doken", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-62.json b/_data/chains/eip155-62.json index 2e4b927ecd00..864cd764587f 100644 --- a/_data/chains/eip155-62.json +++ b/_data/chains/eip155-62.json @@ -1,15 +1,19 @@ { - "name": "Ethereum Classic Testnet Morden", + "name": "Morden Testnet", + "title": "Ethereum Classic Morden Testnet", + "status": "deprecated", "chain": "ETC", + "icon": "ethereumclassictestnet", "rpc": [], "faucets": [], "nativeCurrency": { - "name": "Ethereum Classic Testnet Ether", + "name": "Morden Ether", "symbol": "TETC", "decimals": 18 }, - "infoURL": "https://ethereumclassic.org", + "infoURL": "https://ethereumclassic.org/development/testnets", "shortName": "tetc", "chainId": 62, - "networkId": 2 -} \ No newline at end of file + "networkId": 2, + "slip44": 1 +} diff --git a/_data/chains/eip155-62049.json b/_data/chains/eip155-62049.json new file mode 100644 index 000000000000..e30145c4f3bb --- /dev/null +++ b/_data/chains/eip155-62049.json @@ -0,0 +1,30 @@ +{ + "name": "OPTOPIA Testnet", + "chain": "ETH", + "rpc": ["https://rpc-testnet.optopia.ai"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP1559" }], + "infoURL": "https://optopia.ai", + "shortName": "OPTOPIA-Testnet", + "chainId": 62049, + "networkId": 62049, + "icon": "optopia", + "explorers": [ + { + "name": "optopia-testnet-scan", + "url": "https://scan-testnet.optopia.ai", + "icon": "optopia", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://bridge-testnet.optopia.ai" }] + } +} diff --git a/_data/chains/eip155-62050.json b/_data/chains/eip155-62050.json new file mode 100644 index 000000000000..eb065738851a --- /dev/null +++ b/_data/chains/eip155-62050.json @@ -0,0 +1,30 @@ +{ + "name": "Optopia Mainnet", + "chain": "ETH", + "rpc": ["https://rpc-mainnet.optopia.ai", "https://rpc-mainnet-2.optopia.ai"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP1559" }], + "infoURL": "https://optopia.ai", + "shortName": "Optopia", + "chainId": 62050, + "networkId": 62050, + "icon": "optopia", + "explorers": [ + { + "name": "optopia-scan", + "url": "https://scan.optopia.ai", + "icon": "optopia", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://bridge.optopia.ai" }] + } +} 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-622277.json b/_data/chains/eip155-622277.json new file mode 100644 index 000000000000..3d5895b83c63 --- /dev/null +++ b/_data/chains/eip155-622277.json @@ -0,0 +1,31 @@ +{ + "name": "Hypra Mainnet", + "chain": "HYP", + "rpc": [ + "https://rpc.hypra.network", + "https://rpc.rethereum.org", + "https://rethereum.rpc.restratagem.com", + "https://rpc.rthcentral.org", + "https://hypra.rpc.thirdweb.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Hypra", + "symbol": "HYP", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.hypra.network", + "shortName": "hyp", + "chainId": 622277, + "networkId": 622277, + "icon": "rethereum", + "explorers": [ + { + "name": "hypra", + "url": "https://explorer.hypra.network", + "icon": "blockscout", + "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-62320.json b/_data/chains/eip155-62320.json index 4f3680f8d114..5b177e840379 100644 --- a/_data/chains/eip155-62320.json +++ b/_data/chains/eip155-62320.json @@ -4,6 +4,8 @@ "shortName": "BKLV", "chain": "CELO", "networkId": 62320, + "slip44": 1, + "status": "deprecated", "nativeCurrency": { "name": "CELO", "symbol": "CELO", 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-62606.json b/_data/chains/eip155-62606.json new file mode 100644 index 000000000000..41e20088e1f6 --- /dev/null +++ b/_data/chains/eip155-62606.json @@ -0,0 +1,25 @@ +{ + "name": "Apollo Mainnet", + "chain": "APOLLO", + "icon": "apollo", + "rpc": ["https://mainnet-rpc.apolloscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "Apollo", + "symbol": "APOLLO", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://docs.apolloscan.io", + "shortName": "APOLLO", + "chainId": 62606, + "networkId": 62606, + "explorers": [ + { + "name": "Apollo Mainnet", + "url": "https://apolloscan.io", + "icon": "apollo", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-62621.json b/_data/chains/eip155-62621.json index ebc947a7b591..ee4b851552c3 100644 --- a/_data/chains/eip155-62621.json +++ b/_data/chains/eip155-62621.json @@ -2,10 +2,7 @@ "name": "MultiVAC Mainnet", "chain": "MultiVAC", "icon": "multivac", - "rpc": [ - "https://rpc.mtv.ac", - "https://rpc-eu.mtv.ac" - ], + "rpc": ["https://rpc.mtv.ac", "https://rpc-eu.mtv.ac"], "faucets": [], "nativeCurrency": { "name": "MultiVAC", @@ -16,9 +13,11 @@ "shortName": "mtv", "chainId": 62621, "networkId": 62621, - "explorers": [{ - "name": "MultiVAC Explorer", - "url": "https://e.mtv.ac", - "standard": "none" - }] + "explorers": [ + { + "name": "MultiVAC Explorer", + "url": "https://e.mtv.ac", + "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 new file mode 100644 index 000000000000..2840269799ce --- /dev/null +++ b/_data/chains/eip155-62831.json @@ -0,0 +1,24 @@ +{ + "name": "PLYR TAU Testnet", + "chain": "PLYR", + "icon": "plyr", + "rpc": ["https://subnets.avax.network/plyr/testnet/rpc"], + "faucets": ["https://faucet.avax.network/?subnet=plyr"], + "nativeCurrency": { + "name": "PLYR", + "symbol": "PLYR", + "decimals": 18 + }, + "infoURL": "https://plyr.network", + "shortName": "plyr-tau-testnet", + "chainId": 62831, + "networkId": 62831, + "slip44": 1, + "explorers": [ + { + "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-63.json b/_data/chains/eip155-63.json index 4ce16591f68f..f89aa6c03a01 100644 --- a/_data/chains/eip155-63.json +++ b/_data/chains/eip155-63.json @@ -1,17 +1,38 @@ { - "name": "Ethereum Classic Testnet Mordor", + "name": "Mordor Testnet", + "title": "Ethereum Classic Mordor Testnet", + "status": "active", "chain": "ETC", + "icon": "ethereumclassictestnet", "rpc": [ - "https://www.ethercluster.com/mordor" + "https://rpc.mordor.etccooperative.org", + "https://geth-mordor.etc-network.info" + ], + "features": [{ "name": "EIP155" }], + "faucets": [ + "https://easy.hebeswap.com/#/faucet", + "https://faucet.mordortest.net" ], - "faucets": [], "nativeCurrency": { - "name": "Mordor Classic Testnet Ether", + "name": "Mordor Ether", "symbol": "METC", "decimals": 18 }, - "infoURL": "https://github.com/eth-classic/mordor/", + "infoURL": "https://ethereumclassic.org/development/testnets", "shortName": "metc", "chainId": 63, - "networkId": 7 + "networkId": 7, + "slip44": 1, + "explorers": [ + { + "name": "blockscout-mordor", + "url": "https://etc-mordor.blockscout.com", + "standard": "EIP3091" + }, + { + "name": "etcnetworkinfo-expedition-mordor", + "url": "https://explorer-expedition.etc-network.info/?network=Ethereum+Classic+at+etc-network.info+GETH+Mordor", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-63000.json b/_data/chains/eip155-63000.json index 012c4a8fc78f..af360622867e 100644 --- a/_data/chains/eip155-63000.json +++ b/_data/chains/eip155-63000.json @@ -1,25 +1,25 @@ { - "name": "eCredits Mainnet", + "name": "eSync Network Mainnet", + "title": "eSync Network Mainnet", "chain": "ECS", - "network": "mainnet", - "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", - "explorers": [{ - "name": "eCredits MainNet Explorer", - "url": "https://explorer.ecredits.com", - "icon": "ecredits", - "standard": "EIP3091" - }] -} \ No newline at end of file + "icon": "esync", + "explorers": [ + { + "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 7fb07b950b47..26c19180feff 100644 --- a/_data/chains/eip155-63001.json +++ b/_data/chains/eip155-63001.json @@ -1,27 +1,26 @@ { "name": "eCredits Testnet", "chain": "ECS", - "network": "testnet", - "rpc": [ - "https://rpc.tst.ecredits.com" - ], - "faucets": [ - "https://faucet.tst.ecredits.com" - ], + "rpc": [], + "faucets": ["https://faucet.tst.ecredits.com"], "nativeCurrency": { "name": "eCredits", "symbol": "ECS", "decimals": 18 }, "infoURL": "https://ecredits.com", - "shortName": "ecs-testnet", + "shortName": "ecs-testnet-old", "chainId": 63001, "networkId": 63001, + "slip44": 1, "icon": "ecredits", - "explorers": [{ - "name": "eCredits TestNet Explorer", - "url": "https://explorer.tst.ecredits.com", - "icon": "ecredits", - "standard": "EIP3091" - }] -} \ No newline at end of file + "explorers": [ + { + "name": "eCredits TestNet Explorer", + "url": "https://explorer.tst.ecredits.com", + "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-6321.json b/_data/chains/eip155-6321.json new file mode 100644 index 000000000000..25c9c4024134 --- /dev/null +++ b/_data/chains/eip155-6321.json @@ -0,0 +1,25 @@ +{ + "name": "Aura Euphoria Testnet", + "chain": "Aura", + "rpc": ["https://jsonrpc.euphoria.aura.network"], + "faucets": ["https://aura.faucetme.pro"], + "nativeCurrency": { + "name": "test-EAura", + "symbol": "eAura", + "decimals": 18 + }, + "infoURL": "https://aura.network", + "shortName": "eaura", + "chainId": 6321, + "networkId": 6321, + "slip44": 1, + "icon": "aura", + "explorers": [ + { + "name": "Aurascan Explorer", + "url": "https://euphoria.aurascan.io", + "standard": "none", + "icon": "aura" + } + ] +} 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-634.json b/_data/chains/eip155-634.json new file mode 100644 index 000000000000..d26ef3c0d67b --- /dev/null +++ b/_data/chains/eip155-634.json @@ -0,0 +1,24 @@ +{ + "name": "Avocado", + "chain": "Avocado", + "rpc": ["https://rpc.avocado.instadapp.io"], + "faucets": [], + "nativeCurrency": { + "name": "USDC", + "symbol": "USDC", + "decimals": 18 + }, + "infoURL": "https://avocado.instadapp.io", + "shortName": "avocado", + "chainId": 634, + "networkId": 634, + "icon": "avocado", + "explorers": [ + { + "name": "avoscan", + "url": "https://avoscan.co", + "icon": "avocado", + "standard": "none" + } + ] +} 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-6363.json b/_data/chains/eip155-6363.json new file mode 100644 index 000000000000..675f6566e8c3 --- /dev/null +++ b/_data/chains/eip155-6363.json @@ -0,0 +1,16 @@ +{ + "name": "Digit Soul Smart Chain", + "chain": "DGS", + "rpc": ["https://dsc-rpc.digitsoul.co.th"], + "faucets": [], + "icon": "pnet", + "nativeCurrency": { + "name": "Digit Coin", + "symbol": "DGC", + "decimals": 18 + }, + "infoURL": "", + "shortName": "DGS", + "chainId": 6363, + "networkId": 6363 +} 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-64.json b/_data/chains/eip155-64.json index 66165daa2ffb..fa9b707af158 100644 --- a/_data/chains/eip155-64.json +++ b/_data/chains/eip155-64.json @@ -1,9 +1,7 @@ { "name": "Ellaism", "chain": "ELLA", - "rpc": [ - "https://jsonrpc.ellaism.org" - ], + "rpc": ["https://jsonrpc.ellaism.org"], "faucets": [], "nativeCurrency": { "name": "Ellaism Ether", @@ -11,7 +9,7 @@ "decimals": 18 }, "infoURL": "https://ellaism.org", - "shortName": "ella", + "shortName": "ellaism", "chainId": 64, "networkId": 64, "slip44": 163 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-641230.json b/_data/chains/eip155-641230.json new file mode 100644 index 000000000000..9a87e90bf803 --- /dev/null +++ b/_data/chains/eip155-641230.json @@ -0,0 +1,26 @@ +{ + "name": "Bear Network Chain Mainnet", + "chain": "BRNKC", + "icon": "brnkc", + "rpc": [ + "https://brnkc-mainnet.bearnetwork.net", + "https://brnkc-mainnet1.bearnetwork.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bear Network Chain Native Token", + "symbol": "BRNKC", + "decimals": 18 + }, + "infoURL": "https://bearnetwork.net", + "shortName": "BRNKC", + "chainId": 641230, + "networkId": 641230, + "explorers": [ + { + "name": "brnkscan", + "url": "https://brnkscan.bearnetwork.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-646.json b/_data/chains/eip155-646.json new file mode 100644 index 000000000000..96ef54bd3366 --- /dev/null +++ b/_data/chains/eip155-646.json @@ -0,0 +1,18 @@ +{ + "name": "Flow EVM Previewnet", + "chain": "Flow", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "FLOW", + "symbol": "FLOW", + "decimals": 18 + }, + "infoURL": "https://developers.flow.com/evm/about", + "shortName": "flow-previewnet", + "chainId": 646, + "networkId": 646, + "icon": "flowevm", + "explorers": [], + "status": "deprecated" +} diff --git a/_data/chains/eip155-647.json b/_data/chains/eip155-647.json index 776573bd079d..3793dcc89e40 100644 --- a/_data/chains/eip155-647.json +++ b/_data/chains/eip155-647.json @@ -2,13 +2,8 @@ "name": "SX Network Testnet", "chain": "SX", "icon": "SX", - "network": "testnet", - "rpc": [ - "https://rpc.toronto.sx.technology" - ], - "faucets": [ - "https://faucet.toronto.sx.technology" - ], + "rpc": ["https://rpc.toronto.sx.technology"], + "faucets": ["https://faucet.toronto.sx.technology"], "nativeCurrency": { "name": "SX Network", "symbol": "SX", @@ -18,9 +13,12 @@ "shortName": "SX-Testnet", "chainId": 647, "networkId": 647, - "explorers": [{ - "name": "SX Network Toronto Explorer", - "url": "https://explorer.toronto.sx.technology", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "SX Network Toronto Explorer", + "url": "https://explorer.toronto.sx.technology", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-648.json b/_data/chains/eip155-648.json new file mode 100644 index 000000000000..1e3cdd8aeb6c --- /dev/null +++ b/_data/chains/eip155-648.json @@ -0,0 +1,22 @@ +{ + "name": "Endurance Smart Chain Mainnet", + "chain": "ACE", + "rpc": ["https://rpc-endurance.fusionist.io/"], + "faucets": [], + "nativeCurrency": { + "name": "Endurance Chain Native Token", + "symbol": "ACE", + "decimals": 18 + }, + "infoURL": "https://ace.fusionist.io/", + "shortName": "ace", + "chainId": 648, + "networkId": 648, + "explorers": [ + { + "name": "Endurance Scan", + "url": "https://explorer.endurance.fusionist.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-65.json b/_data/chains/eip155-65.json index 0750c07eead4..8d4ffed56704 100644 --- a/_data/chains/eip155-65.json +++ b/_data/chains/eip155-65.json @@ -1,9 +1,7 @@ { "name": "OKExChain Testnet", "chain": "okexchain", - "rpc": [ - "https://exchaintestrpc.okex.org" - ], + "rpc": ["https://exchaintestrpc.okex.org"], "faucets": ["https://www.okex.com/drawdex"], "nativeCurrency": { "name": "OKExChain Global Utility Token in testnet", @@ -14,9 +12,12 @@ "shortName": "tokt", "chainId": 65, "networkId": 65, - "explorers": [{ - "name": "OKLink", - "url": "https://www.oklink.com/okexchain-test", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "OKLink", + "url": "https://www.oklink.com/okexchain-test", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-65000000.json b/_data/chains/eip155-65000000.json new file mode 100644 index 000000000000..ebb696643230 --- /dev/null +++ b/_data/chains/eip155-65000000.json @@ -0,0 +1,31 @@ +{ + "name": "Autonity Mainnet", + "chain": "AUT", + "rpc": [ + "https://rpc.autonity-apis.com", + "wss://rpc.autonity-apis.com", + "https://autonity.rpc.web3cdn.network", + "wss://autonity.rpc.web3cdn.network", + "https://autonity.rpc.subquery.network/public", + "wss://autonity.rpc.subquery.network/public" + ], + "faucets": [], + "nativeCurrency": { + "name": "Auton", + "symbol": "ATN", + "decimals": 18 + }, + "infoURL": "https://autonity.org/", + "shortName": "aut", + "chainId": 65000000, + "networkId": 65000000, + "slip44": 1, + "icon": "autonity", + "explorers": [ + { + "name": "autonityscan", + "url": "https://autonityscan.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-65010000.json b/_data/chains/eip155-65010000.json new file mode 100644 index 000000000000..0f976d64bbc4 --- /dev/null +++ b/_data/chains/eip155-65010000.json @@ -0,0 +1,25 @@ +{ + "name": "Autonity Bakerloo (Thames) 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-0", + "chainId": 65010000, + "networkId": 65010000, + "slip44": 1, + "icon": "autonity", + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://bakerloo.autonity.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-65010001.json b/_data/chains/eip155-65010001.json new file mode 100644 index 000000000000..5208620f26db --- /dev/null +++ b/_data/chains/eip155-65010001.json @@ -0,0 +1,25 @@ +{ + "name": "Autonity Bakerloo (Barada) 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-01", + "chainId": 65010001, + "networkId": 65010001, + "slip44": 1, + "icon": "autonity", + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://bakerloo.autonity.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-65010002.json b/_data/chains/eip155-65010002.json new file mode 100644 index 000000000000..d03598970d74 --- /dev/null +++ b/_data/chains/eip155-65010002.json @@ -0,0 +1,25 @@ +{ + "name": "Autonity Bakerloo (Sumida) 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-02", + "chainId": 65010002, + "networkId": 65010002, + "slip44": 1, + "icon": "autonity", + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://bakerloo.autonity.org", + "standard": "EIP3091" + } + ] +} 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-6502.json b/_data/chains/eip155-6502.json new file mode 100644 index 000000000000..834b93d81473 --- /dev/null +++ b/_data/chains/eip155-6502.json @@ -0,0 +1,16 @@ +{ + "name": "Peerpay", + "chain": "P2P", + "rpc": ["https://peerpay.su.gy/p2p"], + "faucets": [], + "nativeCurrency": { + "name": "Peerpay", + "symbol": "P2P", + "decimals": 18 + }, + "infoURL": "https://peerpay.su.gy", + "shortName": "Peerpay", + "chainId": 6502, + "networkId": 6502, + "explorers": [] +} diff --git a/_data/chains/eip155-65100000.json b/_data/chains/eip155-65100000.json new file mode 100644 index 000000000000..97414c763067 --- /dev/null +++ b/_data/chains/eip155-65100000.json @@ -0,0 +1,25 @@ +{ + "name": "Autonity Piccadilly (Thames) Testnet", + "status": "deprecated", + "chain": "AUT", + "rpc": [], + "faucets": ["https://faucet.autonity.org/"], + "nativeCurrency": { + "name": "Piccadilly Auton", + "symbol": "ATN", + "decimals": 18 + }, + "infoURL": "https://autonity.org/", + "shortName": "piccadilly-0", + "chainId": 65100000, + "networkId": 65100000, + "slip44": 1, + "icon": "autonity", + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://piccadilly.autonity.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-65100001.json b/_data/chains/eip155-65100001.json new file mode 100644 index 000000000000..e5b47081b9b1 --- /dev/null +++ b/_data/chains/eip155-65100001.json @@ -0,0 +1,25 @@ +{ + "name": "Autonity Piccadilly (Barada) Testnet", + "status": "deprecated", + "chain": "AUT", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Piccadilly Auton", + "symbol": "ATN", + "decimals": 18 + }, + "infoURL": "https://autonity.org/", + "shortName": "piccadilly-01", + "chainId": 65100001, + "networkId": 65100001, + "slip44": 1, + "icon": "autonity", + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://piccadilly.autonity.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-65100002.json b/_data/chains/eip155-65100002.json new file mode 100644 index 000000000000..f66a18d6c5b6 --- /dev/null +++ b/_data/chains/eip155-65100002.json @@ -0,0 +1,25 @@ +{ + "name": "Autonity Piccadilly (Sumida) Testnet", + "status": "deprecated", + "chain": "AUT", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Piccadilly Auton", + "symbol": "ATN", + "decimals": 18 + }, + "infoURL": "https://autonity.org/", + "shortName": "piccadilly-02", + "chainId": 65100002, + "networkId": 65100002, + "slip44": 1, + "icon": "autonity", + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://piccadilly.autonity.org", + "standard": "EIP3091" + } + ] +} 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..c8264ee577e6 --- /dev/null +++ b/_data/chains/eip155-65100004.json @@ -0,0 +1,19 @@ +{ + "name": "Autonity Piccadilly (Tiber) Testnet", + "status": "deprecated", + "chain": "AUT", + "rpc": [], + "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": [] +} diff --git a/_data/chains/eip155-651940.json b/_data/chains/eip155-651940.json new file mode 100644 index 000000000000..72971604de3a --- /dev/null +++ b/_data/chains/eip155-651940.json @@ -0,0 +1,23 @@ +{ + "name": "ALL Mainnet", + "chain": "ALL", + "icon": "alltra", + "rpc": ["https://mainnet-rpc.alltra.global"], + "faucets": [], + "nativeCurrency": { + "name": "ALL", + "symbol": "ALL", + "decimals": 18 + }, + "infoURL": "https://alltra.world", + "shortName": "ALL", + "chainId": 651940, + "networkId": 651940, + "explorers": [ + { + "name": "Alltra SmartChain Explorer", + "url": "https://alltra.global", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-653.json b/_data/chains/eip155-653.json new file mode 100644 index 000000000000..50d42e83d900 --- /dev/null +++ b/_data/chains/eip155-653.json @@ -0,0 +1,23 @@ +{ + "name": "Kalichain Testnet", + "chain": "Kalichain", + "rpc": ["https://rpc.kalichain.com"], + "faucets": [], + "nativeCurrency": { + "name": "kalis", + "symbol": "KALIS", + "decimals": 18 + }, + "infoURL": "https://kalichain.com", + "shortName": "kalichain", + "chainId": 653, + "networkId": 653, + "icon": "kalichain", + "explorers": [ + { + "name": "kalichain explorer", + "url": "https://explorer.kalichain.com", + "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-654.json b/_data/chains/eip155-654.json new file mode 100644 index 000000000000..859d260d8b11 --- /dev/null +++ b/_data/chains/eip155-654.json @@ -0,0 +1,23 @@ +{ + "name": "Kalichain", + "chain": "Kalichain", + "rpc": ["https://mainnet.kalichain.com"], + "faucets": [], + "nativeCurrency": { + "name": "kalis", + "symbol": "KALIS", + "decimals": 18 + }, + "infoURL": "https://kalichain.com", + "shortName": "kalichainMainnet", + "chainId": 654, + "networkId": 654, + "icon": "kalichain", + "explorers": [ + { + "name": "kalichain explorer", + "url": "https://explorer.kalichain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-65450.json b/_data/chains/eip155-65450.json new file mode 100644 index 000000000000..fe3f784a2951 --- /dev/null +++ b/_data/chains/eip155-65450.json @@ -0,0 +1,28 @@ +{ + "name": "Scolcoin Mainnet", + "chain": "SCOLWEI", + "rpc": ["https://mainnet-rpc.scolcoin.com"], + "faucets": [], + "nativeCurrency": { + "name": "Scolcoin", + "symbol": "SCOL", + "decimals": 18 + }, + "infoURL": "https://scolcoin.com", + "shortName": "SRC", + "chainId": 65450, + "networkId": 65450, + "icon": "scolcoin", + "explorers": [ + { + "name": "Scolscan Explorer", + "url": "https://explorer.scolcoin.com", + "standard": "EIP3091" + }, + { + "name": "Scolcoin Explorer", + "url": "https://explorador.scolcoin.com", + "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-6552.json b/_data/chains/eip155-6552.json new file mode 100644 index 000000000000..11d8d6bf580e --- /dev/null +++ b/_data/chains/eip155-6552.json @@ -0,0 +1,24 @@ +{ + "name": "Scolcoin WeiChain Testnet", + "chain": "SCOLWEI-testnet", + "rpc": ["https://testnet-rpc.scolcoin.com"], + "faucets": ["https://faucet.scolcoin.com"], + "nativeCurrency": { + "name": "Scolcoin", + "symbol": "SCOL", + "decimals": 18 + }, + "infoURL": "https://scolcoin.com", + "shortName": "SRC-test", + "chainId": 6552, + "networkId": 6552, + "slip44": 1, + "icon": "scolcoin", + "explorers": [ + { + "name": "Scolscan Testnet Explorer", + "url": "https://testnet-explorer.scolcoin.com", + "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-6565.json b/_data/chains/eip155-6565.json new file mode 100644 index 000000000000..6f2da0828304 --- /dev/null +++ b/_data/chains/eip155-6565.json @@ -0,0 +1,29 @@ +{ + "name": "Fox Testnet Network", + "chain": "FOX", + "rpc": [ + "https://rpc-testnet-v1.foxchain.app/", + "https://rpc2-testnet-v1.foxchain.app/", + "https://rpc3-testnet-v1.foxchain.app" + ], + "faucets": ["https://faucet.foxchain.app"], + "nativeCurrency": { + "name": "FOX Native Token", + "symbol": "tFOX", + "decimals": 18 + }, + "infoURL": "https://foxchain.app", + "shortName": "fox", + "chainId": 6565, + "networkId": 6565, + "slip44": 1, + "icon": "fox", + "explorers": [ + { + "name": "FOX Testnet Explorer", + "icon": "fox", + "url": "https://testnet.foxscan.app", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-66.json b/_data/chains/eip155-66.json index 19ed5c7d8b3f..19430c0bb7e7 100644 --- a/_data/chains/eip155-66.json +++ b/_data/chains/eip155-66.json @@ -5,7 +5,7 @@ "https://exchainrpc.okex.org", "https://okc-mainnet.gateway.pokt.network/v1/lb/6275309bea1b320039c893ff" ], - "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/?"], + "faucets": [], "nativeCurrency": { "name": "OKXChain Global Utility Token", "symbol": "OKT", @@ -15,9 +15,11 @@ "shortName": "okt", "chainId": 66, "networkId": 66, - "explorers": [{ - "name": "OKLink", - "url": "https://www.oklink.com/en/okc", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "OKLink", + "url": "https://www.oklink.com/en/okc", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-660279.json b/_data/chains/eip155-660279.json new file mode 100644 index 000000000000..30f0ba30bdd5 --- /dev/null +++ b/_data/chains/eip155-660279.json @@ -0,0 +1,22 @@ +{ + "name": "Xai Mainnet", + "chainId": 660279, + "shortName": "xai", + "chain": "XAI", + "networkId": 660279, + "nativeCurrency": { + "name": "Xai", + "symbol": "XAI", + "decimals": 18 + }, + "rpc": ["https://xai-chain.net/rpc"], + "faucets": [], + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.xai-chain.net", + "standard": "EIP3091" + } + ], + "infoURL": "https://xai.games" +} 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 new file mode 100644 index 000000000000..02400650e74c --- /dev/null +++ b/_data/chains/eip155-662.json @@ -0,0 +1,24 @@ +{ + "name": "AmaxSmartchain", + "chain": "AmaxSmartchain", + "rpc": ["https://rpc.amaxchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "amax", + "symbol": "AMAX", + "decimals": 18 + }, + "infoURL": "https://amaxchain.io", + "shortName": "Amaxsmartchain", + "chainId": 662, + "networkId": 662, + "icon": "ultronsmartchain", + "explorers": [ + { + "name": "Amaxsmartchain explorer", + "url": "https://scan.amaxchain.io", + "standard": "EIP3091" + } + ], + "redFlags": ["reusedChainId"] +} diff --git a/_data/chains/eip155-6626.json b/_data/chains/eip155-6626.json index 1fbd051bf951..863e2f26d6cd 100644 --- a/_data/chains/eip155-6626.json +++ b/_data/chains/eip155-6626.json @@ -15,9 +15,11 @@ "shortName": "pixie-chain", "chainId": 6626, "networkId": 6626, - "explorers": [{ - "name": "blockscout", - "url": "https://scan.chain.pixie.xyz", - "standard": "none" - }] + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.chain.pixie.xyz", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-666.json b/_data/chains/eip155-666.json index c77e5a3f6ccf..6e6ce40a41df 100644 --- a/_data/chains/eip155-666.json +++ b/_data/chains/eip155-666.json @@ -5,9 +5,7 @@ "https://http-testnet.chain.pixie.xyz", "wss://ws-testnet.chain.pixie.xyz" ], - "faucets": [ - "https://chain.pixie.xyz/faucet" - ], + "faucets": ["https://chain.pixie.xyz/faucet"], "nativeCurrency": { "name": "Pixie Chain Testnet Native Token", "symbol": "PCTT", @@ -16,5 +14,6 @@ "infoURL": "https://scan-testnet.chain.pixie.xyz", "shortName": "pixie-chain-testnet", "chainId": 666, - "networkId": 666 + "networkId": 666, + "slip44": 1 } diff --git a/_data/chains/eip155-6660.json b/_data/chains/eip155-6660.json new file mode 100644 index 000000000000..8fef9a29ecf9 --- /dev/null +++ b/_data/chains/eip155-6660.json @@ -0,0 +1,23 @@ +{ + "name": "Latest Chain Testnet", + "chain": "LATEST", + "icon": "latestChain", + "rpc": ["https://testnet-rpc.latestcoin.io"], + "faucets": ["http://faucet.latestchain.io"], + "nativeCurrency": { + "name": "Latest", + "symbol": "LATEST", + "decimals": 18 + }, + "infoURL": "https://latestcoin.io", + "shortName": "LATESTt", + "chainId": 6660, + "networkId": 6660, + "explorers": [ + { + "name": "Latest Chain", + "url": "http://testnet.latestchain.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-6661.json b/_data/chains/eip155-6661.json new file mode 100644 index 000000000000..9e21ef2a5e11 --- /dev/null +++ b/_data/chains/eip155-6661.json @@ -0,0 +1,30 @@ +{ + "name": "Cybria Mainnet", + "chain": "CYBA", + "rpc": ["https://rpc-mainnet.cybria.io"], + "faucets": [], + "nativeCurrency": { + "name": "Cybria", + "symbol": "CYBA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://cybria.io", + "shortName": "cyba", + "chainId": 6661, + "networkId": 6661, + "icon": "cybria", + "explorers": [ + { + "name": "Cybria Explorer", + "url": "https://cybascan.io", + "icon": "cybascan", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155420", + "bridges": [{ "url": "https://app.optimism.io/bridge" }] + } +} diff --git a/_data/chains/eip155-666301171999.json b/_data/chains/eip155-666301171999.json new file mode 100644 index 000000000000..ef9e74d58d18 --- /dev/null +++ b/_data/chains/eip155-666301171999.json @@ -0,0 +1,22 @@ +{ + "name": "PDC Mainnet", + "chain": "IPDC", + "rpc": ["https://mainnet.ipdc.io/"], + "faucets": [], + "nativeCurrency": { + "name": "PDC", + "symbol": "PDC", + "decimals": 18 + }, + "infoURL": "https://ipdc.io", + "shortName": "ipdc", + "chainId": 666301171999, + "networkId": 666301171999, + "explorers": [ + { + "name": "ipdcscan", + "url": "https://scan.ipdc.io", + "standard": "EIP3091" + } + ] +} 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-6666.json b/_data/chains/eip155-6666.json new file mode 100644 index 000000000000..252f44e6c898 --- /dev/null +++ b/_data/chains/eip155-6666.json @@ -0,0 +1,30 @@ +{ + "name": "Cybria Testnet", + "chain": "CYBA", + "rpc": ["https://l2-rpc.cybascan.io"], + "faucets": ["https://faucet.cybascan.io"], + "nativeCurrency": { + "name": "Cybria", + "symbol": "CYBA", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://cybria.io", + "shortName": "tcyba", + "chainId": 6666, + "networkId": 6666, + "icon": "cybria", + "explorers": [ + { + "name": "Cybria Explorer", + "url": "https://explorer.cybascan.io", + "icon": "cybascan", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155420", + "bridges": [{ "url": "https://app.optimism.io/bridge" }] + } +} 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-666666.json b/_data/chains/eip155-666666.json index 267d94f8c60c..c9023e6d60d7 100644 --- a/_data/chains/eip155-666666.json +++ b/_data/chains/eip155-666666.json @@ -1,12 +1,8 @@ { "name": "Vision - Vpioneer Test Chain", "chain": "Vision-Vpioneer", - "rpc": [ - "https://vpioneer.infragrid.v.network/ethereum/compatible" - ], - "faucets": [ - "https://vpioneerfaucet.visionscan.org" - ], + "rpc": ["https://vpioneer.infragrid.v.network/ethereum/compatible"], + "faucets": ["https://vpioneerfaucet.visionscan.org"], "nativeCurrency": { "name": "VS", "symbol": "VS", @@ -16,5 +12,5 @@ "shortName": "vpioneer", "chainId": 666666, "networkId": 666666, - "slip44": 60 + "slip44": 1 } diff --git a/_data/chains/eip155-6666665.json b/_data/chains/eip155-6666665.json new file mode 100644 index 000000000000..b3c00c586b16 --- /dev/null +++ b/_data/chains/eip155-6666665.json @@ -0,0 +1,24 @@ +{ + "name": "Safe(AnWang) Mainnet", + "chain": "Safe(AnWang)", + "icon": "safe-anwang", + "rpc": ["https://rpc.anwang.com"], + "faucets": [], + "nativeCurrency": { + "name": "SAFE(AnWang)", + "symbol": "SAFE", + "decimals": 18 + }, + "infoURL": "https://www.anwang.com", + "shortName": "SafeMainnet", + "chainId": 6666665, + "networkId": 6666665, + "explorers": [ + { + "name": "Safe(AnWang) Explorer", + "url": "http://safe4.anwang.com", + "icon": "safe-anwang", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-6666666.json b/_data/chains/eip155-6666666.json new file mode 100644 index 000000000000..b095365de07e --- /dev/null +++ b/_data/chains/eip155-6666666.json @@ -0,0 +1,24 @@ +{ + "name": "Safe(AnWang) Testnet", + "chain": "Safe(AnWang)", + "icon": "safe-anwang", + "rpc": ["https://rpc-testnet.anwang.com"], + "faucets": [], + "nativeCurrency": { + "name": "SAFE(AnWang)", + "symbol": "SAFE", + "decimals": 18 + }, + "infoURL": "https://www.anwang.com", + "shortName": "SafeTestnet", + "chainId": 6666666, + "networkId": 6666666, + "explorers": [ + { + "name": "Safe(AnWang) Testnet Explorer", + "url": "http://safe4-testnet.anwang.com", + "icon": "safe-anwang", + "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-666666666.json b/_data/chains/eip155-666666666.json new file mode 100644 index 000000000000..6994a9914fc2 --- /dev/null +++ b/_data/chains/eip155-666666666.json @@ -0,0 +1,18 @@ +{ + "name": "Degen Chain", + "title": "Degen Chain", + "chain": "Degen", + "rpc": ["https://rpc.degen.tips"], + "faucets": [], + "nativeCurrency": { + "name": "DEGEN", + "symbol": "DEGEN", + "decimals": 18 + }, + "infoURL": "https://degen.tips", + "shortName": "degen-chain", + "chainId": 666666666, + "networkId": 666666666, + "status": "incubating", + "icon": "degen" +} 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-666888.json b/_data/chains/eip155-666888.json new file mode 100644 index 000000000000..f15ba7287c41 --- /dev/null +++ b/_data/chains/eip155-666888.json @@ -0,0 +1,24 @@ +{ + "name": "Hela Official Runtime Testnet", + "chain": "Hela", + "icon": "hela", + "rpc": ["https://testnet-rpc.helachain.com"], + "faucets": ["https://testnet-faucet.helachain.com"], + "nativeCurrency": { + "name": "Hela HLUSD", + "symbol": "HLUSD", + "decimals": 18 + }, + "infoURL": "https://helalabs.com", + "shortName": "hela-testnet", + "chainId": 666888, + "networkId": 666888, + "slip44": 1, + "explorers": [ + { + "name": "Hela Official Runtime Testnet Explorer", + "url": "https://testnet-blockexplorer.helachain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-667.json b/_data/chains/eip155-667.json new file mode 100644 index 000000000000..3ace8c0afec5 --- /dev/null +++ b/_data/chains/eip155-667.json @@ -0,0 +1,28 @@ +{ + "name": "LAOS Arrakis", + "title": "LAOS Testnet Arrakis", + "chain": "LAOS", + "icon": "laos", + "rpc": [ + "https://arrakis.gorengine.com/own", + "wss://arrakis.gorengine.com/own" + ], + "faucets": [], + "nativeCurrency": { + "name": "LAOS", + "symbol": "LAOS", + "decimals": 18 + }, + "infoURL": "https://www.laosfoundation.io/", + "shortName": "laos", + "chainId": 667, + "networkId": 667, + "explorers": [ + { + "name": "blockscout", + "url": "https://arrakis.gorengine.com", + "icon": "laos", + "standard": "EIP3091" + } + ] +} 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-668.json b/_data/chains/eip155-668.json new file mode 100644 index 000000000000..02861f01b3ed --- /dev/null +++ b/_data/chains/eip155-668.json @@ -0,0 +1,22 @@ +{ + "name": "JuncaChain", + "chain": "JuncaChain", + "rpc": ["https://rpc.juncachain.com"], + "nativeCurrency": { + "name": "JuncaChain Native Token", + "symbol": "JGC", + "decimals": 18 + }, + "faucets": [], + "infoURL": "https://junca-cash.world", + "shortName": "junca", + "chainId": 668, + "networkId": 668, + "explorers": [ + { + "name": "JuncaScan", + "url": "https://scan.juncachain.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-6688.json b/_data/chains/eip155-6688.json new file mode 100644 index 000000000000..6b7dfcbd4777 --- /dev/null +++ b/_data/chains/eip155-6688.json @@ -0,0 +1,29 @@ +{ + "name": "IRIShub", + "chain": "IRIShub", + "rpc": [ + "https://evmrpc.irishub-1.irisnet.org", + "https://iris-evm.publicnode.com", + "wss://iris-evm.publicnode.com" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Eris", + "symbol": "ERIS", + "decimals": 18 + }, + "infoURL": "https://www.irisnet.org", + "shortName": "iris", + "chainId": 6688, + "networkId": 6688, + "icon": "irishub", + "explorers": [ + { + "name": "IRISHub Cosmos Explorer (IOBScan)", + "url": "https://irishub.iobscan.io", + "standard": "none", + "icon": "irishub" + } + ] +} diff --git a/_data/chains/eip155-669.json b/_data/chains/eip155-669.json new file mode 100644 index 000000000000..0d7960ca81ea --- /dev/null +++ b/_data/chains/eip155-669.json @@ -0,0 +1,26 @@ +{ + "name": "JuncaChain testnet", + "chain": "JuncaChain testnet", + "rpc": [ + "https://rpc-testnet.juncachain.com", + "wss://ws-testnet.juncachain.com" + ], + "faucets": ["https://faucet-testnet.juncachain.com"], + "nativeCurrency": { + "name": "JuncaChain Testnet Native Token", + "symbol": "JGCT", + "decimals": 18 + }, + "infoURL": "https://junca-cash.world", + "shortName": "juncat", + "chainId": 669, + "networkId": 669, + "slip44": 1, + "explorers": [ + { + "name": "JuncaScan", + "url": "https://scan-testnet.juncachain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-66988.json b/_data/chains/eip155-66988.json new file mode 100644 index 000000000000..bfce9d2e2d63 --- /dev/null +++ b/_data/chains/eip155-66988.json @@ -0,0 +1,25 @@ +{ + "name": "Janus Testnet", + "chain": "JanusNetwork", + "icon": "janusnetwork", + "rpc": ["https://rpc.test.janusnetwork.io"], + "faucets": [], + "nativeCurrency": { + "name": "Janus", + "symbol": "JNS", + "decimals": 18 + }, + "infoURL": "https://janus-network.gitbook.io/janus", + "shortName": "janusnetwork-testnet", + "chainId": 66988, + "networkId": 66988, + "slip44": 1, + "status": "active", + "explorers": [ + { + "name": "JanusNetwork Testnet Explorer", + "url": "https://beta.scan.janusnetwork.io", + "standard": "none" + } + ] +} 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-67.json b/_data/chains/eip155-67.json index 77698e50497a..364c7b56f06b 100644 --- a/_data/chains/eip155-67.json +++ b/_data/chains/eip155-67.json @@ -1,9 +1,7 @@ { "name": "DBChain Testnet", "chain": "DBM", - "rpc": [ - "http://test-rpc.dbmbp.com" - ], + "rpc": ["http://test-rpc.dbmbp.com"], "faucets": [], "nativeCurrency": { "name": "DBChain Testnet", @@ -13,5 +11,6 @@ "infoURL": "http://test.dbmbp.com", "shortName": "dbm", "chainId": 67, - "networkId": 67 + "networkId": 67, + "slip44": 1 } diff --git a/_data/chains/eip155-6701.json b/_data/chains/eip155-6701.json new file mode 100644 index 000000000000..cbb7bbf7a52a --- /dev/null +++ b/_data/chains/eip155-6701.json @@ -0,0 +1,24 @@ +{ + "name": "PAXB Mainnet", + "chain": "PAXB", + "rpc": ["https://chain.paxb.io"], + "faucets": [], + "nativeCurrency": { + "name": "PAXB", + "symbol": "PAXB", + "decimals": 18 + }, + "infoURL": "https://paxb.io/", + "shortName": "PAXB", + "chainId": 6701, + "networkId": 6701, + "icon": "paxb", + "explorers": [ + { + "name": "PAXB Explorer", + "url": "https://scan.paxb.io", + "icon": "paxb", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-67390.json b/_data/chains/eip155-67390.json new file mode 100644 index 000000000000..bc43f3702307 --- /dev/null +++ b/_data/chains/eip155-67390.json @@ -0,0 +1,25 @@ +{ + "name": "SiriusNet", + "chain": "SIN", + "status": "deprecated", + "rpc": [ + "https://u0tnafcv6j:o2T045sxuCNXL878RDQLp5__Zj-es2cvdjtgkl4etn0@u0v7kwtvtg-u0wj114sve-rpc.us0-aws.kaleido.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "MCD", + "symbol": "MCD", + "decimals": 18 + }, + "infoURL": "https://macaucasinolisboa.xyz", + "shortName": "mcl", + "chainId": 67390, + "networkId": 67390, + "explorers": [ + { + "name": "siriusnetscan", + "url": "https://siriusnet.tryethernal.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-67588.json b/_data/chains/eip155-67588.json new file mode 100644 index 000000000000..37f5db4a3e5a --- /dev/null +++ b/_data/chains/eip155-67588.json @@ -0,0 +1,15 @@ +{ + "name": "Cosmic Chain", + "chain": "COSMIC", + "rpc": ["http://testnet.cosmicchain.site:3344"], + "faucets": [], + "nativeCurrency": { + "name": "Cosmic Chain", + "symbol": "COSMIC", + "decimals": 18 + }, + "infoURL": "https://cosmicchain.site", + "shortName": "Cosmic", + "chainId": 67588, + "networkId": 3344 +} diff --git a/_data/chains/eip155-6779.json b/_data/chains/eip155-6779.json new file mode 100644 index 000000000000..c89c08117f58 --- /dev/null +++ b/_data/chains/eip155-6779.json @@ -0,0 +1,24 @@ +{ + "name": "Compverse Mainnet", + "chain": "CPV", + "icon": "compverse", + "rpc": ["https://rpc.compverse.io/", "https://rpc-useast1.compverse.io/"], + "faucets": [], + "nativeCurrency": { + "name": "compverse", + "symbol": "CPV", + "decimals": 18 + }, + "infoURL": "https://compverse.io", + "shortName": "compverse", + "chainId": 6779, + "networkId": 6779, + "slip44": 7779, + "explorers": [ + { + "name": "cpvscan", + "url": "https://scan.compverse.io", + "standard": "EIP3091" + } + ] +} 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-6789.json b/_data/chains/eip155-6789.json new file mode 100644 index 000000000000..2a8b9c955809 --- /dev/null +++ b/_data/chains/eip155-6789.json @@ -0,0 +1,23 @@ +{ + "name": "Gold Smart Chain Mainnet", + "chain": "STAND", + "icon": "stand", + "rpc": ["https://rpc-mainnet.goldsmartchain.com"], + "faucets": ["https://faucet.goldsmartchain.com"], + "nativeCurrency": { + "name": "Standard in Gold", + "symbol": "STAND", + "decimals": 18 + }, + "infoURL": "https://goldsmartchain.com", + "shortName": "STANDm", + "chainId": 6789, + "networkId": 6789, + "explorers": [ + { + "name": "Gold Smart Chain", + "url": "https://mainnet.goldsmartchain.com", + "standard": "EIP3091" + } + ] +} 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-68.json b/_data/chains/eip155-68.json index 9e88bfe6b79f..f961171aaa60 100644 --- a/_data/chains/eip155-68.json +++ b/_data/chains/eip155-68.json @@ -1,11 +1,8 @@ { "name": "SoterOne Mainnet", "chain": "SOTER", - "rpc": [ - "https://rpc.soter.one" - ], - "faucets": [ - ], + "rpc": ["https://rpc.soter.one"], + "faucets": [], "nativeCurrency": { "name": "SoterOne Mainnet Ether", "symbol": "SOTER", diff --git a/_data/chains/eip155-680.json b/_data/chains/eip155-680.json new file mode 100644 index 000000000000..1713086ba043 --- /dev/null +++ b/_data/chains/eip155-680.json @@ -0,0 +1,34 @@ +{ + "name": "JasmyChain", + "chain": "jasmychain", + "rpc": ["https://rpc.jasmyscan.net", "wss://rpc.jasmyscan.net/ws"], + "faucets": [], + "nativeCurrency": { + "name": "JasmyCoin", + "symbol": "JASMY", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://jasmy.global", + "shortName": "jasmychain", + "chainId": 680, + "networkId": 680, + "icon": "jasmychain", + "explorers": [ + { + "name": "jasmyscan", + "url": "https://explorer.jasmyscan.net", + "icon": "jasmychain", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://portal.arbitrum.io/bridge?sourceChain=ethereum&destinationChain=jasmychain" + } + ] + } +} 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-681.json b/_data/chains/eip155-681.json new file mode 100644 index 000000000000..e517564878aa --- /dev/null +++ b/_data/chains/eip155-681.json @@ -0,0 +1,37 @@ +{ + "name": "JasmyChain Testnet", + "chain": "jasmychain-testnet", + "rpc": [ + "https://jasmy-chain-testnet.alt.technology", + "wss://jasmy-chain-testnet.alt.technology/ws" + ], + "faucets": ["https://faucet.janction.ai"], + "nativeCurrency": { + "name": "JasmyCoin", + "symbol": "JASMY", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://jasmy.global", + "shortName": "jasmychain-test", + "chainId": 681, + "networkId": 681, + "icon": "jasmychain", + "explorers": [ + { + "name": "jasmyscan", + "url": "https://jasmy-chain-testnet-explorer.alt.technology", + "icon": "jasmychain", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://portal.arbitrum.io/bridge?sourceChain=sepolia&destinationChain=jasmy-chain-testnet" + } + ] + } +} diff --git a/_data/chains/eip155-68414.json b/_data/chains/eip155-68414.json new file mode 100644 index 000000000000..3d34c77b3a24 --- /dev/null +++ b/_data/chains/eip155-68414.json @@ -0,0 +1,29 @@ +{ + "name": "Henesys", + "chain": "Henesys", + "rpc": ["https://henesys-rpc.msu.io"], + "faucets": [], + "nativeCurrency": { + "name": "NEXPACE", + "symbol": "NXPC", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://nexpace.io", + "shortName": "nxpc", + "chainId": 68414, + "networkId": 68414, + "icon": "nexpace", + "explorers": [ + { + "name": "Xangle MSU Explorer", + "url": "https://msu-explorer.xangle.io", + "standard": "EIP3091" + }, + { + "name": "Avalanche Explorer", + "url": "https://subnets.avax.network/henesys", + "standard": "EIP3091" + } + ] +} 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-685689.json b/_data/chains/eip155-685689.json new file mode 100644 index 000000000000..e55b1169797f --- /dev/null +++ b/_data/chains/eip155-685689.json @@ -0,0 +1,16 @@ +{ + "name": "Gensyn Mainnet", + "chain": "Gensyn", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.gensyn.ai/", + "shortName": "gensyn-mainnet", + "chainId": 685689, + "networkId": 685689, + "status": "incubating" +} diff --git a/_data/chains/eip155-686.json b/_data/chains/eip155-686.json index d403de93b992..789ca67334ec 100644 --- a/_data/chains/eip155-686.json +++ b/_data/chains/eip155-686.json @@ -1,16 +1,27 @@ { "name": "Karura Network", "chain": "KAR", - "rpc": [], + "rpc": [ + "https://eth-rpc-karura.aca-api.network", + "wss://eth-rpc-karura.aca-api.network" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": [], "nativeCurrency": { "name": "Karura Token", "symbol": "KAR", "decimals": 18 }, - "infoURL": "https://karura.network", + "infoURL": "https://acala.network/karura", "shortName": "kar", "chainId": 686, "networkId": 686, - "slip44": 686 + "slip44": 686, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.karura.network", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-6868.json b/_data/chains/eip155-6868.json new file mode 100644 index 000000000000..b371975529a4 --- /dev/null +++ b/_data/chains/eip155-6868.json @@ -0,0 +1,25 @@ +{ + "name": "Pools Mainnet", + "chain": "Pools", + "rpc": ["https://rpc.poolsmobility.com"], + "faucets": [], + "nativeCurrency": { + "name": "POOLS Native Token", + "symbol": "POOLS", + "decimals": 18 + }, + "infoURL": "https://www.poolschain.org", + "shortName": "POOLS", + "icon": "POOLS", + "chainId": 6868, + "networkId": 6868, + "slip44": 6868, + "explorers": [ + { + "name": "poolsscan", + "url": "https://scan.poolsmobility.com", + "icon": "POOLS", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-686868.json b/_data/chains/eip155-686868.json new file mode 100644 index 000000000000..78aa321da2c1 --- /dev/null +++ b/_data/chains/eip155-686868.json @@ -0,0 +1,23 @@ +{ + "name": "Won Network", + "chainId": 686868, + "shortName": "WonChain", + "chain": "WON", + "icon": "won", + "networkId": 686868, + "nativeCurrency": { + "name": "Won", + "symbol": "WON", + "decimals": 18 + }, + "rpc": ["https://rpc.wonnetwork.org"], + "faucets": ["https://faucet.wondollars.org"], + "explorers": [ + { + "name": "Won Explorer", + "url": "https://scan.wonnetwork.org", + "standard": "EIP3091" + } + ], + "infoURL": "https://wonnetwork.org" +} diff --git a/_data/chains/eip155-68770.json b/_data/chains/eip155-68770.json new file mode 100644 index 000000000000..1c4ce9205977 --- /dev/null +++ b/_data/chains/eip155-68770.json @@ -0,0 +1,27 @@ +{ + "name": "DM2 Verse Mainnet", + "chain": "DM2 Verse", + "icon": "dm2verse", + "rpc": ["https://rpc.dm2verse.dmm.com"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://seamoon.dmm.com", + "shortName": "dm2", + "chainId": 68770, + "networkId": 68770, + "explorers": [ + { + "name": "DM2Verse Explorer", + "url": "https://explorer.dm2verse.dmm.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } +} 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-68840142.json b/_data/chains/eip155-68840142.json new file mode 100644 index 000000000000..451e5622c4f8 --- /dev/null +++ b/_data/chains/eip155-68840142.json @@ -0,0 +1,24 @@ +{ + "name": "Frame Testnet", + "chain": "ETH", + "rpc": ["https://rpc.testnet.frame.xyz/http"], + "faucets": ["https://faucet.triangleplatform.com/frame/testnet"], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "frameTestnet", + "infoURL": "https://www.frame.xyz/", + "shortName": "frametest", + "chainId": 68840142, + "networkId": 68840142, + "slip44": 1, + "explorers": [ + { + "name": "Frame Testnet Explorer", + "url": "https://explorer.testnet.frame.xyz", + "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-69.json b/_data/chains/eip155-69.json index bd7c54ed324c..09bf7ff0e11b 100644 --- a/_data/chains/eip155-69.json +++ b/_data/chains/eip155-69.json @@ -3,21 +3,22 @@ "title": "Optimism Testnet Kovan", "chain": "ETH", "rpc": ["https://kovan.optimism.io/"], - "faucets": [ - "http://fauceth.komputing.org?chain=69&address=${ADDRESS}" - ], + "faucets": ["http://fauceth.komputing.org?chain=69&address=${ADDRESS}"], "nativeCurrency": { "name": "Kovan Ether", - "symbol": "KOR", + "symbol": "ETH", "decimals": 18 }, - "explorers": [{ - "name": "etherscan", - "url": "https://kovan-optimistic.etherscan.io", - "standard": "EIP3091" - }], + "explorers": [ + { + "name": "etherscan", + "url": "https://kovan-optimistic.etherscan.io", + "standard": "EIP3091" + } + ], "infoURL": "https://optimism.io", "shortName": "okov", "chainId": 69, - "networkId": 69 + "networkId": 69, + "slip44": 1 } diff --git a/_data/chains/eip155-690.json b/_data/chains/eip155-690.json new file mode 100644 index 000000000000..61c7a63041b6 --- /dev/null +++ b/_data/chains/eip155-690.json @@ -0,0 +1,33 @@ +{ + "name": "Redstone", + "chain": "ETH", + "rpc": ["https://rpc.redstonechain.com", "wss://rpc.redstonechain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://redstone.xyz", + "shortName": "redstone", + "chainId": 690, + "networkId": 690, + "icon": "redstone", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.redstone.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://redstone.xyz/deposit" + } + ] + } +} 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..1f9d234acbca --- /dev/null +++ b/_data/chains/eip155-6912115.json @@ -0,0 +1,18 @@ +{ + "name": "ENI Testnet (Deprecated)", + "chain": "ENI", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "EGAS", + "symbol": "EGAS", + "decimals": 18 + }, + "infoURL": "", + "shortName": "eni-test-deprecated", + "chainId": 6912115, + "networkId": 6912115, + "icon": "eni-test", + "explorers": [], + "status": "deprecated" +} diff --git a/_data/chains/eip155-6913.json b/_data/chains/eip155-6913.json new file mode 100644 index 000000000000..5da9cc5bd65e --- /dev/null +++ b/_data/chains/eip155-6913.json @@ -0,0 +1,34 @@ +{ + "name": "billions-testnet", + "title": "billions-testnet", + "chain": "billions-testnet", + "rpc": ["https://billions-testnet-rpc.eu-north-2.gateway.fm"], + "features": [{ "name": "EIP155" }], + "faucets": ["https://billions-testnet-faucet.eu-north-2.gateway.fm"], + "status": "active", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://billions.network", + "shortName": "billionstest", + "chainId": 6913, + "networkId": 6913, + "icon": "billions", + "explorers": [ + { + "name": "Billions Testnet Explorer", + "url": "https://billions-testnet-blockscout.eu-north-2.gateway.fm", + "icon": "billions", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { "url": "https://billions-testnet-bridge.eu-north-2.gateway.fm" } + ] + } +} diff --git a/_data/chains/eip155-6934.json b/_data/chains/eip155-6934.json new file mode 100644 index 000000000000..af1508aedada --- /dev/null +++ b/_data/chains/eip155-6934.json @@ -0,0 +1,31 @@ +{ + "name": "Xylume TestNet", + "chain": "XYL", + "rpc": ["https://xylume-testnet.sparked.network/rpc/"], + "faucets": ["https://xylume-faucet.vercel.app/"], + "nativeCurrency": { + "name": "Xylume", + "symbol": "XYL", + "decimals": 18 + }, + "features": [ + { "name": "EIP20" }, + { "name": "EIP155" }, + { "name": "EIP1559" }, + { "name": "Directed Acyclic Graph (DAG)" }, + { "name": "Unspent Transaction Output (UTXO)" } + ], + "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-69420.json b/_data/chains/eip155-69420.json index 58a6d9803440..e6b30d7de18d 100644 --- a/_data/chains/eip155-69420.json +++ b/_data/chains/eip155-69420.json @@ -2,12 +2,8 @@ "name": "Condrieu", "title": "Ethereum Verkle Testnet Condrieu", "chain": "ETH", - "rpc": [ - "https://rpc.condrieu.ethdevops.io:8545" - ], - "faucets": [ - "https://faucet.condrieu.ethdevops.io" - ], + "rpc": ["https://rpc.condrieu.ethdevops.io:8545"], + "faucets": ["https://faucet.condrieu.ethdevops.io"], "nativeCurrency": { "name": "Condrieu Testnet Ether", "symbol": "CTE", @@ -17,9 +13,12 @@ "shortName": "cndr", "chainId": 69420, "networkId": 69420, - "explorers": [ { - "name": "Condrieu explorer", - "url": "https://explorer.condrieu.ethdevops.io", - "standard": "none" - }] + "slip44": 1, + "explorers": [ + { + "name": "Condrieu explorer", + "url": "https://explorer.condrieu.ethdevops.io", + "standard": "none" + } + ] } 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-6969.json b/_data/chains/eip155-6969.json new file mode 100644 index 000000000000..ccf5d4504fc0 --- /dev/null +++ b/_data/chains/eip155-6969.json @@ -0,0 +1,32 @@ +{ + "name": "Tomb Chain Mainnet", + "chain": "Tomb Chain", + "rpc": ["https://rpc.tombchain.com/"], + "faucets": [], + "nativeCurrency": { + "name": "Tomb", + "symbol": "TOMB", + "decimals": 18 + }, + "infoURL": "https://tombchain.com/", + "shortName": "tombchain", + "chainId": 6969, + "networkId": 6969, + + "explorers": [ + { + "name": "tombscout", + "url": "https://tombscout.com", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-250", + "bridges": [ + { + "url": "https://lif3.com/bridge" + } + ] + } +} diff --git a/_data/chains/eip155-696969.json b/_data/chains/eip155-696969.json new file mode 100644 index 000000000000..fc7fbe0174c1 --- /dev/null +++ b/_data/chains/eip155-696969.json @@ -0,0 +1,22 @@ +{ + "name": "Galadriel Devnet", + "chain": "Galadriel", + "rpc": ["https://devnet.galadriel.com"], + "faucets": ["https://docs.galadriel.com/faucet"], + "nativeCurrency": { + "name": "Galadriel Devnet token", + "symbol": "GAL", + "decimals": 18 + }, + "infoURL": "https://galadriel.com", + "shortName": "galadriel-devnet", + "chainId": 696969, + "networkId": 696969, + "explorers": [ + { + "name": "Galadriel Explorer", + "url": "https://explorer.galadriel.com", + "standard": "none" + } + ] +} 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-6999.json b/_data/chains/eip155-6999.json new file mode 100644 index 000000000000..7f6965c14254 --- /dev/null +++ b/_data/chains/eip155-6999.json @@ -0,0 +1,19 @@ +{ + "name": "PolySmartChain", + "chain": "PSC", + "rpc": [ + "https://seed0.polysmartchain.com/", + "https://seed1.polysmartchain.com/", + "https://seed2.polysmartchain.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "PSC", + "symbol": "PSC", + "decimals": 18 + }, + "infoURL": "https://www.polysmartchain.com/", + "shortName": "psc", + "chainId": 6999, + "networkId": 6999 +} diff --git a/_data/chains/eip155-7.json b/_data/chains/eip155-7.json index 62268c07497c..0265c144617c 100644 --- a/_data/chains/eip155-7.json +++ b/_data/chains/eip155-7.json @@ -1,10 +1,9 @@ { "name": "ThaiChain", "chain": "TCH", - "rpc": [ - "https://rpc.dome.cloud" - ], + "rpc": ["https://rpc.dome.cloud", "https://rpc.thaichain.org"], "faucets": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "nativeCurrency": { "name": "ThaiChain Ether", "symbol": "TCH", @@ -13,5 +12,13 @@ "infoURL": "https://thaichain.io", "shortName": "tch", "chainId": 7, - "networkId": 7 + "networkId": 7, + "icon": "tch", + "explorers": [ + { + "name": "Thaichain Explorer", + "url": "https://exp.thaichain.org", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-70.json b/_data/chains/eip155-70.json index f147f3a1294e..5fb8b11d8de3 100644 --- a/_data/chains/eip155-70.json +++ b/_data/chains/eip155-70.json @@ -18,9 +18,11 @@ "chainId": 70, "networkId": 70, "slip44": 1170, - "explorers": [{ - "name": "hooscan", - "url": "https://www.hooscan.com", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "hooscan", + "url": "https://www.hooscan.com", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-700.json b/_data/chains/eip155-700.json index bddac1ccf8c7..2ba6bf8d26ce 100644 --- a/_data/chains/eip155-700.json +++ b/_data/chains/eip155-700.json @@ -1,23 +1,23 @@ { - "name": "Star Social Testnet", - "chain": "SNS", - "rpc": [ - "https://avastar.cc/ext/bc/C/rpc" - ], - "faucets": [ - ], - "nativeCurrency": { - "name": "Social", - "symbol": "SNS", - "decimals": 18 - }, - "infoURL": "https://info.avastar.cc", - "shortName": "SNS", - "chainId": 700, - "networkId": 700, - "explorers": [{ + "name": "Star Social Testnet", + "chain": "SNS", + "rpc": ["https://avastar.cc/ext/bc/C/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Social", + "symbol": "SNS", + "decimals": 18 + }, + "infoURL": "https://info.avastar.cc", + "shortName": "SNS", + "chainId": 700, + "networkId": 700, + "slip44": 1, + "explorers": [ + { "name": "starscan", "url": "https://avastar.info", "standard": "EIP3091" - }] - } \ No newline at end of file + } + ] +} diff --git a/_data/chains/eip155-7000.json b/_data/chains/eip155-7000.json new file mode 100644 index 000000000000..3a733357c2f7 --- /dev/null +++ b/_data/chains/eip155-7000.json @@ -0,0 +1,30 @@ +{ + "name": "ZetaChain Mainnet", + "chain": "ZetaChain", + "icon": "zetachain", + "rpc": [ + "https://zetachain-evm.blockpi.network/v1/rpc/public", + "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": { + "name": "Zeta", + "symbol": "ZETA", + "decimals": 18 + }, + "infoURL": "https://zetachain.com/docs", + "shortName": "zetachain-mainnet", + "chainId": 7000, + "networkId": 7000, + "status": "active", + "explorers": [ + { + "name": "ZetaScan", + "url": "https://zetascan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-70000.json b/_data/chains/eip155-70000.json index 98095c0ec97b..eb5ecb8aa418 100644 --- a/_data/chains/eip155-70000.json +++ b/_data/chains/eip155-70000.json @@ -1,22 +1,22 @@ { - "name": "Thinkium Mainnet Chain 0", - "chain": "Thinkium", - "rpc": [ - "https://proxy.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM0", - "chainId": 70000, - "networkId": 70000, - "explorers": [{ - "name": "thinkiumscan", - "url": "https://chain0.thinkiumscan.net", - "standard": "EIP3091" - }] + "name": "Thinkium Mainnet Chain 0", + "chain": "Thinkium", + "rpc": ["https://proxy.thinkiumrpc.net/"], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM0", + "chainId": 70000, + "networkId": 70000, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://chain0.thinkiumscan.net", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-70001.json b/_data/chains/eip155-70001.json index c11dfac496eb..c1b1a78a3e47 100644 --- a/_data/chains/eip155-70001.json +++ b/_data/chains/eip155-70001.json @@ -1,22 +1,22 @@ { - "name": "Thinkium Mainnet Chain 1", - "chain": "Thinkium", - "rpc": [ - "https://proxy1.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM1", - "chainId": 70001, - "networkId": 70001, - "explorers": [{ - "name": "thinkiumscan", - "url": "https://chain1.thinkiumscan.net", - "standard": "EIP3091" - }] + "name": "Thinkium Mainnet Chain 1", + "chain": "Thinkium", + "rpc": ["https://proxy1.thinkiumrpc.net/"], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM1", + "chainId": 70001, + "networkId": 70001, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://chain1.thinkiumscan.net", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-70002.json b/_data/chains/eip155-70002.json index 50c625397ad1..5786bd75f563 100644 --- a/_data/chains/eip155-70002.json +++ b/_data/chains/eip155-70002.json @@ -1,22 +1,22 @@ { - "name": "Thinkium Mainnet Chain 2", - "chain": "Thinkium", - "rpc": [ - "https://proxy2.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM2", - "chainId": 70002, - "networkId": 70002, - "explorers": [{ - "name": "thinkiumscan", - "url": "https://chain2.thinkiumscan.net", - "standard": "EIP3091" - }] + "name": "Thinkium Mainnet Chain 2", + "chain": "Thinkium", + "rpc": ["https://proxy2.thinkiumrpc.net/"], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM2", + "chainId": 70002, + "networkId": 70002, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://chain2.thinkiumscan.net", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-7001.json b/_data/chains/eip155-7001.json new file mode 100644 index 000000000000..61a64bd10d0c --- /dev/null +++ b/_data/chains/eip155-7001.json @@ -0,0 +1,31 @@ +{ + "name": "ZetaChain Testnet", + "chain": "ZetaChain", + "icon": "zetachain", + "rpc": [ + "https://zetachain-athens-evm.blockpi.network/v1/rpc/public", + "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://zetachain.com/docs/reference/faucet"], + "nativeCurrency": { + "name": "Zeta", + "symbol": "ZETA", + "decimals": 18 + }, + "infoURL": "https://zetachain.com/docs", + "shortName": "zetachain-testnet", + "chainId": 7001, + "networkId": 7001, + "slip44": 1, + "status": "active", + "explorers": [ + { + "name": "ZetaScan", + "url": "https://testnet.zetascan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-7007.json b/_data/chains/eip155-7007.json new file mode 100644 index 000000000000..2c9db30e4614 --- /dev/null +++ b/_data/chains/eip155-7007.json @@ -0,0 +1,23 @@ +{ + "name": "BST Chain", + "chain": "BSTC", + "rpc": ["https://rpc.bstchain.io/"], + "faucets": [], + "nativeCurrency": { + "name": "BST Chain", + "symbol": "BSTC", + "decimals": 18 + }, + "infoURL": "https://bstchain.io", + "shortName": "BSTC", + "chainId": 7007, + "networkId": 7007, + "icon": "bstc", + "explorers": [ + { + "name": "blockscout", + "url": "https://bstscan.com", + "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-70103.json b/_data/chains/eip155-70103.json index e823540d8541..a79dc576c89e 100644 --- a/_data/chains/eip155-70103.json +++ b/_data/chains/eip155-70103.json @@ -1,22 +1,22 @@ { - "name": "Thinkium Mainnet Chain 103", - "chain": "Thinkium", - "rpc": [ - "https://proxy103.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM103", - "chainId": 70103, - "networkId": 70103, - "explorers": [{ - "name": "thinkiumscan", - "url": "https://chain103.thinkiumscan.net", - "standard": "EIP3091" - }] + "name": "Thinkium Mainnet Chain 103", + "chain": "Thinkium", + "rpc": ["https://proxy103.thinkiumrpc.net/"], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM103", + "chainId": 70103, + "networkId": 70103, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://chain103.thinkiumscan.net", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-7027.json b/_data/chains/eip155-7027.json index 628be447f64c..26c20c7167df 100644 --- a/_data/chains/eip155-7027.json +++ b/_data/chains/eip155-7027.json @@ -2,9 +2,7 @@ "name": "Ella the heart", "chain": "ella", "icon": "ella", - "rpc": [ - "https://rpc.ella.network" - ], + "rpc": ["https://rpc.ella.network"], "faucets": [], "nativeCurrency": { "name": "Ella", 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-707.json b/_data/chains/eip155-707.json index 0b5f43a9c990..d1a22df2faee 100644 --- a/_data/chains/eip155-707.json +++ b/_data/chains/eip155-707.json @@ -1,10 +1,7 @@ { "name": "BlockChain Station Mainnet", "chain": "BCS", - "rpc": [ - "https://rpc-mainnet.bcsdev.io", - "wss://rpc-ws-mainnet.bcsdev.io" - ], + "rpc": ["https://rpc-mainnet.bcsdev.io", "wss://rpc-ws-mainnet.bcsdev.io"], "faucets": [], "nativeCurrency": { "name": "BCS Token", @@ -15,9 +12,11 @@ "shortName": "bcs", "chainId": 707, "networkId": 707, - "explorers": [{ - "name": "BlockChain Station Explorer", - "url": "https://explorer.bcsdev.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "BlockChain Station Explorer", + "url": "https://explorer.bcsdev.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-7070.json b/_data/chains/eip155-7070.json new file mode 100644 index 000000000000..2ce1de85d9e7 --- /dev/null +++ b/_data/chains/eip155-7070.json @@ -0,0 +1,28 @@ +{ + "name": "Planq Mainnet", + "chain": "Planq", + "icon": "planq", + "rpc": ["https://evm-rpc.planq.network"], + "faucets": [], + "nativeCurrency": { + "name": "Planq", + "symbol": "PLQ", + "decimals": 18 + }, + "infoURL": "https://planq.network", + "shortName": "planq", + "chainId": 7070, + "networkId": 7070, + "explorers": [ + { + "name": "Planq EVM Explorer (Blockscout)", + "url": "https://evm.planq.network", + "standard": "none" + }, + { + "name": "Planq Cosmos Explorer (BigDipper)", + "url": "https://explorer.planq.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-70700.json b/_data/chains/eip155-70700.json new file mode 100644 index 000000000000..bcad5d2cfd39 --- /dev/null +++ b/_data/chains/eip155-70700.json @@ -0,0 +1,30 @@ +{ + "name": "Proof of Play - Apex", + "chainId": 70700, + "shortName": "pop-apex", + "chain": "ETH", + "networkId": 70700, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": ["https://rpc.apex.proofofplay.com"], + "faucets": [], + "explorers": [ + { + "name": "Proof of Play Apex Explorer", + "url": "https://explorer.apex.proofofplay.com", + "standard": "EIP3091" + } + ], + "infoURL": "https://proofofplay.com", + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [ + { "url": "https://bridge.arbitrum.io" }, + { "url": "https://relay.link/bridge/apex/" } + ] + } +} 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-7077.json b/_data/chains/eip155-7077.json new file mode 100644 index 000000000000..214c28803569 --- /dev/null +++ b/_data/chains/eip155-7077.json @@ -0,0 +1,17 @@ +{ + "name": "Planq Atlas Testnet", + "chain": "Planq", + "icon": "planq", + "rpc": ["https://evm-rpc-atlas.planq.network"], + "faucets": [], + "nativeCurrency": { + "name": "Planq", + "symbol": "tPLQ", + "decimals": 18 + }, + "infoURL": "https://planq.network", + "shortName": "planq-atlas-testnet", + "chainId": 7077, + "networkId": 7077, + "explorers": [] +} 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-708.json b/_data/chains/eip155-708.json index 1575e996b312..188100338f98 100644 --- a/_data/chains/eip155-708.json +++ b/_data/chains/eip155-708.json @@ -1,25 +1,23 @@ { - "name": "BlockChain Station Testnet", - "chain": "BCS", - "rpc": [ - "https://rpc-testnet.bcsdev.io", - "wss://rpc-ws-testnet.bcsdev.io" - ], - "faucets": [ - "https://faucet.bcsdev.io" - ], - "nativeCurrency": { - "name": "BCS Testnet Token", - "symbol": "tBCS", - "decimals": 18 - }, - "infoURL": "https://blockchainstation.io", - "shortName": "tbcs", - "chainId": 708, - "networkId": 708, - "explorers": [{ + "name": "BlockChain Station Testnet", + "chain": "BCS", + "rpc": ["https://rpc-testnet.bcsdev.io", "wss://rpc-ws-testnet.bcsdev.io"], + "faucets": ["https://faucet.bcsdev.io"], + "nativeCurrency": { + "name": "BCS Testnet Token", + "symbol": "tBCS", + "decimals": 18 + }, + "infoURL": "https://blockchainstation.io", + "shortName": "tbcs", + "chainId": 708, + "networkId": 708, + "slip44": 1, + "explorers": [ + { "name": "BlockChain Station Explorer", "url": "https://testnet.bcsdev.io", "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-71.json b/_data/chains/eip155-71.json index 1c3167ec70b1..03c6ab4bb320 100644 --- a/_data/chains/eip155-71.json +++ b/_data/chains/eip155-71.json @@ -1,24 +1,23 @@ { - "name": "Conflux eSpace (Testnet)", - "chain": "Conflux", - "network": "testnet", - "rpc": ["https://evmtestnet.confluxrpc.com"], - "faucets": ["https://faucet.confluxnetwork.org"], - "nativeCurrency": { - "name": "CFX", - "symbol": "CFX", - "decimals": 18 - }, - "infoURL": "https://confluxnetwork.org", - "shortName": "cfxtest", - "chainId": 71, - "networkId": 71, - "icon": "conflux", - "explorers": [ - { - "name": "Conflux Scan", - "url": "https://evmtestnet.confluxscan.net", - "standard": "none" - } - ] - } \ No newline at end of file + "name": "Conflux eSpace (Testnet)", + "chain": "Conflux", + "rpc": ["https://evmtestnet.confluxrpc.com"], + "faucets": ["https://faucet.confluxnetwork.org"], + "nativeCurrency": { + "name": "CFX", + "symbol": "CFX", + "decimals": 18 + }, + "infoURL": "https://confluxnetwork.org", + "shortName": "cfxtest", + "chainId": 71, + "networkId": 71, + "icon": "conflux", + "explorers": [ + { + "name": "Conflux Scan", + "url": "https://evmtestnet.confluxscan.net", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-710.json b/_data/chains/eip155-710.json new file mode 100644 index 000000000000..2aacfbf4fc94 --- /dev/null +++ b/_data/chains/eip155-710.json @@ -0,0 +1,24 @@ +{ + "name": "Highbury", + "chain": "HIGHBURY", + "rpc": ["https://highbury.furya.io", "https://rest.furya.io"], + "faucets": [], + "nativeCurrency": { + "name": "Fury", + "symbol": "FURY", + "decimals": 18 + }, + "infoURL": "https://www.fury.black", + "shortName": "fury", + "chainId": 710, + "networkId": 710, + "icon": "highbury", + "explorers": [ + { + "name": "Furya EVM Explorer", + "url": "https://explorer.furya.io", + "standard": "EIP3091", + "icon": "highbury" + } + ] +} diff --git a/_data/chains/eip155-7100.json b/_data/chains/eip155-7100.json new file mode 100644 index 000000000000..eb43145c9da8 --- /dev/null +++ b/_data/chains/eip155-7100.json @@ -0,0 +1,25 @@ +{ + "name": "Nume", + "title": "Nume", + "chain": "Nume", + "rpc": ["https://rpc.numecrypto.com"], + "faucets": [], + "nativeCurrency": { + "name": "Dai Stablecoin", + "symbol": "DAI", + "decimals": 18 + }, + "infoURL": "https://numecrypto.com", + "shortName": "nume", + "chainId": 7100, + "networkId": 7100, + "icon": "nume", + "explorers": [ + { + "name": "numeexplorer", + "url": "https://explorer.numecrypto.com", + "icon": "nume", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-710420.json b/_data/chains/eip155-710420.json new file mode 100644 index 000000000000..c73c34ab197b --- /dev/null +++ b/_data/chains/eip155-710420.json @@ -0,0 +1,23 @@ +{ + "name": "Tiltyard Mainnet Subnet", + "chain": "TILTYARD", + "rpc": ["https://subnets.avax.network/tiltyard/mainnet/rpc"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "TILT", + "symbol": "TILT", + "decimals": 18 + }, + "infoURL": "https://play.tiltyard.gg/", + "shortName": "tiltyardmainnet", + "chainId": 710420, + "networkId": 710420, + "explorers": [ + { + "name": "TILTYARD Explorer", + "url": "https://subnets.avax.network/tiltyard", + "standard": "EIP3091" + } + ] +} 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-71111.json b/_data/chains/eip155-71111.json new file mode 100644 index 000000000000..1e1b1929a868 --- /dev/null +++ b/_data/chains/eip155-71111.json @@ -0,0 +1,28 @@ +{ + "name": "GuapcoinX", + "chain": "GuapcoinX", + "rpc": [ + "https://rpc-mainnet.guapcoinx.com/", + "https://rpc-mainnet-1.guapcoinx.com/", + "https://rpc-mainnet-2.guapcoinx.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "GuapcoinX", + "symbol": "GuapX", + "decimals": 18 + }, + "infoURL": "https://guapcoin.org/", + "shortName": "GuapX", + "chainId": 71111, + "networkId": 71111, + "icon": "guapcoinx", + "explorers": [ + { + "name": "GuapcoinX Explorer", + "url": "http://explorer.guapcoinx.com", + "standard": "none", + "icon": "guapcoinx" + } + ] +} 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-7118.json b/_data/chains/eip155-7118.json new file mode 100644 index 000000000000..09181ce43fe2 --- /dev/null +++ b/_data/chains/eip155-7118.json @@ -0,0 +1,18 @@ +{ + "name": "Help The Homeless", + "chain": "mainnet", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Help The Homeless Coin", + "symbol": "HTH", + "decimals": 18 + }, + "infoURL": "https://hth.world", + "shortName": "hth", + "chainId": 7118, + "networkId": 7118, + "icon": "hth", + "status": "incubating", + "explorers": [] +} 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-713.json b/_data/chains/eip155-713.json new file mode 100644 index 000000000000..9671909271ed --- /dev/null +++ b/_data/chains/eip155-713.json @@ -0,0 +1,33 @@ +{ + "name": "Vrcscan Mainnet", + "chain": "VRC", + "rpc": [ + "https://rpc-mainnet-5.vrcscan.com", + "https://rpc-mainnet-6.vrcscan.com", + "https://rpc-mainnet-7.vrcscan.com", + "https://rpc-mainnet-8.vrcscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "VRC Chain", + "symbol": "VRC", + "decimals": 18 + }, + "infoURL": "https://vrccoin.com", + "shortName": "vrc", + "chainId": 713, + "networkId": 713, + "explorers": [ + { + "name": "vrcscan", + "url": "https://vrcscan.com", + "standard": "EIP3091" + }, + { + "name": "dxbscan", + "url": "https://dxb.vrcscan.com", + "standard": "EIP3091" + } + ], + "icon": "vrcscan" +} diff --git a/_data/chains/eip155-713715.json b/_data/chains/eip155-713715.json new file mode 100644 index 000000000000..08746d1a6a42 --- /dev/null +++ b/_data/chains/eip155-713715.json @@ -0,0 +1,34 @@ +{ + "name": "Sei Devnet", + "chain": "Sei", + "rpc": [ + "https://evm-rpc-arctic-1.sei-apis.com", + "https://evm-rpc.arctic-1.seinetwork.io" + ], + "faucets": [ + "https://sei-faucet.nima.enterprises", + "https://sei-evm.faucetme.pro" + ], + "nativeCurrency": { + "name": "Sei", + "symbol": "SEI", + "decimals": 18 + }, + "infoURL": "https://www.sei.io", + "shortName": "sei-devnet", + "chainId": 713715, + "networkId": 713715, + "icon": "sei", + "explorers": [ + { + "name": "Seistream", + "url": "https://seistream.app", + "standard": "none" + }, + { + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-71393.json b/_data/chains/eip155-71393.json index ee7677dcbc32..275d2f3da2d6 100644 --- a/_data/chains/eip155-71393.json +++ b/_data/chains/eip155-71393.json @@ -15,5 +15,6 @@ "infoURL": "https://github.com/nervosnetwork/godwoken", "shortName": "ckb", "chainId": 71393, - "networkId": 1 + "networkId": 1, + "slip44": 1 } diff --git a/_data/chains/eip155-71401.json b/_data/chains/eip155-71401.json index 2f0726616f2c..c92a54fec526 100644 --- a/_data/chains/eip155-71401.json +++ b/_data/chains/eip155-71401.json @@ -1,26 +1,26 @@ { - "name": "Godwoken Testnet (V1.1)", + "name": "Godwoken Testnet v1", "chain": "GWT", "rpc": [ - "https://godwoken-testnet-v1.ckbapp.dev" - ], - "faucets": [ - "https://testnet.bridge.godwoken.io" + "https://godwoken-testnet-v1.ckbapp.dev", + "https://v1.testnet.godwoken.io/rpc" ], + "faucets": ["https://testnet.bridge.godwoken.io"], "nativeCurrency": { - "name": "CKB", - "symbol": "CKB", + "name": "pCKB", + "symbol": "pCKB", "decimals": 18 }, "infoURL": "https://www.nervos.org", "shortName": "gw-testnet-v1", "chainId": 71401, "networkId": 71401, + "slip44": 1, "explorers": [ { "name": "GWScan Block Explorer", - "url": "https://v1.aggron.gwscan.com", + "url": "https://v1.testnet.gwscan.com", "standard": "none" } ] -} \ No newline at end of file +} diff --git a/_data/chains/eip155-71402.json b/_data/chains/eip155-71402.json index 28cb862d1e91..4781f3b5a731 100644 --- a/_data/chains/eip155-71402.json +++ b/_data/chains/eip155-71402.json @@ -1,15 +1,11 @@ { "name": "Godwoken Mainnet", "chain": "GWT", - "rpc": [ - "https://godwoken-testnet-v1.ckbapp.dev" - ], - "faucets": [ - "https://testnet.bridge.godwoken.io" - ], + "rpc": ["https://v1.mainnet.godwoken.io/rpc"], + "faucets": [], "nativeCurrency": { - "name": "CKB", - "symbol": "CKB", + "name": "pCKB", + "symbol": "pCKB", "decimals": 18 }, "infoURL": "https://www.nervos.org", @@ -19,8 +15,8 @@ "explorers": [ { "name": "GWScan Block Explorer", - "url": "https://v1.aggron.gwscan.com", + "url": "https://v1.gwscan.com", "standard": "none" } ] -} \ No newline at end of file +} 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 new file mode 100644 index 000000000000..720e798968a2 --- /dev/null +++ b/_data/chains/eip155-7171.json @@ -0,0 +1,23 @@ +{ + "name": "Bitrock Mainnet", + "chain": "Bitrock", + "icon": "bitrock", + "rpc": ["https://connect.bit-rock.io", "https://brockrpc.io"], + "faucets": [], + "nativeCurrency": { + "name": "BITROCK", + "symbol": "BROCK", + "decimals": 18 + }, + "infoURL": "https://bit-rock.io", + "shortName": "bitrock", + "chainId": 7171, + "networkId": 7171, + "explorers": [ + { + "name": "Bitrock Explorer", + "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-719.json b/_data/chains/eip155-719.json new file mode 100644 index 000000000000..82c0764b1e1f --- /dev/null +++ b/_data/chains/eip155-719.json @@ -0,0 +1,23 @@ +{ + "name": "Shibarium Beta", + "chain": "Shibarium", + "icon": "shibarium", + "rpc": ["https://puppynet.shibrpc.com"], + "faucets": [], + "nativeCurrency": { + "name": "BONE", + "symbol": "BONE", + "decimals": 18 + }, + "infoURL": "https://beta.shibariumtech.com", + "shortName": "shibarium", + "chainId": 719, + "networkId": 719, + "explorers": [ + { + "name": "shibscan", + "url": "https://puppyscan.shib.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-72.json b/_data/chains/eip155-72.json new file mode 100644 index 000000000000..df434e755642 --- /dev/null +++ b/_data/chains/eip155-72.json @@ -0,0 +1,16 @@ +{ + "name": "DxChain Testnet", + "chain": "DxChain", + "rpc": ["https://testnet-http.dxchain.com"], + "faucets": ["https://faucet.dxscan.io"], + "nativeCurrency": { + "name": "DxChain Testnet", + "symbol": "DX", + "decimals": 18 + }, + "infoURL": "https://testnet.dxscan.io/", + "shortName": "dxc", + "chainId": 72, + "networkId": 72, + "slip44": 1 +} 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-721.json b/_data/chains/eip155-721.json index 36dd0a2cd08a..550355489f89 100644 --- a/_data/chains/eip155-721.json +++ b/_data/chains/eip155-721.json @@ -1,16 +1,30 @@ { - "name": "Factory 127 Testnet", - "chain": "FETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Factory 127 Token", - "symbol": "FETH", - "decimals": 18 - }, - "infoURL": "https://www.factory127.com", - "shortName": "tfeth", - "chainId": 721, - "networkId": 721, - "slip44": 721 - } \ No newline at end of file + "name": "Lycan Chain", + "chain": "LYC", + "rpc": [ + "https://rpc.lycanchain.com/", + "https://us-east.lycanchain.com", + "https://us-west.lycanchain.com", + "https://eu-north.lycanchain.com", + "https://eu-west.lycanchain.com", + "https://asia-southeast.lycanchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Lycan", + "symbol": "LYC", + "decimals": 18 + }, + "infoURL": "https://lycanchain.com", + "shortName": "LYC", + "chainId": 721, + "networkId": 721, + "icon": "lycanchain", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.lycanchain.com", + "standard": "EIP3091" + } + ] +} 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-7225878.json b/_data/chains/eip155-7225878.json new file mode 100644 index 000000000000..507c1d517067 --- /dev/null +++ b/_data/chains/eip155-7225878.json @@ -0,0 +1,23 @@ +{ + "name": "Saakuru Mainnet", + "chain": "Saakuru", + "icon": "saakuru", + "rpc": ["https://rpc.saakuru.network"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://saakuru.network", + "shortName": "saakuru", + "chainId": 7225878, + "networkId": 7225878, + "explorers": [ + { + "name": "saakuru-explorer", + "url": "https://explorer.saakuru.network", + "standard": "EIP3091" + } + ] +} 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-727.json b/_data/chains/eip155-727.json new file mode 100644 index 000000000000..5f9ff2a75f5b --- /dev/null +++ b/_data/chains/eip155-727.json @@ -0,0 +1,16 @@ +{ + "name": "Blucrates", + "chain": "BLU", + "rpc": ["https://data.bluchain.pro"], + "faucets": [], + "nativeCurrency": { + "name": "Blucrates", + "symbol": "BLU", + "decimals": 18 + }, + "infoURL": "https://www.blucrates.com", + "shortName": "blu", + "chainId": 727, + "networkId": 727, + "slip44": 727 +} diff --git a/_data/chains/eip155-72778.json b/_data/chains/eip155-72778.json new file mode 100644 index 000000000000..a3c922684b58 --- /dev/null +++ b/_data/chains/eip155-72778.json @@ -0,0 +1,26 @@ +{ + "name": "CAGA crypto Ankara testnet", + "chain": "Ankara", + "rpc": [ + "https://www.ankara-cagacrypto.com", + "wss://wss.ankara-cagacrypto.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Caga", + "symbol": "CAGA", + "decimals": 18 + }, + "infoURL": "https://www.cagacrypto.com/", + "shortName": "caga", + "chainId": 72778, + "networkId": 72778, + "icon": "ankaracaga", + "explorers": [ + { + "name": "ankara", + "url": "https://explorer.ankara-cagacrypto.com", + "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-72992.json b/_data/chains/eip155-72992.json new file mode 100644 index 000000000000..f358f714523b --- /dev/null +++ b/_data/chains/eip155-72992.json @@ -0,0 +1,23 @@ +{ + "name": "Grok Chain Mainnet", + "chain": "Grok", + "icon": "grokicon", + "rpc": ["https://mainnet-rpc.grokchain.dev"], + "faucets": [], + "nativeCurrency": { + "name": "Groc", + "symbol": "GROC", + "decimals": 18 + }, + "infoURL": "https://grokchain.dev", + "shortName": "GrokChain", + "chainId": 72992, + "networkId": 72992, + "explorers": [ + { + "name": "GrokScan", + "url": "https://mainnet-explorer.grokchain.dev", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-73.json b/_data/chains/eip155-73.json new file mode 100644 index 000000000000..4205f2fc59df --- /dev/null +++ b/_data/chains/eip155-73.json @@ -0,0 +1,24 @@ +{ + "name": "FNCY", + "chain": "FNCY", + "rpc": ["https://fncy-seed1.fncy.world"], + "faucets": ["https://faucet-testnet.fncy.world"], + "nativeCurrency": { + "name": "FNCY", + "symbol": "FNCY", + "decimals": 18 + }, + "infoURL": "https://fncyscan.fncy.world", + "shortName": "FNCY", + "chainId": 73, + "networkId": 73, + "icon": "fncy", + "explorers": [ + { + "name": "fncy scan", + "url": "https://fncyscan.fncy.world", + "icon": "fncy", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-730.json b/_data/chains/eip155-730.json new file mode 100644 index 000000000000..53cbc11c3c78 --- /dev/null +++ b/_data/chains/eip155-730.json @@ -0,0 +1,23 @@ +{ + "name": "Lovely Network Mainnet", + "chain": "Lovely", + "icon": "lovely", + "rpc": ["https://rpc.lovely.network"], + "faucets": [], + "nativeCurrency": { + "name": "Lovely", + "symbol": "LOVELY", + "decimals": 18 + }, + "infoURL": "https://lovely.network", + "shortName": "LOVELY", + "chainId": 730, + "networkId": 730, + "explorers": [ + { + "name": "Lovely Network Mainnet", + "url": "https://scan.lovely.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7300.json b/_data/chains/eip155-7300.json new file mode 100644 index 000000000000..b5617ce3d547 --- /dev/null +++ b/_data/chains/eip155-7300.json @@ -0,0 +1,27 @@ +{ + "name": "XPLA Verse", + "chain": "XPLA Verse", + "icon": "xpla_verse", + "rpc": ["https://rpc-xpla-verse.xpla.dev"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://www.xpla.io", + "shortName": "XPLAVERSE", + "chainId": 7300, + "networkId": 7300, + "explorers": [ + { + "name": "XPLA Verse Explorer", + "url": "https://explorer-xpla-verse.xpla.dev", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } +} diff --git a/_data/chains/eip155-73114.json b/_data/chains/eip155-73114.json new file mode 100644 index 000000000000..fa7fd92062eb --- /dev/null +++ b/_data/chains/eip155-73114.json @@ -0,0 +1,26 @@ +{ + "name": "ICB Testnet", + "chain": "ICBT", + "icon": "icbnetwork", + "rpc": [ + "https://rpc1-testnet.icbnetwork.info/", + "https://rpc2-testnet.icbnetwork.info/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ICB Testnet Token", + "symbol": "ICBT", + "decimals": 18 + }, + "infoURL": "https://icb.network", + "shortName": "ICBT", + "chainId": 73114, + "networkId": 73114, + "explorers": [ + { + "name": "ICB Tesnet Explorer", + "url": "https://testnet.icbscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-73115.json b/_data/chains/eip155-73115.json new file mode 100644 index 000000000000..51afb05459e9 --- /dev/null +++ b/_data/chains/eip155-73115.json @@ -0,0 +1,26 @@ +{ + "name": "ICB Network", + "chain": "ICB", + "icon": "icbnetwork", + "rpc": [ + "https://rpc1-mainnet.icbnetwork.info/", + "https://rpc2-mainnet.icbnetwork.info/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ICB Native Token", + "symbol": "ICBX", + "decimals": 18 + }, + "infoURL": "https://icb.network", + "shortName": "ICBX", + "chainId": 73115, + "networkId": 73115, + "explorers": [ + { + "name": "ICB Explorer", + "url": "https://icbscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-73285.json b/_data/chains/eip155-73285.json new file mode 100644 index 000000000000..e89671852a0c --- /dev/null +++ b/_data/chains/eip155-73285.json @@ -0,0 +1,23 @@ +{ + "name": "Nebula", + "chain": "NEBULA", + "icon": "nebula", + "rpc": ["https://nebula-chain.com/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Nebula Cash", + "symbol": "NEBX", + "decimals": 18 + }, + "infoURL": "https://nebula-chain.com", + "shortName": "nebula", + "chainId": 73285, + "networkId": 73285, + "explorers": [ + { + "name": "Nebula Explorer", + "url": "https://nebxscan.nebula-chain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7331.json b/_data/chains/eip155-7331.json new file mode 100644 index 000000000000..970e542b2ed7 --- /dev/null +++ b/_data/chains/eip155-7331.json @@ -0,0 +1,22 @@ +{ + "name": "KLYNTAR", + "chain": "KLY", + "rpc": [ + "https://evm.klyntar.org/kly_evm_rpc", + "https://evm.klyntarscan.org/kly_evm_rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "KLYNTAR", + "symbol": "KLY", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://klyntar.org", + "shortName": "kly", + "chainId": 7331, + "networkId": 7331, + "icon": "klyntar", + "explorers": [], + "status": "incubating" +} diff --git a/_data/chains/eip155-7332.json b/_data/chains/eip155-7332.json new file mode 100644 index 000000000000..67eb7c0eec7b --- /dev/null +++ b/_data/chains/eip155-7332.json @@ -0,0 +1,36 @@ +{ + "name": "Horizen EON Mainnet", + "shortName": "EON", + "chain": "EON", + "icon": "eon", + "rpc": [ + "https://eon-rpc.horizenlabs.io/ethv1", + "https://rpc.ankr.com/horizen_eon" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Zencash", + "symbol": "ZEN", + "decimals": 18 + }, + "infoURL": "https://horizen.io/", + "chainId": 7332, + "networkId": 7332, + "slip44": 121, + "explorers": [ + { + "name": "Horizen EON Block Explorer", + "url": "https://eon-explorer.horizenlabs.io", + "icon": "eon", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7336.json b/_data/chains/eip155-7336.json new file mode 100644 index 000000000000..e986a9a96114 --- /dev/null +++ b/_data/chains/eip155-7336.json @@ -0,0 +1,24 @@ +{ + "name": "Pruv Testnet", + "chain": "PRUV Testnet", + "icon": "pruv", + "rpc": ["https://rpc.testnet.pruv.network", "wss://rpc.testnet.pruv.network"], + "faucets": ["https://faucet.testnet.pruv.network"], + "nativeCurrency": { + "name": "Pruv", + "symbol": "PRUV", + "decimals": 18 + }, + "infoURL": "https://pruv.gitbook.io/pruv-network/", + "shortName": "pruvtestnet", + "chainId": 7336, + "networkId": 7336, + "explorers": [ + { + "name": "Pruv Testnet Explorer", + "url": "https://explorer.testnet.pruv.network", + "icon": "pruv", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7337.json b/_data/chains/eip155-7337.json new file mode 100644 index 000000000000..063319da42c3 --- /dev/null +++ b/_data/chains/eip155-7337.json @@ -0,0 +1,24 @@ +{ + "name": "Pruv Mainnet", + "chain": "PRUV Mainnet", + "icon": "pruv", + "rpc": ["https://rpc.pruv.network", "wss://rpc.pruv.network"], + "faucets": [], + "nativeCurrency": { + "name": "Pruv", + "symbol": "PRUV", + "decimals": 18 + }, + "infoURL": "https://pruv.gitbook.io/pruv-network/", + "shortName": "pruvmainnet", + "chainId": 7337, + "networkId": 7337, + "explorers": [ + { + "name": "Pruv Explorer", + "url": "https://explorer.pruv.network", + "icon": "pruv", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7341.json b/_data/chains/eip155-7341.json index d89753c3f2b7..1ac4e47b071c 100644 --- a/_data/chains/eip155-7341.json +++ b/_data/chains/eip155-7341.json @@ -2,9 +2,7 @@ "name": "Shyft Mainnet", "chain": "SHYFT", "icon": "shyft", - "rpc": [ - "https://rpc.shyft.network/" - ], + "rpc": ["https://rpc.shyft.network/"], "faucets": [], "nativeCurrency": { "name": "Shyft", @@ -16,9 +14,11 @@ "chainId": 7341, "networkId": 7341, "slip44": 2147490989, - "explorers": [{ - "name": "Shyft BX", - "url": "https://bx.shyft.network", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "Shyft BX", + "url": "https://bx.shyft.network", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-7355310.json b/_data/chains/eip155-7355310.json new file mode 100644 index 000000000000..408bb4e64fe0 --- /dev/null +++ b/_data/chains/eip155-7355310.json @@ -0,0 +1,23 @@ +{ + "name": "OpenVessel", + "chain": "VSL", + "icon": "vsl", + "rpc": ["https://mainnet-external.openvessel.io"], + "faucets": [], + "nativeCurrency": { + "name": "Vessel ETH", + "symbol": "VETH", + "decimals": 18 + }, + "infoURL": "https://www.openvessel.io", + "shortName": "vsl", + "chainId": 7355310, + "networkId": 7355310, + "explorers": [ + { + "name": "openvessel-mainnet", + "url": "https://mainnet-explorer.openvessel.io", + "standard": "none" + } + ] +} 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-73799.json b/_data/chains/eip155-73799.json index dfc421aa098f..4c35b5a44fd4 100644 --- a/_data/chains/eip155-73799.json +++ b/_data/chains/eip155-73799.json @@ -5,9 +5,7 @@ "https://volta-rpc.energyweb.org", "wss://volta-rpc.energyweb.org/ws" ], - "faucets": [ - "https://voltafaucet.energyweb.org" - ], + "faucets": ["https://voltafaucet.energyweb.org"], "nativeCurrency": { "name": "Volta Token", "symbol": "VT", @@ -16,5 +14,6 @@ "infoURL": "https://energyweb.org", "shortName": "vt", "chainId": 73799, - "networkId": 73799 + "networkId": 73799, + "slip44": 1 } diff --git a/_data/chains/eip155-73927.json b/_data/chains/eip155-73927.json index 3df01fc81252..07176311dfcf 100644 --- a/_data/chains/eip155-73927.json +++ b/_data/chains/eip155-73927.json @@ -1,25 +1,24 @@ { "name": "Mixin Virtual Machine", "chain": "MVM", - "network": "mainnet", - "rpc": [ - "https://geth.mvm.dev" - ], + "rpc": ["https://geth.mvm.dev"], "faucets": [], "nativeCurrency": { - "name": "Mixin", - "symbol": "XIN", - "decimals": 8 + "name": "Ether", + "symbol": "ETH", + "decimals": 18 }, "infoURL": "https://mvm.dev", "shortName": "mvm", "chainId": 73927, "networkId": 73927, "icon": "mvm", - "explorers": [{ - "name": "mvmscan", - "url": "https://scan.mvm.dev", - "icon": "mvm", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "mvmscan", + "url": "https://scan.mvm.dev", + "icon": "mvm", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-74.json b/_data/chains/eip155-74.json index 660452609afd..67a09e14467e 100644 --- a/_data/chains/eip155-74.json +++ b/_data/chains/eip155-74.json @@ -1,26 +1,23 @@ { - "name": "IDChain Mainnet", - "chain": "IDChain", - "network": "mainnet", - "rpc": [ - "https://idchain.one/rpc/", - "wss://idchain.one/ws/" - ], - "faucets": [], - "nativeCurrency": { - "name": "EIDI", - "symbol": "EIDI", - "decimals": 18 - }, - "infoURL": "https://idchain.one/begin/", - "shortName": "idchain", - "chainId": 74, - "networkId": 74, - "icon": "idchain", - "explorers": [{ + "name": "IDChain Mainnet", + "chain": "IDChain", + "rpc": ["https://idchain.one/rpc/", "wss://idchain.one/ws/"], + "faucets": [], + "nativeCurrency": { + "name": "EIDI", + "symbol": "EIDI", + "decimals": 18 + }, + "infoURL": "https://idchain.one/begin/", + "shortName": "idchain", + "chainId": 74, + "networkId": 74, + "icon": "idchain", + "explorers": [ + { "name": "explorer", "url": "https://explorer.idchain.one", - "icon": "etherscan", "standard": "EIP3091" - }] - } \ No newline at end of file + } + ] +} diff --git a/_data/chains/eip155-740.json b/_data/chains/eip155-740.json new file mode 100644 index 000000000000..dbed37a2f4c1 --- /dev/null +++ b/_data/chains/eip155-740.json @@ -0,0 +1,24 @@ +{ + "name": "Canto Testnet", + "chain": "Canto Tesnet", + "rpc": ["https://eth.plexnode.wtf/"], + "faucets": [], + "nativeCurrency": { + "name": "Canto", + "symbol": "CANTO", + "decimals": 18 + }, + "infoURL": "https://canto.io", + "shortName": "tcanto", + "chainId": 740, + "networkId": 740, + "slip44": 1, + "explorers": [ + { + "name": "Canto Tesnet Explorer (Neobase)", + "url": "https://testnet-explorer.canto.neobase.one", + "standard": "none" + } + ], + "status": "deprecated" +} diff --git a/_data/chains/eip155-741.json b/_data/chains/eip155-741.json new file mode 100644 index 000000000000..828fc6736e8e --- /dev/null +++ b/_data/chains/eip155-741.json @@ -0,0 +1,24 @@ +{ + "name": "Vention Smart Chain Testnet", + "chain": "VSCT", + "icon": "ventionTestnet", + "rpc": ["https://node-testnet.vention.network"], + "faucets": ["https://faucet.vention.network"], + "nativeCurrency": { + "name": "VNT", + "symbol": "VNT", + "decimals": 18 + }, + "infoURL": "https://testnet.ventionscan.io", + "shortName": "vsct", + "chainId": 741, + "networkId": 741, + "slip44": 1, + "explorers": [ + { + "name": "ventionscan", + "url": "https://testnet.ventionscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-742.json b/_data/chains/eip155-742.json new file mode 100644 index 000000000000..60eba9025b5c --- /dev/null +++ b/_data/chains/eip155-742.json @@ -0,0 +1,23 @@ +{ + "name": "Script Testnet", + "chain": "SPAY", + "rpc": ["https://testeth-rpc-api.script.tv/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Script", + "symbol": "SPAY", + "decimals": 18 + }, + "infoURL": "https://token.script.tv", + "shortName": "SPAY", + "chainId": 742, + "networkId": 742, + "slip44": 1, + "explorers": [ + { + "name": "Script Explorer", + "url": "https://explorer.script.tv", + "standard": "none" + } + ] +} 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-743111.json b/_data/chains/eip155-743111.json new file mode 100644 index 000000000000..f10440613420 --- /dev/null +++ b/_data/chains/eip155-743111.json @@ -0,0 +1,29 @@ +{ + "name": "Hemi Sepolia", + "chain": "ETH", + "rpc": ["https://testnet.rpc.hemi.network/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://hemi.xyz", + "shortName": "hemi-sep", + "chainId": 743111, + "networkId": 743111, + "icon": "hemi", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.explorer.hemi.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + }, + "status": "active" +} diff --git a/_data/chains/eip155-747.json b/_data/chains/eip155-747.json new file mode 100644 index 000000000000..656713357cfb --- /dev/null +++ b/_data/chains/eip155-747.json @@ -0,0 +1,23 @@ +{ + "name": "Flow EVM Mainnet", + "chain": "Flow", + "rpc": ["https://mainnet.evm.nodes.onflow.org"], + "faucets": [], + "nativeCurrency": { + "name": "FLOW", + "symbol": "FLOW", + "decimals": 18 + }, + "infoURL": "https://developers.flow.com/evm/about", + "shortName": "flow-mainnet", + "chainId": 747, + "networkId": 747, + "icon": "flowevm", + "explorers": [ + { + "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-7484.json b/_data/chains/eip155-7484.json new file mode 100644 index 000000000000..30b668faec94 --- /dev/null +++ b/_data/chains/eip155-7484.json @@ -0,0 +1,23 @@ +{ + "name": "Raba Network Mainnet", + "chain": "Raba", + "icon": "raba", + "rpc": ["https://rpc.x.raba.app/", "wss://rpc.x.raba.app/ws/"], + "faucets": [], + "nativeCurrency": { + "name": "Raba", + "symbol": "RABA", + "decimals": 18 + }, + "infoURL": "https://x.raba.app/", + "shortName": "raba", + "chainId": 7484, + "networkId": 7484, + "explorers": [ + { + "name": "raba", + "url": "https://x.raba.app/explorer", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-75.json b/_data/chains/eip155-75.json new file mode 100644 index 000000000000..3133357c4551 --- /dev/null +++ b/_data/chains/eip155-75.json @@ -0,0 +1,31 @@ +{ + "name": "Decimal Smart Chain Mainnet", + "chain": "DSC", + "rpc": [ + "https://node.decimalchain.com/web3/", + "https://node1-mainnet.decimalchain.com/web3/", + "https://node2-mainnet.decimalchain.com/web3/", + "https://node3-mainnet.decimalchain.com/web3/", + "https://node4-mainnet.decimalchain.com/web3/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Decimal", + "symbol": "DEL", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://decimalchain.com", + "shortName": "DSC", + "chainId": 75, + "networkId": 75, + "icon": "dsc", + "explorers": [ + { + "name": "DSC Explorer Mainnet", + "url": "https://explorer.decimalchain.com", + "icon": "dsc", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-75000.json b/_data/chains/eip155-75000.json new file mode 100644 index 000000000000..6e840fc41cf4 --- /dev/null +++ b/_data/chains/eip155-75000.json @@ -0,0 +1,23 @@ +{ + "name": "ResinCoin Mainnet", + "chain": "RESIN", + "icon": "resincoin", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "RESIN", + "decimals": 18 + }, + "infoURL": "https://resincoin.dev", + "shortName": "resin", + "chainId": 75000, + "networkId": 75000, + "explorers": [ + { + "name": "ResinScan", + "url": "https://explorer.resincoin.dev", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-751230.json b/_data/chains/eip155-751230.json new file mode 100644 index 000000000000..fd93b4739c4c --- /dev/null +++ b/_data/chains/eip155-751230.json @@ -0,0 +1,24 @@ +{ + "name": "Bear Network Chain Testnet", + "chain": "BRNKCTEST", + "icon": "brnkc", + "rpc": ["https://brnkc-test.bearnetwork.net"], + "faucets": ["https://faucet.bearnetwork.net"], + "nativeCurrency": { + "name": "Bear Network Chain Testnet Token", + "symbol": "tBRNKC", + "decimals": 18 + }, + "infoURL": "https://bearnetwork.net", + "shortName": "BRNKCTEST", + "chainId": 751230, + "networkId": 751230, + "slip44": 1, + "explorers": [ + { + "name": "brnktestscan", + "url": "https://brnktest-scan.bearnetwork.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7518.json b/_data/chains/eip155-7518.json new file mode 100644 index 000000000000..a70deaf5d4e6 --- /dev/null +++ b/_data/chains/eip155-7518.json @@ -0,0 +1,24 @@ +{ + "name": "MEVerse Chain Mainnet", + "chain": "MEVerse", + "rpc": ["https://rpc.meversemainnet.io"], + "faucets": [], + "nativeCurrency": { + "name": "MEVerse", + "symbol": "MEV", + "decimals": 18 + }, + "infoURL": "https://www.meverse.sg", + "shortName": "MEV", + "chainId": 7518, + "networkId": 7518, + "icon": "meverse", + "explorers": [ + { + "name": "MEVerse Chain Explorer", + "url": "https://www.meversescan.io", + "standard": "none", + "icon": "meverse" + } + ] +} 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 new file mode 100644 index 000000000000..4a0a7b0a5b78 --- /dev/null +++ b/_data/chains/eip155-75512.json @@ -0,0 +1,22 @@ +{ + "name": "GEEK Verse Mainnet", + "chain": "GEEK", + "rpc": ["https://rpc.geekout-pte.com"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://www.geekout-pte.com", + "shortName": "GEEK", + "chainId": 75512, + "networkId": 75512, + "explorers": [ + { + "name": "Geek Explorer", + "url": "https://explorer.geekout-pte.com", + "standard": "EIP3091" + } + ] +} 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-7560.json b/_data/chains/eip155-7560.json new file mode 100644 index 000000000000..f60b21bdaece --- /dev/null +++ b/_data/chains/eip155-7560.json @@ -0,0 +1,33 @@ +{ + "name": "Cyber Mainnet", + "chain": "Cyber", + "rpc": [ + "https://cyber.alt.technology/", + "wss://cyber-ws.alt.technology/", + "https://rpc.cyber.co/", + "wss://rpc.cyber.co/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "cyber", + "infoURL": "https://cyber.co/", + "shortName": "cyeth", + "chainId": 7560, + "networkId": 7560, + "explorers": [ + { + "name": "Cyber Mainnet Explorer", + "url": "https://cyberscan.co", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://cyber.co/bridge" }] + } +} 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-7575.json b/_data/chains/eip155-7575.json new file mode 100644 index 000000000000..dc6f702af36d --- /dev/null +++ b/_data/chains/eip155-7575.json @@ -0,0 +1,24 @@ +{ + "name": "ADIL Testnet", + "chain": "ADIL", + "icon": "adil", + "rpc": ["https://testnet.adilchain-rpc.io"], + "faucets": ["https://testnet-faucet.adil-scan.io"], + "nativeCurrency": { + "name": "Testnet ADIL", + "symbol": "ADIL", + "decimals": 18 + }, + "infoURL": "https://adilchain.io", + "shortName": "tadil", + "chainId": 7575, + "networkId": 7575, + "slip44": 1, + "explorers": [ + { + "name": "ADIL Testnet Explorer", + "url": "https://testnet.adilchain-scan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7576.json b/_data/chains/eip155-7576.json new file mode 100644 index 000000000000..5abf2a01d5d1 --- /dev/null +++ b/_data/chains/eip155-7576.json @@ -0,0 +1,23 @@ +{ + "name": "Adil Chain V2 Mainnet", + "chain": "ADIL", + "icon": "adil", + "rpc": ["https://adilchain-rpc.io"], + "faucets": [], + "nativeCurrency": { + "name": "ADIL", + "symbol": "ADIL", + "decimals": 18 + }, + "infoURL": "https://adilchain.io", + "shortName": "adil", + "chainId": 7576, + "networkId": 7576, + "explorers": [ + { + "name": "ADIL Mainnet Explorer", + "url": "https://adilchain-scan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-76.json b/_data/chains/eip155-76.json index f1de7988d936..5e2340d9fd11 100644 --- a/_data/chains/eip155-76.json +++ b/_data/chains/eip155-76.json @@ -1,9 +1,7 @@ { "name": "Mix", "chain": "MIX", - "rpc": [ - "https://rpc2.mix-blockchain.org:8647" - ], + "rpc": ["https://rpc2.mix-blockchain.org:8647"], "faucets": [], "nativeCurrency": { "name": "Mix Ether", diff --git a/_data/chains/eip155-761412.json b/_data/chains/eip155-761412.json new file mode 100644 index 000000000000..649540c81e9f --- /dev/null +++ b/_data/chains/eip155-761412.json @@ -0,0 +1,23 @@ +{ + "name": "Miexs Smartchain", + "chain": "MiexsSmartchain", + "icon": "miexs", + "rpc": ["https://mainnet-rpc.miexs.com"], + "faucets": [], + "nativeCurrency": { + "name": "Miexs Coin", + "symbol": "MIX", + "decimals": 18 + }, + "infoURL": "https://miexs.com", + "shortName": "Miexs", + "chainId": 761412, + "networkId": 761412, + "explorers": [ + { + "name": "Miexs Smartchain Explorer", + "url": "https://miexs.com", + "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..c91799bd64bc --- /dev/null +++ b/_data/chains/eip155-763374.json @@ -0,0 +1,19 @@ +{ + "name": "Surge deprecated Testnet", + "chain": "Surge deprecated Testnet", + "status": "deprecated", + "rpc": [], + "faucets": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "surge-deprecated-testnet", + "chainId": 763374, + "networkId": 763374, + "icon": "surge-testnet", + "explorers": [] +} diff --git a/_data/chains/eip155-763375.json b/_data/chains/eip155-763375.json new file mode 100644 index 000000000000..291be7c19a5a --- /dev/null +++ b/_data/chains/eip155-763375.json @@ -0,0 +1,25 @@ +{ + "name": "Surge Testnet", + "chain": "Surge Testnet", + "rpc": ["https://l2-rpc.hoodi.surge.wtf", "wss://l2-ws.hoodi.surge.wtf"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://surge.wtf", + "shortName": "surge-testnet", + "chainId": 763375, + "networkId": 763375, + "icon": "surge-testnet", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.hoodi.surge.wtf", + "standard": "EIP3091", + "icon": "blockscout" + } + ] +} 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 new file mode 100644 index 000000000000..e69db215f27c --- /dev/null +++ b/_data/chains/eip155-766.json @@ -0,0 +1,25 @@ +{ + "name": "QL1", + "chain": "QOM", + "status": "incubating", + "rpc": ["https://rpc.qom.one", "https://evm-rpc-ql1.foxxone.one"], + "faucets": [], + "nativeCurrency": { + "name": "Shiba Predator", + "symbol": "QOM", + "decimals": 18 + }, + "infoURL": "https://qom.one", + "shortName": "qom", + "chainId": 766, + "networkId": 766, + "icon": "qom", + "explorers": [ + { + "name": "QL1 Mainnet Explorer", + "url": "https://scan.qom.one", + "icon": "qom", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7668.json b/_data/chains/eip155-7668.json new file mode 100644 index 000000000000..9d58e17db557 --- /dev/null +++ b/_data/chains/eip155-7668.json @@ -0,0 +1,25 @@ +{ + "name": "The Root Network - Mainnet", + "chain": "TRN", + "rpc": [ + "https://root.rootnet.live/archive", + "wss://root.rootnet.live/archive/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "XRP", + "symbol": "XRP", + "decimals": 6 + }, + "infoURL": "https://www.futureverse.com/technology/root", + "shortName": "trn-mainnet", + "chainId": 7668, + "networkId": 7668, + "explorers": [ + { + "name": "rootnet", + "url": "https://explorer.rootnet.live", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7668378.json b/_data/chains/eip155-7668378.json new file mode 100644 index 000000000000..d5f185e24d19 --- /dev/null +++ b/_data/chains/eip155-7668378.json @@ -0,0 +1,26 @@ +{ + "name": "QL1 Testnet", + "chain": "QOM", + "status": "incubating", + "rpc": ["https://rpc.testnet.qom.one"], + "faucets": ["https://faucet.qom.one"], + "nativeCurrency": { + "name": "Shiba Predator", + "symbol": "QOM", + "decimals": 18 + }, + "infoURL": "https://qom.one", + "shortName": "tqom", + "chainId": 7668378, + "networkId": 7668378, + "slip44": 1, + "icon": "qom", + "explorers": [ + { + "name": "QL1 Testnet Explorer", + "url": "https://testnet.qom.one", + "icon": "qom", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7672.json b/_data/chains/eip155-7672.json new file mode 100644 index 000000000000..4c65213db675 --- /dev/null +++ b/_data/chains/eip155-7672.json @@ -0,0 +1,26 @@ +{ + "name": "The Root Network - Porcini Testnet", + "chain": "TRN", + "rpc": [ + "https://porcini.rootnet.app/archive", + "wss://porcini.rootnet.app/archive/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "XRP", + "symbol": "XRP", + "decimals": 6 + }, + "infoURL": "https://www.futureverse.com/technology/root", + "shortName": "trn-porcini", + "chainId": 7672, + "networkId": 7672, + "slip44": 1, + "explorers": [ + { + "name": "rootnet", + "url": "https://explorer.rootnet.cloud", + "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-77.json b/_data/chains/eip155-77.json index 17e05f1cdb56..9a2ebbf151e6 100644 --- a/_data/chains/eip155-77.json +++ b/_data/chains/eip155-77.json @@ -6,9 +6,7 @@ "wss://sokol.poa.network/wss", "ws://sokol.poa.network:8546" ], - "faucets": [ - "https://faucet.poa.network" - ], + "faucets": [], "nativeCurrency": { "name": "POA Sokol Ether", "symbol": "SPOA", @@ -18,10 +16,13 @@ "shortName": "spoa", "chainId": 77, "networkId": 77, - - "explorers": [{ - "name": "blockscout", - "url": "https://blockscout.com/poa/sokol", - "standard": "none" - }] + + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.com/poa/sokol", + "icon": "blockscout", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-7700.json b/_data/chains/eip155-7700.json new file mode 100644 index 000000000000..f3e3534f1097 --- /dev/null +++ b/_data/chains/eip155-7700.json @@ -0,0 +1,38 @@ +{ + "name": "Canto", + "chain": "Canto", + "rpc": [ + "https://canto.slingshot.finance", + "https://canto-rpc.ansybl.io", + "https://mainnode.plexnode.org:8545", + "https://canto.gravitychain.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Canto", + "symbol": "CANTO", + "decimals": 18 + }, + "infoURL": "https://canto.io", + "shortName": "canto", + "chainId": 7700, + "networkId": 7700, + "explorers": [ + { + "name": "Canto Explorer (OKLink)", + "url": "https://www.oklink.com/canto", + "standard": "EIP3091" + }, + { + "name": "Canto EVM Explorer (Blockscout)", + "url": "https://tuber.build", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://canto.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-77001.json b/_data/chains/eip155-77001.json new file mode 100644 index 000000000000..30c7319abd29 --- /dev/null +++ b/_data/chains/eip155-77001.json @@ -0,0 +1,27 @@ +{ + "name": "BORAchain mainnet", + "chain": "BORA", + "icon": "bora", + "rpc": [ + "https://public-node.api.boraportal.com/bora/mainnet", + "https://public-node.api.boraportal.io/bora/mainnet" + ], + "faucets": [], + "nativeCurrency": { + "name": "BORA", + "symbol": "BORA", + "decimals": 18 + }, + "infoURL": "https://www.boraportal.com", + "shortName": "BORAchain", + "chainId": 77001, + "networkId": 77001, + "slip44": 8217, + "explorers": [ + { + "name": "BORAchainscope", + "url": "https://scope.boraportal.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7701.json b/_data/chains/eip155-7701.json new file mode 100644 index 000000000000..6502ef0ffcc7 --- /dev/null +++ b/_data/chains/eip155-7701.json @@ -0,0 +1,29 @@ +{ + "name": "Canto Tesnet", + "chain": "Canto", + "rpc": ["https://testnet-archive.plexnode.wtf"], + "faucets": [], + "nativeCurrency": { + "name": "Testnet Canto", + "symbol": "CANTO", + "decimals": 18 + }, + "infoURL": "https://canto.io", + "shortName": "TestnetCanto", + "chainId": 7701, + "networkId": 7701, + "slip44": 1, + "explorers": [ + { + "name": "Canto Testnet EVM Explorer (Blockscout)", + "url": "https://testnet.tuber.build", + "standard": "none" + }, + { + "name": "dexguru", + "url": "https://canto-test.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-77238.json b/_data/chains/eip155-77238.json new file mode 100644 index 000000000000..02a9e9598cf5 --- /dev/null +++ b/_data/chains/eip155-77238.json @@ -0,0 +1,24 @@ +{ + "name": "Foundry Chain Testnet", + "chain": "tFNC", + "icon": "fnc", + "rpc": ["https://testnet-rpc.foundryscan.org/"], + "faucets": ["https://faucet.foundryscan.org"], + "nativeCurrency": { + "name": "Foundry Chain Testnet", + "symbol": "tFNC", + "decimals": 18 + }, + "infoURL": "https://foundrychain.org", + "shortName": "fnc", + "chainId": 77238, + "networkId": 77238, + "slip44": 1, + "explorers": [ + { + "name": "Foundry Scan Testnet", + "url": "https://testnet-explorer.foundryscan.org", + "standard": "EIP3091" + } + ] +} 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-776.json b/_data/chains/eip155-776.json index 1da7cf75b40a..b04bf65c30d3 100644 --- a/_data/chains/eip155-776.json +++ b/_data/chains/eip155-776.json @@ -1,13 +1,8 @@ { "name": "OpenChain Testnet", "chain": "OpenChain Testnet", - "rpc": [ - "http://mainnet.openchain.info:8545", - "https://mainnet1.openchain.info" - ], - "faucets": [ - "https://faucet.openchain.info/" - ], + "rpc": [], + "faucets": ["https://faucet.openchain.info/"], "nativeCurrency": { "name": "Openchain Testnet", "symbol": "TOPC", @@ -17,6 +12,7 @@ "shortName": "opc", "chainId": 776, "networkId": 776, + "slip44": 1, "explorers": [ { "name": "OPEN CHAIN TESTNET", diff --git a/_data/chains/eip155-77612.json b/_data/chains/eip155-77612.json new file mode 100644 index 000000000000..a08847f84c4c --- /dev/null +++ b/_data/chains/eip155-77612.json @@ -0,0 +1,23 @@ +{ + "name": "Vention Smart Chain Mainnet", + "chain": "VSC", + "icon": "vention", + "rpc": ["https://mainnet-rpc.vention.network"], + "faucets": ["https://faucet.vention.network"], + "nativeCurrency": { + "name": "VNT", + "symbol": "VNT", + "decimals": 18 + }, + "infoURL": "https://ventionscan.io", + "shortName": "vscm", + "chainId": 77612, + "networkId": 77612, + "explorers": [ + { + "name": "ventionscan", + "url": "https://ventionscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7762959.json b/_data/chains/eip155-7762959.json index de129a07c21a..93cd9b2a55d9 100644 --- a/_data/chains/eip155-7762959.json +++ b/_data/chains/eip155-7762959.json @@ -1,9 +1,7 @@ { "name": "Musicoin", "chain": "MUSIC", - "rpc": [ - "https://mewapi.musicoin.tw" - ], + "rpc": ["https://mewapi.musicoin.tw"], "faucets": [], "nativeCurrency": { "name": "Musicoin", 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-776877.json b/_data/chains/eip155-776877.json new file mode 100644 index 000000000000..d957247a677a --- /dev/null +++ b/_data/chains/eip155-776877.json @@ -0,0 +1,22 @@ +{ + "name": "Modularium", + "chain": "EVMCC", + "rpc": ["https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network"], + "faucets": [], + "nativeCurrency": { + "name": "Modularium", + "symbol": "MDM", + "decimals": 18 + }, + "infoURL": "https://www.rmrk.app/", + "shortName": "mdlrm", + "chainId": 776877, + "networkId": 776877, + "explorers": [ + { + "name": "Tanssi Explorer", + "url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-777.json b/_data/chains/eip155-777.json index 682fcb74664d..85d904aa7762 100644 --- a/_data/chains/eip155-777.json +++ b/_data/chains/eip155-777.json @@ -1,9 +1,7 @@ { "name": "cheapETH", "chain": "cheapETH", - "rpc": [ - "https://node.cheapeth.org/rpc" - ], + "rpc": ["https://node.cheapeth.org/rpc"], "faucets": [], "nativeCurrency": { "name": "cTH", 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-7771.json b/_data/chains/eip155-7771.json new file mode 100644 index 000000000000..26b6a0a91d14 --- /dev/null +++ b/_data/chains/eip155-7771.json @@ -0,0 +1,24 @@ +{ + "name": "Bitrock Testnet", + "chain": "Bitrock", + "icon": "bitrock", + "rpc": ["https://testnet.bit-rock.io"], + "faucets": ["https://faucet.bit-rock.io"], + "nativeCurrency": { + "name": "BITROCK", + "symbol": "BROCK", + "decimals": 18 + }, + "infoURL": "https://bit-rock.io", + "shortName": "tbitrock", + "chainId": 7771, + "networkId": 7771, + "slip44": 1, + "explorers": [ + { + "name": "Bitrock Testnet Explorer", + "url": "https://testnetscan.bit-rock.io", + "standard": "EIP3091" + } + ] +} 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-7775.json b/_data/chains/eip155-7775.json new file mode 100644 index 000000000000..cd2dc0d976e6 --- /dev/null +++ b/_data/chains/eip155-7775.json @@ -0,0 +1,24 @@ +{ + "name": "GDCC TESTNET", + "chain": "GDCC", + "icon": "gdcc", + "rpc": ["https://testnet-rpc1.gdccscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "GDCC", + "symbol": "GDCC", + "decimals": 18 + }, + "infoURL": "https://gdcchain.com", + "shortName": "GDCC", + "chainId": 7775, + "networkId": 7775, + + "explorers": [ + { + "name": "GDCC", + "url": "https://testnet.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-7777.json b/_data/chains/eip155-7777.json index 5c494de2c16c..ac93c62bb908 100644 --- a/_data/chains/eip155-7777.json +++ b/_data/chains/eip155-7777.json @@ -1,29 +1,29 @@ { - "name": "Rise of the Warbots Testnet", - "chain": "nmactest", - "rpc": [ - "https://testnet1.riseofthewarbots.com", - "https://testnet2.riseofthewarbots.com", - "https://testnet3.riseofthewarbots.com", - "https://testnet4.riseofthewarbots.com", - "https://testnet5.riseofthewarbots.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Nano Machines", - "symbol": "NMAC", - "decimals": 18 - }, - "infoURL": "https://riseofthewarbots.com/", - "shortName": "Rise of the Warbots Testnet", - "chainId": 7777, - "networkId": 7777, - "explorers": [ - { - "name": "avascan", - "url": "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", - "standard": "none" - } - ] - } - \ No newline at end of file + "name": "Rise of the Warbots Testnet", + "chain": "nmactest", + "rpc": [ + "https://testnet1.riseofthewarbots.com", + "https://testnet2.riseofthewarbots.com", + "https://testnet3.riseofthewarbots.com", + "https://testnet4.riseofthewarbots.com", + "https://testnet5.riseofthewarbots.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Nano Machines", + "symbol": "NMAC", + "decimals": 18 + }, + "infoURL": "https://riseofthewarbots.com/", + "shortName": "RiseOfTheWarbotsTestnet", + "chainId": 7777, + "networkId": 7777, + "slip44": 1, + "explorers": [ + { + "name": "avascan", + "url": "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-77777.json b/_data/chains/eip155-77777.json new file mode 100644 index 000000000000..2de9f61cf97d --- /dev/null +++ b/_data/chains/eip155-77777.json @@ -0,0 +1,26 @@ +{ + "name": "Toronet Mainnet", + "chain": "Toronet", + "icon": "toronet", + "rpc": ["https://www.toronet.org/rpc2/"], + "faucets": [], + "nativeCurrency": { + "name": "Toroe", + "symbol": "TOROE", + "decimals": 18 + }, + "infoURL": "https://toronet.org", + "shortName": "Toronet", + "chainId": 77777, + "networkId": 77777, + "ens": { + "registry": "0x1f45a71f4aAD769E27c969c4359E0e250C67165c" + }, + "explorers": [ + { + "name": "toronet_explorer", + "url": "https://toronet.org/explorer", + "standard": "none" + } + ] +} 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-7777777.json b/_data/chains/eip155-7777777.json new file mode 100644 index 000000000000..31cb724de8f2 --- /dev/null +++ b/_data/chains/eip155-7777777.json @@ -0,0 +1,23 @@ +{ + "name": "Zora", + "chain": "ETH", + "rpc": ["https://rpc.zora.energy/"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "zora", + "infoURL": "https://zora.energy", + "shortName": "zora", + "chainId": 7777777, + "networkId": 7777777, + "explorers": [ + { + "name": "Zora Network Explorer", + "url": "https://explorer.zora.energy", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7778.json b/_data/chains/eip155-7778.json new file mode 100644 index 000000000000..c1cf0959c42a --- /dev/null +++ b/_data/chains/eip155-7778.json @@ -0,0 +1,29 @@ +{ + "name": "Orenium Mainnet Protocol", + "chain": "ORE", + "rpc": [ + "https://validator-mainnet.orenium.org", + "https://rpc-oracle-mainnet.orenium.org", + "https://portalmainnet.orenium.org" + ], + "nativeCurrency": { + "name": "ORENIUM", + "symbol": "ORE", + "decimals": 18 + }, + "infoURL": "https://orenium.org", + "shortName": "ore", + "chainId": 7778, + "networkId": 7778, + "slip44": 1, + "icon": "ore", + "faucets": [], + "explorers": [ + { + "name": "ORE Mainnet Explorer", + "icon": "ore", + "url": "https://oreniumscan.org", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-77787778.json b/_data/chains/eip155-77787778.json new file mode 100644 index 000000000000..aaa563acd05b --- /dev/null +++ b/_data/chains/eip155-77787778.json @@ -0,0 +1,31 @@ +{ + "name": "0xHash Testnet", + "chain": "HETH", + "icon": "ethereum", + "rpc": ["https://rpc-test.0xhash.io"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "0xHash", + "symbol": "HETH", + "decimals": 18 + }, + "infoURL": "https://0xhash.io", + "shortName": "HETH", + "chainId": 77787778, + "networkId": 77787778, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://test.0xhashscan.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://app.optimism.io/bridge/deposit" }] + } +} 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-7798.json b/_data/chains/eip155-7798.json new file mode 100644 index 000000000000..11961ae81062 --- /dev/null +++ b/_data/chains/eip155-7798.json @@ -0,0 +1,26 @@ +{ + "name": "OpenEX LONG Testnet", + "title": "OpenEX LONG Testnet", + "chain": "OEX", + "icon": "oex", + "rpc": ["https://long.rpc.openex.network/"], + "faucets": ["https://long.hub.openex.network/faucet"], + "nativeCurrency": { + "name": "USDT Testnet", + "symbol": "USDT", + "decimals": 18 + }, + "infoURL": "https://openex.network", + "shortName": "oex", + "chainId": 7798, + "networkId": 7798, + "slip44": 1, + "explorers": [ + { + "name": "OpenEX Long Testnet Explorer", + "url": "https://scan.long.openex.network", + "icon": "oex", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-78.json b/_data/chains/eip155-78.json index 099ab160ca83..28e795065afc 100644 --- a/_data/chains/eip155-78.json +++ b/_data/chains/eip155-78.json @@ -1,9 +1,7 @@ { "name": "PrimusChain mainnet", "chain": "PC", - "rpc": [ - "https://ethnode.primusmoney.com/mainnet" - ], + "rpc": ["https://ethnode.primusmoney.com/mainnet"], "faucets": [], "nativeCurrency": { "name": "Primus Ether", @@ -14,4 +12,4 @@ "shortName": "primuschain", "chainId": 78, "networkId": 78 -} \ No newline at end of file +} diff --git a/_data/chains/eip155-78110.json b/_data/chains/eip155-78110.json index c6c89ab749ae..f11a55075728 100644 --- a/_data/chains/eip155-78110.json +++ b/_data/chains/eip155-78110.json @@ -1,9 +1,7 @@ { "name": "Firenze test network", "chain": "ETH", - "rpc": [ - "https://ethnode.primusmoney.com/firenze" - ], + "rpc": ["https://ethnode.primusmoney.com/firenze"], "faucets": [], "nativeCurrency": { "name": "Firenze Ether", @@ -13,5 +11,6 @@ "infoURL": "https://primusmoney.com", "shortName": "firenze", "chainId": 78110, - "networkId": 78110 -} \ No newline at end of file + "networkId": 78110, + "slip44": 1 +} diff --git a/_data/chains/eip155-78281.json b/_data/chains/eip155-78281.json new file mode 100644 index 000000000000..2697f8a12e99 --- /dev/null +++ b/_data/chains/eip155-78281.json @@ -0,0 +1,29 @@ +{ + "name": "Dragonfly Mainnet (Hexapod)", + "chain": "Dragonfly", + "icon": "dragonfly", + "rpc": [ + "https://dragonfly-rpc.switch.ch", + "https://dragonfly-rpc.kore-technologies.ch", + "https://dragonfly-rpc.phoenix-systems.io", + "https://dragonfly-rpc.block-spirit.ch" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dragonfly", + "symbol": "DFLY", + "decimals": 18 + }, + "infoURL": "https://hexapod.network", + "shortName": "dfly", + "chainId": 78281, + "networkId": 78281, + "explorers": [ + { + "name": "Dragonfly Blockscout", + "url": "https://blockscout.dragonfly.hexapod.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-78430.json b/_data/chains/eip155-78430.json new file mode 100644 index 000000000000..9d1f77a8f1dd --- /dev/null +++ b/_data/chains/eip155-78430.json @@ -0,0 +1,28 @@ +{ + "name": "Amplify Subnet", + "chain": "AMPLIFY", + "rpc": ["https://subnets.avax.network/amplify/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "AMP", + "symbol": "AMP", + "decimals": 18 + }, + "infoURL": "https://www.avax.network", + "shortName": "amplify", + "chainId": 78430, + "networkId": 78430, + "slip44": 1, + "explorers": [ + { + "name": "AMPLIFY Explorer", + "url": "https://subnets-test.avax.network/amplify", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-78431.json b/_data/chains/eip155-78431.json new file mode 100644 index 000000000000..c9781a295529 --- /dev/null +++ b/_data/chains/eip155-78431.json @@ -0,0 +1,28 @@ +{ + "name": "Bulletin Subnet", + "chain": "BULLETIN", + "rpc": ["https://subnets.avax.network/bulletin/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "BLT", + "symbol": "BLT", + "decimals": 18 + }, + "infoURL": "https://www.avax.network", + "shortName": "bulletin", + "chainId": 78431, + "networkId": 78431, + "slip44": 1, + "explorers": [ + { + "name": "BULLETIN Explorer", + "url": "https://subnets-test.avax.network/bulletin", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-78432.json b/_data/chains/eip155-78432.json new file mode 100644 index 000000000000..2585a25cb4db --- /dev/null +++ b/_data/chains/eip155-78432.json @@ -0,0 +1,28 @@ +{ + "name": "Conduit Subnet", + "chain": "CONDUIT", + "rpc": ["https://subnets.avax.network/conduit/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "CON", + "symbol": "CON", + "decimals": 18 + }, + "infoURL": "https://www.avax.network", + "shortName": "conduit", + "chainId": 78432, + "networkId": 78432, + "slip44": 1, + "explorers": [ + { + "name": "CONDUIT Explorer", + "url": "https://subnets-test.avax.network/conduit", + "standard": "EIP3091" + } + ] +} 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-786.json b/_data/chains/eip155-786.json new file mode 100644 index 000000000000..995b3c8e04a4 --- /dev/null +++ b/_data/chains/eip155-786.json @@ -0,0 +1,27 @@ +{ + "name": "MAAL Chain", + "chain": "MAAL", + "icon": "maal", + "rpc": [ + "https://node1-mainnet.maalscan.io/", + "https://node2-mainnet.maalscan.io/", + "https://node3-mainnet.maalscan.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "MAAL", + "symbol": "MAAL", + "decimals": 18 + }, + "infoURL": "https://www.maalchain.com/", + "shortName": "maal", + "chainId": 786, + "networkId": 786, + "explorers": [ + { + "name": "maalscan", + "url": "https://maalscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7860.json b/_data/chains/eip155-7860.json new file mode 100644 index 000000000000..e27f4f355ea8 --- /dev/null +++ b/_data/chains/eip155-7860.json @@ -0,0 +1,24 @@ +{ + "name": "MaalChain Testnet", + "chain": "MaalChain Testnet", + "icon": "maal-test", + "rpc": ["https://node1.maalscan.io/", "https://rpc-bntest.maalscan.io/"], + "faucets": ["https://faucet-testnet.maalscan.io/"], + "nativeCurrency": { + "name": "MAAL", + "symbol": "MAAL", + "decimals": 18 + }, + "infoURL": "https://www.maalchain.com/", + "shortName": "maal-test", + "chainId": 7860, + "networkId": 7860, + "slip44": 1, + "explorers": [ + { + "name": "maalscan testnet", + "url": "https://testnet.maalscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-78600.json b/_data/chains/eip155-78600.json new file mode 100644 index 000000000000..46ac9d3baad9 --- /dev/null +++ b/_data/chains/eip155-78600.json @@ -0,0 +1,29 @@ +{ + "name": "Vanguard", + "title": "Vanar Testnet Vanguard", + "chain": "VANAR", + "rpc": [ + "https://rpc-vanguard.vanarchain.com", + "wss://ws-vanguard.vanarchain.com" + ], + "faucets": ["https://faucet.vanarchain.com"], + "nativeCurrency": { + "name": "Vanguard Vanry", + "symbol": "VANRY", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }], + "infoURL": "https://vanarchain.com", + "shortName": "vanguard", + "chainId": 78600, + "networkId": 78600, + "icon": "vanguard", + "explorers": [ + { + "name": "Vanguard Explorer", + "url": "https://explorer-vanguard.vanarchain.com", + "icon": "vanguard", + "standard": "EIP3091" + } + ] +} 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-787.json b/_data/chains/eip155-787.json index 284510914f66..26b6dba2899c 100644 --- a/_data/chains/eip155-787.json +++ b/_data/chains/eip155-787.json @@ -1,7 +1,11 @@ { "name": "Acala Network", "chain": "ACA", - "rpc": [], + "rpc": [ + "https://eth-rpc-acala.aca-api.network", + "wss://eth-rpc-acala.aca-api.network" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], "faucets": [], "nativeCurrency": { "name": "Acala Token", @@ -12,5 +16,12 @@ "shortName": "aca", "chainId": 787, "networkId": 787, - "slip44": 787 + "slip44": 787, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.acala.network", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-7878.json b/_data/chains/eip155-7878.json index cd21f7c3fca0..05fa8b1d99e6 100644 --- a/_data/chains/eip155-7878.json +++ b/_data/chains/eip155-7878.json @@ -5,9 +5,7 @@ "https://hatlas.rpc.hazlor.com:8545", "wss://hatlas.rpc.hazlor.com:8546" ], - "faucets": [ - "https://faucet.hazlor.com" - ], + "faucets": ["https://faucet.hazlor.com"], "nativeCurrency": { "name": "Hazlor Test Coin", "symbol": "TSCAS", @@ -17,9 +15,12 @@ "shortName": "tscas", "chainId": 7878, "networkId": 7878, - "explorers": [{ - "name": "Hazlor Testnet Explorer", - "url": "https://explorer.hazlor.com", - "standard": "none" - }] + "slip44": 1, + "explorers": [ + { + "name": "Hazlor Testnet Explorer", + "url": "https://explorer.hazlor.com", + "standard": "none" + } + ] } 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-788.json b/_data/chains/eip155-788.json index 47f125d166db..45d704e129c4 100644 --- a/_data/chains/eip155-788.json +++ b/_data/chains/eip155-788.json @@ -1,26 +1,23 @@ { + "name": "Aerochain Testnet", + "chain": "Aerochain", + "rpc": ["https://testnet-rpc.aerochain.id/"], + "faucets": ["https://faucet.aerochain.id/"], + "nativeCurrency": { "name": "Aerochain Testnet", - "chain": "Aerochain", - "network": "testnet", - "rpc": [ - "https://testnet-rpc.aerochain.id/" - ], - "faucets": [ - "https://faucet.aerochain.id/" - ], - "nativeCurrency": { - "name": "Aerochain Testnet", - "symbol": "TAero", - "decimals": 18 - }, - "infoURL": "https://aerochaincoin.org/", - "shortName": "taero", - "chainId": 788, - "networkId": 788, - "explorers": [{ + "symbol": "TAero", + "decimals": 18 + }, + "infoURL": "https://aerochaincoin.org/", + "shortName": "taero", + "chainId": 788, + "networkId": 788, + "slip44": 1, + "explorers": [ + { "name": "aeroscan", "url": "https://testnet.aeroscan.id", "standard": "EIP3091" - }] + } + ] } - diff --git a/_data/chains/eip155-7887.json b/_data/chains/eip155-7887.json new file mode 100644 index 000000000000..4a29009b0dab --- /dev/null +++ b/_data/chains/eip155-7887.json @@ -0,0 +1,27 @@ +{ + "name": "Kinto Mainnet", + "chain": "Kinto Mainnet", + "rpc": [ + "https://rpc.kinto.xyz/http", + "https://kinto-mainnet.calderachain.xyz/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://kinto.xyz", + "shortName": "kintoMainnet", + "chainId": 7887, + "networkId": 7887, + "icon": "kinto", + "explorers": [ + { + "name": "Kinto Explorer", + "url": "https://explorer.kinto.xyz", + "icon": "kinto", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-789.json b/_data/chains/eip155-789.json new file mode 100644 index 000000000000..34367997a6f7 --- /dev/null +++ b/_data/chains/eip155-789.json @@ -0,0 +1,25 @@ +{ + "name": "Patex", + "chain": "ETH", + "icon": "patex", + "rpc": ["https://rpc.patex.io/"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://patex.io/", + "shortName": "peth", + "chainId": 789, + "networkId": 789, + "explorers": [ + { + "name": "patexscan", + "url": "https://patexscan.io", + "icon": "patex", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-7895.json b/_data/chains/eip155-7895.json new file mode 100644 index 000000000000..d4574c9412d1 --- /dev/null +++ b/_data/chains/eip155-7895.json @@ -0,0 +1,24 @@ +{ + "name": "ARDENIUM Athena", + "chain": "ATHENA", + "rpc": ["https://rpc-athena.ardescan.com/"], + "faucets": ["https://faucet-athena.ardescan.com/"], + "nativeCurrency": { + "name": "ARD", + "symbol": "tARD", + "decimals": 18 + }, + "infoURL": "https://ardenium.org", + "shortName": "ard", + "chainId": 7895, + "networkId": 7895, + "icon": "ard", + "explorers": [ + { + "name": "ARDENIUM Athena Explorer", + "icon": "ard", + "url": "https://testnet.ardscan.com", + "standard": "none" + } + ] +} 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-7923.json b/_data/chains/eip155-7923.json new file mode 100644 index 000000000000..fe6124d25278 --- /dev/null +++ b/_data/chains/eip155-7923.json @@ -0,0 +1,23 @@ +{ + "name": "Dot Blox", + "chain": "DTBX", + "icon": "dotblox", + "rpc": ["https://rpc.dotblox.io"], + "faucets": [], + "nativeCurrency": { + "name": "Dot Blox", + "symbol": "DTBX", + "decimals": 18 + }, + "infoURL": "https://explorer.dotblox.io", + "shortName": "DTBX", + "chainId": 7923, + "networkId": 7923, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.dotblox.io", + "standard": "none" + } + ] +} 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-7979.json b/_data/chains/eip155-7979.json new file mode 100644 index 000000000000..01dd3677e6e4 --- /dev/null +++ b/_data/chains/eip155-7979.json @@ -0,0 +1,24 @@ +{ + "name": "DOS Chain", + "chain": "DOS", + "rpc": ["https://main.doschain.com"], + "faucets": [], + "nativeCurrency": { + "name": "DOS", + "symbol": "DOS", + "decimals": 18 + }, + "infoURL": "https://doschain.io", + "shortName": "dos", + "chainId": 7979, + "networkId": 7979, + "icon": "doschain", + "explorers": [ + { + "name": "DOScan", + "url": "https://doscan.io", + "icon": "doschain", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-79879.json b/_data/chains/eip155-79879.json new file mode 100644 index 000000000000..e87f61b1b071 --- /dev/null +++ b/_data/chains/eip155-79879.json @@ -0,0 +1,24 @@ +{ + "name": "Gold Smart Chain Testnet", + "chain": "STAND", + "icon": "standTestnet", + "rpc": ["https://rpc-testnet.goldsmartchain.com"], + "faucets": ["https://faucet.goldsmartchain.com"], + "nativeCurrency": { + "name": "Standard in Gold", + "symbol": "STAND", + "decimals": 18 + }, + "infoURL": "https://goldsmartchain.com", + "shortName": "STANDt", + "chainId": 79879, + "networkId": 79879, + "slip44": 1, + "explorers": [ + { + "name": "Gold Smart Chain", + "url": "https://testnet.goldsmartchain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-799.json b/_data/chains/eip155-799.json new file mode 100644 index 000000000000..fea3c04a5839 --- /dev/null +++ b/_data/chains/eip155-799.json @@ -0,0 +1,23 @@ +{ + "name": "Rupaya Testnet", + "chain": "Rupaya Testnet", + "rpc": ["https://rpc.testnet.rupaya.io"], + "faucets": ["https://faucet.testnet.rupaya.io"], + "nativeCurrency": { + "name": "Test Rupaya", + "symbol": "TRUPX", + "decimals": 18 + }, + "infoURL": "https://www.rupaya.io", + "shortName": "RupayaTestnet", + "chainId": 799, + "networkId": 799, + "slip44": 1, + "explorers": [ + { + "name": "rupayascan", + "url": "https://scan.testnet.rupaya.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8.json b/_data/chains/eip155-8.json index a00834848414..6d59123e5ffa 100644 --- a/_data/chains/eip155-8.json +++ b/_data/chains/eip155-8.json @@ -1,10 +1,7 @@ { "name": "Ubiq", "chain": "UBQ", - "rpc": [ - "https://rpc.octano.dev", - "https://pyrus2.ubiqscan.io" - ], + "rpc": ["https://rpc.octano.dev", "https://pyrus2.ubiqscan.io"], "faucets": [], "nativeCurrency": { "name": "Ubiq Ether", @@ -16,9 +13,11 @@ "chainId": 8, "networkId": 8, "slip44": 108, - "explorers": [{ - "name": "ubiqscan", - "url": "https://ubiqscan.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "ubiqscan", + "url": "https://ubiqscan.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-80.json b/_data/chains/eip155-80.json index b0a10e4ff915..7a4d5305a7cf 100644 --- a/_data/chains/eip155-80.json +++ b/_data/chains/eip155-80.json @@ -1,9 +1,7 @@ { "name": "GeneChain", "chain": "GeneChain", - "rpc": [ - "https://rpc.genechain.io" - ], + "rpc": ["https://rpc.genechain.io"], "faucets": [], "nativeCurrency": { "name": "RNA", @@ -14,9 +12,11 @@ "shortName": "GeneChain", "chainId": 80, "networkId": 80, - "explorers": [{ - "name": "GeneChain Scan", - "url": "https://scan.genechain.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "GeneChain Scan", + "url": "https://scan.genechain.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-800.json b/_data/chains/eip155-800.json new file mode 100644 index 000000000000..323bd16eb98e --- /dev/null +++ b/_data/chains/eip155-800.json @@ -0,0 +1,23 @@ +{ + "name": "Lucid Blockchain", + "chain": "Lucid", + "icon": "lucid", + "rpc": ["https://rpc.lucidcoin.io"], + "faucets": ["https://faucet.lucidcoin.io"], + "nativeCurrency": { + "name": "LUCID", + "symbol": "LUCID", + "decimals": 18 + }, + "infoURL": "https://lucidcoin.io", + "shortName": "LUCID", + "chainId": 800, + "networkId": 800, + "explorers": [ + { + "name": "Lucid Explorer", + "url": "https://explorer.lucidcoin.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-800001.json b/_data/chains/eip155-800001.json new file mode 100644 index 000000000000..8c89cbef9e19 --- /dev/null +++ b/_data/chains/eip155-800001.json @@ -0,0 +1,24 @@ +{ + "name": "OctaSpace", + "chain": "OCTA", + "rpc": ["https://rpc.octa.space", "wss://rpc.octa.space"], + "faucets": [], + "nativeCurrency": { + "name": "OctaSpace", + "symbol": "OCTA", + "decimals": 18 + }, + "infoURL": "https://octa.space", + "shortName": "octa", + "chainId": 800001, + "networkId": 800001, + "icon": "octaspace", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.octa.space", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-80001.json b/_data/chains/eip155-80001.json index c95da468b42f..3cdf89d6def2 100644 --- a/_data/chains/eip155-80001.json +++ b/_data/chains/eip155-80001.json @@ -1,27 +1,31 @@ -{ - "name": "Mumbai", - "title": "Polygon Testnet Mumbai", - "chain": "Polygon", - "rpc": [ - "https://matic-mumbai.chainstacklabs.com", - "https://rpc-mumbai.maticvigil.com", - "https://matic-testnet-archive-rpc.bwarelabs.com" - ], - "faucets": [ - "https://faucet.polygon.technology/" - ], - "nativeCurrency": { - "name": "MATIC", - "symbol": "MATIC", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/", - "shortName": "maticmum", - "chainId": 80001, - "networkId": 80001, - "explorers": [{ - "name": "polygonscan", - "url": "https://mumbai.polygonscan.com", - "standard": "EIP3091" - }] -} +{ + "name": "Mumbai", + "title": "Polygon Testnet Mumbai", + "chain": "Polygon", + "icon": "polygon", + "rpc": [ + "https://rpc-mumbai.maticvigil.com", + "https://polygon-mumbai-bor-rpc.publicnode.com", + "wss://polygon-mumbai-bor-rpc.publicnode.com", + "https://polygon-mumbai.gateway.tenderly.co", + "wss://polygon-mumbai.gateway.tenderly.co" + ], + "faucets": ["https://faucet.polygon.technology/"], + "nativeCurrency": { + "name": "MATIC", + "symbol": "MATIC", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/", + "shortName": "maticmum", + "chainId": 80001, + "networkId": 80001, + "slip44": 1, + "explorers": [ + { + "name": "polygonscan", + "url": "https://mumbai.polygonscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-80002.json b/_data/chains/eip155-80002.json new file mode 100644 index 000000000000..6ed85583896d --- /dev/null +++ b/_data/chains/eip155-80002.json @@ -0,0 +1,34 @@ +{ + "name": "Amoy", + "title": "Polygon Amoy Testnet", + "chain": "Polygon", + "icon": "polygon", + "rpc": [ + "https://rpc-amoy.polygon.technology", + "https://polygon-amoy-bor-rpc.publicnode.com", + "wss://polygon-amoy-bor-rpc.publicnode.com" + ], + "faucets": ["https://faucet.polygon.technology/"], + "nativeCurrency": { + "name": "POL", + "symbol": "POL", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/", + "shortName": "polygonamoy", + "chainId": 80002, + "networkId": 80002, + "slip44": 1, + "explorers": [ + { + "name": "polygonscan-amoy", + "url": "https://amoy.polygonscan.com", + "standard": "EIP3091" + }, + { + "name": "polygonamoy", + "url": "https://www.oklink.com/amoy", + "standard": "EIP3091" + } + ] +} 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-8001.json b/_data/chains/eip155-8001.json index 723a2938da6a..1033c8f753dd 100644 --- a/_data/chains/eip155-8001.json +++ b/_data/chains/eip155-8001.json @@ -12,6 +12,7 @@ "shortName": "teleport-testnet", "chainId": 8001, "networkId": 8001, + "slip44": 1, "icon": "teleport", "explorers": [ { 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-8007736.json b/_data/chains/eip155-8007736.json new file mode 100644 index 000000000000..a5c0d132942f --- /dev/null +++ b/_data/chains/eip155-8007736.json @@ -0,0 +1,26 @@ +{ + "name": "Plian Mainnet Subchain 1", + "chain": "Plian", + "rpc": ["https://mainnet.plian.io/child_0"], + "faucets": [], + "nativeCurrency": { + "name": "Plian Token", + "symbol": "PI", + "decimals": 18 + }, + "infoURL": "https://plian.org", + "shortName": "plian-mainnet-l2", + "chainId": 8007736, + "networkId": 8007736, + "explorers": [ + { + "name": "piscan", + "url": "https://piscan.plian.org/child_0", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-2099156", + "type": "L2" + } +} 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 new file mode 100644 index 000000000000..046316dc2844 --- /dev/null +++ b/_data/chains/eip155-80085.json @@ -0,0 +1,25 @@ +{ + "name": "Berachain Artio", + "chain": "Berachain Artio", + "status": "deprecated", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "BERA Token", + "symbol": "BERA", + "decimals": 18 + }, + "infoURL": "https://www.berachain.com", + "shortName": "berachainArtio", + "chainId": 80085, + "networkId": 80085, + "icon": "berachain", + "explorers": [ + { + "name": "Beratrail", + "url": "https://artio.beratrail.io", + "icon": "berachain", + "standard": "none" + } + ] +} 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-80096.json b/_data/chains/eip155-80096.json new file mode 100644 index 000000000000..b3c3884de777 --- /dev/null +++ b/_data/chains/eip155-80096.json @@ -0,0 +1,23 @@ +{ + "name": "Hizoco mainnet", + "chain": "HZC", + "icon": "hizoco", + "rpc": ["https://hizoco.net/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Hizoco", + "symbol": "HZC", + "decimals": 18 + }, + "infoURL": "http://hizoco.net", + "shortName": "hzc", + "chainId": 80096, + "networkId": 80096, + "explorers": [ + { + "name": "blockscout", + "url": "https://hizoco.net:38443", + "standard": "none" + } + ] +} 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-8029.json b/_data/chains/eip155-8029.json index cd2ccbddd769..cbc4493249dc 100644 --- a/_data/chains/eip155-8029.json +++ b/_data/chains/eip155-8029.json @@ -1,9 +1,7 @@ { "name": "MDGL Testnet", "chain": "MDGL", - "rpc": [ - "https://testnet.mdgl.io" - ], + "rpc": ["https://testnet.mdgl.io"], "faucets": [], "nativeCurrency": { "name": "MDGL Token", @@ -13,5 +11,6 @@ "infoURL": "https://mdgl.io", "shortName": "mdgl", "chainId": 8029, - "networkId": 8029 + "networkId": 8029, + "slip44": 1 } diff --git a/_data/chains/eip155-803.json b/_data/chains/eip155-803.json index 9ae76e037a82..f93e57457228 100644 --- a/_data/chains/eip155-803.json +++ b/_data/chains/eip155-803.json @@ -1,15 +1,15 @@ { - "name": "Haic", - "chain": "Haic", - "rpc": ["https://orig.haichain.io/"], - "faucets": [], - "nativeCurrency": { - "name": "Haicoin", - "symbol": "HAIC", - "decimals": 18 - }, - "infoURL": "https://www.haichain.io/", - "shortName": "haic", - "chainId": 803, - "networkId": 803 + "name": "Haic", + "chain": "Haic", + "rpc": ["https://orig.haichain.io/"], + "faucets": [], + "nativeCurrency": { + "name": "Haicoin", + "symbol": "HAIC", + "decimals": 18 + }, + "infoURL": "https://www.haichain.io/", + "shortName": "haic", + "chainId": 803, + "networkId": 803 } 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-8047.json b/_data/chains/eip155-8047.json new file mode 100644 index 000000000000..db41508ebd90 --- /dev/null +++ b/_data/chains/eip155-8047.json @@ -0,0 +1,26 @@ +{ + "name": "BOAT Mainnet", + "title": "BOAT Mainnet", + "chain": "BOAT", + "icon": "boat", + "rpc": ["https://rpc0.come.boat/"], + "faucets": [], + "nativeCurrency": { + "name": "Best Of All Time Token", + "symbol": "BOAT", + "decimals": 18 + }, + "infoURL": "https://come.boats", + "shortName": "boat", + "chainId": 8047, + "networkId": 8047, + "slip44": 1, + "explorers": [ + { + "name": "BOAT Mainnet Explorer", + "url": "https://scan.come.boats", + "icon": "boat", + "standard": "EIP3091" + } + ] +} 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-8054.json b/_data/chains/eip155-8054.json new file mode 100644 index 000000000000..19e17d13e10f --- /dev/null +++ b/_data/chains/eip155-8054.json @@ -0,0 +1,28 @@ +{ + "name": "Karak Sepolia", + "title": "Karak Testnet Sepolia", + "chain": "Karak", + "icon": "karak", + "rpc": ["https://rpc.sepolia.karak.network"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://karak.network", + "shortName": "karak-sepolia", + "chainId": 8054, + "networkId": 8054, + "explorers": [ + { + "name": "Karak Sepolia Explorer", + "url": "https://explorer.sepolia.karak.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } +} 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-808.json b/_data/chains/eip155-808.json new file mode 100644 index 000000000000..2ba6909c306a --- /dev/null +++ b/_data/chains/eip155-808.json @@ -0,0 +1,18 @@ +{ + "name": "Portal Fantasy Chain Test", + "chain": "PF", + "icon": "pf", + "rpc": ["https://subnets.avax.network/portal-fantasy/testnet/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Portal Fantasy Token", + "symbol": "PFT", + "decimals": 18 + }, + "infoURL": "https://portalfantasy.io", + "shortName": "PFTEST", + "chainId": 808, + "networkId": 808, + "slip44": 1, + "explorers": [] +} diff --git a/_data/chains/eip155-8080.json b/_data/chains/eip155-8080.json index 3fc8d39620dd..0c61239f8c26 100644 --- a/_data/chains/eip155-8080.json +++ b/_data/chains/eip155-8080.json @@ -1,24 +1,24 @@ { - "name": "GeneChain Adenine Testnet", - "chain": "GeneChain", - "rpc": [ - "https://rpc-testnet.genechain.io" - ], - "faucets": [ - "https://faucet.genechain.io" - ], + "name": "Shardeum Liberty 1.X", + "chain": "Shardeum", + "icon": "shardeum", + "rpc": ["https://liberty10.shardeum.org/"], + "faucets": ["https://faucet.liberty10.shardeum.org"], "nativeCurrency": { - "name": "Testnet RNA", - "symbol": "tRNA", + "name": "Shardeum SHM", + "symbol": "SHM", "decimals": 18 }, - "infoURL": "https://scan-testnet.genechain.io/", - "shortName": "GeneChainAdn", + "infoURL": "https://docs.shardeum.org/", + "shortName": "Liberty10", "chainId": 8080, "networkId": 8080, - "explorers": [{ - "name": "GeneChain Adenine Testnet Scan", - "url": "https://scan-testnet.genechain.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "Shardeum Scan", + "url": "https://explorer-liberty10.shardeum.org", + "standard": "EIP3091" + } + ], + "redFlags": ["reusedChainId"] } diff --git a/_data/chains/eip155-80808.json b/_data/chains/eip155-80808.json new file mode 100644 index 000000000000..086470322604 --- /dev/null +++ b/_data/chains/eip155-80808.json @@ -0,0 +1,23 @@ +{ + "name": "HyperX", + "chain": "HyperX", + "rpc": ["https://rpc.hyperx.technology"], + "faucets": ["https://faucet.hyperx.technology"], + "nativeCurrency": { + "name": "HPX", + "symbol": "HPX", + "decimals": 18 + }, + "infoURL": "https://hyperx.technology/", + "shortName": "hpx", + "chainId": 80808, + "networkId": 80808, + "icon": "hpx", + "explorers": [ + { + "name": "HyperX Explorer", + "url": "https://scan.hyperx.technology", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-808080.json b/_data/chains/eip155-808080.json new file mode 100644 index 000000000000..967f12e57869 --- /dev/null +++ b/_data/chains/eip155-808080.json @@ -0,0 +1,25 @@ +{ + "name": "BIZ Smart Chain Testnet", + "chain": "BIZT Testnet", + "rpc": ["https://rpc-testnet.bizex.io/"], + "faucets": [], + "nativeCurrency": { + "name": "tBIZT", + "symbol": "tBIZT", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.biztoken.io/", + "shortName": "bizt-testnet", + "chainId": 808080, + "networkId": 808080, + "slip44": 1, + "icon": "biz", + "explorers": [ + { + "name": "BIZ Smart Chain Testnet Explorer", + "url": "https://testnet.btscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8080808.json b/_data/chains/eip155-8080808.json new file mode 100644 index 000000000000..d1f6f303503e --- /dev/null +++ b/_data/chains/eip155-8080808.json @@ -0,0 +1,23 @@ +{ + "name": "Hokum", + "chain": "Hokum", + "icon": "hokum", + "rpc": ["https://mainnet.hokum.gg"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://hokum.gg", + "shortName": "hokum", + "chainId": 8080808, + "networkId": 8080808, + "explorers": [ + { + "name": "Hokum Explorer", + "url": "https://explorer.hokum.gg", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8081.json b/_data/chains/eip155-8081.json new file mode 100644 index 000000000000..f4f1c6ede0e9 --- /dev/null +++ b/_data/chains/eip155-8081.json @@ -0,0 +1,24 @@ +{ + "name": "Shardeum Liberty 2.X", + "chain": "Shardeum", + "icon": "shardeum", + "rpc": ["https://liberty20.shardeum.org/"], + "faucets": ["https://faucet.liberty20.shardeum.org"], + "nativeCurrency": { + "name": "Shardeum SHM", + "symbol": "SHM", + "decimals": 18 + }, + "infoURL": "https://docs.shardeum.org/", + "shortName": "Liberty20", + "chainId": 8081, + "networkId": 8081, + "explorers": [ + { + "name": "Shardeum Scan", + "url": "https://explorer-liberty20.shardeum.org", + "standard": "EIP3091" + } + ], + "redFlags": ["reusedChainId"] +} diff --git a/_data/chains/eip155-8082.json b/_data/chains/eip155-8082.json new file mode 100644 index 000000000000..0e20c921d71e --- /dev/null +++ b/_data/chains/eip155-8082.json @@ -0,0 +1,24 @@ +{ + "name": "Shardeum Sphinx 1.X", + "chain": "Shardeum", + "icon": "shardeum", + "rpc": ["https://sphinx.shardeum.org/"], + "faucets": ["https://faucet-sphinx.shardeum.org/"], + "nativeCurrency": { + "name": "Shardeum SHM", + "symbol": "SHM", + "decimals": 18 + }, + "infoURL": "https://docs.shardeum.org/", + "shortName": "Sphinx10", + "chainId": 8082, + "networkId": 8082, + "explorers": [ + { + "name": "Shardeum Scan", + "url": "https://explorer-sphinx.shardeum.org", + "standard": "EIP3091" + } + ], + "redFlags": ["reusedChainId"] +} 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 new file mode 100644 index 000000000000..48312a2775fd --- /dev/null +++ b/_data/chains/eip155-8086.json @@ -0,0 +1,17 @@ +{ + "name": "Bitcoin Chain", + "chain": "BTC", + "icon": "BTCChain", + "rpc": ["https://rpc.bitcoinevm.org"], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://bitcoinevm.org", + "shortName": "Bitcoin", + "chainId": 8086, + "networkId": 8086, + "explorers": [] +} diff --git a/_data/chains/eip155-8087.json b/_data/chains/eip155-8087.json new file mode 100644 index 000000000000..513058b30918 --- /dev/null +++ b/_data/chains/eip155-8087.json @@ -0,0 +1,17 @@ +{ + "name": "E-Dollar", + "chain": "USD", + "icon": "edollar", + "rpc": ["https://rpc.e-dollar.org"], + "faucets": [], + "nativeCurrency": { + "name": "E-Dollar", + "symbol": "USD", + "decimals": 18 + }, + "infoURL": "https://e-dollar.org", + "shortName": "E-Dollar", + "chainId": 8087, + "networkId": 8087, + "explorers": [] +} 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-8098.json b/_data/chains/eip155-8098.json new file mode 100644 index 000000000000..cca980a6a942 --- /dev/null +++ b/_data/chains/eip155-8098.json @@ -0,0 +1,17 @@ +{ + "name": "StreamuX Blockchain", + "chain": "StreamuX", + "rpc": [ + "https://u0ma6t6heb:KDNwOsRDGcyM2Oeui1p431Bteb4rvcWkuPgQNHwB4FM@u0xy4x6x82-u0e2mg517m-rpc.us0-aws.kaleido.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "StreamuX", + "symbol": "SmuX", + "decimals": 18 + }, + "infoURL": "https://www.streamux.cloud", + "shortName": "StreamuX", + "chainId": 8098, + "networkId": 8098 +} 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 b16e6e31df0f..a54dcb52d030 100644 --- a/_data/chains/eip155-81.json +++ b/_data/chains/eip155-81.json @@ -1,23 +1,29 @@ { - "name": "Zenith Testnet (Vilnius)", - "chain": "Zenith", - "rpc": [ - "https://vilnius.zenithchain.co/http" - ], - "faucets": ["https://faucet.zenithchain.co/"], - "nativeCurrency": { - "name": "Vilnius", - "symbol": "VIL", - "decimals": 18 - }, - "infoURL": "https://www.zenithchain.co/", - "chainId": 81, - "networkId": 81, - "shortName": "VIL", - "explorers": [{ - "name": "vilnius scan", - "url": "https://vilnius.scan.zenithchain.co", - "standard": "EIP3091" - }] - } - \ No newline at end of file + "name": "Japan Open Chain Mainnet", + "chain": "JOC", + "rpc": [ + "https://rpc-1.japanopenchain.org:8545", + "https://rpc-2.japanopenchain.org:8545", + "https://rpc-3.japanopenchain.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Japan Open Chain Token", + "symbol": "JOC", + "decimals": 18 + }, + "infoURL": "https://www.japanopenchain.org/", + "shortName": "joc", + "chainId": 81, + "networkId": 81, + "icon": "joc", + "explorers": [ + { + "name": "Block Explorer", + "url": "https://explorer.japanopenchain.org", + "standard": "EIP3091", + "icon": "joc" + } + ], + "redFlags": ["reusedChainId"] +} diff --git a/_data/chains/eip155-810.json b/_data/chains/eip155-810.json new file mode 100644 index 000000000000..896fb9a82ab9 --- /dev/null +++ b/_data/chains/eip155-810.json @@ -0,0 +1,25 @@ +{ + "name": "Haven1 Testnet", + "chain": "haven1", + "rpc": ["https://testnet-rpc.haven1.org"], + "faucets": ["https://www.haven1.org/faucet"], + "nativeCurrency": { + "name": "Haven1", + "symbol": "H1", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.haven1.org", + "shortName": "h1", + "chainId": 810, + "networkId": 810, + "icon": "haven1", + "explorers": [ + { + "name": "Haven1 Explorer", + "url": "https://testnet-explorer.haven1.org", + "icon": "haven1", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-810180.json b/_data/chains/eip155-810180.json new file mode 100644 index 000000000000..f07c20c67feb --- /dev/null +++ b/_data/chains/eip155-810180.json @@ -0,0 +1,30 @@ +{ + "name": "zkLink Nova Mainnet", + "chain": "ETH", + "rpc": ["https://rpc.zklink.io", "wss://rpc.zklink.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zklink.io", + "shortName": "zklink-nova", + "chainId": 810180, + "networkId": 810180, + "slip44": 1, + "icon": "zklink-nova", + "explorers": [ + { + "name": "zkLink Nova Block Explorer", + "url": "https://explorer.zklink.io", + "icon": "zklink-nova", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-59144", + "bridges": [{ "url": "https://portal.zklink.io" }] + } +} diff --git a/_data/chains/eip155-810181.json b/_data/chains/eip155-810181.json new file mode 100644 index 000000000000..404bbe219677 --- /dev/null +++ b/_data/chains/eip155-810181.json @@ -0,0 +1,30 @@ +{ + "name": "zkLink Nova Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://sepolia.rpc.zklink.io", "wss://sepolia.rpc.zklink.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zklink.io", + "shortName": "zklink-nova-sepolia", + "chainId": 810181, + "networkId": 810181, + "slip44": 1, + "icon": "zklink-nova", + "explorers": [ + { + "name": "zkLink Nova Block Explorer", + "url": "https://sepolia.explorer.zklink.io", + "icon": "zklink-nova", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-59141", + "bridges": [{ "url": "https://sepolia.portal.zklink.io" }] + } +} diff --git a/_data/chains/eip155-810182.json b/_data/chains/eip155-810182.json new file mode 100644 index 000000000000..54e7e8487256 --- /dev/null +++ b/_data/chains/eip155-810182.json @@ -0,0 +1,30 @@ +{ + "name": "zkLink Nova Goerli Testnet", + "chain": "ETH", + "rpc": ["https://goerli.rpc.zklink.io", "wss://goerli.rpc.zklink.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zklink.io", + "shortName": "zklink-nova-goerli", + "chainId": 810182, + "networkId": 810182, + "slip44": 1, + "icon": "zklink-nova", + "explorers": [ + { + "name": "zkLink Nova Block Explorer", + "url": "https://goerli.explorer.zklink.io", + "icon": "zklink-nova", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-59140", + "bridges": [{ "url": "https://goerli.portal.zklink.io" }] + } +} diff --git a/_data/chains/eip155-81041.json b/_data/chains/eip155-81041.json new file mode 100644 index 000000000000..94ea316c9058 --- /dev/null +++ b/_data/chains/eip155-81041.json @@ -0,0 +1,23 @@ +{ + "name": "Nordek Mainnet", + "chain": "Nordek", + "icon": "nordek", + "rpc": ["https://mainnet-rpc.nordekscan.com"], + "faucets": [], + "nativeCurrency": { + "name": "NRK", + "symbol": "NRK", + "decimals": 18 + }, + "infoURL": "https://nordekscan.com", + "shortName": "nordek", + "chainId": 81041, + "networkId": 81041, + "explorers": [ + { + "name": "nordek", + "url": "https://nordekscan.com", + "standard": "EIP3091" + } + ] +} 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-81224.json b/_data/chains/eip155-81224.json new file mode 100644 index 000000000000..50e7d64b4828 --- /dev/null +++ b/_data/chains/eip155-81224.json @@ -0,0 +1,27 @@ +{ + "name": "Codex", + "chain": "ETH", + "rpc": ["https://rpc.codex.xyz", "wss://rpc.codex.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.codex.xyz/", + "shortName": "codex", + "chainId": 81224, + "networkId": 81224, + "icon": "codex", + "explorers": [ + { + "name": "Codex Explorer", + "url": "https://explorer.codex.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + } +} diff --git a/_data/chains/eip155-812242.json b/_data/chains/eip155-812242.json new file mode 100644 index 000000000000..54f7e65392fe --- /dev/null +++ b/_data/chains/eip155-812242.json @@ -0,0 +1,27 @@ +{ + "name": "Codex Testnet", + "chain": "ETH", + "rpc": ["https://rpc.codex-stg.xyz", "wss://rpc.codex-stg.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.codex.xyz/", + "shortName": "codex-testnet", + "chainId": 812242, + "networkId": 812242, + "icon": "codex-testnet", + "explorers": [ + { + "name": "Codex Testnet Explorer", + "url": "https://explorer.codex-stg.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } +} 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-813.json b/_data/chains/eip155-813.json new file mode 100644 index 000000000000..d72ced4db270 --- /dev/null +++ b/_data/chains/eip155-813.json @@ -0,0 +1,40 @@ +{ + "name": "Qitmeer Network Mainnet", + "chain": "MEER", + "rpc": [ + "https://evm-dataseed1.meerscan.io", + "https://evm-dataseed2.meerscan.io", + "https://evm-dataseed3.meerscan.io", + "https://evm-dataseed.meerscan.com", + "https://qng.rpc.qitmeer.io", + "https://mainnet.meerlabs.com", + "https://rpc.dimai.ai", + "https://rpc.woowow.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Qitmeer", + "symbol": "MEER", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "meer", + "chainId": 813, + "networkId": 813, + "slip44": 813, + "icon": "meer", + "explorers": [ + { + "name": "meerscan", + "icon": "meer", + "url": "https://qng.qitmeer.io", + "standard": "EIP3091" + }, + { + "name": "meerscan", + "icon": "meer", + "url": "https://qng.meerscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8131.json b/_data/chains/eip155-8131.json new file mode 100644 index 000000000000..819cfc1ecc45 --- /dev/null +++ b/_data/chains/eip155-8131.json @@ -0,0 +1,29 @@ +{ + "name": "Qitmeer Network Testnet", + "chain": "MEER", + "rpc": [ + "https://testnet-qng.rpc.qitmeer.io", + "https://testnet.meerlabs.com", + "https://meer.testnet.meerfans.club" + ], + "faucets": ["https://faucet.qitmeer.io"], + "nativeCurrency": { + "name": "Qitmeer Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "meertest", + "chainId": 8131, + "networkId": 8131, + "slip44": 1, + "icon": "meer", + "explorers": [ + { + "name": "meerscan testnet", + "icon": "meer", + "url": "https://testnet-qng.qitmeer.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8132.json b/_data/chains/eip155-8132.json new file mode 100644 index 000000000000..308b07fea2cf --- /dev/null +++ b/_data/chains/eip155-8132.json @@ -0,0 +1,17 @@ +{ + "name": "Qitmeer Network Mixnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Qitmeer Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "meermix", + "icon": "meer", + "chainId": 8132, + "networkId": 8132, + "status": "incubating" +} diff --git a/_data/chains/eip155-8133.json b/_data/chains/eip155-8133.json new file mode 100644 index 000000000000..2c574028c53b --- /dev/null +++ b/_data/chains/eip155-8133.json @@ -0,0 +1,17 @@ +{ + "name": "Qitmeer Network Privnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Qitmeer Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "meerpriv", + "icon": "meer", + "chainId": 8133, + "networkId": 8133, + "status": "incubating" +} diff --git a/_data/chains/eip155-8134.json b/_data/chains/eip155-8134.json new file mode 100644 index 000000000000..4979dc8f98af --- /dev/null +++ b/_data/chains/eip155-8134.json @@ -0,0 +1,17 @@ +{ + "name": "Amana", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Amana Mainnet", + "symbol": "MEER", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "amana", + "icon": "meer", + "chainId": 8134, + "networkId": 8134, + "status": "incubating" +} diff --git a/_data/chains/eip155-81341.json b/_data/chains/eip155-81341.json new file mode 100644 index 000000000000..fed8a849b414 --- /dev/null +++ b/_data/chains/eip155-81341.json @@ -0,0 +1,18 @@ +{ + "name": "Amana Testnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Amana Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "amanatest", + "icon": "meer", + "chainId": 81341, + "networkId": 81341, + "slip44": 1, + "status": "incubating" +} diff --git a/_data/chains/eip155-81342.json b/_data/chains/eip155-81342.json new file mode 100644 index 000000000000..0d4ed474800d --- /dev/null +++ b/_data/chains/eip155-81342.json @@ -0,0 +1,17 @@ +{ + "name": "Amana Mixnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Amana Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "amanamix", + "icon": "meer", + "chainId": 81342, + "networkId": 81342, + "status": "incubating" +} diff --git a/_data/chains/eip155-81343.json b/_data/chains/eip155-81343.json new file mode 100644 index 000000000000..d300ac2d0d44 --- /dev/null +++ b/_data/chains/eip155-81343.json @@ -0,0 +1,17 @@ +{ + "name": "Amana Privnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Amana Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "amanapriv", + "icon": "meer", + "chainId": 81343, + "networkId": 81343, + "status": "incubating" +} diff --git a/_data/chains/eip155-8135.json b/_data/chains/eip155-8135.json new file mode 100644 index 000000000000..5ab09f2b3b56 --- /dev/null +++ b/_data/chains/eip155-8135.json @@ -0,0 +1,17 @@ +{ + "name": "Flana", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Flana Mainnet", + "symbol": "MEER", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "flana", + "icon": "meer", + "chainId": 8135, + "networkId": 8135, + "status": "incubating" +} diff --git a/_data/chains/eip155-81351.json b/_data/chains/eip155-81351.json new file mode 100644 index 000000000000..bace81772e6c --- /dev/null +++ b/_data/chains/eip155-81351.json @@ -0,0 +1,18 @@ +{ + "name": "Flana Testnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Flana Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "flanatest", + "icon": "meer", + "chainId": 81351, + "networkId": 81351, + "slip44": 1, + "status": "incubating" +} diff --git a/_data/chains/eip155-81352.json b/_data/chains/eip155-81352.json new file mode 100644 index 000000000000..3fbebdcdd051 --- /dev/null +++ b/_data/chains/eip155-81352.json @@ -0,0 +1,17 @@ +{ + "name": "Flana Mixnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Flana Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "flanamix", + "icon": "meer", + "chainId": 81352, + "networkId": 81352, + "status": "incubating" +} diff --git a/_data/chains/eip155-81353.json b/_data/chains/eip155-81353.json new file mode 100644 index 000000000000..00dbec965cac --- /dev/null +++ b/_data/chains/eip155-81353.json @@ -0,0 +1,17 @@ +{ + "name": "Flana Privnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Flana Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "flanapriv", + "icon": "meer", + "chainId": 81353, + "networkId": 81353, + "status": "incubating" +} diff --git a/_data/chains/eip155-8136.json b/_data/chains/eip155-8136.json new file mode 100644 index 000000000000..549962bcd034 --- /dev/null +++ b/_data/chains/eip155-8136.json @@ -0,0 +1,17 @@ +{ + "name": "Mizana", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Mizana Mainnet", + "symbol": "MEER", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "mizana", + "icon": "meer", + "chainId": 8136, + "networkId": 8136, + "status": "incubating" +} diff --git a/_data/chains/eip155-81361.json b/_data/chains/eip155-81361.json new file mode 100644 index 000000000000..569f4ebc3fd4 --- /dev/null +++ b/_data/chains/eip155-81361.json @@ -0,0 +1,18 @@ +{ + "name": "Mizana Testnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Mizana Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "mizanatest", + "icon": "meer", + "chainId": 81361, + "networkId": 81361, + "slip44": 1, + "status": "incubating" +} diff --git a/_data/chains/eip155-81362.json b/_data/chains/eip155-81362.json new file mode 100644 index 000000000000..49bbad317235 --- /dev/null +++ b/_data/chains/eip155-81362.json @@ -0,0 +1,17 @@ +{ + "name": "Mizana Mixnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Mizana Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "mizanamix", + "icon": "meer", + "chainId": 81362, + "networkId": 81362, + "status": "incubating" +} diff --git a/_data/chains/eip155-81363.json b/_data/chains/eip155-81363.json new file mode 100644 index 000000000000..3ea1d16a3ef7 --- /dev/null +++ b/_data/chains/eip155-81363.json @@ -0,0 +1,17 @@ +{ + "name": "Mizana Privnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Mizana Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "mizanapriv", + "icon": "meer", + "chainId": 81363, + "networkId": 81363, + "status": "incubating" +} diff --git a/_data/chains/eip155-814.json b/_data/chains/eip155-814.json new file mode 100644 index 000000000000..21eee8c1dec3 --- /dev/null +++ b/_data/chains/eip155-814.json @@ -0,0 +1,30 @@ +{ + "name": "Firechain zkEVM", + "title": "Firechain zkEVM", + "chain": "Firechain", + "rpc": [ + "https://rpc-zkevm.thefirechain.com", + "https://rpc-zkevm.firestation.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.thefirechain.com/", + "shortName": "firechan-zkEVM", + "chainId": 814, + "networkId": 814, + "icon": "ethereum", + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://zkevm-bridge-rpc.thefirechain.com" + } + ] + } +} diff --git a/_data/chains/eip155-81457.json b/_data/chains/eip155-81457.json new file mode 100644 index 000000000000..2fc13ae05a7b --- /dev/null +++ b/_data/chains/eip155-81457.json @@ -0,0 +1,43 @@ +{ + "name": "Blast", + "status": "active", + "chain": "ETH", + "rpc": [ + "https://rpc.blast.io", + "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-rpc.publicnode.com", + "wss://blast-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://blast.io/", + "shortName": "blastmainnet", + "chainId": 81457, + "networkId": 81457, + "icon": "blast", + "explorers": [ + { + "name": "Blastscan", + "url": "https://blastscan.io", + "icon": "blast", + "standard": "EIP3091" + }, + { + "name": "Blast Explorer", + "url": "https://blastexplorer.io", + "icon": "blast", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + } +} diff --git a/_data/chains/eip155-8150.json b/_data/chains/eip155-8150.json new file mode 100644 index 000000000000..65d5a0e5fb92 --- /dev/null +++ b/_data/chains/eip155-8150.json @@ -0,0 +1,25 @@ +{ + "name": "Alpen Testnet", + "chain": "alpen-testnet", + "rpc": ["https://rpc.testnet.alpenlabs.io"], + "faucets": [], + "nativeCurrency": { + "name": "Signet BTC", + "symbol": "sBTC", + "decimals": 18 + }, + "features": [], + "infoURL": "https://alpenlabs.io/", + "shortName": "alpen-testnet", + "chainId": 8150, + "networkId": 8150, + "icon": "alpen", + "explorers": [ + { + "name": "Alpen Blockscout", + "url": "https://explorer.testnet.alpenlabs.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-81720.json b/_data/chains/eip155-81720.json new file mode 100644 index 000000000000..b61521eb7941 --- /dev/null +++ b/_data/chains/eip155-81720.json @@ -0,0 +1,23 @@ +{ + "name": "Quantum Chain Mainnet", + "chain": "QNET", + "icon": "qnet", + "rpc": ["https://rpc.quantumscan.org"], + "faucets": [], + "nativeCurrency": { + "name": "Quantum Chain", + "symbol": "QNET", + "decimals": 18 + }, + "infoURL": "https://quantumnetwork.gg", + "shortName": "qnet", + "chainId": 81720, + "networkId": 81720, + "explorers": [ + { + "name": "Quantum Scan Mainnet", + "url": "https://quantumscan.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-818.json b/_data/chains/eip155-818.json new file mode 100644 index 000000000000..775ac32cbe48 --- /dev/null +++ b/_data/chains/eip155-818.json @@ -0,0 +1,31 @@ +{ + "name": "BeOne Chain Mainnet", + "chain": "BOC", + "icon": "beonechain", + "rpc": [ + "https://dataseed1.beonechain.com", + "https://dataseed2.beonechain.com", + "https://dataseed-us1.beonechain.com", + "https://dataseed-us2.beonechain.com", + "https://dataseed-uk1.beonechain.com", + "https://dataseed-uk2.beonechain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BeOne Chain Mainnet", + "symbol": "BOC", + "decimals": 18 + }, + "infoURL": "https://beonechain.com", + "shortName": "BOC", + "chainId": 818, + "networkId": 818, + "slip44": 8181, + "explorers": [ + { + "name": "BeOne Chain Mainnet", + "url": "https://beonescan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8181.json b/_data/chains/eip155-8181.json new file mode 100644 index 000000000000..8d46dbc8846a --- /dev/null +++ b/_data/chains/eip155-8181.json @@ -0,0 +1,25 @@ +{ + "name": "Testnet BeOne Chain", + "chain": "tBOC", + "rpc": ["https://pre-boc1.beonechain.com"], + "faucets": ["https://testnet.beonescan.com/faucet"], + "nativeCurrency": { + "name": "Testnet BeOne Chain", + "symbol": "tBOC", + "decimals": 18 + }, + "infoURL": "https://testnet.beonescan.com", + "shortName": "tBOC", + "chainId": 8181, + "networkId": 8181, + "slip44": 1, + "icon": "beonechain", + "explorers": [ + { + "name": "Testnet BeOne Chain", + "url": "https://testnet.beonescan.com", + "icon": "beonechain", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-8192.json b/_data/chains/eip155-8192.json new file mode 100644 index 000000000000..c1bcadff8347 --- /dev/null +++ b/_data/chains/eip155-8192.json @@ -0,0 +1,24 @@ +{ + "name": "Torus Mainnet", + "chain": "TQF", + "icon": "torus", + "rpc": ["https://rpc.toruschain.com"], + "faucets": [], + "nativeCurrency": { + "name": "TQF", + "symbol": "TQF", + "decimals": 18 + }, + "infoURL": "https://docs.toruschain.com", + "shortName": "tqf", + "chainId": 8192, + "networkId": 8192, + "explorers": [ + { + "name": "blockscout", + "url": "https://toruscan.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8194.json b/_data/chains/eip155-8194.json new file mode 100644 index 000000000000..aaeeb90ba961 --- /dev/null +++ b/_data/chains/eip155-8194.json @@ -0,0 +1,25 @@ +{ + "name": "Torus Testnet", + "chain": "TQF", + "icon": "torus", + "rpc": ["https://rpc.testnet.toruschain.com"], + "faucets": [], + "nativeCurrency": { + "name": "tTQF", + "symbol": "TTQF", + "decimals": 18 + }, + "infoURL": "https://docs.toruschain.com", + "shortName": "ttqf", + "chainId": 8194, + "networkId": 8194, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.toruscan.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-82.json b/_data/chains/eip155-82.json index bcff02dd0b5c..1baf208559ea 100644 --- a/_data/chains/eip155-82.json +++ b/_data/chains/eip155-82.json @@ -1,12 +1,8 @@ { "name": "Meter Mainnet", "chain": "METER", - "rpc": [ - "https://rpc.meter.io" - ], - "faucets": [ - "https://faucet.meter.io" - ], + "rpc": ["https://rpc.meter.io"], + "faucets": ["https://faucet.meter.io"], "nativeCurrency": { "name": "Meter", "symbol": "MTR", @@ -16,10 +12,11 @@ "shortName": "Meter", "chainId": 82, "networkId": 82, - "explorers": [{ - "name": "Meter Mainnet Scan", - "url": "https://scan.meter.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "Meter Mainnet Scan", + "url": "https://scan.meter.io", + "standard": "EIP3091" + } + ] } - diff --git a/_data/chains/eip155-820.json b/_data/chains/eip155-820.json index 1939ea157d0a..132f23004246 100644 --- a/_data/chains/eip155-820.json +++ b/_data/chains/eip155-820.json @@ -1,18 +1,25 @@ { "name": "Callisto Mainnet", "chain": "CLO", - "rpc": [ - "https://clo-geth.0xinfra.com" - ], - "faucets": [], + "icon": "callistonetwork", + "rpc": ["https://rpc.callistodao.org"], + "faucets": ["https://faucet.callistodao.org"], "nativeCurrency": { - "name": "Callisto Mainnet Ether", + "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-821.json b/_data/chains/eip155-821.json index ac0058a33085..58903f2f643e 100644 --- a/_data/chains/eip155-821.json +++ b/_data/chains/eip155-821.json @@ -1,5 +1,5 @@ { - "name": "Callisto Testnet", + "name": "Callisto Testnet Deprecated", "chain": "CLO", "rpc": [], "faucets": [], @@ -11,5 +11,7 @@ "infoURL": "https://callisto.network", "shortName": "tclo", "chainId": 821, - "networkId": 2 -} \ No newline at end of file + "networkId": 2, + "slip44": 1, + "status": "deprecated" +} diff --git a/_data/chains/eip155-8217.json b/_data/chains/eip155-8217.json index c1e3c71d9f70..2330dfae7e1d 100644 --- a/_data/chains/eip155-8217.json +++ b/_data/chains/eip155-8217.json @@ -1,23 +1,28 @@ { - "name": "Klaytn Mainnet Cypress", - "chain": "KLAY", - "rpc": [ - "https://public-node-api.klaytnapi.com/v1/cypress" - ], + "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://www.klaytn.com/", - "shortName": "Cypress", + "infoURL": "https://kaia.io", + "shortName": "kaia-mainnet", "chainId": 8217, "networkId": 8217, "slip44": 8217, - "explorers": [{ - "name": "Klaytnscope", - "url": "https://scope.klaytn.com", - "standard": "none" - }] + "explorers": [ + { + "name": "Kaiascope", + "url": "https://kaiascope.com", + "standard": "EIP3091" + }, + { + "name": "Kaiascan", + "url": "https://kaiascan.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-822.json b/_data/chains/eip155-822.json new file mode 100644 index 000000000000..e7c497e2f70e --- /dev/null +++ b/_data/chains/eip155-822.json @@ -0,0 +1,25 @@ +{ + "name": "Runic Chain Testnet", + "chain": "Runic", + "rpc": ["https://rpc-testnet.runic.build"], + "faucets": ["https://faucet.runic.build"], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "rBTC", + "decimals": 18 + }, + "infoURL": "https://runic.build", + "shortName": "runic-testnet", + "chainId": 822, + "networkId": 822, + "status": "active", + "icon": "runic-testnet", + "explorers": [ + { + "name": "RunicScan", + "url": "https://scan.runic.build", + "icon": "runic-testnet", + "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..0ac3eddb7dc8 --- /dev/null +++ b/_data/chains/eip155-824.json @@ -0,0 +1,27 @@ +{ + "name": "Daily Network Mainnet", + "chain": "Daily Network", + "icon": "daily", + "rpc": [ + "https://rpc.mainnet.dailycrypto.net", + "https://rpc-2.mainnet.dailycrypto.net", + "https://rpc-3.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-82459.json b/_data/chains/eip155-82459.json new file mode 100644 index 000000000000..a86484e8bbe1 --- /dev/null +++ b/_data/chains/eip155-82459.json @@ -0,0 +1,22 @@ +{ + "name": "Smart Layer Network Testnet", + "chain": "SLN", + "rpc": ["https://rpc.test.smartlayer.network"], + "faucets": [], + "nativeCurrency": { + "name": "Service Unit Token", + "symbol": "SU", + "decimals": 18 + }, + "infoURL": "https://www.smartlayer.network/", + "shortName": "tSLN", + "chainId": 82459, + "networkId": 82459, + "explorers": [ + { + "name": "SLN Testnet Explorer", + "url": "https://explorer.test.smartlayer.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-825.json b/_data/chains/eip155-825.json new file mode 100644 index 000000000000..376d2ff935e6 --- /dev/null +++ b/_data/chains/eip155-825.json @@ -0,0 +1,27 @@ +{ + "name": "Daily Network Testnet", + "chain": "Daily Network", + "icon": "daily", + "rpc": [ + "https://rpc.testnet.dailycrypto.net", + "https://rpc-2.testnet.dailycrypto.net", + "https://rpc-3.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-8272.json b/_data/chains/eip155-8272.json new file mode 100644 index 000000000000..f8f38e6bc59f --- /dev/null +++ b/_data/chains/eip155-8272.json @@ -0,0 +1,23 @@ +{ + "name": "Blockton Blockchain", + "chain": "Blockton Blockchain", + "icon": "bton", + "rpc": ["https://rpc.blocktonscan.com/"], + "faucets": ["https://faucet.blocktonscan.com/"], + "nativeCurrency": { + "name": "BLOCKTON", + "symbol": "BTON", + "decimals": 18 + }, + "infoURL": "https://blocktoncoin.com", + "shortName": "BTON", + "chainId": 8272, + "networkId": 8272, + "explorers": [ + { + "name": "Blockton Explorer", + "url": "https://blocktonscan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-827431.json b/_data/chains/eip155-827431.json new file mode 100644 index 000000000000..eb81b3a45dac --- /dev/null +++ b/_data/chains/eip155-827431.json @@ -0,0 +1,23 @@ +{ + "name": "CURVE Mainnet", + "chain": "CURVE", + "icon": "curveIcon", + "rpc": ["https://mainnet-rpc.curvescan.io"], + "faucets": [], + "nativeCurrency": { + "name": "Curve", + "symbol": "CURVE", + "decimals": 18 + }, + "infoURL": "https://curvescan.io", + "shortName": "CURVEm", + "chainId": 827431, + "networkId": 827431, + "explorers": [ + { + "name": "CURVE Mainnet", + "url": "https://curvescan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8285.json b/_data/chains/eip155-8285.json index 320e842f1e3d..2540e4bea5e0 100644 --- a/_data/chains/eip155-8285.json +++ b/_data/chains/eip155-8285.json @@ -1,18 +1,16 @@ { - "name": "KorthoTest", - "chain": "Kortho", - "rpc": [ - "https://www.krotho-test.net" - ], - "faucets": [ - ], - "nativeCurrency": { + "name": "KorthoTest", + "chain": "Kortho", + "rpc": ["https://www.krotho-test.net"], + "faucets": [], + "nativeCurrency": { "name": "Kortho Test", "symbol": "KTO", "decimals": 11 - }, - "infoURL": "https://www.kortho.io/", - "shortName": "Kortho", - "chainId": 8285, - "networkId": 8285 -} \ No newline at end of file + }, + "infoURL": "https://www.kortho.io/", + "shortName": "Kortho", + "chainId": 8285, + "networkId": 8285, + "slip44": 1 +} diff --git a/_data/chains/eip155-83.json b/_data/chains/eip155-83.json index 75b3a70e5068..2bcb2fbeb4ce 100644 --- a/_data/chains/eip155-83.json +++ b/_data/chains/eip155-83.json @@ -1,12 +1,8 @@ { "name": "Meter Testnet", "chain": "METER Testnet", - "rpc": [ - "https://rpctest.meter.io" - ], - "faucets": [ - "https://faucet-warringstakes.meter.io" - ], + "rpc": ["https://rpctest.meter.io"], + "faucets": ["https://faucet-warringstakes.meter.io"], "nativeCurrency": { "name": "Meter", "symbol": "MTR", @@ -16,10 +12,12 @@ "shortName": "MeterTest", "chainId": 83, "networkId": 83, - "explorers": [{ - "name": "Meter Testnet Scan", - "url": "https://scan-warringstakes.meter.io", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "Meter Testnet Scan", + "url": "https://scan-warringstakes.meter.io", + "standard": "EIP3091" + } + ] } - diff --git a/_data/chains/eip155-831.json b/_data/chains/eip155-831.json new file mode 100644 index 000000000000..dac7afd08df7 --- /dev/null +++ b/_data/chains/eip155-831.json @@ -0,0 +1,22 @@ +{ + "name": "CheckDot Blockchain Devnet", + "chain": "CDT Blockchain", + "rpc": ["https://devnet.checkdot.io"], + "faucets": [], + "nativeCurrency": { + "name": "CDT", + "symbol": "CDT", + "decimals": 18 + }, + "infoURL": "https://checkdot.io", + "shortName": "cdt", + "chainId": 831, + "networkId": 831, + "explorers": [ + { + "name": "CDT Explorer", + "url": "https://explorer.checkdot.io", + "standard": "none" + } + ] +} 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-8329.json b/_data/chains/eip155-8329.json new file mode 100644 index 000000000000..a49eaeb2126a --- /dev/null +++ b/_data/chains/eip155-8329.json @@ -0,0 +1,25 @@ +{ + "name": "Lorenzo", + "chain": "Lorenzo", + "rpc": ["https://rpc.lorenzo-protocol.xyz"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "Lorenzo stBTC", + "symbol": "stBTC", + "decimals": 18 + }, + "infoURL": "https://www.lorenzo-protocol.xyz/", + "shortName": "lrz", + "chainId": 8329, + "networkId": 8329, + "icon": "lorenzo", + "explorers": [ + { + "name": "Lorenzo Explorer", + "url": "https://scan.lorenzo-protocol.xyz", + "standard": "none", + "icon": "lorenzo" + } + ] +} 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-83592.json b/_data/chains/eip155-83592.json new file mode 100644 index 000000000000..1fd4d657226c --- /dev/null +++ b/_data/chains/eip155-83592.json @@ -0,0 +1,28 @@ +{ + "name": "Katron AI Mainnet", + "chain": "KTN", + "rpc": [ + "https://blockchain-rpc1.katronai.com", + "https://blockchain-rpc2.katronai.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Katron AI", + "symbol": "KTN", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://network.katronai.com", + "shortName": "ktn", + "chainId": 83592, + "networkId": 83592, + "icon": "ktn", + "explorers": [ + { + "name": "ktnscan", + "url": "https://ktnscan.katronai.com", + "icon": "ktnscan", + "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-8387.json b/_data/chains/eip155-8387.json new file mode 100644 index 000000000000..4e29754e3068 --- /dev/null +++ b/_data/chains/eip155-8387.json @@ -0,0 +1,18 @@ +{ + "name": "Dracones Financial Services", + "title": "The Dracones Mainnet", + "chain": "FUCK", + "rpc": ["https://api.dracones.net/"], + "faucets": [], + "nativeCurrency": { + "name": "Functionally Universal Coin Kind", + "symbol": "FUCK", + "decimals": 18 + }, + "infoURL": "https://wolfery.com", + "shortName": "fuck", + "chainId": 8387, + "networkId": 8387, + "icon": "dracones", + "explorers": [] +} diff --git a/_data/chains/eip155-83872.json b/_data/chains/eip155-83872.json new file mode 100644 index 000000000000..a073268c671a --- /dev/null +++ b/_data/chains/eip155-83872.json @@ -0,0 +1,23 @@ +{ + "name": "ZEDXION", + "chain": "ZEDXION", + "icon": "zedx", + "rpc": ["https://mainnet-rpc.zedscan.net"], + "faucets": [], + "nativeCurrency": { + "name": "Zedxion", + "symbol": "ZEDX", + "decimals": 9 + }, + "infoURL": "https://docs.zedscan.net", + "shortName": "ZEDX", + "chainId": 83872, + "networkId": 83872, + "explorers": [ + { + "name": "Zedscan", + "url": "http://zedscan.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-838838.json b/_data/chains/eip155-838838.json new file mode 100644 index 000000000000..bf106abc5428 --- /dev/null +++ b/_data/chains/eip155-838838.json @@ -0,0 +1,23 @@ +{ + "name": "HyperCluster", + "chain": "HYPEC", + "rpc": ["https://rpc.hypercluster.org"], + "faucets": ["https://faucet.hypercluster.org"], + "nativeCurrency": { + "name": "HyperCluster Token", + "symbol": "HYPEC", + "decimals": 18 + }, + "infoURL": "https://www.hypercluster.org/", + "shortName": "HYPEC", + "chainId": 838838, + "networkId": 838838, + "icon": "hypercluster", + "explorers": [ + { + "name": "HyperCluster Explorer", + "url": "https://explorer.hypercluster.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-839320.json b/_data/chains/eip155-839320.json new file mode 100644 index 000000000000..3f0a4d870739 --- /dev/null +++ b/_data/chains/eip155-839320.json @@ -0,0 +1,23 @@ +{ + "name": "PRM Testnet", + "chain": "prm", + "icon": "prmIcon", + "rpc": ["https://testnet-rpc.prmscan.org"], + "faucets": ["https://faucet.prmscan.org"], + "nativeCurrency": { + "name": "Primal Network", + "symbol": "PRM", + "decimals": 18 + }, + "infoURL": "https://primalnetwork.org", + "shortName": "prmtest", + "chainId": 839320, + "networkId": 839320, + "explorers": [ + { + "name": "Primal Network Testnet", + "url": "https://testnet-explorer.prmscan.org", + "standard": "EIP3091" + } + ] +} 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-84.json b/_data/chains/eip155-84.json new file mode 100644 index 000000000000..348c421fca7a --- /dev/null +++ b/_data/chains/eip155-84.json @@ -0,0 +1,22 @@ +{ + "name": "Linqto Devnet", + "chain": "LNQ", + "rpc": ["https://linqto-dev.com"], + "faucets": [], + "nativeCurrency": { + "name": "XRP", + "symbol": "XRP", + "decimals": 18 + }, + "infoURL": "https://linqto.com", + "shortName": "linqto-devnet", + "chainId": 84, + "networkId": 84, + "explorers": [ + { + "name": "Linqto Devnet Explorer", + "url": "https://explorer.linqto-dev.com", + "standard": "EIP3091" + } + ] +} 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 new file mode 100644 index 000000000000..ed4bdc5ac7be --- /dev/null +++ b/_data/chains/eip155-841.json @@ -0,0 +1,31 @@ +{ + "name": "Taraxa Mainnet", + "chain": "TARA", + "icon": "taraxa", + "rpc": ["https://rpc.mainnet.taraxa.io/", "https://ws.mainnet.taraxa.io"], + "faucets": [], + "nativeCurrency": { + "name": "Tara", + "symbol": "TARA", + "decimals": 18 + }, + "infoURL": "https://taraxa.io", + "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", + "icon": "taraxa" + } + ] +} diff --git a/_data/chains/eip155-842.json b/_data/chains/eip155-842.json new file mode 100644 index 000000000000..3f6d03f6ec79 --- /dev/null +++ b/_data/chains/eip155-842.json @@ -0,0 +1,30 @@ +{ + "name": "Taraxa Testnet", + "chain": "TARA", + "icon": "taraxa", + "rpc": ["https://rpc.testnet.taraxa.io/", "https://ws.testnet.taraxa.io"], + "faucets": ["https://explorer.testnet.taraxa.io/faucet"], + "nativeCurrency": { + "name": "Tara", + "symbol": "TARA", + "decimals": 18 + }, + "infoURL": "https://taraxa.io", + "shortName": "taratest", + "chainId": 842, + "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", + "standard": "none" + } + ] +} 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 new file mode 100644 index 000000000000..a5c7866778f8 --- /dev/null +++ b/_data/chains/eip155-8453.json @@ -0,0 +1,48 @@ +{ + "name": "Base", + "chain": "ETH", + "rpc": [ + "https://mainnet.base.org/", + "https://developer-access-mainnet.base.org/", + "https://base.gateway.tenderly.co", + "wss://base.gateway.tenderly.co", + "https://base-rpc.publicnode.com", + "wss://base-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://base.org", + "shortName": "base", + "chainId": 8453, + "networkId": 8453, + "icon": "base", + "explorers": [ + { + "name": "basescan", + "url": "https://basescan.org", + "standard": "EIP3091" + }, + { + "name": "basescout", + "url": "https://base.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "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-84531.json b/_data/chains/eip155-84531.json new file mode 100644 index 000000000000..d9542322b7b6 --- /dev/null +++ b/_data/chains/eip155-84531.json @@ -0,0 +1,42 @@ +{ + "name": "Base Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://goerli.base.org", + "https://base-goerli.gateway.tenderly.co", + "wss://base-goerli.gateway.tenderly.co", + "https://base-goerli-rpc.publicnode.com", + "wss://base-goerli-rpc.publicnode.com" + ], + "faucets": ["https://www.coinbase.com/faucets/base-ethereum-goerli-faucet"], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://base.org", + "shortName": "basegor", + "chainId": 84531, + "networkId": 84531, + "slip44": 1, + "icon": "baseTestnet", + "explorers": [ + { + "name": "basescan", + "url": "https://goerli.basescan.org", + "standard": "none" + }, + { + "name": "basescout", + "url": "https://base-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://base-goerli.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-84532.json b/_data/chains/eip155-84532.json new file mode 100644 index 000000000000..3eb7f2b491e8 --- /dev/null +++ b/_data/chains/eip155-84532.json @@ -0,0 +1,34 @@ +{ + "name": "Base Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.base.org", + "https://base-sepolia-rpc.publicnode.com", + "wss://base-sepolia-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://base.org", + "shortName": "basesep", + "chainId": 84532, + "networkId": 84532, + "slip44": 1, + "icon": "baseTestnet", + "explorers": [ + { + "name": "basescan-sepolia", + "url": "https://sepolia.basescan.org", + "standard": "EIP3091" + }, + { + "name": "basescout", + "url": "https://base-sepolia.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-846000.json b/_data/chains/eip155-846000.json new file mode 100644 index 000000000000..81ec93854425 --- /dev/null +++ b/_data/chains/eip155-846000.json @@ -0,0 +1,15 @@ +{ + "name": "4GoodNetwork", + "chain": "4GN", + "rpc": ["https://chain.deptofgood.com"], + "faucets": [], + "nativeCurrency": { + "name": "APTA", + "symbol": "APTA", + "decimals": 18 + }, + "infoURL": "https://bloqs4good.com", + "shortName": "bloqs4good", + "chainId": 846000, + "networkId": 846000 +} 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-84886.json b/_data/chains/eip155-84886.json new file mode 100644 index 000000000000..70b42ee79d42 --- /dev/null +++ b/_data/chains/eip155-84886.json @@ -0,0 +1,24 @@ +{ + "name": "Aerie Network", + "chain": "Aerie", + "rpc": ["https://mainnet.aerielab.io"], + "faucets": [], + "nativeCurrency": { + "name": "Aerie", + "symbol": "AER", + "decimals": 18 + }, + "infoURL": "https://aerielab.io/", + "shortName": "Aerie", + "chainId": 84886, + "networkId": 84886, + "icon": "aerie", + "explorers": [ + { + "name": "Aerie Explorer", + "url": "https://explorer.aerielab.io", + "icon": "aerie", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-85.json b/_data/chains/eip155-85.json index 0c181b81cb7e..259b88bf7e3c 100644 --- a/_data/chains/eip155-85.json +++ b/_data/chains/eip155-85.json @@ -1,26 +1,23 @@ { - "name": "GateChain Testnet", - "chainId": 85, - "shortName": "gttest", - "chain": "GTTEST", - "networkId": 85, - "nativeCurrency": { - "name": "GateToken", - "symbol": "GT", - "decimals": 18 - }, - "rpc": [ - "https://testnet.gatenode.cc" - ], - "faucets": [ - "https://www.gatescan.org/testnet/faucet" - ], - "explorers": [ - { - "name": "GateScan", - "url": "https://www.gatescan.org/testnet", - "standard": "EIP3091" - } - ], - "infoURL": "https://www.gatechain.io" - } + "name": "GateChain Testnet", + "chainId": 85, + "shortName": "gttest", + "chain": "GTTEST", + "networkId": 85, + "slip44": 1, + "nativeCurrency": { + "name": "GateToken", + "symbol": "GT", + "decimals": 18 + }, + "rpc": ["https://testnet.gatenode.cc"], + "faucets": ["https://www.gatescan.org/testnet/faucet"], + "explorers": [ + { + "name": "GateScan", + "url": "https://www.gatescan.org/testnet", + "standard": "EIP3091" + } + ], + "infoURL": "https://www.gatechain.io" +} 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-853211.json b/_data/chains/eip155-853211.json new file mode 100644 index 000000000000..d5792053a23f --- /dev/null +++ b/_data/chains/eip155-853211.json @@ -0,0 +1,37 @@ +{ + "name": "Testethiq", + "chain": "ETH", + "rpc": [ + "https://rpc.testnet.ethiq.network", + "wss://rpc.testnet.ethiq.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.ethiq.network", + "shortName": "testethiq", + "chainId": 853211, + "networkId": 853211, + "features": [ + { "name": "EIP155" }, + { "name": "EIP1559" }, + { "name": "EIP2718" }, + { "name": "EIP2930" } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://shell.haqq.network/bridge" }] + }, + "explorers": [ + { + "name": "Ethiq Blockscout", + "url": "https://explorer.testnet.ethiq.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-85449.json b/_data/chains/eip155-85449.json new file mode 100644 index 000000000000..068860481141 --- /dev/null +++ b/_data/chains/eip155-85449.json @@ -0,0 +1,15 @@ +{ + "name": "CYBERTRUST", + "chain": "CYBER", + "rpc": ["http://testnet.cybertrust.space:48501"], + "faucets": [], + "nativeCurrency": { + "name": "Cyber Trust", + "symbol": "CYBER", + "decimals": 18 + }, + "infoURL": "https://cybertrust.space", + "shortName": "Cyber", + "chainId": 85449, + "networkId": 48501 +} 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 new file mode 100644 index 000000000000..b4765b60f04d --- /dev/null +++ b/_data/chains/eip155-855456.json @@ -0,0 +1,33 @@ +{ + "name": "Dodao", + "chain": "EVMCC", + "rpc": [ + "https://fraa-flashbox-4643-rpc.a.stagenet.tanssi.network", + "wss://fraa-flashbox-4643-rpc.a.stagenet.tanssi.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dodao", + "symbol": "DODAO", + "decimals": 18 + }, + "infoURL": "https://dodao.dev/", + "shortName": "dodao", + "chainId": 855456, + "networkId": 855456, + "icon": "dodao", + "explorers": [ + { + "name": "Dodao EVM Explorer", + "url": "https://evmexplorer.tanssi-chains.network/?rpcUrl=https://fraa-flashbox-4643-rpc.a.stagenet.tanssi.network", + "icon": "dodao", + "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-859.json b/_data/chains/eip155-859.json new file mode 100644 index 000000000000..0613677f34d8 --- /dev/null +++ b/_data/chains/eip155-859.json @@ -0,0 +1,22 @@ +{ + "name": "Zeeth Chain Dev", + "chain": "ZeethChainDev", + "rpc": ["https://rpc.dev.zeeth.io"], + "faucets": [], + "nativeCurrency": { + "name": "Zeeth Token", + "symbol": "ZTH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "zeethdev", + "chainId": 859, + "networkId": 859, + "explorers": [ + { + "name": "Zeeth Explorer Dev", + "url": "https://explorer.dev.zeeth.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-86.json b/_data/chains/eip155-86.json index ef23e4134399..be2529e52064 100644 --- a/_data/chains/eip155-86.json +++ b/_data/chains/eip155-86.json @@ -1,26 +1,22 @@ - { - "name": "GateChain Mainnet", - "chainId": 86, - "shortName": "gt", - "chain": "GT", - "networkId": 86, - "nativeCurrency": { - "name": "GateToken", - "symbol": "GT", - "decimals": 18 - }, - "rpc": [ - "https://evm.gatenode.cc" - ], - "faucets": [ - "https://www.gatescan.org/faucet" - ], - "explorers": [ - { - "name": "GateScan", - "url": "https://www.gatescan.org", - "standard": "EIP3091" - } - ], - "infoURL": "https://www.gatechain.io" - } +{ + "name": "GateChain Mainnet", + "chainId": 86, + "shortName": "gt", + "chain": "GT", + "networkId": 86, + "nativeCurrency": { + "name": "GateToken", + "symbol": "GT", + "decimals": 18 + }, + "rpc": ["https://evm.gatenode.cc"], + "faucets": ["https://www.gatescan.org/faucet"], + "explorers": [ + { + "name": "GateScan", + "url": "https://www.gatescan.org", + "standard": "EIP3091" + } + ], + "infoURL": "https://www.gatechain.io" +} diff --git a/_data/chains/eip155-8601152.json b/_data/chains/eip155-8601152.json new file mode 100644 index 000000000000..d243068bac65 --- /dev/null +++ b/_data/chains/eip155-8601152.json @@ -0,0 +1,22 @@ +{ + "name": "Waterfall 8 Test Network", + "chain": "Waterfall Testnet8", + "rpc": ["https://rpc.testnet8.waterfall.network/"], + "faucets": ["https://faucet.testnet8.waterfall.network"], + "nativeCurrency": { + "name": "WATER", + "symbol": "WATER", + "decimals": 18 + }, + "features": [ + { + "name": "EIP1559" + } + ], + "infoURL": "https://waterfall.network", + "shortName": "waterfall", + "chainId": 8601152, + "networkId": 8601152, + "icon": "waterfall", + "explorers": [] +} 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-8654.json b/_data/chains/eip155-8654.json new file mode 100644 index 000000000000..764520e92d50 --- /dev/null +++ b/_data/chains/eip155-8654.json @@ -0,0 +1,17 @@ +{ + "name": "Toki Network", + "chain": "TOKI", + "rpc": ["https://mainnet.buildwithtoki.com/v0/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Toki", + "symbol": "TOKI", + "decimals": 18 + }, + "infoURL": "https://www.buildwithtoki.com", + "shortName": "toki", + "chainId": 8654, + "networkId": 8654, + "icon": "toki", + "explorers": [] +} diff --git a/_data/chains/eip155-8655.json b/_data/chains/eip155-8655.json new file mode 100644 index 000000000000..31e8bed2b5e6 --- /dev/null +++ b/_data/chains/eip155-8655.json @@ -0,0 +1,18 @@ +{ + "name": "Toki Testnet", + "chain": "TOKI", + "rpc": ["https://testnet.buildwithtoki.com/v0/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "Toki", + "symbol": "TOKI", + "decimals": 18 + }, + "infoURL": "https://www.buildwithtoki.com", + "shortName": "toki-testnet", + "chainId": 8655, + "networkId": 8655, + "slip44": 1, + "icon": "toki", + "explorers": [] +} diff --git a/_data/chains/eip155-86606.json b/_data/chains/eip155-86606.json new file mode 100644 index 000000000000..7fb4d645b273 --- /dev/null +++ b/_data/chains/eip155-86606.json @@ -0,0 +1,24 @@ +{ + "name": "CpChain Testnet", + "chain": "CpChain", + "rpc": ["https://rpc-testnet.cpchain.com"], + "faucets": ["https://cpchain-test.pages.dev/faucet"], + "nativeCurrency": { + "name": "CP", + "symbol": "CP", + "decimals": 18 + }, + "infoURL": "https://cpchain.com", + "shortName": "cpchain-testnet", + "chainId": 86606, + "networkId": 86606, + "slip44": 1, + "icon": "cpchain", + "explorers": [ + { + "name": "CpChain Testnet Explorer", + "url": "https://explorer-testnet.cpchain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-86608.json b/_data/chains/eip155-86608.json new file mode 100644 index 000000000000..d8f36b9a386f --- /dev/null +++ b/_data/chains/eip155-86608.json @@ -0,0 +1,24 @@ +{ + "name": "CpChain Mainnet", + "chain": "CpChain", + "rpc": ["https://rpc.cpchain.com"], + "faucets": [], + "nativeCurrency": { + "name": "CP", + "symbol": "CP", + "decimals": 18 + }, + "infoURL": "https://cpchain.com", + "shortName": "cpchain", + "chainId": 86608, + "networkId": 86608, + "slip44": 1, + "icon": "cpchain", + "explorers": [ + { + "name": "CpChain Explorer", + "url": "https://explorer.cpchain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8668.json b/_data/chains/eip155-8668.json new file mode 100644 index 000000000000..4be2bce5336f --- /dev/null +++ b/_data/chains/eip155-8668.json @@ -0,0 +1,23 @@ +{ + "name": "Hela Official Runtime Mainnet", + "chain": "Hela", + "icon": "hela", + "rpc": ["https://mainnet-rpc.helachain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Hela HLUSD", + "symbol": "HLUSD", + "decimals": 18 + }, + "infoURL": "https://helalabs.com", + "shortName": "hela", + "chainId": 8668, + "networkId": 8668, + "explorers": [ + { + "name": "Hela Official Runtime Mainnet Explorer", + "url": "https://mainnet-blockexplorer.helachain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-868.json b/_data/chains/eip155-868.json new file mode 100644 index 000000000000..95fa07a59f83 --- /dev/null +++ b/_data/chains/eip155-868.json @@ -0,0 +1,26 @@ +{ + "name": "Fantasia Chain Mainnet", + "chain": "FSC", + "rpc": [ + "https://mainnet-data1.fantasiachain.com/", + "https://mainnet-data2.fantasiachain.com/", + "https://mainnet-data3.fantasiachain.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "FST", + "symbol": "FST", + "decimals": 18 + }, + "infoURL": "https://fantasiachain.com/", + "shortName": "FSCMainnet", + "chainId": 868, + "networkId": 868, + "explorers": [ + { + "name": "FSCScan", + "url": "https://explorer.fantasiachain.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-868455272153094.json b/_data/chains/eip155-868455272153094.json index b35700c59250..a81026065fee 100644 --- a/_data/chains/eip155-868455272153094.json +++ b/_data/chains/eip155-868455272153094.json @@ -1,12 +1,8 @@ { "name": "Godwoken Testnet (V1)", "chain": "GWT", - "rpc": [ - "https://godwoken-testnet-web3-v1-rpc.ckbapp.dev" - ], - "faucets": [ - "https://homura.github.io/light-godwoken" - ], + "rpc": ["https://godwoken-testnet-web3-v1-rpc.ckbapp.dev"], + "faucets": ["https://homura.github.io/light-godwoken"], "nativeCurrency": { "name": "CKB", "symbol": "CKB", @@ -16,6 +12,7 @@ "shortName": "gw-testnet-v1-deprecated", "chainId": 868455272153094, "networkId": 868455272153094, + "slip44": 1, "status": "deprecated", "explorers": [ { @@ -24,4 +21,4 @@ "standard": "none" } ] -} \ No newline at end of file +} 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-87.json b/_data/chains/eip155-87.json index 1d749258d796..b33ad64812e7 100644 --- a/_data/chains/eip155-87.json +++ b/_data/chains/eip155-87.json @@ -17,9 +17,11 @@ "shortName": "nnw", "chainId": 87, "networkId": 87, - "explorers": [{ - "name": "novanetwork", - "url": "https://explorer.novanetwork.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "novanetwork", + "url": "https://explorer.novanetwork.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-8700.json b/_data/chains/eip155-8700.json new file mode 100644 index 000000000000..2042f9acea3a --- /dev/null +++ b/_data/chains/eip155-8700.json @@ -0,0 +1,25 @@ +{ + "name": "Autonomys Chronos Testnet", + "chain": "autonomys-chronos-testnet", + "rpc": ["https://auto-evm.chronos.autonomys.xyz/ws"], + "icon": "autonomys", + "faucets": [], + "nativeCurrency": { + "decimals": 18, + "name": "AI3", + "symbol": "AI3" + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://www.autonomys.xyz", + "shortName": "ATN", + "chainId": 8700, + "networkId": 8700, + "explorers": [ + { + "name": "Autonomys Chronos EVM Testnet Explorer", + "url": "https://explorer.auto-evm.chronos.autonomys.xyz", + "icon": "blockscout", + "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-8723.json b/_data/chains/eip155-8723.json index bab4f4db813d..1f1c9873137f 100644 --- a/_data/chains/eip155-8723.json +++ b/_data/chains/eip155-8723.json @@ -1,9 +1,7 @@ { "name": "TOOL Global Mainnet", "chain": "OLO", - "rpc": [ - "https://mainnet-web3.wolot.io" - ], + "rpc": ["https://mainnet-web3.wolot.io"], "faucets": [], "nativeCurrency": { "name": "TOOL Global", @@ -15,9 +13,11 @@ "chainId": 8723, "networkId": 8723, "slip44": 479, - "explorers": [{ - "name": "OLO Block Explorer", - "url": "https://www.olo.network", - "standard": "EIP3091" - }] -} \ No newline at end of file + "explorers": [ + { + "name": "OLO Block Explorer", + "url": "https://www.olo.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8724.json b/_data/chains/eip155-8724.json index 7d05ded85077..df659384383e 100644 --- a/_data/chains/eip155-8724.json +++ b/_data/chains/eip155-8724.json @@ -1,12 +1,8 @@ { "name": "TOOL Global Testnet", "chain": "OLO", - "rpc": [ - "https://testnet-web3.wolot.io" - ], - "faucets": [ - "https://testnet-explorer.wolot.io" - ], + "rpc": ["https://testnet-web3.wolot.io"], + "faucets": ["https://testnet-explorer.wolot.io"], "nativeCurrency": { "name": "TOOL Global", "symbol": "OLO", @@ -16,5 +12,5 @@ "shortName": "tolo", "chainId": 8724, "networkId": 8724, - "slip44": 479 + "slip44": 1 } diff --git a/_data/chains/eip155-8726.json b/_data/chains/eip155-8726.json new file mode 100644 index 000000000000..fd26826b2a39 --- /dev/null +++ b/_data/chains/eip155-8726.json @@ -0,0 +1,23 @@ +{ + "name": "Storagechain Mainnet", + "chain": "Storagechain", + "rpc": ["https://mainnet-validator.storagechain.io"], + "icon": "storagechain", + "faucets": [], + "shortName": "stor", + "nativeCurrency": { + "name": "Storagechain", + "symbol": "STOR", + "decimals": 18 + }, + "infoURL": "https://storagechain.io/about-us", + "chainId": 8726, + "networkId": 8726, + "explorers": [ + { + "name": "Storscan", + "url": "https://explorer-storagechain.invo.zone/?network=StorageChain", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-8727.json b/_data/chains/eip155-8727.json new file mode 100644 index 000000000000..55a448a9a362 --- /dev/null +++ b/_data/chains/eip155-8727.json @@ -0,0 +1,23 @@ +{ + "name": "Storagechain Testnet", + "chain": "Storagechain", + "rpc": ["https://testnet-validator.storagechain.io"], + "icon": "storagechain", + "faucets": [], + "nativeCurrency": { + "name": "Storagechain", + "symbol": "STOR", + "decimals": 18 + }, + "shortName": "tstor", + "infoURL": "https://storagechain.io/about-us", + "chainId": 8727, + "networkId": 8727, + "explorers": [ + { + "name": "Storscan", + "url": "https://explorer-storagechain.invo.zone/?network=StorageChain%20Testnet", + "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-8738.json b/_data/chains/eip155-8738.json new file mode 100644 index 000000000000..3f6b0b822625 --- /dev/null +++ b/_data/chains/eip155-8738.json @@ -0,0 +1,22 @@ +{ + "name": "Alph Network", + "chain": "ALPH", + "rpc": ["https://rpc.alph.network", "wss://rpc.alph.network"], + "faucets": [], + "nativeCurrency": { + "name": "Alph Network", + "symbol": "ALPH", + "decimals": 18 + }, + "infoURL": "https://alph.network", + "shortName": "alph", + "chainId": 8738, + "networkId": 8738, + "explorers": [ + { + "name": "alphscan", + "url": "https://explorer.alph.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-876.json b/_data/chains/eip155-876.json new file mode 100644 index 000000000000..78b40d00e16a --- /dev/null +++ b/_data/chains/eip155-876.json @@ -0,0 +1,27 @@ +{ + "name": "Bandai Namco Research Verse Mainnet", + "chain": "Bandai Namco Research Verse", + "icon": "bnken", + "rpc": ["https://rpc.main.oasvrs.bnken.net"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://www.bandainamco-mirai.com/en/", + "shortName": "BNKEN", + "chainId": 876, + "networkId": 876, + "explorers": [ + { + "name": "Bandai Namco Research Verse Explorer", + "url": "https://explorer.main.oasvrs.bnken.net", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } +} diff --git a/_data/chains/eip155-8768.json b/_data/chains/eip155-8768.json new file mode 100644 index 000000000000..6bdeaafc5664 --- /dev/null +++ b/_data/chains/eip155-8768.json @@ -0,0 +1,16 @@ +{ + "name": "TMY Chain", + "chain": "TMY", + "icon": "tmychain", + "rpc": ["https://node1.tmyblockchain.org/rpc"], + "faucets": ["https://faucet.tmychain.org/"], + "nativeCurrency": { + "name": "TMY", + "symbol": "TMY", + "decimals": 18 + }, + "infoURL": "https://tmychain.org/", + "shortName": "tmy", + "chainId": 8768, + "networkId": 8768 +} diff --git a/_data/chains/eip155-877.json b/_data/chains/eip155-877.json new file mode 100644 index 000000000000..0ceac8751920 --- /dev/null +++ b/_data/chains/eip155-877.json @@ -0,0 +1,22 @@ +{ + "name": "Dexit Network", + "chain": "DXT", + "rpc": ["https://dxt.dexit.network"], + "faucets": ["https://faucet.dexit.network"], + "nativeCurrency": { + "name": "Dexit network", + "symbol": "DXT", + "decimals": 18 + }, + "infoURL": "https://dexit.network", + "shortName": "DXT", + "chainId": 877, + "networkId": 877, + "explorers": [ + { + "name": "dxtscan", + "url": "https://dxtscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-879151.json b/_data/chains/eip155-879151.json new file mode 100644 index 000000000000..2e7a75bf3f08 --- /dev/null +++ b/_data/chains/eip155-879151.json @@ -0,0 +1,24 @@ +{ + "name": "BlocX Mainnet", + "chain": "BLX", + "rpc": ["https://mainnet-rpc.blxscan.com/"], + "faucets": [], + "nativeCurrency": { + "name": "BlocX", + "symbol": "BLX", + "decimals": 18 + }, + "infoURL": "https://www.blocxchain.org/", + "shortName": "blx", + "chainId": 879151, + "networkId": 879151, + "icon": "blx", + "explorers": [ + { + "name": "BlocX Mainnet Explorer", + "url": "https://explorer.blxscan.com", + "icon": "blx", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-8794598.json b/_data/chains/eip155-8794598.json new file mode 100644 index 000000000000..fc856f5595c5 --- /dev/null +++ b/_data/chains/eip155-8794598.json @@ -0,0 +1,24 @@ +{ + "name": "HAPchain", + "chain": "HAPchain", + "rpc": ["https://jsonrpc.hap.land"], + "faucets": [], + "nativeCurrency": { + "name": "HAP", + "symbol": "HAP", + "decimals": 18 + }, + "infoURL": "https://hap.land", + "shortName": "hap", + "chainId": 8794598, + "networkId": 8794598, + "icon": "hap", + "explorers": [ + { + "name": "HAP EVM Explorer (Blockscout)", + "url": "https://blockscout.hap.land", + "standard": "none", + "icon": "hap" + } + ] +} diff --git a/_data/chains/eip155-88.json b/_data/chains/eip155-88.json index 4a5f20526fad..6b1b922b2f72 100644 --- a/_data/chains/eip155-88.json +++ b/_data/chains/eip155-88.json @@ -1,17 +1,15 @@ { - "name": "TomoChain", - "chain": "TOMO", - "rpc": [ - "https://rpc.tomochain.com" - ], + "name": "Viction", + "chain": "Viction", + "rpc": ["https://rpc.viction.xyz"], "faucets": [], "nativeCurrency": { - "name": "TomoChain", - "symbol": "TOMO", + "name": "Viction", + "symbol": "VIC", "decimals": 18 }, - "infoURL": "https://tomochain.com", - "shortName": "tomo", + "infoURL": "https://viction.xyz", + "shortName": "vic", "chainId": 88, "networkId": 88, "slip44": 889 diff --git a/_data/chains/eip155-880.json b/_data/chains/eip155-880.json index 2e9da0cb87c3..9c374340cac4 100644 --- a/_data/chains/eip155-880.json +++ b/_data/chains/eip155-880.json @@ -1,22 +1,22 @@ { "name": "Ambros Chain Mainnet", "chain": "ambroschain", - "rpc": [ - "https://api.ambros.network" - ], + "rpc": ["https://api.ambros.network"], "faucets": [], "nativeCurrency": { - "name": "AMBROS", - "symbol": "AMBROS", - "decimals": 18 + "name": "AMBROS", + "symbol": "AMBROS", + "decimals": 18 }, "infoURL": "https://ambros.network", "shortName": "ambros", "chainId": 880, "networkId": 880, - "explorers": [{ - "name": "Ambros Chain Explorer", - "url": "https://ambrosscan.com", - "standard": "none" - }] + "explorers": [ + { + "name": "Ambros Chain Explorer", + "url": "https://ambrosscan.com", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-88002.json b/_data/chains/eip155-88002.json new file mode 100644 index 000000000000..07c2b740e210 --- /dev/null +++ b/_data/chains/eip155-88002.json @@ -0,0 +1,25 @@ +{ + "name": "Nautilus Proteus Testnet", + "chain": "ETH", + "icon": "nautilus", + "rpc": ["https://api.proteus.nautchain.xyz/solana"], + "faucets": ["https://proteusfaucet.nautchain.xyz"], + "nativeCurrency": { + "name": "Zebec Test Token", + "symbol": "tZBC", + "decimals": 18 + }, + "infoURL": "https://docs.nautchain.xyz", + "shortName": "NAUTTest", + "chainId": 88002, + "networkId": 88002, + "slip44": 1, + "explorers": [ + { + "name": "Nautscan", + "url": "https://proteus.nautscan.com", + "standard": "EIP3091", + "icon": "nautilus" + } + ] +} 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-88153591557.json b/_data/chains/eip155-88153591557.json new file mode 100644 index 000000000000..6257c44350e1 --- /dev/null +++ b/_data/chains/eip155-88153591557.json @@ -0,0 +1,34 @@ +{ + "name": "Arbitrum Blueberry", + "title": "Arbitrum Blueberry Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.arb-blueberry.gelato.digital", + "wss://ws.arb-blueberry.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "GelatoCGT", + "symbol": "CGT", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/arb-blueberry", + "shortName": "arb-blueberry", + "chainId": 88153591557, + "networkId": 88153591557, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://arb-blueberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-421614", + "bridges": [{ "url": "https://bridge.gelato.network/bridge/arb-blueberry" }] + }, + "status": "active" +} diff --git a/_data/chains/eip155-8822.json b/_data/chains/eip155-8822.json new file mode 100644 index 000000000000..5a2e5d4e8c83 --- /dev/null +++ b/_data/chains/eip155-8822.json @@ -0,0 +1,28 @@ +{ + "name": "IOTA EVM", + "title": "IOTA EVM", + "chain": "IOTA EVM", + "rpc": [ + "https://json-rpc.evm.iotaledger.net", + "wss://ws.json-rpc.evm.iotaledger.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "IOTA", + "symbol": "IOTA", + "decimals": 18 + }, + "infoURL": "https://www.iota.org", + "shortName": "iotaevm", + "chainId": 8822, + "networkId": 8822, + "icon": "iotaevm", + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.evm.iota.org", + "icon": "iotaevm", + "standard": "EIP3091" + } + ] +} 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-8848.json b/_data/chains/eip155-8848.json new file mode 100644 index 000000000000..c80b1c4f9c4e --- /dev/null +++ b/_data/chains/eip155-8848.json @@ -0,0 +1,23 @@ +{ + "name": "MARO Blockchain Mainnet", + "chain": "MARO Blockchain", + "icon": "MARO", + "rpc": ["https://rpc-mainnet.ma.ro"], + "faucets": [], + "nativeCurrency": { + "name": "MARO", + "symbol": "MARO", + "decimals": 18 + }, + "infoURL": "https://ma.ro/", + "shortName": "maro", + "chainId": 8848, + "networkId": 8848, + "explorers": [ + { + "name": "MARO Scan", + "url": "https://scan.ma.ro/#", + "standard": "none" + } + ] +} 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 new file mode 100644 index 000000000000..8d6745e82428 --- /dev/null +++ b/_data/chains/eip155-88559.json @@ -0,0 +1,23 @@ +{ + "name": "InoAi", + "chain": "INOAI", + "faucets": [], + "rpc": ["https://inoai-network.com"], + "nativeCurrency": { + "name": "InoAi", + "symbol": "INO", + "decimals": 18 + }, + "infoURL": "https://docs.inoai.info/", + "shortName": "INO", + "chainId": 88559, + "networkId": 88559, + "icon": "inoai", + "explorers": [ + { + "name": "inoai.live", + "url": "https://inoai.live", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8866.json b/_data/chains/eip155-8866.json new file mode 100644 index 000000000000..568a08b74fe3 --- /dev/null +++ b/_data/chains/eip155-8866.json @@ -0,0 +1,23 @@ +{ + "name": "SuperLumio", + "chain": "SuperLumio", + "icon": "superlumio", + "rpc": ["https://mainnet.lumio.io/"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lumio.io/", + "shortName": "superlumio", + "chainId": 8866, + "networkId": 8866, + "explorers": [ + { + "name": "Lumio explorer", + "url": "https://explorer.lumio.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-88688.json b/_data/chains/eip155-88688.json new file mode 100644 index 000000000000..20a062e4769b --- /dev/null +++ b/_data/chains/eip155-88688.json @@ -0,0 +1,16 @@ +{ + "name": "Cycle Network Mainnet Frigate", + "chain": "ETH", + "rpc": ["https://frigate-rpc-mainnet.cyclenetwork.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.cyclenetwork.io/", + "shortName": "cyclef", + "chainId": 88688, + "networkId": 88688, + "icon": "cycle" +} 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 2041974ecd2a..8ddd8978623c 100644 --- a/_data/chains/eip155-888.json +++ b/_data/chains/eip155-888.json @@ -1,9 +1,7 @@ { "name": "Wanchain", "chain": "WAN", - "rpc": [ - "https://gwan-ssl.wandevs.org:56891/" - ], + "rpc": ["https://gwan-ssl.wandevs.org:56891/"], "faucets": [], "nativeCurrency": { "name": "Wancoin", @@ -14,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-8880.json b/_data/chains/eip155-8880.json new file mode 100644 index 000000000000..592b075c4f15 --- /dev/null +++ b/_data/chains/eip155-8880.json @@ -0,0 +1,28 @@ +{ + "name": "Unique", + "icon": "unique", + "chain": "UNQ", + "rpc": [ + "https://rpc.unique.network", + "https://eu-rpc.unique.network", + "https://asia-rpc.unique.network", + "https://us-rpc.unique.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Unique", + "symbol": "UNQ", + "decimals": 18 + }, + "infoURL": "https://unique.network", + "shortName": "unq", + "chainId": 8880, + "networkId": 8880, + "explorers": [ + { + "name": "Unique Scan", + "url": "https://uniquescan.io/unique", + "standard": "none" + } + ] +} 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-8881.json b/_data/chains/eip155-8881.json new file mode 100644 index 000000000000..c90e365d7ff5 --- /dev/null +++ b/_data/chains/eip155-8881.json @@ -0,0 +1,29 @@ +{ + "name": "Quartz by Unique", + "icon": "quartz", + "chain": "UNQ", + "rpc": [ + "https://rpc-quartz.unique.network", + "https://quartz.api.onfinality.io/public-ws", + "https://eu-rpc-quartz.unique.network", + "https://asia-rpc-quartz.unique.network", + "https://us-rpc-quartz.unique.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Quartz", + "symbol": "QTZ", + "decimals": 18 + }, + "infoURL": "https://unique.network", + "shortName": "qtz", + "chainId": 8881, + "networkId": 8881, + "explorers": [ + { + "name": "Unique Scan / Quartz", + "url": "https://uniquescan.io/quartz", + "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 new file mode 100644 index 000000000000..d08fca277c34 --- /dev/null +++ b/_data/chains/eip155-88817.json @@ -0,0 +1,24 @@ +{ + "name": "Unit Zero Testnet", + "chain": "Unit Zero", + "icon": "unitzero", + "rpc": ["https://rpc-testnet.unit0.dev"], + "faucets": ["https://faucet-testnet.unit0.dev"], + "nativeCurrency": { + "name": "UNIT0", + "symbol": "UNIT0", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://units.network", + "shortName": "unit0-testnet", + "chainId": 88817, + "networkId": 88817, + "explorers": [ + { + "name": "explorer-testnet", + "url": "https://explorer-testnet.unit0.dev", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-88819.json b/_data/chains/eip155-88819.json new file mode 100644 index 000000000000..581bb68a3c17 --- /dev/null +++ b/_data/chains/eip155-88819.json @@ -0,0 +1,24 @@ +{ + "name": "Unit Zero Stagenet", + "chain": "Unit Zero", + "icon": "unitzero", + "rpc": ["https://rpc-stagenet.unit0.dev"], + "faucets": [], + "nativeCurrency": { + "name": "UNIT0", + "symbol": "UNIT0", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://units.network", + "shortName": "unit0-stagenet", + "chainId": 88819, + "networkId": 88819, + "explorers": [ + { + "name": "explorer-stagenet", + "url": "https://explorer-stagenet.unit0.dev", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8882.json b/_data/chains/eip155-8882.json new file mode 100644 index 000000000000..c3f932b6b3f8 --- /dev/null +++ b/_data/chains/eip155-8882.json @@ -0,0 +1,29 @@ +{ + "name": "Opal testnet by Unique", + "icon": "opal", + "chain": "UNQ", + "rpc": [ + "https://rpc-opal.unique.network", + "https://us-rpc-opal.unique.network", + "https://eu-rpc-opal.unique.network", + "https://asia-rpc-opal.unique.network" + ], + "faucets": ["https://t.me/unique2faucet_opal_bot"], + "nativeCurrency": { + "name": "Opal", + "symbol": "UNQ", + "decimals": 18 + }, + "infoURL": "https://unique.network", + "shortName": "opl", + "chainId": 8882, + "networkId": 8882, + "slip44": 1, + "explorers": [ + { + "name": "Unique Scan / Opal", + "url": "https://uniquescan.io/opal", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-8883.json b/_data/chains/eip155-8883.json new file mode 100644 index 000000000000..214d41e2abe8 --- /dev/null +++ b/_data/chains/eip155-8883.json @@ -0,0 +1,28 @@ +{ + "name": "Sapphire by Unique", + "icon": "sapphire", + "chain": "UNQ", + "rpc": [ + "https://rpc-sapphire.unique.network", + "https://us-rpc-sapphire.unique.network", + "https://eu-rpc-sapphire.unique.network", + "https://asia-rpc-sapphire.unique.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Quartz", + "symbol": "QTZ", + "decimals": 18 + }, + "infoURL": "https://unique.network", + "shortName": "sph", + "chainId": 8883, + "networkId": 8883, + "explorers": [ + { + "name": "Unique Scan / Sapphire", + "url": "https://uniquescan.io/sapphire", + "standard": "none" + } + ] +} 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-8888.json b/_data/chains/eip155-8888.json index 3e985c91b100..703e5c81852d 100644 --- a/_data/chains/eip155-8888.json +++ b/_data/chains/eip155-8888.json @@ -1,22 +1,25 @@ { - "name": "Ambros Chain Testnet", - "chain": "ambroschain", - "rpc": [ - "https://api.testnet.ambros.network" - ], + "name": "XANAChain", + "chain": "XANAChain", + "rpc": ["https://mainnet.xana.net/rpc"], "faucets": [], "nativeCurrency": { - "name": "AMBROS", - "symbol": "AMBROS", - "decimals": 18 + "name": "XETA", + "symbol": "XETA", + "decimals": 18 }, - "infoURL": "https://test.ambros.network", - "shortName": "ambrostestnet", + + "infoURL": "https://xanachain.xana.net/", + "shortName": "XANAChain", "chainId": 8888, "networkId": 8888, - "explorers": [{ - "name": "Ambros Chain Explorer", - "url": "https://testnet.ambrosscan.com", - "standard": "none" - }] + "icon": "xeta", + "explorers": [ + { + "name": "XANAChain", + "url": "https://xanachain.xana.net", + "standard": "EIP3091" + } + ], + "redFlags": ["reusedChainId"] } diff --git a/_data/chains/eip155-88880.json b/_data/chains/eip155-88880.json new file mode 100644 index 000000000000..9b4510ad0b5b --- /dev/null +++ b/_data/chains/eip155-88880.json @@ -0,0 +1,25 @@ +{ + "name": "Chiliz Scoville Testnet", + "chain": "CHZ", + "status": "deprecated", + "rpc": ["https://scoville-rpc.chiliz.com"], + "faucets": ["https://scoville-faucet.chiliz.com"], + "nativeCurrency": { + "name": "Chiliz", + "symbol": "CHZ", + "decimals": 18 + }, + "icon": "chiliz", + "infoURL": "https://www.chiliz.com/en/chain", + "shortName": "chz", + "chainId": 88880, + "networkId": 88880, + "slip44": 1, + "explorers": [ + { + "name": "scoville-explorer", + "url": "https://scoville-explorer.chiliz.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-88882.json b/_data/chains/eip155-88882.json new file mode 100644 index 000000000000..a4829f8617ca --- /dev/null +++ b/_data/chains/eip155-88882.json @@ -0,0 +1,27 @@ +{ + "name": "Chiliz Spicy Testnet", + "chain": "CHZ", + "rpc": ["https://spicy-rpc.chiliz.com"], + "faucets": [ + "https://spicy-faucet.chiliz.com", + "https://tatum.io/faucets/chiliz" + ], + "nativeCurrency": { + "name": "Chiliz", + "symbol": "CHZ", + "decimals": 18 + }, + "icon": "chilizspicy", + "infoURL": "https://www.chiliz.com/en/chain", + "shortName": "chzspicy", + "chainId": 88882, + "networkId": 88882, + "slip44": 1, + "explorers": [ + { + "name": "spicy-explorer", + "url": "https://testnet.chiliscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-88888.json b/_data/chains/eip155-88888.json index 0c5c965d152a..267887fa6363 100644 --- a/_data/chains/eip155-88888.json +++ b/_data/chains/eip155-88888.json @@ -1,25 +1,36 @@ { - "name": "IVAR Chain Mainnet", - "chain": "IVAR", - "icon": "ivar", - "rpc": [ - "https://mainnet-rpc.ivarex.com" - ], - "faucets": [ - "https://faucet.ivarex.com/" - ], - "nativeCurrency": { - "name": "Ivar", - "symbol": "IVAR", - "decimals": 18 + "name": "Chiliz Chain Mainnet", + "chain": "CHZ", + "icon": "chilizchain", + "rpc": [ + "https://rpc.chiliz.com", + "https://rpc.ankr.com/chiliz", + "https://chiliz.publicnode.com" + ], + "faucets": [ + "https://spicy-faucet.chiliz.com", + "https://tatum.io/faucets/chiliz" + ], + "nativeCurrency": { + "name": "Chiliz", + "symbol": "CHZ", + "decimals": 18 + }, + "infoURL": "https://chiliz.com", + "shortName": "chzmainnet", + "chainId": 88888, + "networkId": 88888, + "redFlags": ["reusedChainId"], + "explorers": [ + { + "name": "chiliscan", + "url": "https://chiliscan.com", + "standard": "EIP3091" }, - "infoURL": "https://ivarex.com", - "shortName": "ivar", - "chainId": 88888, - "networkId": 88888, - "explorers": [{ - "name": "ivarscan", - "url": "https://ivarscan.com", + { + "name": "chilizscan", + "url": "https://scan.chiliz.com", "standard": "EIP3091" - }] + } + ] } diff --git a/_data/chains/eip155-888882.json b/_data/chains/eip155-888882.json new file mode 100644 index 000000000000..67420c401c29 --- /dev/null +++ b/_data/chains/eip155-888882.json @@ -0,0 +1,23 @@ +{ + "name": "REXX Mainnet", + "title": "REXX Mainnet", + "chain": "REXX", + "rpc": ["https://rpc.rexxnetwork.com"], + "faucets": [], + "nativeCurrency": { + "name": "REXX", + "symbol": "REXX", + "decimals": 18 + }, + "infoURL": "https://rexxnetwork.com", + "shortName": "REXX", + "chainId": 888882, + "networkId": 888882, + "explorers": [ + { + "name": "REXX Mainnet Explorer", + "url": "https://rexxnetwork.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-888888.json b/_data/chains/eip155-888888.json index c0969d3e302d..57c1b7febf04 100644 --- a/_data/chains/eip155-888888.json +++ b/_data/chains/eip155-888888.json @@ -1,24 +1,23 @@ { - "name": "Vision - Mainnet", - "chain": "Vision", - "rpc": [ - "https://infragrid.v.network/ethereum/compatible" - ], - "faucets": [ - ], - "nativeCurrency": { - "name": "VS", - "symbol": "VS", - "decimals": 18 - }, - "infoURL": "https://www.v.network", - "explorers": [{ - "name": "Visionscan", - "url": "https://www.visionscan.org", - "standard": "EIP3091" - }], - "shortName": "vision", - "chainId": 888888, - "networkId": 888888, - "slip44": 60 - } + "name": "Vision - Mainnet", + "chain": "Vision", + "rpc": ["https://infragrid.v.network/ethereum/compatible"], + "faucets": [], + "nativeCurrency": { + "name": "VS", + "symbol": "VS", + "decimals": 18 + }, + "infoURL": "https://www.v.network", + "explorers": [ + { + "name": "Visionscan", + "url": "https://www.visionscan.org", + "standard": "EIP3091" + } + ], + "shortName": "vision", + "chainId": 888888, + "networkId": 888888, + "slip44": 60 +} diff --git a/_data/chains/eip155-8888881.json b/_data/chains/eip155-8888881.json new file mode 100644 index 000000000000..efa632bfc5af --- /dev/null +++ b/_data/chains/eip155-8888881.json @@ -0,0 +1,19 @@ +{ + "name": "Quarix Testnet", + "chain": "Quarix", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "QARE", + "symbol": "QARE", + "decimals": 18 + }, + "infoURL": "", + "shortName": "quarix-testnet", + "chainId": 8888881, + "networkId": 8888881, + "slip44": 1, + "icon": "quarix", + "explorers": [] +} diff --git a/_data/chains/eip155-8888888.json b/_data/chains/eip155-8888888.json new file mode 100644 index 000000000000..db1ddade5346 --- /dev/null +++ b/_data/chains/eip155-8888888.json @@ -0,0 +1,18 @@ +{ + "name": "Quarix", + "chain": "Quarix", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "QARE", + "symbol": "QARE", + "decimals": 18 + }, + "infoURL": "", + "shortName": "quarix", + "chainId": 8888888, + "networkId": 8888888, + "icon": "quarix", + "explorers": [] +} diff --git a/_data/chains/eip155-88888888.json b/_data/chains/eip155-88888888.json new file mode 100644 index 000000000000..156857f3008a --- /dev/null +++ b/_data/chains/eip155-88888888.json @@ -0,0 +1,31 @@ +{ + "name": "T.E.A.M Blockchain", + "chain": "TEAM", + "icon": "team", + "rpc": ["https://rpc.teamblockchain.team"], + "faucets": [], + "nativeCurrency": { + "name": "TEAM", + "symbol": "$TEAM", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://teamblockchain.team", + "shortName": "team", + "chainId": 88888888, + "networkId": 88888888, + "explorers": [ + { + "name": "teamscan", + "url": "https://teamblockchain.team", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-888888888.json b/_data/chains/eip155-888888888.json new file mode 100644 index 000000000000..8882ce03514d --- /dev/null +++ b/_data/chains/eip155-888888888.json @@ -0,0 +1,23 @@ +{ + "name": "Ancient8", + "chain": "Ancient8", + "icon": "ancient8", + "rpc": ["https://rpc.ancient8.gg"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ancient8.gg/", + "shortName": "ancient8", + "chainId": 888888888, + "networkId": 888888888, + "explorers": [ + { + "name": "Ancient8 Explorer", + "url": "https://scan.ancient8.gg", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8889.json b/_data/chains/eip155-8889.json new file mode 100644 index 000000000000..28e6407dac5c --- /dev/null +++ b/_data/chains/eip155-8889.json @@ -0,0 +1,15 @@ +{ + "name": "Vyvo Smart Chain", + "chain": "VSC", + "rpc": ["https://vsc-dataseed.vyvo.org:8889"], + "faucets": [], + "nativeCurrency": { + "name": "VSC", + "symbol": "VSC", + "decimals": 18 + }, + "infoURL": "https://vsc-dataseed.vyvo.org", + "shortName": "vsc", + "chainId": 8889, + "networkId": 8889 +} 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-8890.json b/_data/chains/eip155-8890.json new file mode 100644 index 000000000000..de932226bb09 --- /dev/null +++ b/_data/chains/eip155-8890.json @@ -0,0 +1,31 @@ +{ + "name": "Orenium Testnet Protocol", + "chain": "ORE", + "rpc": [ + "https://rpc-dev-testnet.orenium.org/", + "https://rpc-testnet.orenium.org/", + "https://rpc-orc.oredex.finance", + "https://testnet-rpc.oredex.finance", + "https://oredex-node.oredex.finance" + ], + "nativeCurrency": { + "name": "ORENIUM", + "symbol": "tORE", + "decimals": 18 + }, + "infoURL": "https://orenium.org", + "shortName": "tore", + "chainId": 8890, + "networkId": 8890, + "slip44": 1, + "icon": "ore", + "faucets": ["https://faucetcoin.orenium.org"], + "explorers": [ + { + "name": "ORE Testnet Explorer", + "icon": "ore", + "url": "https://testnet.oreniumscan.org", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-8898.json b/_data/chains/eip155-8898.json index 7d85b8e92775..2b2c1fc3e86b 100644 --- a/_data/chains/eip155-8898.json +++ b/_data/chains/eip155-8898.json @@ -7,9 +7,7 @@ "https://dataseed1.mmtscan.io", "https://dataseed2.mmtscan.io" ], - "faucets": [ - "https://faucet.mmtscan.io/" - ], + "faucets": ["https://faucet.mmtscan.io/"], "nativeCurrency": { "name": "Mammoth Token", "symbol": "MMT", @@ -20,10 +18,12 @@ "chainId": 8898, "networkId": 8898, "icon": "mmt", - "explorers": [{ - "name": "mmtscan", - "url": "https://mmtscan.io", - "standard": "EIP3091", - "icon": "mmt" - }] + "explorers": [ + { + "name": "mmtscan", + "url": "https://mmtscan.io", + "standard": "EIP3091", + "icon": "mmt" + } + ] } diff --git a/_data/chains/eip155-8899.json b/_data/chains/eip155-8899.json new file mode 100644 index 000000000000..39f140d9c0a9 --- /dev/null +++ b/_data/chains/eip155-8899.json @@ -0,0 +1,24 @@ +{ + "name": "JIBCHAIN L1", + "chain": "JBC", + "rpc": ["https://rpc-l1.jibchain.net", "https://rpc-l1.inan.in.th"], + "faucets": [], + "icon": "jbc", + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "nativeCurrency": { + "name": "JIBCOIN", + "symbol": "JBC", + "decimals": 18 + }, + "infoURL": "https://jibchain.net", + "shortName": "jbc", + "chainId": 8899, + "networkId": 8899, + "explorers": [ + { + "name": "JIBCHAIN Explorer", + "url": "https://exp-l1.jibchain.net", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-889910245.json b/_data/chains/eip155-889910245.json new file mode 100644 index 000000000000..7d18ef20e8c0 --- /dev/null +++ b/_data/chains/eip155-889910245.json @@ -0,0 +1,23 @@ +{ + "name": "PTCESCAN Testnet", + "title": "PTCESCAN Testnet", + "chain": "PTCE", + "rpc": ["https://rpc-testnet.ptcscan.io"], + "faucets": ["https://faucet.ptcscan.io/"], + "nativeCurrency": { + "name": "PTCE", + "symbol": "PTCE", + "decimals": 18 + }, + "infoURL": "https://ptcscan.io", + "shortName": "PTCE", + "chainId": 889910245, + "networkId": 889910245, + "explorers": [ + { + "name": "PTCESCAN Testnet Explorer", + "url": "https://explorer-testnet.ptcscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-889910246.json b/_data/chains/eip155-889910246.json new file mode 100644 index 000000000000..0ff0d328bb9d --- /dev/null +++ b/_data/chains/eip155-889910246.json @@ -0,0 +1,23 @@ +{ + "name": "PTCESCAN Mainnet", + "title": "PTCESCAN Mainnet", + "chain": "PTCE", + "rpc": ["https://rpc.ptcscan.io"], + "faucets": [], + "nativeCurrency": { + "name": "PTCE", + "symbol": "PTCE", + "decimals": 18 + }, + "infoURL": "https://ptcscan.io", + "shortName": "POLYTECH", + "chainId": 889910246, + "networkId": 889910246, + "explorers": [ + { + "name": "PTCESCAN Explorer", + "url": "https://ptcscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-89.json b/_data/chains/eip155-89.json index 80795cd81e0d..771a14a68453 100644 --- a/_data/chains/eip155-89.json +++ b/_data/chains/eip155-89.json @@ -1,18 +1,16 @@ { - "name": "TomoChain Testnet", - "chain": "TOMO", - "rpc": [ - "https://rpc.testnet.tomochain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "TomoChain", - "symbol": "TOMO", - "decimals": 18 - }, - "infoURL": "https://tomochain.com", - "shortName": "tomot", - "chainId": 89, - "networkId": 89, - "slip44": 889 - } \ No newline at end of file + "name": "Viction Testnet", + "chain": "Viction", + "rpc": ["https://rpc-testnet.viction.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Viction", + "symbol": "VIC", + "decimals": 18 + }, + "infoURL": "https://viction.xyz", + "shortName": "vict", + "chainId": 89, + "networkId": 89, + "slip44": 1 +} diff --git a/_data/chains/eip155-8911.json b/_data/chains/eip155-8911.json new file mode 100644 index 000000000000..8486950ffeb4 --- /dev/null +++ b/_data/chains/eip155-8911.json @@ -0,0 +1,24 @@ +{ + "name": "Algen", + "chain": "ALG", + "rpc": ["https://rpc.algen.network"], + "faucets": [], + "nativeCurrency": { + "name": "ALG", + "symbol": "ALG", + "decimals": 18 + }, + "infoURL": "https://www.algen.network", + "shortName": "alg", + "chainId": 8911, + "networkId": 8911, + "icon": "alg", + "explorers": [ + { + "name": "algscan", + "url": "https://scan.algen.network", + "icon": "alg", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8912.json b/_data/chains/eip155-8912.json new file mode 100644 index 000000000000..19544422b92a --- /dev/null +++ b/_data/chains/eip155-8912.json @@ -0,0 +1,24 @@ +{ + "name": "Algen Testnet", + "chain": "ALG", + "rpc": ["https://rpc.test.algen.network"], + "faucets": [], + "nativeCurrency": { + "name": "ALG", + "symbol": "ALG", + "decimals": 18 + }, + "infoURL": "https://www.algen.network", + "shortName": "algTest", + "chainId": 8912, + "networkId": 8912, + "icon": "alg", + "explorers": [ + { + "name": "algscan", + "url": "https://scan.test.algen.network", + "icon": "alg", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-89127398.json b/_data/chains/eip155-89127398.json new file mode 100644 index 000000000000..f3de91743475 --- /dev/null +++ b/_data/chains/eip155-89127398.json @@ -0,0 +1,24 @@ +{ + "name": "Krown Testnet", + "chain": "KROWN", + "icon": "krown", + "rpc": ["https://testnet.krown.network", "https://testnet1.krown.network"], + "faucets": ["https://faucet.krown.network"], + "nativeCurrency": { + "name": "KROWN", + "symbol": "KROWN", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://krown.network", + "shortName": "krown-testnet", + "chainId": 89127398, + "networkId": 89127398, + "explorers": [ + { + "name": "Krown Testnet Explorer", + "url": "https://explorer-testnet.krown.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8921.json b/_data/chains/eip155-8921.json new file mode 100644 index 000000000000..db674b487eff --- /dev/null +++ b/_data/chains/eip155-8921.json @@ -0,0 +1,28 @@ +{ + "name": "Algen Layer2", + "chain": "ALG L2", + "rpc": ["https://rpc.alg2.algen.network"], + "faucets": [], + "nativeCurrency": { + "name": "ALG", + "symbol": "ALG", + "decimals": 18 + }, + "infoURL": "https://www.algen.network", + "shortName": "algl2", + "chainId": 8921, + "networkId": 8921, + "icon": "algl2", + "explorers": [ + { + "name": "algl2scan", + "url": "https://scan.alg2.algen.network", + "icon": "algl2", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-8911", + "type": "shard" + } +} diff --git a/_data/chains/eip155-8922.json b/_data/chains/eip155-8922.json new file mode 100644 index 000000000000..a22f48afbbec --- /dev/null +++ b/_data/chains/eip155-8922.json @@ -0,0 +1,28 @@ +{ + "name": "Algen Layer2 Testnet", + "chain": "ALG L2", + "rpc": ["https://rpc.alg2-test.algen.network"], + "faucets": [], + "nativeCurrency": { + "name": "ALG", + "symbol": "ALG", + "decimals": 18 + }, + "infoURL": "https://www.algen.network", + "shortName": "algl2Test", + "chainId": 8922, + "networkId": 8922, + "icon": "algl2", + "explorers": [ + { + "name": "algl2scan", + "url": "https://scan.alg2-test.algen.network", + "icon": "algl2", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-8921", + "type": "shard" + } +} 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 new file mode 100644 index 000000000000..1fff4c8195d4 --- /dev/null +++ b/_data/chains/eip155-898.json @@ -0,0 +1,24 @@ +{ + "name": "MAXI Chain Testnet", + "chain": "MAXI", + "rpc": ["https://rpc-testnet.maxi.network"], + "faucets": ["https://faucet.maxi.network"], + "nativeCurrency": { + "name": "MAXI GAS", + "symbol": "MGAS", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://maxi.network", + "shortName": "maxi-testnet", + "chainId": 898, + "networkId": 898, + "icon": "maxi", + "explorers": [ + { + "name": "Maxi Chain Testnet Explorer", + "url": "https://testnet.maxi.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-8989.json b/_data/chains/eip155-8989.json new file mode 100644 index 000000000000..aa68d66331fa --- /dev/null +++ b/_data/chains/eip155-8989.json @@ -0,0 +1,25 @@ +{ + "name": "Giant Mammoth Mainnet", + "title": "Giant Mammoth Chain", + "chain": "GMMT", + "rpc": ["https://rpc-asia.gmmtchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "Giant Mammoth Coin", + "symbol": "GMMT", + "decimals": 18 + }, + "infoURL": "https://gmmtchain.io/", + "shortName": "gmmt", + "chainId": 8989, + "networkId": 8989, + "icon": "gmmt", + "explorers": [ + { + "name": "gmmtscan", + "url": "https://scan.gmmtchain.io", + "standard": "EIP3091", + "icon": "gmmt" + } + ] +} 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-8995.json b/_data/chains/eip155-8995.json index e1cb3264c6d4..7f78b3aa8729 100644 --- a/_data/chains/eip155-8995.json +++ b/_data/chains/eip155-8995.json @@ -1,12 +1,8 @@ { "name": "bloxberg", "chain": "bloxberg", - "rpc": [ - "https://core.bloxberg.org" - ], - "faucets": [ - "https://faucet.bloxberg.org/" - ], + "rpc": ["https://core.bloxberg.org"], + "faucets": ["https://faucet.bloxberg.org/"], "nativeCurrency": { "name": "BERG", "symbol": "U+25B3", diff --git a/_data/chains/eip155-9.json b/_data/chains/eip155-9.json index 579604126211..ddf51b0f9554 100644 --- a/_data/chains/eip155-9.json +++ b/_data/chains/eip155-9.json @@ -1,15 +1,25 @@ { - "name": "Ubiq Network Testnet", - "chain": "UBQ", - "rpc": [], + "name": "Quai Network Mainnet", + "chain": "QUAI", + "icon": "quai", + "rpc": ["https://rpc.quai.network/cyprus1"], + "features": [{ "name": "EIP155" }], "faucets": [], "nativeCurrency": { - "name": "Ubiq Testnet Ether", - "symbol": "TUBQ", + "name": "Quai", + "symbol": "QUAI", "decimals": 18 }, - "infoURL": "https://ethersocial.org", - "shortName": "tubq", + "infoURL": "https://qu.ai", + "shortName": "quai", "chainId": 9, - "networkId": 2 -} \ No newline at end of file + "networkId": 9, + "redFlags": ["reusedChainId"], + "explorers": [ + { + "name": "Quaiscan", + "url": "https://quaiscan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-90.json b/_data/chains/eip155-90.json index cc0c21c9d654..f81b4ba8fddc 100644 --- a/_data/chains/eip155-90.json +++ b/_data/chains/eip155-90.json @@ -1,11 +1,8 @@ { "name": "Garizon Stage0", "chain": "GAR", - "network": "mainnet", "icon": "garizon", - "rpc": [ - "https://s0.garizon.net/rpc" - ], + "rpc": ["https://s0.garizon.net/rpc"], "faucets": [], "nativeCurrency": { "name": "Garizon", @@ -16,10 +13,12 @@ "shortName": "gar-s0", "chainId": 90, "networkId": 90, - "explorers": [{ - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-900.json b/_data/chains/eip155-900.json index ae7db495ea20..6940ebad8e84 100644 --- a/_data/chains/eip155-900.json +++ b/_data/chains/eip155-900.json @@ -1,14 +1,9 @@ { "name": "Garizon Testnet Stage0", "chain": "GAR", - "network": "testnet", "icon": "garizon", - "rpc": [ - "https://s0-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], + "rpc": ["https://s0-testnet.garizon.net/rpc"], + "faucets": ["https://faucet-testnet.garizon.com"], "nativeCurrency": { "name": "Garizon", "symbol": "GAR", @@ -18,10 +13,12 @@ "shortName": "gar-test-s0", "chainId": 900, "networkId": 900, - "explorers": [{ - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-9000.json b/_data/chains/eip155-9000.json index 4e9e3ccae746..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://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", @@ -12,17 +17,12 @@ "shortName": "evmos-testnet", "chainId": 9000, "networkId": 9000, + "slip44": 1, "icon": "evmos", "explorers": [ { - "name": "Evmos EVM Explorer", - "url": "https://evm.evmos.dev", - "standard": "EIP3091", - "icon": "evmos" - }, - { - "name": "Evmos Cosmos Explorer", - "url": "https://explorer.evmos.dev", + "name": "Evmos Explorer (Escan)", + "url": "https://testnet.escan.live", "standard": "none", "icon": "evmos" } diff --git a/_data/chains/eip155-900000.json b/_data/chains/eip155-900000.json new file mode 100644 index 000000000000..f57ebaae14a3 --- /dev/null +++ b/_data/chains/eip155-900000.json @@ -0,0 +1,22 @@ +{ + "name": "Posichain Mainnet Shard 0", + "chain": "PSC", + "rpc": ["https://api.posichain.org", "https://api.s0.posichain.org"], + "faucets": [], + "nativeCurrency": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "infoURL": "https://posichain.org", + "shortName": "psc-s0", + "chainId": 900000, + "networkId": 900000, + "explorers": [ + { + "name": "Posichain Explorer", + "url": "https://explorer.posichain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-90001.json b/_data/chains/eip155-90001.json new file mode 100644 index 000000000000..bf6918b56921 --- /dev/null +++ b/_data/chains/eip155-90001.json @@ -0,0 +1,23 @@ +{ + "name": "Pundi AIFX Omnilayer Testnet", + "chain": "PUNDIAI", + "rpc": ["https://testnet-fx-json-web3.functionx.io:8545"], + "faucets": [], + "nativeCurrency": { + "name": "Pundi AIFX", + "symbol": "PUNDAI", + "decimals": 18 + }, + "infoURL": "https://fx.pundi.ai/", + "shortName": "dhobyghaut", + "chainId": 90001, + "networkId": 90001, + "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 3a428fcbfaac..0d503ced0c05 100644 --- a/_data/chains/eip155-9001.json +++ b/_data/chains/eip155-9001.json @@ -1,7 +1,12 @@ { "name": "Evmos", "chain": "Evmos", - "rpc": ["https://eth.bd.evmos.org:8545"], + "rpc": [ + "https://evmos.lava.build", + "wss://evmos.lava.build/websocket", + "https://evmos-evm-rpc.publicnode.com", + "wss://evmos-evm-rpc.publicnode.com" + ], "faucets": [], "nativeCurrency": { "name": "Evmos", @@ -15,14 +20,8 @@ "icon": "evmos", "explorers": [ { - "name": "Evmos EVM Explorer (Blockscout)", - "url": "https://evm.evmos.org", - "standard": "none", - "icon": "evmos" - }, - { - "name": "Evmos Cosmos Explorer (Mintscan)", - "url": "https://www.mintscan.io/evmos", + "name": "Evmos Explorer (Escan)", + "url": "https://escan.live", "standard": "none", "icon": "evmos" } 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-9007.json b/_data/chains/eip155-9007.json new file mode 100644 index 000000000000..4262b9566c75 --- /dev/null +++ b/_data/chains/eip155-9007.json @@ -0,0 +1,27 @@ +{ + "name": "Shido Testnet Block", + "chain": "Shido Testnet", + "rpc": [ + "https://rpc-testnet-nodes.shidoscan.com", + "wss://wss-testnet-nodes.shidoscan.com" + ], + "faucets": ["https://testnet.shidoscan.com/faucet"], + "nativeCurrency": { + "name": "Shido Testnet Token", + "symbol": "SHIDO", + "decimals": 18 + }, + "infoURL": "https://www.nexablock.io", + "shortName": "ShidoTestnet", + "chainId": 9007, + "networkId": 9007, + "icon": "shidoChain", + "explorers": [ + { + "name": "Shidoblock Testnet Explorer", + "url": "https://testnet.shidoscan.com", + "standard": "none", + "icon": "shidoChain" + } + ] +} diff --git a/_data/chains/eip155-9008.json b/_data/chains/eip155-9008.json new file mode 100644 index 000000000000..1b0960b9a95f --- /dev/null +++ b/_data/chains/eip155-9008.json @@ -0,0 +1,29 @@ +{ + "name": "Shido Network", + "chain": "Shido Mainnet", + "rpc": [ + "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", + "symbol": "SHIDO", + "decimals": 18 + }, + "infoURL": "https://shido.io", + "shortName": "Shido", + "chainId": 9008, + "networkId": 9008, + "icon": "shidoChain", + "explorers": [ + { + "name": "Shidoscan", + "url": "https://shidoscan.com", + "standard": "none", + "icon": "shidoChain" + } + ] +} diff --git a/_data/chains/eip155-901.json b/_data/chains/eip155-901.json index 419eef107a99..e97843b5cf02 100644 --- a/_data/chains/eip155-901.json +++ b/_data/chains/eip155-901.json @@ -1,14 +1,9 @@ { "name": "Garizon Testnet Stage1", "chain": "GAR", - "network": "testnet", "icon": "garizon", - "rpc": [ - "https://s1-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], + "rpc": ["https://s1-testnet.garizon.net/rpc"], + "faucets": ["https://faucet-testnet.garizon.com"], "nativeCurrency": { "name": "Garizon", "symbol": "GAR", @@ -18,12 +13,15 @@ "shortName": "gar-test-s1", "chainId": 901, "networkId": 901, - "explorers": [{ - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - }], + "slip44": 1, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], "parent": { "chain": "eip155-900", "type": "shard" diff --git a/_data/chains/eip155-9012.json b/_data/chains/eip155-9012.json new file mode 100644 index 000000000000..836cd785414d --- /dev/null +++ b/_data/chains/eip155-9012.json @@ -0,0 +1,23 @@ +{ + "name": "BerylBit Mainnet", + "chain": "BRB", + "rpc": ["https://mainnet.berylbit.io"], + "faucets": ["https://t.me/BerylBit"], + "nativeCurrency": { + "name": "BerylBit Chain Native Token", + "symbol": "BRB", + "decimals": 18 + }, + "infoURL": "https://www.beryl-bit.com", + "shortName": "brb", + "chainId": 9012, + "networkId": 9012, + "icon": "berylbit", + "explorers": [ + { + "name": "berylbit-explorer", + "url": "https://explorer.berylbit.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-902.json b/_data/chains/eip155-902.json index 4494f93aa9e1..b8b0d11d9992 100644 --- a/_data/chains/eip155-902.json +++ b/_data/chains/eip155-902.json @@ -1,14 +1,9 @@ { "name": "Garizon Testnet Stage2", "chain": "GAR", - "network": "testnet", "icon": "garizon", - "rpc": [ - "https://s2-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], + "rpc": ["https://s2-testnet.garizon.net/rpc"], + "faucets": ["https://faucet-testnet.garizon.com"], "nativeCurrency": { "name": "Garizon", "symbol": "GAR", @@ -18,12 +13,15 @@ "shortName": "gar-test-s2", "chainId": 902, "networkId": 902, - "explorers": [{ - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - }], + "slip44": 1, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], "parent": { "chain": "eip155-900", "type": "shard" diff --git a/_data/chains/eip155-90210.json b/_data/chains/eip155-90210.json new file mode 100644 index 000000000000..6f9bcfe382a0 --- /dev/null +++ b/_data/chains/eip155-90210.json @@ -0,0 +1,24 @@ +{ + "name": "Beverly Hills", + "title": "Ethereum multi-client Verkle Testnet Beverly Hills", + "chain": "ETH", + "rpc": ["https://rpc.beverlyhills.ethdevops.io:8545"], + "faucets": ["https://faucet.beverlyhills.ethdevops.io"], + "nativeCurrency": { + "name": "Beverly Hills Testnet Ether", + "symbol": "BVE", + "decimals": 18 + }, + "infoURL": "https://beverlyhills.ethdevops.io", + "shortName": "bvhl", + "chainId": 90210, + "networkId": 90210, + "status": "incubating", + "explorers": [ + { + "name": "Beverly Hills explorer", + "url": "https://explorer.beverlyhills.ethdevops.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-9024.json b/_data/chains/eip155-9024.json new file mode 100644 index 000000000000..5cfb41788338 --- /dev/null +++ b/_data/chains/eip155-9024.json @@ -0,0 +1,24 @@ +{ + "name": "Nexa Testnet Block", + "chain": "Nexa Testnet", + "rpc": ["https://rpc-testnet-nodes.nexablockscan.io"], + "faucets": ["https://testnet.nexablockscan.io/faucet"], + "nativeCurrency": { + "name": "Nexa Testnet Token", + "symbol": "NEXB", + "decimals": 18 + }, + "infoURL": "https://www.nexablock.io", + "shortName": "NexaTestnet", + "chainId": 9024, + "networkId": 9024, + "icon": "nexaChain", + "explorers": [ + { + "name": "Nexablock Testnet Explorer", + "url": "https://testnet.nexablockscan.io", + "standard": "none", + "icon": "nexaChain" + } + ] +} diff --git a/_data/chains/eip155-9025.json b/_data/chains/eip155-9025.json new file mode 100644 index 000000000000..8fa8d6ad72ab --- /dev/null +++ b/_data/chains/eip155-9025.json @@ -0,0 +1,28 @@ +{ + "name": "Nexa Mainnet Block", + "chain": "Nexa Mainnet", + "rpc": [ + "https://rpc-nodes.nexablockscan.io", + "wss://wss-nodes.nexablockscan.io", + "https://rpc-nodes-delta.nexablockscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Nexa Mainnet Token", + "symbol": "NEXB", + "decimals": 18 + }, + "infoURL": "https://www.nexablock.io", + "shortName": "Nexa", + "chainId": 9025, + "networkId": 9025, + "icon": "nexaChain", + "explorers": [ + { + "name": "Nexablock Mainnet Explorer", + "url": "https://nexablockscan.io", + "standard": "none", + "icon": "nexaChain" + } + ] +} 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-903.json b/_data/chains/eip155-903.json index 73ac913a3def..9dd4ad270613 100644 --- a/_data/chains/eip155-903.json +++ b/_data/chains/eip155-903.json @@ -1,14 +1,9 @@ { "name": "Garizon Testnet Stage3", "chain": "GAR", - "network": "testnet", "icon": "garizon", - "rpc": [ - "https://s3-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], + "rpc": ["https://s3-testnet.garizon.net/rpc"], + "faucets": ["https://faucet-testnet.garizon.com"], "nativeCurrency": { "name": "Garizon", "symbol": "GAR", @@ -18,12 +13,15 @@ "shortName": "gar-test-s3", "chainId": 903, "networkId": 903, - "explorers": [{ - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - }], + "slip44": 1, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], "parent": { "chain": "eip155-900", "type": "shard" diff --git a/_data/chains/eip155-9030.json b/_data/chains/eip155-9030.json new file mode 100644 index 000000000000..bde21c2fd07b --- /dev/null +++ b/_data/chains/eip155-9030.json @@ -0,0 +1,29 @@ +{ + "name": "Qubetics Mainnet", + "chain": "Qubetics Mainnet", + "rpc": [ + "https://rpc.qubetics.com", + "wss://socket-testnet.qubetics.work", + "https://evm-rpc-arch.qubetics.com", + "https://evm-ws-arch.qubetics.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Qubetics", + "symbol": "TICS", + "decimals": 18 + }, + "infoURL": "https://www.qubetics.com", + "shortName": "QubeticsMainnet", + "chainId": 9030, + "networkId": 9030, + "icon": "qubetics", + "explorers": [ + { + "name": "Qubetics Mainnet Explorer", + "url": "https://ticsscan.com", + "standard": "none", + "icon": "qubetics" + } + ] +} diff --git a/_data/chains/eip155-90354.json b/_data/chains/eip155-90354.json new file mode 100644 index 000000000000..91fecc0aaa78 --- /dev/null +++ b/_data/chains/eip155-90354.json @@ -0,0 +1,31 @@ +{ + "name": "Camp Testnet", + "chain": "ETH", + "icon": "camp", + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "rpc": ["https://rpc-camp-network-4xje7wy105.t.conduit.xyz"], + "faucets": ["https://www.campnetwork.xyz/faucet"], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://campaign-1.gitbook.io/camp-technical-docså", + "shortName": "camp", + "chainId": 90354, + "networkId": 90354, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorerl2new-camp-network-4xje7wy105.t.conduit.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [{ "url": "https://camp-testnet-bridge.vercel.app/" }] + } +} diff --git a/_data/chains/eip155-904.json b/_data/chains/eip155-904.json new file mode 100644 index 000000000000..5cf0410ff23f --- /dev/null +++ b/_data/chains/eip155-904.json @@ -0,0 +1,18 @@ +{ + "name": "Ault Blockchain Mainnet", + "chain": "AULT", + "icon": "ault", + "rpc": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "AULT Token", + "symbol": "AULT", + "decimals": 18 + }, + "infoURL": "https://aultblockchain.com", + "shortName": "ault", + "chainId": 904, + "networkId": 904, + "explorers": [] +} 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-909.json b/_data/chains/eip155-909.json new file mode 100644 index 000000000000..d7ce686ca35e --- /dev/null +++ b/_data/chains/eip155-909.json @@ -0,0 +1,18 @@ +{ + "name": "Portal Fantasy Chain", + "chain": "PF", + "icon": "pf", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Portal Fantasy Token", + "symbol": "PFT", + "decimals": 18 + }, + "infoURL": "https://portalfantasy.io", + "shortName": "PF", + "chainId": 909, + "networkId": 909, + "explorers": [], + "status": "incubating" +} 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-91.json b/_data/chains/eip155-91.json index df8d56cbebca..5e22979a90c9 100644 --- a/_data/chains/eip155-91.json +++ b/_data/chains/eip155-91.json @@ -1,11 +1,8 @@ { "name": "Garizon Stage1", "chain": "GAR", - "network": "mainnet", "icon": "garizon", - "rpc": [ - "https://s1.garizon.net/rpc" - ], + "rpc": ["https://s1.garizon.net/rpc"], "faucets": [], "nativeCurrency": { "name": "Garizon", @@ -16,12 +13,14 @@ "shortName": "gar-s1", "chainId": 91, "networkId": 91, - "explorers": [{ - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - }], + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], "parent": { "chain": "eip155-90", "type": "shard" diff --git a/_data/chains/eip155-910.json b/_data/chains/eip155-910.json new file mode 100644 index 000000000000..73df77d3f971 --- /dev/null +++ b/_data/chains/eip155-910.json @@ -0,0 +1,16 @@ +{ + "name": "DecentraBone Layer1 Testnet", + "chain": "DBONE", + "rpc": ["https://layer1test.decentrabone.com"], + "faucets": [], + "nativeCurrency": { + "name": "DecentraBone", + "symbol": "DBONE", + "decimals": 18 + }, + "infoURL": "https://decentrabone.com", + "shortName": "DBONE", + "chainId": 910, + "networkId": 910, + "slip44": 1 +} diff --git a/_data/chains/eip155-9100.json b/_data/chains/eip155-9100.json index 25e233adf521..2c00f48dbc73 100644 --- a/_data/chains/eip155-9100.json +++ b/_data/chains/eip155-9100.json @@ -1,10 +1,7 @@ { "name": "Genesis Coin", "chain": "Genesis", - "rpc": [ - "https://genesis-gn.com", - "wss://genesis-gn.com" - ], + "rpc": ["https://genesis-gn.com", "wss://genesis-gn.com"], "faucets": [], "nativeCurrency": { "name": "GN Coin", @@ -15,4 +12,4 @@ "shortName": "GENEC", "chainId": 9100, "networkId": 9100 -} \ No newline at end of file +} diff --git a/_data/chains/eip155-910000.json b/_data/chains/eip155-910000.json new file mode 100644 index 000000000000..b50f7c778fd1 --- /dev/null +++ b/_data/chains/eip155-910000.json @@ -0,0 +1,22 @@ +{ + "name": "Posichain Testnet Shard 0", + "chain": "PSC", + "rpc": ["https://api.s0.t.posichain.org"], + "faucets": ["https://faucet.posichain.org/"], + "nativeCurrency": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "infoURL": "https://posichain.org", + "shortName": "psc-t-s0", + "chainId": 910000, + "networkId": 910000, + "explorers": [ + { + "name": "Posichain Explorer Testnet", + "url": "https://explorer-testnet.posichain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-91002.json b/_data/chains/eip155-91002.json new file mode 100644 index 000000000000..20730d8eb4b0 --- /dev/null +++ b/_data/chains/eip155-91002.json @@ -0,0 +1,24 @@ +{ + "name": "Nautilus Trition Chain", + "title": "Nautilus Trition Testnet", + "chain": "ETH", + "icon": "nautilus", + "rpc": ["https://triton.api.nautchain.xyz"], + "faucets": ["https://faucet.eclipse.builders"], + "nativeCurrency": { + "name": "Nautilus Zebec Testnet Tokens", + "symbol": "tZBC", + "decimals": 18 + }, + "infoURL": "https://docs.nautchain.xyz", + "shortName": "NAUT", + "chainId": 91002, + "networkId": 91002, + "explorers": [ + { + "name": "Nautscan", + "url": "https://triton.nautscan.com", + "standard": "EIP3091" + } + ] +} 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-911.json b/_data/chains/eip155-911.json new file mode 100644 index 000000000000..653bb461161c --- /dev/null +++ b/_data/chains/eip155-911.json @@ -0,0 +1,25 @@ +{ + "name": "TAPROOT Mainnet", + "title": "TAPROOT Mainnet", + "chain": "TAPROOT CHAIN", + "rpc": ["https://rpc.taprootchain.io"], + "faucets": [], + "nativeCurrency": { + "name": "TBTC", + "symbol": "TBTC", + "decimals": 18 + }, + "infoURL": "https://taprootchain.io", + "shortName": "TAPROOT-Mainnet", + "chainId": 911, + "networkId": 911, + "icon": "taproot", + "explorers": [ + { + "name": "TAPROOT Scan", + "url": "https://scan.taprootchain.io", + "icon": "taproot", + "standard": "EIP3091" + } + ] +} 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-91120.json b/_data/chains/eip155-91120.json new file mode 100644 index 000000000000..d92264abf23a --- /dev/null +++ b/_data/chains/eip155-91120.json @@ -0,0 +1,24 @@ +{ + "name": "MetaDAP Enterprise Mainnet", + "title": "MetaDAP Enterprise Mainnet", + "chain": "MetaDAP", + "icon": "metadap", + "faucets": [], + "rpc": ["https://rpc.chain.metadap.io", "wss://rpc-ws.chain.metadap.io"], + "nativeCurrency": { + "name": "DAP", + "symbol": "DAP", + "decimals": 18 + }, + "infoURL": "https://metadap.io/", + "shortName": "MetaDAP", + "chainId": 91120, + "networkId": 91120, + "explorers": [ + { + "name": "MetaDAP Enterprise Mainnet explorer", + "url": "https://explorer.chain.metadap.io", + "standard": "none" + } + ] +} 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-912559.json b/_data/chains/eip155-912559.json new file mode 100644 index 000000000000..0cd1db84a97b --- /dev/null +++ b/_data/chains/eip155-912559.json @@ -0,0 +1,23 @@ +{ + "name": "Astria EVM Dusknet", + "chain": "RIA", + "icon": "astria", + "chainId": 912559, + "networkId": 912559, + "infoURL": "https://docs.astria.org", + "shortName": "ria-dev", + "nativeCurrency": { + "name": "RIA", + "symbol": "RIA", + "decimals": 18 + }, + "rpc": ["https://rpc.evm.dusk-3.devnet.astria.org"], + "faucets": ["https://faucet.evm.dusk-3.devnet.astria.org/"], + "explorers": [ + { + "name": "Astria EVM Dusknet Explorer", + "url": "https://explorer.evm.dusk-3.devnet.astria.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9134.json b/_data/chains/eip155-9134.json new file mode 100644 index 000000000000..0441d0aa2d39 --- /dev/null +++ b/_data/chains/eip155-9134.json @@ -0,0 +1,16 @@ +{ + "name": "GIWA", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://giwa.io", + "shortName": "giwa", + "chainId": 9134, + "networkId": 9134, + "status": "incubating" +} diff --git a/_data/chains/eip155-91342.json b/_data/chains/eip155-91342.json new file mode 100644 index 000000000000..d2efd2db244a --- /dev/null +++ b/_data/chains/eip155-91342.json @@ -0,0 +1,25 @@ +{ + "name": "GIWA Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://sepolia-rpc.giwa.io"], + "faucets": ["https://faucet.giwa.io"], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://giwa.io", + "shortName": "giwasepolia", + "chainId": 91342, + "networkId": 91342, + "slip44": 1, + "icon": "giwaTestnet", + "explorers": [ + { + "name": "GIWA Sepolia Blockscout", + "url": "https://sepolia-explorer.giwa.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-917.json b/_data/chains/eip155-917.json new file mode 100644 index 000000000000..909fd844ca8d --- /dev/null +++ b/_data/chains/eip155-917.json @@ -0,0 +1,27 @@ +{ + "name": "Rinia", + "title": "Firechain Testnet Rinia", + "chain": "FIRE", + "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": [ + { + "name": "FireScan", + "url": "https://rinia.firescan.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9170.json b/_data/chains/eip155-9170.json new file mode 100644 index 000000000000..1b26030174f9 --- /dev/null +++ b/_data/chains/eip155-9170.json @@ -0,0 +1,15 @@ +{ + "name": "Rinia Testnet Old", + "chain": "FIRE", + "icon": "rinia", + "rpc": [], + "faucets": ["https://faucet.thefirechain.com"], + "nativeCurrency": { "name": "Firechain", "symbol": "FIRE", "decimals": 18 }, + "infoURL": "https://thefirechain.com", + "shortName": "_old_tfire", + "chainId": 9170, + "networkId": 9170, + "slip44": 1, + "explorers": [], + "status": "deprecated" +} diff --git a/_data/chains/eip155-91715.json b/_data/chains/eip155-91715.json new file mode 100644 index 000000000000..f9559309da0d --- /dev/null +++ b/_data/chains/eip155-91715.json @@ -0,0 +1,23 @@ +{ + "name": "Combo Testnet", + "chain": "Combo", + "icon": "combo", + "rpc": ["https://test-rpc.combonetwork.io"], + "faucets": [], + "nativeCurrency": { + "name": "BNB Chain Native Token", + "symbol": "tcBNB", + "decimals": 18 + }, + "infoURL": "https://combonetwork.io", + "shortName": "combo-testnet", + "chainId": 91715, + "networkId": 91715, + "explorers": [ + { + "name": "combotrace explorer", + "url": "https://combotrace-testnet.nodereal.io", + "standard": "EIP3091" + } + ] +} 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 new file mode 100644 index 000000000000..afde3065d119 --- /dev/null +++ b/_data/chains/eip155-919.json @@ -0,0 +1,34 @@ +{ + "name": "Mode Testnet", + "chain": "ETH", + "rpc": ["https://sepolia.mode.network"], + "faucets": ["https://sepoliafaucet.com/"], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.mode.network/", + "shortName": "modesep", + "chainId": 919, + "networkId": 919, + "slip44": 1, + "icon": "modeTestnet", + "explorers": [ + { + "name": "modescout", + "url": "https://sepolia.explorer.mode.network", + "standard": "none" + }, + { + "name": "Routesan", + "url": "https://testnet.modescan.io", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://bridge.mode.network/" }] + } +} diff --git a/_data/chains/eip155-92.json b/_data/chains/eip155-92.json index 4d23e9bfdfe9..7f138d4d436b 100644 --- a/_data/chains/eip155-92.json +++ b/_data/chains/eip155-92.json @@ -1,11 +1,8 @@ { "name": "Garizon Stage2", "chain": "GAR", - "network": "mainnet", "icon": "garizon", - "rpc": [ - "https://s2.garizon.net/rpc" - ], + "rpc": ["https://s2.garizon.net/rpc"], "faucets": [], "nativeCurrency": { "name": "Garizon", @@ -16,12 +13,14 @@ "shortName": "gar-s2", "chainId": 92, "networkId": 92, - "explorers": [{ - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - }], + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], "parent": { "chain": "eip155-90", "type": "shard" diff --git a/_data/chains/eip155-920000.json b/_data/chains/eip155-920000.json new file mode 100644 index 000000000000..c7925ed189f6 --- /dev/null +++ b/_data/chains/eip155-920000.json @@ -0,0 +1,22 @@ +{ + "name": "Posichain Devnet Shard 0", + "chain": "PSC", + "rpc": ["https://api.s0.d.posichain.org"], + "faucets": ["https://faucet.posichain.org/"], + "nativeCurrency": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "infoURL": "https://posichain.org", + "shortName": "psc-d-s0", + "chainId": 920000, + "networkId": 920000, + "explorers": [ + { + "name": "Posichain Explorer Devnet", + "url": "https://explorer-devnet.posichain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-920001.json b/_data/chains/eip155-920001.json new file mode 100644 index 000000000000..1470cc41d724 --- /dev/null +++ b/_data/chains/eip155-920001.json @@ -0,0 +1,22 @@ +{ + "name": "Posichain Devnet Shard 1", + "chain": "PSC", + "rpc": ["https://api.s1.d.posichain.org"], + "faucets": ["https://faucet.posichain.org/"], + "nativeCurrency": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "infoURL": "https://posichain.org", + "shortName": "psc-d-s1", + "chainId": 920001, + "networkId": 920001, + "explorers": [ + { + "name": "Posichain Explorer Devnet", + "url": "https://explorer-devnet.posichain.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-92001.json b/_data/chains/eip155-92001.json new file mode 100644 index 000000000000..09beb390101a --- /dev/null +++ b/_data/chains/eip155-92001.json @@ -0,0 +1,25 @@ +{ + "name": "Lambda Testnet", + "chain": "Lambda", + "rpc": ["https://evm.lambda.top/"], + "faucets": ["https://faucet.lambda.top"], + "nativeCurrency": { + "name": "test-Lamb", + "symbol": "LAMB", + "decimals": 18 + }, + "infoURL": "https://lambda.im", + "shortName": "lambda-testnet", + "chainId": 92001, + "networkId": 92001, + "slip44": 1, + "icon": "lambda", + "explorers": [ + { + "name": "Lambda EVM Explorer", + "url": "https://explorer.lambda.top", + "standard": "EIP3091", + "icon": "lambda" + } + ] +} 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-9223.json b/_data/chains/eip155-9223.json new file mode 100644 index 000000000000..c3eb923bbe58 --- /dev/null +++ b/_data/chains/eip155-9223.json @@ -0,0 +1,23 @@ +{ + "name": "Codefin Mainnet", + "chain": "COF", + "icon": "codefin", + "rpc": ["https://chain-rpc.codefin.pro"], + "faucets": [], + "nativeCurrency": { + "name": "Codefin", + "symbol": "COF", + "decimals": 18 + }, + "infoURL": "https://network.codefin.pro", + "shortName": "COF", + "chainId": 9223, + "networkId": 9223, + "explorers": [ + { + "name": "Codefin Net Explorer", + "url": "https://explorer.codefin.pro", + "standard": "EIP3091" + } + ] +} 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-923018.json b/_data/chains/eip155-923018.json new file mode 100644 index 000000000000..3b3bcdda88a7 --- /dev/null +++ b/_data/chains/eip155-923018.json @@ -0,0 +1,25 @@ +{ + "name": "FNCY Testnet", + "chain": "FNCY", + "rpc": ["https://fncy-testnet-seed.fncy.world"], + "faucets": ["https://faucet-testnet.fncy.world"], + "nativeCurrency": { + "name": "FNCY", + "symbol": "FNCY", + "decimals": 18 + }, + "infoURL": "https://fncyscan-testnet.fncy.world", + "shortName": "tFNCY", + "chainId": 923018, + "networkId": 923018, + "slip44": 1, + "icon": "fncy", + "explorers": [ + { + "name": "fncy scan testnet", + "url": "https://fncyscan-testnet.fncy.world", + "icon": "fncy", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-927.json b/_data/chains/eip155-927.json new file mode 100644 index 000000000000..44494faff7d9 --- /dev/null +++ b/_data/chains/eip155-927.json @@ -0,0 +1,23 @@ +{ + "name": "Yidark Chain Mainnet", + "chain": "Yidark", + "icon": "ydk", + "rpc": ["https://rpc.yidark.io"], + "faucets": [], + "nativeCurrency": { + "name": "Yidark", + "symbol": "YDK", + "decimals": 18 + }, + "infoURL": "https://yidarkscan.com", + "shortName": "ydk", + "chainId": 927, + "networkId": 927, + "explorers": [ + { + "name": "Yidarkscan", + "url": "https://yidarkscan.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-93.json b/_data/chains/eip155-93.json index 3802ec4c2894..64acfd935c5e 100644 --- a/_data/chains/eip155-93.json +++ b/_data/chains/eip155-93.json @@ -1,11 +1,8 @@ { "name": "Garizon Stage3", "chain": "GAR", - "network": "mainnet", "icon": "garizon", - "rpc": [ - "https://s3.garizon.net/rpc" - ], + "rpc": ["https://s3.garizon.net/rpc"], "faucets": [], "nativeCurrency": { "name": "Garizon", @@ -16,12 +13,14 @@ "shortName": "gar-s3", "chainId": 93, "networkId": 93, - "explorers": [{ - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - }], + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], "parent": { "chain": "eip155-90", "type": "shard" 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-9322252.json b/_data/chains/eip155-9322252.json new file mode 100644 index 000000000000..6c0291bf9d42 --- /dev/null +++ b/_data/chains/eip155-9322252.json @@ -0,0 +1,27 @@ +{ + "name": "XCAP", + "title": "XCAP Mainnet", + "chain": "XCAP", + "rpc": [ + "https://xcap-mainnet.relay.xcap.network/znzvh2ueyvm2yts5fv5gnul395jbkfb2/rpc1" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gas", + "symbol": "GAS", + "decimals": 18 + }, + "infoURL": "https://xcap.network/", + "shortName": "xcap", + "chainId": 9322252, + "networkId": 9322252, + "icon": "xcap", + "explorers": [ + { + "name": "blockscout", + "url": "https://xcap-mainnet.explorer.xcap.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9322253.json b/_data/chains/eip155-9322253.json new file mode 100644 index 000000000000..3d42669fbd6b --- /dev/null +++ b/_data/chains/eip155-9322253.json @@ -0,0 +1,27 @@ +{ + "name": "Milvine", + "title": "XCAP Testnet Milvine", + "chain": "XCAP", + "rpc": [ + "https://xcap-milvine.relay.xcap.network/zj5l55ftsgi027kz4nf14vs8d89inego/rpc1" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gas", + "symbol": "GAS", + "decimals": 18 + }, + "infoURL": "https://xcap.network/", + "shortName": "milv", + "chainId": 9322253, + "networkId": 9322253, + "icon": "xcap", + "explorers": [ + { + "name": "blockscout", + "url": "https://xcap-milvine.explorer.xcap.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9339.json b/_data/chains/eip155-9339.json new file mode 100644 index 000000000000..7e9f18e462f5 --- /dev/null +++ b/_data/chains/eip155-9339.json @@ -0,0 +1,24 @@ +{ + "name": "Dogcoin Testnet", + "chain": "DOGS", + "icon": "dogs", + "rpc": ["https://testnet-rpc.dogcoin.me"], + "faucets": ["https://faucet.dogcoin.network"], + "nativeCurrency": { + "name": "Dogcoin", + "symbol": "DOGS", + "decimals": 18 + }, + "infoURL": "https://dogcoin.network", + "shortName": "DOGSt", + "chainId": 9339, + "networkId": 9339, + "slip44": 1, + "explorers": [ + { + "name": "Dogcoin", + "url": "https://testnet.dogcoin.network", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-93572.json b/_data/chains/eip155-93572.json new file mode 100644 index 000000000000..4ab677386252 --- /dev/null +++ b/_data/chains/eip155-93572.json @@ -0,0 +1,23 @@ +{ + "name": "LiquidLayer Testnet", + "chain": "LILA", + "icon": "lila", + "rpc": ["https://testnet.liquidlayer.network"], + "faucets": ["https://claim.liquidlayer.network"], + "nativeCurrency": { + "name": "LiquidLayer Testnet", + "symbol": "LILA", + "decimals": 18 + }, + "infoURL": "https://testnet-scan.liquidlayer.network", + "shortName": "tLILA", + "chainId": 93572, + "networkId": 93572, + "explorers": [ + { + "name": "LiquidLayer Testnet Explorer", + "url": "https://testnet-scan.liquidlayer.network", + "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-9393.json b/_data/chains/eip155-9393.json new file mode 100644 index 000000000000..f9410ebd5cad --- /dev/null +++ b/_data/chains/eip155-9393.json @@ -0,0 +1,25 @@ +{ + "name": "Dela Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://sepolia-dela.deperp.com"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.deperp.com/dela", + "shortName": "delasep", + "chainId": 9393, + "networkId": 9393, + "slip44": 1, + "icon": "delaTestnet", + "explorers": [ + { + "name": "basescout", + "url": "https://sepolia-delascan.deperp.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9395.json b/_data/chains/eip155-9395.json new file mode 100644 index 000000000000..14a4301efc89 --- /dev/null +++ b/_data/chains/eip155-9395.json @@ -0,0 +1,23 @@ +{ + "name": "Evoke Mainnet", + "chain": "MTHN", + "icon": "mthn", + "rpc": ["https://mainnet-rpc.evokescan.org"], + "faucets": [], + "nativeCurrency": { + "name": "MTHN", + "symbol": "MTHN", + "decimals": 18 + }, + "infoURL": "https://explorer.evokescan.org", + "shortName": "MTHN", + "chainId": 9395, + "networkId": 9395, + "explorers": [ + { + "name": "Evoke SmartChain Explorer", + "url": "https://explorer.evokescan.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-94.json b/_data/chains/eip155-94.json new file mode 100644 index 000000000000..4cf4e7380ecf --- /dev/null +++ b/_data/chains/eip155-94.json @@ -0,0 +1,25 @@ +{ + "name": "SwissDLT", + "chain": "SDLT", + "rpc": ["https://rpc.swissdlt.ch"], + "faucets": [], + "nativeCurrency": { + "name": "BCTS", + "symbol": "BCTS", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://bcts.ch", + "shortName": "sdlt", + "chainId": 94, + "networkId": 94, + "icon": "bcts", + "explorers": [ + { + "name": "SwissDLT Explorer", + "url": "https://explorer.swissdlt.ch", + "icon": "bcts", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-940.json b/_data/chains/eip155-940.json index ca1ea731de6a..ed8708258a85 100644 --- a/_data/chains/eip155-940.json +++ b/_data/chains/eip155-940.json @@ -4,17 +4,17 @@ "chain": "tPLS", "chainId": 940, "networkId": 940, + "slip44": 1, "infoURL": "https://pulsechain.com/", "rpc": [ "https://rpc.v2.testnet.pulsechain.com/", "wss://rpc.v2.testnet.pulsechain.com/" ], - "faucets": [ - "https://faucet.v2.testnet.pulsechain.com/" - ], + "faucets": ["https://faucet.v2.testnet.pulsechain.com/"], + "status": "deprecated", "nativeCurrency": { "name": "Test Pulse", "symbol": "tPLS", "decimals": 18 } -} \ No newline at end of file +} diff --git a/_data/chains/eip155-941.json b/_data/chains/eip155-941.json index 85ddcb446920..ba6a2992c216 100644 --- a/_data/chains/eip155-941.json +++ b/_data/chains/eip155-941.json @@ -2,20 +2,19 @@ "name": "PulseChain Testnet v2b", "shortName": "t2bpls", "chain": "t2bPLS", - "network": "testnet-2b", "chainId": 941, "networkId": 941, + "slip44": 1, "infoURL": "https://pulsechain.com/", "rpc": [ "https://rpc.v2b.testnet.pulsechain.com/", "wss://rpc.v2b.testnet.pulsechain.com/" ], - "faucets": [ - "https://faucet.v2b.testnet.pulsechain.com/" - ], + "faucets": ["https://faucet.v2b.testnet.pulsechain.com/"], + "status": "deprecated", "nativeCurrency": { "name": "Test Pulse", "symbol": "tPLS", "decimals": 18 } -} \ No newline at end of file +} diff --git a/_data/chains/eip155-942.json b/_data/chains/eip155-942.json index 9d1724112e9c..9079dc323189 100644 --- a/_data/chains/eip155-942.json +++ b/_data/chains/eip155-942.json @@ -2,20 +2,19 @@ "name": "PulseChain Testnet v3", "shortName": "t3pls", "chain": "t3PLS", - "network": "testnet-3", "chainId": 942, "networkId": 942, + "slip44": 1, "infoURL": "https://pulsechain.com/", "rpc": [ "https://rpc.v3.testnet.pulsechain.com/", "wss://rpc.v3.testnet.pulsechain.com/" ], - "faucets": [ - "https://faucet.v3.testnet.pulsechain.com/" - ], + "faucets": ["https://faucet.v3.testnet.pulsechain.com/"], + "status": "deprecated", "nativeCurrency": { "name": "Test Pulse", "symbol": "tPLS", "decimals": 18 } -} \ No newline at end of file +} diff --git a/_data/chains/eip155-94204209.json b/_data/chains/eip155-94204209.json new file mode 100644 index 000000000000..e8f8712eb2ad --- /dev/null +++ b/_data/chains/eip155-94204209.json @@ -0,0 +1,36 @@ +{ + "name": "Polygon Blackberry", + "title": "Polygon Blackberry Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.polygon-blackberry.gelato.digital", + "wss://ws.polygon-blackberry.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/polygon-blackberry", + "shortName": "polygon-blackberry", + "chainId": 94204209, + "networkId": 94204209, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://polygon-blackberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { "url": "https://bridge.gelato.network/bridge/polygon-blackberry" } + ] + }, + "status": "active" +} diff --git a/_data/chains/eip155-943.json b/_data/chains/eip155-943.json new file mode 100644 index 000000000000..0040bb5761a3 --- /dev/null +++ b/_data/chains/eip155-943.json @@ -0,0 +1,42 @@ +{ + "name": "PulseChain Testnet v4", + "shortName": "t4pls", + "chain": "t4PLS", + "chainId": 943, + "networkId": 943, + "icon": "pulsechain", + "infoURL": "https://pulsechain.com", + "rpc": [ + "https://rpc.v4.testnet.pulsechain.com", + "wss://rpc.v4.testnet.pulsechain.com", + "https://pulsechain-testnet-rpc.publicnode.com", + "wss://pulsechain-testnet-rpc.publicnode.com", + "https://rpc-testnet-pulsechain.g4mm4.io", + "wss://rpc-testnet-pulsechain.g4mm4.io" + ], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": ["https://faucet.v4.testnet.pulsechain.com/"], + "ens": { + "registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" + }, + "status": "active", + "slip44": 1, + "nativeCurrency": { + "name": "Test Pulse", + "symbol": "tPLS", + "decimals": 18 + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.v4.testnet.pulsechain.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://otter-testnet-pulsechain.g4mm4.io", + "standard": "EIP3091" + } + ] +} 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-95.json b/_data/chains/eip155-95.json index d95a67061b9f..d8d9654b71af 100644 --- a/_data/chains/eip155-95.json +++ b/_data/chains/eip155-95.json @@ -1,23 +1,26 @@ { - "name": "CryptoKylin Testnet", - "chain": "EOS", - "rpc": [ - "https://kylin.eosargentina.io" - ], - "faucets": [ - ], + "name": "CamDL Mainnet", + "chain": "CADL", + "rpc": ["https://rpc1.camdl.gov.kh/"], + "faucets": ["https://faucet.camdl.gov.kh/"], "nativeCurrency": { - "name": "EOS", - "symbol": "EOS", + "name": "CADL", + "symbol": "CADL", "decimals": 18 }, - "infoURL": "https://www.cryptokylin.io/", - "shortName": "Kylin Testnet", + "features": [{ "name": "EIP155" }], + "infoURL": "https://camdl.gov.kh/", + "shortName": "camdl", "chainId": 95, "networkId": 95, - "explorers": [{ - "name": "eosq", - "url": "https://kylin.eosargentina.io", - "standard": "EIP3091" - }] + "redFlags": ["reusedChainId"], + "icon": "camdl", + "explorers": [ + { + "name": "CamDL Block Explorer", + "url": "https://explorer.camdl.gov.kh", + "standard": "EIP3091" + } + ], + "status": "active" } diff --git a/_data/chains/eip155-9527.json b/_data/chains/eip155-9527.json index c3478c2a76d9..7708d53e764f 100644 --- a/_data/chains/eip155-9527.json +++ b/_data/chains/eip155-9527.json @@ -2,9 +2,7 @@ "name": "Rangers Protocol Testnet Robin", "chain": "Rangers", "icon": "rangers", - "rpc": [ - "https://robin.rangersprotocol.com/api/jsonrpc" - ], + "rpc": ["https://robin.rangersprotocol.com/api/jsonrpc"], "faucets": ["https://robin-faucet.rangersprotocol.com"], "nativeCurrency": { "name": "Rangers Protocol Gas", @@ -15,9 +13,12 @@ "shortName": "trpg", "chainId": 9527, "networkId": 9527, - "explorers": [{ - "name": "rangersscan-robin", - "url": "https://robin-rangersscan.rangersprotocol.com", - "standard": "none" - }] + "slip44": 1, + "explorers": [ + { + "name": "rangersscan-robin", + "url": "https://robin-rangersscan.rangersprotocol.com", + "standard": "none" + } + ] } diff --git a/_data/chains/eip155-9528.json b/_data/chains/eip155-9528.json new file mode 100644 index 000000000000..2f061b515aa3 --- /dev/null +++ b/_data/chains/eip155-9528.json @@ -0,0 +1,23 @@ +{ + "name": "QEasyWeb3 Testnet", + "chain": "QET", + "rpc": ["https://qeasyweb3.com"], + "faucets": ["http://faucet.qeasyweb3.com"], + "nativeCurrency": { + "name": "QET", + "symbol": "QET", + "decimals": 18 + }, + "infoURL": "https://www.qeasyweb3.com", + "shortName": "QETTest", + "chainId": 9528, + "networkId": 9528, + "slip44": 1, + "explorers": [ + { + "name": "QEasyWeb3 Explorer", + "url": "https://www.qeasyweb3.com", + "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-955081.json b/_data/chains/eip155-955081.json new file mode 100644 index 000000000000..561206a4e1f5 --- /dev/null +++ b/_data/chains/eip155-955081.json @@ -0,0 +1,28 @@ +{ + "name": "Jono12 Subnet", + "chain": "JONO12", + "icon": "jono12", + "rpc": ["https://subnets.avax.network/jono12/testnet/rpc"], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Jono12 Token", + "symbol": "JONO", + "decimals": 18 + }, + "infoURL": "", + "shortName": "jono12", + "chainId": 955081, + "networkId": 955081, + "explorers": [ + { + "name": "JONO12 Explorer", + "url": "https://subnets-test.avax.network/jono12", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-955305.json b/_data/chains/eip155-955305.json index b1770eb2d466..f89839e782e3 100644 --- a/_data/chains/eip155-955305.json +++ b/_data/chains/eip155-955305.json @@ -24,9 +24,11 @@ "chainId": 955305, "networkId": 955305, "slip44": 1011, - "explorers": [{ - "name": "blockscout", - "url": "https://explorer.eluv.io", - "standard": "EIP3091" - }] + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.eluv.io", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-9559.json b/_data/chains/eip155-9559.json new file mode 100644 index 000000000000..4f176c9c1533 --- /dev/null +++ b/_data/chains/eip155-9559.json @@ -0,0 +1,25 @@ +{ + "name": "Neonlink Testnet", + "chain": "Neonlink", + "rpc": ["https://testnet.neonlink.io"], + "faucets": ["https://faucet.neonlink.io/"], + "nativeCurrency": { + "name": "Neonlink Native Token", + "symbol": "tNEON", + "decimals": 18 + }, + "infoURL": "https://neonlink.io", + "shortName": "testneon", + "chainId": 9559, + "networkId": 9559, + "slip44": 1, + "icon": "neonlink", + "explorers": [ + { + "name": "Neon Blockchain Explorer", + "url": "https://testnet-scan.neonlink.io", + "standard": "EIP3091", + "icon": "neonlink" + } + ] +} diff --git a/_data/chains/eip155-956.json b/_data/chains/eip155-956.json new file mode 100644 index 000000000000..52e4bbdbc816 --- /dev/null +++ b/_data/chains/eip155-956.json @@ -0,0 +1,16 @@ +{ + "name": "muNode Testnet", + "chain": "munode", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://munode.dev/", + "shortName": "munode", + "chainId": 956, + "networkId": 956, + "slip44": 1 +} diff --git a/_data/chains/eip155-957.json b/_data/chains/eip155-957.json new file mode 100644 index 000000000000..ac41c56080be --- /dev/null +++ b/_data/chains/eip155-957.json @@ -0,0 +1,25 @@ +{ + "name": "Lyra Chain", + "chain": "Lyra", + "rpc": ["https://rpc.lyra.finance"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://lyra.finance", + "shortName": "lyra", + "chainId": 957, + "networkId": 957, + "icon": "lyra", + "explorers": [ + { + "name": "Lyra Explorer", + "url": "https://explorer.lyra.finance", + "icon": "lyra", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-96.json b/_data/chains/eip155-96.json index 3633676aa412..f1830b374632 100644 --- a/_data/chains/eip155-96.json +++ b/_data/chains/eip155-96.json @@ -1,24 +1,25 @@ { - "name": "NEXT Smart Chain", - "chain": "NSC", - "rpc": [ - "https://rpc.nextsmartchain.com" - ], - "faucets": [ - "https://faucet.nextsmartchain.com" - ], + "name": "KUB Mainnet", + "chain": "KUB", + "rpc": ["https://rpc.bitkubchain.io", "wss://wss.bitkubchain.io"], + "faucets": [], "nativeCurrency": { - "name": "NEXT", - "symbol": "NEXT", + "name": "KUB Coin", + "symbol": "KUB", "decimals": 18 }, - "infoURL": "https://www.nextsmartchain.com/", - "shortName": "nsc", + "infoURL": "https://www.kubchain.com/", + "shortName": "kub", "chainId": 96, "networkId": 96, - "explorers": [{ - "name": "Next Smart Chain Explorer", - "url": "https://explorer.nextsmartchain.com", - "standard": "none" - }] + "icon": "kub", + "explorers": [ + { + "name": "KUB Mainnet Explorer", + "url": "https://kubscan.com", + "standard": "none", + "icon": "kub" + } + ], + "redFlags": ["reusedChainId"] } diff --git a/_data/chains/eip155-963.json b/_data/chains/eip155-963.json new file mode 100644 index 000000000000..09d65648ab58 --- /dev/null +++ b/_data/chains/eip155-963.json @@ -0,0 +1,24 @@ +{ + "name": "BTC20 Smart Chain", + "chain": "BTC20", + "rpc": ["https://rpc.bitcoincode.technology/"], + "faucets": [], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "nativeCurrency": { + "name": "BTCC", + "symbol": "BTCC", + "decimals": 18 + }, + "infoURL": "https://bitcoincode.technology", + "shortName": "btc20", + "chainId": 963, + "networkId": 963, + "icon": "btc20", + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.bitcoincode.technology", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-963369.json b/_data/chains/eip155-963369.json new file mode 100644 index 000000000000..1af249a55a91 --- /dev/null +++ b/_data/chains/eip155-963369.json @@ -0,0 +1,22 @@ +{ + "name": "AVI Coin", + "chain": "AVI", + "rpc": ["https://rpc.avicoin.org"], + "faucets": [], + "nativeCurrency": { + "name": "AVI Coin", + "symbol": "AVI", + "decimals": 18 + }, + "infoURL": "https://www.avicoin.org", + "shortName": "avi", + "chainId": 963369, + "networkId": 963369, + "explorers": [ + { + "name": "AVI Coin Explorer", + "url": "https://explorer.avicoin.org", + "standard": "EIP3091" + } + ] +} 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-968.json b/_data/chains/eip155-968.json new file mode 100644 index 000000000000..cf55b1720705 --- /dev/null +++ b/_data/chains/eip155-968.json @@ -0,0 +1,25 @@ +{ + "name": "Datagram", + "chain": "DGRAM", + "icon": "dgram", + "rpc": ["https://mainnet.datagram.network/rpc"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "DGRAM", + "symbol": "DGRAM", + "decimals": 18 + }, + "infoURL": "https://doc.datagram.network/introduction/what-is-datagram", + "shortName": "dgram", + "chainId": 968, + "networkId": 968, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.datagram.network", + "icon": "dgram", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-969.json b/_data/chains/eip155-969.json new file mode 100644 index 000000000000..41cf7f4bc458 --- /dev/null +++ b/_data/chains/eip155-969.json @@ -0,0 +1,23 @@ +{ + "name": "EthXY", + "chain": "EthXY", + "rpc": ["https://rpc.ethxy.com"], + "faucets": [], + "nativeCurrency": { + "name": "Settled EthXY Token", + "symbol": "SEXY", + "decimals": 18 + }, + "icon": "sexy", + "infoURL": "https://ethxy.com", + "shortName": "sexy", + "chainId": 969, + "networkId": 969, + "explorers": [ + { + "name": "EthXY Network Explorer", + "url": "https://explorer.ethxy.com", + "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-96970.json b/_data/chains/eip155-96970.json new file mode 100644 index 000000000000..9ac07ba8bd3b --- /dev/null +++ b/_data/chains/eip155-96970.json @@ -0,0 +1,34 @@ +{ + "name": "Mantis Testnet (Hexapod)", + "chain": "Mantis", + "icon": "mantis", + "rpc": [ + "https://mantis-rpc.switch.ch", + "https://mantis-rpc.kore-technologies.ch", + "https://mantis-rpc.phoenix-systems.io" + ], + "faucets": [ + "https://mantis.switch.ch/faucet", + "https://mantis.kore-technologies.ch/faucet", + "https://mantis.phoenix-systems.io/faucet", + "https://mantis.block-spirit.ch/faucet" + ], + "nativeCurrency": { + "name": "Mantis", + "symbol": "MANTIS", + "decimals": 18 + }, + "infoURL": "https://hexapod.network", + "shortName": "mantis", + "chainId": 96970, + "networkId": 96970, + "slip44": 1, + "explorers": [ + { + "name": "Mantis Blockscout", + "url": "https://blockscout.mantis.hexapod.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-97.json b/_data/chains/eip155-97.json index cac2bd114d45..370f0de9a3d8 100644 --- a/_data/chains/eip155-97.json +++ b/_data/chains/eip155-97.json @@ -1,29 +1,32 @@ { - "name": "Binance Smart Chain Testnet", + "name": "BNB Smart Chain Testnet", "chain": "BSC", "rpc": [ - "https://data-seed-prebsc-1-s1.binance.org:8545", - "https://data-seed-prebsc-2-s1.binance.org:8545", - "https://data-seed-prebsc-1-s2.binance.org:8545", - "https://data-seed-prebsc-2-s2.binance.org:8545", - "https://data-seed-prebsc-1-s3.binance.org:8545", - "https://data-seed-prebsc-2-s3.binance.org:8545" - ], - "faucets": [ - "https://testnet.binance.org/faucet-smart" + "https://data-seed-prebsc-1-s1.bnbchain.org:8545", + "https://data-seed-prebsc-2-s1.bnbchain.org:8545", + "https://data-seed-prebsc-1-s2.bnbchain.org:8545", + "https://data-seed-prebsc-2-s2.bnbchain.org:8545", + "https://data-seed-prebsc-1-s3.bnbchain.org:8545", + "https://data-seed-prebsc-2-s3.bnbchain.org:8545", + "https://bsc-testnet-rpc.publicnode.com", + "wss://bsc-testnet-rpc.publicnode.com" ], + "faucets": ["https://testnet.bnbchain.org/faucet-smart"], "nativeCurrency": { - "name": "Binance Chain Native Token", + "name": "BNB Chain Native Token", "symbol": "tBNB", "decimals": 18 }, - "infoURL": "https://testnet.binance.org/", + "infoURL": "https://www.bnbchain.org/en", "shortName": "bnbt", "chainId": 97, "networkId": 97, - "explorers": [{ - "name": "bscscan-testnet", - "url": "https://testnet.bscscan.com", - "standard": "EIP3091" - }] + "slip44": 1, + "explorers": [ + { + "name": "bscscan-testnet", + "url": "https://testnet.bscscan.com", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-970.json b/_data/chains/eip155-970.json new file mode 100644 index 000000000000..c7fb7274e50f --- /dev/null +++ b/_data/chains/eip155-970.json @@ -0,0 +1,24 @@ +{ + "name": "Oort Mainnet", + "chain": "Oort Mainnet", + "rpc": ["https://mainnet-rpc.oortech.com"], + "faucets": [], + "nativeCurrency": { + "name": "Oort", + "symbol": "OORT", + "decimals": 18 + }, + "infoURL": "https://oortech.com", + "shortName": "ccn", + "chainId": 970, + "networkId": 970, + "icon": "oort", + "explorers": [ + { + "name": "Oort Mainnet Explorer", + "url": "https://mainnet-scan.oortech.com", + "standard": "none", + "icon": "oort" + } + ] +} diff --git a/_data/chains/eip155-9700.json b/_data/chains/eip155-9700.json new file mode 100644 index 000000000000..f1004b5837a5 --- /dev/null +++ b/_data/chains/eip155-9700.json @@ -0,0 +1,25 @@ +{ + "name": "Oort MainnetDev", + "title": "Oort MainnetDev", + "chain": "MainnetDev", + "rpc": ["https://dev-rpc.oortech.com"], + "faucets": [], + "nativeCurrency": { + "name": "Oort", + "symbol": "OORT", + "decimals": 18 + }, + "infoURL": "https://oortech.com", + "shortName": "MainnetDev", + "chainId": 9700, + "networkId": 9700, + "icon": "oort", + "explorers": [ + { + "name": "Oort MainnetDev Scan", + "url": "https://dev-scan.oortech.com", + "standard": "none", + "icon": "oort" + } + ] +} 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-971.json b/_data/chains/eip155-971.json new file mode 100644 index 000000000000..68c25daa48d8 --- /dev/null +++ b/_data/chains/eip155-971.json @@ -0,0 +1,16 @@ +{ + "name": "Oort Huygens", + "chain": "Huygens", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Oort", + "symbol": "CCN", + "decimals": 18 + }, + "infoURL": "https://oortech.com", + "shortName": "Huygens", + "chainId": 971, + "networkId": 971, + "icon": "ccn" +} diff --git a/_data/chains/eip155-972.json b/_data/chains/eip155-972.json new file mode 100644 index 000000000000..c2b7bba12a7c --- /dev/null +++ b/_data/chains/eip155-972.json @@ -0,0 +1,25 @@ +{ + "name": "Oort Ascraeus", + "title": "Oort Ascraeus", + "chain": "Ascraeus", + "rpc": ["https://ascraeus-rpc.oortech.com"], + "faucets": [], + "nativeCurrency": { + "name": "Oort", + "symbol": "CCNA", + "decimals": 18 + }, + "infoURL": "https://oortech.com", + "shortName": "Ascraeus", + "chainId": 972, + "networkId": 972, + "icon": "oort", + "explorers": [ + { + "name": "Oort Ascraeus Explorer", + "url": "https://ascraeus-scan.oortech.com", + "standard": "none", + "icon": "oort" + } + ] +} diff --git a/_data/chains/eip155-9728.json b/_data/chains/eip155-9728.json new file mode 100644 index 000000000000..c1bdf11d12cf --- /dev/null +++ b/_data/chains/eip155-9728.json @@ -0,0 +1,39 @@ +{ + "name": "Boba BNB Testnet", + "chain": "Boba BNB Testnet", + "rpc": [ + "https://testnet.bnb.boba.network", + "wss://wss.testnet.bnb.boba.network", + "https://replica.testnet.bnb.boba.network", + "wss://replica-wss.testnet.bnb.boba.network", + "https://boba-bnb-testnet.gateway.tenderly.co", + "wss://boba-bnb-testnet.gateway.tenderly.co" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaBnbTestnet", + "chainId": 9728, + "networkId": 9728, + "slip44": 1, + "explorers": [ + { + "name": "Boba BNB Testnet block explorer", + "url": "https://testnet.bobascan.com", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-28882", + "bridges": [ + { + "url": "https://gateway.boba.network" + } + ] + } +} diff --git a/_data/chains/eip155-97288.json b/_data/chains/eip155-97288.json new file mode 100644 index 000000000000..60a427239518 --- /dev/null +++ b/_data/chains/eip155-97288.json @@ -0,0 +1,23 @@ +{ + "name": "Boba BNB Mainnet Old", + "chain": "Boba BNB Mainnet", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaBnbOld", + "chainId": 97288, + "networkId": 97288, + "explorers": [ + { + "name": "Boba BNB block explorer", + "url": "https://blockexplorer.bnb.boba.network", + "standard": "none" + } + ], + "status": "deprecated" +} 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-974399131.json b/_data/chains/eip155-974399131.json new file mode 100644 index 000000000000..528caf2c3c2b --- /dev/null +++ b/_data/chains/eip155-974399131.json @@ -0,0 +1,25 @@ +{ + "name": "SKALE Calypso Hub Testnet", + "title": "SKALE Calypso Hub Testnet", + "chain": "giant-half-dual-testnet", + "icon": "calypso", + "rpc": ["https://testnet.skalenodes.com/v1/giant-half-dual-testnet"], + "faucets": ["https://www.sfuelstation.com/"], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://calypsohub.network/", + "shortName": "calypso-testnet", + "chainId": 974399131, + "networkId": 974399131, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://giant-half-dual-testnet.explorer.testnet.skalenodes.com", + "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-97476.json b/_data/chains/eip155-97476.json new file mode 100644 index 000000000000..9c022dc88ed4 --- /dev/null +++ b/_data/chains/eip155-97476.json @@ -0,0 +1,31 @@ +{ + "name": "Doma Testnet", + "title": "Doma Testnet", + "chain": "ETH", + "rpc": ["https://rpc-testnet.doma.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://doma.xyz", + "shortName": "doma-testnet", + "chainId": 97476, + "networkId": 97476, + "icon": "doma", + "status": "active", + "explorers": [ + { + "name": "Doma Testnet Explorer", + "url": "https://explorer-testnet.doma.xyz", + "standard": "EIP3091", + "icon": "doma" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [{ "url": "https://bridge-testnet.doma.xyz" }] + } +} diff --git a/_data/chains/eip155-97477.json b/_data/chains/eip155-97477.json new file mode 100644 index 000000000000..89a686518d6a --- /dev/null +++ b/_data/chains/eip155-97477.json @@ -0,0 +1,30 @@ +{ + "name": "Doma", + "title": "Doma", + "chain": "ETH", + "rpc": ["https://rpc.doma.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://doma.xyz", + "shortName": "doma", + "chainId": 97477, + "networkId": 97477, + "icon": "doma", + "status": "active", + "explorers": [ + { + "name": "Doma Explorer", + "url": "https://explorer.doma.xyz", + "standard": "EIP3091", + "icon": "doma" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } +} diff --git a/_data/chains/eip155-97531.json b/_data/chains/eip155-97531.json new file mode 100644 index 000000000000..f02722d35dfa --- /dev/null +++ b/_data/chains/eip155-97531.json @@ -0,0 +1,23 @@ +{ + "name": "Green Chain Testnet", + "chain": "Green Chain", + "icon": "greenchain", + "rpc": ["https://node.greenchain.app/rpc/"], + "faucets": [], + "nativeCurrency": { + "name": "GREEN", + "symbol": "GREEN", + "decimals": 18 + }, + "infoURL": "https://www.greenchain.app", + "shortName": "greenchain", + "chainId": 97531, + "networkId": 97531, + "explorers": [ + { + "name": "Green Chain Explorer", + "url": "https://explorer.greenchain.app", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9768.json b/_data/chains/eip155-9768.json new file mode 100644 index 000000000000..b3a97705c0db --- /dev/null +++ b/_data/chains/eip155-9768.json @@ -0,0 +1,24 @@ +{ + "name": "MainnetZ Testnet", + "chain": "NetZ", + "icon": "mainnetzTestnet", + "rpc": ["https://testnet-rpc.mainnetz.io"], + "faucets": ["https://faucet.mainnetz.io"], + "nativeCurrency": { + "name": "MainnetZ", + "symbol": "NetZ", + "decimals": 18 + }, + "infoURL": "https://testnet.mainnetz.io", + "shortName": "NetZt", + "chainId": 9768, + "networkId": 9768, + "slip44": 1, + "explorers": [ + { + "name": "MainnetZ", + "url": "https://testnet.mainnetz.io", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-977.json b/_data/chains/eip155-977.json index 0c559daf6f41..5d97e274c747 100644 --- a/_data/chains/eip155-977.json +++ b/_data/chains/eip155-977.json @@ -5,9 +5,7 @@ "https://api.nepalblockchain.dev", "https://api.nepalblockchain.network" ], - "faucets": [ - "https://faucet.nepalblockchain.network" - ], + "faucets": ["https://faucet.nepalblockchain.network"], "nativeCurrency": { "name": "Nepal Blockchain Network Ether", "symbol": "YETI", @@ -17,4 +15,4 @@ "shortName": "yeti", "chainId": 977, "networkId": 977 -} \ No newline at end of file +} 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-9779.json b/_data/chains/eip155-9779.json new file mode 100644 index 000000000000..bdd3c9988146 --- /dev/null +++ b/_data/chains/eip155-9779.json @@ -0,0 +1,24 @@ +{ + "name": "PepeNetwork Mainnet", + "chain": "PepeNetwork", + "rpc": ["https://rpc-mainnet.pepenetwork.io"], + "faucets": [], + "nativeCurrency": { + "name": "Pepe", + "symbol": "WPEPE", + "decimals": 18 + }, + "infoURL": "https://pepenetwork.io", + "shortName": "pn", + "chainId": 9779, + "networkId": 9779, + "icon": "pepenetwork", + "explorers": [ + { + "name": "Pepe Explorer", + "url": "https://explorer.pepenetwork.io", + "icon": "pepenetwork", + "standard": "none" + } + ] +} 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-9789.json b/_data/chains/eip155-9789.json new file mode 100644 index 000000000000..d5fb9d34cd7a --- /dev/null +++ b/_data/chains/eip155-9789.json @@ -0,0 +1,22 @@ +{ + "name": "Tabi Testnet", + "chain": "TabiNetwork", + "rpc": ["https://rpc.testnet.tabichain.com"], + "faucets": ["https://faucet.testnet.tabichain.com"], + "nativeCurrency": { + "name": "Tabi", + "symbol": "TABI", + "decimals": 18 + }, + "infoURL": "https://www.tabichain.com", + "shortName": "tabitest", + "chainId": 9789, + "networkId": 9789, + "explorers": [ + { + "name": "Tabi Testnet Explorer", + "url": "https://testnet.tabiscan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-979.json b/_data/chains/eip155-979.json new file mode 100644 index 000000000000..4d54980c7b49 --- /dev/null +++ b/_data/chains/eip155-979.json @@ -0,0 +1,23 @@ +{ + "name": "EthXY Testnet", + "chain": "EthXY", + "rpc": ["https://rpc.testnet.ethxy.com"], + "faucets": [], + "nativeCurrency": { + "name": "Settled EthXY Token", + "symbol": "SEXY", + "decimals": 18 + }, + "icon": "sexyTestnet", + "infoURL": "https://ethxy.com", + "shortName": "sexyTestnet", + "chainId": 979, + "networkId": 979, + "explorers": [ + { + "name": "EthXY Testnet Network Explorer", + "url": "https://explorer.testnet.ethxy.com", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9790.json b/_data/chains/eip155-9790.json new file mode 100644 index 000000000000..41afc1a21d50 --- /dev/null +++ b/_data/chains/eip155-9790.json @@ -0,0 +1,17 @@ +{ + "name": "Carbon EVM", + "chain": "Carbon", + "icon": "carbon", + "rpc": ["https://evm-api.carbon.network/"], + "faucets": [], + "nativeCurrency": { + "name": "swth", + "symbol": "SWTH", + "decimals": 18 + }, + "infoURL": "https://carbon.network/", + "shortName": "carbon", + "chainId": 9790, + "networkId": 9790, + "explorers": [] +} 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-9792.json b/_data/chains/eip155-9792.json new file mode 100644 index 000000000000..44e527c58c5e --- /dev/null +++ b/_data/chains/eip155-9792.json @@ -0,0 +1,18 @@ +{ + "name": "Carbon EVM Testnet", + "chain": "Carbon", + "icon": "carbon", + "rpc": ["https://test-evm-api.carbon.network/"], + "faucets": [], + "nativeCurrency": { + "name": "swth", + "symbol": "SWTH", + "decimals": 18 + }, + "infoURL": "https://carbon.network/", + "shortName": "carbon-testnet", + "chainId": 9792, + "networkId": 9792, + "slip44": 1, + "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-98.json b/_data/chains/eip155-98.json new file mode 100644 index 000000000000..b0dc028a947c --- /dev/null +++ b/_data/chains/eip155-98.json @@ -0,0 +1,24 @@ +{ + "name": "Six Protocol", + "chain": "SIXNET", + "icon": "six", + "rpc": ["https://sixnet-rpc-evm.sixprotocol.net"], + "faucets": [], + "nativeCurrency": { + "name": "SIX evm token", + "symbol": "SIX", + "decimals": 18 + }, + "infoURL": "https://six.network/", + "shortName": "six", + "chainId": 98, + "networkId": 98, + "explorers": [ + { + "name": "SIX Scan", + "url": "https://sixscan.io/sixnet", + "standard": "none", + "icon": "six" + } + ] +} diff --git a/_data/chains/eip155-980.json b/_data/chains/eip155-980.json index 6383c01e5320..c9714797632d 100644 --- a/_data/chains/eip155-980.json +++ b/_data/chains/eip155-980.json @@ -1,25 +1,23 @@ { - "name": "TOP Mainnet EVM", - "chain": "TOP", - "icon": "top", - "rpc": [ - "ethapi.topnetwork.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.topnetwork.org/", - "shortName": "top_evm", - "chainId": 980, - "networkId": 0, - "explorers": [ - { - "name": "topscan.dev", - "url": "https://www.topscan.io", - "standard": "none" - } - ] -} \ No newline at end of file + "name": "TOP Mainnet EVM", + "chain": "TOP", + "icon": "top", + "rpc": ["https://ethapi.topnetwork.org"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.topnetwork.org/", + "shortName": "top_evm", + "chainId": 980, + "networkId": 0, + "explorers": [ + { + "name": "topscan.dev", + "url": "https://www.topscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-9818.json b/_data/chains/eip155-9818.json new file mode 100644 index 000000000000..74fa5fc2ee0a --- /dev/null +++ b/_data/chains/eip155-9818.json @@ -0,0 +1,28 @@ +{ + "name": "IMPERIUM TESTNET", + "chain": "tIMP", + "rpc": [ + "https://data-aws-testnet.imperiumchain.com", + "https://data-aws2-testnet.imperiumchain.com" + ], + "faucets": ["https://faucet.imperiumchain.com/"], + "nativeCurrency": { + "name": "tIMP", + "symbol": "tIMP", + "decimals": 18 + }, + "infoURL": "https://imperiumchain.com", + "shortName": "tIMP", + "chainId": 9818, + "networkId": 9818, + "slip44": 1, + "icon": "timp", + "explorers": [ + { + "name": "IMPERIUM TESTNET Explorer", + "icon": "timp", + "url": "https://network.impscan.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-9819.json b/_data/chains/eip155-9819.json new file mode 100644 index 000000000000..cf698b38334b --- /dev/null +++ b/_data/chains/eip155-9819.json @@ -0,0 +1,27 @@ +{ + "name": "IMPERIUM MAINNET", + "chain": "IMP", + "rpc": [ + "https://data-aws-mainnet.imperiumchain.com", + "https://data-aws2-mainnet.imperiumchain.com" + ], + "faucets": ["https://faucet.imperiumchain.com/"], + "nativeCurrency": { + "name": "IMP", + "symbol": "IMP", + "decimals": 18 + }, + "infoURL": "https://imperiumchain.com", + "shortName": "IMP", + "chainId": 9819, + "networkId": 9819, + "icon": "imp", + "explorers": [ + { + "name": "IMPERIUM Explorer", + "icon": "imp", + "url": "https://impscan.com", + "standard": "none" + } + ] +} 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-985.json b/_data/chains/eip155-985.json new file mode 100644 index 000000000000..1664643b8b8b --- /dev/null +++ b/_data/chains/eip155-985.json @@ -0,0 +1,24 @@ +{ + "name": "Memo Smart Chain Mainnet", + "chain": "MEMO", + "rpc": ["https://chain.metamemo.one:8501", "wss://chain.metamemo.one:16801"], + "faucets": ["https://faucet.metamemo.one/"], + "nativeCurrency": { + "name": "Memo", + "symbol": "CMEMO", + "decimals": 18 + }, + "infoURL": "www.memolabs.org", + "shortName": "memochain", + "chainId": 985, + "networkId": 985, + "icon": "memo", + "explorers": [ + { + "name": "Memo Mainnet Explorer", + "url": "https://scan.metamemo.one:8080", + "icon": "memo", + "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-988207.json b/_data/chains/eip155-988207.json new file mode 100644 index 000000000000..561e422a5bae --- /dev/null +++ b/_data/chains/eip155-988207.json @@ -0,0 +1,23 @@ +{ + "name": "Ecrox Chain Mainnet", + "chain": "Ecrox Chain", + "rpc": ["https://mainnet-rpc.ecroxscan.com/"], + "faucets": [], + "nativeCurrency": { + "name": "ECROX COIN", + "symbol": "ECROX", + "decimals": 18 + }, + "infoURL": "https://ecroxcoin.io/", + "shortName": "ecrox", + "icon": "ecrox", + "chainId": 988207, + "networkId": 988207, + "explorers": [ + { + "name": "Ecrox Chain Explorer", + "url": "https://ecroxscan.com", + "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-9888.json b/_data/chains/eip155-9888.json new file mode 100644 index 000000000000..0de0f9eedebd --- /dev/null +++ b/_data/chains/eip155-9888.json @@ -0,0 +1,22 @@ +{ + "name": "Dogelayer Mainnet", + "chain": "Dogelayer", + "rpc": ["https://dl-rpc.dogelayer.org"], + "faucets": [], + "nativeCurrency": { + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 + }, + "infoURL": "https://dogelayer.org", + "shortName": "Dogelayer", + "chainId": 9888, + "networkId": 9888, + "explorers": [ + { + "name": "Dogelayer mainnet explorer", + "url": "https://dl-explorer.dogelayer.org", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-98881.json b/_data/chains/eip155-98881.json new file mode 100644 index 000000000000..ac2d30c274e7 --- /dev/null +++ b/_data/chains/eip155-98881.json @@ -0,0 +1,17 @@ +{ + "name": "Ebi Chain", + "title": "Ebi Chain", + "chain": "Ebi", + "rpc": ["https://rpc.ebi.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ebi.xyz", + "shortName": "ebi", + "chainId": 98881, + "networkId": 98881, + "status": "incubating" +} 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-989.json b/_data/chains/eip155-989.json index 72a886540298..42a0202cd94a 100644 --- a/_data/chains/eip155-989.json +++ b/_data/chains/eip155-989.json @@ -1,25 +1,23 @@ { - "name": "TOP Mainnet", - "chain": "TOP", - "icon": "top", - "rpc": [ - "topapi.topnetwork.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "TOP", - "symbol": "TOP", - "decimals": 6 - }, - "infoURL": "https://www.topnetwork.org/", - "shortName": "top", - "chainId": 989, - "networkId": 0, - "explorers": [ - { - "name": "topscan.dev", - "url": "https://www.topscan.io", - "standard": "none" - } - ] -} \ No newline at end of file + "name": "TOP Mainnet", + "chain": "TOP", + "icon": "top", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "TOP", + "symbol": "TOP", + "decimals": 6 + }, + "infoURL": "https://www.topnetwork.org/", + "shortName": "top", + "chainId": 989, + "networkId": 0, + "explorers": [ + { + "name": "topscan.dev", + "url": "https://www.topscan.io", + "standard": "none" + } + ] +} 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-9898.json b/_data/chains/eip155-9898.json new file mode 100644 index 000000000000..47b295a8ac4e --- /dev/null +++ b/_data/chains/eip155-9898.json @@ -0,0 +1,26 @@ +{ + "name": "Larissa Chain", + "title": "Larissa Chain", + "chain": "Larissa", + "rpc": ["https://rpc.larissa.network"], + "faucets": [], + "nativeCurrency": { + "name": "Larissa", + "symbol": "LRS", + "decimals": 18 + }, + "infoURL": "https://larissa.network", + "shortName": "lrs", + "chainId": 9898, + "networkId": 1, + "slip44": 9898, + "status": "active", + "icon": "larissa", + "explorers": [ + { + "name": "Larissa Scan", + "url": "https://scan.larissa.network", + "standard": "EIP3091" + } + ] +} 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-99.json b/_data/chains/eip155-99.json index d01dc465d23b..95a6d14494ca 100644 --- a/_data/chains/eip155-99.json +++ b/_data/chains/eip155-99.json @@ -1,12 +1,7 @@ { "name": "POA Network Core", "chain": "POA", - "rpc": [ - "https://core.poanetwork.dev", - "http://core.poanetwork.dev:8545", - "https://core.poa.network", - "ws://core.poanetwork.dev:8546" - ], + "rpc": ["https://core.poa.network"], "faucets": [], "nativeCurrency": { "name": "POA Network Core Ether", @@ -18,9 +13,12 @@ "chainId": 99, "networkId": 99, "slip44": 178, - "explorers": [{ - "name": "blockscout", - "url": "https://blockscout.com/poa/core", - "standard": "none" - }] + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.com/poa/core", + "icon": "blockscout", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-990.json b/_data/chains/eip155-990.json new file mode 100644 index 000000000000..d15ed9eab637 --- /dev/null +++ b/_data/chains/eip155-990.json @@ -0,0 +1,23 @@ +{ + "name": "eLiberty Mainnet", + "chain": "$EL", + "icon": "eLiberty", + "rpc": ["https://rpc.eliberty.ngo"], + "faucets": ["https://faucet.eliberty.ngo"], + "nativeCurrency": { + "name": "eLiberty", + "symbol": "$EL", + "decimals": 18 + }, + "infoURL": "https://eliberty.ngo", + "shortName": "ELm", + "chainId": 990, + "networkId": 990, + "explorers": [ + { + "name": "eLiberty Mainnet", + "url": "https://explorer.eliberty.ngo", + "standard": "EIP3091" + } + ] +} 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-99099.json b/_data/chains/eip155-99099.json new file mode 100644 index 000000000000..cd53f3da7abb --- /dev/null +++ b/_data/chains/eip155-99099.json @@ -0,0 +1,24 @@ +{ + "name": "eLiberty Testnet", + "chain": "$EL", + "icon": "eLiberty", + "rpc": ["https://testnet-rpc.eliberty.ngo"], + "faucets": ["https://faucet.eliberty.ngo"], + "nativeCurrency": { + "name": "eLiberty", + "symbol": "$EL", + "decimals": 18 + }, + "infoURL": "https://eliberty.ngo", + "shortName": "ELt", + "chainId": 99099, + "networkId": 99099, + "slip44": 1, + "explorers": [ + { + "name": "eLiberty Testnet", + "url": "https://testnet.eliberty.ngo", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9911.json b/_data/chains/eip155-9911.json new file mode 100644 index 000000000000..62ef74e81d72 --- /dev/null +++ b/_data/chains/eip155-9911.json @@ -0,0 +1,24 @@ +{ + "name": "Espento Mainnet", + "chain": "SPENT", + "rpc": ["https://rpc.escscan.com/"], + "faucets": [], + "nativeCurrency": { + "name": "ESPENTO", + "symbol": "SPENT", + "decimals": 18 + }, + "infoURL": "https://espento.network", + "shortName": "spent", + "chainId": 9911, + "networkId": 9911, + "icon": "espento", + "explorers": [ + { + "name": "escscan", + "url": "https://escscan.com", + "icon": "espento", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-99415706.json b/_data/chains/eip155-99415706.json index dd34f17d25ea..014b1d272793 100644 --- a/_data/chains/eip155-99415706.json +++ b/_data/chains/eip155-99415706.json @@ -1,12 +1,8 @@ { "name": "Joys Digital TestNet", "chain": "TOYS", - "rpc": [ - "https://toys.joys.cash/" - ], - "faucets": [ - "https://faucet.joys.digital/" - ], + "rpc": ["https://toys.joys.cash/"], + "faucets": ["https://faucet.joys.digital/"], "nativeCurrency": { "name": "TOYS", "symbol": "TOYS", @@ -15,5 +11,6 @@ "infoURL": "https://joys.digital", "shortName": "TOYS", "chainId": 99415706, - "networkId": 99415706 -} \ No newline at end of file + "networkId": 99415706, + "slip44": 1 +} 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 new file mode 100644 index 000000000000..46df71b44e8e --- /dev/null +++ b/_data/chains/eip155-997.json @@ -0,0 +1,24 @@ +{ + "name": "5ireChain Thunder Testnet", + "chain": "5ireChain", + "rpc": ["https://rpc.testnet.5ire.network"], + "faucets": ["https://testnet.5irescan.io/faucet"], + "nativeCurrency": { + "name": "5ire Testnet Token", + "symbol": "T5IRE", + "decimals": 18 + }, + "infoURL": "https://5ire.org", + "shortName": "T5ire", + "chainId": 997, + "networkId": 997, + "icon": "5ireChain", + "explorers": [ + { + "name": "5ireChain Testnet Explorer", + "url": "https://testnet.5irescan.io", + "standard": "none", + "icon": "5ireChain" + } + ] +} diff --git a/_data/chains/eip155-9977.json b/_data/chains/eip155-9977.json new file mode 100644 index 000000000000..372a389c74b2 --- /dev/null +++ b/_data/chains/eip155-9977.json @@ -0,0 +1,27 @@ +{ + "name": "Mind Smart Chain Testnet", + "chain": "tMIND", + "icon": "mindchain", + "rpc": [ + "https://testnet-msc.mindchain.info/", + "wss://testnet-msc.mindchain.info/ws" + ], + "faucets": ["https://faucet.mindchain.info/"], + "nativeCurrency": { + "name": "MIND Coin", + "symbol": "tMIND", + "decimals": 18 + }, + "infoURL": "https://mindchain.info", + "shortName": "tMIND", + "chainId": 9977, + "networkId": 9977, + "slip44": 1, + "explorers": [ + { + "name": "Mind Chain explorer", + "url": "https://testnet.mindscan.info", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-998.json b/_data/chains/eip155-998.json index 79072f08018e..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" - ], - "faucets": [], - "nativeCurrency": { - "name": "Lucky", - "symbol": "L99", - "decimals": 18 - }, - "infoURL": "https://luckynetwork.org", - "shortName": "ln", - "chainId": 998, - "networkId": 998, - "icon": "lucky", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.luckynetwork.org", - "standard": "none" - }, - { - "name": "expedition", - "url": "https://lnscan.org", - "standard": "none" - } - ] + "name": "Hyperliquid EVM Testnet", + "chain": "HYPE", + "rpc": ["https://api.hyperliquid-testnet.xyz/evm"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "HYPE", + "symbol": "HYPE", + "decimals": 18 + }, + "infoURL": "https://hyperfoundation.org/", + "shortName": "hype-evm-testnet", + "chainId": 998, + "networkId": 998, + "explorers": [], + "redFlags": ["reusedChainId"] } diff --git a/_data/chains/eip155-9980.json b/_data/chains/eip155-9980.json new file mode 100644 index 000000000000..5b7a2195c769 --- /dev/null +++ b/_data/chains/eip155-9980.json @@ -0,0 +1,23 @@ +{ + "name": "Combo Mainnet", + "chain": "Combo", + "icon": "combo", + "rpc": ["https://rpc.combonetwork.io"], + "faucets": [], + "nativeCurrency": { + "name": "BNB Chain Native Token", + "symbol": "BNB", + "decimals": 18 + }, + "infoURL": "https://combonetwork.io", + "shortName": "combo-mainnet", + "chainId": 9980, + "networkId": 9980, + "explorers": [ + { + "name": "combotrace explorer", + "url": "https://combotrace.nodereal.io", + "standard": "EIP3091" + } + ] +} 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 432e01f6e4db..179f5c332a4c 100644 --- a/_data/chains/eip155-999.json +++ b/_data/chains/eip155-999.json @@ -1,9 +1,7 @@ { "name": "Wanchain Testnet", "chain": "WAN", - "rpc": [ - "https://gwan-ssl.wandevs.org:46891/" - ], + "rpc": ["https://gwan-ssl.wandevs.org:46891/"], "faucets": [], "nativeCurrency": { "name": "Wancoin", @@ -13,5 +11,15 @@ "infoURL": "https://testnet.wanscan.org", "shortName": "twan", "chainId": 999, - "networkId": 999 + "networkId": 999, + "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 new file mode 100644 index 000000000000..5b40aa4e6f04 --- /dev/null +++ b/_data/chains/eip155-9990.json @@ -0,0 +1,28 @@ +{ + "name": "Agung Network", + "chain": "Agung", + "icon": "agung", + "rpc": ["https://wss-async.agung.peaq.network"], + "faucets": [], + "nativeCurrency": { + "name": "Agung", + "symbol": "AGNG", + "decimals": 18 + }, + "infoURL": "https://www.peaq.network", + "shortName": "AGNG", + "chainId": 9990, + "networkId": 9990, + "explorers": [ + { + "name": "Polkadot.js", + "url": "https://polkadot.js.org/apps/?rpc=wss:///wss-async.agung.peaq.network#/explorer", + "standard": "none" + }, + { + "name": "Subscan", + "url": "https://agung-testnet.subscan.io", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-9996.json b/_data/chains/eip155-9996.json new file mode 100644 index 000000000000..860393dd4a7e --- /dev/null +++ b/_data/chains/eip155-9996.json @@ -0,0 +1,30 @@ +{ + "name": "Mind Smart Chain Mainnet", + "chain": "MIND", + "icon": "mindchain", + "rpc": [ + "https://rpc-msc.mindchain.info/", + "https://seednode.mindchain.info", + "https://archive.mindchain.info/", + "https://mind-smart-chain.rpc.thirdweb.com", + "wss://archive.mindchain.info/ws", + "wss://seednode.mindchain.info/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "MIND Coin", + "symbol": "MIND", + "decimals": 18 + }, + "infoURL": "https://mindchain.info", + "shortName": "MIND", + "chainId": 9996, + "networkId": 9996, + "explorers": [ + { + "name": "Mind Chain explorer", + "url": "https://mainnet.mindscan.info", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9997.json b/_data/chains/eip155-9997.json new file mode 100644 index 000000000000..5dd536a7a001 --- /dev/null +++ b/_data/chains/eip155-9997.json @@ -0,0 +1,26 @@ +{ + "name": "AltLayer Testnet", + "chain": "ETH", + "rpc": ["https://testnet-rollup-api.altlayer.io"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://altlayer.io", + "shortName": "alt-testnet", + "chainId": 9997, + "networkId": 9997, + "slip44": 1, + "icon": "altlayer", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-rollup-explorer.altlayer.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-9998.json b/_data/chains/eip155-9998.json new file mode 100644 index 000000000000..feb1310d88cf --- /dev/null +++ b/_data/chains/eip155-9998.json @@ -0,0 +1,15 @@ +{ + "name": "Ztc Mainnet", + "chain": "ZTC", + "rpc": ["https://zitcoin.us"], + "faucets": [], + "nativeCurrency": { + "name": "Ztcer", + "symbol": "ZTC", + "decimals": 5 + }, + "infoURL": "https://ztc.best", + "shortName": "ZTC", + "chainId": 9998, + "networkId": 9998 +} diff --git a/_data/chains/eip155-9999.json b/_data/chains/eip155-9999.json index 39ec69ee4738..26b1fa5a4d66 100644 --- a/_data/chains/eip155-9999.json +++ b/_data/chains/eip155-9999.json @@ -1,9 +1,7 @@ { "name": "myOwn Testnet", "chain": "myOwn", - "rpc": [ - "https://geth.dev.bccloud.net" - ], + "rpc": ["https://geth.dev.bccloud.net"], "faucets": [], "nativeCurrency": { "name": "MYN", @@ -13,5 +11,6 @@ "infoURL": "https://docs.bccloud.net/", "shortName": "myn", "chainId": 9999, - "networkId": 9999 + "networkId": 9999, + "slip44": 1 } diff --git a/_data/chains/eip155-99998.json b/_data/chains/eip155-99998.json index 68ebba6b25b9..88cd2afd4b8f 100644 --- a/_data/chains/eip155-99998.json +++ b/_data/chains/eip155-99998.json @@ -1,12 +1,8 @@ { "name": "UB Smart Chain(testnet)", "chain": "USC", - "network": "testnet", - "rpc": [ - "https://testnet.rpc.uschain.network" - ], - "faucets": [ - ], + "rpc": ["https://testnet.rpc.uschain.network"], + "faucets": [], "nativeCurrency": { "name": "UBC", "symbol": "UBC", @@ -15,6 +11,6 @@ "infoURL": "https://www.ubchain.site", "shortName": "usctest", "chainId": 99998, - "networkId": 99998 + "networkId": 99998, + "slip44": 1 } - diff --git a/_data/chains/eip155-99999.json b/_data/chains/eip155-99999.json index 3afb8737c157..8ee45f0633f4 100644 --- a/_data/chains/eip155-99999.json +++ b/_data/chains/eip155-99999.json @@ -1,12 +1,8 @@ { "name": "UB Smart Chain", "chain": "USC", - "network": "mainnet", - "rpc": [ - "https://rpc.uschain.network" - ], - "faucets": [ - ], + "rpc": ["https://rpc.uschain.network"], + "faucets": [], "nativeCurrency": { "name": "UBC", "symbol": "UBC", @@ -17,4 +13,3 @@ "chainId": 99999, "networkId": 99999 } - diff --git a/_data/chains/eip155-999999.json b/_data/chains/eip155-999999.json new file mode 100644 index 000000000000..4c4cf5936389 --- /dev/null +++ b/_data/chains/eip155-999999.json @@ -0,0 +1,25 @@ +{ + "name": "AmChain", + "title": "AMC", + "chain": "AmChain", + "icon": "amc", + "rpc": ["https://node1.amchain.net"], + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "faucets": [], + "nativeCurrency": { + "name": "AMC", + "symbol": "AMC", + "decimals": 18 + }, + "infoURL": "https://hewe.io/", + "shortName": "AMC", + "chainId": 999999, + "networkId": 999999, + "explorers": [ + { + "name": "AMCAmChain explorer", + "url": "https://explorer.amchain.net", + "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/chains/eip155-999999999.json b/_data/chains/eip155-999999999.json new file mode 100644 index 000000000000..e7dcb517032f --- /dev/null +++ b/_data/chains/eip155-999999999.json @@ -0,0 +1,24 @@ +{ + "name": "Zora Sepolia Testnet", + "chain": "ETH", + "rpc": ["https://sepolia.rpc.zora.energy"], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "zoraSepoliaTestnet", + "infoURL": "https://zora.energy", + "shortName": "zsep", + "chainId": 999999999, + "networkId": 999999999, + "slip44": 1, + "explorers": [ + { + "name": "Zora Sepolia Testnet Network Explorer", + "url": "https://sepolia.explorer.zora.energy", + "standard": "EIP3091" + } + ] +} diff --git a/_data/eip155-132001.json b/_data/eip155-132001.json new file mode 100644 index 000000000000..0e302244639c --- /dev/null +++ b/_data/eip155-132001.json @@ -0,0 +1,15 @@ +{ + "name": "Testnet 1 Namefi Chain", + "chain": "NFIC", + "rpc": ["https://test1-rpc.chain.namefi.io"], + "faucets": [], + "nativeCurrency": { + "name": "Test 1 Namefi Coin", + "symbol": "test1NFIC", + "decimals": 18 + }, + "infoURL": "https://namefi.io/", + "shortName": "test1nfic", + "chainId": 132001, + "networkId": 132001 +} 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/0g.json b/_data/icons/0g.json new file mode 100644 index 000000000000..a1354d43d44b --- /dev/null +++ b/_data/icons/0g.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreicc5esbtgqwrptmyvp75hdefsmgzgozlrjx4d7zonxkwuh5fpne5m", + "width": 500, + "height": 500, + "format": "svg" + } +] 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/5ireChain.json b/_data/icons/5ireChain.json new file mode 100644 index 000000000000..f0a126624e1c --- /dev/null +++ b/_data/icons/5ireChain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaZDNDFLWESH4i3XqwEWfWBb1HPnQSNbDAr74nr2x8QAk", + "width": 800, + "height": 800, + "format": "svg" + } +] 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/ETND.json b/_data/icons/ETND.json new file mode 100644 index 000000000000..e2e8fd4e755f --- /dev/null +++ b/_data/icons/ETND.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmd26eRJxPb1jJg5Q4mC2M4kD9Jrs5vmcnr5LczHFMGwSD", + "width": 128, + "height": 128, + "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/G8Chain.json b/_data/icons/G8Chain.json new file mode 100644 index 000000000000..be643ea9e60b --- /dev/null +++ b/_data/icons/G8Chain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbkCVC5vZpVAfq8SuPXR9PhpTRS2m8w6LGqBkhXAvmie6", + "width": 80, + "height": 80, + "format": "png" + } +] diff --git a/_data/icons/GRAMZ.json b/_data/icons/GRAMZ.json new file mode 100644 index 000000000000..ca2d639d163c --- /dev/null +++ b/_data/icons/GRAMZ.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeih7p2zkgxc6i6ygihz556y22aruacwybtfaif7554hqnd2a745uce", + "width": 500, + "height": 500, + "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/MARO.json b/_data/icons/MARO.json new file mode 100644 index 000000000000..b890fe8f0201 --- /dev/null +++ b/_data/icons/MARO.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreig47k53aipns6nu3u5fxpysp7mogzk6zyvatgpbam7yut3yvtuefa", + "width": 160, + "height": 160, + "format": "png" + } +] 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/PLT.json b/_data/icons/PLT.json new file mode 100644 index 000000000000..12dba74960d4 --- /dev/null +++ b/_data/icons/PLT.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPCEGZD1p1keTT2YfPp725azx1r9Ci41hejeUuGL2whFA", + "width": 800, + "height": 800, + "format": "png" + } +] diff --git a/_data/icons/POOLS.json b/_data/icons/POOLS.json new file mode 100644 index 000000000000..50dcf8c05c67 --- /dev/null +++ b/_data/icons/POOLS.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmV18PRFPkp9pwKKJp4ksVDhMEiqNZ8A5DhQapdNCckeeQ", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/SUR.json b/_data/icons/SUR.json index 01403a6cc76e..c6ce2edf33e0 100644 --- a/_data/icons/SUR.json +++ b/_data/icons/SUR.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmbUcDQHCvheYQrWk9WFJRMW5fTJQmtZqkoGUed4bhCM7T", - "width":3000, - "height":3000, - "format":"png" - } + { + "url": "ipfs://QmbUcDQHCvheYQrWk9WFJRMW5fTJQmtZqkoGUed4bhCM7T", + "width": 3000, + "height": 3000, + "format": "png" + } ] diff --git a/_data/icons/SX.json b/_data/icons/SX.json index 563aecf3237f..2ca4ae19b67b 100644 --- a/_data/icons/SX.json +++ b/_data/icons/SX.json @@ -1,8 +1,8 @@ [ { - "url":"ipfs://QmSXLXqyr2H6Ja5XrmznXbWTEvF2gFaL8RXNXgyLmDHjAF", - "width":896, - "height":690, - "format":"png" + "url": "ipfs://QmSXLXqyr2H6Ja5XrmznXbWTEvF2gFaL8RXNXgyLmDHjAF", + "width": 896, + "height": 690, + "format": "png" } ] diff --git a/_data/icons/SaitaBlockChain(SBC).json b/_data/icons/SaitaBlockChain(SBC).json new file mode 100644 index 000000000000..63fa54a64c5c --- /dev/null +++ b/_data/icons/SaitaBlockChain(SBC).json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVFWTqfqnMXbiPKpDFucE9QSQ1SVsUWs4HxBqRGjgQCbu", + "width": 974, + "height": 263, + "format": "png" + } +] diff --git a/_data/icons/SenjePowers.json b/_data/icons/SenjePowers.json new file mode 100644 index 000000000000..15c5baf9ae1b --- /dev/null +++ b/_data/icons/SenjePowers.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcpyTj4hUyHJZ2VmSdkXFpPpRcNKRP1VxMs7Cp1anymNy", + "width": 504, + "height": 495, + "format": "png" + } +] diff --git a/_data/icons/Tettoken256.json b/_data/icons/Tettoken256.json new file mode 100644 index 000000000000..155568a6656a --- /dev/null +++ b/_data/icons/Tettoken256.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYvFVprVdAGJH4iHUCXGEmy7pq8MMfxEjM64SuXutz9qx", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/aac.json b/_data/icons/aac.json index cd12bb983ea9..c3159d607d11 100644 --- a/_data/icons/aac.json +++ b/_data/icons/aac.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmRUrz4dULaoaMpnqd8qXT7ehwz3aaqnYKY4ePsy7isGaF", - "width":512, - "height":512, - "format":"png" - } + { + "url": "ipfs://QmRUrz4dULaoaMpnqd8qXT7ehwz3aaqnYKY4ePsy7isGaF", + "width": 512, + "height": 512, + "format": "png" + } ] diff --git a/_data/icons/aah.json b/_data/icons/aah.json new file mode 100644 index 000000000000..877eaf1caac8 --- /dev/null +++ b/_data/icons/aah.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmY7HDEj3vnTZzCmenotr48nYyD13R2Fyd5t12R9ARu4wJ", + "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/acolicon.json b/_data/icons/acolicon.json new file mode 100644 index 000000000000..807dd4dfe66a --- /dev/null +++ b/_data/icons/acolicon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRD7itMvaZutfBjyA7V9xkMGDtsZiJSagPwd3ijqka8kE", + "width": 288, + "height": 288, + "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/adi.json b/_data/icons/adi.json new file mode 100644 index 000000000000..539e872bcaa9 --- /dev/null +++ b/_data/icons/adi.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreice4fkfrfggny5m3btlquzrimfg7jiyebvslmsknnqhivznh4u2la", + "width": 343, + "height": 70, + "format": "svg" + } +] diff --git a/_data/icons/adil.json b/_data/icons/adil.json new file mode 100644 index 000000000000..0ff4f81aefb0 --- /dev/null +++ b/_data/icons/adil.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeHNYUx6n8CjUFSLWNT17oAtDYrUq6r8buyvGCUBXCJw6", + "width": 500, + "height": 500, + "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/aerie.json b/_data/icons/aerie.json new file mode 100644 index 000000000000..0ca6ad92b211 --- /dev/null +++ b/_data/icons/aerie.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreig54jss26xllpjbclmfgwvot72m4ku7qxignhlqei6mijvwi2m4pu", + "width": 1062, + "height": 1069, + "format": "png" + } +] diff --git a/_data/icons/agentLayerIcon.json b/_data/icons/agentLayerIcon.json new file mode 100644 index 000000000000..91b64e35c884 --- /dev/null +++ b/_data/icons/agentLayerIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSj6SSWmBiRjnjZQPb17kvhGDmB9xAGRkG13RwPuXLTCT", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/agora.json b/_data/icons/agora.json new file mode 100644 index 000000000000..bdcd0c40f635 --- /dev/null +++ b/_data/icons/agora.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmW3CT4SHmso5dRJdsjR8GL1qmt79HkdAebCn2uNaWXFYh", + "width": 256, + "height": 257, + "format": "png" + } +] diff --git a/_data/icons/agung.json b/_data/icons/agung.json new file mode 100644 index 000000000000..ef3f54c1869b --- /dev/null +++ b/_data/icons/agung.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibkqdof3ztkdhgukwvkacwgrjb27e23hgz5c6mmudzu5hipyvgisa", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/aia.json b/_data/icons/aia.json new file mode 100644 index 000000000000..1f01530e525a --- /dev/null +++ b/_data/icons/aia.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPAcZioXaoJd8vFRrqdj2cWXWkbSHoCPiyZH9ukncfvfg", + "width": 150, + "height": 150, + "format": "png" + } +] diff --git a/_data/icons/aie.json b/_data/icons/aie.json new file mode 100644 index 000000000000..7636c24640cf --- /dev/null +++ b/_data/icons/aie.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihok46mhn5yf7b5jgmq7tiyw2fw76wklvj4frpc3gbswgfxzerhhm", + "width": 3481, + "height": 3500, + "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/aioz.json b/_data/icons/aioz.json index ae8acacda68d..80bfa97f2603 100644 --- a/_data/icons/aioz.json +++ b/_data/icons/aioz.json @@ -1,8 +1,8 @@ [ - { - "url": "ipfs://QmRAGPFhvQiXgoJkui7WHajpKctGFrJNhHqzYdwcWt5V3Z", - "width": 1024, - "height": 1024, - "format": "png" - } -] \ No newline at end of file + { + "url": "ipfs://QmRAGPFhvQiXgoJkui7WHajpKctGFrJNhHqzYdwcWt5V3Z", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/airdao.json b/_data/icons/airdao.json new file mode 100644 index 000000000000..4278b703eb35 --- /dev/null +++ b/_data/icons/airdao.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSxXjvWng3Diz4YwXDV2VqSPgMyzLYBNfkjJcr7rzkxom", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/aitd.json b/_data/icons/aitd.json deleted file mode 100644 index cd48ca3086b7..000000000000 --- a/_data/icons/aitd.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url":"ipfs://QmNUzX12Gtn4fePqJeMcACvECEH2VeUeNaMFja2kfff1WS", - "width":64, - "height":64, - "format":"png" - } -] diff --git a/_data/icons/aiw3.json b/_data/icons/aiw3.json new file mode 100644 index 000000000000..52ad9507f388 --- /dev/null +++ b/_data/icons/aiw3.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigfxcyvnx2r46a3unljb2auxeez5olbg56lbu4gkpa4me7wqoajjy", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/alaya.json b/_data/icons/alaya.json index d3c953c29140..b1a0906bea16 100644 --- a/_data/icons/alaya.json +++ b/_data/icons/alaya.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://Qmci6vPcWAwmq19j98yuQxjV6UPzHtThMdCAUDbKeb8oYu", - "width":1140, - "height":1140, - "format":"png" - } -] \ No newline at end of file + { + "url": "ipfs://Qmci6vPcWAwmq19j98yuQxjV6UPzHtThMdCAUDbKeb8oYu", + "width": 1140, + "height": 1140, + "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/aleph.json b/_data/icons/aleph.json new file mode 100644 index 000000000000..b02705817a97 --- /dev/null +++ b/_data/icons/aleph.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbeSYW2c5pXAyEUzj8UFRdJhp5oMQzRMPqAsxJAqbGiem", + "width": 317, + "height": 303, + "format": "png" + } +] diff --git a/_data/icons/alg.json b/_data/icons/alg.json new file mode 100644 index 000000000000..96a2d64ab296 --- /dev/null +++ b/_data/icons/alg.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdSNGv2Atdaexawc4L3uAL7dL5aDREgWwPo2HNayQbpLm", + "width": 323, + "height": 323, + "format": "png" + } +] diff --git a/_data/icons/algl2.json b/_data/icons/algl2.json new file mode 100644 index 000000000000..65f59e978ed1 --- /dev/null +++ b/_data/icons/algl2.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbLWspX1WryyfhiiuPpG5A7AGBJUvwdZtVPuzZoJyxS23", + "width": 323, + "height": 323, + "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/alltra.json b/_data/icons/alltra.json new file mode 100644 index 000000000000..cf7dcde70318 --- /dev/null +++ b/_data/icons/alltra.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibqe2mgiqezi24sx272kunqt6pv7uzxhpkxuobvpbsptce3q6nn5i", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/alpen.json b/_data/icons/alpen.json new file mode 100644 index 000000000000..8c6600a615d5 --- /dev/null +++ b/_data/icons/alpen.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreicl3lvyl3epqlbaludrgmndzfufzip5wmq5dvz6ahhg44d54abvou", + "width": 460, + "height": 460, + "format": "png" + } +] diff --git a/_data/icons/alphabetnetwork.json b/_data/icons/alphabetnetwork.json new file mode 100644 index 000000000000..3315b791f709 --- /dev/null +++ b/_data/icons/alphabetnetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfTeudwVJcu7jzySBcpD9H5ZVK66nPJKRnicxend1bxfq", + "width": 500, + "height": 500, + "format": "svg" + } +] diff --git a/_data/icons/alphachain.json b/_data/icons/alphachain.json new file mode 100644 index 000000000000..c055d1de7726 --- /dev/null +++ b/_data/icons/alphachain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihesy252ozceffnjmgv5pw72yddwnn2zmnmh627xwxnvxb6wfyekm", + "width": 60, + "height": 60, + "format": "svg" + } +] diff --git a/_data/icons/altair.json b/_data/icons/altair.json new file mode 100644 index 000000000000..e9e6efa44004 --- /dev/null +++ b/_data/icons/altair.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSwqWxZ5HRdc25HMhEmVKxZkwSKapuuyGHb8kyrtuzxat", + "width": 210, + "height": 210, + "format": "svg" + } +] 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/altcoinchain.json b/_data/icons/altcoinchain.json new file mode 100644 index 000000000000..ea0bb007c7f7 --- /dev/null +++ b/_data/icons/altcoinchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYwHmGC9CRVcKo1LSesqxU31SDj9vk2iQxcFjQArzhix4", + "width": 720, + "height": 720, + "format": "png" + } +] diff --git a/_data/icons/alterium.json b/_data/icons/alterium.json new file mode 100644 index 000000000000..e0f1c944fa1c --- /dev/null +++ b/_data/icons/alterium.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreid3v7ow4c4t3ljya6aouiwvqbtssb2lzmkwt2eghryk234g7yynrq", + "width": 756, + "height": 756, + "format": "png" + } +] 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/altlayer.json b/_data/icons/altlayer.json new file mode 100644 index 000000000000..fa8f5b6f1b59 --- /dev/null +++ b/_data/icons/altlayer.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcEfZJU7NMn9ycTAcEooQgGNfa2nYBToSUZHdFCFadcjb", + "width": 1080, + "height": 1025, + "format": "png" + } +] diff --git a/_data/icons/alyx.json b/_data/icons/alyx.json new file mode 100644 index 000000000000..5b657cfb9262 --- /dev/null +++ b/_data/icons/alyx.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifd43fcvh77mdcwjrpzpnlhthounc6b4u645kukqpqhduaveatf6i", + "width": 2481, + "height": 2481, + "format": "png" + } +] diff --git a/_data/icons/amc.json b/_data/icons/amc.json new file mode 100644 index 000000000000..229e0a650cde --- /dev/null +++ b/_data/icons/amc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmb6VAhhtaJmdaW1j7PAjxaLju1V24PPDFBdXtebyTSfsZ", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/amstar.json b/_data/icons/amstar.json new file mode 100644 index 000000000000..318810b5b6cb --- /dev/null +++ b/_data/icons/amstar.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmd4TMQdnYxaUZqnVddh5S37NGH72g2kkK38ccCEgdZz1C", + "width": 599, + "height": 563, + "format": "png" + } +] diff --git a/_data/icons/ancient8.json b/_data/icons/ancient8.json new file mode 100644 index 000000000000..a7aff91cb253 --- /dev/null +++ b/_data/icons/ancient8.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreievnqg3xjokaty4kfbxxbrzm5v5y7exbaaia2txrh4sfgrqsalfym", + "width": 128, + "height": 128, + "format": "png" + } +] diff --git a/_data/icons/ankaracaga.json b/_data/icons/ankaracaga.json new file mode 100644 index 000000000000..83f69546fde2 --- /dev/null +++ b/_data/icons/ankaracaga.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmeiop9gSdzU4NNJ6GCuPk6AeYwD9pbhEFVfRdk4dXs3kJ", + "width": 640, + "height": 640, + "format": "png" + } +] diff --git a/_data/icons/antofy.json b/_data/icons/antofy.json new file mode 100644 index 000000000000..a8c1835e5c87 --- /dev/null +++ b/_data/icons/antofy.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdTfku81ohnG9ECU1Xswmeumt678cBhwHWuFYZ7i1Qsto", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/any.json b/_data/icons/any.json new file mode 100644 index 000000000000..d16316afbdb5 --- /dev/null +++ b/_data/icons/any.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaARJiAQUn4Z6wG8GLEry3kTeBB3k6RfHzSZU9SPhBgcG", + "width": 200, + "height": 200, + "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/apexmainnet.json b/_data/icons/apexmainnet.json new file mode 100644 index 000000000000..c5aba363dfda --- /dev/null +++ b/_data/icons/apexmainnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTYgeN1E3GGXnMF2oa43v2ehX2bYqrHPrGQ9xbBMXy1we", + "width": 1280, + "height": 1280, + "format": "png" + } +] diff --git a/_data/icons/apextestnet.json b/_data/icons/apextestnet.json new file mode 100644 index 000000000000..8299036e0f64 --- /dev/null +++ b/_data/icons/apextestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://qmxhs7fvjanzwm14vjpbnmklre32gsiy9chsarrnbtfa1n", + "width": 1280, + "height": 1280, + "format": "png" + } +] diff --git a/_data/icons/apollo.json b/_data/icons/apollo.json new file mode 100644 index 000000000000..c3ab668254d3 --- /dev/null +++ b/_data/icons/apollo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiblhmgzou3p7n6cp2jb3huqzctb5ax4tnkuf4azyf7djzrsqn4fua", + "width": 120, + "height": 120, + "format": "png" + } +] 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/arc.json b/_data/icons/arc.json new file mode 100644 index 000000000000..22a8c49d015f --- /dev/null +++ b/_data/icons/arc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiady63oqduls2pm4aaykzjhahblagokhnpsc5qeq5dmkxqelh7i2i", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/arcnetwork.json b/_data/icons/arcnetwork.json new file mode 100644 index 000000000000..dc99192d4cb9 --- /dev/null +++ b/_data/icons/arcnetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiddgoql2bcngs3bcuxobz5hkjjbhvwxvqrdagqytdnfmmawnmfhta", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/ard.json b/_data/icons/ard.json new file mode 100644 index 000000000000..6d18ff192d10 --- /dev/null +++ b/_data/icons/ard.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdwifhejRfF8QfyzYrNdFVhfhCR6iuzWMmppK4eL7kttG", + "width": 120, + "height": 120, + "format": "png" + } +] 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/areon.json b/_data/icons/areon.json new file mode 100644 index 000000000000..72f59ce74a8b --- /dev/null +++ b/_data/icons/areon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihs2nrnizpcuzjmuu2yi7wrtwd7qlqje46qnil5bnntfbfkb2roea", + "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/ark.json b/_data/icons/ark.json new file mode 100644 index 000000000000..a3ce1c45ce39 --- /dev/null +++ b/_data/icons/ark.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreia6szwv32h5g5nmdk6dusypjvgo5cjochtulrg3zfwqd2bwyctevi", + "width": 512, + "height": 512, + "format": "svg" + } +] 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/arthera.json b/_data/icons/arthera.json new file mode 100644 index 000000000000..4287d691c3cd --- /dev/null +++ b/_data/icons/arthera.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYQp3e52KjkT4bYdAvB6ACEEpXs2D8DozsDitaADRY2Ak", + "width": 1024, + "height": 998, + "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/arzio.json b/_data/icons/arzio.json new file mode 100644 index 000000000000..5a36616738c0 --- /dev/null +++ b/_data/icons/arzio.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUwqGWGjjQweTprn5LBirAwRjYnteTiFLCVpSNHrfMmSL", + "width": 150, + "height": 150, + "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/astarzk.json b/_data/icons/astarzk.json new file mode 100644 index 000000000000..4ab5e2302ddf --- /dev/null +++ b/_data/icons/astarzk.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRySLe3su59dE5x5JPm2b1GeZfz6DR9qUzcbp3rt4SD3A", + "width": 300, + "height": 300, + "format": "png" + } +] diff --git a/_data/icons/astra.json b/_data/icons/astra.json new file mode 100644 index 000000000000..6bee12e570b2 --- /dev/null +++ b/_data/icons/astra.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf", + "width": 104, + "height": 80, + "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/astria.json b/_data/icons/astria.json new file mode 100644 index 000000000000..3bee1751101a --- /dev/null +++ b/_data/icons/astria.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVbzZYXdVFY3uFaWQd7iSRtdM2UKWohj9fVqqEwxcw2RV", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/aternos.json b/_data/icons/aternos.json new file mode 100644 index 000000000000..71d266d18f09 --- /dev/null +++ b/_data/icons/aternos.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUgfhv3rEsS6t9g6Lsf3TJ1mbnJqBrb8YUFPDiNG59QvT", + "width": 1000, + "height": 1000, + "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/atleta.json b/_data/icons/atleta.json new file mode 100644 index 000000000000..865cf86dbac7 --- /dev/null +++ b/_data/icons/atleta.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmV2JVr4FCcb6aRiUoA3wS5erLoxtLBLonQ1Nvz8fNuEcR", + "width": 128, + "height": 128, + "format": "png" + } +] diff --git a/_data/icons/atlr.json b/_data/icons/atlr.json new file mode 100644 index 000000000000..f90b84ce64ed --- /dev/null +++ b/_data/icons/atlr.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigcquvoalec3ll2m26v4wsx5enlxwyn6nk2mgfqwncyqrgwivla5u", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/atoshi.json b/_data/icons/atoshi.json new file mode 100644 index 000000000000..2474afd1b51c --- /dev/null +++ b/_data/icons/atoshi.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfFK6B4MFLrpSS46aLf7hjpt28poHFeTGEKEuH248Tbyj", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/ault.json b/_data/icons/ault.json new file mode 100644 index 000000000000..91021dae56b2 --- /dev/null +++ b/_data/icons/ault.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmR65pFw3pgcCDeZJ5SHiXPKPjKyLEZZez2cEQZNssR2zd", + "width": 32, + "height": 32, + "format": "svg" + } +] diff --git a/_data/icons/aura.json b/_data/icons/aura.json new file mode 100644 index 000000000000..57f84640f581 --- /dev/null +++ b/_data/icons/aura.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbpQPpjKy1bkDmuzCSSE9iFTUK37AiWYgJbgN3Fr7MWYq", + "width": 512, + "height": 557, + "format": "png" + } +] diff --git a/_data/icons/auroria.json b/_data/icons/auroria.json new file mode 100644 index 000000000000..b30dfdbababb --- /dev/null +++ b/_data/icons/auroria.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNuQjnJ1JXkPRDwbFL1oZRpEaPhggPpccteAaxSPYBJJN", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/automata.json b/_data/icons/automata.json new file mode 100644 index 000000000000..74ff31fbbda3 --- /dev/null +++ b/_data/icons/automata.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmW7ugm31MRdhjGtimzWMK5N4g5L84tSyKMpZQYk6N9KvJ", + "width": 1676, + "height": 1600, + "format": "png" + } +] diff --git a/_data/icons/autonity.json b/_data/icons/autonity.json new file mode 100644 index 000000000000..710358674a30 --- /dev/null +++ b/_data/icons/autonity.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qme5nxFZZoNNpiT8u9WwcBot4HyLTg2jxMxRnsbc5voQwB", + "width": 1000, + "height": 1000, + "format": "png" + } +] 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/avax.json b/_data/icons/avax.json new file mode 100644 index 000000000000..768af9d22f4c --- /dev/null +++ b/_data/icons/avax.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRALA5qvQBRwWre8ofuhCbr3wxVmPS3kGetRR9uJqbqqe", + "width": 1503, + "height": 1504, + "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/aves.json b/_data/icons/aves.json new file mode 100644 index 000000000000..17eb10e6b352 --- /dev/null +++ b/_data/icons/aves.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeKQVv2QneHaaggw2NfpZ7DGMdjVhPywTdse5RzCs4oGn", + "width": 232, + "height": 232, + "format": "png" + } +] diff --git a/_data/icons/avescan.json b/_data/icons/avescan.json new file mode 100644 index 000000000000..17eb10e6b352 --- /dev/null +++ b/_data/icons/avescan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeKQVv2QneHaaggw2NfpZ7DGMdjVhPywTdse5RzCs4oGn", + "width": 232, + "height": 232, + "format": "png" + } +] diff --git a/_data/icons/avocado.json b/_data/icons/avocado.json new file mode 100644 index 000000000000..1d74339c23f9 --- /dev/null +++ b/_data/icons/avocado.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qma9rJSgy32UL1iXtXKFZQJA6FjkcUcDU4HR6y13Wu1vjn", + "width": 600, + "height": 600, + "format": "png" + } +] diff --git a/_data/icons/axelium.json b/_data/icons/axelium.json new file mode 100644 index 000000000000..d55897c8d855 --- /dev/null +++ b/_data/icons/axelium.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNx8FRacfNeawhkjk5p57EKzDHkLGMaBBmK2VRL5CB2P2", + "width": 40, + "height": 40, + "format": "svg" + } +] 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/bahamut.json b/_data/icons/bahamut.json new file mode 100644 index 000000000000..83858cc2b2e5 --- /dev/null +++ b/_data/icons/bahamut.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSemioP83RXnDWwTZbet8VpwJxcFRboX4B3pcdhLZGodP", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/base.json b/_data/icons/base.json new file mode 100644 index 000000000000..f3c0d120b820 --- /dev/null +++ b/_data/icons/base.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaxRoHpxZd8PqccAynherrMznMufG6sdmHZLihkECXmZv", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/baseTestnet.json b/_data/icons/baseTestnet.json new file mode 100644 index 000000000000..f3c0d120b820 --- /dev/null +++ b/_data/icons/baseTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaxRoHpxZd8PqccAynherrMznMufG6sdmHZLihkECXmZv", + "width": 1200, + "height": 1200, + "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/bcts.json b/_data/icons/bcts.json new file mode 100644 index 000000000000..544064d4b69d --- /dev/null +++ b/_data/icons/bcts.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreig7x5z4j6vh2r3pugmjnob3tmlksaekhqcgsorqzvs55o6v7ehqd4", + "width": 682, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/beam.json b/_data/icons/beam.json new file mode 100644 index 000000000000..524da3559500 --- /dev/null +++ b/_data/icons/beam.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQJ21NWyGGDraicVEzS1Uqq1yXahM9NCuNZgnfYvtspdt", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/beonechain.json b/_data/icons/beonechain.json new file mode 100644 index 000000000000..a69d3712bae8 --- /dev/null +++ b/_data/icons/beonechain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbVLQnaMDu86bPyKgCvTGhFBeYwjr15hQnrCcsp1EkAGL", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/berachain.json b/_data/icons/berachain.json new file mode 100644 index 000000000000..b98e1e7735f9 --- /dev/null +++ b/_data/icons/berachain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeidicict7kohdlu42btleliya2l4nxknhj45iwdk2pjzamfjwzrhpa", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/berylbit.json b/_data/icons/berylbit.json new file mode 100644 index 000000000000..f46f6976a493 --- /dev/null +++ b/_data/icons/berylbit.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeDXHkpranzqGN1BmQqZSrFp4vGXf4JfaB5iq8WHHiwDi", + "width": 162, + "height": 162, + "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/bevm.json b/_data/icons/bevm.json new file mode 100644 index 000000000000..51d91c2cb6f4 --- /dev/null +++ b/_data/icons/bevm.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfMXiYn4xF9JwdjaqM5YKhqoByox51XvnL68VvKJS6yyu", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/bevmcanary.json b/_data/icons/bevmcanary.json new file mode 100644 index 000000000000..362c3811e9ef --- /dev/null +++ b/_data/icons/bevmcanary.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdDHRKWaQErTzt4SdcVgoVHEzBHCswhoaojBxT9LNR6sq", + "width": 1000, + "height": 1000, + "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/bifrost.json b/_data/icons/bifrost.json new file mode 100644 index 000000000000..8ec47ff03803 --- /dev/null +++ b/_data/icons/bifrost.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYxniqbiFD7nXBNjN8boUhoXYEAW23YquArD2Rnkq8WHS", + "width": 480, + "height": 480, + "format": "png" + } +] diff --git a/_data/icons/billions.json b/_data/icons/billions.json new file mode 100644 index 000000000000..8643634714c8 --- /dev/null +++ b/_data/icons/billions.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihy2skjw4kedeokhsqlyipgy2gm63hfsxmenfyldejad5au4wdrjy", + "width": 200, + "height": 200, + "format": "png" + } +] 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/bitci.json b/_data/icons/bitci.json new file mode 100644 index 000000000000..046d6578445e --- /dev/null +++ b/_data/icons/bitci.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbxmfWw5sVMASz5EbR1DCgLfk8PnqpSJGQKpYuEUpoxqn", + "width": 64, + "height": 64, + "format": "svg" + } +] diff --git a/_data/icons/bitfinity.json b/_data/icons/bitfinity.json new file mode 100644 index 000000000000..755115c4c718 --- /dev/null +++ b/_data/icons/bitfinity.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiczbhnoc5wpjikskmehexmg3xmqr4fchrny64db4wmk3lrygqik5e", + "width": 796, + "height": 129, + "format": "png" + } +] diff --git a/_data/icons/bitindi.json b/_data/icons/bitindi.json new file mode 100644 index 000000000000..00d762762033 --- /dev/null +++ b/_data/icons/bitindi.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRAFFPiLiSgjGTs9QaZdnR9fsDgyUdTejwSxcnPXo292s", + "width": 60, + "height": 72, + "format": "png" + } +] diff --git a/_data/icons/bitindiTestnet.json b/_data/icons/bitindiTestnet.json new file mode 100644 index 000000000000..00d762762033 --- /dev/null +++ b/_data/icons/bitindiTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRAFFPiLiSgjGTs9QaZdnR9fsDgyUdTejwSxcnPXo292s", + "width": 60, + "height": 72, + "format": "png" + } +] diff --git a/_data/icons/bitlayer.json b/_data/icons/bitlayer.json new file mode 100644 index 000000000000..f2e43510dcc0 --- /dev/null +++ b/_data/icons/bitlayer.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdWZ1frB47fr3tw31xE68C2Vocaw5Ef53LQ5WDNdNnNyG", + "width": 4500, + "height": 4500, + "format": "jpg" + } +] 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/bitnet.json b/_data/icons/bitnet.json new file mode 100644 index 000000000000..aa00ddd87467 --- /dev/null +++ b/_data/icons/bitnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmS9h3nFiCzaBLnBNw8Wot4U7vvEVK45EQfi8nxH4nvrmz", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/bitrock.json b/_data/icons/bitrock.json new file mode 100644 index 000000000000..f84e1d5c154a --- /dev/null +++ b/_data/icons/bitrock.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfXZCAh3HWS2bJroUStN9TieL4QA9QArMotie3X4pwBfj", + "width": 72, + "height": 72, + "format": "svg" + } +] 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/biz.json b/_data/icons/biz.json new file mode 100644 index 000000000000..1bd61bb7bbf4 --- /dev/null +++ b/_data/icons/biz.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNnaDZRoMz9aoho35TGHBY5zD16P39cgPpw3z3jnkDHHB", + "width": 104, + "height": 104, + "format": "png" + } +] diff --git a/_data/icons/blast.json b/_data/icons/blast.json new file mode 100644 index 000000000000..01f7c1282b65 --- /dev/null +++ b/_data/icons/blast.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeifc2h3x7jgy4x4nmg2m54ghbvmkfu6oweujambwefzqzew5vujhsi", + "width": 400, + "height": 400, + "format": "jpg" + } +] diff --git a/_data/icons/blastIcon.json b/_data/icons/blastIcon.json new file mode 100644 index 000000000000..4ecfbe655f76 --- /dev/null +++ b/_data/icons/blastIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdHpjiepU2Q4bt4kR48tKHPgaQW57Sb6UVFgLh4MCyg6U", + "width": 595, + "height": 582, + "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/blg.json b/_data/icons/blg.json new file mode 100644 index 000000000000..530267b7c43f --- /dev/null +++ b/_data/icons/blg.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUN5j2cre8GHKv52JE8ag88aAnRmuHMGFxePPvKMogisC", + "width": 512, + "height": 512, + "format": "svg" + } +] diff --git a/_data/icons/blockscout.json b/_data/icons/blockscout.json index 30e326a2d85d..335654399e33 100644 --- a/_data/icons/blockscout.json +++ b/_data/icons/blockscout.json @@ -1,8 +1,8 @@ [ - { - "url": "ipfs://bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq", - "width": 512, - "height": 512, - "format": "png" - } + { + "url": "ipfs://QmYtUimyqHkkFxYdbXXRbUqNg2VLPUg6Uu2C2nmFWowiZM", + "width": 551, + "height": 540, + "format": "png" + } ] diff --git a/_data/icons/blocksscan.json b/_data/icons/blocksscan.json new file mode 100644 index 000000000000..8b550218f40c --- /dev/null +++ b/_data/icons/blocksscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPzVFs16GwaD8LAcGFLCNXzEK8BHFKNXeM3nmBpnq9xy3", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/bloom.json b/_data/icons/bloom.json new file mode 100644 index 000000000000..466969a1f732 --- /dev/null +++ b/_data/icons/bloom.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmetu9hMLvczYo7tDPRyjqjBHwwpHU8mEgW3PEPPre56su", + "width": 2794, + "height": 2711, + "format": "png" + } +] diff --git a/_data/icons/blx.json b/_data/icons/blx.json new file mode 100644 index 000000000000..36dcfc8a6aad --- /dev/null +++ b/_data/icons/blx.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXM7XiLdSxhCub8MLSSo2J9V2qAkTcwdAGxcT57kurUzg", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/blxq.json b/_data/icons/blxq.json new file mode 100644 index 000000000000..5019c968b206 --- /dev/null +++ b/_data/icons/blxq.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmS9kDKr1rgcz5W55yCQVfFs1vRTCneaLHt1t9cBizpqpH", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/bnbchain.json b/_data/icons/bnbchain.json new file mode 100644 index 000000000000..43cf3df65802 --- /dev/null +++ b/_data/icons/bnbchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeib75gwytvblyvjpfminitr3i6mpat3a624udfsqsl5nysf5vuuvie", + "width": 96, + "height": 96, + "format": "png" + } +] diff --git a/_data/icons/bnken.json b/_data/icons/bnken.json new file mode 100644 index 000000000000..554f7428c9c4 --- /dev/null +++ b/_data/icons/bnken.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifhetalm3vpvjrg5u5d2momkcgvkz6rhltur5co3rslltbxzpr6yq", + "width": 2048, + "height": 2048, + "format": "png" + } +] diff --git a/_data/icons/boat.json b/_data/icons/boat.json new file mode 100644 index 000000000000..06247a5601d2 --- /dev/null +++ b/_data/icons/boat.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibqgh23s7yt7rikybybiwfivwtoh32n24scjykvgbgewo3ecbrcye", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/bob.json b/_data/icons/bob.json new file mode 100644 index 000000000000..d53dce79f16c --- /dev/null +++ b/_data/icons/bob.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaX5iqQTrJD8TBuvoT97xPMG6LYamjPCPnZUUMh12jc99", + "width": 297, + "height": 378, + "format": "png" + } +] diff --git a/_data/icons/bomb.json b/_data/icons/bomb.json new file mode 100644 index 000000000000..f1a5939a434b --- /dev/null +++ b/_data/icons/bomb.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmc44uSjfdNHdcxPTgZAL8eZ8TLe4UmSHibcvKQFyGJxTB", + "width": 1024, + "height": 1024, + "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/bora.json b/_data/icons/bora.json new file mode 100644 index 000000000000..422502dc3df1 --- /dev/null +++ b/_data/icons/bora.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmccGWJcCzQh3rP6ZMdRyTc7JjtusKnXkoUtGUANQgjNqR", + "width": 48, + "height": 48, + "format": "svg" + } +] diff --git a/_data/icons/botanix.json b/_data/icons/botanix.json new file mode 100644 index 000000000000..6f5c3fd0bb12 --- /dev/null +++ b/_data/icons/botanix.json @@ -0,0 +1,8 @@ +[ + { + "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/boyaanetwork.json b/_data/icons/boyaanetwork.json new file mode 100644 index 000000000000..d9b5b3645d1d --- /dev/null +++ b/_data/icons/boyaanetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiapootrvggtigdlvgvk6srfseplpuowsqq3zpyup4j5yj5moxuala", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/bpx.json b/_data/icons/bpx.json new file mode 100644 index 000000000000..158c6cc03e66 --- /dev/null +++ b/_data/icons/bpx.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiatcu42wbjlo24mr35jou4awvsqpaqys6iv4kxgkjhno3haovsiaq", + "width": 140, + "height": 140, + "format": "svg" + } +] diff --git a/_data/icons/brcchain.json b/_data/icons/brcchain.json new file mode 100644 index 000000000000..16c54b04b643 --- /dev/null +++ b/_data/icons/brcchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmX8qGX7xoZqYUpHxA85uZwQX2fgbTHvmddE1NfseDyBED", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/brise.json b/_data/icons/brise.json index 77a173f92646..5ffaceb92cef 100644 --- a/_data/icons/brise.json +++ b/_data/icons/brise.json @@ -5,4 +5,4 @@ "height": 512, "format": "png" } -] \ No newline at end of file +] diff --git a/_data/icons/brnkc.json b/_data/icons/brnkc.json new file mode 100644 index 000000000000..16b7a3200e6e --- /dev/null +++ b/_data/icons/brnkc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQqhH28QpUrreoRw5Gj8YShzdHxxVGMjfVrx3TqJNLSLv", + "width": 1067, + "height": 1067, + "format": "png" + } +] diff --git a/_data/icons/bronos.json b/_data/icons/bronos.json new file mode 100644 index 000000000000..4d9b57d348cb --- /dev/null +++ b/_data/icons/bronos.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeifkgtmhnq4sxu6jn22i7ass7aih6ubodr77k6ygtu4tjbvpmkw2ga", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/bsquare.json b/_data/icons/bsquare.json new file mode 100644 index 000000000000..6746891d0296 --- /dev/null +++ b/_data/icons/bsquare.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPV6ASrQDEkEW3g3ni7p2rJMPeciRLpEpvrAc1QfzVkx9", + "width": 640, + "height": 640, + "format": "png" + } +] diff --git a/_data/icons/bstc.json b/_data/icons/bstc.json new file mode 100644 index 000000000000..11b832c98e37 --- /dev/null +++ b/_data/icons/bstc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPko9BJhR5FWTsThcwUFnnnjgLjrXVDm1n98dCuaQNW59", + "width": 506, + "height": 652, + "format": "png" + } +] diff --git a/_data/icons/btc20.json b/_data/icons/btc20.json new file mode 100644 index 000000000000..a6d0442608ea --- /dev/null +++ b/_data/icons/btc20.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRUzDpn3xqPYnjLuZvFs2Attio9VxGRUprXEjcNQDcpe5", + "width": 375, + "height": 456, + "format": "png" + } +] diff --git a/_data/icons/btcix.json b/_data/icons/btcix.json deleted file mode 100644 index 7bf8d18930a3..000000000000 --- a/_data/icons/btcix.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url": "ipfs://QmZttTpHJreq3AinjDSkVP5yZ7Xzccdwi41G1uJhdogGBA", - "width": 520, - "height": 521, - "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/bton.json b/_data/icons/bton.json new file mode 100644 index 000000000000..3f5f303546f2 --- /dev/null +++ b/_data/icons/bton.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreig3hoedafisrgc6iffdo2jcblm6kov35h72gcblc3zkmt7t4ucwhy", + "width": 800, + "height": 800, + "format": "png" + } +] 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/bty.json b/_data/icons/bty.json new file mode 100644 index 000000000000..198e55e1a435 --- /dev/null +++ b/_data/icons/bty.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUmJVof2m5e4HUXb3GmijWUFsLUNhrQiwwQG3CqcXEtHt", + "width": 91, + "height": 24, + "format": "png" + } +] diff --git a/_data/icons/bxn.json b/_data/icons/bxn.json new file mode 100644 index 000000000000..13ebdc456f81 --- /dev/null +++ b/_data/icons/bxn.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPasA8xykRtJDivB2bcKDiRCUNWDPtfUTTKVAcaF2wVxC", + "width": 1968, + "height": 1968, + "format": "png" + } +] diff --git a/_data/icons/c4ei.json b/_data/icons/c4ei.json new file mode 100644 index 000000000000..8a54ded94c16 --- /dev/null +++ b/_data/icons/c4ei.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNPQBLEau3DsUYczt9QCLqZd9jK488GhF5y2SbtLRSrvB", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/c9xchain.json b/_data/icons/c9xchain.json new file mode 100644 index 000000000000..3e8e6dddb6b5 --- /dev/null +++ b/_data/icons/c9xchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiemkxy4mvhfzsxccoqx5ebbe5sdudae4vclnppbc26qann4z6fkiu", + "width": 500, + "height": 500, + "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/calypso.json b/_data/icons/calypso.json new file mode 100644 index 000000000000..c49c60d5d199 --- /dev/null +++ b/_data/icons/calypso.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeigyayzxvt7vosat4rtrbmhhnldgx57w2pfbutuniax7h6kswzi42m", + "width": 1637, + "height": 1636, + "format": "png" + } +] diff --git a/_data/icons/camdl.json b/_data/icons/camdl.json new file mode 100644 index 000000000000..29757b27039a --- /dev/null +++ b/_data/icons/camdl.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmW5Fpb2Ywnfqcj4ibvpbKvPv5Mo5eseWdYZnnUvLkj2Hp", + "width": 1453, + "height": 1453, + "format": "png" + } +] diff --git a/_data/icons/camelark.json b/_data/icons/camelark.json new file mode 100644 index 000000000000..4d09e2826f47 --- /dev/null +++ b/_data/icons/camelark.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeJerrsURFNt2LL7DE7TxeunjrQXiuezdfHyqmsbwX3MZ", + "width": 128, + "height": 128, + "format": "png" + } +] diff --git a/_data/icons/camino.json b/_data/icons/camino.json new file mode 100644 index 000000000000..311bbc15cbd1 --- /dev/null +++ b/_data/icons/camino.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSEoUonisawfCvT3osysuZzbqUEHugtgNraePKWL8PKYa", + "width": 768, + "height": 768, + "format": "png" + } +] diff --git a/_data/icons/camp.json b/_data/icons/camp.json new file mode 100644 index 000000000000..9f7f2758c954 --- /dev/null +++ b/_data/icons/camp.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZN3AzgetKvuTnZvsPPYTvtcsPa73ScGdTguXGHxc2CpN", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/candle.json b/_data/icons/candle.json deleted file mode 100644 index c59b0b281900..000000000000 --- a/_data/icons/candle.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url":"ipfs://Qmbe3ChumXNRfHcLsNBY2APRrGxkFWP68Nb35MaKMRfPye", - "width":524, - "height":524, - "format":"png" - } -] diff --git a/_data/icons/canxium.json b/_data/icons/canxium.json new file mode 100644 index 000000000000..5cc9f43dd3e9 --- /dev/null +++ b/_data/icons/canxium.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXHSbtVNCJVfe2CvRH7njdyf2SrX5u5bNTfvhqjLeFN2A", + "width": 938, + "height": 938, + "format": "png" + } +] diff --git a/_data/icons/carbon.json b/_data/icons/carbon.json new file mode 100644 index 000000000000..df4533f1445e --- /dev/null +++ b/_data/icons/carbon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQUHqi1gyuTuKmJQHqt9EyhN1FPmmmLNUK8u93nMGrxAy", + "width": 1600, + "height": 1600, + "format": "png" + } +] diff --git a/_data/icons/cascadia.json b/_data/icons/cascadia.json new file mode 100644 index 000000000000..b3c784a6ab49 --- /dev/null +++ b/_data/icons/cascadia.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQtcwxNiJ9D1QDz4k6jZ7qacLcqMk6CeW85TTBWBvNp3z", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/catena.json b/_data/icons/catena.json new file mode 100644 index 000000000000..ef076409b831 --- /dev/null +++ b/_data/icons/catena.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeAwHS3wcYz7k24LSYEjN1G7nwSfWmGf5FghNZ2qzVD4N", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/cbr.json b/_data/icons/cbr.json new file mode 100644 index 000000000000..df638f309835 --- /dev/null +++ b/_data/icons/cbr.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUTDMvoY7JgDs9sZuuBhsyJz6B2dNfc5jj6xUj355be2C", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/ccn.json b/_data/icons/ccn.json new file mode 100644 index 000000000000..34283cda2e83 --- /dev/null +++ b/_data/icons/ccn.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZ1jbxFZcuotj3eZ6iKFrg9ZXnaV8AK6sGRa7ELrceWyD", + "width": 1043, + "height": 1079, + "format": "png" + } +] diff --git a/_data/icons/ccp.json b/_data/icons/ccp.json index 782159898e50..7e3154742ba8 100644 --- a/_data/icons/ccp.json +++ b/_data/icons/ccp.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmPw1ixYYeXvTiRWoCt2jWe4YMd3B5o7TzL18SBEHXvhXX", - "width":200, - "height":200, - "format":"png" - } + { + "url": "ipfs://QmPw1ixYYeXvTiRWoCt2jWe4YMd3B5o7TzL18SBEHXvhXX", + "width": 200, + "height": 200, + "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/cem.json b/_data/icons/cem.json deleted file mode 100644 index 6067893b5d6e..000000000000 --- a/_data/icons/cem.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url": "ipfs://QmeNYqxR4nEk1v3DBXY3gjzYC1MSNCTmRvmjZ72inyzCFv", - "width": 206, - "height": 206, - "format": "png" - } - ] \ No newline at end of file diff --git a/_data/icons/cennz.json b/_data/icons/cennz.json index a76e74ff3bbd..485bbe2a83fe 100644 --- a/_data/icons/cennz.json +++ b/_data/icons/cennz.json @@ -1,6 +1,8 @@ [ { "url": "ipfs://QmWhNm7tTi6SYbiumULDRk956hxgqaZSX77vcxBNn8fvnw", + "width": 112, + "height": 112, "format": "svg" } -] \ No newline at end of file +] diff --git a/_data/icons/centrifuge.json b/_data/icons/centrifuge.json new file mode 100644 index 000000000000..33fffa9ff674 --- /dev/null +++ b/_data/icons/centrifuge.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmedNc3WvTm66iNK2NYW6Fzu5tx5FgNa6HCBf3DTHpzQZ1", + "width": 209, + "height": 208, + "format": "svg" + } +] diff --git a/_data/icons/chain_verse.json b/_data/icons/chain_verse.json new file mode 100644 index 000000000000..dce7eeb5502d --- /dev/null +++ b/_data/icons/chain_verse.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQyJt28h4wN3QHPXUQJQYQqGiFUD77han3zibZPzHbitk", + "width": 1000, + "height": 1436, + "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/chaos.json b/_data/icons/chaos.json new file mode 100644 index 000000000000..c7975f679162 --- /dev/null +++ b/_data/icons/chaos.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbYYCoU2G4LUfRr9ofGowF3eatfvWv9FiPVhqKndZeqwA", + "width": 400, + "height": 400, + "format": "png" + } +] 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/chiliz.json b/_data/icons/chiliz.json new file mode 100644 index 000000000000..b7f6beff5453 --- /dev/null +++ b/_data/icons/chiliz.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYV5xUVZhHRzLy7ie9D8qZeygJHvNZZAxwnB9GXYy6EED", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/chilizchain.json b/_data/icons/chilizchain.json new file mode 100644 index 000000000000..b7f6beff5453 --- /dev/null +++ b/_data/icons/chilizchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYV5xUVZhHRzLy7ie9D8qZeygJHvNZZAxwnB9GXYy6EED", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/chilizspicy.json b/_data/icons/chilizspicy.json new file mode 100644 index 000000000000..b7f6beff5453 --- /dev/null +++ b/_data/icons/chilizspicy.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYV5xUVZhHRzLy7ie9D8qZeygJHvNZZAxwnB9GXYy6EED", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/cicchain.json b/_data/icons/cicchain.json new file mode 100644 index 000000000000..9c3b90bc0928 --- /dev/null +++ b/_data/icons/cicchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNekc5gpyrQkeDQcmfJLBrP5fa6GMarB13iy6aHVdQJDU", + "width": 1024, + "height": 768, + "format": "png" + } +] 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/cloudtx.json b/_data/icons/cloudtx.json new file mode 100644 index 000000000000..ba088ce97332 --- /dev/null +++ b/_data/icons/cloudtx.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSEsi71AdA5HYH6VNC5QUQezFg1C7BiVQJdx1VVfGz3g3", + "width": 713, + "height": 830, + "format": "png" + } +] diff --git a/_data/icons/cloudwalk.json b/_data/icons/cloudwalk.json deleted file mode 100644 index b4e20ddcf84f..000000000000 --- a/_data/icons/cloudwalk.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url":"ipfs://QmPytfZEnKMx5mHiXB9fiuoSvA9jLi7tZ14gERSz2n4MJM", - "width":124, - "height":119, - "format":"png" - } -] diff --git a/_data/icons/clubmos.json b/_data/icons/clubmos.json new file mode 100644 index 000000000000..41b1c53ffdfb --- /dev/null +++ b/_data/icons/clubmos.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmczQf61mZmg3NmmGnwseDxzH1AqapA252KCTT85GuNG96", + "width": 51, + "height": 50, + "format": "png" + } +] 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/codefin.json b/_data/icons/codefin.json new file mode 100644 index 000000000000..4992ffde855e --- /dev/null +++ b/_data/icons/codefin.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVyAuAnKKNnGEpqeYMLPRfMdysLgPBTZeEXihXbRytGhp", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/codex-testnet.json b/_data/icons/codex-testnet.json new file mode 100644 index 000000000000..01711e598da8 --- /dev/null +++ b/_data/icons/codex-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmP9ehCr7SYf2e2kGhX7DX3WePUFyu8ACGZycPnKFBQeGs", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/codex.json b/_data/icons/codex.json new file mode 100644 index 000000000000..2bc240b33870 --- /dev/null +++ b/_data/icons/codex.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcGpSkBgL2jwyAVHTY4Ai3ij8QvyEaoL6uVF5d2XiXkXW", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/coinbit.json b/_data/icons/coinbit.json new file mode 100644 index 000000000000..06fc0afc48aa --- /dev/null +++ b/_data/icons/coinbit.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdaQRUbAXJGfHeJ8jaB8WVh8CCmHExq8VjvAfXpLWWQEo", + "width": 760, + "height": 760, + "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/combo.json b/_data/icons/combo.json new file mode 100644 index 000000000000..a043adb29fe3 --- /dev/null +++ b/_data/icons/combo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRR4v6h6z21BpgS9xY3ExLB4Gkmm3i3dJWQx27oTGifq8", + "width": 800, + "height": 693, + "format": "png" + } +] diff --git a/_data/icons/compverse.json b/_data/icons/compverse.json new file mode 100644 index 000000000000..d2dc9aa9d5c9 --- /dev/null +++ b/_data/icons/compverse.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYbskrGpidbMwsJekTeLrr8Z6GA9q4Uxh7piS1F9BdWWv", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/condor.json b/_data/icons/condor.json new file mode 100644 index 000000000000..96f0f039f890 --- /dev/null +++ b/_data/icons/condor.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPRDuEJSTqp2cDUvWCp71Wns6XV8nvdeAVKWH6srpk4xM", + "width": 752, + "height": 752, + "format": "png" + } +] diff --git a/_data/icons/conet.json b/_data/icons/conet.json new file mode 100644 index 000000000000..82fa5a00ecfc --- /dev/null +++ b/_data/icons/conet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibjxqd5kqcc2shstjjujvxzg6cwegwr6dgjyyd56v6h7yusgks7sy", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/conflux.json b/_data/icons/conflux.json index 84f36ab75ce1..4be273d471b4 100644 --- a/_data/icons/conflux.json +++ b/_data/icons/conflux.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://bafkreifj7n24u2dslfijfihwqvpdeigt5aj3k3sxv6s35lv75sxsfr3ojy", - "width":460, - "height":576, - "format":"png" - } + { + "url": "ipfs://bafkreifj7n24u2dslfijfihwqvpdeigt5aj3k3sxv6s35lv75sxsfr3ojy", + "width": 460, + "height": 576, + "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/constachain.json b/_data/icons/constachain.json new file mode 100644 index 000000000000..be8c0947269f --- /dev/null +++ b/_data/icons/constachain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfQ1yae6uvXgBSwnwJM4Mtp8ctH66tM6mB1Hsgu4XvsC9", + "width": 2000, + "height": 2000, + "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 new file mode 100644 index 000000000000..8b8e4e9730a8 --- /dev/null +++ b/_data/icons/core.json @@ -0,0 +1,8 @@ +[ + { + "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/coston.json b/_data/icons/coston.json new file mode 100644 index 000000000000..ab72a76dce39 --- /dev/null +++ b/_data/icons/coston.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmV5PVhxaT3ePRHYsH3aryEHin2c49W18xW3Xg4o171iYE", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/coston2.json b/_data/icons/coston2.json new file mode 100644 index 000000000000..c89f3d216132 --- /dev/null +++ b/_data/icons/coston2.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSmXY36oXCLmTp1u3Z2MSrBstBFVFyQv3aGKLKf1hxB6u", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/coti.json b/_data/icons/coti.json new file mode 100644 index 000000000000..4ed529017ecb --- /dev/null +++ b/_data/icons/coti.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmR58SroHx7ovpqEB5iRkw4PufEXmcCBAJ8AZ7mChDgTfV", + "width": 528, + "height": 528, + "format": "png" + } +] diff --git a/_data/icons/cpchain.json b/_data/icons/cpchain.json new file mode 100644 index 000000000000..a76efce3d76e --- /dev/null +++ b/_data/icons/cpchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihxvrmyofwfupugouhtj2nplj7rn7q7oechxdfzutxqmaobmyp5r4", + "width": 144, + "height": 144, + "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/credit.json b/_data/icons/credit.json new file mode 100644 index 000000000000..389cb44efe23 --- /dev/null +++ b/_data/icons/credit.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifbso3gd4wu5wxl27xyurxctmuae2jyuy37guqtzx23nga6ba4ag4", + "width": 1000, + "height": 1628, + "format": "png" + } +] diff --git a/_data/icons/creditcoin.json b/_data/icons/creditcoin.json new file mode 100644 index 000000000000..c2acddb22fd6 --- /dev/null +++ b/_data/icons/creditcoin.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbAk3S8XwCRYqKXbXc9rwBNJ9bWTUBgC6HFDE5ayrGfnd", + "width": 1200, + "height": 1200, + "format": "jpg" + } +] diff --git a/_data/icons/crossbell.json b/_data/icons/crossbell.json index 35f9da5c943e..352a9bfabea6 100644 --- a/_data/icons/crossbell.json +++ b/_data/icons/crossbell.json @@ -1,8 +1,8 @@ [ { - "url":"ipfs://QmS8zEetTb6pwdNpVjv5bz55BXiSMGP9BjTJmNcjcUT91t", - "format":"svg", - "width":412, - "height":412 + "url": "ipfs://QmS8zEetTb6pwdNpVjv5bz55BXiSMGP9BjTJmNcjcUT91t", + "format": "svg", + "width": 408, + "height": 408 } ] 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/crystal.json b/_data/icons/crystal.json index 4c147aced9ea..28a7b803cbb4 100644 --- a/_data/icons/crystal.json +++ b/_data/icons/crystal.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://Qmbry1Uc6HnXmqFNXW5dFJ7To8EezCCjNr4TqqvAyzXS4h", - "width":150, - "height":150, - "format":"png" - } + { + "url": "ipfs://Qmbry1Uc6HnXmqFNXW5dFJ7To8EezCCjNr4TqqvAyzXS4h", + "width": 150, + "height": 150, + "format": "png" + } ] diff --git a/_data/icons/ctex.json b/_data/icons/ctex.json new file mode 100644 index 000000000000..c7695e16c459 --- /dev/null +++ b/_data/icons/ctex.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreid5evn4qovxo6msuekizv5zn7va62tea7w2zpdx5sskconebuhqle", + "width": 800, + "height": 800, + "format": "png" + } +] diff --git a/_data/icons/cube.json b/_data/icons/cube.json index 6c05fc1ca54c..16981006dcd6 100644 --- a/_data/icons/cube.json +++ b/_data/icons/cube.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmbENgHTymTUUArX5MZ2XXH69WGenirU3oamkRD448hYdz", - "width":282, - "height":250, - "format":"png" - } + { + "url": "ipfs://QmbENgHTymTUUArX5MZ2XXH69WGenirU3oamkRD448hYdz", + "width": 282, + "height": 250, + "format": "png" + } ] 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/curveIcon.json b/_data/icons/curveIcon.json new file mode 100644 index 000000000000..7a97ff87faac --- /dev/null +++ b/_data/icons/curveIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTjV3TTR5aLb7fi7tjx8gcDvYtqBpusqhCSaznVxJ7NJg", + "width": 150, + "height": 150, + "format": "png" + } +] diff --git a/_data/icons/cybascan.json b/_data/icons/cybascan.json new file mode 100644 index 000000000000..f67377e2a8b6 --- /dev/null +++ b/_data/icons/cybascan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiagdqfrvnbdjhkh27gjbvepzo66dpqgnbffmpnywuw5ncprg3jk3u", + "width": 2264, + "height": 408, + "format": "png" + } +] diff --git a/_data/icons/cyber.json b/_data/icons/cyber.json new file mode 100644 index 000000000000..4d1d076587e6 --- /dev/null +++ b/_data/icons/cyber.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmR8NuaSqALStb95YsMsJRG2BoYkibjS1XE1pZFtvEkAXY", + "width": 213, + "height": 212, + "format": "svg" + } +] 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/cyberdeck.json b/_data/icons/cyberdeck.json new file mode 100644 index 000000000000..d6a907a490a0 --- /dev/null +++ b/_data/icons/cyberdeck.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTvYMJXeZeWxYPuoQ15mHCS8K5EQzkMMCHQVs3GshooyR", + "width": 193, + "height": 214, + "format": "png" + } +] diff --git a/_data/icons/cybria.json b/_data/icons/cybria.json new file mode 100644 index 000000000000..c6fee9ca5fd7 --- /dev/null +++ b/_data/icons/cybria.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiarso74bytq5ccnl3mlfhd4ejiylwautsr6ovbqgmynzjzmkorn6y", + "width": 500, + "height": 500, + "format": "svg" + } +] diff --git a/_data/icons/cycle.json b/_data/icons/cycle.json new file mode 100644 index 000000000000..d6838f6df123 --- /dev/null +++ b/_data/icons/cycle.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeC4mKGbBpwmLfFxUSsareWkSWJomevUmex8ajjxo1zHx", + "width": 500, + "height": 500, + "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/daon.json b/_data/icons/daon.json new file mode 100644 index 000000000000..c6d69228fb76 --- /dev/null +++ b/_data/icons/daon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiapaxokh2p4j7hg43ug2inomixiwrdhni4kpqazvqifssnez7efze", + "width": 512, + "height": 512, + "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/datahaven-testnet.json b/_data/icons/datahaven-testnet.json new file mode 100644 index 000000000000..55070cda2968 --- /dev/null +++ b/_data/icons/datahaven-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifwuxfoxoas44ylvk5mtgf6l5vdl46oivpt7mvuvequmreerhekgy", + "width": 510, + "height": 510, + "format": "png" + } +] diff --git a/_data/icons/datahaven.json b/_data/icons/datahaven.json new file mode 100644 index 000000000000..48b046f3a079 --- /dev/null +++ b/_data/icons/datahaven.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidfkhqgkkmkhoalf5quh7hzfgtthp6rzn25rbnilghhzhdiotpqne", + "width": 560, + "height": 560, + "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/dcchain.json b/_data/icons/dcchain.json new file mode 100644 index 000000000000..4c44b370b16c --- /dev/null +++ b/_data/icons/dcchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQsNtUoaKUHWaxFMBuCQwkX9WmKHz7iNotcZTFkWo7Qgt", + "width": 1020, + "height": 1022, + "format": "png" + } +] diff --git a/_data/icons/dchain.json b/_data/icons/dchain.json new file mode 100644 index 000000000000..12539b5a795a --- /dev/null +++ b/_data/icons/dchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmV2vhTqS9UyrX9Q6BSCbK4JrKBnS8ErHvstMjfb2oVWaj", + "width": 700, + "height": 495, + "format": "png" + } +] diff --git a/_data/icons/dchainmainnet.json b/_data/icons/dchainmainnet.json new file mode 100644 index 000000000000..5d826a4f81fb --- /dev/null +++ b/_data/icons/dchainmainnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmamkxtxT1uFWQGxswmzBRkoTcZuU5biM1QvdsU6SD36K6", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/dchaint.json b/_data/icons/dchaint.json new file mode 100644 index 000000000000..758846f3c5ad --- /dev/null +++ b/_data/icons/dchaint.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmP2cDWvgMuPgwAAEX9KexowUEjw6q7zCUSsWcb8HdudUH", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/dcpayIcon.json b/_data/icons/dcpayIcon.json new file mode 100644 index 000000000000..c0a0bbf3c757 --- /dev/null +++ b/_data/icons/dcpayIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmezBwVepoegoCqb86idzPgvPxtaSuXzMLBGiiYfyTGTkc", + "width": 458, + "height": 468, + "format": "png" + } +] diff --git a/_data/icons/dcsmIcon.json b/_data/icons/dcsmIcon.json new file mode 100644 index 000000000000..908192c38213 --- /dev/null +++ b/_data/icons/dcsmIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmatvJXLgMthjXwydGBVFRtga9fZXJ3qFEVJ6cMRxniFUc", + "width": 307, + "height": 314, + "format": "png" + } +] diff --git a/_data/icons/deam.json b/_data/icons/deam.json new file mode 100644 index 000000000000..f756334fbafd --- /dev/null +++ b/_data/icons/deam.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXvHWmjfXKdZMSz7x82NR4SjEqigKdJELVHbnzUPkj17F", + "width": 512, + "height": 512, + "format": "svg" + } +] diff --git a/_data/icons/debank.json b/_data/icons/debank.json new file mode 100644 index 000000000000..cfd1c18a1cde --- /dev/null +++ b/_data/icons/debank.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmW9pBps8WHRRWmyXhjLZrjZJUe8F48hUu7z98bu2RVsjN", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/debounce.json b/_data/icons/debounce.json new file mode 100644 index 000000000000..4d56ff5062e3 --- /dev/null +++ b/_data/icons/debounce.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeib5q4hez37s7b2fx4hqt2q4ji2tuudxjhfdgnp6q3d5mqm6wsxdfq", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/deelance.json b/_data/icons/deelance.json new file mode 100644 index 000000000000..c64e4400a2bb --- /dev/null +++ b/_data/icons/deelance.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmay2j8biuo5xLJL8NcLtrzubAEHuCWz65cdbKE1pSnGf6", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/deepl.json b/_data/icons/deepl.json new file mode 100644 index 000000000000..54a0cacfcea5 --- /dev/null +++ b/_data/icons/deepl.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeihjwgy4qja5cee452malk5hpb25pzpipfaka7hjcyb437ldodxzaq", + "width": 512, + "height": 512, + "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/defichain-network.json b/_data/icons/defichain-network.json new file mode 100644 index 000000000000..8fb87b353385 --- /dev/null +++ b/_data/icons/defichain-network.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdR3YL9F95ajwVwfxAGoEzYwm9w7JNsPSfUPjSaQogVjK", + "width": 512, + "height": 512, + "format": "svg" + } +] diff --git a/_data/icons/defioraclemeta.json b/_data/icons/defioraclemeta.json new file mode 100644 index 000000000000..e04d7f5890fd --- /dev/null +++ b/_data/icons/defioraclemeta.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYrMRnjQJcNkYq9AvZ2FQ9kzYj9szzP4YDmyNA1ybd8xE", + "width": 1000, + "height": 1043, + "format": "png" + } +] diff --git a/_data/icons/defiverse.json b/_data/icons/defiverse.json new file mode 100644 index 000000000000..49c08758f046 --- /dev/null +++ b/_data/icons/defiverse.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaSqPELi11UepS3odwHyiwfUPkLBnE4WP4zNkwumHoPmw", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/degen.json b/_data/icons/degen.json new file mode 100644 index 000000000000..64d6f0872037 --- /dev/null +++ b/_data/icons/degen.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmb6yAe4wXeBkxjfhxzoUT9TzETcmE7Vne59etm9GJaQf7", + "width": 789, + "height": 668, + "format": "svg" + } +] 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/delaTestnet.json b/_data/icons/delaTestnet.json new file mode 100644 index 000000000000..e1debffc1dc9 --- /dev/null +++ b/_data/icons/delaTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZQbfJfxYez8iQyVsB65y7ZTssKbgUpMXzPTEk5xGDwQB", + "width": 600, + "height": 600, + "format": "png" + } +] diff --git a/_data/icons/denergy.json b/_data/icons/denergy.json new file mode 100644 index 000000000000..f19fab47768e --- /dev/null +++ b/_data/icons/denergy.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdZMYDb12zN4ErNoSob7yotqqQBMobCDbhumMY3DV1kG1", + "width": 512, + "height": 503, + "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/dexalot.json b/_data/icons/dexalot.json new file mode 100644 index 000000000000..9e467a4ace01 --- /dev/null +++ b/_data/icons/dexalot.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfVxdrWjtUKiGzqFDzAxHH2FqwP2aRuZTGcYWdWg519Xy", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/dexguru.json b/_data/icons/dexguru.json new file mode 100644 index 000000000000..0f87a745f266 --- /dev/null +++ b/_data/icons/dexguru.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRaASKRSjQ5btoUQ2rNTJNxKtx2a2RoewgA7DMQkLVEne", + "width": 83, + "height": 82, + "format": "svg" + } +] diff --git a/_data/icons/dfk.json b/_data/icons/dfk.json index 4b4646ed924c..e0f594cb1558 100644 --- a/_data/icons/dfk.json +++ b/_data/icons/dfk.json @@ -1,10 +1,8 @@ - [ { - "url": "ipfs://QmQB48m15TzhUFrmu56QCRQjkrkgUaKfgCmKE8o3RzmuPJ", + "url": "ipfs://QmQB48m15TzhUFrmu56QCRQjkrkgUaKfgCmKE8o3RzmuPJ", "width": 500, "height": 500, "format": "png" } ] - \ No newline at end of file diff --git a/_data/icons/dgram.json b/_data/icons/dgram.json new file mode 100644 index 000000000000..6a872c9e703f --- /dev/null +++ b/_data/icons/dgram.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreic6jo3sppdb653avcqbptpkqsnvhwyblc4kebkn45l5vbhgpxgtl4", + "width": 450, + "height": 450, + "format": "png" + } +] diff --git a/_data/icons/dilithium3.json b/_data/icons/dilithium3.json new file mode 100644 index 000000000000..8ddfbc29c7fa --- /dev/null +++ b/_data/icons/dilithium3.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUaxaAaK6Y1QVtd7vEpXCoVXqNgPhKkgVJiVt6caw3Edj", + "width": 500, + "height": 500, + "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/dithereum.json b/_data/icons/dithereum.json deleted file mode 100644 index c3fefa58382a..000000000000 --- a/_data/icons/dithereum.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url": "ipfs://QmSHN5GtRGpMMpszSn1hF47ZSLRLqrLxWsQ48YYdJPyjLf", - "width": 500, - "height": 500, - "format": "png" - } -] diff --git a/_data/icons/ditherscan.json b/_data/icons/ditherscan.json deleted file mode 100644 index c3fefa58382a..000000000000 --- a/_data/icons/ditherscan.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url": "ipfs://QmSHN5GtRGpMMpszSn1hF47ZSLRLqrLxWsQ48YYdJPyjLf", - "width": 500, - "height": 500, - "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/dm2verse.json b/_data/icons/dm2verse.json new file mode 100644 index 000000000000..a2f17c17b3db --- /dev/null +++ b/_data/icons/dm2verse.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPMqjf5XKZ4Cxa1u8qc8Zj9mmVLBoqK7N5h2zFr3Rsyzw", + "width": 260, + "height": 260, + "format": "png" + } +] diff --git a/_data/icons/dmd.json b/_data/icons/dmd.json new file mode 100644 index 000000000000..ab5c85c8afd5 --- /dev/null +++ b/_data/icons/dmd.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreieaev7npoq4zzd3kn352nkbqw3jsh22rf6wqypovpljyx6pb2meom", + "width": 640, + "height": 640, + "format": "svg" + } +] diff --git a/_data/icons/dodao.json b/_data/icons/dodao.json new file mode 100644 index 000000000000..5e16f7945dd4 --- /dev/null +++ b/_data/icons/dodao.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdWsi6mhs6Agb3LF4uycUwx2fgNmwkuAGb7JmsLPkwd3j", + "width": 636, + "height": 629, + "format": "png" + } +] diff --git a/_data/icons/dodochain_testnet.json b/_data/icons/dodochain_testnet.json new file mode 100644 index 000000000000..816c2bdc243b --- /dev/null +++ b/_data/icons/dodochain_testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQDdZQjpKhrVM62479RTzppUG8QHhHd8Bq4RFYAjN1yf4", + "width": 160, + "height": 160, + "format": "png" + } +] diff --git a/_data/icons/dogechain.json b/_data/icons/dogechain.json new file mode 100644 index 000000000000..84c9b35cb8aa --- /dev/null +++ b/_data/icons/dogechain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNS6B6L8FfgGSMTEi2SxD3bK5cdmKPNtQKcYaJeRWrkHs", + "width": 732, + "height": 732, + "format": "png" + } +] diff --git a/_data/icons/dogs.json b/_data/icons/dogs.json new file mode 100644 index 000000000000..3366484d0e31 --- /dev/null +++ b/_data/icons/dogs.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZCadkExKThak3msvszZjo6UnAbUJKE61dAcg4TixuMC3", + "width": 160, + "height": 171, + "format": "png" + } +] diff --git a/_data/icons/doid.json b/_data/icons/doid.json new file mode 100644 index 000000000000..cebac1feb4ec --- /dev/null +++ b/_data/icons/doid.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXYSMyMnMvBf2F1ih6dTcRVUhmMnpzvmuP7vieLjmNQo5", + "width": 41, + "height": 52, + "format": "svg" + } +] 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/doken.json b/_data/icons/doken.json new file mode 100644 index 000000000000..24c299c73df2 --- /dev/null +++ b/_data/icons/doken.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifms4eio6v56oyeemnnu5luq3sc44hptan225lr45itgzu3u372iu", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/doma.json b/_data/icons/doma.json new file mode 100644 index 000000000000..40331ed0484f --- /dev/null +++ b/_data/icons/doma.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifurplvrlawl2ib2snx6sr5jmkkg2vdnegb7ettz2am4ge42blhn4", + "width": 2000, + "height": 2000, + "format": "png" + } +] diff --git a/_data/icons/doric.json b/_data/icons/doric.json new file mode 100644 index 000000000000..98af97666867 --- /dev/null +++ b/_data/icons/doric.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdFEozqneC8abhpfgtGpvfKpWVEbL8eMZjJKtUPuBTanK", + "width": 988, + "height": 901, + "format": "png" + } +] diff --git a/_data/icons/doschain.json b/_data/icons/doschain.json new file mode 100644 index 000000000000..0da0553b1e0a --- /dev/null +++ b/_data/icons/doschain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmV2Nowzo81F6pi2qFcHePA4MwmmdMKBMUzBJUrxcymxx4", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/dotblox.json b/_data/icons/dotblox.json new file mode 100644 index 000000000000..5dbbd1ebffa8 --- /dev/null +++ b/_data/icons/dotblox.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZy2TMY881ghRxXJA7VyRA8Zhj2LJJ86DpHRZs3VQZqoJ", + "width": 53, + "height": 53, + "format": "png" + } +] diff --git a/_data/icons/drac.json b/_data/icons/drac.json new file mode 100644 index 000000000000..c803a8bfe89d --- /dev/null +++ b/_data/icons/drac.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXbsQe7QsVFZJZdBmbZVvS6LgX9ZFoaTMBs9MiQXUzJTw", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/dracones.json b/_data/icons/dracones.json new file mode 100644 index 000000000000..37de7f01529d --- /dev/null +++ b/_data/icons/dracones.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeibpyckp65pqjvrvqhdt26wqoqk55m6anshbfgyqnaemn6l34nlwya", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/dragonfly.json b/_data/icons/dragonfly.json new file mode 100644 index 000000000000..cad6c8994bad --- /dev/null +++ b/_data/icons/dragonfly.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPXhdPGufjcPzZ9Y6nY6QyW8MgA6793L88iPMRh1Q3gjJ", + "width": 512, + "height": 366, + "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/dreyerx.json b/_data/icons/dreyerx.json new file mode 100644 index 000000000000..a6f2ab70d809 --- /dev/null +++ b/_data/icons/dreyerx.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTGjVbiSdHYhjzpeqzY6fGwGiLQuEa2hW7irD75sUSx9e", + "width": 4501, + "height": 4501, + "format": "png" + } +] diff --git a/_data/icons/dsc.json b/_data/icons/dsc.json new file mode 100644 index 000000000000..dbcb299b38fc --- /dev/null +++ b/_data/icons/dsc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSgzwKnJJjys3Uq2aVVdwJ3NffLj3CXMVCph9uByTBegc", + "width": 256, + "height": 256, + "format": "png" + } +] 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/dx.json b/_data/icons/dx.json new file mode 100644 index 000000000000..24374020346b --- /dev/null +++ b/_data/icons/dx.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYBup5bWoBfkaHntbcgW8Ji7ncad7f53deJ4Q55z4PNQs", + "width": 128, + "height": 128, + "format": "png" + } +] diff --git a/_data/icons/dxz.json b/_data/icons/dxz.json new file mode 100644 index 000000000000..8a34c029175e --- /dev/null +++ b/_data/icons/dxz.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUBveetVibvSEWQrjyxySgUphLuoMGSVLGmYnobt5FgEZ", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/dymension.json b/_data/icons/dymension.json new file mode 100644 index 000000000000..8c8af10dcb38 --- /dev/null +++ b/_data/icons/dymension.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreic4sjyqikz33xzpcctczvkiwfj44q5i3i7zslycnjiqmyx5ybc3fi", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/dyno.json b/_data/icons/dyno.json deleted file mode 100644 index ab9bf1e2dc65..000000000000 --- a/_data/icons/dyno.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url": "ipfs://QmVeq8cvgK6sWp4GxQPBNB1nn7EUDJp5Cp9xLaPFExpin1", - "width": 1282, - "height": 1281, - "format": "png" - } -] diff --git a/_data/icons/eLiberty.json b/_data/icons/eLiberty.json new file mode 100644 index 000000000000..26370da8618a --- /dev/null +++ b/_data/icons/eLiberty.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmcr8US1DZcK3ooiMtE8tEQPgep12abXzxPw1jCkgZhji9", + "width": 150, + "height": 150, + "format": "png" + } +] diff --git a/_data/icons/ebtc.json b/_data/icons/ebtc.json new file mode 100644 index 000000000000..2357143b4c86 --- /dev/null +++ b/_data/icons/ebtc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreic4aq265oaf6yze7ba5okefqh6vnqudyrz6ovukvbnrlhet36itle", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/eclat.json b/_data/icons/eclat.json new file mode 100644 index 000000000000..0469dc0e01e0 --- /dev/null +++ b/_data/icons/eclat.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeigpyvnir6awzgeazkk5xdkvexw7w6ww3yxawszue6zms4a5ygdfky", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/ecredits.json b/_data/icons/ecredits.json index 71d82ec53839..effbc56e5c80 100644 --- a/_data/icons/ecredits.json +++ b/_data/icons/ecredits.json @@ -1,8 +1,8 @@ [ - { - "url": "ipfs://QmU9H9JE1KtLh2Fxrd8EWTMjKGJBpgRWKUeEx7u6ic4kBY", - "width": 32, - "height": 32, - "format": "png" - } -] \ No newline at end of file + { + "url": "ipfs://QmU9H9JE1KtLh2Fxrd8EWTMjKGJBpgRWKUeEx7u6ic4kBY", + "width": 32, + "height": 32, + "format": "png" + } +] diff --git a/_data/icons/ecrox.json b/_data/icons/ecrox.json new file mode 100644 index 000000000000..597f697c8c4e --- /dev/null +++ b/_data/icons/ecrox.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibnqdlwgotu4hwx6oeu4ye3huobr3eaiuvv55n5tolyxya2q7edmq", + "width": 300, + "height": 300, + "format": "png" + } +] diff --git a/_data/icons/edexa.json b/_data/icons/edexa.json new file mode 100644 index 000000000000..47bfd2b1bc09 --- /dev/null +++ b/_data/icons/edexa.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSgvmLpRsCiu2ySqyceA5xN4nwi7URJRNEZLffwEKXdoR", + "width": 1028, + "height": 1042, + "format": "png" + } +] 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/edgeware.json b/_data/icons/edgeware.json new file mode 100644 index 000000000000..3fedab100d46 --- /dev/null +++ b/_data/icons/edgeware.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWCSXYLigYE6qEiese4cso2icgKQyosV3x1adtxJnRyJ9", + "width": 88, + "height": 76, + "format": "svg" + } +] diff --git a/_data/icons/edgscan.json b/_data/icons/edgscan.json new file mode 100644 index 000000000000..b029e1ffe31a --- /dev/null +++ b/_data/icons/edgscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVV7ibcq8pS44Nt77jWSLNY2RkfQooHBCZMBPSMdAfZ3d", + "width": 88, + "height": 88, + "format": "svg" + } +] 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/egoldchain.json b/_data/icons/egoldchain.json new file mode 100644 index 000000000000..3778c69b888a --- /dev/null +++ b/_data/icons/egoldchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTQh54Rf3DFYxZZoQQ9yCjeAYXwzTaVua4KLmXX8AsFNF", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/egonicon.json b/_data/icons/egonicon.json new file mode 100644 index 000000000000..1efa8a891509 --- /dev/null +++ b/_data/icons/egonicon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNZiMmzMQYjyGtNSghtzLg4UooYhDgMQsa677DAP5KsBg", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/eiob.json b/_data/icons/eiob.json new file mode 100644 index 000000000000..d3c28ead300d --- /dev/null +++ b/_data/icons/eiob.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfJLG2mXgSqKx2V3A2jzTwt4vkozvQTTXkRy3os27wEVm", + "width": 48, + "height": 48, + "format": "png" + } +] diff --git a/_data/icons/ekta.json b/_data/icons/ekta.json new file mode 100644 index 000000000000..8b69327fc5b6 --- /dev/null +++ b/_data/icons/ekta.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfMd564KUPK8eKZDwGCT71ZC2jMnUZqP6LCtLpup3rHH1", + "width": 2100, + "height": 2100, + "format": "png" + } +] diff --git a/_data/icons/electroneum.json b/_data/icons/electroneum.json new file mode 100644 index 000000000000..df718076a66c --- /dev/null +++ b/_data/icons/electroneum.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiefr7p63cufa53rylql4megu6mbe2fksl45fkbo4jkpt2pyy3q5xm", + "width": 647, + "height": 765, + "format": "png" + } +] diff --git a/_data/icons/ella.json b/_data/icons/ella.json index 188f650885b3..ea67c8daa133 100644 --- a/_data/icons/ella.json +++ b/_data/icons/ella.json @@ -1,8 +1,8 @@ [ - { - "url": "ipfs://QmVkAhSaHhH3wKoLT56Aq8dNyEH4RySPEpqPcLwsptGBDm", - "width": 512, - "height": 512, - "format": "png" - } + { + "url": "ipfs://QmVkAhSaHhH3wKoLT56Aq8dNyEH4RySPEpqPcLwsptGBDm", + "width": 512, + "height": 512, + "format": "png" + } ] diff --git a/_data/icons/eluxchain.json b/_data/icons/eluxchain.json new file mode 100644 index 000000000000..c3a7e920fc37 --- /dev/null +++ b/_data/icons/eluxchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQC7LzzFj8kL71a1MXRgn3TSeRrgF1tTuVEzvWx5cQjv1", + "width": 114, + "height": 132, + "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/emoney.json b/_data/icons/emoney.json new file mode 100644 index 000000000000..7a7bf1165dbe --- /dev/null +++ b/_data/icons/emoney.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigo4gtboztftjdnbvy2rb2ku2gxxbhm4iwutzgnzhvden3vcbsqui", + "width": 472, + "height": 462, + "format": "png" + } +] diff --git a/_data/icons/engram.json b/_data/icons/engram.json new file mode 100644 index 000000000000..0b493d6d5823 --- /dev/null +++ b/_data/icons/engram.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidn7dolavrzgqxthydb6rt5iwuzm6cvkxqirzh2szarjspsdp4kyu", + "width": 400, + "height": 400, + "format": "svg" + } +] 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/enter.json b/_data/icons/enter.json index c4c884cffc5c..2e36397a4bb0 100644 --- a/_data/icons/enter.json +++ b/_data/icons/enter.json @@ -1,9 +1,8 @@ - [ -{ - "url": "ipfs://Qmb2UYVc1MjLPi8vhszWRxqBJYoYkWQVxDJRSmtrgk6j2E", - "width": 64, - "height": 64, - "format": "png" -} + { + "url": "ipfs://Qmb2UYVc1MjLPi8vhszWRxqBJYoYkWQVxDJRSmtrgk6j2E", + "width": 64, + "height": 64, + "format": "png" + } ] diff --git a/_data/icons/enuls.json b/_data/icons/enuls.json new file mode 100644 index 000000000000..d4466f9d4324 --- /dev/null +++ b/_data/icons/enuls.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYz8LK5WkUN8UwqKfWUjnyLuYqQZWihT7J766YXft4TSy", + "width": 26, + "height": 41, + "format": "svg" + } +] diff --git a/_data/icons/eon.json b/_data/icons/eon.json new file mode 100644 index 000000000000..2441d3bc56a5 --- /dev/null +++ b/_data/icons/eon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSFMBk3rMyu45Sy9KQHjgArFj4HdywANNYrSosLMUdcti", + "width": 1213, + "height": 1213, + "format": "png" + } +] diff --git a/_data/icons/eos.json b/_data/icons/eos.json new file mode 100644 index 000000000000..d59b5961320a --- /dev/null +++ b/_data/icons/eos.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXkK5D5GWizvY1FmL6pV8cYLAbhehKETubktCgh6qDJZb", + "width": 500, + "height": 750, + "format": "png" + } +] 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/espento.json b/_data/icons/espento.json new file mode 100644 index 000000000000..a66ac8f9d501 --- /dev/null +++ b/_data/icons/espento.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVvQdmAj6GNQjP1dsxQKbA7xgzqsciooGTQtQ2RsJ37Lf", + "width": 335, + "height": 335, + "format": "svg" + } +] 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/ethereum.json b/_data/icons/ethereum.json index 804901211e04..c0a1879a4d75 100644 --- a/_data/icons/ethereum.json +++ b/_data/icons/ethereum.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", - "width":1000, - "height":1628, - "format":"png" - } + { + "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", + "width": 1000, + "height": 1628, + "format": "png" + } ] diff --git a/_data/icons/ethereumclassic.json b/_data/icons/ethereumclassic.json new file mode 100644 index 000000000000..bcb08c9ec1ce --- /dev/null +++ b/_data/icons/ethereumclassic.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qme7PT7gidTzRuf3T2JdxQ64JeZPgFH7yNBB8mYoMPbpTe", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/ethereumclassictestnet.json b/_data/icons/ethereumclassictestnet.json new file mode 100644 index 000000000000..c56b82ef0d81 --- /dev/null +++ b/_data/icons/ethereumclassictestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmawMDPsaj3kBTZErCYQ3tshv5RrMAN3smWNs72m943Fyj", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/etherlink.json b/_data/icons/etherlink.json new file mode 100644 index 000000000000..6b51463ee458 --- /dev/null +++ b/_data/icons/etherlink.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVqE4wq3fd3RKZwo7GxmW333ywHgYBZGvqwh3TUBM5DUi", + "width": 584, + "height": 545, + "format": "png" + } +] diff --git a/_data/icons/etherlite.json b/_data/icons/etherlite.json index 8ff491a66d97..ea76f604f4ae 100644 --- a/_data/icons/etherlite.json +++ b/_data/icons/etherlite.json @@ -1,8 +1,8 @@ [ - { - "url": "ipfs://QmbNAai1KnBnw4SPQKgrf6vBddifPCQTg2PePry1bmmZYy", - "width": 88, - "height": 88, - "format": "png" - } + { + "url": "ipfs://QmbNAai1KnBnw4SPQKgrf6vBddifPCQTg2PePry1bmmZYy", + "width": 88, + "height": 88, + "format": "png" + } ] diff --git a/_data/icons/ethernal.json b/_data/icons/ethernal.json new file mode 100644 index 000000000000..c4594b2d4bd6 --- /dev/null +++ b/_data/icons/ethernal.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVQidJf4ZXt6whYqZk9atCXLrmterkHrL4wYBCetZbsdj", + "width": 200, + "height": 200, + "format": "png" + } +] 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/etho.json b/_data/icons/etho.json deleted file mode 100644 index 35f80e4b3bd5..000000000000 --- a/_data/icons/etho.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url":"ipfs://QmNSNdgbazhur7fKbTc5YgqP1oPhgSCyrm7QMkxS6itoTw", - "width":688, - "height":688, - "format":"png" - } -] \ No newline at end of file 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/etica.json b/_data/icons/etica.json new file mode 100644 index 000000000000..e68ab649c547 --- /dev/null +++ b/_data/icons/etica.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYSyhUqm6ArWyALBe3G64823ZpEUmFdkzKZ93hUUhNKgU", + "width": 360, + "height": 361, + "format": "png" + } +] diff --git a/_data/icons/etmp.json b/_data/icons/etmp.json new file mode 100644 index 000000000000..e70c5d3524cb --- /dev/null +++ b/_data/icons/etmp.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmT7DTqT1V2y42pRpt3sj9ifijfmbtkHN7D2vTfAUAS622", + "width": 512, + "height": 512, + "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/europa.json b/_data/icons/europa.json new file mode 100644 index 000000000000..e03fbd0bf3f9 --- /dev/null +++ b/_data/icons/europa.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiezcwowhm6xjrkt44cmiu6ml36rhrxx3amcg3cfkcntv2vgcvgbre", + "width": 600, + "height": 600, + "format": "png" + } +] diff --git a/_data/icons/eurus.json b/_data/icons/eurus.json index e45a43bce1f7..7f6661d8f67c 100644 --- a/_data/icons/eurus.json +++ b/_data/icons/eurus.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmaGd5L9jGPbfyGXBFhu9gjinWJ66YtNrXq8x6Q98Eep9e", - "width":471, - "height":471, - "format":"svg" - } -] \ No newline at end of file + { + "url": "ipfs://QmaGd5L9jGPbfyGXBFhu9gjinWJ66YtNrXq8x6Q98Eep9e", + "width": 471, + "height": 471, + "format": "svg" + } +] diff --git a/_data/icons/eurusexplorer.json b/_data/icons/eurusexplorer.json deleted file mode 100644 index e45a43bce1f7..000000000000 --- a/_data/icons/eurusexplorer.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url":"ipfs://QmaGd5L9jGPbfyGXBFhu9gjinWJ66YtNrXq8x6Q98Eep9e", - "width":471, - "height":471, - "format":"svg" - } -] \ No newline at end of file diff --git a/_data/icons/evanesco.json b/_data/icons/evanesco.json index b515996950b6..63fe6dc10acf 100644 --- a/_data/icons/evanesco.json +++ b/_data/icons/evanesco.json @@ -5,4 +5,4 @@ "height": 200, "format": "png" } -] \ No newline at end of file +] 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/evolveIcon.json b/_data/icons/evolveIcon.json new file mode 100644 index 000000000000..3d482cd962ae --- /dev/null +++ b/_data/icons/evolveIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVxtpYYzc5214CB7BgsMC4mRNRHCD8fpbNMzZguBWyRwa", + "width": 600, + "height": 600, + "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/exl.json b/_data/icons/exl.json new file mode 100644 index 000000000000..971111b9fdf7 --- /dev/null +++ b/_data/icons/exl.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeooM7QicT1YbgY93XPd5p7JsCjYhN3qjWt68X57g6bVC", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/exn.json b/_data/icons/exn.json new file mode 100644 index 000000000000..a59c77ed585c --- /dev/null +++ b/_data/icons/exn.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaQxfwpXYTomUd24PMx5tKjosupXcm99z1jL1XLq9LWBS", + "width": 468, + "height": 468, + "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/exzo.json b/_data/icons/exzo.json new file mode 100644 index 000000000000..a2d823d68aa1 --- /dev/null +++ b/_data/icons/exzo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeYpc2JfEsHa2Bh11SKRx3sgDtMeg6T8KpXNLepBEKnbJ", + "width": 128, + "height": 128, + "format": "png" + } +] diff --git a/_data/icons/ezchain.json b/_data/icons/ezchain.json index 518cee357473..bc946d4c5830 100644 --- a/_data/icons/ezchain.json +++ b/_data/icons/ezchain.json @@ -1,9 +1,8 @@ [ - { - "url": "ipfs://QmPKJbYCFjGmY9X2cA4b9YQjWYHQncmKnFtKyQh9rHkFTb", - "width": 146, - "height": 48, - "format": "png" - } - ] - \ No newline at end of file + { + "url": "ipfs://QmPKJbYCFjGmY9X2cA4b9YQjWYHQncmKnFtKyQh9rHkFTb", + "width": 146, + "height": 48, + "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/ffgIcon.json b/_data/icons/ffgIcon.json new file mode 100644 index 000000000000..976750e2df0f --- /dev/null +++ b/_data/icons/ffgIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihsas2rwakc7lllmtb4pcgwutlel2woibmqmhd4aiin342zgtpmwy", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/fibonacci.json b/_data/icons/fibonacci.json new file mode 100644 index 000000000000..ae5e714e865a --- /dev/null +++ b/_data/icons/fibonacci.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidiedaz3jugxmh2ylzlc4nympbd5iwab33adhwkcnblyop6vvj25y", + "width": 1494, + "height": 1494, + "format": "png" + } +] diff --git a/_data/icons/filecoin.json b/_data/icons/filecoin.json new file mode 100644 index 000000000000..b4ab649143e6 --- /dev/null +++ b/_data/icons/filecoin.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmS9r9XQkMHVomWcSBNDkKkz9n87h9bH9ssabeiKZtANoU", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/filenova.json b/_data/icons/filenova.json new file mode 100644 index 000000000000..1c3dc452f873 --- /dev/null +++ b/_data/icons/filenova.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmc4KSKiAChhtN7ZNE5gvkLTRbvtLreKU9xaQFG8BKM8RE", + "width": 1000, + "height": 1000, + "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/firechain.json b/_data/icons/firechain.json new file mode 100644 index 000000000000..9ff24902c69a --- /dev/null +++ b/_data/icons/firechain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYjuztyURb3Fc6ZTLgCbwQa64CcVoigF5j9cafzuSbqgf", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/flacoin.json b/_data/icons/flacoin.json new file mode 100644 index 000000000000..4b7b120458ba --- /dev/null +++ b/_data/icons/flacoin.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiadlvc4pfiykehyt2z67nvgt5w4vlov27olu5obvmryv4xzua4tae", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/flag.json b/_data/icons/flag.json new file mode 100644 index 000000000000..377fe4186634 --- /dev/null +++ b/_data/icons/flag.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeibcrxeavdxpwwmj4mc6hhp232nkrfbpvfpngcqux2v5rmoshycj3u", + "width": 500, + "height": 500, + "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/flare.json b/_data/icons/flare.json index 779b5ac5d521..08a5c2a11e35 100644 --- a/_data/icons/flare.json +++ b/_data/icons/flare.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmebGy9pJdCSSg1SEdZ7uzaRxgEPHdGxbvogMREs4dV73X", - "width": 512, - "height": 512, + "url": "ipfs://QmbT52cCx4h1rcz6nXGfUPFdRyw1VfFMU8kKpY7YCtvUjs", + "width": 500, + "height": 500, "format": "png" } -] \ No newline at end of file +] diff --git a/_data/icons/flowevm.json b/_data/icons/flowevm.json new file mode 100644 index 000000000000..8f5e01b999dd --- /dev/null +++ b/_data/icons/flowevm.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQFugEvsfU3ARjjJ7YRLJwSxMfTk54WWzrofekTRBKFaC", + "width": 2000, + "height": 2000, + "format": "png" + } +] diff --git a/_data/icons/fnc.json b/_data/icons/fnc.json new file mode 100644 index 000000000000..eac4c08b7946 --- /dev/null +++ b/_data/icons/fnc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifx4vef7ubqz4iiaxckcvkdwjrp2hbliljwjlwu2vytlngg3r4pg4", + "width": 192, + "height": 192, + "format": "png" + } +] diff --git a/_data/icons/fncy.json b/_data/icons/fncy.json new file mode 100644 index 000000000000..1673523e67cd --- /dev/null +++ b/_data/icons/fncy.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfXCh6UnaEHn3Evz7RFJ3p2ggJBRm9hunDHegeoquGuhD", + "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/fox.json b/_data/icons/fox.json new file mode 100644 index 000000000000..387dd3946107 --- /dev/null +++ b/_data/icons/fox.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmbp1rwhtRr6JQRyYqyfLqkbmzXr1T17zbmChsi2ouvg3M", + "width": 100, + "height": 100, + "format": "png" + } +] diff --git a/_data/icons/frameTestnet.json b/_data/icons/frameTestnet.json new file mode 100644 index 000000000000..d8f724cf9e32 --- /dev/null +++ b/_data/icons/frameTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRxeKFwBwrXyDksoN4NzNRp3R35s8pVnTBfBj4AJSCq5g", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/fraxtal.json b/_data/icons/fraxtal.json new file mode 100644 index 000000000000..c033d07e1d44 --- /dev/null +++ b/_data/icons/fraxtal.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiet3pmz37ymq6wlkglw5wmcee6jdyz4bbe4zg6h2voso2z2mf2s7q", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/fren.json b/_data/icons/fren.json new file mode 100644 index 000000000000..fec73e85c2a8 --- /dev/null +++ b/_data/icons/fren.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQk41bYX6WpYyUAdRgomZekxP5mbvZXhfxLEEqtatyJv4", + "width": 128, + "height": 128, + "format": "png" + } +] diff --git a/_data/icons/fsnscan.json b/_data/icons/fsnscan.json new file mode 100644 index 000000000000..a4e9ee27ccbd --- /dev/null +++ b/_data/icons/fsnscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSAFx34SKNi7a139agX12f68oBMo2Ktt9c8yD8aFa14gd", + "width": 48, + "height": 51, + "format": "svg" + } +] diff --git a/_data/icons/funki.json b/_data/icons/funki.json new file mode 100644 index 000000000000..97042fc32937 --- /dev/null +++ b/_data/icons/funki.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQnQZ2YUuJMDYoKWhiA1KqY67VFjvMLSXTww46pnrS8js", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/fuse.json b/_data/icons/fuse.json new file mode 100644 index 000000000000..4dc1cf5550a8 --- /dev/null +++ b/_data/icons/fuse.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmR3gooSiRfCuryT2y7Q37a3DqmdCKvV6vYp1fVpJW3VWz", + "width": 800, + "height": 800, + "format": "png" + } +] diff --git a/_data/icons/fusion.json b/_data/icons/fusion.json new file mode 100644 index 000000000000..91dd1e061790 --- /dev/null +++ b/_data/icons/fusion.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmX3tsEoj7SdaBLLV8VyyCUAmymdEGiSGeuTbxMrEMVvth", + "width": 31, + "height": 31, + "format": "svg" + } +] 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/ganache.json b/_data/icons/ganache.json new file mode 100644 index 000000000000..bc3d7b05816e --- /dev/null +++ b/_data/icons/ganache.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmc9N7V8CiLB4r7FEcG7GojqfiGGsRCZqcFWCahwMohbDW", + "width": 267, + "height": 300, + "format": "png" + } +] diff --git a/_data/icons/garizon.json b/_data/icons/garizon.json index 8f153f787d8c..50846802c374 100644 --- a/_data/icons/garizon.json +++ b/_data/icons/garizon.json @@ -1,8 +1,8 @@ [ - { - "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", - "width": 1024, - "height": 613, - "format": "png" - } -] \ No newline at end of file + { + "url": "ipfs://QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc", + "width": 1024, + "height": 613, + "format": "png" + } +] diff --git a/_data/icons/garnet.json b/_data/icons/garnet.json new file mode 100644 index 000000000000..ab5ee6522b24 --- /dev/null +++ b/_data/icons/garnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWhHvjbjTiNNsHKpbEz9rxSt4CCL2Q5xVZjk8eQkp82B9", + "width": 600, + "height": 600, + "format": "png" + } +] diff --git a/_data/icons/gather.json b/_data/icons/gather.json new file mode 100644 index 000000000000..37be786ff461 --- /dev/null +++ b/_data/icons/gather.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTYR8CeFiNbJ1zJHnE3DK2wEN18r2y2vqSKUcLweUT2Gz", + "width": 1080, + "height": 1080, + "format": "svg" + } +] diff --git a/_data/icons/gauss.json b/_data/icons/gauss.json new file mode 100644 index 000000000000..75b8cde5da47 --- /dev/null +++ b/_data/icons/gauss.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeDXUAYgQxwaSJLsqWgTqnrJVwicgEyNf9199xAMyRkqA", + "width": 243, + "height": 243, + "format": "svg" + } +] diff --git a/_data/icons/gdcc.json b/_data/icons/gdcc.json new file mode 100644 index 000000000000..363b4747252e --- /dev/null +++ b/_data/icons/gdcc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmY4vp1mJoGpUiuWbRVenNiDZC17wSyyueGPK9A5QyK1M2", + "width": 72, + "height": 72, + "format": "png" + } +] 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/genesys.json b/_data/icons/genesys.json new file mode 100644 index 000000000000..3de91efd8040 --- /dev/null +++ b/_data/icons/genesys.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreie6nai3yhykcdlsyshn5lbcbyba5y7zwsqg6owcfek2urhoucr6rm", + "width": 800, + "height": 800, + "format": "png" + } +] diff --git a/_data/icons/genesyscode.json b/_data/icons/genesyscode.json new file mode 100644 index 000000000000..b167ca13d0d9 --- /dev/null +++ b/_data/icons/genesyscode.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihgmpaceze7rxpajv7yrlx3cb6daqubippkpvgryzairtaubsjjoe", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/gesoten.json b/_data/icons/gesoten.json new file mode 100644 index 000000000000..56bb51158a25 --- /dev/null +++ b/_data/icons/gesoten.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmb7oJY9zd9sTzxNNQNTVZQz2hkd1aA94mWm4cvXfJ9QxV", + "width": 1280, + "height": 1280, + "format": "png" + } +] diff --git a/_data/icons/gitshockchain.json b/_data/icons/gitshockchain.json new file mode 100644 index 000000000000..c366833edc84 --- /dev/null +++ b/_data/icons/gitshockchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifqpj5jkjazvh24muc7wv4r22tihzzl75cevgecxhvojm4ls6mzpq", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/gitswarm.json b/_data/icons/gitswarm.json new file mode 100644 index 000000000000..651ea27cc1df --- /dev/null +++ b/_data/icons/gitswarm.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihdfuzytq2og65n3d3b2kzfvk6yywvqdlorrt6h76q4baz5phcvju", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/giwaTestnet.json b/_data/icons/giwaTestnet.json new file mode 100644 index 000000000000..55d07eefb181 --- /dev/null +++ b/_data/icons/giwaTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreie3xhbmcwv5qqopq7ak5n5wmqncy6ewnxgi772vytmssmqrubngbm", + "width": 128, + "height": 128, + "format": "svg" + } +] 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/globelchain.json b/_data/icons/globelchain.json new file mode 100644 index 000000000000..fcd273286ed1 --- /dev/null +++ b/_data/icons/globelchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPRHDsVNpRZ72GoQgDbpa3R4wKENmrXCRNuYJkxocFRDb", + "width": 306, + "height": 293, + "format": "png" + } +] 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/gmmt.json b/_data/icons/gmmt.json new file mode 100644 index 000000000000..1f8a6e187ea1 --- /dev/null +++ b/_data/icons/gmmt.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVth4aPeskDTFqRifUugJx6gyEHCmx2PFbMWUtsCSQFkF", + "width": 468, + "height": 518, + "format": "png" + } +] diff --git a/_data/icons/gnosis.json b/_data/icons/gnosis.json index 7c91dfb91615..d4e3941da7dc 100644 --- a/_data/icons/gnosis.json +++ b/_data/icons/gnosis.json @@ -1,8 +1,8 @@ [ - { - "url": "ipfs://bafybeidk4swpgdyqmpz6shd5onvpaujvwiwthrhypufnwr6xh3dausz2dm", - "width": 1800, - "height": 1800, - "format": "png" - } + { + "url": "ipfs://bafybeidk4swpgdyqmpz6shd5onvpaujvwiwthrhypufnwr6xh3dausz2dm", + "width": 1800, + "height": 1800, + "format": "png" + } ] 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/gold.json b/_data/icons/gold.json new file mode 100644 index 000000000000..436d230fd011 --- /dev/null +++ b/_data/icons/gold.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbvuHpn8Np5uTTbVNgv4JHCj2zfHBfmSoRcVNdWbcV5Vq", + "width": 226, + "height": 104, + "format": "png" + } +] diff --git a/_data/icons/gonchain.json b/_data/icons/gonchain.json new file mode 100644 index 000000000000..5f16c6ee0552 --- /dev/null +++ b/_data/icons/gonchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPtiJGaApbW3ATZhPW3pKJpw3iGVrRGsZLWhrDKF9ZK18", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/gotas.json b/_data/icons/gotas.json new file mode 100644 index 000000000000..e141d257de3d --- /dev/null +++ b/_data/icons/gotas.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreih2fivik6aij5gvnasutu7zo5y6la4az7qqcpwto5v56qrfywcvbq", + "width": 512, + "height": 512, + "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/gpu.json b/_data/icons/gpu.json new file mode 100644 index 000000000000..4c730dc3f686 --- /dev/null +++ b/_data/icons/gpu.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTYgL4PMNJya3XchuRx99ggNzMHL9kWaZvj3wycdEwpQA", + "width": 1248, + "height": 1197, + "format": "png" + } +] diff --git a/_data/icons/grams.json b/_data/icons/grams.json new file mode 100644 index 000000000000..8418f0a2fb19 --- /dev/null +++ b/_data/icons/grams.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmerDBFoXvgev2xx9U71gAaAK4CtxaaQVaAPf9Qi6UF9MS", + "width": 400, + "height": 400, + "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/gravity.json b/_data/icons/gravity.json new file mode 100644 index 000000000000..ede1f7bb1891 --- /dev/null +++ b/_data/icons/gravity.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmU5XU4S5oaGM5fj8oU1ovhWoXCzGWspwRj2zWRTuJrU4k", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/greenchain.json b/_data/icons/greenchain.json new file mode 100644 index 000000000000..870e74955bf2 --- /dev/null +++ b/_data/icons/greenchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNWBcc2AtknphNxt4GtTxbWF6vDkf6sh2nvkPn9wqchW6", + "width": 519, + "height": 518, + "format": "png" + } +] diff --git a/_data/icons/grokicon.json b/_data/icons/grokicon.json new file mode 100644 index 000000000000..1cc17779cfb1 --- /dev/null +++ b/_data/icons/grokicon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreicepw6yqtmubtpcthecjx47ndwgywartfqnkdhf66k3q57h2hlewm", + "width": 512, + "height": 512, + "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/gtn.json b/_data/icons/gtn.json new file mode 100644 index 000000000000..c3f8331604ca --- /dev/null +++ b/_data/icons/gtn.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreid3wd6ouu53r677q2z24a4eq5un5tlwbc4izfapcvvtrlhkmz43au", + "width": 133, + "height": 144, + "format": "png" + } +] diff --git a/_data/icons/guapcoinx.json b/_data/icons/guapcoinx.json new file mode 100644 index 000000000000..354e2dd323bf --- /dev/null +++ b/_data/icons/guapcoinx.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcDTR7982VQKDDz2Mh4fZbnE9hn67MuFPWQv1MimCqPvB", + "width": 800, + "height": 800, + "format": "png" + } +] diff --git a/_data/icons/guntestnet.json b/_data/icons/guntestnet.json new file mode 100644 index 000000000000..36e9c399a721 --- /dev/null +++ b/_data/icons/guntestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmd5R5khFePwY9dYBGhjRA1rGtUAKaHg7Z2B7mBrbA6TiB", + "width": 512, + "height": 512, + "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/h2.json b/_data/icons/h2.json new file mode 100644 index 000000000000..42f3d1d9567d --- /dev/null +++ b/_data/icons/h2.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiehobxmonxuwg3wukea4ixbixap7imzk4yuiidyejzpvgdylok4ua", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/hal.json b/_data/icons/hal.json new file mode 100644 index 000000000000..0783c0d37d3a --- /dev/null +++ b/_data/icons/hal.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWAa7JayD8HCtAMXezzUNcUoi2Rikqpu2WmrHpFBmDEez", + "width": 480, + "height": 480, + "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/hap.json b/_data/icons/hap.json new file mode 100644 index 000000000000..b96b4cfed583 --- /dev/null +++ b/_data/icons/hap.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQ4V9JC25yUrYk2kFJwmKguSsZBQvtGcg6q9zkDV8mkJW", + "width": 400, + "height": 400, + "format": "png" + } +] 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/haven1.json b/_data/icons/haven1.json new file mode 100644 index 000000000000..9dbb9957ffa5 --- /dev/null +++ b/_data/icons/haven1.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreih4jq33lz2mjwvu62hmo2ptt277et5l6oqi5ejuyxv2dir2iohsai", + "width": 128, + "height": 128, + "format": "png" + } +] diff --git a/_data/icons/hedera.json b/_data/icons/hedera.json new file mode 100644 index 000000000000..87e020093f9a --- /dev/null +++ b/_data/icons/hedera.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQikzhvZKyMmbZJd7BVLZb2YTBDMgNDnaMCAErsVjsfuz", + "width": 1500, + "height": 1500, + "format": "png" + } +] 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/hela.json b/_data/icons/hela.json new file mode 100644 index 000000000000..f5a033d524ec --- /dev/null +++ b/_data/icons/hela.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQbUVcaxFwY8gqMq1Jeup4NEyivo12QYhbLvVRvgXRBFb", + "width": 719, + "height": 216, + "format": "png" + } +] 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/hemi.json b/_data/icons/hemi.json new file mode 100644 index 000000000000..fc7125ec0894 --- /dev/null +++ b/_data/icons/hemi.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfP6GDn5eXFcpWuoiyWn5pjn6PYB7HQhRD8nSko1zR8KD", + "width": 1200, + "height": 1200, + "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/hertz-network.json b/_data/icons/hertz-network.json new file mode 100644 index 000000000000..f1eee1333f68 --- /dev/null +++ b/_data/icons/hertz-network.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmf3GYbPXmTDpSP6t7Ug2j5HjEwrY5oGhBDP7d4TQHvGnG", + "width": 162, + "height": 129, + "format": "png" + } +] 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/highbury.json b/_data/icons/highbury.json new file mode 100644 index 000000000000..79b895055177 --- /dev/null +++ b/_data/icons/highbury.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiby27m6esbsjthmknckq5ktsaaj2z6hylzljbsmvx4fgezdra3q4m", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/hik.json b/_data/icons/hik.json new file mode 100644 index 000000000000..35de2b529907 --- /dev/null +++ b/_data/icons/hik.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmW44FPm3CMM2JDs8BQxLNvUtykkUtrGkQkQsUDJSi3Gmp", + "width": 350, + "height": 84, + "format": "png" + } +] diff --git a/_data/icons/hizoco.json b/_data/icons/hizoco.json new file mode 100644 index 000000000000..149163e49ed6 --- /dev/null +++ b/_data/icons/hizoco.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNWGj94URMQNyGZbGuAareEL4UpHjTwYWFEFBcX9utBZX", + "width": 421, + "height": 421, + "format": "png" + } +] diff --git a/_data/icons/hokum.json b/_data/icons/hokum.json new file mode 100644 index 000000000000..bc58099aa516 --- /dev/null +++ b/_data/icons/hokum.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmafrUmh1FD48WWQwk6pfW1Y7eA9VQTdpeL387Wt2JFrAd", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/home_verse.json b/_data/icons/home_verse.json new file mode 100644 index 000000000000..291705995707 --- /dev/null +++ b/_data/icons/home_verse.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeGb65zSworzoHmwK3jdkPtEsQZMUSJRxf8K8Feg56soU", + "width": 597, + "height": 597, + "format": "png" + } +] diff --git a/_data/icons/horizen.json b/_data/icons/horizen.json new file mode 100644 index 000000000000..34182cbb11f2 --- /dev/null +++ b/_data/icons/horizen.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiejezmamcywe5jigzopxlpxdp5uvofx3h2jfo5xp34bphf43i4ega", + "width": 834, + "height": 834, + "format": "jpg" + } +] diff --git a/_data/icons/hpp.json b/_data/icons/hpp.json new file mode 100644 index 000000000000..57619339397b --- /dev/null +++ b/_data/icons/hpp.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmX5MTCNX4wKb7B9pK6UH7oHGcWj5m8XywhzXqLA7gtVAJ", + "width": 400, + "height": 400, + "format": "svg" + } +] diff --git a/_data/icons/hpx.json b/_data/icons/hpx.json new file mode 100644 index 000000000000..476d94f55173 --- /dev/null +++ b/_data/icons/hpx.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihip3cdp4p2ggts3djq3wzyb2danm6oi6vdavdat2na4t46qmwsia", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/hsk.json b/_data/icons/hsk.json new file mode 100644 index 000000000000..821efcd9364f --- /dev/null +++ b/_data/icons/hsk.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNU11AqYB2htrrSyBSP9ct7bPtuZTP7Hrz21PrEcB9nYE", + "width": 1440, + "height": 448, + "format": "png" + } +] diff --git a/_data/icons/hth.json b/_data/icons/hth.json new file mode 100644 index 000000000000..094c2ae47cc4 --- /dev/null +++ b/_data/icons/hth.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNR4Y3cUxefV7KGpGxMkjp5ofeJvbaUkR1GavsmTtK248", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/htmlcoin.json b/_data/icons/htmlcoin.json new file mode 100644 index 000000000000..2063f62a9f49 --- /dev/null +++ b/_data/icons/htmlcoin.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmR1oDRSadPerfyWMhKHNP268vPKvpczt5zPawgFSZisz2", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/hubblenet.json b/_data/icons/hubblenet.json new file mode 100644 index 000000000000..76853b25b738 --- /dev/null +++ b/_data/icons/hubblenet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmU9t9fZaWiqpAZ9dw2ojTpJycnB8BxekLWVSCJikJVgjW", + "width": 512, + "height": 512, + "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/human.json b/_data/icons/human.json new file mode 100644 index 000000000000..80cc6ba74fd5 --- /dev/null +++ b/_data/icons/human.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmT5KKrpNt6duU8QfwaYw3xf4ifTBPtjahpWsMi3gsFmcS", + "width": 440, + "height": 600, + "format": "png" + } +] diff --git a/_data/icons/humanode.json b/_data/icons/humanode.json new file mode 100644 index 000000000000..c7bcd23acbae --- /dev/null +++ b/_data/icons/humanode.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeihuskzfwqogwvutaxil6sztmvpiavzbrzwjwpn6w2i4j3jysbybra", + "width": 1043, + "height": 1043, + "format": "png" + } +] diff --git a/_data/icons/humans-dark.json b/_data/icons/humans-dark.json new file mode 100644 index 000000000000..d07b54f9a95e --- /dev/null +++ b/_data/icons/humans-dark.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmX6XuoQDTTjYqAmdNJiieLDZSwHHyUx44yQb4E3tmHmEA", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/humans.json b/_data/icons/humans.json new file mode 100644 index 000000000000..37af0c16d496 --- /dev/null +++ b/_data/icons/humans.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmU83haX3TNifDDjBx6RP6ByqES1Kg9VqeJC87X9ipKyCS", + "width": 386, + "height": 397, + "format": "png" + } +] diff --git a/_data/icons/hybrid.json b/_data/icons/hybrid.json new file mode 100644 index 000000000000..967ff04e7ff4 --- /dev/null +++ b/_data/icons/hybrid.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQDNdhPvCrrijEKC3G9Px5if2CHgdxq7Q2Pg66cy9xwbF", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/hybridIcon.json b/_data/icons/hybridIcon.json new file mode 100644 index 000000000000..64672c0a6ef4 --- /dev/null +++ b/_data/icons/hybridIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdGfvH9qfvbMXYKosS1nHbw3q5UtFJky4hdMDmmKDTx8Y", + "width": 250, + "height": 250, + "format": "png" + } +] diff --git a/_data/icons/hychain.json b/_data/icons/hychain.json new file mode 100644 index 000000000000..c061ebd7bf32 --- /dev/null +++ b/_data/icons/hychain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcSJmAfk3iay6uCGJxgUPd9pTsRxbtF4BrNnC5txE9cg8", + "width": 400, + "height": 400, + "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/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/hyperagi.json b/_data/icons/hyperagi.json new file mode 100644 index 000000000000..cc20313dd0d2 --- /dev/null +++ b/_data/icons/hyperagi.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihl6c22tj2cmo3ngsswaa42y2pnbhqwvo4pb4ktia6dasl6sldosi", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/hypercluster.json b/_data/icons/hypercluster.json new file mode 100644 index 000000000000..66ccc18c2c43 --- /dev/null +++ b/_data/icons/hypercluster.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigyg6sbkcu6aql4pbfu3fjxhkvxywnitnojyl6jabq2vqekzqcr6a", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/hyperonchain.json b/_data/icons/hyperonchain.json new file mode 100644 index 000000000000..3cb5f6cfdf2b --- /dev/null +++ b/_data/icons/hyperonchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWxhyxXTEsWH98v7M3ck4ZL1qQoUaHG4HgtgxzD2KJQ5m", + "width": 540, + "height": 541, + "format": "png" + } +] 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/icbnetwork.json b/_data/icons/icbnetwork.json new file mode 100644 index 000000000000..8ff706e8d65f --- /dev/null +++ b/_data/icons/icbnetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifgpv7tnai42hsdegnpwzbvq5iymgub357e553cotitirwy2ir7je", + "width": 2000, + "height": 2243, + "format": "png" + } +] diff --git a/_data/icons/icplaza.json b/_data/icons/icplaza.json new file mode 100644 index 000000000000..16c93446bffc --- /dev/null +++ b/_data/icons/icplaza.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQpKKwpqrx77VA4SJLEWhuv9eLFMcVV9uvxRCLb6gdgCX", + "width": 847, + "height": 906, + "format": "png" + } +] diff --git a/_data/icons/idchain.json b/_data/icons/idchain.json index e2d52c1b888a..11472b964c43 100644 --- a/_data/icons/idchain.json +++ b/_data/icons/idchain.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmZVwsY6HPXScKqZCA9SWNrr4jrQAHkPhVhMWi6Fj1DsrJ", - "width":162, - "height":129, - "format":"png" - } -] \ No newline at end of file + { + "url": "ipfs://QmZVwsY6HPXScKqZCA9SWNrr4jrQAHkPhVhMWi6Fj1DsrJ", + "width": 162, + "height": 129, + "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/igc-testnet.json b/_data/icons/igc-testnet.json new file mode 100644 index 000000000000..b020329cece9 --- /dev/null +++ b/_data/icons/igc-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeXuzaYXCDwHgQdpuE9L55JfEChzj11P73Ngrn8vDTE9T", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/immutable.json b/_data/icons/immutable.json new file mode 100644 index 000000000000..2dcdb7c08f53 --- /dev/null +++ b/_data/icons/immutable.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXFUYFW4e6wifbU9LKVq7owM14bnE6ZbbYq3bn1jBP3Mw", + "width": 1168, + "height": 1168, + "format": "png" + } +] diff --git a/_data/icons/imp.json b/_data/icons/imp.json new file mode 100644 index 000000000000..a4f27e918bbc --- /dev/null +++ b/_data/icons/imp.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcNGLzKyc7Gu2dgpBFF6t3KJwFuKC79D56DW8GTc5DWRw", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/imversed.json b/_data/icons/imversed.json new file mode 100644 index 000000000000..8abd19ed5237 --- /dev/null +++ b/_data/icons/imversed.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1", + "width": 400, + "height": 400, + "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/inevm.json b/_data/icons/inevm.json new file mode 100644 index 000000000000..59255ee057fe --- /dev/null +++ b/_data/icons/inevm.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmU9KU1qgReJR7vyVxN5zwWB3nkhSs658ViArUjT7GCh4r", + "width": 2000, + "height": 2000, + "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/injective.json b/_data/icons/injective.json new file mode 100644 index 000000000000..d28bac3d79b1 --- /dev/null +++ b/_data/icons/injective.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiee2qhggsx77ssjqhz5m4lnfpvtzsqlygrgtfxdpefxwrrhg52mr4", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/innovator.json b/_data/icons/innovator.json new file mode 100644 index 000000000000..3fe4dbc8f688 --- /dev/null +++ b/_data/icons/innovator.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVJBGeFYZXMQqicNdzctMfvPN5CrtRrfZBTw3CEpkCBsS", + "width": 1500, + "height": 1500, + "format": "png" + } +] diff --git a/_data/icons/inoai.json b/_data/icons/inoai.json new file mode 100644 index 000000000000..cf7ea1ffaca0 --- /dev/null +++ b/_data/icons/inoai.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdiEBREiSP9TBHqxV8Ap3kehvBktBWFCpXs3mkC4e18zM", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/intd.json b/_data/icons/intd.json new file mode 100644 index 000000000000..5febb2de772e --- /dev/null +++ b/_data/icons/intd.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeia5n537fj2mkfcwmjfwktkmqrcwef3affdodhxnvmkg2gkvmbv2ke", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/iotaevm.json b/_data/icons/iotaevm.json new file mode 100644 index 000000000000..4bab3c5b8530 --- /dev/null +++ b/_data/icons/iotaevm.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibky2sy6qhi6arktayvologkrgu5kudpgdxfkx4uosbvmstz7v4di", + "width": 720, + "height": 720, + "format": "png" + } +] diff --git a/_data/icons/irishub.json b/_data/icons/irishub.json new file mode 100644 index 000000000000..254d46fc5c28 --- /dev/null +++ b/_data/icons/irishub.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTKgKs7kJiWDhdjbELE4Y2HVZ36KS4bYkNCbXdsXk66sW", + "width": 1062, + "height": 1062, + "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/ivar.json b/_data/icons/ivar.json index 642e0ab7820c..66bf61b81e59 100644 --- a/_data/icons/ivar.json +++ b/_data/icons/ivar.json @@ -1,8 +1,8 @@ - [ - { - "url": "ipfs://QmV8UmSwqGF2fxrqVEBTHbkyZueahqyYtkfH2RBF5pNysM", - "width": 524, - "height": 524, - "format": "svg" - } - ] +[ + { + "url": "ipfs://QmV8UmSwqGF2fxrqVEBTHbkyZueahqyYtkfH2RBF5pNysM", + "width": 519, + "height": 519, + "format": "svg" + } +] diff --git a/_data/icons/j2otaro.json b/_data/icons/j2otaro.json new file mode 100644 index 000000000000..54af775fd336 --- /dev/null +++ b/_data/icons/j2otaro.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdUYi8fjnvdM9iFQ7dwE2YvmhDtavSB3bKhCD2GhPxPks", + "width": 512, + "height": 512, + "format": "png" + } +] 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/jamton.json b/_data/icons/jamton.json new file mode 100644 index 000000000000..6c63e25acd16 --- /dev/null +++ b/_data/icons/jamton.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidaujskyg6vjv2vx33ad7iu2wyvpriigdqatishh6ubkhzbyiyjyi", + "width": 512, + "height": 512, + "format": "svg" + } +] 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/janusnetwork.json b/_data/icons/janusnetwork.json new file mode 100644 index 000000000000..4d5881409853 --- /dev/null +++ b/_data/icons/janusnetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifc3vnwf4hj3bo6fg4u5qlqmjgajjgezyeg236qjcihl4ha42siuq", + "width": 819, + "height": 792, + "format": "png" + } +] diff --git a/_data/icons/jasmychain.json b/_data/icons/jasmychain.json new file mode 100644 index 000000000000..7cf40f785367 --- /dev/null +++ b/_data/icons/jasmychain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihxk2mlsh526zjn7rp4yju3yqrnvg6dgageqzz3sele2lihrm37fa", + "width": 512, + "height": 512, + "format": "svg" + } +] diff --git a/_data/icons/jbc.json b/_data/icons/jbc.json new file mode 100644 index 000000000000..2cc29fc16ec9 --- /dev/null +++ b/_data/icons/jbc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWvTUSCcQ17mDiKg3w1X5nW3q4wZGuVsZ9vwzJ8S9oCns", + "width": 200, + "height": 200, + "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 new file mode 100644 index 000000000000..b41b779a283c --- /dev/null +++ b/_data/icons/joc.json @@ -0,0 +1,8 @@ +[ + { + "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/jono11.json b/_data/icons/jono11.json new file mode 100644 index 000000000000..0071d1e636c1 --- /dev/null +++ b/_data/icons/jono11.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreievzx4ke62dtc77o47x7vs7nn67ghzrwku6h5dxo3hwcsqfeblke4", + "width": 612, + "height": 612, + "format": "png" + } +] diff --git a/_data/icons/jono12.json b/_data/icons/jono12.json new file mode 100644 index 000000000000..0071d1e636c1 --- /dev/null +++ b/_data/icons/jono12.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreievzx4ke62dtc77o47x7vs7nn67ghzrwku6h5dxo3hwcsqfeblke4", + "width": 612, + "height": 612, + "format": "png" + } +] diff --git a/_data/icons/joseon.json b/_data/icons/joseon.json new file mode 100644 index 000000000000..189103a4242d --- /dev/null +++ b/_data/icons/joseon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQjwcNRCLXU8JBtSkPLUnbWVrpoqbnZVffpJ9Bu8rG34e", + "width": 148, + "height": 148, + "format": "svg" + } +] diff --git a/_data/icons/jovay.json b/_data/icons/jovay.json new file mode 100644 index 000000000000..a95c2a4011a3 --- /dev/null +++ b/_data/icons/jovay.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreif3xfpoojvgf23cf6kxx7q3pgbeqtkiiv3lro23i4lemb3wiodmq4", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/ju-test.json b/_data/icons/ju-test.json new file mode 100644 index 000000000000..c6ab2c656813 --- /dev/null +++ b/_data/icons/ju-test.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTYAGtxSChGszStYeGM3knudcXB1JH4rPwMjhz3yvSXkW", + "width": 116, + "height": 116, + "format": "svg" + } +] diff --git a/_data/icons/ju.json b/_data/icons/ju.json new file mode 100644 index 000000000000..c6ab2c656813 --- /dev/null +++ b/_data/icons/ju.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTYAGtxSChGszStYeGM3knudcXB1JH4rPwMjhz3yvSXkW", + "width": 116, + "height": 116, + "format": "svg" + } +] 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/k-laos.json b/_data/icons/k-laos.json new file mode 100644 index 000000000000..6f2bcc0b1455 --- /dev/null +++ b/_data/icons/k-laos.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmW26eoxJeyUfikZ4DUT1Gfk78sBkvydEo8QzHa1BXjUUL", + "width": 580, + "height": 580, + "format": "png" + } +] diff --git a/_data/icons/kaiba.json b/_data/icons/kaiba.json new file mode 100644 index 000000000000..3e8b5c4dfe19 --- /dev/null +++ b/_data/icons/kaiba.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeihbsw3ky7yf6llpww6fabo4dicotcgwjpefscoxrppstjx25dvtea", + "width": 932, + "height": 932, + "format": "png" + } +] diff --git a/_data/icons/kaibascan.json b/_data/icons/kaibascan.json new file mode 100644 index 000000000000..3e8b5c4dfe19 --- /dev/null +++ b/_data/icons/kaibascan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeihbsw3ky7yf6llpww6fabo4dicotcgwjpefscoxrppstjx25dvtea", + "width": 932, + "height": 932, + "format": "png" + } +] diff --git a/_data/icons/kakarot.json b/_data/icons/kakarot.json new file mode 100644 index 000000000000..8c8b6e3f432c --- /dev/null +++ b/_data/icons/kakarot.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQcB7Q2kqVWhJxXmtN9Ri37rcLH9g6z4UCCYqEzgM3XmW", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/kalarchain.json b/_data/icons/kalarchain.json new file mode 100644 index 000000000000..1e9245101477 --- /dev/null +++ b/_data/icons/kalarchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihfoy2kgf2rebaoicso7z5h7ju46z6gtr64mskkths3qbfkrtnkjm", + "width": 190, + "height": 170, + "format": "png" + } +] diff --git a/_data/icons/kalarscan.json b/_data/icons/kalarscan.json new file mode 100644 index 000000000000..9253abda0f14 --- /dev/null +++ b/_data/icons/kalarscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidbzzv3lrwlzquhlpl4jcmr54sifhi5ufoek6olb5kjh3h3kvktdq", + "width": 411, + "height": 159, + "format": "png" + } +] diff --git a/_data/icons/kalichain.json b/_data/icons/kalichain.json new file mode 100644 index 000000000000..5bfd2af51f33 --- /dev/null +++ b/_data/icons/kalichain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreieox7v337p3jfhd37dz74mq6mn3uk5i5475rmzpirmyp6ydcfzzqi", + "width": 350, + "height": 350, + "format": "png" + } +] diff --git a/_data/icons/kalychain.json b/_data/icons/kalychain.json new file mode 100644 index 000000000000..66fffe8dc17a --- /dev/null +++ b/_data/icons/kalychain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUaXcPewLuQtY5a7xPTzJyVdjkH487VfV7gSR8UXrbxQ3", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/karak.json b/_data/icons/karak.json new file mode 100644 index 000000000000..a6796fb3ea3f --- /dev/null +++ b/_data/icons/karak.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeic3dihuytvtm2hnfo7lvsqf43eqbzobtkxn3o3pxptktifsefy7su", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/kardiachain.json b/_data/icons/kardiachain.json new file mode 100644 index 000000000000..3eec9c08e4e3 --- /dev/null +++ b/_data/icons/kardiachain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXoHaZXJevc59GuzEgBhwRSH6kio1agMRvL8bD93pARRV", + "format": "png", + "width": 297, + "height": 297 + } +] diff --git a/_data/icons/kaspaclassic.json b/_data/icons/kaspaclassic.json new file mode 100644 index 000000000000..de197195fab0 --- /dev/null +++ b/_data/icons/kaspaclassic.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNMuNBwg9opKvsnrDaoYBP743LeddeooQupVYjpBXf7d7", + "width": 400, + "height": 400, + "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/kava.json b/_data/icons/kava.json index da3221f4c4e3..bfd9bb94cc75 100644 --- a/_data/icons/kava.json +++ b/_data/icons/kava.json @@ -1,6 +1,8 @@ [ { "url": "ipfs://QmdpRTk6oL1HRW9xC6cAc4Rnf9gs6zgdAcr4Z3HcLztusm", + "width": 1186, + "height": 360, "format": "svg" } ] diff --git a/_data/icons/kek.json b/_data/icons/kek.json new file mode 100644 index 000000000000..2beb30e87e67 --- /dev/null +++ b/_data/icons/kek.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNzwHAmaaQyuvKudrzGkrTT2GMshcmCmJ9FH8gG2mNJtM", + "width": 401, + "height": 401, + "format": "svg" + } +] 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/kinto.json b/_data/icons/kinto.json new file mode 100644 index 000000000000..9bf9fe788d97 --- /dev/null +++ b/_data/icons/kinto.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZw4zfR4Q8MD6MZRwkQrMeiiiu77AJffHdCMdemt4R2VM", + "width": 400, + "height": 400, + "format": "jpg" + } +] diff --git a/_data/icons/kite.json b/_data/icons/kite.json new file mode 100644 index 000000000000..de2d99145ee6 --- /dev/null +++ b/_data/icons/kite.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiaasav3psn6ac5ktfmod6m76zv4w2odl4cc2gmuo2jglrhypmczzq", + "width": 192, + "height": 192, + "format": "png" + } +] diff --git a/_data/icons/klyntar.json b/_data/icons/klyntar.json new file mode 100644 index 000000000000..24d9826e1f35 --- /dev/null +++ b/_data/icons/klyntar.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaDr9R6dKnZLsogRxojjq4dwXuXcudR8UeTZ8Nq553K4u", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/kol.json b/_data/icons/kol.json new file mode 100644 index 000000000000..eddc07e6117b --- /dev/null +++ b/_data/icons/kol.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTZFXhYJboYE9fbaeje12iTF3QPLn6xgyFgrDVe2isDBH", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/konet.json b/_data/icons/konet.json new file mode 100644 index 000000000000..76231e996fcf --- /dev/null +++ b/_data/icons/konet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSszu2AhLPgcp8SZYiBYCQiRVwb9ueqbnGbcTx9H9CJjZ", + "width": 1851, + "height": 1851, + "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/krest.json b/_data/icons/krest.json new file mode 100644 index 000000000000..9d15ba82e464 --- /dev/null +++ b/_data/icons/krest.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreid732273ib5at7krjdl2t7lteljlepwd3tvifqge7mu7g6naxavhe", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/kroma.json b/_data/icons/kroma.json new file mode 100644 index 000000000000..1372ee9544ac --- /dev/null +++ b/_data/icons/kroma.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVpV2WET6ZrqnvvPfE9hCwoE2y5ygbPuniuugpaRoxrho", + "width": 320, + "height": 320, + "format": "svg" + } +] diff --git a/_data/icons/kronobit.json b/_data/icons/kronobit.json new file mode 100644 index 000000000000..7ea79897302f --- /dev/null +++ b/_data/icons/kronobit.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZEuR4bJaZkC497qQnsxHv23pZFcXb9dTdaDPCPo2sj9Z", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/krown.json b/_data/icons/krown.json new file mode 100644 index 000000000000..87f8954770b9 --- /dev/null +++ b/_data/icons/krown.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibjmhund2og7qnbgiongrlswryqg6znxnwedczyaefu62rzwbvwji", + "width": 400, + "height": 400, + "format": "jpg" + } +] diff --git a/_data/icons/ktn.json b/_data/icons/ktn.json new file mode 100644 index 000000000000..2c33c8d4a120 --- /dev/null +++ b/_data/icons/ktn.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiezbj7itmbrkmbl6jr7crhodvfm3xmhclgb2nibdc3wqnzvkw3tvq", + "width": 1181, + "height": 1181, + "format": "png" + } +] diff --git a/_data/icons/ktnscan.json b/_data/icons/ktnscan.json new file mode 100644 index 000000000000..c0e76b089dc2 --- /dev/null +++ b/_data/icons/ktnscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeicqiiebsfryhqkfwnda6b7e76khpiviivzjbixnobndxcrb45v4mq", + "width": 1440, + "height": 1440, + "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/l3x.json b/_data/icons/l3x.json new file mode 100644 index 000000000000..b81bcf2ba491 --- /dev/null +++ b/_data/icons/l3x.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmf1cim2ZvkgszKiFtmZj3K1z2YgVY7A4VtLkWw8kQxijq", + "width": 100, + "height": 100, + "format": "png" + } +] diff --git a/_data/icons/lachain-io.json b/_data/icons/lachain-io.json new file mode 100644 index 000000000000..4d6a06b10fce --- /dev/null +++ b/_data/icons/lachain-io.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQxGA6rhuCQDXUueVcNvFRhMEWisyTmnF57TqL7h6k6cZ", + "width": 1280, + "height": 1280, + "format": "png" + } +] diff --git a/_data/icons/lachain-network.json b/_data/icons/lachain-network.json new file mode 100644 index 000000000000..4d6a06b10fce --- /dev/null +++ b/_data/icons/lachain-network.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQxGA6rhuCQDXUueVcNvFRhMEWisyTmnF57TqL7h6k6cZ", + "width": 1280, + "height": 1280, + "format": "png" + } +] diff --git a/_data/icons/lachain.json b/_data/icons/lachain.json deleted file mode 100644 index 68db3d411bc5..000000000000 --- a/_data/icons/lachain.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url": "ipfs://QmQxGA6rhuCQDXUueVcNvFRhMEWisyTmnF57TqL7h6k6cZ", - "width": 1280, - "height": 1280, - "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/lambda-chain.json b/_data/icons/lambda-chain.json new file mode 100644 index 000000000000..3dc75d6e9aed --- /dev/null +++ b/_data/icons/lambda-chain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXCWjWSTd6kJZKnH9aQRjgLdWRH9NTxU1wC21iBvoB4Hp", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/lambda.json b/_data/icons/lambda.json new file mode 100644 index 000000000000..52b6e5d1aea2 --- /dev/null +++ b/_data/icons/lambda.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWsoME6LCghQTpGYf7EnUojaDdYo7kfkWVjE6VvNtkjwy", + "width": 500, + "height": 500, + "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/laos.json b/_data/icons/laos.json new file mode 100644 index 000000000000..dd43bcce62ad --- /dev/null +++ b/_data/icons/laos.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZ4YYcvhcaeotMPaGXC5Vab7JFaVkka37V8TiTJpT7Mak", + "width": 586, + "height": 558, + "format": "png" + } +] 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/larissa.json b/_data/icons/larissa.json new file mode 100644 index 000000000000..24eb997f2ab0 --- /dev/null +++ b/_data/icons/larissa.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZTWoZ3LvivSinaJ4aSwqU8pCXw8oSZNnUCh4wwXxtAoQ", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/latestChain.json b/_data/icons/latestChain.json new file mode 100644 index 000000000000..9fefc2294ad6 --- /dev/null +++ b/_data/icons/latestChain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUU784i1ZHDNwgXvt9weZmq6YbHHkyXvuDS7r4iDzao72", + "width": 1115, + "height": 1242, + "format": "png" + } +] diff --git a/_data/icons/lavita.json b/_data/icons/lavita.json new file mode 100644 index 000000000000..4d9b2395f276 --- /dev/null +++ b/_data/icons/lavita.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfHbWCxwSjf8qmg4yw8jySHZijRXTPW8f5xd2T5sjbeCY", + "width": 1024, + "height": 1024, + "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/lbry.json b/_data/icons/lbry.json new file mode 100644 index 000000000000..fc42bac65b9e --- /dev/null +++ b/_data/icons/lbry.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUoSiFWaPTbVY6ZfJswzrM9jKuhfhXWwstRo49cVCWr8x", + "width": 400, + "height": 400, + "format": "jpg" + } +] 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/lightlink.json b/_data/icons/lightlink.json new file mode 100644 index 000000000000..b5deff48ca7e --- /dev/null +++ b/_data/icons/lightlink.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXMDj6iAFn2ducQcUU1M87PMMdT2jfyL3Tp3Lz5uUD5Lv", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/lila.json b/_data/icons/lila.json new file mode 100644 index 000000000000..6fa19677a6b0 --- /dev/null +++ b/_data/icons/lila.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiayuuzfpcgwjll4us4hquvpqa5gwq3lbiedv4qftmlwcxhcyjzzpq", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/linea.json b/_data/icons/linea.json new file mode 100644 index 000000000000..2ce401219bdc --- /dev/null +++ b/_data/icons/linea.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmURjritnHL7a8TwZgsFwp3f272DJmG5paaPtWDZ98QZwH", + "width": 97, + "height": 102, + "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/livingassets.json b/_data/icons/livingassets.json new file mode 100644 index 000000000000..ade986d7624f --- /dev/null +++ b/_data/icons/livingassets.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRidubY7BVwC737BQwGEttenP1npAXN7ZNryktE416uUW", + "width": 500, + "height": 500, + "format": "jpg" + } +] 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/lorenzo.json b/_data/icons/lorenzo.json new file mode 100644 index 000000000000..9345873b22f6 --- /dev/null +++ b/_data/icons/lorenzo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcwDCeZpzvRWBwtTgyEFv4tLJk6SFUb26rwsRXyJrhnP7", + "width": 288, + "height": 288, + "format": "png" + } +] diff --git a/_data/icons/lovely.json b/_data/icons/lovely.json new file mode 100644 index 000000000000..4c9119595439 --- /dev/null +++ b/_data/icons/lovely.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPB7uW7Wj8zWWdeuPnUHPJ5FhaiTL76tv4ZQ4oKWEpb1g", + "width": 897, + "height": 824, + "format": "png" + } +] diff --git a/_data/icons/lucid.json b/_data/icons/lucid.json new file mode 100644 index 000000000000..e881617a7e3f --- /dev/null +++ b/_data/icons/lucid.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeigxiyyxll4vst5cjjh732mr6zhsnligxubaldyiul2xdvvi6ibktu", + "width": 800, + "height": 800, + "format": "png" + } +] diff --git a/_data/icons/lucky.json b/_data/icons/lucky.json deleted file mode 100644 index 96f5edffd011..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/lukso-testnet.json b/_data/icons/lukso-testnet.json new file mode 100644 index 000000000000..34ac967efe9a --- /dev/null +++ b/_data/icons/lukso-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreih5ws7esaru5k4crjekr3d27jbjmikjtxwswu7r34yofyzqywiadi", + "width": 512, + "height": 512, + "format": "svg" + } +] diff --git a/_data/icons/lukso.json b/_data/icons/lukso.json new file mode 100644 index 000000000000..e1d57cc4bf8b --- /dev/null +++ b/_data/icons/lukso.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreid3bbfc4jgzcurebnn6vwjcp6gxwewqpjep4nouqkq4k4jlmsldpy", + "width": 512, + "height": 512, + "format": "svg" + } +] 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/lxp.json b/_data/icons/lxp.json new file mode 100644 index 000000000000..3df90bdf0ffe --- /dev/null +++ b/_data/icons/lxp.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZRg6LmyU4jJie3VPd7xacBf6qwkbsnHDgCgRkr7iwgKP", + "width": 1450, + "height": 1450, + "format": "png" + } +] diff --git a/_data/icons/lxpscan.json b/_data/icons/lxpscan.json new file mode 100644 index 000000000000..3df90bdf0ffe --- /dev/null +++ b/_data/icons/lxpscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZRg6LmyU4jJie3VPd7xacBf6qwkbsnHDgCgRkr7iwgKP", + "width": 1450, + "height": 1450, + "format": "png" + } +] diff --git a/_data/icons/lycanchain.json b/_data/icons/lycanchain.json new file mode 100644 index 000000000000..935473206dba --- /dev/null +++ b/_data/icons/lycanchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZsp3gnmHCJPw3qReiqV8P8Ct5Eidib4E5jDNfBUxYEgP", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/lyra.json b/_data/icons/lyra.json new file mode 100644 index 000000000000..b7f32809fa24 --- /dev/null +++ b/_data/icons/lyra.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifrvwcwcgs2luampufdbdgohuxue5rep3u4p4owmwskob7hzpcfdq", + "width": 2640, + "height": 2640, + "format": "png" + } +] diff --git a/_data/icons/maal-test.json b/_data/icons/maal-test.json new file mode 100644 index 000000000000..ab6d6d701a73 --- /dev/null +++ b/_data/icons/maal-test.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiexfqfe2x4impvwhra3xxa5eb25gv25zi3kkaoatdnld7wbxdzf2a", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/maal.json b/_data/icons/maal.json new file mode 100644 index 000000000000..ab6d6d701a73 --- /dev/null +++ b/_data/icons/maal.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiexfqfe2x4impvwhra3xxa5eb25gv25zi3kkaoatdnld7wbxdzf2a", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/magape.json b/_data/icons/magape.json new file mode 100644 index 000000000000..aabce4ebc042 --- /dev/null +++ b/_data/icons/magape.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPsxWMvnxnZ9dZcRJJMaE24o34dQsnsAMCJh3kVDrE1aB", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/mainnetz.json b/_data/icons/mainnetz.json new file mode 100644 index 000000000000..6886f4a1771f --- /dev/null +++ b/_data/icons/mainnetz.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmT5gJ5weBiLT3GoYuF5yRTRLdPLCVZ3tXznfqW7M8fxgG", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/mainnetzTestnet.json b/_data/icons/mainnetzTestnet.json new file mode 100644 index 000000000000..6886f4a1771f --- /dev/null +++ b/_data/icons/mainnetzTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmT5gJ5weBiLT3GoYuF5yRTRLdPLCVZ3tXznfqW7M8fxgG", + "width": 400, + "height": 400, + "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/manta.json b/_data/icons/manta.json new file mode 100644 index 000000000000..b1c4b6e6aaf1 --- /dev/null +++ b/_data/icons/manta.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTckcVTViRZ3NqT36MTt8AvgBSmudrbgU3pi8AaNtthoV", + "width": 834, + "height": 834, + "format": "png" + } +] diff --git a/_data/icons/mantis.json b/_data/icons/mantis.json new file mode 100644 index 000000000000..3581c2646552 --- /dev/null +++ b/_data/icons/mantis.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qma8dDhxSSVUyzV8Pu5bo252WaZEEikYFndRh7LVktvQEy", + "width": 512, + "height": 330, + "format": "png" + } +] diff --git a/_data/icons/mantle.json b/_data/icons/mantle.json new file mode 100644 index 000000000000..91306825e4cf --- /dev/null +++ b/_data/icons/mantle.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYddHh5zdceSsBU7uGfQvEHg6UUtAFbzQBBaePS4whx7o", + "width": 225, + "height": 225, + "format": "png" + } +] diff --git a/_data/icons/mantra.json b/_data/icons/mantra.json new file mode 100644 index 000000000000..25fb8b3a00cd --- /dev/null +++ b/_data/icons/mantra.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiftgt747chqsw67a3jyklr52op5rozqmi3qnp4edwjcf2gxabwdnu", + "width": 120, + "height": 120, + "format": "png" + } +] diff --git a/_data/icons/map.json b/_data/icons/map.json new file mode 100644 index 000000000000..f63248feede3 --- /dev/null +++ b/_data/icons/map.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcLdQ8gM4iHv3CCKA9HuxmzTxY4WhjWtepUVCc3dpzKxD", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/markrgo.json b/_data/icons/markrgo.json new file mode 100644 index 000000000000..f6fc82d79a83 --- /dev/null +++ b/_data/icons/markrgo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVMBTZVPawyLBD2B5VbG68dfWLfZ1CnB8V59xduBe2kwh", + "width": 84, + "height": 84, + "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/mas.json b/_data/icons/mas.json new file mode 100644 index 000000000000..9d0b2def957b --- /dev/null +++ b/_data/icons/mas.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZ9njQhhKkpJKGnoYy6XTuDtk5CYiDFUd8atqWthqUT3Q", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/masa.json b/_data/icons/masa.json new file mode 100644 index 000000000000..02d2b5568e05 --- /dev/null +++ b/_data/icons/masa.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmV4f9byENNduHgLi8o1pC1sBNe3QAege2NnFkqGkTKojT", + "width": 1000, + "height": 1000, + "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 new file mode 100644 index 000000000000..6d8850f29711 --- /dev/null +++ b/_data/icons/maxi.json @@ -0,0 +1,8 @@ +[ + { + "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/mch_verse.json b/_data/icons/mch_verse.json new file mode 100644 index 000000000000..5f31eeab80f6 --- /dev/null +++ b/_data/icons/mch_verse.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZZnwR1y6cU1sare2TQmwqkNDLXQxD4GdPrmHLmUoPtbU", + "width": 4000, + "height": 4000, + "format": "png" + } +] diff --git a/_data/icons/meer.json b/_data/icons/meer.json new file mode 100644 index 000000000000..0caba7215c0b --- /dev/null +++ b/_data/icons/meer.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/meld.json b/_data/icons/meld.json new file mode 100644 index 000000000000..3d572b1aa308 --- /dev/null +++ b/_data/icons/meld.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRhB4AbjDrhvwfSAQi2JvKirFiDWxzJvKEvG8S8AdDdED", + "width": 4000, + "height": 4000, + "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/memo.json b/_data/icons/memo.json new file mode 100644 index 000000000000..c78884b707bd --- /dev/null +++ b/_data/icons/memo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreig52paynhccs4o5ew6f7mk3xoqu2bqtitmfvlgnwarh2pm33gbdrq", + "width": 128, + "height": 128, + "format": "png" + } +] diff --git a/_data/icons/merklescan.json b/_data/icons/merklescan.json new file mode 100644 index 000000000000..6d6c31fb4b1b --- /dev/null +++ b/_data/icons/merklescan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZocJpCSLoQqoYFkF1kn7uKDuAiFRNTK8P5PoVeiigDBU", + "width": 114, + "height": 132, + "format": "png" + } +] diff --git a/_data/icons/merlin.json b/_data/icons/merlin.json new file mode 100644 index 000000000000..749271cbc83d --- /dev/null +++ b/_data/icons/merlin.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmULpMFUvKSmJT8sWXS3WDnTm4EacgRbsEynDenpxcfrAj", + "width": 400, + "height": 400, + "format": "jpg" + } +] 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/metachain.json b/_data/icons/metachain.json new file mode 100644 index 000000000000..46ac197723d8 --- /dev/null +++ b/_data/icons/metachain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUH2Ph2hW4upvevEAGCaSo7nd8nthqMx5RrHcrnNZ9Y3g", + "width": 512, + "height": 512, + "format": "svg" + } +] diff --git a/_data/icons/metad.json b/_data/icons/metad.json new file mode 100644 index 000000000000..4e83035f7fd6 --- /dev/null +++ b/_data/icons/metad.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZyxS9BfRGYWWDtvrV6qtthCYV4TwdjLoH2sF6MkiTYFf", + "width": 1280, + "height": 1280, + "format": "png" + } +] diff --git a/_data/icons/metadap.json b/_data/icons/metadap.json new file mode 100644 index 000000000000..169e02e15c98 --- /dev/null +++ b/_data/icons/metadap.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcCFUTStKKJKfzTwrjfMFoVaPCMsvAvWXRdDkYMvCkEs3", + "width": 800, + "height": 800, + "format": "svg" + } +] diff --git a/_data/icons/metal.json b/_data/icons/metal.json new file mode 100644 index 000000000000..bf19854ac77c --- /dev/null +++ b/_data/icons/metal.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmesm61n8vVVDEeZU7npz39aQYofes9vMfXYwWM4JehLFS", + "width": 250, + "height": 250, + "format": "svg" + } +] diff --git a/_data/icons/metao.json b/_data/icons/metao.json new file mode 100644 index 000000000000..0ffbe2d4848c --- /dev/null +++ b/_data/icons/metao.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTmo2QAtX5PbhX96vewnvH4Vc5H83Ft2DJGi6tAqTcFij", + "width": 1000, + "height": 981, + "format": "png" + } +] diff --git a/_data/icons/meverse.json b/_data/icons/meverse.json new file mode 100644 index 000000000000..9b390c7b56f1 --- /dev/null +++ b/_data/icons/meverse.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPuQ6gaCfUtNdRuaEDbdhot2m2KCy2ZHCJUvZXJAtdeyJ", + "width": 800, + "height": 800, + "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/miexs.json b/_data/icons/miexs.json new file mode 100644 index 000000000000..55f65956390a --- /dev/null +++ b/_data/icons/miexs.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreic6tcc6swh5kzljwqnswj6rlemcm7n6ra7xkgttwv5v3fv7ozj5zu", + "width": 1500, + "height": 1500, + "format": "png" + } +] diff --git a/_data/icons/milkomeda.json b/_data/icons/milkomeda.json index d1ecea13ae87..4bc9db45789c 100644 --- a/_data/icons/milkomeda.json +++ b/_data/icons/milkomeda.json @@ -5,4 +5,4 @@ "height": 367, "format": "svg" } -] \ No newline at end of file +] 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/mindchain.json b/_data/icons/mindchain.json new file mode 100644 index 000000000000..5a94d8900d6c --- /dev/null +++ b/_data/icons/mindchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmX2b4CzNyrNgy4ERBEteSS9MsuYNVYeq2sSMMiogGjbFP", + "width": 732, + "height": 732, + "format": "jpg" + } +] diff --git a/_data/icons/mint.json b/_data/icons/mint.json new file mode 100644 index 000000000000..2e80998886e2 --- /dev/null +++ b/_data/icons/mint.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVfsiKWkiYzxoq1j2Ri3yLYGvgHJBPybVEPsgyw5kqsMN", + "width": 96, + "height": 96, + "format": "png" + } +] diff --git a/_data/icons/mintTestnet.json b/_data/icons/mintTestnet.json new file mode 100644 index 000000000000..6021d59bcbd4 --- /dev/null +++ b/_data/icons/mintTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQsYisbKkCTKoKG2YSVs94UGuWWMiBspirH4Af4FyZeZz", + "width": 80, + "height": 80, + "format": "png" + } +] diff --git a/_data/icons/mintara.json b/_data/icons/mintara.json new file mode 100644 index 000000000000..3bdcb102e457 --- /dev/null +++ b/_data/icons/mintara.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeie7jzlzlpz7c3a3oh4x5joej23dj2qf3cexmchjyc72hv3fblcaja", + "width": 256, + "height": 256, + "format": "png" + } +] 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/miyou.json b/_data/icons/miyou.json new file mode 100644 index 000000000000..af6d5a01e6f9 --- /dev/null +++ b/_data/icons/miyou.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfP1QDK42B7EzYWsYN2PGfjkZUQtSjm1k5gNNT52ixsKL", + "width": 216, + "height": 216, + "format": "png" + } +] diff --git a/_data/icons/mmt.json b/_data/icons/mmt.json index d59afbd79099..c25cd350fc88 100644 --- a/_data/icons/mmt.json +++ b/_data/icons/mmt.json @@ -1,8 +1,8 @@ [ - { - "url": "ipfs://QmaF5gi2CbDKsJ2UchNkjBqmWjv8JEDP3vePBmxeUHiaK4", - "width": 250, - "height": 250, - "format": "png" - } + { + "url": "ipfs://QmaF5gi2CbDKsJ2UchNkjBqmWjv8JEDP3vePBmxeUHiaK4", + "width": 250, + "height": 250, + "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/mode.json b/_data/icons/mode.json new file mode 100644 index 000000000000..0df89680bb64 --- /dev/null +++ b/_data/icons/mode.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidi5y7afj5z4xrz7uz5rkg2mcsv2p2n4ui4g7q4k4ecdz65i2agou", + "width": 2160, + "height": 2160, + "format": "png" + } +] diff --git a/_data/icons/modeTestnet.json b/_data/icons/modeTestnet.json new file mode 100644 index 000000000000..0df89680bb64 --- /dev/null +++ b/_data/icons/modeTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidi5y7afj5z4xrz7uz5rkg2mcsv2p2n4ui4g7q4k4ecdz65i2agou", + "width": 2160, + "height": 2160, + "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/move.json b/_data/icons/move.json new file mode 100644 index 000000000000..7bfd6c3cf4da --- /dev/null +++ b/_data/icons/move.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWRAor77N6VyjJiQgtsEE7h9Bd1Q7vtRveTYv2A6wZyAT", + "width": 1546, + "height": 1546, + "format": "png" + } +] diff --git a/_data/icons/movo.json b/_data/icons/movo.json new file mode 100644 index 000000000000..a8206029060f --- /dev/null +++ b/_data/icons/movo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSQGKhhBpMTM7vYpGdgMTDFyzaAN3PGG5AnmWy7KQPdSn", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/movoscan.json b/_data/icons/movoscan.json new file mode 100644 index 000000000000..25cf175d5214 --- /dev/null +++ b/_data/icons/movoscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdFJMdnTvu4adiMERMP7B5ZZDwgiPmU3kU1qrUFdvHmUY", + "width": 800, + "height": 800, + "format": "png" + } +] diff --git a/_data/icons/msn.json b/_data/icons/msn.json new file mode 100644 index 000000000000..a59c77ed585c --- /dev/null +++ b/_data/icons/msn.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaQxfwpXYTomUd24PMx5tKjosupXcm99z1jL1XLq9LWBS", + "width": 468, + "height": 468, + "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/mthn.json b/_data/icons/mthn.json new file mode 100644 index 000000000000..8b9476642068 --- /dev/null +++ b/_data/icons/mthn.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreia5q26knsvxgkwxze7woepvsqat5n2hodokh4ozzphmhexqez5s34", + "width": 100, + "height": 100, + "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/multivac.json b/_data/icons/multivac.json index 7bedf920028a..80b198790630 100644 --- a/_data/icons/multivac.json +++ b/_data/icons/multivac.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmWb1gthhbzkiLdgcP8ccZprGbJVjFcW8Rn4uJjrw4jd3B", - "width":200, - "height":200, - "format":"png" - } + { + "url": "ipfs://QmWb1gthhbzkiLdgcP8ccZprGbJVjFcW8Rn4uJjrw4jd3B", + "width": 200, + "height": 200, + "format": "png" + } ] diff --git a/_data/icons/muster.json b/_data/icons/muster.json new file mode 100644 index 000000000000..ef22651d9bc2 --- /dev/null +++ b/_data/icons/muster.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiexm4aoscqo4d7dipicdgmfaemgzck2w7qhfp5mnoo7z2plcxleju", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/mxc.json b/_data/icons/mxc.json new file mode 100644 index 000000000000..b2947800c563 --- /dev/null +++ b/_data/icons/mxc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdGCthKA11K9kCZJdbTP5WPAyq1wiRZ3REn6KG58MrWaE", + "width": 159, + "height": 159, + "format": "png" + } +] diff --git a/_data/icons/mxczkevm.json b/_data/icons/mxczkevm.json new file mode 100644 index 000000000000..b2947800c563 --- /dev/null +++ b/_data/icons/mxczkevm.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdGCthKA11K9kCZJdbTP5WPAyq1wiRZ3REn6KG58MrWaE", + "width": 159, + "height": 159, + "format": "png" + } +] diff --git a/_data/icons/mythical.json b/_data/icons/mythical.json new file mode 100644 index 000000000000..8ba669d9bac5 --- /dev/null +++ b/_data/icons/mythical.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihru6cccfblrjz5bv36znq2l3h67u6xj5ivtc4bj5l6gzofbgtnb4", + "width": 350, + "height": 350, + "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/nahmii.json b/_data/icons/nahmii.json index 4f16625270ce..7cb5793b6786 100644 --- a/_data/icons/nahmii.json +++ b/_data/icons/nahmii.json @@ -5,4 +5,4 @@ "height": 384, "format": "png" } -] \ No newline at end of file +] 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/nanon.json b/_data/icons/nanon.json new file mode 100644 index 000000000000..e66dfdbc4e5f --- /dev/null +++ b/_data/icons/nanon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiduib2fygrwziqpy4yuqr6vvnd6elhahpigbcowcipjjhk6c3qiny", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/nativ3.json b/_data/icons/nativ3.json new file mode 100644 index 000000000000..ba19dd950dbf --- /dev/null +++ b/_data/icons/nativ3.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVzJDndPui6qBSeJWe5kMLA56C3KpVhqqqk9xvVKE1DGb", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/nautilus.json b/_data/icons/nautilus.json new file mode 100644 index 000000000000..275eac973e18 --- /dev/null +++ b/_data/icons/nautilus.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNutSgM7n6aJPPDiofe9Dm1epy1RcYTMvugukLUK2vmPM", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/near.json b/_data/icons/near.json new file mode 100644 index 000000000000..36988336c4b2 --- /dev/null +++ b/_data/icons/near.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiayxzdbu3e5ahri3ooieg6k6pjxrwkrkc2x5cnyadqeu5zbmaummq", + "width": 639, + "height": 639, + "format": "png" + } +] diff --git a/_data/icons/nebula.json b/_data/icons/nebula.json new file mode 100644 index 000000000000..a9ae1af90ffa --- /dev/null +++ b/_data/icons/nebula.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeic5eexvd34wfy4kuebcyu73qpkv3x57s54ebzjyhyjsmeuni5jwcm", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/nebulatestnet.json b/_data/icons/nebulatestnet.json index 714aa167a70e..88f0dff6fd9a 100644 --- a/_data/icons/nebulatestnet.json +++ b/_data/icons/nebulatestnet.json @@ -1,6 +1,6 @@ [ { - "url": "ipfs://QmNtr72zqg3eKGNyVVNgTNLddPm3nUCqggXYyE9vQxZDW2", + "url": "ipfs://QmeFaJtQqTKKuXQR7ysS53bLFPasFBcZw445cvYJ2HGeTo", "width": 512, "height": 512, "format": "png" diff --git a/_data/icons/neon.json b/_data/icons/neon.json index 0102561bd66e..d5e1c4e1444c 100644 --- a/_data/icons/neon.json +++ b/_data/icons/neon.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://Qmcxevb3v8PEvnvfYgcG3bCBuPhe5YAdsHeaufDChSSR3Q", - "width":512, - "height":512, - "format":"png" - } + { + "url": "ipfs://Qmcxevb3v8PEvnvfYgcG3bCBuPhe5YAdsHeaufDChSSR3Q", + "width": 512, + "height": 512, + "format": "png" + } ] diff --git a/_data/icons/neonlink.json b/_data/icons/neonlink.json new file mode 100644 index 000000000000..41e90083ec6c --- /dev/null +++ b/_data/icons/neonlink.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmX3hBv8WyvVfYjh1gmgDfJCpJBvKk4TYG9wFX9sC8WAjz", + "width": 512, + "height": 512, + "format": "svg" + } +] 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/netmind.json b/_data/icons/netmind.json new file mode 100644 index 000000000000..ce2eb41afef5 --- /dev/null +++ b/_data/icons/netmind.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQNipd6uen7sm7HZXGbqhcSVkUXxu3Tp6c3BoeFpvmywp", + "width": 500, + "height": 500, + "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/neura.json b/_data/icons/neura.json new file mode 100644 index 000000000000..2295fbe2fcd1 --- /dev/null +++ b/_data/icons/neura.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWdpK5WFKrosaCSpJRCvU7uXeKk2qVeCckTxh6Zw2JrK8", + "width": 600, + "height": 600, + "format": "png" + } +] diff --git a/_data/icons/nexaChain.json b/_data/icons/nexaChain.json new file mode 100644 index 000000000000..f0bd1eb0e046 --- /dev/null +++ b/_data/icons/nexaChain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreib2t2lcaoh6iixrx4gjjvepws5tlsszfla5hb36b3mgyq7clve35y", + "width": 192, + "height": 192, + "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/nexi.json b/_data/icons/nexi.json new file mode 100644 index 000000000000..2e26d099393b --- /dev/null +++ b/_data/icons/nexi.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeifxqd7zel2m237kq5enavnh2s6cshaavswigogyvae2wevxy5k2ti", + "width": 512, + "height": 578, + "format": "png" + } +] diff --git a/_data/icons/nexis.json b/_data/icons/nexis.json new file mode 100644 index 000000000000..c7de558681df --- /dev/null +++ b/_data/icons/nexis.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdJwWuMgbhoZhgFM4zWrZne6qs5ktcL1vBLKX12VGgALM", + "width": 1892, + "height": 1892, + "format": "png" + } +] diff --git a/_data/icons/nexpace.json b/_data/icons/nexpace.json new file mode 100644 index 000000000000..a14a6f16b096 --- /dev/null +++ b/_data/icons/nexpace.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiacfidhalwauvrdvlgtn2zs3ijdvqh56audxwoljxuaoqn3vmq5vq", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/ngl.json b/_data/icons/ngl.json new file mode 100644 index 000000000000..5afe2b9b5ef2 --- /dev/null +++ b/_data/icons/ngl.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUQiosuH8ib8aXSpYcJRTje9Lro9VeZyd4cNXrXGY5r8D", + "width": 100, + "height": 100, + "format": "svg" + } +] 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/nitrograph.json b/_data/icons/nitrograph.json new file mode 100644 index 000000000000..7cd591b1ab8a --- /dev/null +++ b/_data/icons/nitrograph.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiglhsp6p2jthyaballkavwmpxwgenktcid6zy5cusd5bg6qafw7wy", + "width": 474, + "height": 474, + "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/nmactest.json b/_data/icons/nmactest.json deleted file mode 100644 index 2e03bf4afa04..000000000000 --- a/_data/icons/nmactest.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url":"ipfs://QmPX6cfsBkVTDyo56kjzNDVDqFviP3BqL83QSP1V4UmvgK", - "width":174, - "height":174, - "format":"png" - } -] diff --git a/_data/icons/nollie.json b/_data/icons/nollie.json new file mode 100644 index 000000000000..ac25779cd64c --- /dev/null +++ b/_data/icons/nollie.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdofX1W8QFt4TSDaq2wyPvYuUba9LabgD1MYcn3Hezu8h", + "width": 600, + "height": 875, + "format": "png" + } +] diff --git a/_data/icons/nom.json b/_data/icons/nom.json new file mode 100644 index 000000000000..3c33b19ac105 --- /dev/null +++ b/_data/icons/nom.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVfJBGe7JpKJhG8hrSMU42RxhCSQ3ga3NSArA9vEFqF4C", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/nordek.json b/_data/icons/nordek.json new file mode 100644 index 000000000000..3758b5635a7e --- /dev/null +++ b/_data/icons/nordek.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreie45fcr2hllmej2elwqpdxmiaycxmz25tl5ymraduhtefqndhlm4q", + "width": 222, + "height": 306, + "format": "png" + } +] diff --git a/_data/icons/novachain.json b/_data/icons/novachain.json new file mode 100644 index 000000000000..3fcff03f43fd --- /dev/null +++ b/_data/icons/novachain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYqvnW2jwPEKUv8BdaV4sbL8Audcwosat6SPn4GqYtKxc", + "width": 225, + "height": 225, + "format": "png" + } +] diff --git a/_data/icons/novanetwork.json b/_data/icons/novanetwork.json index 714aa167a70e..7dd83a92a11b 100644 --- a/_data/icons/novanetwork.json +++ b/_data/icons/novanetwork.json @@ -1,6 +1,6 @@ [ { - "url": "ipfs://QmNtr72zqg3eKGNyVVNgTNLddPm3nUCqggXYyE9vQxZDW2", + "url": "ipfs://QmTTamJ55YGQwMboq4aqf3JjTEy5WDtjo4GBRQ5VdsWA6U", "width": 512, "height": 512, "format": "png" diff --git a/_data/icons/nowchain.json b/_data/icons/nowchain.json new file mode 100644 index 000000000000..d9268e690137 --- /dev/null +++ b/_data/icons/nowchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSUzhRGzMyMyGwBcE3ooZ5jvHKyJ1FjVjh5SfoGHG36MX", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/ntity.json b/_data/icons/ntity.json index 4dba513a0ba1..ffe77705031f 100644 --- a/_data/icons/ntity.json +++ b/_data/icons/ntity.json @@ -1,8 +1,8 @@ [ - { - "url": "ipfs://QmSW2YhCvMpnwtPGTJAuEK2QgyWfFjmnwcrapUg6kqFsPf", - "width": 1000, - "height": 1628, - "format": "svg" - } -] \ No newline at end of file + { + "url": "ipfs://bafkreicdp3rj3zxltqurayvc7d7z2fkdg3bq357vfbi4ck4nhuveg6sela", + "width": 1160, + "height": 1160, + "format": "png" + } +] diff --git a/_data/icons/num.json b/_data/icons/num.json new file mode 100644 index 000000000000..b03698bc03ee --- /dev/null +++ b/_data/icons/num.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreie3ba6ofosjqqiya6empkyw6u5xdrtcfzi2evvyt4u6utzeiezyhi", + "width": 1500, + "height": 1500, + "format": "png" + } +] diff --git a/_data/icons/nume.json b/_data/icons/nume.json new file mode 100644 index 000000000000..e22cfb87152b --- /dev/null +++ b/_data/icons/nume.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNbp1K6vKKFYh7bWeWtjBqKgdH88suDVbztP5CYU3pYNG", + "width": 1280, + "height": 1280, + "format": "png" + } +] diff --git a/_data/icons/nyancat.json b/_data/icons/nyancat.json new file mode 100644 index 000000000000..3bab1ee3b883 --- /dev/null +++ b/_data/icons/nyancat.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRaSx7AX1VDgcqjwLgSDP4WZmKBHPdHhbjkcEEXPA2Fnc", + "width": 1062, + "height": 822, + "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/oasys.json b/_data/icons/oasys.json new file mode 100644 index 000000000000..155ca513fbb1 --- /dev/null +++ b/_data/icons/oasys.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVjT18MJ7S965w5oTce5D3KPbzfoGGaKaNDKJcfGfSNWm", + "width": 733, + "height": 733, + "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/octaspace.json b/_data/icons/octaspace.json new file mode 100644 index 000000000000..9781d2ba2a9c --- /dev/null +++ b/_data/icons/octaspace.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVhezQHkqSZ5Tvtsw18giA1yBjV1URSsBQ7HenUh6p6oC", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/odyssey.json b/_data/icons/odyssey.json new file mode 100644 index 000000000000..a10335f8f0c3 --- /dev/null +++ b/_data/icons/odyssey.json @@ -0,0 +1,8 @@ +[ + { + "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/oescan.json b/_data/icons/oescan.json new file mode 100644 index 000000000000..47d8882f830f --- /dev/null +++ b/_data/icons/oescan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdoQUfYqtkWMfjtoPv2KWDY4MxDDSsyWgwXtCx6jfkezz", + "width": 155, + "height": 177, + "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/oex.json b/_data/icons/oex.json new file mode 100644 index 000000000000..9f7057107df6 --- /dev/null +++ b/_data/icons/oex.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidnu6p6vmmplerzvkboq7fz73ygkomzpnnokuxstrqv2fvxgmgg7i", + "width": 512, + "height": 512, + "format": "png" + } +] 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/oho.json b/_data/icons/oho.json new file mode 100644 index 000000000000..9a94650ff872 --- /dev/null +++ b/_data/icons/oho.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZt75xixnEtFzqHTrJa8kJkV4cTXmUZqeMeHM8BcvomQc", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/ohoscan.json b/_data/icons/ohoscan.json new file mode 100644 index 000000000000..9a94650ff872 --- /dev/null +++ b/_data/icons/ohoscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZt75xixnEtFzqHTrJa8kJkV4cTXmUZqeMeHM8BcvomQc", + "width": 512, + "height": 512, + "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/omaxchain.json b/_data/icons/omaxchain.json new file mode 100644 index 000000000000..5b28480f94dc --- /dev/null +++ b/_data/icons/omaxchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmd7omPxrehSuxHHPMYd5Nr7nfrtjKdRJQEhDLfTb87w8G", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/omaxray.json b/_data/icons/omaxray.json new file mode 100644 index 000000000000..5b28480f94dc --- /dev/null +++ b/_data/icons/omaxray.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmd7omPxrehSuxHHPMYd5Nr7nfrtjKdRJQEhDLfTb87w8G", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/omlira.json b/_data/icons/omlira.json index 3c09e8d32d65..980dca8d44de 100644 --- a/_data/icons/omlira.json +++ b/_data/icons/omlira.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmQtEHaejiDbmiCvbBYw9jNQv3DLK5XHCQwLRfnLNpdN5j", - "width":256, - "height":256, - "format":"png" - } + { + "url": "ipfs://QmQtEHaejiDbmiCvbBYw9jNQv3DLK5XHCQwLRfnLNpdN5j", + "width": 256, + "height": 256, + "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/omnia.json b/_data/icons/omnia.json new file mode 100644 index 000000000000..7b1b57f48b33 --- /dev/null +++ b/_data/icons/omnia.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdNQMFxcjB9PAP1LZVqaQmyppV5QGTqXXmbBeQyaTUpMM", + "width": 192, + "height": 192, + "format": "png" + } +] diff --git a/_data/icons/oneWorldChainIcon.json b/_data/icons/oneWorldChainIcon.json new file mode 100644 index 000000000000..ec67bf1d0473 --- /dev/null +++ b/_data/icons/oneWorldChainIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPmZ6vgtdMG7jttVZQUobF96Sva1noi5Fsi28V1Eck6eC", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/oneledger.json b/_data/icons/oneledger.json index dd6f0d1ebb9b..f2d0fa890f99 100644 --- a/_data/icons/oneledger.json +++ b/_data/icons/oneledger.json @@ -5,4 +5,4 @@ "height": 225, "format": "png" } -] \ No newline at end of file +] 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/onigiri.json b/_data/icons/onigiri.json new file mode 100644 index 000000000000..9c6a49f96c3d --- /dev/null +++ b/_data/icons/onigiri.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreieenivbkpmaxslvvvaybi53hynnarng4ek37xhtf5euvsyunvhbai", + "width": 256, + "height": 256, + "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/ontology.json b/_data/icons/ontology.json new file mode 100644 index 000000000000..4e39468d8665 --- /dev/null +++ b/_data/icons/ontology.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigmvn6spvbiirtutowpq6jmetevbxoof5plzixjoerbeswy4htfb4", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/onus.json b/_data/icons/onus.json new file mode 100644 index 000000000000..e2f219d7ca55 --- /dev/null +++ b/_data/icons/onus.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiec34ik3glrm5jrzafdytvu4kxdsrxhqmagbe27fytdcuzkhoooay", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/oort.json b/_data/icons/oort.json new file mode 100644 index 000000000000..d08abae4792e --- /dev/null +++ b/_data/icons/oort.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidrbvklkb52sgmg7cmy42fhf7vqpig7qj7bnrq24ijdwywkzr2tfy", + "width": 1440, + "height": 1440, + "format": "png" + } +] diff --git a/_data/icons/opal.json b/_data/icons/opal.json new file mode 100644 index 000000000000..ecce785ab1da --- /dev/null +++ b/_data/icons/opal.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYJDpmWyjDa3H6BxweFmQXk4fU8b1GU7M9EqYcaUNvXzc", + "width": 48, + "height": 48, + "format": "svg" + } +] 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/openpiece.json b/_data/icons/openpiece.json index 0db62b4619dd..0fc3644ced41 100644 --- a/_data/icons/openpiece.json +++ b/_data/icons/openpiece.json @@ -1,8 +1,8 @@ [ - { - "url": "ipfs://QmVTahJkdSH3HPYsJMK2GmqfWZjLyxE7cXy1aHEnHU3vp2", - "width": 250, - "height": 250, - "format": "png" - } + { + "url": "ipfs://QmVTahJkdSH3HPYsJMK2GmqfWZjLyxE7cXy1aHEnHU3vp2", + "width": 250, + "height": 250, + "format": "png" + } ] diff --git a/_data/icons/opside-new.json b/_data/icons/opside-new.json new file mode 100644 index 000000000000..750f9dfbf439 --- /dev/null +++ b/_data/icons/opside-new.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZnE2ygPL2ZGuzHGvFCHmrqxwdurrhz3K1yPnwLzKbgay", + "width": 401, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/opside.json b/_data/icons/opside.json new file mode 100644 index 000000000000..ff744c154740 --- /dev/null +++ b/_data/icons/opside.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeCyZeibUoHNoYGzy1GkzH2uhxyRHKvH51PdaUMer4VTo", + "width": 591, + "height": 591, + "format": "png" + } +] diff --git a/_data/icons/optopia.json b/_data/icons/optopia.json new file mode 100644 index 000000000000..13362b5e2e75 --- /dev/null +++ b/_data/icons/optopia.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreid3xv3zkuo2cygwt7vwm5c2aqjbyhy5qxn7xkc66ajhu2mjh2ybki", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/optrust.json b/_data/icons/optrust.json new file mode 100644 index 000000000000..4fc74896e210 --- /dev/null +++ b/_data/icons/optrust.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYktPMo4tdQhMA9nRJBVckjzHcFLbpHbTVNSpGUUPEP8J", + "width": 500, + "height": 500, + "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/orderly.json b/_data/icons/orderly.json new file mode 100644 index 000000000000..5d66c63b3f1f --- /dev/null +++ b/_data/icons/orderly.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSpwp3RAVhZsErAQrCQxEmjnGqJQMigarzZbfqr9Ktakb", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/orderlyTestnet.json b/_data/icons/orderlyTestnet.json new file mode 100644 index 000000000000..5d66c63b3f1f --- /dev/null +++ b/_data/icons/orderlyTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSpwp3RAVhZsErAQrCQxEmjnGqJQMigarzZbfqr9Ktakb", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/ore.json b/_data/icons/ore.json new file mode 100644 index 000000000000..ab17e5533d56 --- /dev/null +++ b/_data/icons/ore.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXszYAtQxaFCG3s9vGHoLJnqxGJw2wTKNbruTJ8iDXU7K", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/origin.json b/_data/icons/origin.json new file mode 100644 index 000000000000..39bd2d3f8cb6 --- /dev/null +++ b/_data/icons/origin.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRGJ6PqYHDTWuUQ6xfnK8S82NzRXiMjTnSGat9qtLuaLP", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/orl.json b/_data/icons/orl.json new file mode 100644 index 000000000000..85427228b5ac --- /dev/null +++ b/_data/icons/orl.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNsuuBBTHErnuFDcdyzaY8CKoVJtobsLJx2WQjaPjcp7g", + "width": 512, + "height": 528, + "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/ozonechain.json b/_data/icons/ozonechain.json new file mode 100644 index 000000000000..22bc33ce7154 --- /dev/null +++ b/_data/icons/ozonechain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbM4weV8Bk6c9yNhosYntkVw39SNZtCHYGgWyXTxkevZ8", + "width": 1600, + "height": 1600, + "format": "png" + } +] diff --git a/_data/icons/p12.json b/_data/icons/p12.json new file mode 100644 index 000000000000..e2b847b4b19a --- /dev/null +++ b/_data/icons/p12.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreieiro4imoujeewc4r4thf5hxj47l56j2iwuz6d6pdj6ieb6ub3h7e", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/palm.json b/_data/icons/palm.json index 8b4c14b0eb80..fad10fe6da28 100644 --- a/_data/icons/palm.json +++ b/_data/icons/palm.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmX6h8xm4em77oNpFRtmAqrZ734MH4VGCC68dEKHUfdfPs", - "width": 1080, - "height": 1080, + "url": "ipfs://bafkreihifvvbq6xzviygveivayogqiotdtpjvilu27bgqobduqemzeq7o4", + "width": 72, + "height": 72, "format": "svg" } ] diff --git a/_data/icons/pando.json b/_data/icons/pando.json new file mode 100644 index 000000000000..ee608cf5fad4 --- /dev/null +++ b/_data/icons/pando.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNduBtT5BNGDw7DjRwDvaZBb6gjxf46WD7BYhn4gauGc9", + "width": 1000, + "height": 1628, + "format": "png" + } +] diff --git a/_data/icons/parexmain.json b/_data/icons/parexmain.json new file mode 100644 index 000000000000..5757d7aa552b --- /dev/null +++ b/_data/icons/parexmain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSPD3QcjFJL2KpYRnNDxa8Xg5rcSgPugG9kcBBNeavVKi", + "width": 128, + "height": 128, + "format": "png" + } +] diff --git a/_data/icons/patex.json b/_data/icons/patex.json new file mode 100644 index 000000000000..e170d625a860 --- /dev/null +++ b/_data/icons/patex.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTNTSNn3t5WpSEzQmUYbkxYkBKaH6QahyVdVrRKyPHChr", + "width": 800, + "height": 800, + "format": "png" + } +] diff --git a/_data/icons/paxb.json b/_data/icons/paxb.json new file mode 100644 index 000000000000..769ae29dda8b --- /dev/null +++ b/_data/icons/paxb.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSP66CHynXpMYkjV28uLjTR4kjuoJyy92igYYpvLoqHtG", + "width": 300, + "height": 300, + "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/pda.json b/_data/icons/pda.json new file mode 100644 index 000000000000..b2e7002f736f --- /dev/null +++ b/_data/icons/pda.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmY6AkNb5TYrDbM5M7YpSM8X3aYn2LcPXeLXz6F7WoB27r", + "width": 512, + "height": 512, + "format": "png" + } +] 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/pego.json b/_data/icons/pego.json new file mode 100644 index 000000000000..15a06f3abda6 --- /dev/null +++ b/_data/icons/pego.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVf1afskRHuZjFSLCZH8397KrVNAoYgyAePX9VMBrPVtx", + "width": 246, + "height": 247, + "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/pepechain.json b/_data/icons/pepechain.json new file mode 100644 index 000000000000..03bc665fe74b --- /dev/null +++ b/_data/icons/pepechain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibjsc3gww3moti27za2hpyq552aevux3yv5y2ntdklksyr4v4uavy", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/pepenetwork.json b/_data/icons/pepenetwork.json new file mode 100644 index 000000000000..364edca430ac --- /dev/null +++ b/_data/icons/pepenetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPX3uipdwd195z1MJff7uj8hpZdSuVvM5z47eiz2o7Gz5", + "width": 960, + "height": 944, + "format": "png" + } +] diff --git a/_data/icons/peperium.json b/_data/icons/peperium.json new file mode 100644 index 000000000000..3af8ce7178c5 --- /dev/null +++ b/_data/icons/peperium.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmag2hr5DQghRzKPN3oUFBkjWzqd5CndQzZeb5LfoiMCXf", + "width": 160, + "height": 160, + "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/pf.json b/_data/icons/pf.json new file mode 100644 index 000000000000..388c5dcbbaa2 --- /dev/null +++ b/_data/icons/pf.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeMa6aw3ebUKJdGgbzDgcVtggzp7cQdfSrmzMYmnt5ywc", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/phi.json b/_data/icons/phi.json index b95c63091dd2..2c9076856886 100644 --- a/_data/icons/phi.json +++ b/_data/icons/phi.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://bafybeideqgs54hqx23deytbf4ljbjxgt7tyqkr5b6o5y2yglwjjjf6c4uq", - "width":512, - "height":512, - "format":"png" - } + { + "url": "ipfs://bafkreid6pm3mic7izp3a6zlfwhhe7etd276bjfsq2xash6a4s2vmcdf65a", + "width": 512, + "height": 512, + "format": "png" + } ] 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/phoenix.json b/_data/icons/phoenix.json index dc34bb6b8c32..6a24ceff5d34 100644 --- a/_data/icons/phoenix.json +++ b/_data/icons/phoenix.json @@ -1,8 +1,8 @@ [ - { - "url": "ipfs://QmYiLMeKDXMSNuQmtxNdxm53xR588pcRXMf7zuiZLjQnc6", - "width": 1501, - "height": 1501, - "format": "png" - } -] \ No newline at end of file + { + "url": "ipfs://QmYiLMeKDXMSNuQmtxNdxm53xR588pcRXMf7zuiZLjQnc6", + "width": 1501, + "height": 1501, + "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/planq.json b/_data/icons/planq.json new file mode 100644 index 000000000000..b98fd0a094d6 --- /dev/null +++ b/_data/icons/planq.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWEy9xK5BoqxPuVs7T48WM4exJrxzkEFt45iHcxWqUy8D", + "width": 256, + "height": 256, + "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/platon.json b/_data/icons/platon.json index 70f478ccf4f5..609d99c11c17 100644 --- a/_data/icons/platon.json +++ b/_data/icons/platon.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmT7PSXBiVBma6E15hNkivmstqLu3JSnG1jXN5pTmcCGRC", - "width":200, - "height":200, - "format":"png" - } -] \ No newline at end of file + { + "url": "ipfs://QmT7PSXBiVBma6E15hNkivmstqLu3JSnG1jXN5pTmcCGRC", + "width": 180, + "height": 180, + "format": "png" + } +] diff --git a/_data/icons/playa3ull.json b/_data/icons/playa3ull.json new file mode 100644 index 000000000000..b282ec8ea347 --- /dev/null +++ b/_data/icons/playa3ull.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreib62bv2d65d7nidojgpkgatrt7smee2l4ov6i6ozqhpfaqsonxku4", + "width": 512, + "height": 443, + "format": "png" + } +] diff --git a/_data/icons/playfair.json b/_data/icons/playfair.json new file mode 100644 index 000000000000..242bf8c6e7b5 --- /dev/null +++ b/_data/icons/playfair.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNvoUp2RWiWQzHUKrZ7SnPzwF3FbCNd3jSdpGJhQdH1y5", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/plexchain.json b/_data/icons/plexchain.json new file mode 100644 index 000000000000..45e46689c729 --- /dev/null +++ b/_data/icons/plexchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcXzfMNSQ7SZzKemNquVoXyG5ergdqCGeLWjRYETGBTUM", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/plinga.json b/_data/icons/plinga.json new file mode 100644 index 000000000000..18d555404c07 --- /dev/null +++ b/_data/icons/plinga.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeibpvlod5nyev6wyuvp6pbestmgvru3ovbadsul32odpno26xwld6y", + "width": 1039, + "height": 1022, + "format": "svg" + } +] diff --git a/_data/icons/plume.json b/_data/icons/plume.json new file mode 100644 index 000000000000..5dc99b4baaee --- /dev/null +++ b/_data/icons/plume.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmT7dJKK2VXMtF9mJ6EfMTJXBntJyVvZcA8beLA2RCFbsW", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/plyr.json b/_data/icons/plyr.json new file mode 100644 index 000000000000..5d737fe44977 --- /dev/null +++ b/_data/icons/plyr.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVhG7xeTc78ibQunQ5sBJ4533r9FDM2xUCQKV72DPd1ux", + "width": 256, + "height": 256, + "format": "svg" + } +] 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/pnet.json b/_data/icons/pnet.json new file mode 100644 index 000000000000..cd92d46978ef --- /dev/null +++ b/_data/icons/pnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRiAUu3xV5uiX6Nk1iXD5w6qjki5ugGFETRVavzJ2h5QF", + "width": 370, + "height": 320, + "format": "png" + } +] diff --git a/_data/icons/pocr.json b/_data/icons/pocr.json new file mode 100644 index 000000000000..b717da2012da --- /dev/null +++ b/_data/icons/pocr.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRLwpq47tyEd3rfK4tKRhbTvyb3fc7PCutExnL1XAb37A", + "width": 334, + "height": 360, + "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/polis.json b/_data/icons/polis.json index 1857fb97e000..3e6160a6698f 100644 --- a/_data/icons/polis.json +++ b/_data/icons/polis.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmagWrtyApex28H2QeXcs3jJ2F7p2K7eESz3cDbHdQ3pjG", - "width":1050, - "height":1050, - "format":"png" - } + { + "url": "ipfs://QmagWrtyApex28H2QeXcs3jJ2F7p2K7eESz3cDbHdQ3pjG", + "width": 1050, + "height": 1050, + "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/polygon.json b/_data/icons/polygon.json new file mode 100644 index 000000000000..d33b52a9546d --- /dev/null +++ b/_data/icons/polygon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRNqgazYuxUa5WdddFPftTWiP3KwzBMgV9Z19QWnLMETc", + "width": 2000, + "height": 2000, + "format": "png" + } +] diff --git a/_data/icons/polyjuice.json b/_data/icons/polyjuice.json index e97e8fadf149..01f21cbe88a5 100644 --- a/_data/icons/polyjuice.json +++ b/_data/icons/polyjuice.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmZ5gFWUxLFqqT3DkefYfRsVksMwMTc5VvBjkbHpeFMsNe", - "width":1000, - "height":1628, - "format":"png" - } + { + "url": "ipfs://QmZ5gFWUxLFqqT3DkefYfRsVksMwMTc5VvBjkbHpeFMsNe", + "width": 1001, + "height": 1629, + "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/pom.json b/_data/icons/pom.json new file mode 100644 index 000000000000..02d3f5f02959 --- /dev/null +++ b/_data/icons/pom.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmePhfibWz9jnGUqF9Rven4x734br1h3LxrChYTEjbbQvo", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/poodlIcon.json b/_data/icons/poodlIcon.json new file mode 100644 index 000000000000..5243cf395830 --- /dev/null +++ b/_data/icons/poodlIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXfBFHHb5kJGQ3dMLnhDhfFBsgAvm9U72jBSYcfmRHL2p", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/pop-boss.json b/_data/icons/pop-boss.json new file mode 100644 index 000000000000..254574da3d71 --- /dev/null +++ b/_data/icons/pop-boss.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmW3NPDe6WRqucrWbe8pg3GqSMPi8V6Qa1fAiaQuqjxSJC", + "width": 1256, + "height": 1256, + "format": "png" + } +] 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/popcateum.json b/_data/icons/popcateum.json deleted file mode 100644 index 56eb135a71bc..000000000000 --- a/_data/icons/popcateum.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url": "ipfs://QmQfFqmCxRU1ZWcBC2A2JX2Ejh5ar6GHAj6mKhTYQgLpjV", - "width": 2600, - "height": 2600, - "format": "png" - } -] \ No newline at end of file diff --git a/_data/icons/potos.json b/_data/icons/potos.json new file mode 100644 index 000000000000..c33412a19f1d --- /dev/null +++ b/_data/icons/potos.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreididbxq2gx64fctdjfdyu727hmjauoqpqqtdbwqg5ge4yu2mcrw7a", + "width": 1160, + "height": 1160, + "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/powergold.json b/_data/icons/powergold.json new file mode 100644 index 000000000000..7180f51e9576 --- /dev/null +++ b/_data/icons/powergold.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreib2sabb6vgfoskobp2wdr6if7v6s34f2xwjecfceui6qhjudmu4u4", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/prb.json b/_data/icons/prb.json index 423e37a527ac..5fd54b01c3ff 100644 --- a/_data/icons/prb.json +++ b/_data/icons/prb.json @@ -1,8 +1,8 @@ [ { - "url":"ipfs://QmVgc77jYo2zrxQjhYwT4KzvSrSZ1DBJraJVX57xAvP8MD", - "width":2362, - "height":2362, - "format":"png" + "url": "ipfs://QmVgc77jYo2zrxQjhYwT4KzvSrSZ1DBJraJVX57xAvP8MD", + "width": 2362, + "height": 2362, + "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/prmIcon.json b/_data/icons/prmIcon.json new file mode 100644 index 000000000000..5fb58c41026e --- /dev/null +++ b/_data/icons/prmIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmckkDRkuCQWbvhpKGsqa8ajuQvf3W5dekzw5qpiPC6shk", + "width": 1220, + "height": 1220, + "format": "png" + } +] 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/pruv.json b/_data/icons/pruv.json new file mode 100644 index 000000000000..fed3794811eb --- /dev/null +++ b/_data/icons/pruv.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSFDZ7UvHHr6BFfggAUNfibzKRHW7vaTHgoE326uUDgXj", + "width": 1219, + "height": 651, + "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/publicGoodsNetwork.json b/_data/icons/publicGoodsNetwork.json new file mode 100644 index 000000000000..7cc1ded40d95 --- /dev/null +++ b/_data/icons/publicGoodsNetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUVJ7MLCEAfq3pHVPFLscqRMiyAY5biVgTkeDQCmAhHNS", + "width": 574, + "height": 574, + "format": "svg" + } +] diff --git a/_data/icons/pulsechain.json b/_data/icons/pulsechain.json new file mode 100644 index 000000000000..ad9c570dba7a --- /dev/null +++ b/_data/icons/pulsechain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmckj9B9F3jWDk9bv9HwoPmfjrx2Ju8J2BQSNoPFdYGduj", + "width": 433, + "height": 402, + "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/pwr.json b/_data/icons/pwr.json new file mode 100644 index 000000000000..b3dcd2d9de23 --- /dev/null +++ b/_data/icons/pwr.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRhQG9TZrXDdbQeTzBmjg3pqgwaD5TKVZj8k4kaz8AoZx", + "width": 1021, + "height": 1021, + "format": "png" + } +] 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/q.json b/_data/icons/q.json new file mode 100644 index 000000000000..9b66546c0c66 --- /dev/null +++ b/_data/icons/q.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQUQKe8VEtSthhgXnJ3EmEz94YhpVCpUDZAiU9KYyNLya", + "width": 585, + "height": 603, + "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/qie.json b/_data/icons/qie.json new file mode 100644 index 000000000000..acad5b394884 --- /dev/null +++ b/_data/icons/qie.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRoNxCti6cHrPgZ48YQVSMg9g6ympfXuV8kGQJXrbbmed", + "width": 600, + "height": 600, + "format": "png" + } +] diff --git a/_data/icons/qnet.json b/_data/icons/qnet.json new file mode 100644 index 000000000000..44eadf9994db --- /dev/null +++ b/_data/icons/qnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibwywok67uewqbtqdzgr7nlk3lvvg7hxmbgwtn7kdwxe34useucvm", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/qom.json b/_data/icons/qom.json new file mode 100644 index 000000000000..f9911626e59f --- /dev/null +++ b/_data/icons/qom.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRc1kJ7AgcDL1BSoMYudatWHTrz27K6WNTwGifQb5V17D", + "width": 518, + "height": 518, + "format": "png" + } +] diff --git a/_data/icons/quadrans.json b/_data/icons/quadrans.json index f15a3776172e..5a5ace426109 100644 --- a/_data/icons/quadrans.json +++ b/_data/icons/quadrans.json @@ -1,8 +1,8 @@ [ - { - "url": "ipfs://QmZFiYHnE4TrezPz8wSap9nMxG6m98w4fv7ataj2TfLNck", - "width": 1024, - "height": 1024, - "format": "png" - } -] \ No newline at end of file + { + "url": "ipfs://QmZFiYHnE4TrezPz8wSap9nMxG6m98w4fv7ataj2TfLNck", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/quai.json b/_data/icons/quai.json new file mode 100644 index 000000000000..10790f3ffa04 --- /dev/null +++ b/_data/icons/quai.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreih5hekf3lfvpbjcjlswylc6r3a4nbkogeesrf2pdtrhrwuy4a76cm", + "width": 500, + "height": 500, + "format": "svg" + } +] diff --git a/_data/icons/quantum.json b/_data/icons/quantum.json new file mode 100644 index 000000000000..17eb10e6b352 --- /dev/null +++ b/_data/icons/quantum.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeKQVv2QneHaaggw2NfpZ7DGMdjVhPywTdse5RzCs4oGn", + "width": 232, + "height": 232, + "format": "png" + } +] diff --git a/_data/icons/quarix.json b/_data/icons/quarix.json new file mode 100644 index 000000000000..35571b66366f --- /dev/null +++ b/_data/icons/quarix.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTw8TyeeNhUFWrck2WCiN17MaHRt5qzRBtaAvmz6L7qq7", + "width": 669, + "height": 587, + "format": "png" + } +] diff --git a/_data/icons/quartz.json b/_data/icons/quartz.json new file mode 100644 index 000000000000..ebfe697892aa --- /dev/null +++ b/_data/icons/quartz.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaGPdccULQEFcCGxzstnmE8THfac2kSiGwvWRAiaRq4dp", + "width": 48, + "height": 48, + "format": "svg" + } +] 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/r0ar.json b/_data/icons/r0ar.json new file mode 100644 index 000000000000..3b4e4405c43e --- /dev/null +++ b/_data/icons/r0ar.json @@ -0,0 +1,14 @@ +[ + { + "url": "ipfs://bafkreicz6422v574rrwrbmvllvrts6nyv4cwcpxxrrokrsr6ekjuky3c6i", + "width": 512, + "height": 512, + "format": "png" + }, + { + "url": "ipfs://bafkreibqk63qcgukyunft3h2qxh56cg6mtvzlrnxw4mbpxgahdk2litxqi", + "width": 512, + "height": 512, + "format": "svg" + } +] 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/raba.json b/_data/icons/raba.json new file mode 100644 index 000000000000..1c460fa5692b --- /dev/null +++ b/_data/icons/raba.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmatP9qMHEYoXqRDyHMTyjYRQa6j6Gk7pmv1QLxQkvpGRP", + "width": 787, + "height": 750, + "format": "png" + } +] diff --git a/_data/icons/rabbit.json b/_data/icons/rabbit.json new file mode 100644 index 000000000000..7766b6cb6604 --- /dev/null +++ b/_data/icons/rabbit.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdfbjjF3ZzN2jTkH9REgrA8jDS6A6c21n7rbWSVbSnvQc", + "width": 310, + "height": 251, + "format": "svg" + } +] 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/ramestta.json b/_data/icons/ramestta.json new file mode 100644 index 000000000000..f3d1f1d233c1 --- /dev/null +++ b/_data/icons/ramestta.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUtnYVBeDMKudGq2Wue25pqYfQEdgbyvzTzoGPMqRGMJZ", + "width": 300, + "height": 300, + "format": "png" + } +] diff --git a/_data/icons/rangers.json b/_data/icons/rangers.json index 9bfdb96d88ba..3fb00d1b4134 100644 --- a/_data/icons/rangers.json +++ b/_data/icons/rangers.json @@ -1,8 +1,8 @@ [ { - "url":"ipfs://QmfHG3xbg4iiopagww93Gu7tmvCpPwZdiwsUjd3Dt5mRwT", - "width":835, - "height":835, - "format":"png" + "url": "ipfs://QmXR5e5SDABWfQn6XT9uMsVYAo5Bv7vUv4jVs8DFqatZWG", + "width": 2000, + "height": 2000, + "format": "png" } ] diff --git a/_data/icons/raptorchain.json b/_data/icons/raptorchain.json new file mode 100644 index 000000000000..72c187bdc7d9 --- /dev/null +++ b/_data/icons/raptorchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQuvmiN6vM6Rqzqe1pMzDf8iZXqTtSeqCgGe5k5AyksDU", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/raptorchain_explorer.json b/_data/icons/raptorchain_explorer.json new file mode 100644 index 000000000000..72c187bdc7d9 --- /dev/null +++ b/_data/icons/raptorchain_explorer.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQuvmiN6vM6Rqzqe1pMzDf8iZXqTtSeqCgGe5k5AyksDU", + "width": 200, + "height": 200, + "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/razornetwork.json b/_data/icons/razornetwork.json new file mode 100644 index 000000000000..9a8470c6b60d --- /dev/null +++ b/_data/icons/razornetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUdwAZJfyKGZnfPGDsCnNvGu123mdd57kTGj1Y3EWVuWK", + "width": 900, + "height": 900, + "format": "png" + } +] diff --git a/_data/icons/reactive.json b/_data/icons/reactive.json new file mode 100644 index 000000000000..317aef274f4f --- /dev/null +++ b/_data/icons/reactive.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaBqYemL6VG5kDEMZqtJZhh6kLn3XqMyxkDpChkPttJ6B", + "width": 320, + "height": 320, + "format": "png" + } +] diff --git a/_data/icons/real.json b/_data/icons/real.json new file mode 100644 index 000000000000..e6be1167afa4 --- /dev/null +++ b/_data/icons/real.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNUmWC7jNEBcTs6ZqkrQ5vMAQG8qjq7n3FcZnXvJZLoQ9", + "width": 301, + "height": 302, + "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/reapchain.json b/_data/icons/reapchain.json new file mode 100644 index 000000000000..5ff9028cc9a0 --- /dev/null +++ b/_data/icons/reapchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmevQ8jmDWHmdnUQg6BpoMwVB3NhpzS75adbMnKL78Ls2h", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/rebus.json b/_data/icons/rebus.json new file mode 100644 index 000000000000..7634993ad86c --- /dev/null +++ b/_data/icons/rebus.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifzag46dhp33vb2uldg4htqbqipuqrapjga6ml6pnhn5yibbvb4gq", + "width": 512, + "height": 512, + "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/redmansion.json b/_data/icons/redmansion.json new file mode 100644 index 000000000000..4e66f5c0352c --- /dev/null +++ b/_data/icons/redmansion.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmd49EoSchLo4LbHvdmAx6cFcL4gLgo7hzDyUjB1hPrTTP", + "width": 150, + "height": 150, + "format": "png" + } +] diff --git a/_data/icons/redstone.json b/_data/icons/redstone.json new file mode 100644 index 000000000000..53bfe0aef954 --- /dev/null +++ b/_data/icons/redstone.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreieyaqgkgntvxuo5tnhgseladga5q6gutc37dab7kqqfdguhq7vkxq", + "width": 5836, + "height": 5836, + "format": "png" + } +] diff --git a/_data/icons/rei.json b/_data/icons/rei.json deleted file mode 100644 index cbbb62230bbf..000000000000 --- a/_data/icons/rei.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url":"ipfs://bafkreihgwxcavak2v5otxka2muxtcd4v5cvzcuvfwotriy24qzq7tuuzwm", - "width":1561, - "height":1561, - "format":"png" - } -] \ No newline at end of file diff --git a/_data/icons/resincoin.json b/_data/icons/resincoin.json new file mode 100644 index 000000000000..7a9b42bd7590 --- /dev/null +++ b/_data/icons/resincoin.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTBszPzBeWPhjozf4TxpL2ws1NkG9yJvisx9h6MFii1zb", + "width": 460, + "height": 460, + "format": "png" + } +] diff --git a/_data/icons/rethereum.json b/_data/icons/rethereum.json new file mode 100644 index 000000000000..13c1e08b0c45 --- /dev/null +++ b/_data/icons/rethereum.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiawlhc2trzyxgnz24vowdymxme2m446uk4vmrplgxsdd74ecpfloq", + "width": 830, + "height": 830, + "format": "png" + } +] diff --git a/_data/icons/rikeza.json b/_data/icons/rikeza.json new file mode 100644 index 000000000000..e183bdfd11e2 --- /dev/null +++ b/_data/icons/rikeza.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfJ1Qxpzi6CSLeFeWY1Bwe435CpT5za5WfrLUE7vNzZfy", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/rinia.json b/_data/icons/rinia.json new file mode 100644 index 000000000000..c438ed104848 --- /dev/null +++ b/_data/icons/rinia.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRnnw2gtbU9TWJMLJ6tks7SN6HQV5rRugeoyN6csTYHt1", + "width": 512, + "height": 512, + "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/rivool.json b/_data/icons/rivool.json new file mode 100644 index 000000000000..384a2013d50c --- /dev/null +++ b/_data/icons/rivool.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiby5lsr4ogkcqftubqmju3cphoret5sqt4xrcuothgmbsh2awdgdm", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/rlc.json b/_data/icons/rlc.json new file mode 100644 index 000000000000..cf934527d8c9 --- /dev/null +++ b/_data/icons/rlc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUYKpVmZL4aS3TEZLG5wbrRJ6exxLiwm1rejfGYYNicfb", + "width": 155, + "height": 155, + "format": "png" + } +] diff --git a/_data/icons/roburna.json b/_data/icons/roburna.json new file mode 100644 index 000000000000..db8886a1a009 --- /dev/null +++ b/_data/icons/roburna.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTk1uhB9nvnvXifvwEPGFcdgsXRt4EXNjovUGyUmfFRcB", + "width": 4000, + "height": 4000, + "format": "png" + } +] 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/rootstock.json b/_data/icons/rootstock.json new file mode 100644 index 000000000000..4a40137f9c1a --- /dev/null +++ b/_data/icons/rootstock.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigidzbf22dnpmmlfxv6u7oifq6ln33j4n57ox4ipiproalufrheym", + "width": 3000, + "height": 3325, + "format": "png" + } +] diff --git a/_data/icons/rss3-testnet.json b/_data/icons/rss3-testnet.json new file mode 100644 index 000000000000..e8bf8689e605 --- /dev/null +++ b/_data/icons/rss3-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTE6hnMTQaGU8Fm7nQbeTqQ5Ha3kyLKHR6QTd59prP2mC", + "width": 200, + "height": 200, + "format": "svg" + } +] diff --git a/_data/icons/rss3.json b/_data/icons/rss3.json new file mode 100644 index 000000000000..40d5c207c1a0 --- /dev/null +++ b/_data/icons/rss3.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZFWYnufi6G2Z54oJ25sx2yf2Skx5tseJHJJa6Hc1G34t", + "width": 200, + "height": 200, + "format": "svg" + } +] diff --git a/_data/icons/ruby.json b/_data/icons/ruby.json new file mode 100644 index 000000000000..95c505f516f8 --- /dev/null +++ b/_data/icons/ruby.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXGJevyPHHKT28hDfsJ9Cq2DQ2bAavdie37MEwFQUVCQz", + "width": 500, + "height": 500, + "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/runic-testnet.json b/_data/icons/runic-testnet.json new file mode 100644 index 000000000000..f44c8c7510a1 --- /dev/null +++ b/_data/icons/runic-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmW3RZKwBq12F7jVV2pn6T9WzwU5rosLYkVqoRQckfKvXo", + "width": 340, + "height": 340, + "format": "png" + } +] diff --git a/_data/icons/saakuru.json b/_data/icons/saakuru.json new file mode 100644 index 000000000000..e7c8db825e19 --- /dev/null +++ b/_data/icons/saakuru.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmduEdtFobPpZWSc45MU6RKxZfTEzLux2z8ikHFhT8usqv", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/safe-anwang.json b/_data/icons/safe-anwang.json new file mode 100644 index 000000000000..f5216051dd54 --- /dev/null +++ b/_data/icons/safe-anwang.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmahJhdaLfGwBStQ9q9K4Mc73vLNqFV1otWCsT2ZKsMavv", + "width": 768, + "height": 768, + "format": "png" + } +] diff --git a/_data/icons/sagaevm.json b/_data/icons/sagaevm.json new file mode 100644 index 000000000000..b8f97b02f073 --- /dev/null +++ b/_data/icons/sagaevm.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 new file mode 100644 index 000000000000..0dfd2e3fb2df --- /dev/null +++ b/_data/icons/sahara.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibhofpvuswlhmfniolskoguhjr4p7strqgm5uz7tu53s5gv35qwem", + "width": 44, + "height": 24, + "format": "svg" + } +] diff --git a/_data/icons/sanko.json b/_data/icons/sanko.json new file mode 100644 index 000000000000..1de489eb9f50 --- /dev/null +++ b/_data/icons/sanko.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmbwi5FoJdL6HuFmQGQu1sdyoGrSuj45H12tMNTnpRAmLw", + "width": 795, + "height": 792, + "format": "png" + } +] diff --git a/_data/icons/sanrchain.json b/_data/icons/sanrchain.json new file mode 100644 index 000000000000..6391d4b44c60 --- /dev/null +++ b/_data/icons/sanrchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPLMg5mYD8XRknvYbDkD2x7FXxYan7MPTeUWZC2CihwDM", + "width": 2048, + "height": 2048, + "format": "png" + } +] diff --git a/_data/icons/sapphire.json b/_data/icons/sapphire.json new file mode 100644 index 000000000000..56d617a0daf3 --- /dev/null +++ b/_data/icons/sapphire.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmd1PGt4cDRjFbh4ihP5QKEd4XQVwN1MkebYKdF56V74pf", + "width": 48, + "height": 48, + "format": "svg" + } +] diff --git a/_data/icons/sardis.json b/_data/icons/sardis.json new file mode 100644 index 000000000000..50f9ef8a8428 --- /dev/null +++ b/_data/icons/sardis.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdR9QJjQEh1mBnf2WbJfehverxiP5RDPWMtEECbDP2rc3", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/sardisTestnet.json b/_data/icons/sardisTestnet.json new file mode 100644 index 000000000000..50f9ef8a8428 --- /dev/null +++ b/_data/icons/sardisTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdR9QJjQEh1mBnf2WbJfehverxiP5RDPWMtEECbDP2rc3", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/satoshichain.json b/_data/icons/satoshichain.json new file mode 100644 index 000000000000..07af26bacc7f --- /dev/null +++ b/_data/icons/satoshichain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRegpZQBW4o1imYNsW3d27MQjygBSU23Gf6JKje26nvs7", + "width": 1251, + "height": 1251, + "format": "png" + } +] diff --git a/_data/icons/satoshie.json b/_data/icons/satoshie.json new file mode 100644 index 000000000000..954421a0d047 --- /dev/null +++ b/_data/icons/satoshie.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRHT4o9ihiY6nVkkRdwZjdugbEAQiXrrov3GS9a3GTuL7", + "width": 1024, + "height": 1024, + "format": "jpg" + } +] diff --git a/_data/icons/satoshivm.json b/_data/icons/satoshivm.json new file mode 100644 index 000000000000..9d74f13ec87c --- /dev/null +++ b/_data/icons/satoshivm.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdXnQw9YwzEBZnciSe42MMwnH1SqhfY3FcVbseyM4k7Th", + "width": 940, + "height": 941, + "format": "png" + } +] 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/scaiIcon.json b/_data/icons/scaiIcon.json new file mode 100644 index 000000000000..835a470dba88 --- /dev/null +++ b/_data/icons/scaiIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qme2Z8VFYjhHGfLQPBnfseNpEdRfmTDy7VXqrdH4AHETJf", + "width": 150, + "height": 150, + "format": "png" + } +] diff --git a/_data/icons/scalind.json b/_data/icons/scalind.json new file mode 100644 index 000000000000..9d834101ccb0 --- /dev/null +++ b/_data/icons/scalind.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmayuauUTSkYxbT1xi2AkkG5VLEMDhcMeZ18WZHiApPa9M", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/scenium.json b/_data/icons/scenium.json new file mode 100644 index 000000000000..47cbca42cd9b --- /dev/null +++ b/_data/icons/scenium.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreicngi3vnsauqgncupwitkkq2733nuwmqvczkiodynbsaxjmu2brna", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/scn.json b/_data/icons/scn.json new file mode 100644 index 000000000000..281087053baf --- /dev/null +++ b/_data/icons/scn.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdW7XfRgeyoaHXEvXp8MaVteonankR32CxhL3K5Yc2uQM", + "width": 345, + "height": 321, + "format": "png" + } +] diff --git a/_data/icons/scolcoin.json b/_data/icons/scolcoin.json new file mode 100644 index 000000000000..a9ee74c05563 --- /dev/null +++ b/_data/icons/scolcoin.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVES1eqDXhP8SdeCpM85wvjmhrQDXGRquQebDrSdvJqpt", + "width": 792, + "height": 822, + "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/sei.json b/_data/icons/sei.json new file mode 100644 index 000000000000..64f358e56536 --- /dev/null +++ b/_data/icons/sei.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreih3l3iisplmikofkbfyimqlox7nmixzlkzhjoewmpi4jbqitwryoa", + "width": 600, + "height": 600, + "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/selendra.json b/_data/icons/selendra.json new file mode 100644 index 000000000000..89ff50797467 --- /dev/null +++ b/_data/icons/selendra.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbnLDuVc4JReFysyKvmpuqUtj9HCus6qoKD5nQ9QkokzK", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/sexy.json b/_data/icons/sexy.json new file mode 100644 index 000000000000..276063c84b83 --- /dev/null +++ b/_data/icons/sexy.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihq3b3cqbg2ttlp4dfbgmirrwdw6bbpmmbr5wolddd2izbyqay4xq", + "width": 480, + "height": 480, + "format": "png" + } +] diff --git a/_data/icons/sexyTestnet.json b/_data/icons/sexyTestnet.json new file mode 100644 index 000000000000..276063c84b83 --- /dev/null +++ b/_data/icons/sexyTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihq3b3cqbg2ttlp4dfbgmirrwdw6bbpmmbr5wolddd2izbyqay4xq", + "width": 480, + "height": 480, + "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/shardeum.json b/_data/icons/shardeum.json new file mode 100644 index 000000000000..64c72a305902 --- /dev/null +++ b/_data/icons/shardeum.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qma1bfuubpepKn7DLDy4NPSKDeT3S4VPCNhu6UmdGrb6YD", + "width": 609, + "height": 533, + "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/sherpax.json b/_data/icons/sherpax.json deleted file mode 100644 index d4c2701ba13f..000000000000 --- a/_data/icons/sherpax.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url":"ipfs://QmTgk86ngUZXLNqpAM7HomNT8pd9ZDTwJv3iwSY67rssdw", - "width":141, - "height":140, - "format":"png" - } -] diff --git a/_data/icons/shibarium.json b/_data/icons/shibarium.json new file mode 100644 index 000000000000..c18d6426f9f6 --- /dev/null +++ b/_data/icons/shibarium.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmd6rSbfpVjQQZXothmiwGqKo7zovnB9gkeoYcunDt7ZTb", + "width": 2000, + "height": 2000, + "format": "png" + } +] diff --git a/_data/icons/shidoChain.json b/_data/icons/shidoChain.json new file mode 100644 index 000000000000..47ca8f927100 --- /dev/null +++ b/_data/icons/shidoChain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiatrf5pp7ywvrwvsv4otrex73u6v6bvhorqkxiop2hy2i572zjrba", + "width": 1080, + "height": 1080, + "format": "png" + } +] diff --git a/_data/icons/shimmerevm.json b/_data/icons/shimmerevm.json new file mode 100644 index 000000000000..4bab3c5b8530 --- /dev/null +++ b/_data/icons/shimmerevm.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibky2sy6qhi6arktayvologkrgu5kudpgdxfkx4uosbvmstz7v4di", + "width": 720, + "height": 720, + "format": "png" + } +] diff --git a/_data/icons/shinarium.json b/_data/icons/shinarium.json new file mode 100644 index 000000000000..933dc82caa85 --- /dev/null +++ b/_data/icons/shinarium.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiadbavrwcial76vs5ovhyykyaobteltuhliqcthdairbja4klwzhu", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/shine.json b/_data/icons/shine.json new file mode 100644 index 000000000000..3e43872a6e66 --- /dev/null +++ b/_data/icons/shine.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUBkpY3prCTZHpx1fjrYLAJ6dPaGvNVTj97iy6p3NPUi1", + "width": 161, + "height": 161, + "format": "png" + } +] diff --git a/_data/icons/shuffle.json b/_data/icons/shuffle.json new file mode 100644 index 000000000000..3004104e09a1 --- /dev/null +++ b/_data/icons/shuffle.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq", + "width": 1000, + "height": 1206, + "format": "png" + } +] diff --git a/_data/icons/shyft.json b/_data/icons/shyft.json index 17c728e91641..f2aea2730c3e 100644 --- a/_data/icons/shyft.json +++ b/_data/icons/shyft.json @@ -1,9 +1,8 @@ [ - { - "url":"ipfs://QmUkFZC2ZmoYPTKf7AHdjwRPZoV2h1MCuHaGM4iu8SNFpi", - "width":400, - "height":400, - "format":"svg" - } + { + "url": "ipfs://QmUkFZC2ZmoYPTKf7AHdjwRPZoV2h1MCuHaGM4iu8SNFpi", + "width": 400, + "height": 400, + "format": "svg" + } ] - diff --git a/_data/icons/siberium.json b/_data/icons/siberium.json new file mode 100644 index 000000000000..2bf246ccedf1 --- /dev/null +++ b/_data/icons/siberium.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYeMdWDZ1iaBFeSPorRyPi7RuSXTdDKTgW3rfnUf3W5ne", + "width": 512, + "height": 512, + "format": "svg" + } +] 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/silentdata-testnet.json b/_data/icons/silentdata-testnet.json new file mode 100644 index 000000000000..203294369448 --- /dev/null +++ b/_data/icons/silentdata-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVmh384UGF5ecanRufkxNXdDb5ps1HKfJnAYjUjR2A8QB", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/silentdata.json b/_data/icons/silentdata.json new file mode 100644 index 000000000000..3728c7e3ad09 --- /dev/null +++ b/_data/icons/silentdata.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYcpfy4jVw2VKa63jzjYHEXLr3ytGjYKgTNNmoC7ejxyi", + "width": 1200, + "height": 1200, + "format": "png" + } +] diff --git a/_data/icons/silicon.json b/_data/icons/silicon.json new file mode 100644 index 000000000000..7575506f5d46 --- /dev/null +++ b/_data/icons/silicon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTEnk2fosqbY6HQW5vySrLGbopJfeni9ThZ6R9sVefbnq", + "width": 800, + "height": 800, + "format": "png" + } +] diff --git a/_data/icons/siriusnet.json b/_data/icons/siriusnet.json new file mode 100644 index 000000000000..3aca96e7e2d4 --- /dev/null +++ b/_data/icons/siriusnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeicxuxdzrzpwsil4owqmn7wpwka2rqsohpfqmukg57pifzyxr5om2q", + "width": 100, + "height": 100, + "format": "png" + } +] diff --git a/_data/icons/six.json b/_data/icons/six.json new file mode 100644 index 000000000000..3732277203e8 --- /dev/null +++ b/_data/icons/six.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmP93z696v8Hetu13peY2oEHDXq8Bj5CqaDRwpVkpnM15A", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/skale.json b/_data/icons/skale.json new file mode 100644 index 000000000000..02fb34c82376 --- /dev/null +++ b/_data/icons/skale.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreic24eqab5wwryzfolpfaalnuzhf4aol5ikbc5g2snvvryl4mqlzvq", + "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/smarthost.json b/_data/icons/smarthost.json new file mode 100644 index 000000000000..d8018784c433 --- /dev/null +++ b/_data/icons/smarthost.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTrLGHyQ1Le25Q7EgNSF5Qq8D2SocKvroDkLqurdBuSQQ", + "width": 1655, + "height": 1029, + "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/snt.json b/_data/icons/snt.json new file mode 100644 index 000000000000..ca3747131aa0 --- /dev/null +++ b/_data/icons/snt.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifrwbkb6mb3mtxka7q3qitd4ney5wldhe54tu4vxmvqm536wrstpe", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/soma.json b/_data/icons/soma.json new file mode 100644 index 000000000000..b100d995d3d0 --- /dev/null +++ b/_data/icons/soma.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmadSU2tcyvuzssDYGJ4rVLag43QLnKwcBerZR2zKLVU2N", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/songbird.json b/_data/icons/songbird.json index ebd3b6722e5c..3a04f24b2703 100644 --- a/_data/icons/songbird.json +++ b/_data/icons/songbird.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://QmYxcrbb7EoXisMQN9KqSoUqbjctV482nyfyWNvPQebdon", - "width": 512, - "height": 719, + "url": "ipfs://QmdpaH9pEFDXB4tUPxcqAHfB3Sfx3BQufz6EAzBWhHH6Ka", + "width": 500, + "height": 500, "format": "png" } -] \ No newline at end of file +] 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/soverun.json b/_data/icons/soverun.json new file mode 100644 index 000000000000..170d3c784d2d --- /dev/null +++ b/_data/icons/soverun.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTYazUzgY9Nn2mCjWwFUSLy3dG6i2PvALpwCNQvx1zXyi", + "width": 1154, + "height": 1154, + "format": "png" + } +] diff --git a/_data/icons/spld-testnet.json b/_data/icons/spld-testnet.json new file mode 100644 index 000000000000..ca0a770028e4 --- /dev/null +++ b/_data/icons/spld-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigdhkoqdntev2f4ixapfrcku74x4mjsgvebvlzdrjv5oadafrlpzm", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/splendor.json b/_data/icons/splendor.json new file mode 100644 index 000000000000..ca0a770028e4 --- /dev/null +++ b/_data/icons/splendor.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigdhkoqdntev2f4ixapfrcku74x4mjsgvebvlzdrjv5oadafrlpzm", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/stabilitytestnet.json b/_data/icons/stabilitytestnet.json new file mode 100644 index 000000000000..c3f8331604ca --- /dev/null +++ b/_data/icons/stabilitytestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreid3wd6ouu53r677q2z24a4eq5un5tlwbc4izfapcvvtrlhkmz43au", + "width": 133, + "height": 144, + "format": "png" + } +] diff --git a/_data/icons/stable.json b/_data/icons/stable.json new file mode 100644 index 000000000000..7128941efc4c --- /dev/null +++ b/_data/icons/stable.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiegvgr6qwavexa5koda4wfqdqomn7h44niwufhgw4nkof5yugizvi", + "width": 256, + "height": 256, + "format": "svg" + } +] diff --git a/_data/icons/stand.json b/_data/icons/stand.json new file mode 100644 index 000000000000..b8e04d75b2f2 --- /dev/null +++ b/_data/icons/stand.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPNuymyaKLJhCaXnyrsL8358FeTxabZFsaxMmWNU4Tzt3", + "width": 396, + "height": 418, + "format": "png" + } +] diff --git a/_data/icons/standTestnet.json b/_data/icons/standTestnet.json new file mode 100644 index 000000000000..b8e04d75b2f2 --- /dev/null +++ b/_data/icons/standTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPNuymyaKLJhCaXnyrsL8358FeTxabZFsaxMmWNU4Tzt3", + "width": 396, + "height": 418, + "format": "png" + } +] 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/step.json b/_data/icons/step.json new file mode 100644 index 000000000000..13ce8ec6c803 --- /dev/null +++ b/_data/icons/step.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVp9jyb3UFW71867yVtymmiRw7dPY4BTnsp3hEjr9tn8L", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/stn.json b/_data/icons/stn.json new file mode 100644 index 000000000000..e2e43bd9be6f --- /dev/null +++ b/_data/icons/stn.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRgZVpjik4cH3Sb6wLRpdnfv9kiMEZ8fugfkzTgk3bpRW", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/storagechain.json b/_data/icons/storagechain.json new file mode 100644 index 000000000000..b10f4930366c --- /dev/null +++ b/_data/icons/storagechain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfN9r1S7FvzkbjqfNMdUikhHmCw5e6UqsTuRD51S8T6Cq", + "width": 512, + "height": 512, + "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/super.json b/_data/icons/super.json new file mode 100644 index 000000000000..213e6b3a0551 --- /dev/null +++ b/_data/icons/super.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmW4C4QHLMhLeH5MsdVbauMc2Skb4ehzLKU3egLKKoux4D", + "width": 130, + "height": 130, + "format": "png" + } +] diff --git a/_data/icons/superlumio.json b/_data/icons/superlumio.json new file mode 100644 index 000000000000..74763a6a5cdb --- /dev/null +++ b/_data/icons/superlumio.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXiatdz5WBFypfsudoDsFnsLdiHzDwcD3pWcHwBovbPiZ", + "width": 256, + "height": 256, + "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/swamps.json b/_data/icons/swamps.json new file mode 100644 index 000000000000..5376c79e97ab --- /dev/null +++ b/_data/icons/swamps.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTEEgWsknzdqjLbaAvLHqCCzCtMJZh2d1SqMscxZCXBwA", + "width": 150, + "height": 150, + "format": "png" + } +] 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/swarmchain.json b/_data/icons/swarmchain.json deleted file mode 100644 index 44528a16de31..000000000000 --- a/_data/icons/swarmchain.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url":"ipfs://QmRu7KmQoC2vSVeD7Y6bxRYikQHYs86H9fRAdb1ytPkK9r", - "width":500, - "height":500, - "format":"png" - } -] diff --git a/_data/icons/swarmexplorer.json b/_data/icons/swarmexplorer.json deleted file mode 100644 index c909e961596f..000000000000 --- a/_data/icons/swarmexplorer.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url":"ipfs://Qmbzy8c54EHh7yzMHZir98BrcV6sazr77QLoi63HAoayuo", - "width":289, - "height":288, - "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 new file mode 100644 index 000000000000..a477a6d1b818 --- /dev/null +++ b/_data/icons/swisstronik.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreietv32mc3rwbzymhlju6mrvmiavvgqg3sflafl2fjjxguqky56sca", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/syndicate.json b/_data/icons/syndicate.json new file mode 100644 index 000000000000..da9988e4b673 --- /dev/null +++ b/_data/icons/syndicate.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeSvQcD3XvLFAiMLoQSPbGK9JxVfbCWPBUTMLhhhzYPqX", + "width": 16000, + "height": 16000, + "format": "png" + } +] diff --git a/_data/icons/syndr.json b/_data/icons/syndr.json new file mode 100644 index 000000000000..1714b22bfdc4 --- /dev/null +++ b/_data/icons/syndr.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreibsl7iuxeibovp7uddigbus3lyse2f7n4s2lomgvf33fmgyxjwq5i", + "width": 1000, + "height": 1000, + "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/taf.json b/_data/icons/taf.json new file mode 100644 index 000000000000..4329b0f6e3b2 --- /dev/null +++ b/_data/icons/taf.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreigpxhu7glccsislhjqpl5fnsfmj2io4cy33blhky642uiuyojossy", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/taiko.json b/_data/icons/taiko.json new file mode 100644 index 000000000000..8b1a4aa3f5a7 --- /dev/null +++ b/_data/icons/taiko.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcHdmVr5VRUJq13jnM6tgah5Ge7hn3Dm14eY6vwivJ5ui", + "width": 288, + "height": 258, + "format": "png" + } +] 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/tangle.json b/_data/icons/tangle.json new file mode 100644 index 000000000000..66ca0ec2a479 --- /dev/null +++ b/_data/icons/tangle.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbxMNBTeQgch8t9GpWdLiS2R3wPYCzVRaX5kCQ4o5QU3w", + "width": 1600, + "height": 1600, + "format": "png" + } +] diff --git a/_data/icons/taoevmIcon.json b/_data/icons/taoevmIcon.json new file mode 100644 index 000000000000..2974c96dba81 --- /dev/null +++ b/_data/icons/taoevmIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmS78hUX5zqYDqoFgyVmtWpCcx7bZW86Nhw5Nqt2GJrLh2", + "width": 256, + "height": 234, + "format": "png" + } +] diff --git a/_data/icons/taproot.json b/_data/icons/taproot.json new file mode 100644 index 000000000000..ed9aecbdb06d --- /dev/null +++ b/_data/icons/taproot.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeucqvcreQk8nnSRUiHo3QTvLoYYB7shJTKXj5Tk6BtWi", + "width": 100, + "height": 100, + "format": "png" + } +] diff --git a/_data/icons/taraxa.json b/_data/icons/taraxa.json new file mode 100644 index 000000000000..73a4f82987e2 --- /dev/null +++ b/_data/icons/taraxa.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVeZJ3DfDuksxw58cHCRDKWDdhbmQsvrJdTxhZ74pv3tE", + "width": 560, + "height": 560, + "format": "png" + } +] diff --git a/_data/icons/tcg_verse.json b/_data/icons/tcg_verse.json new file mode 100644 index 000000000000..0aba6bf3a9f3 --- /dev/null +++ b/_data/icons/tcg_verse.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidg4wpewve5mdxrofneqblydkrjl3oevtgpdf3fk3z3vjqam6ocoe", + "width": 350, + "height": 350, + "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/team.json b/_data/icons/team.json new file mode 100644 index 000000000000..52a2e0b0c707 --- /dev/null +++ b/_data/icons/team.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcnA15BLE9uvznbugXKjqquizZs1eLPeEEkc92DSmvhmt", + "width": 248, + "height": 248, + "format": "png" + } +] diff --git a/_data/icons/techpay.json b/_data/icons/techpay.json index c420099581d5..c2a881d9a8eb 100644 --- a/_data/icons/techpay.json +++ b/_data/icons/techpay.json @@ -1,8 +1,8 @@ [ - { - "url": "ipfs://QmQyTyJUnhD1dca35Vyj96pm3v3Xyw8xbG9m8HXHw3k2zR", - "width": 584, - "height": 707, - "format": "svg" - } + { + "url": "ipfs://QmQyTyJUnhD1dca35Vyj96pm3v3Xyw8xbG9m8HXHw3k2zR", + "width": 578, + "height": 701, + "format": "svg" + } ] diff --git a/_data/icons/telcoin.json b/_data/icons/telcoin.json new file mode 100644 index 000000000000..049df7b30df6 --- /dev/null +++ b/_data/icons/telcoin.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreih4obvrymfdqohzhiafhvpcy6zwqbgpfm26aahrv3qx2dtcei7hk4", + "width": 79, + "height": 80, + "format": "svg" + } +] 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/tempo.json b/_data/icons/tempo.json new file mode 100644 index 000000000000..9c0fbc319795 --- /dev/null +++ b/_data/icons/tempo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreignxbz2mjbwv6sqbjndkxhi423j7yyk3qlfdfnzclcmq4uklxdgza", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/tenet.json b/_data/icons/tenet.json new file mode 100644 index 000000000000..d7e392725a80 --- /dev/null +++ b/_data/icons/tenet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmc1gqjWTzNo4pyFSGtQuCu7kRSZZBUVybtTjHn2nNEEPA", + "width": 640, + "height": 640, + "format": "svg" + } +] 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/timenet.json b/_data/icons/timenet.json new file mode 100644 index 000000000000..bd89c95639d6 --- /dev/null +++ b/_data/icons/timenet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidoudwo453gr3hoxpreleguga73rm55yl6vuedxrfmhknljppqbiu", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/timp.json b/_data/icons/timp.json new file mode 100644 index 000000000000..a4f27e918bbc --- /dev/null +++ b/_data/icons/timp.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcNGLzKyc7Gu2dgpBFF6t3KJwFuKC79D56DW8GTc5DWRw", + "width": 200, + "height": 200, + "format": "png" + } +] diff --git a/_data/icons/tipboxcoinIcon.json b/_data/icons/tipboxcoinIcon.json new file mode 100644 index 000000000000..75a2fd9d8e94 --- /dev/null +++ b/_data/icons/tipboxcoinIcon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbiaHnR3fVVofZ7Xq2GYZxwHkLEy3Fh5qDtqnqXD6ACAh", + "width": 192, + "height": 192, + "format": "png" + } +] diff --git a/_data/icons/titan.json b/_data/icons/titan.json new file mode 100644 index 000000000000..1652d5524247 --- /dev/null +++ b/_data/icons/titan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiagrt5dhgltg2kmw7hf24kslstr5h42e745luuxwp2wbg24gm6zza", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/titan_tkx.json b/_data/icons/titan_tkx.json new file mode 100644 index 000000000000..eda26f173280 --- /dev/null +++ b/_data/icons/titan_tkx.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreicyvc7t55zsejv6vwaxbmhvea5vdfkkbgqkmn65rhyyifpg3mq3ua", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/tlc.json b/_data/icons/tlc.json index b47e1c36c2a4..daf02b1c8afc 100644 --- a/_data/icons/tlc.json +++ b/_data/icons/tlc.json @@ -1,9 +1,8 @@ [ - { - "url":"ipfs://QmaR5TsgnWSjLys6wGaciKUbc5qYL3Es4jtgQcosVqDWR3", - "width":2048, - "height":2048, - "format":"png" - } + { + "url": "ipfs://QmaR5TsgnWSjLys6wGaciKUbc5qYL3Es4jtgQcosVqDWR3", + "width": 2048, + "height": 2048, + "format": "png" + } ] - diff --git a/_data/icons/tmychain.json b/_data/icons/tmychain.json new file mode 100644 index 000000000000..f53e2fb99187 --- /dev/null +++ b/_data/icons/tmychain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmcd19ksUvNMD1XQFSC55jJhDPoF2zUzzV7woteFiugwBH", + "width": 1024, + "height": 1023, + "format": "svg" + } +] diff --git a/_data/icons/tobe.json b/_data/icons/tobe.json new file mode 100644 index 000000000000..43904d353e87 --- /dev/null +++ b/_data/icons/tobe.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXARMjJGkXEVEdjUyxkeG4ffsWvEo9vSJpVon3JwRxckS", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/toki.json b/_data/icons/toki.json new file mode 100644 index 000000000000..78d12361ee00 --- /dev/null +++ b/_data/icons/toki.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbCBBH4dFHGr8u1yQspCieQG9hLcPFNYdRx1wnVsX8hUw", + "width": 512, + "height": 512, + "format": "svg" + } +] diff --git a/_data/icons/top.json b/_data/icons/top.json index c5b66913cdf5..705a6d25ffe8 100644 --- a/_data/icons/top.json +++ b/_data/icons/top.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmYikaM849eZrL8pGNeVhEHVTKWpxdGMvCY5oFBfZ2ndhd", - "width":800, - "height":800, - "format":"png" - } -] \ No newline at end of file + { + "url": "ipfs://QmYikaM849eZrL8pGNeVhEHVTKWpxdGMvCY5oFBfZ2ndhd", + "width": 800, + "height": 800, + "format": "png" + } +] diff --git a/_data/icons/toronet.json b/_data/icons/toronet.json new file mode 100644 index 000000000000..a8d9e7eb6afd --- /dev/null +++ b/_data/icons/toronet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmciSvgLatP6jhgdazuiyD3fSrhipfAN7wC943v1qxcrpv", + "width": 846, + "height": 733, + "format": "png" + } +] diff --git a/_data/icons/torus.json b/_data/icons/torus.json new file mode 100644 index 000000000000..e70b79f98b5d --- /dev/null +++ b/_data/icons/torus.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidchntjaxmq52cuqqoalpajk5ssk4p77k7n4jgywqmkpldo5qgobm", + "width": 1200, + "height": 1200, + "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/treasurenet.json b/_data/icons/treasurenet.json new file mode 100644 index 000000000000..49f4e38ec82f --- /dev/null +++ b/_data/icons/treasurenet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTcNX8ukHkXiVfVah1W8Sed3vtGN95Sq2QSimfLuHva6B", + "width": 1844, + "height": 1920, + "format": "png" + } +] 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/tresleches.json b/_data/icons/tresleches.json new file mode 100644 index 000000000000..b8f99e4b1e4e --- /dev/null +++ b/_data/icons/tresleches.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmS33ypsZ1Hx5LMMACaJaxePy9QNYMwu4D12niobExLK74", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/treslechesexplorer.json b/_data/icons/treslechesexplorer.json new file mode 100644 index 000000000000..b8f99e4b1e4e --- /dev/null +++ b/_data/icons/treslechesexplorer.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmS33ypsZ1Hx5LMMACaJaxePy9QNYMwu4D12niobExLK74", + "width": 512, + "height": 512, + "format": "png" + } +] 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/trexx.json b/_data/icons/trexx.json new file mode 100644 index 000000000000..9a6e5c0206b1 --- /dev/null +++ b/_data/icons/trexx.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreib23xfvla3cgtykjuqtg7hngnvz6rhpigraomzvepcnhttdkaqmyy", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/tritanium.json b/_data/icons/tritanium.json new file mode 100644 index 000000000000..8f11eb236f16 --- /dev/null +++ b/_data/icons/tritanium.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRm6gcEPJmU9a86zrmyP7FALTN4Toz9HrnrL2Kwg6FPeh", + "width": 512, + "height": 512, + "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/trustivon.json b/_data/icons/trustivon.json new file mode 100644 index 000000000000..c0a1879a4d75 --- /dev/null +++ b/_data/icons/trustivon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", + "width": 1000, + "height": 1628, + "format": "png" + } +] diff --git a/_data/icons/tscscan.json b/_data/icons/tscscan.json new file mode 100644 index 000000000000..1088980179cc --- /dev/null +++ b/_data/icons/tscscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmS7ipvvyZ16weG1DM7AZbi1v9ixYwU2FjP25Jj5jkLiuf", + "width": 512, + "height": 512, + "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/twala.json b/_data/icons/twala.json new file mode 100644 index 000000000000..fd9713375fc3 --- /dev/null +++ b/_data/icons/twala.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTXJVhVKvVC7DQEnGKXvydvwpvVaUEBJrMHvsCr4nr1sK", + "width": 1326, + "height": 1265, + "format": "png" + } +] diff --git a/_data/icons/u2u.json b/_data/icons/u2u.json new file mode 100644 index 000000000000..c3c1e8da88ea --- /dev/null +++ b/_data/icons/u2u.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcW64RgqQVHnNbVFyfaMNKt7dJvFqEbfEHZmeyeK8dpEa", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/u2u_nebulas.json b/_data/icons/u2u_nebulas.json new file mode 100644 index 000000000000..c3c1e8da88ea --- /dev/null +++ b/_data/icons/u2u_nebulas.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcW64RgqQVHnNbVFyfaMNKt7dJvFqEbfEHZmeyeK8dpEa", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/ucash.json b/_data/icons/ucash.json new file mode 100644 index 000000000000..156ff6ad2df3 --- /dev/null +++ b/_data/icons/ucash.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUz6jimQbYZ43aeQBC6nSy2m7W7U6xR2qG8tCki2Jvj9k", + "width": 344, + "height": 342, + "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/ultrapro.json b/_data/icons/ultrapro.json new file mode 100644 index 000000000000..930ef1d0751f --- /dev/null +++ b/_data/icons/ultrapro.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmT11iJMLe9sAk5NiRQbe2wv1jtLFCs2sF2w9vFwDLkkgE", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/ultron.json b/_data/icons/ultron.json new file mode 100644 index 000000000000..7c39cf1a9a81 --- /dev/null +++ b/_data/icons/ultron.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPC6odFVyAQrXJQaZJVFpEQfRNbzZ5BjDZ7KBKmXPaYDw", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/ultronsmartchain.json b/_data/icons/ultronsmartchain.json new file mode 100644 index 000000000000..016ad54362ba --- /dev/null +++ b/_data/icons/ultronsmartchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTns2FXAqDCq1QJsocUBGjhxsgWYK7pFfD4UrRZ9JBsF1", + "width": 50, + "height": 50, + "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/unique.json b/_data/icons/unique.json new file mode 100644 index 000000000000..3091d5a7466f --- /dev/null +++ b/_data/icons/unique.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmbJ7CGZ2GxWMp7s6jy71UGzRsMe4w3KANKXDAExYWdaFR", + "width": 48, + "height": 48, + "format": "svg" + } +] 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/unreal.json b/_data/icons/unreal.json new file mode 100644 index 000000000000..5da47c539c8a --- /dev/null +++ b/_data/icons/unreal.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZbtoK9Q1DHTHjsgPUfHkzb9xdWzrSfPwPQ8M8FPu84mA", + "width": 300, + "height": 301, + "format": "png" + } +] diff --git a/_data/icons/up.json b/_data/icons/up.json new file mode 100644 index 000000000000..bc97617be8a1 --- /dev/null +++ b/_data/icons/up.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNMqcPyQnaaFfUDsmsnu2T6agZfoWij3zFYebCNUPkfAH", + "width": 320, + "height": 320, + "format": "jpg" + } +] diff --git a/_data/icons/uptick.json b/_data/icons/uptick.json new file mode 100644 index 000000000000..39bd2d3f8cb6 --- /dev/null +++ b/_data/icons/uptick.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRGJ6PqYHDTWuUQ6xfnK8S82NzRXiMjTnSGat9qtLuaLP", + "width": 400, + "height": 400, + "format": "png" + } +] diff --git a/_data/icons/uptn.json b/_data/icons/uptn.json new file mode 100644 index 000000000000..8fce50d0afb0 --- /dev/null +++ b/_data/icons/uptn.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qma6cGPCDcJPFxy5KQaMBrLtuVQiqeLncXVybcBoQuhai5", + "width": 128, + "height": 128, + "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/uzmi.json b/_data/icons/uzmi.json deleted file mode 100644 index 6a60e671d717..000000000000 --- a/_data/icons/uzmi.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "url":"ipfs://QmRU9tH2mM8P7r12FXL6cqPbZnzw57p9QSuNK2f8ePB4Qi", - "width":310, - "height":310, - "format":"png" - } -] \ No newline at end of file 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/vanar.json b/_data/icons/vanar.json new file mode 100644 index 000000000000..fbf6b1b91420 --- /dev/null +++ b/_data/icons/vanar.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmbx25iq4Vn4zLooPit9bbguXJzdiogwtVQWtSseyQPuSC", + "width": 1000, + "height": 1628, + "format": "png" + } +] diff --git a/_data/icons/vanguard.json b/_data/icons/vanguard.json new file mode 100644 index 000000000000..b172c8e92ad1 --- /dev/null +++ b/_data/icons/vanguard.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeERjnmdZ6v1tfCyfKfy2Rzh1vPCsU7x2sLJcLqQ6E3Fd", + "width": 1000, + "height": 1628, + "format": "png" + } +] 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/vbc.json b/_data/icons/vbc.json new file mode 100644 index 000000000000..a0867510617f --- /dev/null +++ b/_data/icons/vbc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreihwi6alsxnjlox2tu3yg2ahbn3dqaltktgwip7fg73vr6yujvdy5y", + "width": 512, + "height": 512, + "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/velas.json b/_data/icons/velas.json index 28212e3996ef..8678f1778a83 100644 --- a/_data/icons/velas.json +++ b/_data/icons/velas.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmNXiCXJxEeBd7ZYGYjPSMTSdbDd2nfodLC677gUfk9ku5", - "width":924, - "height":800, - "format":"png" - } + { + "url": "ipfs://QmNXiCXJxEeBd7ZYGYjPSMTSdbDd2nfodLC677gUfk9ku5", + "width": 924, + "height": 800, + "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/venidium.json b/_data/icons/venidium.json index 0564b87567aa..f1ed602e50c1 100644 --- a/_data/icons/venidium.json +++ b/_data/icons/venidium.json @@ -1,8 +1,8 @@ -[ - { - "url": "ipfs://bafkreiaplwlym5g27jm4mjhotfqq6al2cxp3fnkmzdusqjg7wnipq5wn2e", - "width": 1000, - "height": 1000, - "format": "png" - } -] \ No newline at end of file +[ + { + "url": "ipfs://bafkreiaplwlym5g27jm4mjhotfqq6al2cxp3fnkmzdusqjg7wnipq5wn2e", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/vention.json b/_data/icons/vention.json new file mode 100644 index 000000000000..24843367d89e --- /dev/null +++ b/_data/icons/vention.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcNepHmbmHW1BZYM3MFqJW4awwhmDqhUPRXXmRnXwg1U4", + "width": 250, + "height": 250, + "format": "png" + } +] diff --git a/_data/icons/ventionTestnet.json b/_data/icons/ventionTestnet.json new file mode 100644 index 000000000000..24843367d89e --- /dev/null +++ b/_data/icons/ventionTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcNepHmbmHW1BZYM3MFqJW4awwhmDqhUPRXXmRnXwg1U4", + "width": 250, + "height": 250, + "format": "png" + } +] diff --git a/_data/icons/very.json b/_data/icons/very.json new file mode 100644 index 000000000000..a949a470d57f --- /dev/null +++ b/_data/icons/very.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreie5ozo663ddewiqfiuc5kq44giy4zdhvpq2hamsdub5gwa77hcplu", + "width": 480, + "height": 480, + "format": "png" + } +] diff --git a/_data/icons/vex.json b/_data/icons/vex.json new file mode 100644 index 000000000000..c73d58cf3bfe --- /dev/null +++ b/_data/icons/vex.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmcZiEAGFYEEax1uxYnDUh8X5YBvZqMi9K92yZoq4o2zeM", + "width": 451, + "height": 446, + "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/vine.json b/_data/icons/vine.json new file mode 100644 index 000000000000..c57a4cc64419 --- /dev/null +++ b/_data/icons/vine.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTPbbhH4CkQiQWm4JUh3J9o5w79vXjFZaMBW4DKNuSVU3", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/vinuscan-testnet.json b/_data/icons/vinuscan-testnet.json new file mode 100644 index 000000000000..f1eed0010ebb --- /dev/null +++ b/_data/icons/vinuscan-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiayq7a5qncxzlilfnvpgzt4pwfxbof2qrqr2nyd2suztfummpty4i", + "width": 2000, + "height": 2000, + "format": "jpg" + } +] diff --git a/_data/icons/vinuscan.json b/_data/icons/vinuscan.json new file mode 100644 index 000000000000..f1eed0010ebb --- /dev/null +++ b/_data/icons/vinuscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiayq7a5qncxzlilfnvpgzt4pwfxbof2qrqr2nyd2suztfummpty4i", + "width": 2000, + "height": 2000, + "format": "jpg" + } +] diff --git a/_data/icons/viridis.json b/_data/icons/viridis.json new file mode 100644 index 000000000000..3592157d5246 --- /dev/null +++ b/_data/icons/viridis.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPdxcJwPogfZdec7UAqxeatRxrivEktpP1ftJBTeJQTdR", + "width": 3000, + "height": 2000, + "format": "png" + } +] diff --git a/_data/icons/vitainu-testnet.json b/_data/icons/vitainu-testnet.json new file mode 100644 index 000000000000..de83672c263e --- /dev/null +++ b/_data/icons/vitainu-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidtie4srt52ry67wd3dpxhklmug2ozrawvf3jdlljveinp3frutra", + "width": 2000, + "height": 392, + "format": "png" + } +] diff --git a/_data/icons/vitainu.json b/_data/icons/vitainu.json new file mode 100644 index 000000000000..1ac57d438ba3 --- /dev/null +++ b/_data/icons/vitainu.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeiderli6uaaxk7eboyf7g4abnybgrkbglmqbkmf25z57ode7zdzmvy", + "width": 613, + "height": 613, + "format": "png" + } +] diff --git a/_data/icons/vitruveo.json b/_data/icons/vitruveo.json new file mode 100644 index 000000000000..132d55ac5df0 --- /dev/null +++ b/_data/icons/vitruveo.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreidjhjv7uu7if745ys7ari3ka75spm2hqyr5po66sbe7kqsfk7ahua", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/vizing.json b/_data/icons/vizing.json new file mode 100644 index 000000000000..65ddf661833b --- /dev/null +++ b/_data/icons/vizing.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPgpWfGsAZ5UHekWFR8rioadVe3Wox8idFyeVxuv9N4Vo", + "width": 200, + "height": 200, + "format": "svg" + } +] 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/vrcscan.json b/_data/icons/vrcscan.json new file mode 100644 index 000000000000..e9a97275dd93 --- /dev/null +++ b/_data/icons/vrcscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmasMkZJ6m7y77fgY6SooNnrH3Y4a3vVYNDWe9T3KusxeU", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/vsl.json b/_data/icons/vsl.json new file mode 100644 index 000000000000..e7fce7a9b759 --- /dev/null +++ b/_data/icons/vsl.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeknNzGCZXQK7egwfwyxQan7Lw8bLnqYsyoEgEbDNCzJX", + "width": 600, + "height": 529, + "format": "png" + } +] diff --git a/_data/icons/w3gamez.json b/_data/icons/w3gamez.json new file mode 100644 index 000000000000..0c472094fdb3 --- /dev/null +++ b/_data/icons/w3gamez.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaQdiE7vwxKeuWCjk4nKBikcpg4XCzQkFWGrAZHmMKnrq", + "width": 400, + "height": 400, + "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/wagmi.json b/_data/icons/wagmi.json index dd13d48cdb94..48b59402393c 100644 --- a/_data/icons/wagmi.json +++ b/_data/icons/wagmi.json @@ -1,8 +1,8 @@ [ { "url": "ipfs://QmNoyUXxnak8B3xgFxErkVfyVEPJUMHBzq7qJcYzkUrPR4", - "width": 500, - "height": 500, + "width": 1920, + "height": 1920, "format": "png" } -] \ No newline at end of file +] 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/waterfall.json b/_data/icons/waterfall.json new file mode 100644 index 000000000000..302bb4add06b --- /dev/null +++ b/_data/icons/waterfall.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSDJPBKh9cLVL8UZ5KYwdwPyhD8bRWNb33jjt48wtu5Uc", + "width": 241, + "height": 179, + "format": "png" + } +] diff --git a/_data/icons/web3games.json b/_data/icons/web3games.json index 674a00b3b352..d66f8c9f55f3 100644 --- a/_data/icons/web3games.json +++ b/_data/icons/web3games.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmUc57w3UTHiWapNW9oQb1dP57ymtdemTTbpvGkjVHBRCo", - "width":192, - "height":192, - "format":"png" - } + { + "url": "ipfs://QmUc57w3UTHiWapNW9oQb1dP57ymtdemTTbpvGkjVHBRCo", + "width": 192, + "height": 192, + "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/whitechain-testnet.json b/_data/icons/whitechain-testnet.json new file mode 100644 index 000000000000..048e51f1256c --- /dev/null +++ b/_data/icons/whitechain-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNeELax6vjkR9WZVmtggk8cam9xHVABZ4WvQyqkGCJ5qf", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/whitechain.json b/_data/icons/whitechain.json new file mode 100644 index 000000000000..048e51f1256c --- /dev/null +++ b/_data/icons/whitechain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNeELax6vjkR9WZVmtggk8cam9xHVABZ4WvQyqkGCJ5qf", + "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/wireshape.json b/_data/icons/wireshape.json new file mode 100644 index 000000000000..2588c55cd554 --- /dev/null +++ b/_data/icons/wireshape.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTAyT3YrW2654CBRqRkec2cCznv6EBsbsRc2y6WQPbvXx", + "width": 1280, + "height": 1280, + "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/won.json b/_data/icons/won.json new file mode 100644 index 000000000000..93158b89d039 --- /dev/null +++ b/_data/icons/won.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQ6mjKWJQ5WmFiJzcqJnuHWZK53nQYJB1SnMQZEqgr74h", + "width": 250, + "height": 250, + "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/woopchain.json b/_data/icons/woopchain.json new file mode 100644 index 000000000000..99f7fe843ec4 --- /dev/null +++ b/_data/icons/woopchain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qma7LpnkGjAN1dwL6VTXUYqzySNxjLg4br7J8UE4yZWYec", + "width": 310, + "height": 310, + "format": "png" + } +] diff --git a/_data/icons/worldland.json b/_data/icons/worldland.json new file mode 100644 index 000000000000..beb5d585a38b --- /dev/null +++ b/_data/icons/worldland.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYZNTfK3byhgLsTjXP8vPubVHRz2CWsBrTJxZrQmKq6JZ", + "width": 3509, + "height": 2482, + "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/wyzth.json b/_data/icons/wyzth.json new file mode 100644 index 000000000000..7fe8aee7eee9 --- /dev/null +++ b/_data/icons/wyzth.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmT5UMzAftM4mHCtk4pWX4sqyJCki88APbqECywrhJp91Q", + "width": 324, + "height": 82, + "format": "png" + } +] diff --git a/_data/icons/wyzth_icon.json b/_data/icons/wyzth_icon.json new file mode 100644 index 000000000000..082ae7922b7e --- /dev/null +++ b/_data/icons/wyzth_icon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeDfLgA5heAAXsU8kf5J23Y8up4uHN27uRBEAJFPMJEu7", + "width": 48, + "height": 48, + "format": "png" + } +] diff --git a/_data/icons/xcap.json b/_data/icons/xcap.json new file mode 100644 index 000000000000..d3a4a5aea416 --- /dev/null +++ b/_data/icons/xcap.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeTj6tfaw9qf9wnEUQh7PnCpNWyvm56e7kY35kANRWNxj", + "width": 1600, + "height": 1600, + "format": "png" + } +] diff --git a/_data/icons/xdc.json b/_data/icons/xdc.json new file mode 100644 index 000000000000..d2b2ed8a6d70 --- /dev/null +++ b/_data/icons/xdc.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmeRq7pabiJE2n1xU3Y5Mb4TZSX9kQ74x7a3P2Z4PqcMRX", + "width": 1450, + "height": 1450, + "format": "png" + } +] diff --git a/_data/icons/xenon.json b/_data/icons/xenon.json new file mode 100644 index 000000000000..b124d485f043 --- /dev/null +++ b/_data/icons/xenon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNSoxDnj6MV8mPJWiuzzLbATcbk5op11NTwMTdzcr272F", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/xertra.json b/_data/icons/xertra.json new file mode 100644 index 000000000000..9277a8811e33 --- /dev/null +++ b/_data/icons/xertra.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmV1qG5jcEFhekamTzrMqzMTDRvCGdGQAiJcsHZ9viVwgT", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/xeta.json b/_data/icons/xeta.json new file mode 100644 index 000000000000..7837579370b7 --- /dev/null +++ b/_data/icons/xeta.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWGNfwJ9o2vmKD3E6fjrxpbFP8W5q45zmYzHHoXwqqAoj", + "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/xlayer.json b/_data/icons/xlayer.json new file mode 100644 index 000000000000..a5c4275bfdcf --- /dev/null +++ b/_data/icons/xlayer.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSLkiAAr6VtJ6jEqEzz3QdZtVEHzR6Az7E4XD8qXwjuio", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/xlayerTestnet.json b/_data/icons/xlayerTestnet.json new file mode 100644 index 000000000000..a5c4275bfdcf --- /dev/null +++ b/_data/icons/xlayerTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSLkiAAr6VtJ6jEqEzz3QdZtVEHzR6Az7E4XD8qXwjuio", + "width": 1000, + "height": 1000, + "format": "png" + } +] diff --git a/_data/icons/xlon.json b/_data/icons/xlon.json new file mode 100644 index 000000000000..bf0bfc3af689 --- /dev/null +++ b/_data/icons/xlon.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTV45o4jTe6ayscF1XWh1WXk5DPck4QohR5kQocSWjvQP", + "width": 300, + "height": 300, + "format": "png" + } +] diff --git a/_data/icons/xodex.json b/_data/icons/xodex.json new file mode 100644 index 000000000000..c36140081227 --- /dev/null +++ b/_data/icons/xodex.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmXt49jPfHUmDF4n8TF7ks6txiPztx6qUHanWmHnCoEAhW", + "width": 256, + "height": 256, + "format": "png" + } +] diff --git a/_data/icons/xone_main.json b/_data/icons/xone_main.json new file mode 100644 index 000000000000..26d4893c6524 --- /dev/null +++ b/_data/icons/xone_main.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmR3twvfhDES34nLhcVmUbAZpW4eynZoSfA2XpWUBnH7gB", + "width": 256, + "height": 256, + "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/xpla.json b/_data/icons/xpla.json new file mode 100644 index 000000000000..b5dc79191448 --- /dev/null +++ b/_data/icons/xpla.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://Qmf4GoxfpeA5VGqu7KP5eyv1WKaCpNDbvMxq1MjQBwFWxq", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/xpla_verse.json b/_data/icons/xpla_verse.json new file mode 100644 index 000000000000..75e863f9b14b --- /dev/null +++ b/_data/icons/xpla_verse.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZvqcTNWPUoT1F3r9DTAMhdjt3zQC8eRUStvUGEF68KCt", + "width": 857, + "height": 132, + "format": "png" + } +] diff --git a/_data/icons/xr.json b/_data/icons/xr.json new file mode 100644 index 000000000000..c20c36dda5ae --- /dev/null +++ b/_data/icons/xr.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTrFxtjUBwxi87rty13jbXg4BW9nvVuBmtbzb9j9F99Gt", + "width": 886, + "height": 886, + "format": "png" + } +] diff --git a/_data/icons/xrplevm.json b/_data/icons/xrplevm.json new file mode 100644 index 000000000000..49bf09dc57ab --- /dev/null +++ b/_data/icons/xrplevm.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmS1qEsbRpi9UrjCM5JkmCDdgWf8CWEAyKvNKbkjms919P", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/xsc.json b/_data/icons/xsc.json index 0371ab09589c..a6b4b65c338a 100644 --- a/_data/icons/xsc.json +++ b/_data/icons/xsc.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmNmAFgQKkjofaBR5mhB5ygE1Gna36YBVsGkgZQxrwW85s", - "width":98, - "height":96, - "format":"png" - } + { + "url": "ipfs://QmNmAFgQKkjofaBR5mhB5ygE1Gna36YBVsGkgZQxrwW85s", + "width": 98, + "height": 96, + "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..94864d74a0ff --- /dev/null +++ b/_data/icons/xylume-testnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmUweMnhb4wYtwv59gh4GSxhDy6AbnRntXiQRe4mFFazcF", + "width": 1024, + "height": 1024, + "format": "png" + } +] diff --git a/_data/icons/ycc.json b/_data/icons/ycc.json index 1b5f0534fdc1..af285a824d03 100644 --- a/_data/icons/ycc.json +++ b/_data/icons/ycc.json @@ -1,8 +1,8 @@ [ { - "url":"ipfs://QmdbPhiB5W2gbHZGkYsN7i2VTKKP9casmAN2hRnpDaL9W4", - "width":96, - "height":96, - "format":"png" + "url": "ipfs://QmdbPhiB5W2gbHZGkYsN7i2VTKKP9casmAN2hRnpDaL9W4", + "width": 96, + "height": 96, + "format": "png" } -] \ No newline at end of file +] diff --git a/_data/icons/ydk.json b/_data/icons/ydk.json new file mode 100644 index 000000000000..20ba24fd954e --- /dev/null +++ b/_data/icons/ydk.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdbFGqrpiLQGtAeUAyeS2NBvACfgrchEF466ni5q36fuZ", + "width": 401, + "height": 401, + "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/yooldo_verse.json b/_data/icons/yooldo_verse.json new file mode 100644 index 000000000000..251db7e3f97e --- /dev/null +++ b/_data/icons/yooldo_verse.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmWvfA2usnYp1ktzLcqFS8eTLgdp4ifrxjiify46KyG9NZ", + "width": 512, + "height": 512, + "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/zafirium.json b/_data/icons/zafirium.json new file mode 100644 index 000000000000..21e4c3da9263 --- /dev/null +++ b/_data/icons/zafirium.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZT1Wq3P4YbgKBSUmCtgbs5ijPF5d91BzaMPh7Aub8d8t", + "width": 192, + "height": 192, + "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/zcore.json b/_data/icons/zcore.json index 17a2141443b2..053243e60a28 100644 --- a/_data/icons/zcore.json +++ b/_data/icons/zcore.json @@ -1,8 +1,8 @@ [ - { - "url":"ipfs://QmQnXu13ym8W1VA3QxocaNVXGAuEPmamSCkS7bBscVk1f4", - "width":1050, - "height":1050, - "format":"png" - } + { + "url": "ipfs://QmQnXu13ym8W1VA3QxocaNVXGAuEPmamSCkS7bBscVk1f4", + "width": 1050, + "height": 1050, + "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/zetachain.json b/_data/icons/zetachain.json new file mode 100644 index 000000000000..13b4ce159cc1 --- /dev/null +++ b/_data/icons/zetachain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmP4Gnf4Lkp8q5LQVePNjAWxSqrw8vU2JAf7amcFz4vEUy", + "width": 712, + "height": 712, + "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/zillion.json b/_data/icons/zillion.json new file mode 100644 index 000000000000..1a51bcbfa69d --- /dev/null +++ b/_data/icons/zillion.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmfVmjLNiBh8KyCr9mwDZh34aEhhQ2LAjuP87DFxhfd9nn", + "width": 264, + "height": 264, + "format": "png" + } +] diff --git a/_data/icons/zilliqa.json b/_data/icons/zilliqa.json new file mode 100644 index 000000000000..b6a423f84a46 --- /dev/null +++ b/_data/icons/zilliqa.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmTREXNgGtUhSoxFsrkhTe5LUnDBTKL5byaX8kpET6UuKp", + "width": 2048, + "height": 2048, + "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/zkamoeba-micro.json b/_data/icons/zkamoeba-micro.json new file mode 100644 index 000000000000..72df7af69670 --- /dev/null +++ b/_data/icons/zkamoeba-micro.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRTChjmiwh9HrGsLh9qECsH7WHQAhqT5Ww8S34s8ME2Cp", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/zkbase.json b/_data/icons/zkbase.json new file mode 100644 index 000000000000..0ae419d73974 --- /dev/null +++ b/_data/icons/zkbase.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRLtNvkVhC7rRDiLMHLckWbesaSU6sNYhQZgsAM1phTZx", + "width": 400, + "height": 400, + "format": "jpg" + } +] diff --git a/_data/icons/zkcandy.json b/_data/icons/zkcandy.json new file mode 100644 index 000000000000..46b94b54d918 --- /dev/null +++ b/_data/icons/zkcandy.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreib5jsvl6kxn2qvv4giag3l3e54d2wolo2lqbgkhivxu4cpjzi77eq", + "width": 512, + "height": 512, + "format": "svg" + } +] 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/zkevm.json b/_data/icons/zkevm.json new file mode 100644 index 000000000000..4a5c19c80313 --- /dev/null +++ b/_data/icons/zkevm.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNmJZkQgx9RcFLS3rvxQTVYcPfyAFPr667keHTUxB9PDv", + "width": 122, + "height": 135, + "format": "png" + } +] diff --git a/_data/icons/zkfair.json b/_data/icons/zkfair.json new file mode 100644 index 000000000000..827826cf08ac --- /dev/null +++ b/_data/icons/zkfair.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmVb682D4mUXkKNP28xxJDNgSYbDLvEc3kVYx7TQxEa6Cw", + "width": 400, + "height": 400, + "format": "jpg" + } +] diff --git a/_data/icons/zklink-nova.json b/_data/icons/zklink-nova.json new file mode 100644 index 000000000000..d32251c6706a --- /dev/null +++ b/_data/icons/zklink-nova.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiaj7b6pdekv3rjuta5wsdvmfdcsat2jftjgozape7wvmyj6d3vjcm", + "width": 512, + "height": 512, + "format": "png" + } +] diff --git a/_data/icons/zksats.json b/_data/icons/zksats.json new file mode 100644 index 000000000000..0998c5db6b59 --- /dev/null +++ b/_data/icons/zksats.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmaopiJuCSxRKZJHDkCu9w77x2HEmbNb3QeLC1SUavehEE", + "width": 3072, + "height": 3072, + "format": "png" + } +] diff --git a/_data/icons/zksync-era.json b/_data/icons/zksync-era.json new file mode 100644 index 000000000000..3381ab020959 --- /dev/null +++ b/_data/icons/zksync-era.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmRkhUD6J3B9WhT4hEWLrcFVTrBhx3CQgNC783aJsrwxSN", + "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/zora.json b/_data/icons/zora.json new file mode 100644 index 000000000000..388975c1bbe9 --- /dev/null +++ b/_data/icons/zora.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYQf9VKTzPwQiU5xQMNbJKKGasLDVoXs2S86Ay77MStp7", + "width": 2390, + "height": 2390, + "format": "png" + } +] diff --git a/_data/icons/zoraSepoliaTestnet.json b/_data/icons/zoraSepoliaTestnet.json new file mode 100644 index 000000000000..91d926a64050 --- /dev/null +++ b/_data/icons/zoraSepoliaTestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifvrly5tgd34xqeo67s4etmiu52bkroml7uy7eosizf57htf5nrzq", + "width": 250, + "height": 250, + "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/QmNMqcPyQnaaFfUDsmsnu2T6agZfoWij3zFYebCNUPkfAH b/_data/iconsDownload/QmNMqcPyQnaaFfUDsmsnu2T6agZfoWij3zFYebCNUPkfAH new file mode 100644 index 000000000000..4e24ca1e5f99 Binary files /dev/null and b/_data/iconsDownload/QmNMqcPyQnaaFfUDsmsnu2T6agZfoWij3zFYebCNUPkfAH differ diff --git a/_data/iconsDownload/QmNMuNBwg9opKvsnrDaoYBP743LeddeooQupVYjpBXf7d7 b/_data/iconsDownload/QmNMuNBwg9opKvsnrDaoYBP743LeddeooQupVYjpBXf7d7 new file mode 100644 index 000000000000..94ecfeac77d9 Binary files /dev/null and b/_data/iconsDownload/QmNMuNBwg9opKvsnrDaoYBP743LeddeooQupVYjpBXf7d7 differ diff --git a/_data/iconsDownload/QmNR4Y3cUxefV7KGpGxMkjp5ofeJvbaUkR1GavsmTtK248 b/_data/iconsDownload/QmNR4Y3cUxefV7KGpGxMkjp5ofeJvbaUkR1GavsmTtK248 new file mode 100644 index 000000000000..f076249c9181 Binary files /dev/null and b/_data/iconsDownload/QmNR4Y3cUxefV7KGpGxMkjp5ofeJvbaUkR1GavsmTtK248 differ diff --git a/_data/iconsDownload/QmNS6B6L8FfgGSMTEi2SxD3bK5cdmKPNtQKcYaJeRWrkHs b/_data/iconsDownload/QmNS6B6L8FfgGSMTEi2SxD3bK5cdmKPNtQKcYaJeRWrkHs new file mode 100644 index 000000000000..86b41fd0b413 Binary files /dev/null and b/_data/iconsDownload/QmNS6B6L8FfgGSMTEi2SxD3bK5cdmKPNtQKcYaJeRWrkHs differ diff --git a/_data/iconsDownload/QmNSNdgbazhur7fKbTc5YgqP1oPhgSCyrm7QMkxS6itoTw b/_data/iconsDownload/QmNSNdgbazhur7fKbTc5YgqP1oPhgSCyrm7QMkxS6itoTw deleted file mode 100644 index 40a5578e8b3e..000000000000 Binary files a/_data/iconsDownload/QmNSNdgbazhur7fKbTc5YgqP1oPhgSCyrm7QMkxS6itoTw and /dev/null differ diff --git a/_data/iconsDownload/QmNSoxDnj6MV8mPJWiuzzLbATcbk5op11NTwMTdzcr272F b/_data/iconsDownload/QmNSoxDnj6MV8mPJWiuzzLbATcbk5op11NTwMTdzcr272F new file mode 100644 index 000000000000..3588cfb17523 Binary files /dev/null and b/_data/iconsDownload/QmNSoxDnj6MV8mPJWiuzzLbATcbk5op11NTwMTdzcr272F differ diff --git a/_data/iconsDownload/QmNU11AqYB2htrrSyBSP9ct7bPtuZTP7Hrz21PrEcB9nYE b/_data/iconsDownload/QmNU11AqYB2htrrSyBSP9ct7bPtuZTP7Hrz21PrEcB9nYE new file mode 100644 index 000000000000..ec0487264591 Binary files /dev/null and b/_data/iconsDownload/QmNU11AqYB2htrrSyBSP9ct7bPtuZTP7Hrz21PrEcB9nYE differ diff --git a/_data/iconsDownload/QmNUzX12Gtn4fePqJeMcACvECEH2VeUeNaMFja2kfff1WS b/_data/iconsDownload/QmNUzX12Gtn4fePqJeMcACvECEH2VeUeNaMFja2kfff1WS deleted file mode 100644 index cc95fbe60a7c..000000000000 Binary files a/_data/iconsDownload/QmNUzX12Gtn4fePqJeMcACvECEH2VeUeNaMFja2kfff1WS and /dev/null differ 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/QmNWBcc2AtknphNxt4GtTxbWF6vDkf6sh2nvkPn9wqchW6 b/_data/iconsDownload/QmNWBcc2AtknphNxt4GtTxbWF6vDkf6sh2nvkPn9wqchW6 new file mode 100644 index 000000000000..1f0498715a88 Binary files /dev/null and b/_data/iconsDownload/QmNWBcc2AtknphNxt4GtTxbWF6vDkf6sh2nvkPn9wqchW6 differ diff --git a/_data/iconsDownload/QmNWGj94URMQNyGZbGuAareEL4UpHjTwYWFEFBcX9utBZX b/_data/iconsDownload/QmNWGj94URMQNyGZbGuAareEL4UpHjTwYWFEFBcX9utBZX new file mode 100644 index 000000000000..07d62d2b0b78 Binary files /dev/null and b/_data/iconsDownload/QmNWGj94URMQNyGZbGuAareEL4UpHjTwYWFEFBcX9utBZX differ diff --git a/_data/iconsDownload/QmNZiMmzMQYjyGtNSghtzLg4UooYhDgMQsa677DAP5KsBg b/_data/iconsDownload/QmNZiMmzMQYjyGtNSghtzLg4UooYhDgMQsa677DAP5KsBg new file mode 100644 index 000000000000..155c80b8109b Binary files /dev/null and b/_data/iconsDownload/QmNZiMmzMQYjyGtNSghtzLg4UooYhDgMQsa677DAP5KsBg differ diff --git a/_data/iconsDownload/QmNduBtT5BNGDw7DjRwDvaZBb6gjxf46WD7BYhn4gauGc9 b/_data/iconsDownload/QmNduBtT5BNGDw7DjRwDvaZBb6gjxf46WD7BYhn4gauGc9 new file mode 100644 index 000000000000..de94923d8e7d Binary files /dev/null and b/_data/iconsDownload/QmNduBtT5BNGDw7DjRwDvaZBb6gjxf46WD7BYhn4gauGc9 differ diff --git a/_data/iconsDownload/QmNekc5gpyrQkeDQcmfJLBrP5fa6GMarB13iy6aHVdQJDU b/_data/iconsDownload/QmNekc5gpyrQkeDQcmfJLBrP5fa6GMarB13iy6aHVdQJDU new file mode 100644 index 000000000000..384d0e94f538 Binary files /dev/null and b/_data/iconsDownload/QmNekc5gpyrQkeDQcmfJLBrP5fa6GMarB13iy6aHVdQJDU differ diff --git a/_data/iconsDownload/QmNmAFgQKkjofaBR5mhB5ygE1Gna36YBVsGkgZQxrwW85s b/_data/iconsDownload/QmNmAFgQKkjofaBR5mhB5ygE1Gna36YBVsGkgZQxrwW85s new file mode 100644 index 000000000000..1187d21a66ef Binary files /dev/null and b/_data/iconsDownload/QmNmAFgQKkjofaBR5mhB5ygE1Gna36YBVsGkgZQxrwW85s differ diff --git a/_data/iconsDownload/QmNmJZkQgx9RcFLS3rvxQTVYcPfyAFPr667keHTUxB9PDv b/_data/iconsDownload/QmNmJZkQgx9RcFLS3rvxQTVYcPfyAFPr667keHTUxB9PDv new file mode 100644 index 000000000000..3bc18795590a Binary files /dev/null and b/_data/iconsDownload/QmNmJZkQgx9RcFLS3rvxQTVYcPfyAFPr667keHTUxB9PDv differ diff --git a/_data/iconsDownload/QmNsuuBBTHErnuFDcdyzaY8CKoVJtobsLJx2WQjaPjcp7g b/_data/iconsDownload/QmNsuuBBTHErnuFDcdyzaY8CKoVJtobsLJx2WQjaPjcp7g new file mode 100644 index 000000000000..eb702d441845 Binary files /dev/null and b/_data/iconsDownload/QmNsuuBBTHErnuFDcdyzaY8CKoVJtobsLJx2WQjaPjcp7g differ diff --git a/_data/iconsDownload/QmNtr72zqg3eKGNyVVNgTNLddPm3nUCqggXYyE9vQxZDW2 b/_data/iconsDownload/QmNtr72zqg3eKGNyVVNgTNLddPm3nUCqggXYyE9vQxZDW2 deleted file mode 100644 index 9cb9d211514f..000000000000 Binary files a/_data/iconsDownload/QmNtr72zqg3eKGNyVVNgTNLddPm3nUCqggXYyE9vQxZDW2 and /dev/null differ diff --git a/_data/iconsDownload/QmNuQjnJ1JXkPRDwbFL1oZRpEaPhggPpccteAaxSPYBJJN b/_data/iconsDownload/QmNuQjnJ1JXkPRDwbFL1oZRpEaPhggPpccteAaxSPYBJJN new file mode 100644 index 000000000000..28a67571c551 Binary files /dev/null and b/_data/iconsDownload/QmNuQjnJ1JXkPRDwbFL1oZRpEaPhggPpccteAaxSPYBJJN differ diff --git a/_data/iconsDownload/QmNutSgM7n6aJPPDiofe9Dm1epy1RcYTMvugukLUK2vmPM b/_data/iconsDownload/QmNutSgM7n6aJPPDiofe9Dm1epy1RcYTMvugukLUK2vmPM new file mode 100644 index 000000000000..0232b1bc288c Binary files /dev/null and b/_data/iconsDownload/QmNutSgM7n6aJPPDiofe9Dm1epy1RcYTMvugukLUK2vmPM differ diff --git a/_data/iconsDownload/QmNvoUp2RWiWQzHUKrZ7SnPzwF3FbCNd3jSdpGJhQdH1y5 b/_data/iconsDownload/QmNvoUp2RWiWQzHUKrZ7SnPzwF3FbCNd3jSdpGJhQdH1y5 new file mode 100644 index 000000000000..02ed600c2250 Binary files /dev/null and b/_data/iconsDownload/QmNvoUp2RWiWQzHUKrZ7SnPzwF3FbCNd3jSdpGJhQdH1y5 differ diff --git a/_data/iconsDownload/QmNx8FRacfNeawhkjk5p57EKzDHkLGMaBBmK2VRL5CB2P2 b/_data/iconsDownload/QmNx8FRacfNeawhkjk5p57EKzDHkLGMaBBmK2VRL5CB2P2 new file mode 100644 index 000000000000..6391f190fab6 --- /dev/null +++ b/_data/iconsDownload/QmNx8FRacfNeawhkjk5p57EKzDHkLGMaBBmK2VRL5CB2P2 @@ -0,0 +1,7 @@ + + + + + + + diff --git a/_data/iconsDownload/QmNzwHAmaaQyuvKudrzGkrTT2GMshcmCmJ9FH8gG2mNJtM b/_data/iconsDownload/QmNzwHAmaaQyuvKudrzGkrTT2GMshcmCmJ9FH8gG2mNJtM new file mode 100644 index 000000000000..86047fcc78aa --- /dev/null +++ b/_data/iconsDownload/QmNzwHAmaaQyuvKudrzGkrTT2GMshcmCmJ9FH8gG2mNJtM @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_data/iconsDownload/QmP4Gnf4Lkp8q5LQVePNjAWxSqrw8vU2JAf7amcFz4vEUy b/_data/iconsDownload/QmP4Gnf4Lkp8q5LQVePNjAWxSqrw8vU2JAf7amcFz4vEUy new file mode 100644 index 000000000000..e41413769538 Binary files /dev/null and b/_data/iconsDownload/QmP4Gnf4Lkp8q5LQVePNjAWxSqrw8vU2JAf7amcFz4vEUy differ diff --git a/_data/iconsDownload/QmP93z696v8Hetu13peY2oEHDXq8Bj5CqaDRwpVkpnM15A b/_data/iconsDownload/QmP93z696v8Hetu13peY2oEHDXq8Bj5CqaDRwpVkpnM15A new file mode 100644 index 000000000000..55494457b30b Binary files /dev/null and b/_data/iconsDownload/QmP93z696v8Hetu13peY2oEHDXq8Bj5CqaDRwpVkpnM15A 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/QmPB7uW7Wj8zWWdeuPnUHPJ5FhaiTL76tv4ZQ4oKWEpb1g b/_data/iconsDownload/QmPB7uW7Wj8zWWdeuPnUHPJ5FhaiTL76tv4ZQ4oKWEpb1g new file mode 100644 index 000000000000..c5c941f25318 Binary files /dev/null and b/_data/iconsDownload/QmPB7uW7Wj8zWWdeuPnUHPJ5FhaiTL76tv4ZQ4oKWEpb1g differ diff --git a/_data/iconsDownload/QmPC6odFVyAQrXJQaZJVFpEQfRNbzZ5BjDZ7KBKmXPaYDw b/_data/iconsDownload/QmPC6odFVyAQrXJQaZJVFpEQfRNbzZ5BjDZ7KBKmXPaYDw new file mode 100644 index 000000000000..8b0b7b46b994 Binary files /dev/null and b/_data/iconsDownload/QmPC6odFVyAQrXJQaZJVFpEQfRNbzZ5BjDZ7KBKmXPaYDw differ diff --git a/_data/iconsDownload/QmPCEGZD1p1keTT2YfPp725azx1r9Ci41hejeUuGL2whFA b/_data/iconsDownload/QmPCEGZD1p1keTT2YfPp725azx1r9Ci41hejeUuGL2whFA new file mode 100644 index 000000000000..ae44a0c60c1b Binary files /dev/null and b/_data/iconsDownload/QmPCEGZD1p1keTT2YfPp725azx1r9Ci41hejeUuGL2whFA differ diff --git a/_data/iconsDownload/QmPLMg5mYD8XRknvYbDkD2x7FXxYan7MPTeUWZC2CihwDM b/_data/iconsDownload/QmPLMg5mYD8XRknvYbDkD2x7FXxYan7MPTeUWZC2CihwDM new file mode 100644 index 000000000000..771e3ac84994 Binary files /dev/null and b/_data/iconsDownload/QmPLMg5mYD8XRknvYbDkD2x7FXxYan7MPTeUWZC2CihwDM differ diff --git a/_data/iconsDownload/QmPMqjf5XKZ4Cxa1u8qc8Zj9mmVLBoqK7N5h2zFr3Rsyzw b/_data/iconsDownload/QmPMqjf5XKZ4Cxa1u8qc8Zj9mmVLBoqK7N5h2zFr3Rsyzw new file mode 100644 index 000000000000..c8e5575b1d91 Binary files /dev/null and b/_data/iconsDownload/QmPMqjf5XKZ4Cxa1u8qc8Zj9mmVLBoqK7N5h2zFr3Rsyzw differ diff --git a/_data/iconsDownload/QmPNuymyaKLJhCaXnyrsL8358FeTxabZFsaxMmWNU4Tzt3 b/_data/iconsDownload/QmPNuymyaKLJhCaXnyrsL8358FeTxabZFsaxMmWNU4Tzt3 new file mode 100644 index 000000000000..b92f33c5b0e9 Binary files /dev/null and b/_data/iconsDownload/QmPNuymyaKLJhCaXnyrsL8358FeTxabZFsaxMmWNU4Tzt3 differ diff --git a/_data/iconsDownload/QmPRDuEJSTqp2cDUvWCp71Wns6XV8nvdeAVKWH6srpk4xM b/_data/iconsDownload/QmPRDuEJSTqp2cDUvWCp71Wns6XV8nvdeAVKWH6srpk4xM new file mode 100644 index 000000000000..170b50249fbf Binary files /dev/null and b/_data/iconsDownload/QmPRDuEJSTqp2cDUvWCp71Wns6XV8nvdeAVKWH6srpk4xM differ diff --git a/_data/iconsDownload/QmPX3uipdwd195z1MJff7uj8hpZdSuVvM5z47eiz2o7Gz5 b/_data/iconsDownload/QmPX3uipdwd195z1MJff7uj8hpZdSuVvM5z47eiz2o7Gz5 new file mode 100644 index 000000000000..bfe577fe5121 Binary files /dev/null and b/_data/iconsDownload/QmPX3uipdwd195z1MJff7uj8hpZdSuVvM5z47eiz2o7Gz5 differ diff --git a/_data/iconsDownload/QmPX6cfsBkVTDyo56kjzNDVDqFviP3BqL83QSP1V4UmvgK b/_data/iconsDownload/QmPX6cfsBkVTDyo56kjzNDVDqFviP3BqL83QSP1V4UmvgK deleted file mode 100644 index 299a20226a79..000000000000 Binary files a/_data/iconsDownload/QmPX6cfsBkVTDyo56kjzNDVDqFviP3BqL83QSP1V4UmvgK and /dev/null differ diff --git a/_data/iconsDownload/QmPXhdPGufjcPzZ9Y6nY6QyW8MgA6793L88iPMRh1Q3gjJ b/_data/iconsDownload/QmPXhdPGufjcPzZ9Y6nY6QyW8MgA6793L88iPMRh1Q3gjJ new file mode 100644 index 000000000000..066feb7cd529 Binary files /dev/null and b/_data/iconsDownload/QmPXhdPGufjcPzZ9Y6nY6QyW8MgA6793L88iPMRh1Q3gjJ differ diff --git a/_data/iconsDownload/QmPasA8xykRtJDivB2bcKDiRCUNWDPtfUTTKVAcaF2wVxC b/_data/iconsDownload/QmPasA8xykRtJDivB2bcKDiRCUNWDPtfUTTKVAcaF2wVxC new file mode 100644 index 000000000000..d2a13c2e81f1 Binary files /dev/null and b/_data/iconsDownload/QmPasA8xykRtJDivB2bcKDiRCUNWDPtfUTTKVAcaF2wVxC differ diff --git a/_data/iconsDownload/QmPdxcJwPogfZdec7UAqxeatRxrivEktpP1ftJBTeJQTdR b/_data/iconsDownload/QmPdxcJwPogfZdec7UAqxeatRxrivEktpP1ftJBTeJQTdR new file mode 100644 index 000000000000..71acf785f70b Binary files /dev/null and b/_data/iconsDownload/QmPdxcJwPogfZdec7UAqxeatRxrivEktpP1ftJBTeJQTdR differ diff --git a/_data/iconsDownload/QmPgpWfGsAZ5UHekWFR8rioadVe3Wox8idFyeVxuv9N4Vo b/_data/iconsDownload/QmPgpWfGsAZ5UHekWFR8rioadVe3Wox8idFyeVxuv9N4Vo new file mode 100644 index 000000000000..f80c1573dcbd --- /dev/null +++ b/_data/iconsDownload/QmPgpWfGsAZ5UHekWFR8rioadVe3Wox8idFyeVxuv9N4Vo @@ -0,0 +1,11 @@ + + + Created with Pixso. + + + + + + + + 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/QmPko9BJhR5FWTsThcwUFnnnjgLjrXVDm1n98dCuaQNW59 b/_data/iconsDownload/QmPko9BJhR5FWTsThcwUFnnnjgLjrXVDm1n98dCuaQNW59 new file mode 100644 index 000000000000..b20ce9b6752a Binary files /dev/null and b/_data/iconsDownload/QmPko9BJhR5FWTsThcwUFnnnjgLjrXVDm1n98dCuaQNW59 differ diff --git a/_data/iconsDownload/QmPmZ6vgtdMG7jttVZQUobF96Sva1noi5Fsi28V1Eck6eC b/_data/iconsDownload/QmPmZ6vgtdMG7jttVZQUobF96Sva1noi5Fsi28V1Eck6eC new file mode 100644 index 000000000000..b5e0a7502341 Binary files /dev/null and b/_data/iconsDownload/QmPmZ6vgtdMG7jttVZQUobF96Sva1noi5Fsi28V1Eck6eC differ diff --git a/_data/iconsDownload/QmPuQ6gaCfUtNdRuaEDbdhot2m2KCy2ZHCJUvZXJAtdeyJ b/_data/iconsDownload/QmPuQ6gaCfUtNdRuaEDbdhot2m2KCy2ZHCJUvZXJAtdeyJ new file mode 100644 index 000000000000..aaef521cb4ee Binary files /dev/null and b/_data/iconsDownload/QmPuQ6gaCfUtNdRuaEDbdhot2m2KCy2ZHCJUvZXJAtdeyJ differ diff --git a/_data/iconsDownload/QmPw1ixYYeXvTiRWoCt2jWe4YMd3B5o7TzL18SBEHXvhXX b/_data/iconsDownload/QmPw1ixYYeXvTiRWoCt2jWe4YMd3B5o7TzL18SBEHXvhXX new file mode 100644 index 000000000000..249955dfa495 Binary files /dev/null and b/_data/iconsDownload/QmPw1ixYYeXvTiRWoCt2jWe4YMd3B5o7TzL18SBEHXvhXX differ diff --git a/_data/iconsDownload/QmPzVFs16GwaD8LAcGFLCNXzEK8BHFKNXeM3nmBpnq9xy3 b/_data/iconsDownload/QmPzVFs16GwaD8LAcGFLCNXzEK8BHFKNXeM3nmBpnq9xy3 new file mode 100644 index 000000000000..a416997263da Binary files /dev/null and b/_data/iconsDownload/QmPzVFs16GwaD8LAcGFLCNXzEK8BHFKNXeM3nmBpnq9xy3 differ diff --git a/_data/iconsDownload/QmQ4V9JC25yUrYk2kFJwmKguSsZBQvtGcg6q9zkDV8mkJW b/_data/iconsDownload/QmQ4V9JC25yUrYk2kFJwmKguSsZBQvtGcg6q9zkDV8mkJW new file mode 100644 index 000000000000..13b036750077 Binary files /dev/null and b/_data/iconsDownload/QmQ4V9JC25yUrYk2kFJwmKguSsZBQvtGcg6q9zkDV8mkJW 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/QmQDNdhPvCrrijEKC3G9Px5if2CHgdxq7Q2Pg66cy9xwbF b/_data/iconsDownload/QmQDNdhPvCrrijEKC3G9Px5if2CHgdxq7Q2Pg66cy9xwbF new file mode 100644 index 000000000000..27e1e63678ef Binary files /dev/null and b/_data/iconsDownload/QmQDNdhPvCrrijEKC3G9Px5if2CHgdxq7Q2Pg66cy9xwbF differ diff --git a/_data/iconsDownload/QmQJ21NWyGGDraicVEzS1Uqq1yXahM9NCuNZgnfYvtspdt b/_data/iconsDownload/QmQJ21NWyGGDraicVEzS1Uqq1yXahM9NCuNZgnfYvtspdt new file mode 100755 index 000000000000..2bc6d330a367 Binary files /dev/null and b/_data/iconsDownload/QmQJ21NWyGGDraicVEzS1Uqq1yXahM9NCuNZgnfYvtspdt differ diff --git a/_data/iconsDownload/QmQUHqi1gyuTuKmJQHqt9EyhN1FPmmmLNUK8u93nMGrxAy b/_data/iconsDownload/QmQUHqi1gyuTuKmJQHqt9EyhN1FPmmmLNUK8u93nMGrxAy new file mode 100644 index 000000000000..bce840c7daaf Binary files /dev/null and b/_data/iconsDownload/QmQUHqi1gyuTuKmJQHqt9EyhN1FPmmmLNUK8u93nMGrxAy differ diff --git a/_data/iconsDownload/QmQUQKe8VEtSthhgXnJ3EmEz94YhpVCpUDZAiU9KYyNLya b/_data/iconsDownload/QmQUQKe8VEtSthhgXnJ3EmEz94YhpVCpUDZAiU9KYyNLya new file mode 100644 index 000000000000..42007ca1cd6e Binary files /dev/null and b/_data/iconsDownload/QmQUQKe8VEtSthhgXnJ3EmEz94YhpVCpUDZAiU9KYyNLya differ 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/QmQikzhvZKyMmbZJd7BVLZb2YTBDMgNDnaMCAErsVjsfuz b/_data/iconsDownload/QmQikzhvZKyMmbZJd7BVLZb2YTBDMgNDnaMCAErsVjsfuz new file mode 100644 index 000000000000..74a0807c6e75 Binary files /dev/null and b/_data/iconsDownload/QmQikzhvZKyMmbZJd7BVLZb2YTBDMgNDnaMCAErsVjsfuz differ diff --git a/_data/iconsDownload/QmQjwcNRCLXU8JBtSkPLUnbWVrpoqbnZVffpJ9Bu8rG34e b/_data/iconsDownload/QmQjwcNRCLXU8JBtSkPLUnbWVrpoqbnZVffpJ9Bu8rG34e new file mode 100644 index 000000000000..fd0bf51fbe9b --- /dev/null +++ b/_data/iconsDownload/QmQjwcNRCLXU8JBtSkPLUnbWVrpoqbnZVffpJ9Bu8rG34e @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_data/iconsDownload/QmQk41bYX6WpYyUAdRgomZekxP5mbvZXhfxLEEqtatyJv4 b/_data/iconsDownload/QmQk41bYX6WpYyUAdRgomZekxP5mbvZXhfxLEEqtatyJv4 new file mode 100644 index 000000000000..d6b3fbcc36b3 Binary files /dev/null and b/_data/iconsDownload/QmQk41bYX6WpYyUAdRgomZekxP5mbvZXhfxLEEqtatyJv4 differ diff --git a/_data/iconsDownload/QmQnXu13ym8W1VA3QxocaNVXGAuEPmamSCkS7bBscVk1f4 b/_data/iconsDownload/QmQnXu13ym8W1VA3QxocaNVXGAuEPmamSCkS7bBscVk1f4 new file mode 100644 index 000000000000..5f6b8c0c6e9d Binary files /dev/null and b/_data/iconsDownload/QmQnXu13ym8W1VA3QxocaNVXGAuEPmamSCkS7bBscVk1f4 differ diff --git a/_data/iconsDownload/QmQpKKwpqrx77VA4SJLEWhuv9eLFMcVV9uvxRCLb6gdgCX b/_data/iconsDownload/QmQpKKwpqrx77VA4SJLEWhuv9eLFMcVV9uvxRCLb6gdgCX new file mode 100644 index 000000000000..5fd2698d0c9b Binary files /dev/null and b/_data/iconsDownload/QmQpKKwpqrx77VA4SJLEWhuv9eLFMcVV9uvxRCLb6gdgCX differ diff --git a/_data/iconsDownload/QmQqhH28QpUrreoRw5Gj8YShzdHxxVGMjfVrx3TqJNLSLv b/_data/iconsDownload/QmQqhH28QpUrreoRw5Gj8YShzdHxxVGMjfVrx3TqJNLSLv new file mode 100644 index 000000000000..f7f5579d7807 Binary files /dev/null and b/_data/iconsDownload/QmQqhH28QpUrreoRw5Gj8YShzdHxxVGMjfVrx3TqJNLSLv differ diff --git a/_data/iconsDownload/QmQtEHaejiDbmiCvbBYw9jNQv3DLK5XHCQwLRfnLNpdN5j b/_data/iconsDownload/QmQtEHaejiDbmiCvbBYw9jNQv3DLK5XHCQwLRfnLNpdN5j new file mode 100644 index 000000000000..550f5b25b226 Binary files /dev/null and b/_data/iconsDownload/QmQtEHaejiDbmiCvbBYw9jNQv3DLK5XHCQwLRfnLNpdN5j differ diff --git a/_data/iconsDownload/QmQtcwxNiJ9D1QDz4k6jZ7qacLcqMk6CeW85TTBWBvNp3z b/_data/iconsDownload/QmQtcwxNiJ9D1QDz4k6jZ7qacLcqMk6CeW85TTBWBvNp3z new file mode 100644 index 000000000000..6fc9145972a2 Binary files /dev/null and b/_data/iconsDownload/QmQtcwxNiJ9D1QDz4k6jZ7qacLcqMk6CeW85TTBWBvNp3z 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/QmQuvmiN6vM6Rqzqe1pMzDf8iZXqTtSeqCgGe5k5AyksDU b/_data/iconsDownload/QmQuvmiN6vM6Rqzqe1pMzDf8iZXqTtSeqCgGe5k5AyksDU new file mode 100644 index 000000000000..920a8d5e0f91 Binary files /dev/null and b/_data/iconsDownload/QmQuvmiN6vM6Rqzqe1pMzDf8iZXqTtSeqCgGe5k5AyksDU differ diff --git a/_data/iconsDownload/QmQxGA6rhuCQDXUueVcNvFRhMEWisyTmnF57TqL7h6k6cZ b/_data/iconsDownload/QmQxGA6rhuCQDXUueVcNvFRhMEWisyTmnF57TqL7h6k6cZ new file mode 100644 index 000000000000..754f9afe0a14 Binary files /dev/null and b/_data/iconsDownload/QmQxGA6rhuCQDXUueVcNvFRhMEWisyTmnF57TqL7h6k6cZ differ diff --git a/_data/iconsDownload/QmQyJt28h4wN3QHPXUQJQYQqGiFUD77han3zibZPzHbitk b/_data/iconsDownload/QmQyJt28h4wN3QHPXUQJQYQqGiFUD77han3zibZPzHbitk new file mode 100644 index 000000000000..b7d0770b575c Binary files /dev/null and b/_data/iconsDownload/QmQyJt28h4wN3QHPXUQJQYQqGiFUD77han3zibZPzHbitk 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/QmR1oDRSadPerfyWMhKHNP268vPKvpczt5zPawgFSZisz2 b/_data/iconsDownload/QmR1oDRSadPerfyWMhKHNP268vPKvpczt5zPawgFSZisz2 new file mode 100644 index 000000000000..2307cb5b6d86 Binary files /dev/null and b/_data/iconsDownload/QmR1oDRSadPerfyWMhKHNP268vPKvpczt5zPawgFSZisz2 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/QmRAFFPiLiSgjGTs9QaZdnR9fsDgyUdTejwSxcnPXo292s b/_data/iconsDownload/QmRAFFPiLiSgjGTs9QaZdnR9fsDgyUdTejwSxcnPXo292s new file mode 100644 index 000000000000..2b78de77306d Binary files /dev/null and b/_data/iconsDownload/QmRAFFPiLiSgjGTs9QaZdnR9fsDgyUdTejwSxcnPXo292s differ diff --git a/_data/iconsDownload/QmRALA5qvQBRwWre8ofuhCbr3wxVmPS3kGetRR9uJqbqqe b/_data/iconsDownload/QmRALA5qvQBRwWre8ofuhCbr3wxVmPS3kGetRR9uJqbqqe new file mode 100644 index 000000000000..73ff5079148c Binary files /dev/null and b/_data/iconsDownload/QmRALA5qvQBRwWre8ofuhCbr3wxVmPS3kGetRR9uJqbqqe differ diff --git a/_data/iconsDownload/QmRD7itMvaZutfBjyA7V9xkMGDtsZiJSagPwd3ijqka8kE b/_data/iconsDownload/QmRD7itMvaZutfBjyA7V9xkMGDtsZiJSagPwd3ijqka8kE new file mode 100644 index 000000000000..7d1cc1a98d72 Binary files /dev/null and b/_data/iconsDownload/QmRD7itMvaZutfBjyA7V9xkMGDtsZiJSagPwd3ijqka8kE differ diff --git a/_data/iconsDownload/QmRGJ6PqYHDTWuUQ6xfnK8S82NzRXiMjTnSGat9qtLuaLP b/_data/iconsDownload/QmRGJ6PqYHDTWuUQ6xfnK8S82NzRXiMjTnSGat9qtLuaLP new file mode 100644 index 000000000000..0b87521764c8 Binary files /dev/null and b/_data/iconsDownload/QmRGJ6PqYHDTWuUQ6xfnK8S82NzRXiMjTnSGat9qtLuaLP differ diff --git a/_data/iconsDownload/QmRLtNvkVhC7rRDiLMHLckWbesaSU6sNYhQZgsAM1phTZx b/_data/iconsDownload/QmRLtNvkVhC7rRDiLMHLckWbesaSU6sNYhQZgsAM1phTZx new file mode 100644 index 000000000000..c49a2caf7bb2 Binary files /dev/null and b/_data/iconsDownload/QmRLtNvkVhC7rRDiLMHLckWbesaSU6sNYhQZgsAM1phTZx differ diff --git a/_data/iconsDownload/QmRNqgazYuxUa5WdddFPftTWiP3KwzBMgV9Z19QWnLMETc b/_data/iconsDownload/QmRNqgazYuxUa5WdddFPftTWiP3KwzBMgV9Z19QWnLMETc new file mode 100644 index 000000000000..7f5493343bef Binary files /dev/null and b/_data/iconsDownload/QmRNqgazYuxUa5WdddFPftTWiP3KwzBMgV9Z19QWnLMETc differ diff --git a/_data/iconsDownload/QmRUrz4dULaoaMpnqd8qXT7ehwz3aaqnYKY4ePsy7isGaF b/_data/iconsDownload/QmRUrz4dULaoaMpnqd8qXT7ehwz3aaqnYKY4ePsy7isGaF new file mode 100644 index 000000000000..db84c8cb3990 Binary files /dev/null and b/_data/iconsDownload/QmRUrz4dULaoaMpnqd8qXT7ehwz3aaqnYKY4ePsy7isGaF 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/QmRc1kJ7AgcDL1BSoMYudatWHTrz27K6WNTwGifQb5V17D b/_data/iconsDownload/QmRc1kJ7AgcDL1BSoMYudatWHTrz27K6WNTwGifQb5V17D new file mode 100644 index 000000000000..46d3398edfc1 Binary files /dev/null and b/_data/iconsDownload/QmRc1kJ7AgcDL1BSoMYudatWHTrz27K6WNTwGifQb5V17D differ diff --git a/_data/iconsDownload/QmRegpZQBW4o1imYNsW3d27MQjygBSU23Gf6JKje26nvs7 b/_data/iconsDownload/QmRegpZQBW4o1imYNsW3d27MQjygBSU23Gf6JKje26nvs7 new file mode 100644 index 000000000000..f1c156e8df6e Binary files /dev/null and b/_data/iconsDownload/QmRegpZQBW4o1imYNsW3d27MQjygBSU23Gf6JKje26nvs7 differ diff --git a/_data/iconsDownload/QmRgZVpjik4cH3Sb6wLRpdnfv9kiMEZ8fugfkzTgk3bpRW b/_data/iconsDownload/QmRgZVpjik4cH3Sb6wLRpdnfv9kiMEZ8fugfkzTgk3bpRW new file mode 100644 index 000000000000..68e76c1c5f76 Binary files /dev/null and b/_data/iconsDownload/QmRgZVpjik4cH3Sb6wLRpdnfv9kiMEZ8fugfkzTgk3bpRW differ diff --git a/_data/iconsDownload/QmRiAUu3xV5uiX6Nk1iXD5w6qjki5ugGFETRVavzJ2h5QF b/_data/iconsDownload/QmRiAUu3xV5uiX6Nk1iXD5w6qjki5ugGFETRVavzJ2h5QF new file mode 100644 index 000000000000..1a7db12df37f Binary files /dev/null and b/_data/iconsDownload/QmRiAUu3xV5uiX6Nk1iXD5w6qjki5ugGFETRVavzJ2h5QF differ diff --git a/_data/iconsDownload/QmRidubY7BVwC737BQwGEttenP1npAXN7ZNryktE416uUW b/_data/iconsDownload/QmRidubY7BVwC737BQwGEttenP1npAXN7ZNryktE416uUW new file mode 100644 index 000000000000..a709674aa2d9 Binary files /dev/null and b/_data/iconsDownload/QmRidubY7BVwC737BQwGEttenP1npAXN7ZNryktE416uUW 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/QmRkhUD6J3B9WhT4hEWLrcFVTrBhx3CQgNC783aJsrwxSN b/_data/iconsDownload/QmRkhUD6J3B9WhT4hEWLrcFVTrBhx3CQgNC783aJsrwxSN new file mode 100644 index 000000000000..ad3f730f4147 --- /dev/null +++ b/_data/iconsDownload/QmRkhUD6J3B9WhT4hEWLrcFVTrBhx3CQgNC783aJsrwxSN @@ -0,0 +1,5 @@ + + + + + diff --git a/_data/iconsDownload/QmRm6gcEPJmU9a86zrmyP7FALTN4Toz9HrnrL2Kwg6FPeh b/_data/iconsDownload/QmRm6gcEPJmU9a86zrmyP7FALTN4Toz9HrnrL2Kwg6FPeh new file mode 100644 index 000000000000..bbad92f6d030 Binary files /dev/null and b/_data/iconsDownload/QmRm6gcEPJmU9a86zrmyP7FALTN4Toz9HrnrL2Kwg6FPeh differ diff --git a/_data/iconsDownload/QmRnnw2gtbU9TWJMLJ6tks7SN6HQV5rRugeoyN6csTYHt1 b/_data/iconsDownload/QmRnnw2gtbU9TWJMLJ6tks7SN6HQV5rRugeoyN6csTYHt1 new file mode 100644 index 000000000000..5911e99caad3 Binary files /dev/null and b/_data/iconsDownload/QmRnnw2gtbU9TWJMLJ6tks7SN6HQV5rRugeoyN6csTYHt1 differ diff --git a/_data/iconsDownload/QmRu7KmQoC2vSVeD7Y6bxRYikQHYs86H9fRAdb1ytPkK9r b/_data/iconsDownload/QmRu7KmQoC2vSVeD7Y6bxRYikQHYs86H9fRAdb1ytPkK9r deleted file mode 100644 index c4cbc90eca68..000000000000 Binary files a/_data/iconsDownload/QmRu7KmQoC2vSVeD7Y6bxRYikQHYs86H9fRAdb1ytPkK9r and /dev/null differ diff --git a/_data/iconsDownload/QmS33ypsZ1Hx5LMMACaJaxePy9QNYMwu4D12niobExLK74 b/_data/iconsDownload/QmS33ypsZ1Hx5LMMACaJaxePy9QNYMwu4D12niobExLK74 new file mode 100644 index 000000000000..257d92de2856 Binary files /dev/null and b/_data/iconsDownload/QmS33ypsZ1Hx5LMMACaJaxePy9QNYMwu4D12niobExLK74 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/QmS78hUX5zqYDqoFgyVmtWpCcx7bZW86Nhw5Nqt2GJrLh2 b/_data/iconsDownload/QmS78hUX5zqYDqoFgyVmtWpCcx7bZW86Nhw5Nqt2GJrLh2 new file mode 100644 index 000000000000..a1557c5aa9cd Binary files /dev/null and b/_data/iconsDownload/QmS78hUX5zqYDqoFgyVmtWpCcx7bZW86Nhw5Nqt2GJrLh2 differ diff --git a/_data/iconsDownload/QmS7ipvvyZ16weG1DM7AZbi1v9ixYwU2FjP25Jj5jkLiuf b/_data/iconsDownload/QmS7ipvvyZ16weG1DM7AZbi1v9ixYwU2FjP25Jj5jkLiuf new file mode 100644 index 000000000000..197e69b4ca78 Binary files /dev/null and b/_data/iconsDownload/QmS7ipvvyZ16weG1DM7AZbi1v9ixYwU2FjP25Jj5jkLiuf differ diff --git a/_data/iconsDownload/QmS8zEetTb6pwdNpVjv5bz55BXiSMGP9BjTJmNcjcUT91t b/_data/iconsDownload/QmS8zEetTb6pwdNpVjv5bz55BXiSMGP9BjTJmNcjcUT91t new file mode 100644 index 000000000000..8bbed0b25655 --- /dev/null +++ b/_data/iconsDownload/QmS8zEetTb6pwdNpVjv5bz55BXiSMGP9BjTJmNcjcUT91t @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_data/iconsDownload/QmS9h3nFiCzaBLnBNw8Wot4U7vvEVK45EQfi8nxH4nvrmz b/_data/iconsDownload/QmS9h3nFiCzaBLnBNw8Wot4U7vvEVK45EQfi8nxH4nvrmz new file mode 100644 index 000000000000..fc1bf96f2c91 Binary files /dev/null and b/_data/iconsDownload/QmS9h3nFiCzaBLnBNw8Wot4U7vvEVK45EQfi8nxH4nvrmz differ diff --git a/_data/iconsDownload/QmS9r9XQkMHVomWcSBNDkKkz9n87h9bH9ssabeiKZtANoU b/_data/iconsDownload/QmS9r9XQkMHVomWcSBNDkKkz9n87h9bH9ssabeiKZtANoU new file mode 100644 index 000000000000..797bc78346d3 Binary files /dev/null and b/_data/iconsDownload/QmS9r9XQkMHVomWcSBNDkKkz9n87h9bH9ssabeiKZtANoU differ diff --git a/_data/iconsDownload/QmSAFx34SKNi7a139agX12f68oBMo2Ktt9c8yD8aFa14gd b/_data/iconsDownload/QmSAFx34SKNi7a139agX12f68oBMo2Ktt9c8yD8aFa14gd new file mode 100644 index 000000000000..756ab4c5b567 --- /dev/null +++ b/_data/iconsDownload/QmSAFx34SKNi7a139agX12f68oBMo2Ktt9c8yD8aFa14gd @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_data/iconsDownload/QmSEoUonisawfCvT3osysuZzbqUEHugtgNraePKWL8PKYa b/_data/iconsDownload/QmSEoUonisawfCvT3osysuZzbqUEHugtgNraePKWL8PKYa new file mode 100644 index 000000000000..feb2f494d1eb Binary files /dev/null and b/_data/iconsDownload/QmSEoUonisawfCvT3osysuZzbqUEHugtgNraePKWL8PKYa differ diff --git a/_data/iconsDownload/QmSEsi71AdA5HYH6VNC5QUQezFg1C7BiVQJdx1VVfGz3g3 b/_data/iconsDownload/QmSEsi71AdA5HYH6VNC5QUQezFg1C7BiVQJdx1VVfGz3g3 new file mode 100644 index 000000000000..369a71f7218c Binary files /dev/null and b/_data/iconsDownload/QmSEsi71AdA5HYH6VNC5QUQezFg1C7BiVQJdx1VVfGz3g3 differ diff --git a/_data/iconsDownload/QmSFMBk3rMyu45Sy9KQHjgArFj4HdywANNYrSosLMUdcti b/_data/iconsDownload/QmSFMBk3rMyu45Sy9KQHjgArFj4HdywANNYrSosLMUdcti new file mode 100644 index 000000000000..372e0b439e24 Binary files /dev/null and b/_data/iconsDownload/QmSFMBk3rMyu45Sy9KQHjgArFj4HdywANNYrSosLMUdcti differ diff --git a/_data/iconsDownload/QmSP66CHynXpMYkjV28uLjTR4kjuoJyy92igYYpvLoqHtG b/_data/iconsDownload/QmSP66CHynXpMYkjV28uLjTR4kjuoJyy92igYYpvLoqHtG new file mode 100644 index 000000000000..57b5a9cd39ed Binary files /dev/null and b/_data/iconsDownload/QmSP66CHynXpMYkjV28uLjTR4kjuoJyy92igYYpvLoqHtG differ diff --git a/_data/iconsDownload/QmSPD3QcjFJL2KpYRnNDxa8Xg5rcSgPugG9kcBBNeavVKi b/_data/iconsDownload/QmSPD3QcjFJL2KpYRnNDxa8Xg5rcSgPugG9kcBBNeavVKi new file mode 100644 index 000000000000..c165a8106379 Binary files /dev/null and b/_data/iconsDownload/QmSPD3QcjFJL2KpYRnNDxa8Xg5rcSgPugG9kcBBNeavVKi differ diff --git a/_data/iconsDownload/QmSQGKhhBpMTM7vYpGdgMTDFyzaAN3PGG5AnmWy7KQPdSn b/_data/iconsDownload/QmSQGKhhBpMTM7vYpGdgMTDFyzaAN3PGG5AnmWy7KQPdSn new file mode 100644 index 000000000000..d0e3eb6dfd14 Binary files /dev/null and b/_data/iconsDownload/QmSQGKhhBpMTM7vYpGdgMTDFyzaAN3PGG5AnmWy7KQPdSn differ diff --git a/_data/iconsDownload/QmSUzhRGzMyMyGwBcE3ooZ5jvHKyJ1FjVjh5SfoGHG36MX b/_data/iconsDownload/QmSUzhRGzMyMyGwBcE3ooZ5jvHKyJ1FjVjh5SfoGHG36MX new file mode 100644 index 000000000000..41c94a9f42dd Binary files /dev/null and b/_data/iconsDownload/QmSUzhRGzMyMyGwBcE3ooZ5jvHKyJ1FjVjh5SfoGHG36MX differ diff --git a/_data/iconsDownload/QmSXLXqyr2H6Ja5XrmznXbWTEvF2gFaL8RXNXgyLmDHjAF b/_data/iconsDownload/QmSXLXqyr2H6Ja5XrmznXbWTEvF2gFaL8RXNXgyLmDHjAF new file mode 100644 index 000000000000..2a94c52a774f Binary files /dev/null and b/_data/iconsDownload/QmSXLXqyr2H6Ja5XrmznXbWTEvF2gFaL8RXNXgyLmDHjAF differ diff --git a/_data/iconsDownload/QmSemioP83RXnDWwTZbet8VpwJxcFRboX4B3pcdhLZGodP b/_data/iconsDownload/QmSemioP83RXnDWwTZbet8VpwJxcFRboX4B3pcdhLZGodP new file mode 100644 index 000000000000..0e4095ff340c Binary files /dev/null and b/_data/iconsDownload/QmSemioP83RXnDWwTZbet8VpwJxcFRboX4B3pcdhLZGodP differ diff --git a/_data/iconsDownload/QmSgvmLpRsCiu2ySqyceA5xN4nwi7URJRNEZLffwEKXdoR b/_data/iconsDownload/QmSgvmLpRsCiu2ySqyceA5xN4nwi7URJRNEZLffwEKXdoR new file mode 100644 index 000000000000..610ba53031ed Binary files /dev/null and b/_data/iconsDownload/QmSgvmLpRsCiu2ySqyceA5xN4nwi7URJRNEZLffwEKXdoR differ diff --git a/_data/iconsDownload/QmSgzwKnJJjys3Uq2aVVdwJ3NffLj3CXMVCph9uByTBegc b/_data/iconsDownload/QmSgzwKnJJjys3Uq2aVVdwJ3NffLj3CXMVCph9uByTBegc new file mode 100644 index 000000000000..5796f12d897c Binary files /dev/null and b/_data/iconsDownload/QmSgzwKnJJjys3Uq2aVVdwJ3NffLj3CXMVCph9uByTBegc differ diff --git a/_data/iconsDownload/QmSj6SSWmBiRjnjZQPb17kvhGDmB9xAGRkG13RwPuXLTCT b/_data/iconsDownload/QmSj6SSWmBiRjnjZQPb17kvhGDmB9xAGRkG13RwPuXLTCT new file mode 100644 index 000000000000..609b27cbc252 Binary files /dev/null and b/_data/iconsDownload/QmSj6SSWmBiRjnjZQPb17kvhGDmB9xAGRkG13RwPuXLTCT differ diff --git a/_data/iconsDownload/QmSszu2AhLPgcp8SZYiBYCQiRVwb9ueqbnGbcTx9H9CJjZ b/_data/iconsDownload/QmSszu2AhLPgcp8SZYiBYCQiRVwb9ueqbnGbcTx9H9CJjZ new file mode 100644 index 000000000000..e0f45ef35275 Binary files /dev/null and b/_data/iconsDownload/QmSszu2AhLPgcp8SZYiBYCQiRVwb9ueqbnGbcTx9H9CJjZ differ diff --git a/_data/iconsDownload/QmSxXjvWng3Diz4YwXDV2VqSPgMyzLYBNfkjJcr7rzkxom b/_data/iconsDownload/QmSxXjvWng3Diz4YwXDV2VqSPgMyzLYBNfkjJcr7rzkxom new file mode 100644 index 000000000000..342c2a2bd589 Binary files /dev/null and b/_data/iconsDownload/QmSxXjvWng3Diz4YwXDV2VqSPgMyzLYBNfkjJcr7rzkxom differ diff --git a/_data/iconsDownload/QmT11iJMLe9sAk5NiRQbe2wv1jtLFCs2sF2w9vFwDLkkgE b/_data/iconsDownload/QmT11iJMLe9sAk5NiRQbe2wv1jtLFCs2sF2w9vFwDLkkgE new file mode 100644 index 000000000000..3773a3a62d83 Binary files /dev/null and b/_data/iconsDownload/QmT11iJMLe9sAk5NiRQbe2wv1jtLFCs2sF2w9vFwDLkkgE differ diff --git a/_data/iconsDownload/QmT5KKrpNt6duU8QfwaYw3xf4ifTBPtjahpWsMi3gsFmcS b/_data/iconsDownload/QmT5KKrpNt6duU8QfwaYw3xf4ifTBPtjahpWsMi3gsFmcS new file mode 100644 index 000000000000..6361ec60841a Binary files /dev/null and b/_data/iconsDownload/QmT5KKrpNt6duU8QfwaYw3xf4ifTBPtjahpWsMi3gsFmcS differ diff --git a/_data/iconsDownload/QmT5gJ5weBiLT3GoYuF5yRTRLdPLCVZ3tXznfqW7M8fxgG b/_data/iconsDownload/QmT5gJ5weBiLT3GoYuF5yRTRLdPLCVZ3tXznfqW7M8fxgG new file mode 100644 index 000000000000..1244453681ea Binary files /dev/null and b/_data/iconsDownload/QmT5gJ5weBiLT3GoYuF5yRTRLdPLCVZ3tXznfqW7M8fxgG differ diff --git a/_data/iconsDownload/QmT7DTqT1V2y42pRpt3sj9ifijfmbtkHN7D2vTfAUAS622 b/_data/iconsDownload/QmT7DTqT1V2y42pRpt3sj9ifijfmbtkHN7D2vTfAUAS622 new file mode 100644 index 000000000000..7e168ba2a5da Binary files /dev/null and b/_data/iconsDownload/QmT7DTqT1V2y42pRpt3sj9ifijfmbtkHN7D2vTfAUAS622 differ diff --git a/_data/iconsDownload/QmT7PSXBiVBma6E15hNkivmstqLu3JSnG1jXN5pTmcCGRC b/_data/iconsDownload/QmT7PSXBiVBma6E15hNkivmstqLu3JSnG1jXN5pTmcCGRC new file mode 100644 index 000000000000..87f02ff103fb Binary files /dev/null and b/_data/iconsDownload/QmT7PSXBiVBma6E15hNkivmstqLu3JSnG1jXN5pTmcCGRC differ 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/QmTAyT3YrW2654CBRqRkec2cCznv6EBsbsRc2y6WQPbvXx b/_data/iconsDownload/QmTAyT3YrW2654CBRqRkec2cCznv6EBsbsRc2y6WQPbvXx new file mode 100644 index 000000000000..b46dba313c28 Binary files /dev/null and b/_data/iconsDownload/QmTAyT3YrW2654CBRqRkec2cCznv6EBsbsRc2y6WQPbvXx differ diff --git a/_data/iconsDownload/QmTBszPzBeWPhjozf4TxpL2ws1NkG9yJvisx9h6MFii1zb b/_data/iconsDownload/QmTBszPzBeWPhjozf4TxpL2ws1NkG9yJvisx9h6MFii1zb new file mode 100644 index 000000000000..5ce0df7c50f9 Binary files /dev/null and b/_data/iconsDownload/QmTBszPzBeWPhjozf4TxpL2ws1NkG9yJvisx9h6MFii1zb differ diff --git a/_data/iconsDownload/QmTEnk2fosqbY6HQW5vySrLGbopJfeni9ThZ6R9sVefbnq b/_data/iconsDownload/QmTEnk2fosqbY6HQW5vySrLGbopJfeni9ThZ6R9sVefbnq new file mode 100644 index 000000000000..82ac9853ea9a Binary files /dev/null and b/_data/iconsDownload/QmTEnk2fosqbY6HQW5vySrLGbopJfeni9ThZ6R9sVefbnq differ diff --git a/_data/iconsDownload/QmTGjVbiSdHYhjzpeqzY6fGwGiLQuEa2hW7irD75sUSx9e b/_data/iconsDownload/QmTGjVbiSdHYhjzpeqzY6fGwGiLQuEa2hW7irD75sUSx9e new file mode 100644 index 000000000000..09113041b79e Binary files /dev/null and b/_data/iconsDownload/QmTGjVbiSdHYhjzpeqzY6fGwGiLQuEa2hW7irD75sUSx9e 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/QmTKgKs7kJiWDhdjbELE4Y2HVZ36KS4bYkNCbXdsXk66sW b/_data/iconsDownload/QmTKgKs7kJiWDhdjbELE4Y2HVZ36KS4bYkNCbXdsXk66sW new file mode 100644 index 000000000000..c7758d857204 Binary files /dev/null and b/_data/iconsDownload/QmTKgKs7kJiWDhdjbELE4Y2HVZ36KS4bYkNCbXdsXk66sW 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/QmTPbbhH4CkQiQWm4JUh3J9o5w79vXjFZaMBW4DKNuSVU3 b/_data/iconsDownload/QmTPbbhH4CkQiQWm4JUh3J9o5w79vXjFZaMBW4DKNuSVU3 new file mode 100644 index 000000000000..4333249e347f Binary files /dev/null and b/_data/iconsDownload/QmTPbbhH4CkQiQWm4JUh3J9o5w79vXjFZaMBW4DKNuSVU3 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/QmTREXNgGtUhSoxFsrkhTe5LUnDBTKL5byaX8kpET6UuKp b/_data/iconsDownload/QmTREXNgGtUhSoxFsrkhTe5LUnDBTKL5byaX8kpET6UuKp new file mode 100644 index 000000000000..5cd79c43d2f4 Binary files /dev/null and b/_data/iconsDownload/QmTREXNgGtUhSoxFsrkhTe5LUnDBTKL5byaX8kpET6UuKp differ diff --git a/_data/iconsDownload/QmTTamJ55YGQwMboq4aqf3JjTEy5WDtjo4GBRQ5VdsWA6U b/_data/iconsDownload/QmTTamJ55YGQwMboq4aqf3JjTEy5WDtjo4GBRQ5VdsWA6U new file mode 100644 index 000000000000..c469d3b302dd Binary files /dev/null and b/_data/iconsDownload/QmTTamJ55YGQwMboq4aqf3JjTEy5WDtjo4GBRQ5VdsWA6U differ diff --git a/_data/iconsDownload/QmTV45o4jTe6ayscF1XWh1WXk5DPck4QohR5kQocSWjvQP b/_data/iconsDownload/QmTV45o4jTe6ayscF1XWh1WXk5DPck4QohR5kQocSWjvQP new file mode 100644 index 000000000000..837bf25a7320 Binary files /dev/null and b/_data/iconsDownload/QmTV45o4jTe6ayscF1XWh1WXk5DPck4QohR5kQocSWjvQP differ diff --git a/_data/iconsDownload/QmTXJVhVKvVC7DQEnGKXvydvwpvVaUEBJrMHvsCr4nr1sK b/_data/iconsDownload/QmTXJVhVKvVC7DQEnGKXvydvwpvVaUEBJrMHvsCr4nr1sK new file mode 100644 index 000000000000..20251b715c11 Binary files /dev/null and b/_data/iconsDownload/QmTXJVhVKvVC7DQEnGKXvydvwpvVaUEBJrMHvsCr4nr1sK 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/QmTYR8CeFiNbJ1zJHnE3DK2wEN18r2y2vqSKUcLweUT2Gz b/_data/iconsDownload/QmTYR8CeFiNbJ1zJHnE3DK2wEN18r2y2vqSKUcLweUT2Gz new file mode 100644 index 000000000000..3243d64ae8ea --- /dev/null +++ b/_data/iconsDownload/QmTYR8CeFiNbJ1zJHnE3DK2wEN18r2y2vqSKUcLweUT2Gz @@ -0,0 +1,15 @@ + + + +Created with Fabric.js 5.2.4 + + + + + + + + + + + \ No newline at end of file diff --git a/_data/iconsDownload/QmTYazUzgY9Nn2mCjWwFUSLy3dG6i2PvALpwCNQvx1zXyi b/_data/iconsDownload/QmTYazUzgY9Nn2mCjWwFUSLy3dG6i2PvALpwCNQvx1zXyi new file mode 100644 index 000000000000..28f402fb6b8d Binary files /dev/null and b/_data/iconsDownload/QmTYazUzgY9Nn2mCjWwFUSLy3dG6i2PvALpwCNQvx1zXyi differ diff --git a/_data/iconsDownload/QmTZFXhYJboYE9fbaeje12iTF3QPLn6xgyFgrDVe2isDBH b/_data/iconsDownload/QmTZFXhYJboYE9fbaeje12iTF3QPLn6xgyFgrDVe2isDBH new file mode 100644 index 000000000000..cb4be01ddc0f Binary files /dev/null and b/_data/iconsDownload/QmTZFXhYJboYE9fbaeje12iTF3QPLn6xgyFgrDVe2isDBH differ diff --git a/_data/iconsDownload/QmTcNX8ukHkXiVfVah1W8Sed3vtGN95Sq2QSimfLuHva6B b/_data/iconsDownload/QmTcNX8ukHkXiVfVah1W8Sed3vtGN95Sq2QSimfLuHva6B new file mode 100644 index 000000000000..e97b0e5736e9 Binary files /dev/null and b/_data/iconsDownload/QmTcNX8ukHkXiVfVah1W8Sed3vtGN95Sq2QSimfLuHva6B differ diff --git a/_data/iconsDownload/QmTgk86ngUZXLNqpAM7HomNT8pd9ZDTwJv3iwSY67rssdw b/_data/iconsDownload/QmTgk86ngUZXLNqpAM7HomNT8pd9ZDTwJv3iwSY67rssdw deleted file mode 100644 index f8af0d2f1420..000000000000 Binary files a/_data/iconsDownload/QmTgk86ngUZXLNqpAM7HomNT8pd9ZDTwJv3iwSY67rssdw and /dev/null differ diff --git a/_data/iconsDownload/QmTjV3TTR5aLb7fi7tjx8gcDvYtqBpusqhCSaznVxJ7NJg b/_data/iconsDownload/QmTjV3TTR5aLb7fi7tjx8gcDvYtqBpusqhCSaznVxJ7NJg new file mode 100644 index 000000000000..dbd981b5f04e Binary files /dev/null and b/_data/iconsDownload/QmTjV3TTR5aLb7fi7tjx8gcDvYtqBpusqhCSaznVxJ7NJg differ diff --git a/_data/iconsDownload/QmTmo2QAtX5PbhX96vewnvH4Vc5H83Ft2DJGi6tAqTcFij b/_data/iconsDownload/QmTmo2QAtX5PbhX96vewnvH4Vc5H83Ft2DJGi6tAqTcFij new file mode 100644 index 000000000000..218f055c03c4 Binary files /dev/null and b/_data/iconsDownload/QmTmo2QAtX5PbhX96vewnvH4Vc5H83Ft2DJGi6tAqTcFij differ diff --git a/_data/iconsDownload/QmTrLGHyQ1Le25Q7EgNSF5Qq8D2SocKvroDkLqurdBuSQQ b/_data/iconsDownload/QmTrLGHyQ1Le25Q7EgNSF5Qq8D2SocKvroDkLqurdBuSQQ new file mode 100644 index 000000000000..709bea85d010 Binary files /dev/null and b/_data/iconsDownload/QmTrLGHyQ1Le25Q7EgNSF5Qq8D2SocKvroDkLqurdBuSQQ differ diff --git a/_data/iconsDownload/QmTvYMJXeZeWxYPuoQ15mHCS8K5EQzkMMCHQVs3GshooyR b/_data/iconsDownload/QmTvYMJXeZeWxYPuoQ15mHCS8K5EQzkMMCHQVs3GshooyR new file mode 100644 index 000000000000..6d4aa24e713b Binary files /dev/null and b/_data/iconsDownload/QmTvYMJXeZeWxYPuoQ15mHCS8K5EQzkMMCHQVs3GshooyR differ diff --git a/_data/iconsDownload/QmTw8TyeeNhUFWrck2WCiN17MaHRt5qzRBtaAvmz6L7qq7 b/_data/iconsDownload/QmTw8TyeeNhUFWrck2WCiN17MaHRt5qzRBtaAvmz6L7qq7 new file mode 100644 index 000000000000..6c9f568d1e44 Binary files /dev/null and b/_data/iconsDownload/QmTw8TyeeNhUFWrck2WCiN17MaHRt5qzRBtaAvmz6L7qq7 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/QmUBveetVibvSEWQrjyxySgUphLuoMGSVLGmYnobt5FgEZ b/_data/iconsDownload/QmUBveetVibvSEWQrjyxySgUphLuoMGSVLGmYnobt5FgEZ new file mode 100644 index 000000000000..cf3325cdb808 Binary files /dev/null and b/_data/iconsDownload/QmUBveetVibvSEWQrjyxySgUphLuoMGSVLGmYnobt5FgEZ differ diff --git a/_data/iconsDownload/QmUH2Ph2hW4upvevEAGCaSo7nd8nthqMx5RrHcrnNZ9Y3g b/_data/iconsDownload/QmUH2Ph2hW4upvevEAGCaSo7nd8nthqMx5RrHcrnNZ9Y3g new file mode 100644 index 000000000000..32c6e9f18ae1 --- /dev/null +++ b/_data/iconsDownload/QmUH2Ph2hW4upvevEAGCaSo7nd8nthqMx5RrHcrnNZ9Y3g @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/_data/iconsDownload/QmULpMFUvKSmJT8sWXS3WDnTm4EacgRbsEynDenpxcfrAj b/_data/iconsDownload/QmULpMFUvKSmJT8sWXS3WDnTm4EacgRbsEynDenpxcfrAj new file mode 100644 index 000000000000..ee86f6930008 Binary files /dev/null and b/_data/iconsDownload/QmULpMFUvKSmJT8sWXS3WDnTm4EacgRbsEynDenpxcfrAj differ diff --git a/_data/iconsDownload/QmUN5j2cre8GHKv52JE8ag88aAnRmuHMGFxePPvKMogisC b/_data/iconsDownload/QmUN5j2cre8GHKv52JE8ag88aAnRmuHMGFxePPvKMogisC new file mode 100644 index 000000000000..1bd7299bc937 --- /dev/null +++ b/_data/iconsDownload/QmUN5j2cre8GHKv52JE8ag88aAnRmuHMGFxePPvKMogisC @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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/QmURjritnHL7a8TwZgsFwp3f272DJmG5paaPtWDZ98QZwH b/_data/iconsDownload/QmURjritnHL7a8TwZgsFwp3f272DJmG5paaPtWDZ98QZwH new file mode 100644 index 000000000000..b352bbcd3ab8 --- /dev/null +++ b/_data/iconsDownload/QmURjritnHL7a8TwZgsFwp3f272DJmG5paaPtWDZ98QZwH @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/_data/iconsDownload/QmUTDMvoY7JgDs9sZuuBhsyJz6B2dNfc5jj6xUj355be2C b/_data/iconsDownload/QmUTDMvoY7JgDs9sZuuBhsyJz6B2dNfc5jj6xUj355be2C new file mode 100644 index 000000000000..155d1fda3cb4 Binary files /dev/null and b/_data/iconsDownload/QmUTDMvoY7JgDs9sZuuBhsyJz6B2dNfc5jj6xUj355be2C differ diff --git a/_data/iconsDownload/QmUU784i1ZHDNwgXvt9weZmq6YbHHkyXvuDS7r4iDzao72 b/_data/iconsDownload/QmUU784i1ZHDNwgXvt9weZmq6YbHHkyXvuDS7r4iDzao72 new file mode 100644 index 000000000000..a499027495ec Binary files /dev/null and b/_data/iconsDownload/QmUU784i1ZHDNwgXvt9weZmq6YbHHkyXvuDS7r4iDzao72 differ diff --git a/_data/iconsDownload/QmUVJ7MLCEAfq3pHVPFLscqRMiyAY5biVgTkeDQCmAhHNS b/_data/iconsDownload/QmUVJ7MLCEAfq3pHVPFLscqRMiyAY5biVgTkeDQCmAhHNS new file mode 100644 index 000000000000..e3a0bf5baf2e --- /dev/null +++ b/_data/iconsDownload/QmUVJ7MLCEAfq3pHVPFLscqRMiyAY5biVgTkeDQCmAhHNS @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/_data/iconsDownload/QmUYKpVmZL4aS3TEZLG5wbrRJ6exxLiwm1rejfGYYNicfb b/_data/iconsDownload/QmUYKpVmZL4aS3TEZLG5wbrRJ6exxLiwm1rejfGYYNicfb new file mode 100644 index 000000000000..fe4db7248d2e Binary files /dev/null and b/_data/iconsDownload/QmUYKpVmZL4aS3TEZLG5wbrRJ6exxLiwm1rejfGYYNicfb differ diff --git a/_data/iconsDownload/QmUaXcPewLuQtY5a7xPTzJyVdjkH487VfV7gSR8UXrbxQ3 b/_data/iconsDownload/QmUaXcPewLuQtY5a7xPTzJyVdjkH487VfV7gSR8UXrbxQ3 new file mode 100644 index 000000000000..35fad517bad0 Binary files /dev/null and b/_data/iconsDownload/QmUaXcPewLuQtY5a7xPTzJyVdjkH487VfV7gSR8UXrbxQ3 differ diff --git a/_data/iconsDownload/QmUc57w3UTHiWapNW9oQb1dP57ymtdemTTbpvGkjVHBRCo b/_data/iconsDownload/QmUc57w3UTHiWapNW9oQb1dP57ymtdemTTbpvGkjVHBRCo new file mode 100644 index 000000000000..5ac1ce737fef Binary files /dev/null and b/_data/iconsDownload/QmUc57w3UTHiWapNW9oQb1dP57ymtdemTTbpvGkjVHBRCo differ diff --git a/_data/iconsDownload/QmUdwAZJfyKGZnfPGDsCnNvGu123mdd57kTGj1Y3EWVuWK b/_data/iconsDownload/QmUdwAZJfyKGZnfPGDsCnNvGu123mdd57kTGj1Y3EWVuWK new file mode 100644 index 000000000000..132ee632e73f Binary files /dev/null and b/_data/iconsDownload/QmUdwAZJfyKGZnfPGDsCnNvGu123mdd57kTGj1Y3EWVuWK 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/QmUgfhv3rEsS6t9g6Lsf3TJ1mbnJqBrb8YUFPDiNG59QvT b/_data/iconsDownload/QmUgfhv3rEsS6t9g6Lsf3TJ1mbnJqBrb8YUFPDiNG59QvT new file mode 100644 index 000000000000..f372d11aed7f Binary files /dev/null and b/_data/iconsDownload/QmUgfhv3rEsS6t9g6Lsf3TJ1mbnJqBrb8YUFPDiNG59QvT differ diff --git a/_data/iconsDownload/QmUmJVof2m5e4HUXb3GmijWUFsLUNhrQiwwQG3CqcXEtHt b/_data/iconsDownload/QmUmJVof2m5e4HUXb3GmijWUFsLUNhrQiwwQG3CqcXEtHt new file mode 100644 index 000000000000..bee2ba12eab0 Binary files /dev/null and b/_data/iconsDownload/QmUmJVof2m5e4HUXb3GmijWUFsLUNhrQiwwQG3CqcXEtHt differ diff --git a/_data/iconsDownload/QmUoSiFWaPTbVY6ZfJswzrM9jKuhfhXWwstRo49cVCWr8x b/_data/iconsDownload/QmUoSiFWaPTbVY6ZfJswzrM9jKuhfhXWwstRo49cVCWr8x new file mode 100644 index 000000000000..33c0f2e32816 Binary files /dev/null and b/_data/iconsDownload/QmUoSiFWaPTbVY6ZfJswzrM9jKuhfhXWwstRo49cVCWr8x 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/QmUwqGWGjjQweTprn5LBirAwRjYnteTiFLCVpSNHrfMmSL b/_data/iconsDownload/QmUwqGWGjjQweTprn5LBirAwRjYnteTiFLCVpSNHrfMmSL new file mode 100644 index 000000000000..fed7082585ac Binary files /dev/null and b/_data/iconsDownload/QmUwqGWGjjQweTprn5LBirAwRjYnteTiFLCVpSNHrfMmSL differ diff --git a/_data/iconsDownload/QmV1qG5jcEFhekamTzrMqzMTDRvCGdGQAiJcsHZ9viVwgT b/_data/iconsDownload/QmV1qG5jcEFhekamTzrMqzMTDRvCGdGQAiJcsHZ9viVwgT new file mode 100644 index 000000000000..8874e3e4830f Binary files /dev/null and b/_data/iconsDownload/QmV1qG5jcEFhekamTzrMqzMTDRvCGdGQAiJcsHZ9viVwgT differ diff --git a/_data/iconsDownload/QmV1wZ1RVXeD7216aiVBpLkbBBHWNuoTvcSzpVQsqi2uaH b/_data/iconsDownload/QmV1wZ1RVXeD7216aiVBpLkbBBHWNuoTvcSzpVQsqi2uaH new file mode 100644 index 000000000000..5ac0e86f3942 Binary files /dev/null and b/_data/iconsDownload/QmV1wZ1RVXeD7216aiVBpLkbBBHWNuoTvcSzpVQsqi2uaH differ diff --git a/_data/iconsDownload/QmV2Nowzo81F6pi2qFcHePA4MwmmdMKBMUzBJUrxcymxx4 b/_data/iconsDownload/QmV2Nowzo81F6pi2qFcHePA4MwmmdMKBMUzBJUrxcymxx4 new file mode 100644 index 000000000000..ff758b9b9634 Binary files /dev/null and b/_data/iconsDownload/QmV2Nowzo81F6pi2qFcHePA4MwmmdMKBMUzBJUrxcymxx4 differ diff --git a/_data/iconsDownload/QmV2vhTqS9UyrX9Q6BSCbK4JrKBnS8ErHvstMjfb2oVWaj b/_data/iconsDownload/QmV2vhTqS9UyrX9Q6BSCbK4JrKBnS8ErHvstMjfb2oVWaj new file mode 100644 index 000000000000..7de4ba0db6a9 Binary files /dev/null and b/_data/iconsDownload/QmV2vhTqS9UyrX9Q6BSCbK4JrKBnS8ErHvstMjfb2oVWaj 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/QmV8UmSwqGF2fxrqVEBTHbkyZueahqyYtkfH2RBF5pNysM b/_data/iconsDownload/QmV8UmSwqGF2fxrqVEBTHbkyZueahqyYtkfH2RBF5pNysM new file mode 100644 index 000000000000..19df833afe84 --- /dev/null +++ b/_data/iconsDownload/QmV8UmSwqGF2fxrqVEBTHbkyZueahqyYtkfH2RBF5pNysM @@ -0,0 +1,24 @@ + + + Logo + + + + + + \ No newline at end of file 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/QmVES1eqDXhP8SdeCpM85wvjmhrQDXGRquQebDrSdvJqpt b/_data/iconsDownload/QmVES1eqDXhP8SdeCpM85wvjmhrQDXGRquQebDrSdvJqpt new file mode 100644 index 000000000000..dcf16a325e4a Binary files /dev/null and b/_data/iconsDownload/QmVES1eqDXhP8SdeCpM85wvjmhrQDXGRquQebDrSdvJqpt differ diff --git a/_data/iconsDownload/QmVFWTqfqnMXbiPKpDFucE9QSQ1SVsUWs4HxBqRGjgQCbu b/_data/iconsDownload/QmVFWTqfqnMXbiPKpDFucE9QSQ1SVsUWs4HxBqRGjgQCbu new file mode 100644 index 000000000000..f2f6b0a9ffa8 Binary files /dev/null and b/_data/iconsDownload/QmVFWTqfqnMXbiPKpDFucE9QSQ1SVsUWs4HxBqRGjgQCbu 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/QmVMBTZVPawyLBD2B5VbG68dfWLfZ1CnB8V59xduBe2kwh b/_data/iconsDownload/QmVMBTZVPawyLBD2B5VbG68dfWLfZ1CnB8V59xduBe2kwh new file mode 100644 index 000000000000..64cc804a5b82 Binary files /dev/null and b/_data/iconsDownload/QmVMBTZVPawyLBD2B5VbG68dfWLfZ1CnB8V59xduBe2kwh differ diff --git a/_data/iconsDownload/QmVTahJkdSH3HPYsJMK2GmqfWZjLyxE7cXy1aHEnHU3vp2 b/_data/iconsDownload/QmVTahJkdSH3HPYsJMK2GmqfWZjLyxE7cXy1aHEnHU3vp2 new file mode 100644 index 000000000000..f756c6cffb03 Binary files /dev/null and b/_data/iconsDownload/QmVTahJkdSH3HPYsJMK2GmqfWZjLyxE7cXy1aHEnHU3vp2 differ diff --git a/_data/iconsDownload/QmVV7ibcq8pS44Nt77jWSLNY2RkfQooHBCZMBPSMdAfZ3d b/_data/iconsDownload/QmVV7ibcq8pS44Nt77jWSLNY2RkfQooHBCZMBPSMdAfZ3d new file mode 100644 index 000000000000..6765ed0dfe05 --- /dev/null +++ b/_data/iconsDownload/QmVV7ibcq8pS44Nt77jWSLNY2RkfQooHBCZMBPSMdAfZ3d @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/_data/iconsDownload/QmVb682D4mUXkKNP28xxJDNgSYbDLvEc3kVYx7TQxEa6Cw b/_data/iconsDownload/QmVb682D4mUXkKNP28xxJDNgSYbDLvEc3kVYx7TQxEa6Cw new file mode 100644 index 000000000000..30ba316d48b9 Binary files /dev/null and b/_data/iconsDownload/QmVb682D4mUXkKNP28xxJDNgSYbDLvEc3kVYx7TQxEa6Cw differ diff --git a/_data/iconsDownload/QmVf1afskRHuZjFSLCZH8397KrVNAoYgyAePX9VMBrPVtx b/_data/iconsDownload/QmVf1afskRHuZjFSLCZH8397KrVNAoYgyAePX9VMBrPVtx new file mode 100644 index 000000000000..0995774866b3 Binary files /dev/null and b/_data/iconsDownload/QmVf1afskRHuZjFSLCZH8397KrVNAoYgyAePX9VMBrPVtx differ diff --git a/_data/iconsDownload/QmVhG7xeTc78ibQunQ5sBJ4533r9FDM2xUCQKV72DPd1ux b/_data/iconsDownload/QmVhG7xeTc78ibQunQ5sBJ4533r9FDM2xUCQKV72DPd1ux new file mode 100644 index 000000000000..5cd6263abfc0 --- /dev/null +++ b/_data/iconsDownload/QmVhG7xeTc78ibQunQ5sBJ4533r9FDM2xUCQKV72DPd1ux @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_data/iconsDownload/QmVhezQHkqSZ5Tvtsw18giA1yBjV1URSsBQ7HenUh6p6oC b/_data/iconsDownload/QmVhezQHkqSZ5Tvtsw18giA1yBjV1URSsBQ7HenUh6p6oC new file mode 100644 index 000000000000..1586cc248679 Binary files /dev/null and b/_data/iconsDownload/QmVhezQHkqSZ5Tvtsw18giA1yBjV1URSsBQ7HenUh6p6oC differ diff --git a/_data/iconsDownload/QmVkAhSaHhH3wKoLT56Aq8dNyEH4RySPEpqPcLwsptGBDm b/_data/iconsDownload/QmVkAhSaHhH3wKoLT56Aq8dNyEH4RySPEpqPcLwsptGBDm new file mode 100644 index 000000000000..75a38661adf4 Binary files /dev/null and b/_data/iconsDownload/QmVkAhSaHhH3wKoLT56Aq8dNyEH4RySPEpqPcLwsptGBDm differ diff --git a/_data/iconsDownload/QmVp9jyb3UFW71867yVtymmiRw7dPY4BTnsp3hEjr9tn8L b/_data/iconsDownload/QmVp9jyb3UFW71867yVtymmiRw7dPY4BTnsp3hEjr9tn8L new file mode 100644 index 000000000000..20ecc33dd784 Binary files /dev/null and b/_data/iconsDownload/QmVp9jyb3UFW71867yVtymmiRw7dPY4BTnsp3hEjr9tn8L differ diff --git a/_data/iconsDownload/QmVpV2WET6ZrqnvvPfE9hCwoE2y5ygbPuniuugpaRoxrho b/_data/iconsDownload/QmVpV2WET6ZrqnvvPfE9hCwoE2y5ygbPuniuugpaRoxrho new file mode 100644 index 000000000000..729f64d984e4 --- /dev/null +++ b/_data/iconsDownload/QmVpV2WET6ZrqnvvPfE9hCwoE2y5ygbPuniuugpaRoxrho @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/_data/iconsDownload/QmVth4aPeskDTFqRifUugJx6gyEHCmx2PFbMWUtsCSQFkF b/_data/iconsDownload/QmVth4aPeskDTFqRifUugJx6gyEHCmx2PFbMWUtsCSQFkF new file mode 100644 index 000000000000..b4ddee256ddc Binary files /dev/null and b/_data/iconsDownload/QmVth4aPeskDTFqRifUugJx6gyEHCmx2PFbMWUtsCSQFkF differ diff --git a/_data/iconsDownload/QmVxtpYYzc5214CB7BgsMC4mRNRHCD8fpbNMzZguBWyRwa b/_data/iconsDownload/QmVxtpYYzc5214CB7BgsMC4mRNRHCD8fpbNMzZguBWyRwa new file mode 100644 index 000000000000..14f8eec6975d Binary files /dev/null and b/_data/iconsDownload/QmVxtpYYzc5214CB7BgsMC4mRNRHCD8fpbNMzZguBWyRwa differ diff --git a/_data/iconsDownload/QmVyAuAnKKNnGEpqeYMLPRfMdysLgPBTZeEXihXbRytGhp b/_data/iconsDownload/QmVyAuAnKKNnGEpqeYMLPRfMdysLgPBTZeEXihXbRytGhp new file mode 100644 index 000000000000..819f4fedd607 Binary files /dev/null and b/_data/iconsDownload/QmVyAuAnKKNnGEpqeYMLPRfMdysLgPBTZeEXihXbRytGhp 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/QmVzJDndPui6qBSeJWe5kMLA56C3KpVhqqqk9xvVKE1DGb b/_data/iconsDownload/QmVzJDndPui6qBSeJWe5kMLA56C3KpVhqqqk9xvVKE1DGb new file mode 100644 index 000000000000..9a44ca70883c Binary files /dev/null and b/_data/iconsDownload/QmVzJDndPui6qBSeJWe5kMLA56C3KpVhqqqk9xvVKE1DGb differ diff --git a/_data/iconsDownload/QmW3CT4SHmso5dRJdsjR8GL1qmt79HkdAebCn2uNaWXFYh b/_data/iconsDownload/QmW3CT4SHmso5dRJdsjR8GL1qmt79HkdAebCn2uNaWXFYh new file mode 100644 index 000000000000..f4aee1b6ea39 Binary files /dev/null and b/_data/iconsDownload/QmW3CT4SHmso5dRJdsjR8GL1qmt79HkdAebCn2uNaWXFYh differ diff --git a/_data/iconsDownload/QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc b/_data/iconsDownload/QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc new file mode 100644 index 000000000000..3de737a7b4f6 Binary files /dev/null and b/_data/iconsDownload/QmW3WRyuLZ95K8hvV2QN6rP5yWY98sSzWyVUxD2eUjXGrc differ diff --git a/_data/iconsDownload/QmW44FPm3CMM2JDs8BQxLNvUtykkUtrGkQkQsUDJSi3Gmp b/_data/iconsDownload/QmW44FPm3CMM2JDs8BQxLNvUtykkUtrGkQkQsUDJSi3Gmp new file mode 100644 index 000000000000..52acbd952853 Binary files /dev/null and b/_data/iconsDownload/QmW44FPm3CMM2JDs8BQxLNvUtykkUtrGkQkQsUDJSi3Gmp differ diff --git a/_data/iconsDownload/QmW4C4QHLMhLeH5MsdVbauMc2Skb4ehzLKU3egLKKoux4D b/_data/iconsDownload/QmW4C4QHLMhLeH5MsdVbauMc2Skb4ehzLKU3egLKKoux4D new file mode 100644 index 000000000000..4ee27383ecba Binary files /dev/null and b/_data/iconsDownload/QmW4C4QHLMhLeH5MsdVbauMc2Skb4ehzLKU3egLKKoux4D differ diff --git a/_data/iconsDownload/QmW5Fpb2Ywnfqcj4ibvpbKvPv5Mo5eseWdYZnnUvLkj2Hp b/_data/iconsDownload/QmW5Fpb2Ywnfqcj4ibvpbKvPv5Mo5eseWdYZnnUvLkj2Hp new file mode 100644 index 000000000000..a0b7c961f0c8 Binary files /dev/null and b/_data/iconsDownload/QmW5Fpb2Ywnfqcj4ibvpbKvPv5Mo5eseWdYZnnUvLkj2Hp differ diff --git a/_data/iconsDownload/QmW9pBps8WHRRWmyXhjLZrjZJUe8F48hUu7z98bu2RVsjN b/_data/iconsDownload/QmW9pBps8WHRRWmyXhjLZrjZJUe8F48hUu7z98bu2RVsjN new file mode 100644 index 000000000000..11a72eee3552 Binary files /dev/null and b/_data/iconsDownload/QmW9pBps8WHRRWmyXhjLZrjZJUe8F48hUu7z98bu2RVsjN 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/QmWCSXYLigYE6qEiese4cso2icgKQyosV3x1adtxJnRyJ9 b/_data/iconsDownload/QmWCSXYLigYE6qEiese4cso2icgKQyosV3x1adtxJnRyJ9 new file mode 100644 index 000000000000..6e190f19ab16 --- /dev/null +++ b/_data/iconsDownload/QmWCSXYLigYE6qEiese4cso2icgKQyosV3x1adtxJnRyJ9 @@ -0,0 +1,13 @@ + + + Brand/Outline/LogoMark@2x + + + + + + + + + + \ No newline at end of file diff --git a/_data/iconsDownload/QmWEy9xK5BoqxPuVs7T48WM4exJrxzkEFt45iHcxWqUy8D b/_data/iconsDownload/QmWEy9xK5BoqxPuVs7T48WM4exJrxzkEFt45iHcxWqUy8D new file mode 100644 index 000000000000..bf64189c4784 Binary files /dev/null and b/_data/iconsDownload/QmWEy9xK5BoqxPuVs7T48WM4exJrxzkEFt45iHcxWqUy8D differ diff --git a/_data/iconsDownload/QmWGNfwJ9o2vmKD3E6fjrxpbFP8W5q45zmYzHHoXwqqAoj b/_data/iconsDownload/QmWGNfwJ9o2vmKD3E6fjrxpbFP8W5q45zmYzHHoXwqqAoj new file mode 100644 index 000000000000..77786614d549 Binary files /dev/null and b/_data/iconsDownload/QmWGNfwJ9o2vmKD3E6fjrxpbFP8W5q45zmYzHHoXwqqAoj differ diff --git a/_data/iconsDownload/QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm b/_data/iconsDownload/QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm new file mode 100644 index 000000000000..5c884e235bd7 Binary files /dev/null and b/_data/iconsDownload/QmWSbMuCwQzhBB6GRLYqZ87n5cnpzpYCehCAMMQmUXj4mm 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/QmWhNm7tTi6SYbiumULDRk956hxgqaZSX77vcxBNn8fvnw b/_data/iconsDownload/QmWhNm7tTi6SYbiumULDRk956hxgqaZSX77vcxBNn8fvnw new file mode 100644 index 000000000000..92427f820f97 --- /dev/null +++ b/_data/iconsDownload/QmWhNm7tTi6SYbiumULDRk956hxgqaZSX77vcxBNn8fvnw @@ -0,0 +1,4 @@ + + + + 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/QmWsoME6LCghQTpGYf7EnUojaDdYo7kfkWVjE6VvNtkjwy b/_data/iconsDownload/QmWsoME6LCghQTpGYf7EnUojaDdYo7kfkWVjE6VvNtkjwy new file mode 100644 index 000000000000..a557cf3a893f Binary files /dev/null and b/_data/iconsDownload/QmWsoME6LCghQTpGYf7EnUojaDdYo7kfkWVjE6VvNtkjwy 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/QmWxhyxXTEsWH98v7M3ck4ZL1qQoUaHG4HgtgxzD2KJQ5m b/_data/iconsDownload/QmWxhyxXTEsWH98v7M3ck4ZL1qQoUaHG4HgtgxzD2KJQ5m new file mode 100644 index 000000000000..e24a6b21ffc6 Binary files /dev/null and b/_data/iconsDownload/QmWxhyxXTEsWH98v7M3ck4ZL1qQoUaHG4HgtgxzD2KJQ5m 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/QmX2b4CzNyrNgy4ERBEteSS9MsuYNVYeq2sSMMiogGjbFP b/_data/iconsDownload/QmX2b4CzNyrNgy4ERBEteSS9MsuYNVYeq2sSMMiogGjbFP new file mode 100644 index 000000000000..d381d023d82c Binary files /dev/null and b/_data/iconsDownload/QmX2b4CzNyrNgy4ERBEteSS9MsuYNVYeq2sSMMiogGjbFP differ diff --git a/_data/iconsDownload/QmX3hBv8WyvVfYjh1gmgDfJCpJBvKk4TYG9wFX9sC8WAjz b/_data/iconsDownload/QmX3hBv8WyvVfYjh1gmgDfJCpJBvKk4TYG9wFX9sC8WAjz new file mode 100644 index 000000000000..42f8e33e133b --- /dev/null +++ b/_data/iconsDownload/QmX3hBv8WyvVfYjh1gmgDfJCpJBvKk4TYG9wFX9sC8WAjz @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/_data/iconsDownload/QmX3tsEoj7SdaBLLV8VyyCUAmymdEGiSGeuTbxMrEMVvth b/_data/iconsDownload/QmX3tsEoj7SdaBLLV8VyyCUAmymdEGiSGeuTbxMrEMVvth new file mode 100644 index 000000000000..4a0fd0959788 --- /dev/null +++ b/_data/iconsDownload/QmX3tsEoj7SdaBLLV8VyyCUAmymdEGiSGeuTbxMrEMVvth @@ -0,0 +1 @@ + diff --git a/_data/iconsDownload/QmX8qGX7xoZqYUpHxA85uZwQX2fgbTHvmddE1NfseDyBED b/_data/iconsDownload/QmX8qGX7xoZqYUpHxA85uZwQX2fgbTHvmddE1NfseDyBED new file mode 100644 index 000000000000..3384d7513cfa Binary files /dev/null and b/_data/iconsDownload/QmX8qGX7xoZqYUpHxA85uZwQX2fgbTHvmddE1NfseDyBED differ diff --git a/_data/iconsDownload/QmXARMjJGkXEVEdjUyxkeG4ffsWvEo9vSJpVon3JwRxckS b/_data/iconsDownload/QmXARMjJGkXEVEdjUyxkeG4ffsWvEo9vSJpVon3JwRxckS new file mode 100644 index 000000000000..1eac7e23d3a2 Binary files /dev/null and b/_data/iconsDownload/QmXARMjJGkXEVEdjUyxkeG4ffsWvEo9vSJpVon3JwRxckS differ diff --git a/_data/iconsDownload/QmXGJevyPHHKT28hDfsJ9Cq2DQ2bAavdie37MEwFQUVCQz b/_data/iconsDownload/QmXGJevyPHHKT28hDfsJ9Cq2DQ2bAavdie37MEwFQUVCQz new file mode 100644 index 000000000000..c7d491a37465 Binary files /dev/null and b/_data/iconsDownload/QmXGJevyPHHKT28hDfsJ9Cq2DQ2bAavdie37MEwFQUVCQz differ diff --git a/_data/iconsDownload/QmXMDj6iAFn2ducQcUU1M87PMMdT2jfyL3Tp3Lz5uUD5Lv b/_data/iconsDownload/QmXMDj6iAFn2ducQcUU1M87PMMdT2jfyL3Tp3Lz5uUD5Lv new file mode 100644 index 000000000000..7122c4e9d1ce Binary files /dev/null and b/_data/iconsDownload/QmXMDj6iAFn2ducQcUU1M87PMMdT2jfyL3Tp3Lz5uUD5Lv differ diff --git a/_data/iconsDownload/QmXR5e5SDABWfQn6XT9uMsVYAo5Bv7vUv4jVs8DFqatZWG b/_data/iconsDownload/QmXR5e5SDABWfQn6XT9uMsVYAo5Bv7vUv4jVs8DFqatZWG new file mode 100644 index 000000000000..9b348246ad04 Binary files /dev/null and b/_data/iconsDownload/QmXR5e5SDABWfQn6XT9uMsVYAo5Bv7vUv4jVs8DFqatZWG differ diff --git a/_data/iconsDownload/QmXfBFHHb5kJGQ3dMLnhDhfFBsgAvm9U72jBSYcfmRHL2p b/_data/iconsDownload/QmXfBFHHb5kJGQ3dMLnhDhfFBsgAvm9U72jBSYcfmRHL2p new file mode 100644 index 000000000000..404f2a7351e8 Binary files /dev/null and b/_data/iconsDownload/QmXfBFHHb5kJGQ3dMLnhDhfFBsgAvm9U72jBSYcfmRHL2p differ diff --git a/_data/iconsDownload/QmXkK5D5GWizvY1FmL6pV8cYLAbhehKETubktCgh6qDJZb b/_data/iconsDownload/QmXkK5D5GWizvY1FmL6pV8cYLAbhehKETubktCgh6qDJZb new file mode 100644 index 000000000000..bce365cdd131 Binary files /dev/null and b/_data/iconsDownload/QmXkK5D5GWizvY1FmL6pV8cYLAbhehKETubktCgh6qDJZb differ diff --git a/_data/iconsDownload/QmXoHaZXJevc59GuzEgBhwRSH6kio1agMRvL8bD93pARRV b/_data/iconsDownload/QmXoHaZXJevc59GuzEgBhwRSH6kio1agMRvL8bD93pARRV new file mode 100644 index 000000000000..52a210988896 Binary files /dev/null and b/_data/iconsDownload/QmXoHaZXJevc59GuzEgBhwRSH6kio1agMRvL8bD93pARRV differ diff --git a/_data/iconsDownload/QmXszYAtQxaFCG3s9vGHoLJnqxGJw2wTKNbruTJ8iDXU7K b/_data/iconsDownload/QmXszYAtQxaFCG3s9vGHoLJnqxGJw2wTKNbruTJ8iDXU7K new file mode 100644 index 000000000000..9290a0524c00 Binary files /dev/null and b/_data/iconsDownload/QmXszYAtQxaFCG3s9vGHoLJnqxGJw2wTKNbruTJ8iDXU7K differ diff --git a/_data/iconsDownload/QmXt49jPfHUmDF4n8TF7ks6txiPztx6qUHanWmHnCoEAhW b/_data/iconsDownload/QmXt49jPfHUmDF4n8TF7ks6txiPztx6qUHanWmHnCoEAhW new file mode 100644 index 000000000000..33710703e584 Binary files /dev/null and b/_data/iconsDownload/QmXt49jPfHUmDF4n8TF7ks6txiPztx6qUHanWmHnCoEAhW differ diff --git a/_data/iconsDownload/QmXvHWmjfXKdZMSz7x82NR4SjEqigKdJELVHbnzUPkj17F b/_data/iconsDownload/QmXvHWmjfXKdZMSz7x82NR4SjEqigKdJELVHbnzUPkj17F new file mode 100644 index 000000000000..d96386145e5f --- /dev/null +++ b/_data/iconsDownload/QmXvHWmjfXKdZMSz7x82NR4SjEqigKdJELVHbnzUPkj17F @@ -0,0 +1,9 @@ + + + + + + + + + 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/QmY4vp1mJoGpUiuWbRVenNiDZC17wSyyueGPK9A5QyK1M2 b/_data/iconsDownload/QmY4vp1mJoGpUiuWbRVenNiDZC17wSyyueGPK9A5QyK1M2 new file mode 100644 index 000000000000..1c48a13c1334 Binary files /dev/null and b/_data/iconsDownload/QmY4vp1mJoGpUiuWbRVenNiDZC17wSyyueGPK9A5QyK1M2 differ diff --git a/_data/iconsDownload/QmY6AkNb5TYrDbM5M7YpSM8X3aYn2LcPXeLXz6F7WoB27r b/_data/iconsDownload/QmY6AkNb5TYrDbM5M7YpSM8X3aYn2LcPXeLXz6F7WoB27r new file mode 100644 index 000000000000..81023a35c6d4 Binary files /dev/null and b/_data/iconsDownload/QmY6AkNb5TYrDbM5M7YpSM8X3aYn2LcPXeLXz6F7WoB27r differ diff --git a/_data/iconsDownload/QmYBup5bWoBfkaHntbcgW8Ji7ncad7f53deJ4Q55z4PNQs b/_data/iconsDownload/QmYBup5bWoBfkaHntbcgW8Ji7ncad7f53deJ4Q55z4PNQs new file mode 100644 index 000000000000..280168ac01de Binary files /dev/null and b/_data/iconsDownload/QmYBup5bWoBfkaHntbcgW8Ji7ncad7f53deJ4Q55z4PNQs differ diff --git a/_data/iconsDownload/QmYJDpmWyjDa3H6BxweFmQXk4fU8b1GU7M9EqYcaUNvXzc b/_data/iconsDownload/QmYJDpmWyjDa3H6BxweFmQXk4fU8b1GU7M9EqYcaUNvXzc new file mode 100644 index 000000000000..c3d1b9357e63 --- /dev/null +++ b/_data/iconsDownload/QmYJDpmWyjDa3H6BxweFmQXk4fU8b1GU7M9EqYcaUNvXzc @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_data/iconsDownload/QmYQf9VKTzPwQiU5xQMNbJKKGasLDVoXs2S86Ay77MStp7 b/_data/iconsDownload/QmYQf9VKTzPwQiU5xQMNbJKKGasLDVoXs2S86Ay77MStp7 new file mode 100644 index 000000000000..8e071e86e08f Binary files /dev/null and b/_data/iconsDownload/QmYQf9VKTzPwQiU5xQMNbJKKGasLDVoXs2S86Ay77MStp7 differ diff --git a/_data/iconsDownload/QmYQp3e52KjkT4bYdAvB6ACEEpXs2D8DozsDitaADRY2Ak b/_data/iconsDownload/QmYQp3e52KjkT4bYdAvB6ACEEpXs2D8DozsDitaADRY2Ak new file mode 100644 index 000000000000..8126dba109e4 Binary files /dev/null and b/_data/iconsDownload/QmYQp3e52KjkT4bYdAvB6ACEEpXs2D8DozsDitaADRY2Ak differ diff --git a/_data/iconsDownload/QmYSyhUqm6ArWyALBe3G64823ZpEUmFdkzKZ93hUUhNKgU b/_data/iconsDownload/QmYSyhUqm6ArWyALBe3G64823ZpEUmFdkzKZ93hUUhNKgU new file mode 100644 index 000000000000..816258af1bf6 Binary files /dev/null and b/_data/iconsDownload/QmYSyhUqm6ArWyALBe3G64823ZpEUmFdkzKZ93hUUhNKgU differ diff --git a/_data/iconsDownload/QmYV5xUVZhHRzLy7ie9D8qZeygJHvNZZAxwnB9GXYy6EED b/_data/iconsDownload/QmYV5xUVZhHRzLy7ie9D8qZeygJHvNZZAxwnB9GXYy6EED new file mode 100644 index 000000000000..55e1fcc4efc1 Binary files /dev/null and b/_data/iconsDownload/QmYV5xUVZhHRzLy7ie9D8qZeygJHvNZZAxwnB9GXYy6EED differ diff --git a/_data/iconsDownload/QmYbskrGpidbMwsJekTeLrr8Z6GA9q4Uxh7piS1F9BdWWv b/_data/iconsDownload/QmYbskrGpidbMwsJekTeLrr8Z6GA9q4Uxh7piS1F9BdWWv new file mode 100644 index 000000000000..682db365acef Binary files /dev/null and b/_data/iconsDownload/QmYbskrGpidbMwsJekTeLrr8Z6GA9q4Uxh7piS1F9BdWWv differ diff --git a/_data/iconsDownload/QmYddHh5zdceSsBU7uGfQvEHg6UUtAFbzQBBaePS4whx7o b/_data/iconsDownload/QmYddHh5zdceSsBU7uGfQvEHg6UUtAFbzQBBaePS4whx7o new file mode 100644 index 000000000000..a95032c4125f Binary files /dev/null and b/_data/iconsDownload/QmYddHh5zdceSsBU7uGfQvEHg6UUtAFbzQBBaePS4whx7o differ diff --git a/_data/iconsDownload/QmYeMdWDZ1iaBFeSPorRyPi7RuSXTdDKTgW3rfnUf3W5ne b/_data/iconsDownload/QmYeMdWDZ1iaBFeSPorRyPi7RuSXTdDKTgW3rfnUf3W5ne new file mode 100644 index 000000000000..cd0fd9bc9f6e --- /dev/null +++ b/_data/iconsDownload/QmYeMdWDZ1iaBFeSPorRyPi7RuSXTdDKTgW3rfnUf3W5ne @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_data/iconsDownload/QmYiLMeKDXMSNuQmtxNdxm53xR588pcRXMf7zuiZLjQnc6 b/_data/iconsDownload/QmYiLMeKDXMSNuQmtxNdxm53xR588pcRXMf7zuiZLjQnc6 new file mode 100644 index 000000000000..3e0423662b27 Binary files /dev/null and b/_data/iconsDownload/QmYiLMeKDXMSNuQmtxNdxm53xR588pcRXMf7zuiZLjQnc6 differ diff --git a/_data/iconsDownload/QmYikaM849eZrL8pGNeVhEHVTKWpxdGMvCY5oFBfZ2ndhd b/_data/iconsDownload/QmYikaM849eZrL8pGNeVhEHVTKWpxdGMvCY5oFBfZ2ndhd new file mode 100644 index 000000000000..108eae825c03 Binary files /dev/null and b/_data/iconsDownload/QmYikaM849eZrL8pGNeVhEHVTKWpxdGMvCY5oFBfZ2ndhd differ diff --git a/_data/iconsDownload/QmYjuztyURb3Fc6ZTLgCbwQa64CcVoigF5j9cafzuSbqgf b/_data/iconsDownload/QmYjuztyURb3Fc6ZTLgCbwQa64CcVoigF5j9cafzuSbqgf new file mode 100644 index 000000000000..d61a00a2d56a Binary files /dev/null and b/_data/iconsDownload/QmYjuztyURb3Fc6ZTLgCbwQa64CcVoigF5j9cafzuSbqgf differ diff --git a/_data/iconsDownload/QmYktPMo4tdQhMA9nRJBVckjzHcFLbpHbTVNSpGUUPEP8J b/_data/iconsDownload/QmYktPMo4tdQhMA9nRJBVckjzHcFLbpHbTVNSpGUUPEP8J new file mode 100644 index 000000000000..24cc080a192c Binary files /dev/null and b/_data/iconsDownload/QmYktPMo4tdQhMA9nRJBVckjzHcFLbpHbTVNSpGUUPEP8J 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/QmYqvnW2jwPEKUv8BdaV4sbL8Audcwosat6SPn4GqYtKxc b/_data/iconsDownload/QmYqvnW2jwPEKUv8BdaV4sbL8Audcwosat6SPn4GqYtKxc new file mode 100644 index 000000000000..a73d5a205b2a Binary files /dev/null and b/_data/iconsDownload/QmYqvnW2jwPEKUv8BdaV4sbL8Audcwosat6SPn4GqYtKxc differ diff --git a/_data/iconsDownload/QmYrMRnjQJcNkYq9AvZ2FQ9kzYj9szzP4YDmyNA1ybd8xE b/_data/iconsDownload/QmYrMRnjQJcNkYq9AvZ2FQ9kzYj9szzP4YDmyNA1ybd8xE new file mode 100644 index 000000000000..da5fb8ac66b2 Binary files /dev/null and b/_data/iconsDownload/QmYrMRnjQJcNkYq9AvZ2FQ9kzYj9szzP4YDmyNA1ybd8xE differ diff --git a/_data/iconsDownload/QmYtUimyqHkkFxYdbXXRbUqNg2VLPUg6Uu2C2nmFWowiZM b/_data/iconsDownload/QmYtUimyqHkkFxYdbXXRbUqNg2VLPUg6Uu2C2nmFWowiZM new file mode 100644 index 000000000000..f20dbd5d320c Binary files /dev/null and b/_data/iconsDownload/QmYtUimyqHkkFxYdbXXRbUqNg2VLPUg6Uu2C2nmFWowiZM differ diff --git a/_data/iconsDownload/QmYvFVprVdAGJH4iHUCXGEmy7pq8MMfxEjM64SuXutz9qx b/_data/iconsDownload/QmYvFVprVdAGJH4iHUCXGEmy7pq8MMfxEjM64SuXutz9qx new file mode 100644 index 000000000000..b03e98f49cbf Binary files /dev/null and b/_data/iconsDownload/QmYvFVprVdAGJH4iHUCXGEmy7pq8MMfxEjM64SuXutz9qx differ diff --git a/_data/iconsDownload/QmYwHmGC9CRVcKo1LSesqxU31SDj9vk2iQxcFjQArzhix4 b/_data/iconsDownload/QmYwHmGC9CRVcKo1LSesqxU31SDj9vk2iQxcFjQArzhix4 new file mode 100644 index 000000000000..0e93b7082722 Binary files /dev/null and b/_data/iconsDownload/QmYwHmGC9CRVcKo1LSesqxU31SDj9vk2iQxcFjQArzhix4 differ diff --git a/_data/iconsDownload/QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1 b/_data/iconsDownload/QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1 new file mode 100644 index 000000000000..9f0d480358d7 Binary files /dev/null and b/_data/iconsDownload/QmYwvmJZ1bgTdiZUKXk4SifTpTj286CkZjMCshUyJuBFH1 differ diff --git a/_data/iconsDownload/QmYxniqbiFD7nXBNjN8boUhoXYEAW23YquArD2Rnkq8WHS b/_data/iconsDownload/QmYxniqbiFD7nXBNjN8boUhoXYEAW23YquArD2Rnkq8WHS new file mode 100644 index 000000000000..a1e7e1904ead Binary files /dev/null and b/_data/iconsDownload/QmYxniqbiFD7nXBNjN8boUhoXYEAW23YquArD2Rnkq8WHS differ diff --git a/_data/iconsDownload/QmYz8LK5WkUN8UwqKfWUjnyLuYqQZWihT7J766YXft4TSy b/_data/iconsDownload/QmYz8LK5WkUN8UwqKfWUjnyLuYqQZWihT7J766YXft4TSy new file mode 100644 index 000000000000..396b148618cc --- /dev/null +++ b/_data/iconsDownload/QmYz8LK5WkUN8UwqKfWUjnyLuYqQZWihT7J766YXft4TSy @@ -0,0 +1 @@ +ENULS \ No newline at end of file diff --git a/_data/iconsDownload/QmZ1jbxFZcuotj3eZ6iKFrg9ZXnaV8AK6sGRa7ELrceWyD b/_data/iconsDownload/QmZ1jbxFZcuotj3eZ6iKFrg9ZXnaV8AK6sGRa7ELrceWyD new file mode 100644 index 000000000000..cca91ee4b660 Binary files /dev/null and b/_data/iconsDownload/QmZ1jbxFZcuotj3eZ6iKFrg9ZXnaV8AK6sGRa7ELrceWyD differ diff --git a/_data/iconsDownload/QmZ5gFWUxLFqqT3DkefYfRsVksMwMTc5VvBjkbHpeFMsNe b/_data/iconsDownload/QmZ5gFWUxLFqqT3DkefYfRsVksMwMTc5VvBjkbHpeFMsNe new file mode 100644 index 000000000000..3f17ca3ba197 Binary files /dev/null and b/_data/iconsDownload/QmZ5gFWUxLFqqT3DkefYfRsVksMwMTc5VvBjkbHpeFMsNe differ diff --git a/_data/iconsDownload/QmZ9njQhhKkpJKGnoYy6XTuDtk5CYiDFUd8atqWthqUT3Q b/_data/iconsDownload/QmZ9njQhhKkpJKGnoYy6XTuDtk5CYiDFUd8atqWthqUT3Q new file mode 100644 index 000000000000..c654f1258819 Binary files /dev/null and b/_data/iconsDownload/QmZ9njQhhKkpJKGnoYy6XTuDtk5CYiDFUd8atqWthqUT3Q differ diff --git a/_data/iconsDownload/QmZCadkExKThak3msvszZjo6UnAbUJKE61dAcg4TixuMC3 b/_data/iconsDownload/QmZCadkExKThak3msvszZjo6UnAbUJKE61dAcg4TixuMC3 new file mode 100644 index 000000000000..5a5682d31c6a Binary files /dev/null and b/_data/iconsDownload/QmZCadkExKThak3msvszZjo6UnAbUJKE61dAcg4TixuMC3 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/QmZT1Wq3P4YbgKBSUmCtgbs5ijPF5d91BzaMPh7Aub8d8t b/_data/iconsDownload/QmZT1Wq3P4YbgKBSUmCtgbs5ijPF5d91BzaMPh7Aub8d8t new file mode 100644 index 000000000000..2b668bef9661 Binary files /dev/null and b/_data/iconsDownload/QmZT1Wq3P4YbgKBSUmCtgbs5ijPF5d91BzaMPh7Aub8d8t 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/QmZsp3gnmHCJPw3qReiqV8P8Ct5Eidib4E5jDNfBUxYEgP b/_data/iconsDownload/QmZsp3gnmHCJPw3qReiqV8P8Ct5Eidib4E5jDNfBUxYEgP new file mode 100644 index 000000000000..81f70ba32254 Binary files /dev/null and b/_data/iconsDownload/QmZsp3gnmHCJPw3qReiqV8P8Ct5Eidib4E5jDNfBUxYEgP differ diff --git a/_data/iconsDownload/QmZt75xixnEtFzqHTrJa8kJkV4cTXmUZqeMeHM8BcvomQc b/_data/iconsDownload/QmZt75xixnEtFzqHTrJa8kJkV4cTXmUZqeMeHM8BcvomQc new file mode 100644 index 000000000000..264cd2a4dd52 Binary files /dev/null and b/_data/iconsDownload/QmZt75xixnEtFzqHTrJa8kJkV4cTXmUZqeMeHM8BcvomQc 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/QmZyxS9BfRGYWWDtvrV6qtthCYV4TwdjLoH2sF6MkiTYFf b/_data/iconsDownload/QmZyxS9BfRGYWWDtvrV6qtthCYV4TwdjLoH2sF6MkiTYFf new file mode 100644 index 000000000000..c7285135c55a Binary files /dev/null and b/_data/iconsDownload/QmZyxS9BfRGYWWDtvrV6qtthCYV4TwdjLoH2sF6MkiTYFf differ diff --git a/_data/iconsDownload/Qma1bfuubpepKn7DLDy4NPSKDeT3S4VPCNhu6UmdGrb6YD b/_data/iconsDownload/Qma1bfuubpepKn7DLDy4NPSKDeT3S4VPCNhu6UmdGrb6YD new file mode 100644 index 000000000000..ef9ebd5c20e2 Binary files /dev/null and b/_data/iconsDownload/Qma1bfuubpepKn7DLDy4NPSKDeT3S4VPCNhu6UmdGrb6YD differ diff --git a/_data/iconsDownload/Qma6cGPCDcJPFxy5KQaMBrLtuVQiqeLncXVybcBoQuhai5 b/_data/iconsDownload/Qma6cGPCDcJPFxy5KQaMBrLtuVQiqeLncXVybcBoQuhai5 new file mode 100644 index 000000000000..ce227c60105d Binary files /dev/null and b/_data/iconsDownload/Qma6cGPCDcJPFxy5KQaMBrLtuVQiqeLncXVybcBoQuhai5 differ diff --git a/_data/iconsDownload/Qma7LpnkGjAN1dwL6VTXUYqzySNxjLg4br7J8UE4yZWYec b/_data/iconsDownload/Qma7LpnkGjAN1dwL6VTXUYqzySNxjLg4br7J8UE4yZWYec new file mode 100644 index 000000000000..5d85d9f6707b Binary files /dev/null and b/_data/iconsDownload/Qma7LpnkGjAN1dwL6VTXUYqzySNxjLg4br7J8UE4yZWYec differ diff --git a/_data/iconsDownload/Qma8dDhxSSVUyzV8Pu5bo252WaZEEikYFndRh7LVktvQEy b/_data/iconsDownload/Qma8dDhxSSVUyzV8Pu5bo252WaZEEikYFndRh7LVktvQEy new file mode 100644 index 000000000000..5dd2d7f09a95 Binary files /dev/null and b/_data/iconsDownload/Qma8dDhxSSVUyzV8Pu5bo252WaZEEikYFndRh7LVktvQEy differ diff --git a/_data/iconsDownload/QmaARJiAQUn4Z6wG8GLEry3kTeBB3k6RfHzSZU9SPhBgcG b/_data/iconsDownload/QmaARJiAQUn4Z6wG8GLEry3kTeBB3k6RfHzSZU9SPhBgcG new file mode 100644 index 000000000000..8cac1937f433 Binary files /dev/null and b/_data/iconsDownload/QmaARJiAQUn4Z6wG8GLEry3kTeBB3k6RfHzSZU9SPhBgcG differ diff --git a/_data/iconsDownload/QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf b/_data/iconsDownload/QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf new file mode 100644 index 000000000000..82f6dbc1f7fb Binary files /dev/null and b/_data/iconsDownload/QmaBtaukPNNUNjdJSUAwuFFQMLbZX1Pc3fvXKTKQcds7Kf differ diff --git a/_data/iconsDownload/QmaDr9R6dKnZLsogRxojjq4dwXuXcudR8UeTZ8Nq553K4u b/_data/iconsDownload/QmaDr9R6dKnZLsogRxojjq4dwXuXcudR8UeTZ8Nq553K4u new file mode 100644 index 000000000000..07f8ab0833d0 Binary files /dev/null and b/_data/iconsDownload/QmaDr9R6dKnZLsogRxojjq4dwXuXcudR8UeTZ8Nq553K4u differ diff --git a/_data/iconsDownload/QmaGPdccULQEFcCGxzstnmE8THfac2kSiGwvWRAiaRq4dp b/_data/iconsDownload/QmaGPdccULQEFcCGxzstnmE8THfac2kSiGwvWRAiaRq4dp new file mode 100644 index 000000000000..9b68cdde3c4f --- /dev/null +++ b/_data/iconsDownload/QmaGPdccULQEFcCGxzstnmE8THfac2kSiGwvWRAiaRq4dp @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_data/iconsDownload/QmaQxfwpXYTomUd24PMx5tKjosupXcm99z1jL1XLq9LWBS b/_data/iconsDownload/QmaQxfwpXYTomUd24PMx5tKjosupXcm99z1jL1XLq9LWBS new file mode 100644 index 000000000000..9ff011a392c7 Binary files /dev/null and b/_data/iconsDownload/QmaQxfwpXYTomUd24PMx5tKjosupXcm99z1jL1XLq9LWBS differ diff --git a/_data/iconsDownload/QmaR5TsgnWSjLys6wGaciKUbc5qYL3Es4jtgQcosVqDWR3 b/_data/iconsDownload/QmaR5TsgnWSjLys6wGaciKUbc5qYL3Es4jtgQcosVqDWR3 new file mode 100644 index 000000000000..9a20ce175cd5 Binary files /dev/null and b/_data/iconsDownload/QmaR5TsgnWSjLys6wGaciKUbc5qYL3Es4jtgQcosVqDWR3 differ diff --git a/_data/iconsDownload/QmadSU2tcyvuzssDYGJ4rVLag43QLnKwcBerZR2zKLVU2N b/_data/iconsDownload/QmadSU2tcyvuzssDYGJ4rVLag43QLnKwcBerZR2zKLVU2N new file mode 100644 index 000000000000..4e4c1211a0c0 Binary files /dev/null and b/_data/iconsDownload/QmadSU2tcyvuzssDYGJ4rVLag43QLnKwcBerZR2zKLVU2N differ diff --git a/_data/iconsDownload/Qmag2hr5DQghRzKPN3oUFBkjWzqd5CndQzZeb5LfoiMCXf b/_data/iconsDownload/Qmag2hr5DQghRzKPN3oUFBkjWzqd5CndQzZeb5LfoiMCXf new file mode 100644 index 000000000000..b8f56aea4bf4 Binary files /dev/null and b/_data/iconsDownload/Qmag2hr5DQghRzKPN3oUFBkjWzqd5CndQzZeb5LfoiMCXf differ diff --git a/_data/iconsDownload/QmagWrtyApex28H2QeXcs3jJ2F7p2K7eESz3cDbHdQ3pjG b/_data/iconsDownload/QmagWrtyApex28H2QeXcs3jJ2F7p2K7eESz3cDbHdQ3pjG new file mode 100644 index 000000000000..70f548f88136 Binary files /dev/null and b/_data/iconsDownload/QmagWrtyApex28H2QeXcs3jJ2F7p2K7eESz3cDbHdQ3pjG differ diff --git a/_data/iconsDownload/QmahJhdaLfGwBStQ9q9K4Mc73vLNqFV1otWCsT2ZKsMavv b/_data/iconsDownload/QmahJhdaLfGwBStQ9q9K4Mc73vLNqFV1otWCsT2ZKsMavv new file mode 100644 index 000000000000..5f1b4ca2ebe5 Binary files /dev/null and b/_data/iconsDownload/QmahJhdaLfGwBStQ9q9K4Mc73vLNqFV1otWCsT2ZKsMavv 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/QmaopiJuCSxRKZJHDkCu9w77x2HEmbNb3QeLC1SUavehEE b/_data/iconsDownload/QmaopiJuCSxRKZJHDkCu9w77x2HEmbNb3QeLC1SUavehEE new file mode 100644 index 000000000000..870e494fbd94 Binary files /dev/null and b/_data/iconsDownload/QmaopiJuCSxRKZJHDkCu9w77x2HEmbNb3QeLC1SUavehEE differ diff --git a/_data/iconsDownload/QmatvJXLgMthjXwydGBVFRtga9fZXJ3qFEVJ6cMRxniFUc b/_data/iconsDownload/QmatvJXLgMthjXwydGBVFRtga9fZXJ3qFEVJ6cMRxniFUc new file mode 100644 index 000000000000..8faf8b1230da Binary files /dev/null and b/_data/iconsDownload/QmatvJXLgMthjXwydGBVFRtga9fZXJ3qFEVJ6cMRxniFUc differ diff --git a/_data/iconsDownload/QmawMDPsaj3kBTZErCYQ3tshv5RrMAN3smWNs72m943Fyj b/_data/iconsDownload/QmawMDPsaj3kBTZErCYQ3tshv5RrMAN3smWNs72m943Fyj new file mode 100644 index 000000000000..27fe57bf88af Binary files /dev/null and b/_data/iconsDownload/QmawMDPsaj3kBTZErCYQ3tshv5RrMAN3smWNs72m943Fyj differ diff --git a/_data/iconsDownload/QmaxRoHpxZd8PqccAynherrMznMufG6sdmHZLihkECXmZv b/_data/iconsDownload/QmaxRoHpxZd8PqccAynherrMznMufG6sdmHZLihkECXmZv new file mode 100644 index 000000000000..2b3765ad5c66 Binary files /dev/null and b/_data/iconsDownload/QmaxRoHpxZd8PqccAynherrMznMufG6sdmHZLihkECXmZv differ diff --git a/_data/iconsDownload/QmayuauUTSkYxbT1xi2AkkG5VLEMDhcMeZ18WZHiApPa9M b/_data/iconsDownload/QmayuauUTSkYxbT1xi2AkkG5VLEMDhcMeZ18WZHiApPa9M new file mode 100644 index 000000000000..1e8f5736a198 Binary files /dev/null and b/_data/iconsDownload/QmayuauUTSkYxbT1xi2AkkG5VLEMDhcMeZ18WZHiApPa9M differ diff --git a/_data/iconsDownload/Qmb2UYVc1MjLPi8vhszWRxqBJYoYkWQVxDJRSmtrgk6j2E b/_data/iconsDownload/Qmb2UYVc1MjLPi8vhszWRxqBJYoYkWQVxDJRSmtrgk6j2E new file mode 100644 index 000000000000..0b2643c137d8 Binary files /dev/null and b/_data/iconsDownload/Qmb2UYVc1MjLPi8vhszWRxqBJYoYkWQVxDJRSmtrgk6j2E differ diff --git a/_data/iconsDownload/QmbCBBH4dFHGr8u1yQspCieQG9hLcPFNYdRx1wnVsX8hUw b/_data/iconsDownload/QmbCBBH4dFHGr8u1yQspCieQG9hLcPFNYdRx1wnVsX8hUw new file mode 100644 index 000000000000..358f0c8e74c7 --- /dev/null +++ b/_data/iconsDownload/QmbCBBH4dFHGr8u1yQspCieQG9hLcPFNYdRx1wnVsX8hUw @@ -0,0 +1,4 @@ + + + + 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/QmbENgHTymTUUArX5MZ2XXH69WGenirU3oamkRD448hYdz b/_data/iconsDownload/QmbENgHTymTUUArX5MZ2XXH69WGenirU3oamkRD448hYdz new file mode 100644 index 000000000000..a137f383e5af Binary files /dev/null and b/_data/iconsDownload/QmbENgHTymTUUArX5MZ2XXH69WGenirU3oamkRD448hYdz differ 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/QmbJ7CGZ2GxWMp7s6jy71UGzRsMe4w3KANKXDAExYWdaFR b/_data/iconsDownload/QmbJ7CGZ2GxWMp7s6jy71UGzRsMe4w3KANKXDAExYWdaFR new file mode 100644 index 000000000000..1963c5e3dcc2 --- /dev/null +++ b/_data/iconsDownload/QmbJ7CGZ2GxWMp7s6jy71UGzRsMe4w3KANKXDAExYWdaFR @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_data/iconsDownload/QmbM4weV8Bk6c9yNhosYntkVw39SNZtCHYGgWyXTxkevZ8 b/_data/iconsDownload/QmbM4weV8Bk6c9yNhosYntkVw39SNZtCHYGgWyXTxkevZ8 new file mode 100644 index 000000000000..e2c305f4f174 Binary files /dev/null and b/_data/iconsDownload/QmbM4weV8Bk6c9yNhosYntkVw39SNZtCHYGgWyXTxkevZ8 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/QmbVLQnaMDu86bPyKgCvTGhFBeYwjr15hQnrCcsp1EkAGL b/_data/iconsDownload/QmbVLQnaMDu86bPyKgCvTGhFBeYwjr15hQnrCcsp1EkAGL new file mode 100644 index 000000000000..64e18ef5f82d Binary files /dev/null and b/_data/iconsDownload/QmbVLQnaMDu86bPyKgCvTGhFBeYwjr15hQnrCcsp1EkAGL differ diff --git a/_data/iconsDownload/QmbYYCoU2G4LUfRr9ofGowF3eatfvWv9FiPVhqKndZeqwA b/_data/iconsDownload/QmbYYCoU2G4LUfRr9ofGowF3eatfvWv9FiPVhqKndZeqwA new file mode 100644 index 000000000000..8bf38d821c85 Binary files /dev/null and b/_data/iconsDownload/QmbYYCoU2G4LUfRr9ofGowF3eatfvWv9FiPVhqKndZeqwA differ 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/Qmbe3ChumXNRfHcLsNBY2APRrGxkFWP68Nb35MaKMRfPye b/_data/iconsDownload/Qmbe3ChumXNRfHcLsNBY2APRrGxkFWP68Nb35MaKMRfPye deleted file mode 100644 index 76287a5e5625..000000000000 Binary files a/_data/iconsDownload/Qmbe3ChumXNRfHcLsNBY2APRrGxkFWP68Nb35MaKMRfPye and /dev/null differ diff --git a/_data/iconsDownload/QmbeSYW2c5pXAyEUzj8UFRdJhp5oMQzRMPqAsxJAqbGiem b/_data/iconsDownload/QmbeSYW2c5pXAyEUzj8UFRdJhp5oMQzRMPqAsxJAqbGiem new file mode 100644 index 000000000000..be606b4b0605 Binary files /dev/null and b/_data/iconsDownload/QmbeSYW2c5pXAyEUzj8UFRdJhp5oMQzRMPqAsxJAqbGiem differ diff --git a/_data/iconsDownload/QmbiaHnR3fVVofZ7Xq2GYZxwHkLEy3Fh5qDtqnqXD6ACAh b/_data/iconsDownload/QmbiaHnR3fVVofZ7Xq2GYZxwHkLEy3Fh5qDtqnqXD6ACAh new file mode 100644 index 000000000000..f327387e2679 Binary files /dev/null and b/_data/iconsDownload/QmbiaHnR3fVVofZ7Xq2GYZxwHkLEy3Fh5qDtqnqXD6ACAh 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/QmbkCVC5vZpVAfq8SuPXR9PhpTRS2m8w6LGqBkhXAvmie6 b/_data/iconsDownload/QmbkCVC5vZpVAfq8SuPXR9PhpTRS2m8w6LGqBkhXAvmie6 new file mode 100644 index 000000000000..67cfdb884626 Binary files /dev/null and b/_data/iconsDownload/QmbkCVC5vZpVAfq8SuPXR9PhpTRS2m8w6LGqBkhXAvmie6 differ diff --git a/_data/iconsDownload/Qmbp1rwhtRr6JQRyYqyfLqkbmzXr1T17zbmChsi2ouvg3M b/_data/iconsDownload/Qmbp1rwhtRr6JQRyYqyfLqkbmzXr1T17zbmChsi2ouvg3M new file mode 100644 index 000000000000..2c43c6b1553f Binary files /dev/null and b/_data/iconsDownload/Qmbp1rwhtRr6JQRyYqyfLqkbmzXr1T17zbmChsi2ouvg3M differ diff --git a/_data/iconsDownload/Qmbry1Uc6HnXmqFNXW5dFJ7To8EezCCjNr4TqqvAyzXS4h b/_data/iconsDownload/Qmbry1Uc6HnXmqFNXW5dFJ7To8EezCCjNr4TqqvAyzXS4h new file mode 100644 index 000000000000..c9f982b15f7f Binary files /dev/null and b/_data/iconsDownload/Qmbry1Uc6HnXmqFNXW5dFJ7To8EezCCjNr4TqqvAyzXS4h differ diff --git a/_data/iconsDownload/QmbxmfWw5sVMASz5EbR1DCgLfk8PnqpSJGQKpYuEUpoxqn b/_data/iconsDownload/QmbxmfWw5sVMASz5EbR1DCgLfk8PnqpSJGQKpYuEUpoxqn new file mode 100644 index 000000000000..058d825faa01 --- /dev/null +++ b/_data/iconsDownload/QmbxmfWw5sVMASz5EbR1DCgLfk8PnqpSJGQKpYuEUpoxqn @@ -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/Qmbzy8c54EHh7yzMHZir98BrcV6sazr77QLoi63HAoayuo b/_data/iconsDownload/Qmbzy8c54EHh7yzMHZir98BrcV6sazr77QLoi63HAoayuo deleted file mode 100644 index 5058e02e37e2..000000000000 Binary files a/_data/iconsDownload/Qmbzy8c54EHh7yzMHZir98BrcV6sazr77QLoi63HAoayuo and /dev/null differ diff --git a/_data/iconsDownload/Qmc1gqjWTzNo4pyFSGtQuCu7kRSZZBUVybtTjHn2nNEEPA b/_data/iconsDownload/Qmc1gqjWTzNo4pyFSGtQuCu7kRSZZBUVybtTjHn2nNEEPA new file mode 100644 index 000000000000..6a7c93c00c1d --- /dev/null +++ b/_data/iconsDownload/Qmc1gqjWTzNo4pyFSGtQuCu7kRSZZBUVybtTjHn2nNEEPA @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_data/iconsDownload/Qmc44uSjfdNHdcxPTgZAL8eZ8TLe4UmSHibcvKQFyGJxTB b/_data/iconsDownload/Qmc44uSjfdNHdcxPTgZAL8eZ8TLe4UmSHibcvKQFyGJxTB new file mode 100644 index 000000000000..9e40f8cac9ab Binary files /dev/null and b/_data/iconsDownload/Qmc44uSjfdNHdcxPTgZAL8eZ8TLe4UmSHibcvKQFyGJxTB differ diff --git a/_data/iconsDownload/Qmc9N7V8CiLB4r7FEcG7GojqfiGGsRCZqcFWCahwMohbDW b/_data/iconsDownload/Qmc9N7V8CiLB4r7FEcG7GojqfiGGsRCZqcFWCahwMohbDW new file mode 100644 index 000000000000..0cace08228ac Binary files /dev/null and b/_data/iconsDownload/Qmc9N7V8CiLB4r7FEcG7GojqfiGGsRCZqcFWCahwMohbDW differ diff --git a/_data/iconsDownload/QmcDTR7982VQKDDz2Mh4fZbnE9hn67MuFPWQv1MimCqPvB b/_data/iconsDownload/QmcDTR7982VQKDDz2Mh4fZbnE9hn67MuFPWQv1MimCqPvB new file mode 100644 index 000000000000..7707024fd5aa Binary files /dev/null and b/_data/iconsDownload/QmcDTR7982VQKDDz2Mh4fZbnE9hn67MuFPWQv1MimCqPvB differ diff --git a/_data/iconsDownload/QmcEfZJU7NMn9ycTAcEooQgGNfa2nYBToSUZHdFCFadcjb b/_data/iconsDownload/QmcEfZJU7NMn9ycTAcEooQgGNfa2nYBToSUZHdFCFadcjb new file mode 100644 index 000000000000..bc28398d215d Binary files /dev/null and b/_data/iconsDownload/QmcEfZJU7NMn9ycTAcEooQgGNfa2nYBToSUZHdFCFadcjb differ diff --git a/_data/iconsDownload/QmcHdmVr5VRUJq13jnM6tgah5Ge7hn3Dm14eY6vwivJ5ui b/_data/iconsDownload/QmcHdmVr5VRUJq13jnM6tgah5Ge7hn3Dm14eY6vwivJ5ui new file mode 100644 index 000000000000..cc706d0a025b Binary files /dev/null and b/_data/iconsDownload/QmcHdmVr5VRUJq13jnM6tgah5Ge7hn3Dm14eY6vwivJ5ui differ diff --git a/_data/iconsDownload/QmcLdQ8gM4iHv3CCKA9HuxmzTxY4WhjWtepUVCc3dpzKxD b/_data/iconsDownload/QmcLdQ8gM4iHv3CCKA9HuxmzTxY4WhjWtepUVCc3dpzKxD new file mode 100644 index 000000000000..f4b54d820150 Binary files /dev/null and b/_data/iconsDownload/QmcLdQ8gM4iHv3CCKA9HuxmzTxY4WhjWtepUVCc3dpzKxD differ diff --git a/_data/iconsDownload/QmcNGLzKyc7Gu2dgpBFF6t3KJwFuKC79D56DW8GTc5DWRw b/_data/iconsDownload/QmcNGLzKyc7Gu2dgpBFF6t3KJwFuKC79D56DW8GTc5DWRw new file mode 100644 index 000000000000..14caaa82b811 Binary files /dev/null and b/_data/iconsDownload/QmcNGLzKyc7Gu2dgpBFF6t3KJwFuKC79D56DW8GTc5DWRw differ diff --git a/_data/iconsDownload/QmcNepHmbmHW1BZYM3MFqJW4awwhmDqhUPRXXmRnXwg1U4 b/_data/iconsDownload/QmcNepHmbmHW1BZYM3MFqJW4awwhmDqhUPRXXmRnXwg1U4 new file mode 100644 index 000000000000..d91093caee0a Binary files /dev/null and b/_data/iconsDownload/QmcNepHmbmHW1BZYM3MFqJW4awwhmDqhUPRXXmRnXwg1U4 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/QmcW64RgqQVHnNbVFyfaMNKt7dJvFqEbfEHZmeyeK8dpEa b/_data/iconsDownload/QmcW64RgqQVHnNbVFyfaMNKt7dJvFqEbfEHZmeyeK8dpEa new file mode 100644 index 000000000000..43c2046e1101 Binary files /dev/null and b/_data/iconsDownload/QmcW64RgqQVHnNbVFyfaMNKt7dJvFqEbfEHZmeyeK8dpEa 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/QmcXzfMNSQ7SZzKemNquVoXyG5ergdqCGeLWjRYETGBTUM b/_data/iconsDownload/QmcXzfMNSQ7SZzKemNquVoXyG5ergdqCGeLWjRYETGBTUM new file mode 100644 index 000000000000..39b072d337ae Binary files /dev/null and b/_data/iconsDownload/QmcXzfMNSQ7SZzKemNquVoXyG5ergdqCGeLWjRYETGBTUM differ diff --git a/_data/iconsDownload/Qmcd19ksUvNMD1XQFSC55jJhDPoF2zUzzV7woteFiugwBH b/_data/iconsDownload/Qmcd19ksUvNMD1XQFSC55jJhDPoF2zUzzV7woteFiugwBH new file mode 100644 index 000000000000..5f9786b15e1b --- /dev/null +++ b/_data/iconsDownload/Qmcd19ksUvNMD1XQFSC55jJhDPoF2zUzzV7woteFiugwBH @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + 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/Qmci6vPcWAwmq19j98yuQxjV6UPzHtThMdCAUDbKeb8oYu b/_data/iconsDownload/Qmci6vPcWAwmq19j98yuQxjV6UPzHtThMdCAUDbKeb8oYu new file mode 100644 index 000000000000..d15ed7dbf75d Binary files /dev/null and b/_data/iconsDownload/Qmci6vPcWAwmq19j98yuQxjV6UPzHtThMdCAUDbKeb8oYu differ diff --git a/_data/iconsDownload/Qmckj9B9F3jWDk9bv9HwoPmfjrx2Ju8J2BQSNoPFdYGduj b/_data/iconsDownload/Qmckj9B9F3jWDk9bv9HwoPmfjrx2Ju8J2BQSNoPFdYGduj new file mode 100644 index 000000000000..94677f630026 Binary files /dev/null and b/_data/iconsDownload/Qmckj9B9F3jWDk9bv9HwoPmfjrx2Ju8J2BQSNoPFdYGduj differ diff --git a/_data/iconsDownload/QmcnA15BLE9uvznbugXKjqquizZs1eLPeEEkc92DSmvhmt b/_data/iconsDownload/QmcnA15BLE9uvznbugXKjqquizZs1eLPeEEkc92DSmvhmt new file mode 100644 index 000000000000..a29a688470a2 Binary files /dev/null and b/_data/iconsDownload/QmcnA15BLE9uvznbugXKjqquizZs1eLPeEEkc92DSmvhmt differ diff --git a/_data/iconsDownload/QmcpyTj4hUyHJZ2VmSdkXFpPpRcNKRP1VxMs7Cp1anymNy b/_data/iconsDownload/QmcpyTj4hUyHJZ2VmSdkXFpPpRcNKRP1VxMs7Cp1anymNy new file mode 100644 index 000000000000..a9ba23b6197e Binary files /dev/null and b/_data/iconsDownload/QmcpyTj4hUyHJZ2VmSdkXFpPpRcNKRP1VxMs7Cp1anymNy differ diff --git a/_data/iconsDownload/Qmcr8US1DZcK3ooiMtE8tEQPgep12abXzxPw1jCkgZhji9 b/_data/iconsDownload/Qmcr8US1DZcK3ooiMtE8tEQPgep12abXzxPw1jCkgZhji9 new file mode 100644 index 000000000000..ef0a3408dbf2 Binary files /dev/null and b/_data/iconsDownload/Qmcr8US1DZcK3ooiMtE8tEQPgep12abXzxPw1jCkgZhji9 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/Qmd1PGt4cDRjFbh4ihP5QKEd4XQVwN1MkebYKdF56V74pf b/_data/iconsDownload/Qmd1PGt4cDRjFbh4ihP5QKEd4XQVwN1MkebYKdF56V74pf new file mode 100644 index 000000000000..6a8a44470aa9 --- /dev/null +++ b/_data/iconsDownload/Qmd1PGt4cDRjFbh4ihP5QKEd4XQVwN1MkebYKdF56V74pf @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_data/iconsDownload/Qmd26eRJxPb1jJg5Q4mC2M4kD9Jrs5vmcnr5LczHFMGwSD b/_data/iconsDownload/Qmd26eRJxPb1jJg5Q4mC2M4kD9Jrs5vmcnr5LczHFMGwSD new file mode 100644 index 000000000000..e75e2b4543c1 Binary files /dev/null and b/_data/iconsDownload/Qmd26eRJxPb1jJg5Q4mC2M4kD9Jrs5vmcnr5LczHFMGwSD differ diff --git a/_data/iconsDownload/Qmd4TMQdnYxaUZqnVddh5S37NGH72g2kkK38ccCEgdZz1C b/_data/iconsDownload/Qmd4TMQdnYxaUZqnVddh5S37NGH72g2kkK38ccCEgdZz1C new file mode 100644 index 000000000000..26f3c19f6957 Binary files /dev/null and b/_data/iconsDownload/Qmd4TMQdnYxaUZqnVddh5S37NGH72g2kkK38ccCEgdZz1C 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/Qmd7omPxrehSuxHHPMYd5Nr7nfrtjKdRJQEhDLfTb87w8G b/_data/iconsDownload/Qmd7omPxrehSuxHHPMYd5Nr7nfrtjKdRJQEhDLfTb87w8G new file mode 100644 index 000000000000..774e8d215d3a Binary files /dev/null and b/_data/iconsDownload/Qmd7omPxrehSuxHHPMYd5Nr7nfrtjKdRJQEhDLfTb87w8G differ diff --git a/_data/iconsDownload/QmdDHRKWaQErTzt4SdcVgoVHEzBHCswhoaojBxT9LNR6sq b/_data/iconsDownload/QmdDHRKWaQErTzt4SdcVgoVHEzBHCswhoaojBxT9LNR6sq new file mode 100644 index 000000000000..862f3f9f740c Binary files /dev/null and b/_data/iconsDownload/QmdDHRKWaQErTzt4SdcVgoVHEzBHCswhoaojBxT9LNR6sq 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/QmdFJMdnTvu4adiMERMP7B5ZZDwgiPmU3kU1qrUFdvHmUY b/_data/iconsDownload/QmdFJMdnTvu4adiMERMP7B5ZZDwgiPmU3kU1qrUFdvHmUY new file mode 100644 index 000000000000..cd09fe879cca Binary files /dev/null and b/_data/iconsDownload/QmdFJMdnTvu4adiMERMP7B5ZZDwgiPmU3kU1qrUFdvHmUY differ diff --git a/_data/iconsDownload/QmdGCthKA11K9kCZJdbTP5WPAyq1wiRZ3REn6KG58MrWaE b/_data/iconsDownload/QmdGCthKA11K9kCZJdbTP5WPAyq1wiRZ3REn6KG58MrWaE new file mode 100644 index 000000000000..28cbecdc01b4 Binary files /dev/null and b/_data/iconsDownload/QmdGCthKA11K9kCZJdbTP5WPAyq1wiRZ3REn6KG58MrWaE differ diff --git a/_data/iconsDownload/QmdGfvH9qfvbMXYKosS1nHbw3q5UtFJky4hdMDmmKDTx8Y b/_data/iconsDownload/QmdGfvH9qfvbMXYKosS1nHbw3q5UtFJky4hdMDmmKDTx8Y new file mode 100644 index 000000000000..e21864f8fc1e Binary files /dev/null and b/_data/iconsDownload/QmdGfvH9qfvbMXYKosS1nHbw3q5UtFJky4hdMDmmKDTx8Y differ diff --git a/_data/iconsDownload/QmdHpjiepU2Q4bt4kR48tKHPgaQW57Sb6UVFgLh4MCyg6U b/_data/iconsDownload/QmdHpjiepU2Q4bt4kR48tKHPgaQW57Sb6UVFgLh4MCyg6U new file mode 100644 index 000000000000..3b8126bd93fe Binary files /dev/null and b/_data/iconsDownload/QmdHpjiepU2Q4bt4kR48tKHPgaQW57Sb6UVFgLh4MCyg6U differ diff --git a/_data/iconsDownload/QmdR3YL9F95ajwVwfxAGoEzYwm9w7JNsPSfUPjSaQogVjK b/_data/iconsDownload/QmdR3YL9F95ajwVwfxAGoEzYwm9w7JNsPSfUPjSaQogVjK new file mode 100644 index 000000000000..7f4d30deef81 --- /dev/null +++ b/_data/iconsDownload/QmdR3YL9F95ajwVwfxAGoEzYwm9w7JNsPSfUPjSaQogVjK @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/_data/iconsDownload/QmdR9QJjQEh1mBnf2WbJfehverxiP5RDPWMtEECbDP2rc3 b/_data/iconsDownload/QmdR9QJjQEh1mBnf2WbJfehverxiP5RDPWMtEECbDP2rc3 new file mode 100644 index 000000000000..23a2a2221bd2 Binary files /dev/null and b/_data/iconsDownload/QmdR9QJjQEh1mBnf2WbJfehverxiP5RDPWMtEECbDP2rc3 differ diff --git a/_data/iconsDownload/QmdTfku81ohnG9ECU1Xswmeumt678cBhwHWuFYZ7i1Qsto b/_data/iconsDownload/QmdTfku81ohnG9ECU1Xswmeumt678cBhwHWuFYZ7i1Qsto new file mode 100644 index 000000000000..5e14cb203106 Binary files /dev/null and b/_data/iconsDownload/QmdTfku81ohnG9ECU1Xswmeumt678cBhwHWuFYZ7i1Qsto differ diff --git a/_data/iconsDownload/QmdUYi8fjnvdM9iFQ7dwE2YvmhDtavSB3bKhCD2GhPxPks b/_data/iconsDownload/QmdUYi8fjnvdM9iFQ7dwE2YvmhDtavSB3bKhCD2GhPxPks new file mode 100644 index 000000000000..695e206bc3ee Binary files /dev/null and b/_data/iconsDownload/QmdUYi8fjnvdM9iFQ7dwE2YvmhDtavSB3bKhCD2GhPxPks 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/QmdW7XfRgeyoaHXEvXp8MaVteonankR32CxhL3K5Yc2uQM b/_data/iconsDownload/QmdW7XfRgeyoaHXEvXp8MaVteonankR32CxhL3K5Yc2uQM new file mode 100644 index 000000000000..1175a41d5c22 Binary files /dev/null and b/_data/iconsDownload/QmdW7XfRgeyoaHXEvXp8MaVteonankR32CxhL3K5Yc2uQM differ diff --git a/_data/iconsDownload/QmdWZ1frB47fr3tw31xE68C2Vocaw5Ef53LQ5WDNdNnNyG b/_data/iconsDownload/QmdWZ1frB47fr3tw31xE68C2Vocaw5Ef53LQ5WDNdNnNyG new file mode 100644 index 000000000000..1cef386c9cf8 Binary files /dev/null and b/_data/iconsDownload/QmdWZ1frB47fr3tw31xE68C2Vocaw5Ef53LQ5WDNdNnNyG differ diff --git a/_data/iconsDownload/QmdaQRUbAXJGfHeJ8jaB8WVh8CCmHExq8VjvAfXpLWWQEo b/_data/iconsDownload/QmdaQRUbAXJGfHeJ8jaB8WVh8CCmHExq8VjvAfXpLWWQEo new file mode 100644 index 000000000000..1fbc5ed39ec3 Binary files /dev/null and b/_data/iconsDownload/QmdaQRUbAXJGfHeJ8jaB8WVh8CCmHExq8VjvAfXpLWWQEo differ diff --git a/_data/iconsDownload/QmdbFGqrpiLQGtAeUAyeS2NBvACfgrchEF466ni5q36fuZ b/_data/iconsDownload/QmdbFGqrpiLQGtAeUAyeS2NBvACfgrchEF466ni5q36fuZ new file mode 100644 index 000000000000..a82c97e93ae7 Binary files /dev/null and b/_data/iconsDownload/QmdbFGqrpiLQGtAeUAyeS2NBvACfgrchEF466ni5q36fuZ differ diff --git a/_data/iconsDownload/QmdbPhiB5W2gbHZGkYsN7i2VTKKP9casmAN2hRnpDaL9W4 b/_data/iconsDownload/QmdbPhiB5W2gbHZGkYsN7i2VTKKP9casmAN2hRnpDaL9W4 new file mode 100644 index 000000000000..24f1595e1165 Binary files /dev/null and b/_data/iconsDownload/QmdbPhiB5W2gbHZGkYsN7i2VTKKP9casmAN2hRnpDaL9W4 differ diff --git a/_data/iconsDownload/QmdfbjjF3ZzN2jTkH9REgrA8jDS6A6c21n7rbWSVbSnvQc b/_data/iconsDownload/QmdfbjjF3ZzN2jTkH9REgrA8jDS6A6c21n7rbWSVbSnvQc new file mode 100644 index 000000000000..e9c629c2f6bd --- /dev/null +++ b/_data/iconsDownload/QmdfbjjF3ZzN2jTkH9REgrA8jDS6A6c21n7rbWSVbSnvQc @@ -0,0 +1 @@ + \ No newline at end of file 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/QmdoQUfYqtkWMfjtoPv2KWDY4MxDDSsyWgwXtCx6jfkezz b/_data/iconsDownload/QmdoQUfYqtkWMfjtoPv2KWDY4MxDDSsyWgwXtCx6jfkezz new file mode 100644 index 000000000000..0c17ae022deb Binary files /dev/null and b/_data/iconsDownload/QmdoQUfYqtkWMfjtoPv2KWDY4MxDDSsyWgwXtCx6jfkezz differ diff --git a/_data/iconsDownload/QmdoUtvHDybu5ppYBZT8BMRp6AqByVSoQs8nFwKbaS55jd b/_data/iconsDownload/QmdoUtvHDybu5ppYBZT8BMRp6AqByVSoQs8nFwKbaS55jd new file mode 100644 index 000000000000..ccadffd85f85 --- /dev/null +++ b/_data/iconsDownload/QmdoUtvHDybu5ppYBZT8BMRp6AqByVSoQs8nFwKbaS55jd @@ -0,0 +1,12 @@ + + + + + + + + + + + + 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/QmduEdtFobPpZWSc45MU6RKxZfTEzLux2z8ikHFhT8usqv b/_data/iconsDownload/QmduEdtFobPpZWSc45MU6RKxZfTEzLux2z8ikHFhT8usqv new file mode 100644 index 000000000000..6b84bb383c89 Binary files /dev/null and b/_data/iconsDownload/QmduEdtFobPpZWSc45MU6RKxZfTEzLux2z8ikHFhT8usqv 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/QmdwifhejRfF8QfyzYrNdFVhfhCR6iuzWMmppK4eL7kttG b/_data/iconsDownload/QmdwifhejRfF8QfyzYrNdFVhfhCR6iuzWMmppK4eL7kttG new file mode 100644 index 000000000000..3f8900c40e2e Binary files /dev/null and b/_data/iconsDownload/QmdwifhejRfF8QfyzYrNdFVhfhCR6iuzWMmppK4eL7kttG differ diff --git a/_data/iconsDownload/Qme2Z8VFYjhHGfLQPBnfseNpEdRfmTDy7VXqrdH4AHETJf b/_data/iconsDownload/Qme2Z8VFYjhHGfLQPBnfseNpEdRfmTDy7VXqrdH4AHETJf new file mode 100644 index 000000000000..eb19e3011ff8 Binary files /dev/null and b/_data/iconsDownload/Qme2Z8VFYjhHGfLQPBnfseNpEdRfmTDy7VXqrdH4AHETJf differ diff --git a/_data/iconsDownload/Qme5nxFZZoNNpiT8u9WwcBot4HyLTg2jxMxRnsbc5voQwB b/_data/iconsDownload/Qme5nxFZZoNNpiT8u9WwcBot4HyLTg2jxMxRnsbc5voQwB new file mode 100644 index 000000000000..97becd705764 Binary files /dev/null and b/_data/iconsDownload/Qme5nxFZZoNNpiT8u9WwcBot4HyLTg2jxMxRnsbc5voQwB differ diff --git a/_data/iconsDownload/Qme7PT7gidTzRuf3T2JdxQ64JeZPgFH7yNBB8mYoMPbpTe b/_data/iconsDownload/Qme7PT7gidTzRuf3T2JdxQ64JeZPgFH7yNBB8mYoMPbpTe new file mode 100644 index 000000000000..64a3aa8bbf7c Binary files /dev/null and b/_data/iconsDownload/Qme7PT7gidTzRuf3T2JdxQ64JeZPgFH7yNBB8mYoMPbpTe differ diff --git a/_data/iconsDownload/QmeCyZeibUoHNoYGzy1GkzH2uhxyRHKvH51PdaUMer4VTo b/_data/iconsDownload/QmeCyZeibUoHNoYGzy1GkzH2uhxyRHKvH51PdaUMer4VTo new file mode 100644 index 000000000000..f033a506ea20 Binary files /dev/null and b/_data/iconsDownload/QmeCyZeibUoHNoYGzy1GkzH2uhxyRHKvH51PdaUMer4VTo differ diff --git a/_data/iconsDownload/QmeDXHkpranzqGN1BmQqZSrFp4vGXf4JfaB5iq8WHHiwDi b/_data/iconsDownload/QmeDXHkpranzqGN1BmQqZSrFp4vGXf4JfaB5iq8WHHiwDi new file mode 100644 index 000000000000..d1206070ab84 Binary files /dev/null and b/_data/iconsDownload/QmeDXHkpranzqGN1BmQqZSrFp4vGXf4JfaB5iq8WHHiwDi differ diff --git a/_data/iconsDownload/QmeDXUAYgQxwaSJLsqWgTqnrJVwicgEyNf9199xAMyRkqA b/_data/iconsDownload/QmeDXUAYgQxwaSJLsqWgTqnrJVwicgEyNf9199xAMyRkqA new file mode 100644 index 000000000000..1ba22f54f3b3 --- /dev/null +++ b/_data/iconsDownload/QmeDXUAYgQxwaSJLsqWgTqnrJVwicgEyNf9199xAMyRkqA @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + diff --git a/_data/iconsDownload/QmeFaJtQqTKKuXQR7ysS53bLFPasFBcZw445cvYJ2HGeTo b/_data/iconsDownload/QmeFaJtQqTKKuXQR7ysS53bLFPasFBcZw445cvYJ2HGeTo new file mode 100644 index 000000000000..4419d30f0f7c Binary files /dev/null and b/_data/iconsDownload/QmeFaJtQqTKKuXQR7ysS53bLFPasFBcZw445cvYJ2HGeTo differ diff --git a/_data/iconsDownload/QmeGb65zSworzoHmwK3jdkPtEsQZMUSJRxf8K8Feg56soU b/_data/iconsDownload/QmeGb65zSworzoHmwK3jdkPtEsQZMUSJRxf8K8Feg56soU new file mode 100644 index 000000000000..ba86c38c5008 Binary files /dev/null and b/_data/iconsDownload/QmeGb65zSworzoHmwK3jdkPtEsQZMUSJRxf8K8Feg56soU differ 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/QmeHNYUx6n8CjUFSLWNT17oAtDYrUq6r8buyvGCUBXCJw6 b/_data/iconsDownload/QmeHNYUx6n8CjUFSLWNT17oAtDYrUq6r8buyvGCUBXCJw6 new file mode 100644 index 000000000000..076fd17d69a3 Binary files /dev/null and b/_data/iconsDownload/QmeHNYUx6n8CjUFSLWNT17oAtDYrUq6r8buyvGCUBXCJw6 differ diff --git a/_data/iconsDownload/QmeJerrsURFNt2LL7DE7TxeunjrQXiuezdfHyqmsbwX3MZ b/_data/iconsDownload/QmeJerrsURFNt2LL7DE7TxeunjrQXiuezdfHyqmsbwX3MZ new file mode 100644 index 000000000000..f38545cb915c Binary files /dev/null and b/_data/iconsDownload/QmeJerrsURFNt2LL7DE7TxeunjrQXiuezdfHyqmsbwX3MZ differ diff --git a/_data/iconsDownload/QmeKQVv2QneHaaggw2NfpZ7DGMdjVhPywTdse5RzCs4oGn b/_data/iconsDownload/QmeKQVv2QneHaaggw2NfpZ7DGMdjVhPywTdse5RzCs4oGn new file mode 100644 index 000000000000..59ab210a6e9f Binary files /dev/null and b/_data/iconsDownload/QmeKQVv2QneHaaggw2NfpZ7DGMdjVhPywTdse5RzCs4oGn differ diff --git a/_data/iconsDownload/QmeMa6aw3ebUKJdGgbzDgcVtggzp7cQdfSrmzMYmnt5ywc b/_data/iconsDownload/QmeMa6aw3ebUKJdGgbzDgcVtggzp7cQdfSrmzMYmnt5ywc new file mode 100644 index 000000000000..f91a5ce8fad8 Binary files /dev/null and b/_data/iconsDownload/QmeMa6aw3ebUKJdGgbzDgcVtggzp7cQdfSrmzMYmnt5ywc differ diff --git a/_data/iconsDownload/QmeNYqxR4nEk1v3DBXY3gjzYC1MSNCTmRvmjZ72inyzCFv b/_data/iconsDownload/QmeNYqxR4nEk1v3DBXY3gjzYC1MSNCTmRvmjZ72inyzCFv deleted file mode 100644 index dc213f6721c8..000000000000 Binary files a/_data/iconsDownload/QmeNYqxR4nEk1v3DBXY3gjzYC1MSNCTmRvmjZ72inyzCFv and /dev/null differ diff --git a/_data/iconsDownload/QmePhfibWz9jnGUqF9Rven4x734br1h3LxrChYTEjbbQvo b/_data/iconsDownload/QmePhfibWz9jnGUqF9Rven4x734br1h3LxrChYTEjbbQvo new file mode 100644 index 000000000000..b3a7393b31e8 Binary files /dev/null and b/_data/iconsDownload/QmePhfibWz9jnGUqF9Rven4x734br1h3LxrChYTEjbbQvo differ diff --git a/_data/iconsDownload/QmeRq7pabiJE2n1xU3Y5Mb4TZSX9kQ74x7a3P2Z4PqcMRX b/_data/iconsDownload/QmeRq7pabiJE2n1xU3Y5Mb4TZSX9kQ74x7a3P2Z4PqcMRX new file mode 100644 index 000000000000..ec74f7ace1b1 Binary files /dev/null and b/_data/iconsDownload/QmeRq7pabiJE2n1xU3Y5Mb4TZSX9kQ74x7a3P2Z4PqcMRX 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/QmeYpc2JfEsHa2Bh11SKRx3sgDtMeg6T8KpXNLepBEKnbJ b/_data/iconsDownload/QmeYpc2JfEsHa2Bh11SKRx3sgDtMeg6T8KpXNLepBEKnbJ new file mode 100644 index 000000000000..957d3b3d6625 Binary files /dev/null and b/_data/iconsDownload/QmeYpc2JfEsHa2Bh11SKRx3sgDtMeg6T8KpXNLepBEKnbJ differ 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/QmeknNzGCZXQK7egwfwyxQan7Lw8bLnqYsyoEgEbDNCzJX b/_data/iconsDownload/QmeknNzGCZXQK7egwfwyxQan7Lw8bLnqYsyoEgEbDNCzJX new file mode 100644 index 000000000000..62d775df7c2c Binary files /dev/null and b/_data/iconsDownload/QmeknNzGCZXQK7egwfwyxQan7Lw8bLnqYsyoEgEbDNCzJX differ diff --git a/_data/iconsDownload/QmeooM7QicT1YbgY93XPd5p7JsCjYhN3qjWt68X57g6bVC b/_data/iconsDownload/QmeooM7QicT1YbgY93XPd5p7JsCjYhN3qjWt68X57g6bVC new file mode 100644 index 000000000000..0ef3e01fd049 Binary files /dev/null and b/_data/iconsDownload/QmeooM7QicT1YbgY93XPd5p7JsCjYhN3qjWt68X57g6bVC differ diff --git a/_data/iconsDownload/QmerDBFoXvgev2xx9U71gAaAK4CtxaaQVaAPf9Qi6UF9MS b/_data/iconsDownload/QmerDBFoXvgev2xx9U71gAaAK4CtxaaQVaAPf9Qi6UF9MS new file mode 100644 index 000000000000..80a4164dd5fe Binary files /dev/null and b/_data/iconsDownload/QmerDBFoXvgev2xx9U71gAaAK4CtxaaQVaAPf9Qi6UF9MS 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/Qmetu9hMLvczYo7tDPRyjqjBHwwpHU8mEgW3PEPPre56su b/_data/iconsDownload/Qmetu9hMLvczYo7tDPRyjqjBHwwpHU8mEgW3PEPPre56su new file mode 100644 index 000000000000..6e9674d5116e Binary files /dev/null and b/_data/iconsDownload/Qmetu9hMLvczYo7tDPRyjqjBHwwpHU8mEgW3PEPPre56su differ diff --git a/_data/iconsDownload/QmeucqvcreQk8nnSRUiHo3QTvLoYYB7shJTKXj5Tk6BtWi b/_data/iconsDownload/QmeucqvcreQk8nnSRUiHo3QTvLoYYB7shJTKXj5Tk6BtWi new file mode 100644 index 000000000000..b1893ea78669 Binary files /dev/null and b/_data/iconsDownload/QmeucqvcreQk8nnSRUiHo3QTvLoYYB7shJTKXj5Tk6BtWi differ diff --git a/_data/iconsDownload/QmevQ8jmDWHmdnUQg6BpoMwVB3NhpzS75adbMnKL78Ls2h b/_data/iconsDownload/QmevQ8jmDWHmdnUQg6BpoMwVB3NhpzS75adbMnKL78Ls2h new file mode 100644 index 000000000000..b2145d603d05 Binary files /dev/null and b/_data/iconsDownload/QmevQ8jmDWHmdnUQg6BpoMwVB3NhpzS75adbMnKL78Ls2h differ diff --git a/_data/iconsDownload/QmezBwVepoegoCqb86idzPgvPxtaSuXzMLBGiiYfyTGTkc b/_data/iconsDownload/QmezBwVepoegoCqb86idzPgvPxtaSuXzMLBGiiYfyTGTkc new file mode 100644 index 000000000000..1bcb1f003333 Binary files /dev/null and b/_data/iconsDownload/QmezBwVepoegoCqb86idzPgvPxtaSuXzMLBGiiYfyTGTkc differ diff --git a/_data/iconsDownload/Qmf3GYbPXmTDpSP6t7Ug2j5HjEwrY5oGhBDP7d4TQHvGnG b/_data/iconsDownload/Qmf3GYbPXmTDpSP6t7Ug2j5HjEwrY5oGhBDP7d4TQHvGnG new file mode 100644 index 000000000000..e1dae7c17b5b Binary files /dev/null and b/_data/iconsDownload/Qmf3GYbPXmTDpSP6t7Ug2j5HjEwrY5oGhBDP7d4TQHvGnG 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/QmfFK6B4MFLrpSS46aLf7hjpt28poHFeTGEKEuH248Tbyj b/_data/iconsDownload/QmfFK6B4MFLrpSS46aLf7hjpt28poHFeTGEKEuH248Tbyj new file mode 100644 index 000000000000..0604880e456b Binary files /dev/null and b/_data/iconsDownload/QmfFK6B4MFLrpSS46aLf7hjpt28poHFeTGEKEuH248Tbyj 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/QmfJ1Qxpzi6CSLeFeWY1Bwe435CpT5za5WfrLUE7vNzZfy b/_data/iconsDownload/QmfJ1Qxpzi6CSLeFeWY1Bwe435CpT5za5WfrLUE7vNzZfy new file mode 100644 index 000000000000..fc83d37007f8 Binary files /dev/null and b/_data/iconsDownload/QmfJ1Qxpzi6CSLeFeWY1Bwe435CpT5za5WfrLUE7vNzZfy differ diff --git a/_data/iconsDownload/QmfJLG2mXgSqKx2V3A2jzTwt4vkozvQTTXkRy3os27wEVm b/_data/iconsDownload/QmfJLG2mXgSqKx2V3A2jzTwt4vkozvQTTXkRy3os27wEVm new file mode 100644 index 000000000000..238fac534728 Binary files /dev/null and b/_data/iconsDownload/QmfJLG2mXgSqKx2V3A2jzTwt4vkozvQTTXkRy3os27wEVm differ diff --git a/_data/iconsDownload/QmfMXiYn4xF9JwdjaqM5YKhqoByox51XvnL68VvKJS6yyu b/_data/iconsDownload/QmfMXiYn4xF9JwdjaqM5YKhqoByox51XvnL68VvKJS6yyu new file mode 100644 index 000000000000..fce9e4a98404 Binary files /dev/null and b/_data/iconsDownload/QmfMXiYn4xF9JwdjaqM5YKhqoByox51XvnL68VvKJS6yyu differ diff --git a/_data/iconsDownload/QmfMd564KUPK8eKZDwGCT71ZC2jMnUZqP6LCtLpup3rHH1 b/_data/iconsDownload/QmfMd564KUPK8eKZDwGCT71ZC2jMnUZqP6LCtLpup3rHH1 new file mode 100644 index 000000000000..6085715d620f Binary files /dev/null and b/_data/iconsDownload/QmfMd564KUPK8eKZDwGCT71ZC2jMnUZqP6LCtLpup3rHH1 differ diff --git a/_data/iconsDownload/QmfP1QDK42B7EzYWsYN2PGfjkZUQtSjm1k5gNNT52ixsKL b/_data/iconsDownload/QmfP1QDK42B7EzYWsYN2PGfjkZUQtSjm1k5gNNT52ixsKL new file mode 100644 index 000000000000..ee8e137cf5f8 Binary files /dev/null and b/_data/iconsDownload/QmfP1QDK42B7EzYWsYN2PGfjkZUQtSjm1k5gNNT52ixsKL differ diff --git a/_data/iconsDownload/QmfQ1yae6uvXgBSwnwJM4Mtp8ctH66tM6mB1Hsgu4XvsC9 b/_data/iconsDownload/QmfQ1yae6uvXgBSwnwJM4Mtp8ctH66tM6mB1Hsgu4XvsC9 new file mode 100644 index 000000000000..58ccdef54e16 Binary files /dev/null and b/_data/iconsDownload/QmfQ1yae6uvXgBSwnwJM4Mtp8ctH66tM6mB1Hsgu4XvsC9 differ 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/QmfTeudwVJcu7jzySBcpD9H5ZVK66nPJKRnicxend1bxfq b/_data/iconsDownload/QmfTeudwVJcu7jzySBcpD9H5ZVK66nPJKRnicxend1bxfq new file mode 100644 index 000000000000..574638bff6dd --- /dev/null +++ b/_data/iconsDownload/QmfTeudwVJcu7jzySBcpD9H5ZVK66nPJKRnicxend1bxfq @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/_data/iconsDownload/QmfVmjLNiBh8KyCr9mwDZh34aEhhQ2LAjuP87DFxhfd9nn b/_data/iconsDownload/QmfVmjLNiBh8KyCr9mwDZh34aEhhQ2LAjuP87DFxhfd9nn new file mode 100644 index 000000000000..fdcb9f6e46fe Binary files /dev/null and b/_data/iconsDownload/QmfVmjLNiBh8KyCr9mwDZh34aEhhQ2LAjuP87DFxhfd9nn 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/QmfVxdrWjtUKiGzqFDzAxHH2FqwP2aRuZTGcYWdWg519Xy b/_data/iconsDownload/QmfVxdrWjtUKiGzqFDzAxHH2FqwP2aRuZTGcYWdWg519Xy new file mode 100644 index 000000000000..52b51cd21c3c Binary files /dev/null and b/_data/iconsDownload/QmfVxdrWjtUKiGzqFDzAxHH2FqwP2aRuZTGcYWdWg519Xy differ diff --git a/_data/iconsDownload/QmfXCh6UnaEHn3Evz7RFJ3p2ggJBRm9hunDHegeoquGuhD b/_data/iconsDownload/QmfXCh6UnaEHn3Evz7RFJ3p2ggJBRm9hunDHegeoquGuhD new file mode 100644 index 000000000000..711e981a5730 Binary files /dev/null and b/_data/iconsDownload/QmfXCh6UnaEHn3Evz7RFJ3p2ggJBRm9hunDHegeoquGuhD 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/bafkreiaasav3psn6ac5ktfmod6m76zv4w2odl4cc2gmuo2jglrhypmczzq b/_data/iconsDownload/bafkreiaasav3psn6ac5ktfmod6m76zv4w2odl4cc2gmuo2jglrhypmczzq new file mode 100644 index 000000000000..b825da99b558 Binary files /dev/null and b/_data/iconsDownload/bafkreiaasav3psn6ac5ktfmod6m76zv4w2odl4cc2gmuo2jglrhypmczzq differ diff --git a/_data/iconsDownload/bafkreiagdqfrvnbdjhkh27gjbvepzo66dpqgnbffmpnywuw5ncprg3jk3u b/_data/iconsDownload/bafkreiagdqfrvnbdjhkh27gjbvepzo66dpqgnbffmpnywuw5ncprg3jk3u new file mode 100644 index 000000000000..34af6573fabd Binary files /dev/null and b/_data/iconsDownload/bafkreiagdqfrvnbdjhkh27gjbvepzo66dpqgnbffmpnywuw5ncprg3jk3u differ diff --git a/_data/iconsDownload/bafkreiapaxokh2p4j7hg43ug2inomixiwrdhni4kpqazvqifssnez7efze b/_data/iconsDownload/bafkreiapaxokh2p4j7hg43ug2inomixiwrdhni4kpqazvqifssnez7efze new file mode 100644 index 000000000000..e52e1eb81340 Binary files /dev/null and b/_data/iconsDownload/bafkreiapaxokh2p4j7hg43ug2inomixiwrdhni4kpqazvqifssnez7efze differ diff --git a/_data/iconsDownload/bafkreiarso74bytq5ccnl3mlfhd4ejiylwautsr6ovbqgmynzjzmkorn6y b/_data/iconsDownload/bafkreiarso74bytq5ccnl3mlfhd4ejiylwautsr6ovbqgmynzjzmkorn6y new file mode 100644 index 000000000000..7dec23c49c60 --- /dev/null +++ b/_data/iconsDownload/bafkreiarso74bytq5ccnl3mlfhd4ejiylwautsr6ovbqgmynzjzmkorn6y @@ -0,0 +1,8 @@ + + + + + + + + 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/bafkreiayuuzfpcgwjll4us4hquvpqa5gwq3lbiedv4qftmlwcxhcyjzzpq b/_data/iconsDownload/bafkreiayuuzfpcgwjll4us4hquvpqa5gwq3lbiedv4qftmlwcxhcyjzzpq new file mode 100644 index 000000000000..0f52dd32d0a2 Binary files /dev/null and b/_data/iconsDownload/bafkreiayuuzfpcgwjll4us4hquvpqa5gwq3lbiedv4qftmlwcxhcyjzzpq differ 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/bafkreib62bv2d65d7nidojgpkgatrt7smee2l4ov6i6ozqhpfaqsonxku4 b/_data/iconsDownload/bafkreib62bv2d65d7nidojgpkgatrt7smee2l4ov6i6ozqhpfaqsonxku4 new file mode 100644 index 000000000000..7a80ab892c28 Binary files /dev/null and b/_data/iconsDownload/bafkreib62bv2d65d7nidojgpkgatrt7smee2l4ov6i6ozqhpfaqsonxku4 differ 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/bafkreibjsc3gww3moti27za2hpyq552aevux3yv5y2ntdklksyr4v4uavy b/_data/iconsDownload/bafkreibjsc3gww3moti27za2hpyq552aevux3yv5y2ntdklksyr4v4uavy new file mode 100644 index 000000000000..aa63dbbb1bad Binary files /dev/null and b/_data/iconsDownload/bafkreibjsc3gww3moti27za2hpyq552aevux3yv5y2ntdklksyr4v4uavy differ diff --git a/_data/iconsDownload/bafkreibjxqd5kqcc2shstjjujvxzg6cwegwr6dgjyyd56v6h7yusgks7sy b/_data/iconsDownload/bafkreibjxqd5kqcc2shstjjujvxzg6cwegwr6dgjyyd56v6h7yusgks7sy new file mode 100644 index 000000000000..9c9d164d70bc Binary files /dev/null and b/_data/iconsDownload/bafkreibjxqd5kqcc2shstjjujvxzg6cwegwr6dgjyyd56v6h7yusgks7sy differ diff --git a/_data/iconsDownload/bafkreibky2sy6qhi6arktayvologkrgu5kudpgdxfkx4uosbvmstz7v4di b/_data/iconsDownload/bafkreibky2sy6qhi6arktayvologkrgu5kudpgdxfkx4uosbvmstz7v4di new file mode 100644 index 000000000000..b0995ac6e9ac Binary files /dev/null and b/_data/iconsDownload/bafkreibky2sy6qhi6arktayvologkrgu5kudpgdxfkx4uosbvmstz7v4di differ diff --git a/_data/iconsDownload/bafkreiblhmgzou3p7n6cp2jb3huqzctb5ax4tnkuf4azyf7djzrsqn4fua b/_data/iconsDownload/bafkreiblhmgzou3p7n6cp2jb3huqzctb5ax4tnkuf4azyf7djzrsqn4fua new file mode 100644 index 000000000000..f698714929ac Binary files /dev/null and b/_data/iconsDownload/bafkreiblhmgzou3p7n6cp2jb3huqzctb5ax4tnkuf4azyf7djzrsqn4fua differ diff --git a/_data/iconsDownload/bafkreibqe2mgiqezi24sx272kunqt6pv7uzxhpkxuobvpbsptce3q6nn5i b/_data/iconsDownload/bafkreibqe2mgiqezi24sx272kunqt6pv7uzxhpkxuobvpbsptce3q6nn5i new file mode 100644 index 000000000000..62e6b504d515 Binary files /dev/null and b/_data/iconsDownload/bafkreibqe2mgiqezi24sx272kunqt6pv7uzxhpkxuobvpbsptce3q6nn5i differ diff --git a/_data/iconsDownload/bafkreibqgh23s7yt7rikybybiwfivwtoh32n24scjykvgbgewo3ecbrcye b/_data/iconsDownload/bafkreibqgh23s7yt7rikybybiwfivwtoh32n24scjykvgbgewo3ecbrcye new file mode 100644 index 000000000000..e4993612faef Binary files /dev/null and b/_data/iconsDownload/bafkreibqgh23s7yt7rikybybiwfivwtoh32n24scjykvgbgewo3ecbrcye 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/bafkreic4aq265oaf6yze7ba5okefqh6vnqudyrz6ovukvbnrlhet36itle b/_data/iconsDownload/bafkreic4aq265oaf6yze7ba5okefqh6vnqudyrz6ovukvbnrlhet36itle new file mode 100644 index 000000000000..c8424625aadc Binary files /dev/null and b/_data/iconsDownload/bafkreic4aq265oaf6yze7ba5okefqh6vnqudyrz6ovukvbnrlhet36itle 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/bafkreicyvc7t55zsejv6vwaxbmhvea5vdfkkbgqkmn65rhyyifpg3mq3ua b/_data/iconsDownload/bafkreicyvc7t55zsejv6vwaxbmhvea5vdfkkbgqkmn65rhyyifpg3mq3ua new file mode 100644 index 000000000000..7272d04c111f Binary files /dev/null and b/_data/iconsDownload/bafkreicyvc7t55zsejv6vwaxbmhvea5vdfkkbgqkmn65rhyyifpg3mq3ua differ diff --git a/_data/iconsDownload/bafkreiczbhnoc5wpjikskmehexmg3xmqr4fchrny64db4wmk3lrygqik5e b/_data/iconsDownload/bafkreiczbhnoc5wpjikskmehexmg3xmqr4fchrny64db4wmk3lrygqik5e new file mode 100644 index 000000000000..9d8ad13ead7a Binary files /dev/null and b/_data/iconsDownload/bafkreiczbhnoc5wpjikskmehexmg3xmqr4fchrny64db4wmk3lrygqik5e 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/bafkreid5evn4qovxo6msuekizv5zn7va62tea7w2zpdx5sskconebuhqle b/_data/iconsDownload/bafkreid5evn4qovxo6msuekizv5zn7va62tea7w2zpdx5sskconebuhqle new file mode 100644 index 000000000000..27a97e7ceb7f Binary files /dev/null and b/_data/iconsDownload/bafkreid5evn4qovxo6msuekizv5zn7va62tea7w2zpdx5sskconebuhqle differ diff --git a/_data/iconsDownload/bafkreid6pm3mic7izp3a6zlfwhhe7etd276bjfsq2xash6a4s2vmcdf65a b/_data/iconsDownload/bafkreid6pm3mic7izp3a6zlfwhhe7etd276bjfsq2xash6a4s2vmcdf65a new file mode 100644 index 000000000000..1f4e80497e8e Binary files /dev/null and b/_data/iconsDownload/bafkreid6pm3mic7izp3a6zlfwhhe7etd276bjfsq2xash6a4s2vmcdf65a 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/bafkreidchntjaxmq52cuqqoalpajk5ssk4p77k7n4jgywqmkpldo5qgobm b/_data/iconsDownload/bafkreidchntjaxmq52cuqqoalpajk5ssk4p77k7n4jgywqmkpldo5qgobm new file mode 100644 index 000000000000..c15e7ee61340 Binary files /dev/null and b/_data/iconsDownload/bafkreidchntjaxmq52cuqqoalpajk5ssk4p77k7n4jgywqmkpldo5qgobm differ diff --git a/_data/iconsDownload/bafkreidfkhqgkkmkhoalf5quh7hzfgtthp6rzn25rbnilghhzhdiotpqne b/_data/iconsDownload/bafkreidfkhqgkkmkhoalf5quh7hzfgtthp6rzn25rbnilghhzhdiotpqne new file mode 100644 index 000000000000..4266c444e82d Binary files /dev/null and b/_data/iconsDownload/bafkreidfkhqgkkmkhoalf5quh7hzfgtthp6rzn25rbnilghhzhdiotpqne differ diff --git a/_data/iconsDownload/bafkreidg4wpewve5mdxrofneqblydkrjl3oevtgpdf3fk3z3vjqam6ocoe b/_data/iconsDownload/bafkreidg4wpewve5mdxrofneqblydkrjl3oevtgpdf3fk3z3vjqam6ocoe new file mode 100644 index 000000000000..2ebe6148e4ab Binary files /dev/null and b/_data/iconsDownload/bafkreidg4wpewve5mdxrofneqblydkrjl3oevtgpdf3fk3z3vjqam6ocoe differ diff --git a/_data/iconsDownload/bafkreidi5y7afj5z4xrz7uz5rkg2mcsv2p2n4ui4g7q4k4ecdz65i2agou b/_data/iconsDownload/bafkreidi5y7afj5z4xrz7uz5rkg2mcsv2p2n4ui4g7q4k4ecdz65i2agou new file mode 100644 index 000000000000..10a97b33973f Binary files /dev/null and b/_data/iconsDownload/bafkreidi5y7afj5z4xrz7uz5rkg2mcsv2p2n4ui4g7q4k4ecdz65i2agou differ diff --git a/_data/iconsDownload/bafkreidiedaz3jugxmh2ylzlc4nympbd5iwab33adhwkcnblyop6vvj25y b/_data/iconsDownload/bafkreidiedaz3jugxmh2ylzlc4nympbd5iwab33adhwkcnblyop6vvj25y new file mode 100755 index 000000000000..d3c65b765dc2 Binary files /dev/null and b/_data/iconsDownload/bafkreidiedaz3jugxmh2ylzlc4nympbd5iwab33adhwkcnblyop6vvj25y 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/bafkreidn7dolavrzgqxthydb6rt5iwuzm6cvkxqirzh2szarjspsdp4kyu b/_data/iconsDownload/bafkreidn7dolavrzgqxthydb6rt5iwuzm6cvkxqirzh2szarjspsdp4kyu new file mode 100644 index 000000000000..aebd07dfe452 --- /dev/null +++ b/_data/iconsDownload/bafkreidn7dolavrzgqxthydb6rt5iwuzm6cvkxqirzh2szarjspsdp4kyu @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/_data/iconsDownload/bafkreidnu6p6vmmplerzvkboq7fz73ygkomzpnnokuxstrqv2fvxgmgg7i b/_data/iconsDownload/bafkreidnu6p6vmmplerzvkboq7fz73ygkomzpnnokuxstrqv2fvxgmgg7i new file mode 100644 index 000000000000..659c290dd685 Binary files /dev/null and b/_data/iconsDownload/bafkreidnu6p6vmmplerzvkboq7fz73ygkomzpnnokuxstrqv2fvxgmgg7i differ diff --git a/_data/iconsDownload/bafkreidoudwo453gr3hoxpreleguga73rm55yl6vuedxrfmhknljppqbiu b/_data/iconsDownload/bafkreidoudwo453gr3hoxpreleguga73rm55yl6vuedxrfmhknljppqbiu new file mode 100644 index 000000000000..b99bff89b9a3 Binary files /dev/null and b/_data/iconsDownload/bafkreidoudwo453gr3hoxpreleguga73rm55yl6vuedxrfmhknljppqbiu 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/bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq b/_data/iconsDownload/bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq new file mode 100644 index 000000000000..65c558b33d92 Binary files /dev/null and b/_data/iconsDownload/bafkreidvjcc73v747lqlyrhgbnkvkdepdvepo6baj6hmjsmjtvdyhmzzmq differ diff --git a/_data/iconsDownload/bafkreie3ba6ofosjqqiya6empkyw6u5xdrtcfzi2evvyt4u6utzeiezyhi b/_data/iconsDownload/bafkreie3ba6ofosjqqiya6empkyw6u5xdrtcfzi2evvyt4u6utzeiezyhi new file mode 100644 index 000000000000..606a95aa4167 Binary files /dev/null and b/_data/iconsDownload/bafkreie3ba6ofosjqqiya6empkyw6u5xdrtcfzi2evvyt4u6utzeiezyhi differ diff --git a/_data/iconsDownload/bafkreie6nai3yhykcdlsyshn5lbcbyba5y7zwsqg6owcfek2urhoucr6rm b/_data/iconsDownload/bafkreie6nai3yhykcdlsyshn5lbcbyba5y7zwsqg6owcfek2urhoucr6rm new file mode 100644 index 000000000000..ba908c14757d Binary files /dev/null and b/_data/iconsDownload/bafkreie6nai3yhykcdlsyshn5lbcbyba5y7zwsqg6owcfek2urhoucr6rm differ diff --git a/_data/iconsDownload/bafkreiec34ik3glrm5jrzafdytvu4kxdsrxhqmagbe27fytdcuzkhoooay b/_data/iconsDownload/bafkreiec34ik3glrm5jrzafdytvu4kxdsrxhqmagbe27fytdcuzkhoooay new file mode 100644 index 000000000000..154149285650 Binary files /dev/null and b/_data/iconsDownload/bafkreiec34ik3glrm5jrzafdytvu4kxdsrxhqmagbe27fytdcuzkhoooay 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/bafkreieenivbkpmaxslvvvaybi53hynnarng4ek37xhtf5euvsyunvhbai b/_data/iconsDownload/bafkreieenivbkpmaxslvvvaybi53hynnarng4ek37xhtf5euvsyunvhbai new file mode 100644 index 000000000000..8d2dfa2aac8e Binary files /dev/null and b/_data/iconsDownload/bafkreieenivbkpmaxslvvvaybi53hynnarng4ek37xhtf5euvsyunvhbai differ diff --git a/_data/iconsDownload/bafkreieiro4imoujeewc4r4thf5hxj47l56j2iwuz6d6pdj6ieb6ub3h7e b/_data/iconsDownload/bafkreieiro4imoujeewc4r4thf5hxj47l56j2iwuz6d6pdj6ieb6ub3h7e new file mode 100644 index 000000000000..dc1cf7e96a1d Binary files /dev/null and b/_data/iconsDownload/bafkreieiro4imoujeewc4r4thf5hxj47l56j2iwuz6d6pdj6ieb6ub3h7e differ diff --git a/_data/iconsDownload/bafkreiepbqd2czcifzkfxk2xjd4nfrlnt5yns3t57umhvhdtpnggn6esym b/_data/iconsDownload/bafkreiepbqd2czcifzkfxk2xjd4nfrlnt5yns3t57umhvhdtpnggn6esym new file mode 100644 index 000000000000..d61b2158e9f6 Binary files /dev/null and b/_data/iconsDownload/bafkreiepbqd2czcifzkfxk2xjd4nfrlnt5yns3t57umhvhdtpnggn6esym 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/bafkreievnqg3xjokaty4kfbxxbrzm5v5y7exbaaia2txrh4sfgrqsalfym b/_data/iconsDownload/bafkreievnqg3xjokaty4kfbxxbrzm5v5y7exbaaia2txrh4sfgrqsalfym new file mode 100644 index 000000000000..a040acc31af5 Binary files /dev/null and b/_data/iconsDownload/bafkreievnqg3xjokaty4kfbxxbrzm5v5y7exbaaia2txrh4sfgrqsalfym differ diff --git a/_data/iconsDownload/bafkreiexfqfe2x4impvwhra3xxa5eb25gv25zi3kkaoatdnld7wbxdzf2a b/_data/iconsDownload/bafkreiexfqfe2x4impvwhra3xxa5eb25gv25zi3kkaoatdnld7wbxdzf2a new file mode 100644 index 000000000000..5e8cb9fc4bc4 Binary files /dev/null and b/_data/iconsDownload/bafkreiexfqfe2x4impvwhra3xxa5eb25gv25zi3kkaoatdnld7wbxdzf2a 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/bafkreiezcwowhm6xjrkt44cmiu6ml36rhrxx3amcg3cfkcntv2vgcvgbre b/_data/iconsDownload/bafkreiezcwowhm6xjrkt44cmiu6ml36rhrxx3amcg3cfkcntv2vgcvgbre new file mode 100644 index 000000000000..4728bf429d76 Binary files /dev/null and b/_data/iconsDownload/bafkreiezcwowhm6xjrkt44cmiu6ml36rhrxx3amcg3cfkcntv2vgcvgbre differ diff --git a/_data/iconsDownload/bafkreifbso3gd4wu5wxl27xyurxctmuae2jyuy37guqtzx23nga6ba4ag4 b/_data/iconsDownload/bafkreifbso3gd4wu5wxl27xyurxctmuae2jyuy37guqtzx23nga6ba4ag4 new file mode 100644 index 000000000000..26fc857c8954 Binary files /dev/null and b/_data/iconsDownload/bafkreifbso3gd4wu5wxl27xyurxctmuae2jyuy37guqtzx23nga6ba4ag4 differ diff --git a/_data/iconsDownload/bafkreifd43fcvh77mdcwjrpzpnlhthounc6b4u645kukqpqhduaveatf6i b/_data/iconsDownload/bafkreifd43fcvh77mdcwjrpzpnlhthounc6b4u645kukqpqhduaveatf6i new file mode 100644 index 000000000000..0566ad263756 Binary files /dev/null and b/_data/iconsDownload/bafkreifd43fcvh77mdcwjrpzpnlhthounc6b4u645kukqpqhduaveatf6i differ diff --git a/_data/iconsDownload/bafkreifhetalm3vpvjrg5u5d2momkcgvkz6rhltur5co3rslltbxzpr6yq b/_data/iconsDownload/bafkreifhetalm3vpvjrg5u5d2momkcgvkz6rhltur5co3rslltbxzpr6yq new file mode 100644 index 000000000000..27593b148ac5 Binary files /dev/null and b/_data/iconsDownload/bafkreifhetalm3vpvjrg5u5d2momkcgvkz6rhltur5co3rslltbxzpr6yq differ diff --git a/_data/iconsDownload/bafkreifms4eio6v56oyeemnnu5luq3sc44hptan225lr45itgzu3u372iu b/_data/iconsDownload/bafkreifms4eio6v56oyeemnnu5luq3sc44hptan225lr45itgzu3u372iu new file mode 100644 index 000000000000..25d41a607b49 Binary files /dev/null and b/_data/iconsDownload/bafkreifms4eio6v56oyeemnnu5luq3sc44hptan225lr45itgzu3u372iu differ diff --git a/_data/iconsDownload/bafkreifqpj5jkjazvh24muc7wv4r22tihzzl75cevgecxhvojm4ls6mzpq b/_data/iconsDownload/bafkreifqpj5jkjazvh24muc7wv4r22tihzzl75cevgecxhvojm4ls6mzpq new file mode 100644 index 000000000000..2672263e450d Binary files /dev/null and b/_data/iconsDownload/bafkreifqpj5jkjazvh24muc7wv4r22tihzzl75cevgecxhvojm4ls6mzpq differ diff --git a/_data/iconsDownload/bafkreifurplvrlawl2ib2snx6sr5jmkkg2vdnegb7ettz2am4ge42blhn4 b/_data/iconsDownload/bafkreifurplvrlawl2ib2snx6sr5jmkkg2vdnegb7ettz2am4ge42blhn4 new file mode 100644 index 000000000000..0849e25e0733 Binary files /dev/null and b/_data/iconsDownload/bafkreifurplvrlawl2ib2snx6sr5jmkkg2vdnegb7ettz2am4ge42blhn4 differ diff --git a/_data/iconsDownload/bafkreifwuxfoxoas44ylvk5mtgf6l5vdl46oivpt7mvuvequmreerhekgy b/_data/iconsDownload/bafkreifwuxfoxoas44ylvk5mtgf6l5vdl46oivpt7mvuvequmreerhekgy new file mode 100644 index 000000000000..45039fe94806 Binary files /dev/null and b/_data/iconsDownload/bafkreifwuxfoxoas44ylvk5mtgf6l5vdl46oivpt7mvuvequmreerhekgy differ diff --git a/_data/iconsDownload/bafkreifzag46dhp33vb2uldg4htqbqipuqrapjga6ml6pnhn5yibbvb4gq b/_data/iconsDownload/bafkreifzag46dhp33vb2uldg4htqbqipuqrapjga6ml6pnhn5yibbvb4gq new file mode 100644 index 000000000000..fb3b8c4550d8 Binary files /dev/null and b/_data/iconsDownload/bafkreifzag46dhp33vb2uldg4htqbqipuqrapjga6ml6pnhn5yibbvb4gq differ diff --git a/_data/iconsDownload/bafkreig3hoedafisrgc6iffdo2jcblm6kov35h72gcblc3zkmt7t4ucwhy b/_data/iconsDownload/bafkreig3hoedafisrgc6iffdo2jcblm6kov35h72gcblc3zkmt7t4ucwhy new file mode 100644 index 000000000000..f574ce28074c Binary files /dev/null and b/_data/iconsDownload/bafkreig3hoedafisrgc6iffdo2jcblm6kov35h72gcblc3zkmt7t4ucwhy differ diff --git a/_data/iconsDownload/bafkreig47k53aipns6nu3u5fxpysp7mogzk6zyvatgpbam7yut3yvtuefa b/_data/iconsDownload/bafkreig47k53aipns6nu3u5fxpysp7mogzk6zyvatgpbam7yut3yvtuefa new file mode 100644 index 000000000000..9f20c520ebb2 Binary files /dev/null and b/_data/iconsDownload/bafkreig47k53aipns6nu3u5fxpysp7mogzk6zyvatgpbam7yut3yvtuefa differ diff --git a/_data/iconsDownload/bafkreig52paynhccs4o5ew6f7mk3xoqu2bqtitmfvlgnwarh2pm33gbdrq b/_data/iconsDownload/bafkreig52paynhccs4o5ew6f7mk3xoqu2bqtitmfvlgnwarh2pm33gbdrq new file mode 100644 index 000000000000..a56cb1551dc2 Binary files /dev/null and b/_data/iconsDownload/bafkreig52paynhccs4o5ew6f7mk3xoqu2bqtitmfvlgnwarh2pm33gbdrq differ diff --git a/_data/iconsDownload/bafkreig7x5z4j6vh2r3pugmjnob3tmlksaekhqcgsorqzvs55o6v7ehqd4 b/_data/iconsDownload/bafkreig7x5z4j6vh2r3pugmjnob3tmlksaekhqcgsorqzvs55o6v7ehqd4 new file mode 100644 index 000000000000..1044a78a21fb Binary files /dev/null and b/_data/iconsDownload/bafkreig7x5z4j6vh2r3pugmjnob3tmlksaekhqcgsorqzvs55o6v7ehqd4 differ diff --git a/_data/iconsDownload/bafkreigcquvoalec3ll2m26v4wsx5enlxwyn6nk2mgfqwncyqrgwivla5u b/_data/iconsDownload/bafkreigcquvoalec3ll2m26v4wsx5enlxwyn6nk2mgfqwncyqrgwivla5u new file mode 100644 index 000000000000..cf6e93e4b3dd Binary files /dev/null and b/_data/iconsDownload/bafkreigcquvoalec3ll2m26v4wsx5enlxwyn6nk2mgfqwncyqrgwivla5u 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/bafkreigmvn6spvbiirtutowpq6jmetevbxoof5plzixjoerbeswy4htfb4 b/_data/iconsDownload/bafkreigmvn6spvbiirtutowpq6jmetevbxoof5plzixjoerbeswy4htfb4 new file mode 100644 index 000000000000..2c7015819a8c Binary files /dev/null and b/_data/iconsDownload/bafkreigmvn6spvbiirtutowpq6jmetevbxoof5plzixjoerbeswy4htfb4 differ diff --git a/_data/iconsDownload/bafkreignxbz2mjbwv6sqbjndkxhi423j7yyk3qlfdfnzclcmq4uklxdgza b/_data/iconsDownload/bafkreignxbz2mjbwv6sqbjndkxhi423j7yyk3qlfdfnzclcmq4uklxdgza new file mode 100644 index 000000000000..3bb1eb44685c Binary files /dev/null and b/_data/iconsDownload/bafkreignxbz2mjbwv6sqbjndkxhi423j7yyk3qlfdfnzclcmq4uklxdgza differ diff --git a/_data/iconsDownload/bafkreigpxhu7glccsislhjqpl5fnsfmj2io4cy33blhky642uiuyojossy b/_data/iconsDownload/bafkreigpxhu7glccsislhjqpl5fnsfmj2io4cy33blhky642uiuyojossy new file mode 100644 index 000000000000..4017132b7a23 Binary files /dev/null and b/_data/iconsDownload/bafkreigpxhu7glccsislhjqpl5fnsfmj2io4cy33blhky642uiuyojossy 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/bafkreihgwxcavak2v5otxka2muxtcd4v5cvzcuvfwotriy24qzq7tuuzwm b/_data/iconsDownload/bafkreihgwxcavak2v5otxka2muxtcd4v5cvzcuvfwotriy24qzq7tuuzwm deleted file mode 100644 index 37035c7b042c..000000000000 Binary files a/_data/iconsDownload/bafkreihgwxcavak2v5otxka2muxtcd4v5cvzcuvfwotriy24qzq7tuuzwm and /dev/null differ diff --git a/_data/iconsDownload/bafkreihifvvbq6xzviygveivayogqiotdtpjvilu27bgqobduqemzeq7o4 b/_data/iconsDownload/bafkreihifvvbq6xzviygveivayogqiotdtpjvilu27bgqobduqemzeq7o4 new file mode 100644 index 000000000000..89b8ed677e02 --- /dev/null +++ b/_data/iconsDownload/bafkreihifvvbq6xzviygveivayogqiotdtpjvilu27bgqobduqemzeq7o4 @@ -0,0 +1,11 @@ + + + + + + + + + + + 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/bafkreihru6cccfblrjz5bv36znq2l3h67u6xj5ivtc4bj5l6gzofbgtnb4 b/_data/iconsDownload/bafkreihru6cccfblrjz5bv36znq2l3h67u6xj5ivtc4bj5l6gzofbgtnb4 new file mode 100644 index 000000000000..3f46bd7a1f8b Binary files /dev/null and b/_data/iconsDownload/bafkreihru6cccfblrjz5bv36znq2l3h67u6xj5ivtc4bj5l6gzofbgtnb4 differ diff --git a/_data/iconsDownload/bafkreihsas2rwakc7lllmtb4pcgwutlel2woibmqmhd4aiin342zgtpmwy b/_data/iconsDownload/bafkreihsas2rwakc7lllmtb4pcgwutlel2woibmqmhd4aiin342zgtpmwy new file mode 100755 index 000000000000..43546cf1f35b Binary files /dev/null and b/_data/iconsDownload/bafkreihsas2rwakc7lllmtb4pcgwutlel2woibmqmhd4aiin342zgtpmwy 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/bafkreihxvrmyofwfupugouhtj2nplj7rn7q7oechxdfzutxqmaobmyp5r4 b/_data/iconsDownload/bafkreihxvrmyofwfupugouhtj2nplj7rn7q7oechxdfzutxqmaobmyp5r4 new file mode 100644 index 000000000000..cf19cb303bc3 Binary files /dev/null and b/_data/iconsDownload/bafkreihxvrmyofwfupugouhtj2nplj7rn7q7oechxdfzutxqmaobmyp5r4 differ diff --git a/_data/iconsDownload/bafybeia5n537fj2mkfcwmjfwktkmqrcwef3affdodhxnvmkg2gkvmbv2ke b/_data/iconsDownload/bafybeia5n537fj2mkfcwmjfwktkmqrcwef3affdodhxnvmkg2gkvmbv2ke new file mode 100644 index 000000000000..c40cffe27866 Binary files /dev/null and b/_data/iconsDownload/bafybeia5n537fj2mkfcwmjfwktkmqrcwef3affdodhxnvmkg2gkvmbv2ke differ 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/bafybeiadbavrwcial76vs5ovhyykyaobteltuhliqcthdairbja4klwzhu b/_data/iconsDownload/bafybeiadbavrwcial76vs5ovhyykyaobteltuhliqcthdairbja4klwzhu new file mode 100644 index 000000000000..52bb7e21ee63 Binary files /dev/null and b/_data/iconsDownload/bafybeiadbavrwcial76vs5ovhyykyaobteltuhliqcthdairbja4klwzhu differ diff --git a/_data/iconsDownload/bafybeiadlvc4pfiykehyt2z67nvgt5w4vlov27olu5obvmryv4xzua4tae b/_data/iconsDownload/bafybeiadlvc4pfiykehyt2z67nvgt5w4vlov27olu5obvmryv4xzua4tae new file mode 100644 index 000000000000..dfac8687f223 Binary files /dev/null and b/_data/iconsDownload/bafybeiadlvc4pfiykehyt2z67nvgt5w4vlov27olu5obvmryv4xzua4tae differ diff --git a/_data/iconsDownload/bafybeiady63oqduls2pm4aaykzjhahblagokhnpsc5qeq5dmkxqelh7i2i b/_data/iconsDownload/bafybeiady63oqduls2pm4aaykzjhahblagokhnpsc5qeq5dmkxqelh7i2i new file mode 100644 index 000000000000..29f6f8ef9070 Binary files /dev/null and b/_data/iconsDownload/bafybeiady63oqduls2pm4aaykzjhahblagokhnpsc5qeq5dmkxqelh7i2i differ diff --git a/_data/iconsDownload/bafybeiapootrvggtigdlvgvk6srfseplpuowsqq3zpyup4j5yj5moxuala b/_data/iconsDownload/bafybeiapootrvggtigdlvgvk6srfseplpuowsqq3zpyup4j5yj5moxuala new file mode 100644 index 000000000000..d5e6b4bbb076 Binary files /dev/null and b/_data/iconsDownload/bafybeiapootrvggtigdlvgvk6srfseplpuowsqq3zpyup4j5yj5moxuala 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/bafybeib5q4hez37s7b2fx4hqt2q4ji2tuudxjhfdgnp6q3d5mqm6wsxdfq b/_data/iconsDownload/bafybeib5q4hez37s7b2fx4hqt2q4ji2tuudxjhfdgnp6q3d5mqm6wsxdfq new file mode 100644 index 000000000000..041d7ca2113b Binary files /dev/null and b/_data/iconsDownload/bafybeib5q4hez37s7b2fx4hqt2q4ji2tuudxjhfdgnp6q3d5mqm6wsxdfq differ diff --git a/_data/iconsDownload/bafybeib75gwytvblyvjpfminitr3i6mpat3a624udfsqsl5nysf5vuuvie b/_data/iconsDownload/bafybeib75gwytvblyvjpfminitr3i6mpat3a624udfsqsl5nysf5vuuvie new file mode 100644 index 000000000000..3dd7e8bdbde1 Binary files /dev/null and b/_data/iconsDownload/bafybeib75gwytvblyvjpfminitr3i6mpat3a624udfsqsl5nysf5vuuvie 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/bafybeibcrxeavdxpwwmj4mc6hhp232nkrfbpvfpngcqux2v5rmoshycj3u b/_data/iconsDownload/bafybeibcrxeavdxpwwmj4mc6hhp232nkrfbpvfpngcqux2v5rmoshycj3u new file mode 100644 index 000000000000..aaf429912fc3 Binary files /dev/null and b/_data/iconsDownload/bafybeibcrxeavdxpwwmj4mc6hhp232nkrfbpvfpngcqux2v5rmoshycj3u differ diff --git a/_data/iconsDownload/bafybeibpvlod5nyev6wyuvp6pbestmgvru3ovbadsul32odpno26xwld6y b/_data/iconsDownload/bafybeibpvlod5nyev6wyuvp6pbestmgvru3ovbadsul32odpno26xwld6y new file mode 100644 index 000000000000..e52d4bcde7a6 --- /dev/null +++ b/_data/iconsDownload/bafybeibpvlod5nyev6wyuvp6pbestmgvru3ovbadsul32odpno26xwld6y @@ -0,0 +1,3 @@ + + + diff --git a/_data/iconsDownload/bafybeibpyckp65pqjvrvqhdt26wqoqk55m6anshbfgyqnaemn6l34nlwya b/_data/iconsDownload/bafybeibpyckp65pqjvrvqhdt26wqoqk55m6anshbfgyqnaemn6l34nlwya new file mode 100644 index 000000000000..cd269b0a310a Binary files /dev/null and b/_data/iconsDownload/bafybeibpyckp65pqjvrvqhdt26wqoqk55m6anshbfgyqnaemn6l34nlwya differ 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/bafybeicxuxdzrzpwsil4owqmn7wpwka2rqsohpfqmukg57pifzyxr5om2q b/_data/iconsDownload/bafybeicxuxdzrzpwsil4owqmn7wpwka2rqsohpfqmukg57pifzyxr5om2q new file mode 100644 index 000000000000..2692ea559a36 Binary files /dev/null and b/_data/iconsDownload/bafybeicxuxdzrzpwsil4owqmn7wpwka2rqsohpfqmukg57pifzyxr5om2q differ diff --git a/_data/iconsDownload/bafybeideqgs54hqx23deytbf4ljbjxgt7tyqkr5b6o5y2yglwjjjf6c4uq b/_data/iconsDownload/bafybeideqgs54hqx23deytbf4ljbjxgt7tyqkr5b6o5y2yglwjjjf6c4uq deleted file mode 100644 index 931b13fcb5fd..000000000000 Binary files a/_data/iconsDownload/bafybeideqgs54hqx23deytbf4ljbjxgt7tyqkr5b6o5y2yglwjjjf6c4uq and /dev/null 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/bafybeiduib2fygrwziqpy4yuqr6vvnd6elhahpigbcowcipjjhk6c3qiny b/_data/iconsDownload/bafybeiduib2fygrwziqpy4yuqr6vvnd6elhahpigbcowcipjjhk6c3qiny new file mode 100644 index 000000000000..58c551c8c56b Binary files /dev/null and b/_data/iconsDownload/bafybeiduib2fygrwziqpy4yuqr6vvnd6elhahpigbcowcipjjhk6c3qiny differ diff --git a/_data/iconsDownload/bafybeie7jzlzlpz7c3a3oh4x5joej23dj2qf3cexmchjyc72hv3fblcaja b/_data/iconsDownload/bafybeie7jzlzlpz7c3a3oh4x5joej23dj2qf3cexmchjyc72hv3fblcaja new file mode 100644 index 000000000000..7300c7596f3d Binary files /dev/null and b/_data/iconsDownload/bafybeie7jzlzlpz7c3a3oh4x5joej23dj2qf3cexmchjyc72hv3fblcaja 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/_data/iconsDownload/bafybeifkgtmhnq4sxu6jn22i7ass7aih6ubodr77k6ygtu4tjbvpmkw2ga b/_data/iconsDownload/bafybeifkgtmhnq4sxu6jn22i7ass7aih6ubodr77k6ygtu4tjbvpmkw2ga new file mode 100644 index 000000000000..88d424ae6979 Binary files /dev/null and b/_data/iconsDownload/bafybeifkgtmhnq4sxu6jn22i7ass7aih6ubodr77k6ygtu4tjbvpmkw2ga differ diff --git a/_data/iconsDownload/bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq b/_data/iconsDownload/bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq deleted file mode 100644 index 69a220507ddc..000000000000 Binary files a/_data/iconsDownload/bafybeifu5tpui7dk5cjoo54kde7pmuthvnl7sdykobuarsxgu7t2izurnq and /dev/null differ diff --git a/_data/iconsDownload/bafybeifxqd7zel2m237kq5enavnh2s6cshaavswigogyvae2wevxy5k2ti b/_data/iconsDownload/bafybeifxqd7zel2m237kq5enavnh2s6cshaavswigogyvae2wevxy5k2ti new file mode 100644 index 000000000000..2adfe3089d6a Binary files /dev/null and b/_data/iconsDownload/bafybeifxqd7zel2m237kq5enavnh2s6cshaavswigogyvae2wevxy5k2ti differ diff --git a/_data/iconsDownload/bafybeigpyvnir6awzgeazkk5xdkvexw7w6ww3yxawszue6zms4a5ygdfky b/_data/iconsDownload/bafybeigpyvnir6awzgeazkk5xdkvexw7w6ww3yxawszue6zms4a5ygdfky new file mode 100644 index 000000000000..7f6e4d3b5b9f Binary files /dev/null and b/_data/iconsDownload/bafybeigpyvnir6awzgeazkk5xdkvexw7w6ww3yxawszue6zms4a5ygdfky differ diff --git a/_data/iconsDownload/bafybeigxiyyxll4vst5cjjh732mr6zhsnligxubaldyiul2xdvvi6ibktu b/_data/iconsDownload/bafybeigxiyyxll4vst5cjjh732mr6zhsnligxubaldyiul2xdvvi6ibktu new file mode 100644 index 000000000000..73716439983c Binary files /dev/null and b/_data/iconsDownload/bafybeigxiyyxll4vst5cjjh732mr6zhsnligxubaldyiul2xdvvi6ibktu differ diff --git a/_data/iconsDownload/bafybeigyayzxvt7vosat4rtrbmhhnldgx57w2pfbutuniax7h6kswzi42m b/_data/iconsDownload/bafybeigyayzxvt7vosat4rtrbmhhnldgx57w2pfbutuniax7h6kswzi42m new file mode 100644 index 000000000000..178e5534517b Binary files /dev/null and b/_data/iconsDownload/bafybeigyayzxvt7vosat4rtrbmhhnldgx57w2pfbutuniax7h6kswzi42m differ diff --git a/_data/iconsDownload/bafybeihbsw3ky7yf6llpww6fabo4dicotcgwjpefscoxrppstjx25dvtea b/_data/iconsDownload/bafybeihbsw3ky7yf6llpww6fabo4dicotcgwjpefscoxrppstjx25dvtea new file mode 100644 index 000000000000..bea7ffb5c1f7 Binary files /dev/null and b/_data/iconsDownload/bafybeihbsw3ky7yf6llpww6fabo4dicotcgwjpefscoxrppstjx25dvtea differ diff --git a/_data/iconsDownload/bafybeihjwgy4qja5cee452malk5hpb25pzpipfaka7hjcyb437ldodxzaq b/_data/iconsDownload/bafybeihjwgy4qja5cee452malk5hpb25pzpipfaka7hjcyb437ldodxzaq new file mode 100644 index 000000000000..2f209af98452 Binary files /dev/null and b/_data/iconsDownload/bafybeihjwgy4qja5cee452malk5hpb25pzpipfaka7hjcyb437ldodxzaq differ diff --git a/_data/iconsDownload/qmxhs7fvjanzwm14vjpbnmklre32gsiy9chsarrnbtfa1n b/_data/iconsDownload/qmxhs7fvjanzwm14vjpbnmklre32gsiy9chsarrnbtfa1n new file mode 100644 index 000000000000..1f2059ed8fd7 Binary files /dev/null and b/_data/iconsDownload/qmxhs7fvjanzwm14vjpbnmklre32gsiy9chsarrnbtfa1n differ diff --git a/build.gradle b/build.gradle index ba76263d9550..7de2075f41c3 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ buildscript { ext { - KOTLIN_VERSION = "1.7.0" - KETHEREUM_VERSION = "0.85.7" + KOTLIN_VERSION = "2.3.0" + KETHEREUM_VERSION = "0.86.0" } repositories { @@ -10,7 +10,7 @@ buildscript { dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${KOTLIN_VERSION}" - classpath 'com.github.ben-manes:gradle-versions-plugin:0.42.0' + classpath 'com.github.ben-manes:gradle-versions-plugin:0.53.0' } } @@ -19,7 +19,7 @@ subprojects { repositories { mavenCentral() - maven { url 'https://jitpack.io' } + maven { url = uri('https://jitpack.io') } } } diff --git a/eip155-890.json b/eip155-890.json new file mode 100644 index 000000000000..48c75806f1c1 --- /dev/null +++ b/eip155-890.json @@ -0,0 +1,27 @@ +{ + "name": "Capital Exchange", + "chain": "CXM", + "rpc": ["https://rpc.capitalexchange.net"], + "features": [ + { "name": "EIP155" }, + { "name": "EIP1559" } + ], + "faucets": [], + "nativeCurrency": { + "name": "Capital Exchange", + "symbol": "CXM", + "decimals": 18 + }, + "infoURL": "https://www.capitalexchange.markets", + "shortName": "CXM", + "chainId": 890, + "networkId": 890, + "status": "active", + "explorers": [ + { + "name": "Capital Exchange CXM", + "url": "https://explorer.capitalexchange.net", + "standard": "EIP3091" + } + ] +} diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 41d9927a4d4f..1b33c55baabb 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 92f06b50fd65..23449a2b5432 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip +networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index 1b6c787337ff..23d15a936707 100755 --- a/gradlew +++ b/gradlew @@ -15,6 +15,8 @@ # See the License for the specific language governing permissions and # limitations under the License. # +# SPDX-License-Identifier: Apache-2.0 +# ############################################################################## # @@ -55,7 +57,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/master/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/. @@ -80,13 +82,11 @@ do esac done -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit - -APP_NAME="Gradle" +# This is normally unused +# shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} - -# 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 -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -114,7 +114,7 @@ case "$( uname )" in #( NONSTOP* ) nonstop=true ;; esac -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar +CLASSPATH="\\\"\\\"" # Determine the Java command to use to start the JVM. @@ -133,22 +133,29 @@ 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. 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=SC2039,SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac case $MAX_FD in #( '' | soft) :;; #( *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 ulimit -n "$MAX_FD" || warn "Could not set maximum file descriptor limit to $MAX_FD" esac @@ -193,18 +200,28 @@ 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, 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" \ -classpath "$CLASSPATH" \ - org.gradle.wrapper.GradleWrapperMain \ + -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \ "$@" +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + # Use "xargs" to parse quoted args. # # With -n1 it outputs one arg per line, with the quotes and backslashes removed. diff --git a/gradlew.bat b/gradlew.bat index 107acd32c4e6..db3a6ac207e5 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -13,8 +13,10 @@ @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem -@if "%DEBUG%" == "" @echo off +@if "%DEBUG%"=="" @echo off @rem ########################################################################## @rem @rem Gradle startup script for Windows @@ -25,7 +27,8 @@ if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @@ -40,13 +43,13 @@ if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute +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 @@ -56,32 +59,34 @@ 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 :execute @rem Setup the command line -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar +set CLASSPATH= @rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* :end @rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd +if %ERRORLEVEL% equ 0 goto mainEnd :fail rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% :mainEnd if "%OS%"=="Windows_NT" endlocal diff --git a/httpsloader/build.gradle.kts b/httpsloader/build.gradle.kts new file mode 100644 index 000000000000..e86dd00c71c8 --- /dev/null +++ b/httpsloader/build.gradle.kts @@ -0,0 +1,19 @@ +plugins { + id("maven-publish") +} + +publishing { + publications { + create("maven") { + version = "1.2" + + from(components["java"]) + } + } +} + +dependencies { + implementation(project(":model")) + implementation("com.squareup.okhttp3:okhttp:4.9.3") + implementation("com.squareup.moshi:moshi:1.14.0") +} \ No newline at end of file diff --git a/httpsloader/src/main/kotlin/org/ethereum/lists/chains/https/Chain.kt b/httpsloader/src/main/kotlin/org/ethereum/lists/chains/https/Chain.kt new file mode 100644 index 000000000000..0d18498c3337 --- /dev/null +++ b/httpsloader/src/main/kotlin/org/ethereum/lists/chains/https/Chain.kt @@ -0,0 +1,20 @@ +package org.ethereum.lists.chains.https + +import com.squareup.moshi.JsonAdapter +import com.squareup.moshi.Moshi +import com.squareup.moshi.Types +import okhttp3.OkHttpClient +import okhttp3.Request +import org.ethereum.lists.chains.model.Chain + +fun getChains(okhttpClient: OkHttpClient = OkHttpClient()): List? { + val request = Request.Builder() + .url("https://chainid.network/chains.json") + .build() + + val listMyData = Types.newParameterizedType(MutableList::class.java, Chain::class.java) + val adapter: JsonAdapter> = Moshi.Builder().build().adapter(listMyData) + + val response = okhttpClient.newCall(request).execute() + return response.body?.let { adapter.fromJson(it.source()) } +} \ No newline at end of file diff --git a/maintainer_checklist.md b/maintainer_checklist.md new file mode 100644 index 000000000000..6a6db5a31c4a --- /dev/null +++ b/maintainer_checklist.md @@ -0,0 +1,9 @@ +A checklist for things to check before merging a chain PR. + +* If the PR contains explorers claim to adhere to EIP3091 - check if they really do. +* 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) + +Please also make sure to go from oldest PR to newest. + +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 b7dd15d62a7b..8e310d2ced2b 100644 --- a/model/build.gradle.kts +++ b/model/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("com.google.devtools.ksp").version("1.7.0-1.0.6") + id("com.google.devtools.ksp").version("2.3.4") id("maven-publish") } @@ -14,10 +14,6 @@ publishing { } dependencies { - ksp("com.squareup.moshi:moshi-kotlin-codegen:1.13.0") - implementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.10") - - implementation("com.squareup.moshi:moshi:1.13.0") - implementation("com.squareup.okhttp3:okhttp:4.9.3") -} - + ksp("com.squareup.moshi:moshi-kotlin-codegen:1.14.0") + implementation("com.squareup.moshi:moshi:1.14.0") +} \ No newline at end of file diff --git a/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt b/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt index aae7646237d3..e61ee869f6ef 100644 --- a/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt +++ b/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt @@ -7,8 +7,6 @@ data class Chain( val name: String, val shortName: String, val chain: String, - @Deprecated("Will be removed in the future") - val network: String?, val chainId: Long, val networkId: Long, val rpc: List, 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 da16a16eba01..f0a353e44801 100644 --- a/processor/build.gradle +++ b/processor/build.gradle @@ -1,6 +1,8 @@ apply plugin: "application" -mainClassName = "org.ethereum.lists.chains.MainKt" +application { + mainClass = 'org.ethereum.lists.chains.MainKt' +} dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN_VERSION}" @@ -11,9 +13,13 @@ dependencies { implementation "com.github.komputing.kethereum:crypto_impl_bouncycastle:${KETHEREUM_VERSION}" implementation 'com.beust:klaxon:5.6' - implementation 'com.squareup.moshi:moshi:1.13.0' - implementation 'com.squareup.okhttp3:okhttp:4.10.0' + implementation 'com.squareup.moshi:moshi:1.15.2' + implementation 'com.squareup.okhttp3:okhttp:5.3.2' + + implementation "com.twelvemonkeys.imageio:imageio-jpeg:3.13.0" + implementation "com.twelvemonkeys.imageio:imageio-batik:3.13.0" + 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/Env.kt b/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt index ad4426314c19..272c25a9f831 100644 --- a/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt +++ b/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt @@ -20,16 +20,19 @@ val mandatory_fields = listOf( "nativeCurrency" ) val optionalFields = listOf( + "features", "slip44", "ens", "icon", "explorers", "title", - "network", "parent", - "status" + "status", + "redFlags" ) +val allowedRedFlags = listOf("reusedChainId") + val moshi: Moshi = Moshi.Builder().build() val chainAdapter: JsonAdapter = moshi.adapter(Chain::class.java) @@ -41,4 +44,7 @@ val ipfs by lazy { Moshi.Builder().build() ) ) -} \ No newline at end of file +} + +val httpPrefixes = listOf("https://", "http://") +val rpcPrefixes = httpPrefixes + listOf("wss://", "ws://") \ No newline at end of file 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 ca765b575062..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,15 +4,14 @@ import com.beust.klaxon.JsonArray import java.io.File import com.beust.klaxon.JsonObject import com.beust.klaxon.Klaxon -import com.squareup.moshi.Moshi -import io.ipfs.kotlin.IPFS -import io.ipfs.kotlin.IPFSConfiguration import okhttp3.OkHttpClient +import okhttp3.Request import org.ethereum.lists.chains.model.* import org.kethereum.erc55.isValid import org.kethereum.model.Address import org.kethereum.rpc.HttpEthereumRPC -import java.time.Duration +import java.math.BigInteger +import javax.imageio.ImageIO import kotlin.io.OnErrorAction.* val parsedShortNames = mutableSetOf() @@ -27,10 +26,31 @@ val chainsPath = File(dataPath, "chains") private val allFiles = chainsPath.listFiles() ?: error("${chainsPath.absolutePath} must contain the chain json files - but it does not") private val allChainFiles = allFiles.filter { !it.isDirectory } +private val allIconFilesList = iconsPath.listFiles() ?: error("${iconsPath.absolutePath} must contain the icon json files - but it does not") +private val allIconFiles = allIconFilesList.filter { !it.isDirectory } +private val allUsedIcons = mutableSetOf() + +val okHttpClient = OkHttpClient(); + fun main(args: Array) { - doChecks(doRPCConnect = args.contains("rpcConnect"), doIconDownload = args.contains("iconDownload")) - createOutputFiles() + val argsList = args.toMutableList() + + val verbose = argsList.contains("verbose").also { argsList.remove("verbose") } + if (argsList.firstOrNull() == "singleChainCheck") { + val file = File(File(".."), args.last()) + if (file.exists() && file.parentFile == chainsPath) { + println("checking single chain " + args.last()) + checkChain(file, true, verbose) + } + } else { + doChecks( + verbose = verbose, + onlineChecks = argsList.firstOrNull() == "rpcConnect", + doIconDownload = argsList.firstOrNull() == "iconDownload", + ) + createOutputFiles() + } } private fun createOutputFiles() { @@ -38,6 +58,9 @@ private fun createOutputFiles() { val chainJSONArray = JsonArray() val miniChainJSONArray = JsonArray() + + val chainIconJSONArray = JsonArray() + val shortNameMapping = JsonObject() // copy raw data so e.g. icons are available - SKIP errors @@ -48,7 +71,6 @@ private fun createOutputFiles() { .forEach { jsonObject -> chainJSONArray.add(jsonObject) - val miniJSON = JsonObject() listOf("name", "chainId", "shortName", "networkId", "nativeCurrency", "rpc", "faucets", "infoURL").forEach { field -> jsonObject[field]?.let { content -> @@ -61,55 +83,85 @@ private fun createOutputFiles() { } + allIconFiles + .forEach { iconLocation -> + + val jsonData = Klaxon().parseJsonArray(iconLocation.reader()) + + if (iconLocation.extension != "json") { + error("Icon must be json " + iconLocation) + } + + val iconName = iconLocation.toString().removePrefix("../_data/icons/").removeSuffix(".json") + + val iconJson = JsonObject() + iconJson["name"] = iconName + iconJson["icons"] = jsonData + + chainIconJSONArray.add(iconJson) + } + + File(buildPath, "chains.json").writeText(chainJSONArray.toJsonString()) + File(buildPath, "chains.json").writeText(chainJSONArray.toJsonString()) File(buildPath, "chains_pretty.json").writeText(chainJSONArray.toJsonString(prettyPrint = true)) File(buildPath, "chains_mini.json").writeText(miniChainJSONArray.toJsonString()) File(buildPath, "chains_mini_pretty.json").writeText(miniChainJSONArray.toJsonString(prettyPrint = true)) + File(buildPath, "chain_icons_mini.json").writeText(chainIconJSONArray.toJsonString()) + File(buildPath, "chain_icons.json").writeText(chainIconJSONArray.toJsonString(prettyPrint = true)) + File(buildPath, "shortNameMapping.json").writeText(shortNameMapping.toJsonString(prettyPrint = true)) - File(buildPath, "index.html").writeText( - """ - - - - - - - Page Redirection - - - If you are not redirected automatically, follow this link to chainlist.org. - - - """.trimIndent() - ) File(buildPath, ".nojekyll").createNewFile() File(buildPath, "CNAME").writeText("chainid.network") } -private fun doChecks(doRPCConnect: Boolean, doIconDownload: Boolean) { - allChainFiles.forEach { - checkChain(it, doRPCConnect) +private fun doChecks(onlineChecks: Boolean, doIconDownload: Boolean, verbose: Boolean) { + allChainFiles.forEach { file -> + try { + checkChain(file, onlineChecks, verbose) + } catch (exception: Exception) { + println("Problem with $file") + throw exception + } } val allIcons = iconsPath.listFiles() ?: return + val allIconCIDs = mutableSetOf() allIcons.forEach { - checkIcon(it, doIconDownload) + checkIcon(it, doIconDownload, allIconCIDs, verbose) } + val unusedIconDownload = mutableSetOf() + iconsDownloadPath.listFiles()?.forEach { + if (!allIconCIDs.contains(it.name)) unusedIconDownload.add(it.name) + } + if (unusedIconDownload.isNotEmpty()) { + throw UnreferencedIcon(unusedIconDownload.joinToString(" "), iconsDownloadPath) + } allFiles.filter { it.isDirectory }.forEach { _ -> error("should not contain a directory") } + + val unusedIcons = mutableSetOf() + iconsPath.listFiles()?.forEach { + if (!allUsedIcons.contains(it.name.toString().removeSuffix(".json"))) { + unusedIcons.add(it.toString()) + } + } + if (unusedIcons.isNotEmpty()) { + error("error: unused icons ${unusedIcons.joinToString(" ")}") + } } -fun checkIcon(icon: File, withIconDownload: Boolean) { - println("checking Icon " + icon.name) +fun checkIcon(icon: File, withIconDownload: Boolean, allIconCIDs: MutableSet, verbose: Boolean) { val obj: JsonArray<*> = Klaxon().parseJsonArray(icon.reader()) - println("found variants " + obj.size) + if (verbose) { + println("checking Icon " + icon.name) + println("found variants " + obj.size) + } obj.forEach { it -> if (it !is JsonObject) { error("Icon variant must be an object") @@ -121,10 +173,13 @@ fun checkIcon(icon: File, withIconDownload: Boolean) { error("url must start with ipfs://") } - if (withIconDownload) { + allIconCIDs.add(url.removePrefix("ipfs://")) + val iconCID = url.removePrefix("ipfs://") + val iconDownloadFile = File(iconsDownloadPath, iconCID) + + if (!iconDownloadFile.exists() && withIconDownload) { - val iconCID = url.removePrefix("ipfs://") try { println("fetching Icon from IPFS $iconCID") @@ -132,14 +187,15 @@ fun checkIcon(icon: File, withIconDownload: Boolean) { val iconBytes = ipfs.get.catBytes(iconCID) println("Icon size" + iconBytes.size) - val outFile = File(iconsDownloadPath, iconCID) - outFile.createNewFile() - outFile.writeBytes(iconBytes) + + iconDownloadFile.createNewFile() + iconDownloadFile.writeBytes(iconBytes) } catch (e: Exception) { println("could not fetch icon from IPFS") } } + val width = it["width"] val height = it["height"] if (width != null || height != null) { @@ -156,20 +212,52 @@ fun checkIcon(icon: File, withIconDownload: Boolean) { } val format = it["format"] - if (format !is String || (format != "png" && format != "svg")) { - error("Icon format must be a png or svg but was $format") + if (format !is String || (!setOf("png", "svg", "jpg").contains(format))) { + error("Icon format must be a png, svg or jpg but was $format") + } + + if (iconDownloadFile.exists()) { + try { + val imageInputStream = ImageIO.createImageInputStream(iconDownloadFile) + val imageReader = ImageIO.getImageReaders(imageInputStream).next() + val image = ImageIO.read(imageInputStream) + + val formatOfIconDownload = imageReader.formatName.replace("JPEG", "jpg") + if (formatOfIconDownload != format) { + error("format in json ($icon) is $format but actually is in imageDownload $formatOfIconDownload") + } + if (image.width != width) { + error("width in json ($icon) is $width but actually is in imageDownload ${image.width}") + } + + if (image.raster.height != height) { + error("height in json ($icon) is $height but actually is in imageDownload ${image.height}") + } + + if (!legacyCIDs.contains(iconDownloadFile.name)) { + val fileSize = iconDownloadFile.length() + if (fileSize > 250 * 1024) { + error("icon is bigger than 250kb") + } + } + } catch (e: Exception) { + e.printStackTrace() + error("problem with image $iconDownloadFile") + } } } } -fun checkChain(chainFile: File, connectRPC: Boolean) { - println("processing $chainFile") +fun checkChain(chainFile: File, onlineCheck: Boolean, verbose: Boolean = false) { + if (verbose) { + println("processing $chainFile") + } val jsonObject = Klaxon().parseJsonObject(chainFile.reader()) - val chainAsLong = getNumber(jsonObject, "chainId") + val chainIdAsLong = getNumber(jsonObject, "chainId") if (chainFile.nameWithoutExtension.startsWith("eip155-")) { - if (chainAsLong != chainFile.nameWithoutExtension.replace("eip155-", "").toLongOrNull()) { + if (chainIdAsLong.toString() != chainFile.nameWithoutExtension.replace("eip155-", "")) { throw (FileNameMustMatchChainId()) } } else { @@ -193,11 +281,10 @@ fun checkChain(chainFile: File, connectRPC: Boolean) { } jsonObject["icon"]?.let { - if (!File(iconsPath, "$it.json").exists()) { - error("The Icon $it does not exist - was used in ${chainFile.name}") - } + processIcon(it, chainFile) } + val nameRegex = Regex("^[a-zA-Z0-9\\-.() ]+$") jsonObject["nativeCurrency"]?.let { if (it !is JsonObject) { throw NativeCurrencyMustBeObject() @@ -207,6 +294,10 @@ fun checkChain(chainFile: File, connectRPC: Boolean) { throw NativeCurrencySymbolMustBeString() } + if (symbol.trim() != symbol) { + throw NativeCurrencyCantBeTrimmed() + } + if (symbol.length >= 7) { throw NativeCurrencySymbolMustHaveLessThan7Chars() } @@ -216,9 +307,23 @@ fun checkChain(chainFile: File, connectRPC: Boolean) { if (it["decimals"] !is Int) { throw NativeCurrencyDecimalMustBeInt() } - if (it["name"] !is String) { + val currencyName = it["name"] + if (currencyName !is String) { throw NativeCurrencyNameMustBeString() } + + if (!nameRegex.matches(currencyName)) { + throw IllegalName("currencyName", currencyName) + } + } + + val chainName = jsonObject["name"] + if (chainName !is String) { + throw ChainNameMustBeString() + } + + if (!nameRegex.matches(chainName)) { + throw IllegalName("chain name", chainName) } jsonObject["explorers"]?.let { @@ -235,18 +340,32 @@ fun checkChain(chainFile: File, connectRPC: Boolean) { throw (ExplorerMustHaveName()) } + explorer["icon"]?.let { explorerIcon -> + processIcon(explorerIcon, chainFile) + } + val url = explorer["url"] - if (url == null || url !is String || !url.startsWith("https://")) { - throw (ExplorerMustWithHttps()) + if (url == null || url !is String || httpPrefixes.none { prefix -> url.startsWith(prefix) }) { + throw (ExplorerMustWithHttpsOrHttp()) } if (url.endsWith("/")) { - throw (ExplorerCannotEndInSlash()) + throw ExplorerCannotEndInSlash() } + url.checkString("Explorer URL") + if (explorer["standard"] != "EIP3091" && explorer["standard"] != "none") { throw (ExplorerStandardMustBeEIP3091OrNone()) } + + if (onlineCheck) { + val request = Request.Builder().url(url).build(); + val code = okHttpClient.newCall(request).execute().code + if (code / 100 != 2 && code != 403 ) { // etherscan throws a 403 because of cloudflare - so we need to allow it :cry + throw (CantReachExplorerException(url, code)) + } + } } } jsonObject["ens"]?.let { @@ -270,6 +389,37 @@ fun checkChain(chainFile: File, connectRPC: Boolean) { throw StatusMustBeIncubatingActiveOrDeprecated() } } + + jsonObject["faucets"]?.let { faucets -> + if (faucets !is List<*>) { + throw FaucetsMustBeArray() + } + + faucets.forEach { + if (it !is String) { + throw FaucetMustBeString() + } + + it.checkString("Faucet URL") + } + + } + + jsonObject["redFlags"]?.let { redFlags -> + if (redFlags !is List<*>) { + throw RedFlagsMustBeArray() + } + redFlags.forEach { + if (it !is String) { + throw RedFlagMustBeString() + } + + it.checkString("Red flag") + if (!allowedRedFlags.contains(it)) + throw (InvalidRedFlags(it)) + } + } + jsonObject["parent"]?.let { if (it !is JsonObject) { throw ParentMustBeObject() @@ -284,6 +434,7 @@ fun checkChain(chainFile: File, connectRPC: Boolean) { throw ParentHasExtraFields(extraParentFields) } + val bridges = it["bridges"] if (bridges != null && bridges !is List<*>) { throw ParentBridgeNoArray() @@ -309,52 +460,91 @@ fun checkChain(chainFile: File, connectRPC: Boolean) { parseWithMoshi(chainFile) - if (connectRPC) { - if (jsonObject["rpc"] is List<*>) { - (jsonObject["rpc"] as List<*>).forEach { - if (it !is String) { - throw (RPCMustBeListOfStrings()) - } else { - println("connecting to $it") - val ethereumRPC = HttpEthereumRPC(it) - println("Client:" + ethereumRPC.clientVersion()) - println("BlockNumber:" + ethereumRPC.blockNumber()) - println("GasPrice:" + ethereumRPC.gasPrice()) + if (jsonObject["rpc"] !is List<*>) { + throw (RPCMustBeList()) + } else { + (jsonObject["rpc"] as List<*>).forEach { rpcURL -> + if (rpcURL !is String) { + throw (RPCMustBeListOfStrings()) + } else if (rpcPrefixes.none { prefix -> rpcURL.startsWith(prefix) }) { + throw (InvalidRPCPrefix(rpcURL)) + } else { + rpcURL.checkString("RPC URL") + if (onlineCheck) { + var chainId: BigInteger? = null + try { + println("connecting to $rpcURL") + val ethereumRPC = HttpEthereumRPC(rpcURL) + + println("Client:" + ethereumRPC.clientVersion()) + println("BlockNumber:" + ethereumRPC.blockNumber()) + println("GasPrice:" + ethereumRPC.gasPrice()) + + chainId = ethereumRPC.chainId()?.value + } catch (e: Exception) { + + } + chainId?.let { nonNullChainId -> + if (chainIdAsLong != nonNullChainId.toLong()) { + error("RPC chainId (${nonNullChainId.toLong()}) does not match chainId from json ($chainIdAsLong)") + } + } } } - println() - } else { - throw (RPCMustBeList()) } } } +private fun processIcon(it: Any, chainFile: File): Boolean { + if (it !is String) { + error("icon must be string") + } + if (!File(iconsPath, "$it.json").exists()) { + error("The Icon $it does not exist - was used in ${chainFile.name}") + } + return allUsedIcons.add(it) +} + +private fun String.checkString(which: String) { + if (isBlank()) { + throw StringCannotBeBlank(which) + } + + if (trim() != this) { + throw StringCannotHaveExtraSpaces(which) + } +} + +fun String.normalizeName() = replace(" ", "").uppercase() + /* moshi fails for extra commas https://github.com/ethereum-lists/chains/issues/126 */ private fun parseWithMoshi(fileToParse: File) { val parsedChain = chainAdapter.fromJson(fileToParse.readText()) - if (parsedNames.contains(parsedChain!!.name)) { - throw NameMustBeUnique(parsedChain.name) + val parsedChainNormalizedName = parsedChain!!.name.normalizeName() + if (parsedNames.contains(parsedChainNormalizedName)) { + throw NameMustBeUnique(parsedChainNormalizedName) } - parsedNames.add(parsedChain.name) + parsedNames.add(parsedChainNormalizedName) - if (parsedShortNames.contains(parsedChain.shortName)) { - throw ShortNameMustBeUnique(parsedChain.shortName) + val parsedChainNormalizedShortName = parsedChain.shortName.normalizeName() + if (parsedShortNames.contains(parsedChainNormalizedShortName)) { + throw ShortNameMustBeUnique(parsedChainNormalizedShortName) } - if (parsedChain.shortName == "*") { + if (parsedChainNormalizedShortName == "*") { throw ShortNameMustNotBeStar() } - parsedShortNames.add(parsedChain.shortName) + parsedShortNames.add(parsedChainNormalizedShortName) } private fun getNumber(jsonObject: JsonObject, field: String): Long { return when (val chainId = jsonObject[field]) { is Int -> chainId.toLong() is Long -> chainId - else -> throw(Exception("not a number at $field")) + else -> throw (Exception("not a number at $field")) } } \ No newline at end of file diff --git a/processor/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt b/processor/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt index 92633ccf97b6..918dc4b584b3 100644 --- a/processor/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt +++ b/processor/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt @@ -1,11 +1,16 @@ package org.ethereum.lists.chains.model +import org.ethereum.lists.chains.rpcPrefixes +import java.io.File + class FileNameMustMatchChainId : Exception("chainId must match the filename") class ExtensionMustBeJSON : Exception("filename extension must be json") class ShouldHaveNoExtraFields(fields: Set) : Exception("should have no extra field $fields") class ShouldHaveNoMissingFields(fields: Set) : Exception("missing field(s) $fields") class RPCMustBeList : Exception("rpc must be a list") class RPCMustBeListOfStrings : Exception("rpc must be a list of strings") +class RPCCannotBeEmpty : Exception("rpc cannot be empty") +class InvalidRPCPrefix(prefix: String) : Exception("rpc has invalid prefix: $prefix - must be any of $rpcPrefixes") class ENSMustBeObject: Exception("ens must be an object") class ENSMustHaveOnlyRegistry: Exception("ens can only have a registry currently") class ENSRegistryAddressMustBeValid: Exception("ens registry must have valid address") @@ -15,22 +20,39 @@ class ShortNameMustNotBeStar: Exception("short name must not be '*'") class UnsupportedNamespace: Exception("So far only the EIP155 namespace is supported") class ExplorersMustBeArray: Exception("explorers must be an array") class ExplorerMustHaveName: Exception("Explorer must have name") -class ExplorerMustWithHttps: Exception("Explorer have url starting with https://") +class ExplorerMustWithHttpsOrHttp: Exception("Explorer have url starting with https:// or http://") class ExplorerCannotEndInSlash: Exception("Explorer cannot have a slash on the end") +class StringCannotBeBlank(which: String): Exception("$which cannot be blank") + +class StringCannotHaveExtraSpaces(which: String): Exception("$which cannot have leading or tailing spaces") class ExplorerStandardMustBeEIP3091OrNone: Exception("explorer standard must be 'none' or 'EIP3091'") +class CantReachExplorerException(url: String?, code: Int): Exception("explorer $url does not return 2XX but $code") class ParentHasInvalidType(type: String?): Exception("Parent has invalid type $type - only L2 or shard allowed") +class RedFlagsMustBeArray: Exception("redFlags not an array") +class FaucetsMustBeArray: Exception("faucets not an array") +class RedFlagMustBeString: Exception("redFlag not an string") +class FaucetMustBeString: Exception("faucet not an string") +class FaucetCannotBeBlank: Exception("faucet cannot be blank") +class InvalidRedFlags(flag: String): Exception("redFlags invalid $flag") class ParentMustBeObject: Exception("parent must be an object") class ParentMustHaveChainAndType: Exception("parent must have fields 'chain' and 'type'") class ParentHasExtraFields(fields: Set): 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") class NativeCurrencyMustBeObject: Exception("Native currency must be object") class NativeCurrencySymbolMustBeString: Exception("Native currency symbol must be string") +class NativeCurrencyCantBeTrimmed: Exception("Native currency symbol can't be trimmed") class NativeCurrencySymbolMustHaveLessThan7Chars: Exception("Native currency symbol must have less than 7 chars") class NativeCurrencyCanOnlyHaveSymbolNameAndDecimals: Exception("Native currency can only have symbol decimals and name") class NativeCurrencyDecimalMustBeInt: Exception("Native currency decimals must be int") -class NativeCurrencyNameMustBeString: Exception("Native currency name must be string") \ No newline at end of file +class NativeCurrencyNameMustBeString: Exception("Native currency name must be string") + +class ChainNameMustBeString: Exception("Name must be string") + +class IllegalName(type: String,name: String): Exception("Invalid $type: $name") + +class UnreferencedIcon(fileName: String, iconsDownloadPath: File): Exception("Found unreference $fileName in $iconsDownloadPath") \ No newline at end of file diff --git a/processor/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt b/processor/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt index 6ab8ea3020d1..58302dabd183 100644 --- a/processor/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt +++ b/processor/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt @@ -71,6 +71,21 @@ class TheChainChecker { checkChain(file, false) } + + @Test(expected = RedFlagsMustBeArray::class) + fun shouldFailForInvalidRedFlagsNotArray() { + val file = getFile("invalid/invalid_redFlags/eip155-2.json") + + checkChain(file, false) + } + + @Test(expected = InvalidRedFlags::class) + fun shouldFailForInvalidRedFlag() { + val file = getFile("invalid/invalid_redFlags/eip155-3.json") + + checkChain(file, false) + } + @Test(expected = ParentHasExtraFields::class) fun shouldFailForParentWithExtraParentField() { val file = getFile("invalid/withparentextrafield/eip155-2.json") @@ -113,6 +128,13 @@ class TheChainChecker { checkChain(file, false) } + @Test(expected = FileNameMustMatchChainId::class) + fun shouldFailForFilenameWithLeadingZero() { + val file = getFile("invalid/leadingzero/eip155-01.json") + + checkChain(file, false) + } + @Test(expected = FileNameMustMatchChainId::class) fun shouldFailForChainNotMatchingFilename() { val file = getFile("invalid/eip155-3.json") @@ -211,12 +233,12 @@ class TheChainChecker { checkChain(getFile("invalid/explorernoname/eip155-1.json"), false) } - @Test(expected = ExplorerMustWithHttps::class) + @Test(expected = ExplorerMustWithHttpsOrHttp::class) fun shouldFailOnInvalidUrl() { checkChain(getFile("invalid/explorerinvalidurl/eip155-1.json"), false) } - @Test(expected = ExplorerMustWithHttps::class) + @Test(expected = ExplorerMustWithHttpsOrHttp::class) fun shouldFailOnMissingURL() { checkChain(getFile("invalid/explorermissingurl/eip155-1.json"), false) } diff --git a/processor/src/test/resources/test_chains/invalid/eip155-1.nojson b/processor/src/test/resources/test_chains/invalid/eip155-1.nojson index a64830378463..e6ba8d6d69fc 100644 --- a/processor/src/test/resources/test_chains/invalid/eip155-1.nojson +++ b/processor/src/test/resources/test_chains/invalid/eip155-1.nojson @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/eip155-100.json b/processor/src/test/resources/test_chains/invalid/eip155-100.json index 81e25dabc9d8..be3e346f235d 100644 --- a/processor/src/test/resources/test_chains/invalid/eip155-100.json +++ b/processor/src/test/resources/test_chains/invalid/eip155-100.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 100, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/eip155-101.json b/processor/src/test/resources/test_chains/invalid/eip155-101.json index 77b47d36a6e8..9768d76bd58b 100644 --- a/processor/src/test/resources/test_chains/invalid/eip155-101.json +++ b/processor/src/test/resources/test_chains/invalid/eip155-101.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 101, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/eip155-102.json b/processor/src/test/resources/test_chains/invalid/eip155-102.json index 4fa9707596b0..8f61b6dffdbb 100644 --- a/processor/src/test/resources/test_chains/invalid/eip155-102.json +++ b/processor/src/test/resources/test_chains/invalid/eip155-102.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 102, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/eip155-2.json b/processor/src/test/resources/test_chains/invalid/eip155-2.json index a64830378463..e6ba8d6d69fc 100644 --- a/processor/src/test/resources/test_chains/invalid/eip155-2.json +++ b/processor/src/test/resources/test_chains/invalid/eip155-2.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/eip155-3.json b/processor/src/test/resources/test_chains/invalid/eip155-3.json index a64830378463..e6ba8d6d69fc 100644 --- a/processor/src/test/resources/test_chains/invalid/eip155-3.json +++ b/processor/src/test/resources/test_chains/invalid/eip155-3.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/eip155-4.json b/processor/src/test/resources/test_chains/invalid/eip155-4.json index 49d70af7a8d4..1790caea5849 100644 --- a/processor/src/test/resources/test_chains/invalid/eip155-4.json +++ b/processor/src/test/resources/test_chains/invalid/eip155-4.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 4, "networkId": 4, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/eip155-99.json b/processor/src/test/resources/test_chains/invalid/eip155-99.json index a48d94792817..9ae0c1b5a6d5 100644 --- a/processor/src/test/resources/test_chains/invalid/eip155-99.json +++ b/processor/src/test/resources/test_chains/invalid/eip155-99.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 99, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/eip155-invalid_filename.json b/processor/src/test/resources/test_chains/invalid/eip155-invalid_filename.json index a64830378463..e6ba8d6d69fc 100644 --- a/processor/src/test/resources/test_chains/invalid/eip155-invalid_filename.json +++ b/processor/src/test/resources/test_chains/invalid/eip155-invalid_filename.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/explorerinvalidurl/eip155-1.json b/processor/src/test/resources/test_chains/invalid/explorerinvalidurl/eip155-1.json index 90475a7715ec..afd7ce7dfa1f 100644 --- a/processor/src/test/resources/test_chains/invalid/explorerinvalidurl/eip155-1.json +++ b/processor/src/test/resources/test_chains/invalid/explorerinvalidurl/eip155-1.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/explorermissingurl/eip155-1.json b/processor/src/test/resources/test_chains/invalid/explorermissingurl/eip155-1.json index 025499d0b0f8..d2d742204446 100644 --- a/processor/src/test/resources/test_chains/invalid/explorermissingurl/eip155-1.json +++ b/processor/src/test/resources/test_chains/invalid/explorermissingurl/eip155-1.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ 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 38d9fd6f5702..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 @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ @@ -19,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/explorersnotarray/eip155-1.json b/processor/src/test/resources/test_chains/invalid/explorersnotarray/eip155-1.json index 9895ba6d04a8..6b49eaec9d18 100644 --- a/processor/src/test/resources/test_chains/invalid/explorersnotarray/eip155-1.json +++ b/processor/src/test/resources/test_chains/invalid/explorersnotarray/eip155-1.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/extracomma/eip155-1.json b/processor/src/test/resources/test_chains/invalid/extracomma/eip155-1.json index 4d18cd85c874..ac02bd38c2f7 100644 --- a/processor/src/test/resources/test_chains/invalid/extracomma/eip155-1.json +++ b/processor/src/test/resources/test_chains/invalid/extracomma/eip155-1.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/invalid_redFlags/eip155-2.json b/processor/src/test/resources/test_chains/invalid/invalid_redFlags/eip155-2.json new file mode 100644 index 000000000000..b2e327d65b7b --- /dev/null +++ b/processor/src/test/resources/test_chains/invalid/invalid_redFlags/eip155-2.json @@ -0,0 +1,19 @@ +{ + "name": "Ethereum Mainnet", + "shortName": "eth", + "chain": "ETH", + "chainId": 2, + "networkId": 2, + "rpc": [ + "https://mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://api.mycryptoapi.com/eth" + ], + "faucets": [], + "infoURL": "https://ethereum.org", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "redFlags": "yolo" +} diff --git a/processor/src/test/resources/test_chains/invalid/invalid_redFlags/eip155-3.json b/processor/src/test/resources/test_chains/invalid/invalid_redFlags/eip155-3.json new file mode 100644 index 000000000000..b1c3ff86f582 --- /dev/null +++ b/processor/src/test/resources/test_chains/invalid/invalid_redFlags/eip155-3.json @@ -0,0 +1,19 @@ +{ + "name": "Ethereum Mainnet", + "shortName": "eth", + "chain": "ETH", + "chainId": 3, + "networkId": 3, + "rpc": [ + "https://mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://api.mycryptoapi.com/eth" + ], + "faucets": [], + "infoURL": "https://ethereum.org", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "redFlags": ["yolo"] +} diff --git a/processor/src/test/resources/test_chains/invalid/invalid_status/eip155-1.json b/processor/src/test/resources/test_chains/invalid/invalid_status/eip155-1.json index 72d00fe84424..dc92b7a37653 100644 --- a/processor/src/test/resources/test_chains/invalid/invalid_status/eip155-1.json +++ b/processor/src/test/resources/test_chains/invalid/invalid_status/eip155-1.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/invalid_status/eip155-2.json b/processor/src/test/resources/test_chains/invalid/invalid_status/eip155-2.json index aaa9ffb38c88..e44809d8b75f 100644 --- a/processor/src/test/resources/test_chains/invalid/invalid_status/eip155-2.json +++ b/processor/src/test/resources/test_chains/invalid/invalid_status/eip155-2.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 2, "networkId": 2, "rpc": [ 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 new file mode 100644 index 000000000000..2acd7d70eb97 --- /dev/null +++ b/processor/src/test/resources/test_chains/invalid/leadingzero/eip155-01.json @@ -0,0 +1,29 @@ +{ + "name": "Ethereum Mainnet", + "shortName": "eth", + "chain": "ETH", + "chainId": 1, + "networkId": 1, + "rpc": [ + "https://mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://api.mycryptoapi.com/eth" + ], + "faucets": [], + "infoURL": "https://ethereum.org", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "explorers": [{ + "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/sameshortname/eip155-1.json b/processor/src/test/resources/test_chains/invalid/sameshortname/eip155-1.json index 104eaab304f4..019feaa81341 100644 --- a/processor/src/test/resources/test_chains/invalid/sameshortname/eip155-1.json +++ b/processor/src/test/resources/test_chains/invalid/sameshortname/eip155-1.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "willfail", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ @@ -10,7 +9,7 @@ "https://api.mycryptoapi.com/eth" ], "nativeCurrency": { - "name": "Görli Ether", + "name": "Goerli Ether", "symbol": "GOR", "decimals": 18 }, diff --git a/processor/src/test/resources/test_chains/invalid/sameshortname/eip155-5.json b/processor/src/test/resources/test_chains/invalid/sameshortname/eip155-5.json index d479df95dabe..5b24c243f681 100644 --- a/processor/src/test/resources/test_chains/invalid/sameshortname/eip155-5.json +++ b/processor/src/test/resources/test_chains/invalid/sameshortname/eip155-5.json @@ -1,10 +1,9 @@ { - "name": "Ethereum Testnet Görli", + "name": "Ethereum Testnet Goerli", "chain": "ETH", - "network": "goerli", "rpc": [ "https://rpc.goerli.mudit.blog/", - "https://rpc.slock.it/goerli ", + "https://rpc.slock.it/goerli", "https://goerli.prylabs.net" ], "faucets": [ @@ -12,7 +11,7 @@ "https://faucet.goerli.mudit.blog" ], "nativeCurrency": { - "name": "Görli Ether", + "name": "Goerli Ether", "symbol": "GOR", "decimals": 18 }, diff --git a/processor/src/test/resources/test_chains/invalid/shortNameMustNotBeStar/eip155-1.json b/processor/src/test/resources/test_chains/invalid/shortNameMustNotBeStar/eip155-1.json index bb4c8f1e1d37..ef240a6f06f2 100644 --- a/processor/src/test/resources/test_chains/invalid/shortNameMustNotBeStar/eip155-1.json +++ b/processor/src/test/resources/test_chains/invalid/shortNameMustNotBeStar/eip155-1.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "*", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/withparentchaindoesnotexist/eip155-2.json b/processor/src/test/resources/test_chains/invalid/withparentchaindoesnotexist/eip155-2.json index 165a41871b62..1ebb62180cf8 100644 --- a/processor/src/test/resources/test_chains/invalid/withparentchaindoesnotexist/eip155-2.json +++ b/processor/src/test/resources/test_chains/invalid/withparentchaindoesnotexist/eip155-2.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 2, "networkId": 2, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/withparentextrabridgeelementnoobject/eip155-2.json b/processor/src/test/resources/test_chains/invalid/withparentextrabridgeelementnoobject/eip155-2.json index 7cc1fd475b46..79c1c99158b2 100644 --- a/processor/src/test/resources/test_chains/invalid/withparentextrabridgeelementnoobject/eip155-2.json +++ b/processor/src/test/resources/test_chains/invalid/withparentextrabridgeelementnoobject/eip155-2.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 2, "networkId": 2, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/withparentextrabridgesfield/eip155-2.json b/processor/src/test/resources/test_chains/invalid/withparentextrabridgesfield/eip155-2.json index e4007b5e1baa..a244d6fa7838 100644 --- a/processor/src/test/resources/test_chains/invalid/withparentextrabridgesfield/eip155-2.json +++ b/processor/src/test/resources/test_chains/invalid/withparentextrabridgesfield/eip155-2.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 2, "networkId": 2, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/withparentextrabridgesnoarray/eip155-2.json b/processor/src/test/resources/test_chains/invalid/withparentextrabridgesnoarray/eip155-2.json index 8fa85245678a..ef334703c0c8 100644 --- a/processor/src/test/resources/test_chains/invalid/withparentextrabridgesnoarray/eip155-2.json +++ b/processor/src/test/resources/test_chains/invalid/withparentextrabridgesnoarray/eip155-2.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 2, "networkId": 2, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/withparentextrafield/eip155-2.json b/processor/src/test/resources/test_chains/invalid/withparentextrafield/eip155-2.json index 0be4e23ec650..0441db03e87b 100644 --- a/processor/src/test/resources/test_chains/invalid/withparentextrafield/eip155-2.json +++ b/processor/src/test/resources/test_chains/invalid/withparentextrafield/eip155-2.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 2, "networkId": 2, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/withparentinvalidtype/eip155-2.json b/processor/src/test/resources/test_chains/invalid/withparentinvalidtype/eip155-2.json index e6e90ddcb617..c6cacfe0908e 100644 --- a/processor/src/test/resources/test_chains/invalid/withparentinvalidtype/eip155-2.json +++ b/processor/src/test/resources/test_chains/invalid/withparentinvalidtype/eip155-2.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 2, "networkId": 2, "rpc": [ diff --git a/processor/src/test/resources/test_chains/invalid/withparentnobject/eip155-2.json b/processor/src/test/resources/test_chains/invalid/withparentnobject/eip155-2.json index decf66539990..8001553c487a 100644 --- a/processor/src/test/resources/test_chains/invalid/withparentnobject/eip155-2.json +++ b/processor/src/test/resources/test_chains/invalid/withparentnobject/eip155-2.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 2, "networkId": 2, "rpc": [ 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 c3f128fd6b36..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 @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ @@ -20,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/eip155-1.json b/processor/src/test/resources/test_chains/valid/eip155-1.json index 457f8964f5f8..eabec8a2807d 100644 --- a/processor/src/test/resources/test_chains/valid/eip155-1.json +++ b/processor/src/test/resources/test_chains/valid/eip155-1.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/valid/eip155-5.json b/processor/src/test/resources/test_chains/valid/eip155-5.json index 15387bf6697c..4f8e394b7692 100644 --- a/processor/src/test/resources/test_chains/valid/eip155-5.json +++ b/processor/src/test/resources/test_chains/valid/eip155-5.json @@ -1,9 +1,9 @@ { - "name": "Ethereum Testnet Görli", + "name": "Ethereum Testnet Goerli", "chain": "ETH", "rpc": [ "https://rpc.goerli.mudit.blog/", - "https://rpc.slock.it/goerli ", + "https://rpc.slock.it/goerli", "https://goerli.prylabs.net" ], "faucets": [ @@ -11,7 +11,7 @@ "https://faucet.goerli.mudit.blog" ], "nativeCurrency": { - "name": "Görli Ether", + "name": "Goerli Ether", "symbol": "GOR", "decimals": 18 }, @@ -20,6 +20,9 @@ "chainId": 5, "networkId": 5, "ens": { - "registry":"0x112234455c3a32fd11230c42e7bccd4a84e02010" - } + "registry": "0x112234455c3a32fd11230c42e7bccd4a84e02010" + }, + "redFlags": [ + "reusedChainId" + ] } 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 ef4eeb20c33c..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 @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ @@ -21,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 fadae45ad8f5..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 @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 2, "networkId": 2, "rpc": [ @@ -18,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/processor/src/test/resources/test_chains/valid/withparent/eip155-1.json b/processor/src/test/resources/test_chains/valid/withparent/eip155-1.json index 457f8964f5f8..eabec8a2807d 100644 --- a/processor/src/test/resources/test_chains/valid/withparent/eip155-1.json +++ b/processor/src/test/resources/test_chains/valid/withparent/eip155-1.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/valid/withparent/eip155-2.json b/processor/src/test/resources/test_chains/valid/withparent/eip155-2.json index 165a41871b62..1ebb62180cf8 100644 --- a/processor/src/test/resources/test_chains/valid/withparent/eip155-2.json +++ b/processor/src/test/resources/test_chains/valid/withparent/eip155-2.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 2, "networkId": 2, "rpc": [ diff --git a/processor/src/test/resources/test_chains/valid/withparentbridge/eip155-1.json b/processor/src/test/resources/test_chains/valid/withparentbridge/eip155-1.json index 457f8964f5f8..eabec8a2807d 100644 --- a/processor/src/test/resources/test_chains/valid/withparentbridge/eip155-1.json +++ b/processor/src/test/resources/test_chains/valid/withparentbridge/eip155-1.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/valid/withparentbridge/eip155-2.json b/processor/src/test/resources/test_chains/valid/withparentbridge/eip155-2.json index e6aef8e4de9c..c5fe606bdccf 100644 --- a/processor/src/test/resources/test_chains/valid/withparentbridge/eip155-2.json +++ b/processor/src/test/resources/test_chains/valid/withparentbridge/eip155-2.json @@ -2,7 +2,6 @@ "name": "Ethereum Mainnet", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 2, "networkId": 2, "rpc": [ diff --git a/settings.gradle.kts b/settings.gradle.kts index 7befe42f46f4..45bd1adfff4d 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,2 +1,3 @@ include(":model") +include(":httpsloader") include(":processor") \ No newline at end of file diff --git a/tools/package-lock.json b/tools/package-lock.json new file mode 100644 index 000000000000..6a00bb35f20a --- /dev/null +++ b/tools/package-lock.json @@ -0,0 +1,114 @@ +{ + "name": "tools", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "devDependencies": { + "ajv": "^8.11.0" + } + }, + "node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + } + }, + "dependencies": { + "ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + } + } +} diff --git a/tools/package.json b/tools/package.json new file mode 100644 index 000000000000..503dfeba770e --- /dev/null +++ b/tools/package.json @@ -0,0 +1,5 @@ +{ + "devDependencies": { + "ajv": "^8.11.0" + } +} diff --git a/tools/rmNetwork.js b/tools/rmNetwork.js new file mode 100644 index 000000000000..603add0a4d85 --- /dev/null +++ b/tools/rmNetwork.js @@ -0,0 +1,21 @@ +/** + * This removed `network` param from all the chain files + * Since this is the only tool here, it is here in index.js + */ + +const fs = require('fs'); +const chainFiles = fs.readdirSync('../_data/chains/'); + +for (const chainFile of chainFiles) { + const fileLocation = `../_data/chains/${chainFile}` + const fileData = fs.readFileSync(fileLocation, 'utf8') + const fileDataJson = JSON.parse(fileData) + + if (fileDataJson.network) { + delete fileDataJson.network + fs.writeFileSync(fileLocation, JSON.stringify(fileDataJson, null, 2)) + } +} + +// Note: +// Run `npx prettier --write --ignore-unknown _data`from Project Directory \ No newline at end of file diff --git a/tools/schema/chainSchema.json b/tools/schema/chainSchema.json new file mode 100644 index 000000000000..0ae986518030 --- /dev/null +++ b/tools/schema/chainSchema.json @@ -0,0 +1,145 @@ +{ + "$schema": "http://json-schema.org/schema#", + "title": "EIP155 Chain Data", + "type":"object", + "required": ["name","shortName","chain","chainId","networkId","rpc","faucets","infoURL","nativeCurrency"], + "properties": { + "name":{ + "type":"string", + "description": "Name of the Network" + }, + "shortName":{ + "type":"string", + "pattern": "^[A-Za-z0-9-_]{1,64}$" + }, + "title":{ + "type":"string", + "description": "Optional title for the Network" + }, + "chain":{ + "type":"string", + "description": "Name of the Network" + }, + "icon":{ + "type":"string", + "description": "Icon type" + }, + "rpc":{ + "type":"array", + "items":{ + "type":"string" + } + }, + "faucets":{ + "type":"array", + "items":{ + "type":"string" + } + }, + "features":{ + "type":"array", + "items":{ + "type":"object", + "properties": { + "name":{ + "type":"string", + "description": "feature name - e.g. EIP155" + } + } + } + }, + "nativeCurrency":{ + "type":"object", + "properties": { + "name":{ + "type":"string", + "description":"Name of the Native Currency" + }, + "symbol":{ + "type":"string", + "description":"Symbol of the Native Currency" + }, + "decimals":{ + "type":"number", + "description":"Decimal points supported" + } + } + }, + "infoURL":{ + "type":"string", + "description": "infoURL" + }, + "chainId":{ + "type":"number", + "description": "Chain ID of the Network" + }, + "networkId":{ + "type":"number", + "description": "Network ID of the Network" + }, + "slip44":{ + "type":"number", + "description": "Slip44 of the Network" + }, + "ens":{ + "type":"object", + "properties": { + "registry":{ + "type":"string" + } + } + }, + "explorers":{ + "type":"array", + "items":{ + "type":"object", + "properties": { + "name":{ + "type":"string" + }, + "url":{ + "type":"string" + }, + "standard":{ + "type":"string", + "description": "EIP3091 or none" + } + } + } + }, + "parent":{ + "type":"object", + "properties": { + "type":{ + "type":"string" + }, + "chain":{ + "type":"string" + }, + "bridges":{ + "type":"array", + "items": { + "type":"object", + "properties":{ + "url": { + "type":"string" + } + } + } + } + } + }, + "status":{ + "type":"string" + }, + "redFlags":{ + "type":"array", + "items":{ + "type":"string", + "enum": ["reusedChainId"] + } + + } + }, + "additionalProperties": false +} diff --git a/tools/schemaCheck.js b/tools/schemaCheck.js new file mode 100644 index 000000000000..f9553d9cf9e0 --- /dev/null +++ b/tools/schemaCheck.js @@ -0,0 +1,44 @@ +const fs = require("fs") +const Ajv = require("ajv") +const ajv = new Ajv() +const schema = require("./schema/chainSchema.json") +const { exit } = require("process") +const path = require('path') + +const resolve = (_path) => path.resolve(__dirname, _path) +const chainFiles = fs.readdirSync(resolve("../_data/chains/")) + +// https://chainagnostic.org/CAIPs/caip-2 +const parseChainId = (chainId) => + /^(?[-a-z0-9]{3,8})-(?[-a-zA-Z0-9]{1,32})$/u.exec( + chainId + ) + +const filesWithErrors = [] +for (const chainFile of chainFiles) { + const fileLocation = resolve(`../_data/chains/${chainFile}`) + const fileData = fs.readFileSync(fileLocation, "utf8") + const fileDataJson = JSON.parse(fileData) + const fileName = chainFile.split(".")[0] + const parsedChainId = parseChainId(fileName)?.groups + const chainIdFromFileName = parsedChainId?.reference + if (chainIdFromFileName != fileDataJson.chainId) { + throw new Error(`File Name does not match with ChainID in ${chainFile}`) + } + const valid = ajv.validate(schema, fileDataJson) + if (!valid) { + console.error(ajv.errors) + filesWithErrors.push(chainFile) + } +} + +if (filesWithErrors.length > 0) { + filesWithErrors.forEach(file => { + console.error(`Invalid JSON Schema in ${file}`) + }) + exit(-1); +} +else { + console.info("Schema check completed successfully"); + exit(0); +} \ No newline at end of file diff --git a/website b/website new file mode 160000 index 000000000000..1379261fbfcc --- /dev/null +++ b/website @@ -0,0 +1 @@ +Subproject commit 1379261fbfcc57c6552ef36bf098ff52af37021c