From e279983b5930acd8da41d8e196972a2e529eeef4 Mon Sep 17 00:00:00 2001 From: ysy717324540 Date: Mon, 29 Nov 2021 11:30:48 +0800 Subject: [PATCH 01/15] update chain --- .idea/.gitignore | 5 + .idea/codeStyles/codeStyleConfig.xml | 5 + .idea/jsLibraryMappings.xml | 6 + .idea/misc.xml | 6 + .idea/modules.xml | 8 + .idea/networklist-org.iml | 12 + .idea/vcs.xml | 6 + README.md | 71 +- chains.json | 3146 ++++++++++++++++++++++++++ components/chain/chain.js | 11 +- components/multichain/multichain.js | 2 +- next.config.js | 5 + pages/index.js | 8 +- 13 files changed, 3253 insertions(+), 38 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/jsLibraryMappings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/networklist-org.iml create mode 100644 .idea/vcs.xml create mode 100644 chains.json create mode 100644 next.config.js diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 000000000..b58b603fe --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 000000000..a55e7a179 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml new file mode 100644 index 000000000..d23208fbb --- /dev/null +++ b/.idea/jsLibraryMappings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 000000000..24eb271ab --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 000000000..20765001f --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/networklist-org.iml b/.idea/networklist-org.iml new file mode 100644 index 000000000..24643cc37 --- /dev/null +++ b/.idea/networklist-org.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 000000000..94a25f7f4 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/README.md b/README.md index b12f3e33e..2688d4b94 100644 --- a/README.md +++ b/README.md @@ -1,34 +1,47 @@ -This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). - -## Getting Started - -First, run the development server: - -```bash -npm run dev -# or -yarn dev +## How to add a new chain + +Fork this repo and add your evm chain info into `chains.json` + +Example: + +```javascript +{ + "name": "xDAI Chain", + "chainId": 100, + "shortName": "xdai", + "chain": "XDAI", + "network": "mainnet", + "networkId": 100, + "nativeCurrency": { + "name": "xDAI", + "symbol": "xDAI", + "decimals": 18 + }, + "rpc": [ + "https://rpc.xdaichain.com", + "https://xdai.poanetwork.dev", + "wss://rpc.xdaichain.com/wss", + "wss://xdai.poanetwork.dev/wss", + "http://xdai.poanetwork.dev", + "https://dai.poa.network", + "ws://xdai.poanetwork.dev:8546" + ], + "faucets": [], + "infoURL": "https://forum.poa.network/c/xdai-chain", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png", + "color_chain_bg": "0x58B2AF" + } +} ``` -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. - -You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file. - -[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`. - -The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. - -## Learn More - -To learn more about Next.js, take a look at the following resources: - -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. - -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! +`app_resource` is optional, which is only affect the appearance in TokenPocket Wallet. You can follow the standard below: -## Deploy on Vercel -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. +![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-1.png) +![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-2.png) +![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-3.png) +![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-4.png) +![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-5.png) -Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. diff --git a/chains.json b/chains.json new file mode 100644 index 000000000..d344ddc07 --- /dev/null +++ b/chains.json @@ -0,0 +1,3146 @@ +[ + { + "name": "Ethereum Mainnet", + "chainId": 1, + "shortName": "eth", + "chain": "ETH", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "wss://mainnet.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "https://api.mycryptoapi.com/eth", + "https://cloudflare-eth.com" + ], + "faucets": [ + + ], + "infoURL": "https://ethereum.org" + }, + { + "name": "Optimistic Ethereum", + "chainId": 10, + "shortName": "oeth", + "chain": "ETH", + "network": "mainnet", + "networkId": 10, + "nativeCurrency": { + "name": "Ether", + "symbol": "OETH", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.optimism.io/" + ], + "faucets": [ + + ], + "infoURL": "https://optimism.io", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/0.png", + "color_chain_bg": "0xF54B49" + } + }, + { + "name": "xDAI Chain", + "chainId": 100, + "shortName": "xdai", + "chain": "XDAI", + "network": "mainnet", + "networkId": 100, + "nativeCurrency": { + "name": "xDAI", + "symbol": "xDAI", + "decimals": 18 + }, + "rpc": [ + "https://rpc.xdaichain.com", + "https://xdai.poanetwork.dev", + "wss://rpc.xdaichain.com/wss", + "wss://xdai.poanetwork.dev/wss", + "http://xdai.poanetwork.dev", + "https://dai.poa.network", + "ws://xdai.poanetwork.dev:8546" + ], + "faucets": [ + + ], + "infoURL": "https://forum.poa.network/c/xdai-chain", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png", + "color_chain_bg": "0x58B2AF" + } + }, + { + "name": "BTA Chain", + "chainId": 1657, + "shortName": "btachain", + "chain": "BTA", + "network": "mainnet", + "networkId": 1657, + "nativeCurrency": { + "name": "btachain", + "symbol": "BTA", + "decimals": 18 + }, + "rpc": [ + "https://dataseed1.btachain.com", + "https://dataseed2.btachain.com", + "wss://dataseed1.btachain.com/wss", + "wss://dataseed2.btachain.com/wss", + "ws://dataseed1.btachain.com:8861" + ], + "faucets": [ + + ], + "infoURL": "https://btachain.com", + "app_resource": { + "ic_chain_select": "https://btachain.com/images/favicon/logo.png", + "ic_chain_unselect": "https://btachain.com/images/favicon/logo-0x.png", + "color_chain_bg": "0x0777cf" + } + }, + { + "name": "Arbitrum One", + "chainId": 42161, + "shortName": "Arbitrum", + "chain": "Arbitrum", + "network": "mainnet", + "networkId": 42161, + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://arb1.arbitrum.io/rpc" + ], + "faucets": [ + + ], + "infoURL": "https://arbitrum.io/" + }, + { + "name": "EtherLite Chain", + "chainId": 111, + "shortName": "ETL", + "chain": "EtherLite", + "network": "mainnet", + "networkId": 111, + "nativeCurrency": { + "name": "EtherLite Coin", + "symbol": "ETL", + "decimals": 18 + }, + "rpc": [ + "https://rpc.etherlite.org" + ], + "faucets": [ + "https://etherlite.org/faucets" + ], + "infoURL": "https://forum.etherlite.org/", + "app_resource": { + "ic_chain_select": "https://etherlite.org/assets/logo/88.png", + "ic_chain_unselect": "https://etherlite.org/assets/logo/88x.png", + "color_chain_bg": "0x58B2AF" + } + }, + { + "name": "Polygon (Matic) Mainnet", + "chainId": 137, + "shortName": "matic", + "chain": "Matic", + "network": "mainnet", + "networkId": 137, + "nativeCurrency": { + "name": "Matic", + "symbol": "MATIC", + "decimals": 18 + }, + "rpc": [ + "https://rpc-mainnet.matic.network", + "wss://ws-mainnet.matic.network" + ], + "faucets": [ + + ], + "infoURL": "https://matic.network/", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Polygon/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Polygon/0.png", + "color_chain_bg": "0x7F4CDE" + } + }, + { + "name": "Avalanche Mainnet", + "chainId": 43114, + "shortName": "Avalanche", + "chain": "AVAX", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 + }, + "rpc": [ + "https://api.avax.network/ext/bc/C/rpc" + ], + "faucets": [ + + ], + "infoURL": "https://cchain.explorer.avax.network/", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Avalanche/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Avalanche/0.png", + "color_chain_bg": "0xE92734" + } + }, + { + "name": "Fuse Mainnet", + "chainId": 122, + "shortName": "fuse", + "chain": "FUSE", + "network": "mainnet", + "networkId": 122, + "nativeCurrency": { + "name": "Fuse", + "symbol": "FUSE", + "decimals": 18 + }, + "rpc": [ + "https://rpc.fuse.io" + ], + "faucets": [ + + ], + "infoURL": "https://fuse.io/", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/0.png", + "color_chain_bg": "0x62D970" + } + }, + { + "name": "Fantom Opera", + "chainId": 250, + "shortName": "ftm", + "chain": "FTM", + "network": "mainnet", + "networkId": 250, + "nativeCurrency": { + "name": "Fantom", + "symbol": "FTM", + "decimals": 18 + }, + "rpc": [ + "https://rpcapi.fantom.network", + "https://fantomscan.io/rpc" + ], + "faucets": [ + + ], + "infoURL": "https://fantom.foundation", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fantom/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fantom/0.png", + "color_chain_bg": "0x1969FF" + } + }, + { + "name": "Cronos Mainnet", + "chainId": 25, + "shortName": "CRO", + "chain": "CRO", + "network": "mainnet", + "networkId": 25, + "nativeCurrency": { + "name": "CRO", + "symbol": "CRO", + "decimals": 18 + }, + "rpc": [ + "https://cronos-rpc.elk.finance", + "https://cronosrpc-1.xstaking.sg" + ], + "faucets": [ + + ], + "infoURL": "https://cronos.crypto.org/explorer" + }, + { + "name": "Fusion Mainnet", + "chainId": 32659, + "shortName": "fsn", + "chain": "FSN", + "network": "mainnet", + "networkId": 32659, + "nativeCurrency": { + "name": "Fusion", + "symbol": "FSN", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.anyswap.exchange" + ], + "faucets": [ + + ], + "infoURL": "https://fsnex.com/", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/0.png", + "color_chain_bg": "0x2E3B4A" + } + }, + { + "name": "ThunderCore Mainnet", + "chainId": 108, + "shortName": "TT", + "chain": "TT", + "network": "mainnet", + "networkId": 108, + "nativeCurrency": { + "name": "ThunderCore Mainnet Ether", + "symbol": "TT", + "decimals": 18 + }, + "rpc": [ + "https://mainnet-rpc.thundercore.com" + ], + "faucets": [ + "https://faucet.thundercore.com" + ], + "infoURL": "https://thundercore.com", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/0.png", + "color_chain_bg": "0xEAC541" + } + }, + { + "name": "Hoo Smart Chain Testnet", + "chain": "HSC", + "network": "testnet", + "rpc": [ + "https://http-testnet.hoosmartchain.com" + ], + "faucets": [ + "https://faucet-testnet.hscscan.com/" + ], + "nativeCurrency": { + "name": "HOO", + "symbol": "HOO", + "decimals": 18 + }, + "infoURL": "https://www.hoosmartchain.com", + "shortName": "HSC", + "chainId": 170, + "networkId": 170, + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/0.png", + "color_chain_bg": "0x00C0AB" + } + }, + { + "name": "Ethereum Classic Mainnet", + "chainId": 61, + "shortName": "etc", + "chain": "ETC", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Ethereum Classic Ether", + "symbol": "ETC", + "decimals": 18 + }, + "rpc": [ + "https://www.ethercluster.com/etc" + ], + "faucets": [ + + ], + "infoURL": "https://ethereumclassic.org", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/0.png", + "color_chain_bg": "0x3CBA3B" + } + }, + { + "name": "MVS", + "chainId": 23, + "shortName": "MVS", + "chain": "MVS", + "network": "mainnet", + "networkId": 23, + "nativeCurrency": { + "name": "ETP", + "symbol": "ETP", + "decimals": 18 + }, + "rpc": [ + "https://vm.mvs.org/mainnet/381e0fe4-e67d-4714-9c8c-69c7bd960e54" + ], + "faucets": [ + + ], + "infoURL": "" + }, + { + "name": "Catecoin Chain Mainnet", + "chainId": 1618, + "shortName": "cate", + "chain": "Catechain", + "network": "mainnet", + "networkId": 1618, + "nativeCurrency": { + "name": "Catecoin", + "symbol": "CATE", + "decimals": 18 + }, + "rpc": [ + "https://send.catechain.com" + ], + "faucets": [ + + ], + "infoURL": "https://catechain.com" + }, + { + "name": "Ethereum Testnet Ropsten", + "chainId": 3, + "shortName": "rop", + "chain": "ETH", + "network": "ropsten", + "networkId": 3, + "nativeCurrency": { + "name": "Ropsten Ether", + "symbol": "ROP", + "decimals": 18 + }, + "rpc": [ + "https://ropsten.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "wss://ropsten.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161" + ], + "faucets": [ + "https://faucet.ropsten.be?${ADDRESS}" + ], + "infoURL": "https://github.com/ethereum/ropsten" + }, + { + "name": "Ethereum Testnet Kovan", + "chainId": 42, + "shortName": "kov", + "chain": "ETH", + "network": "kovan", + "networkId": 42, + "nativeCurrency": { + "name": "Kovan Ether", + "symbol": "KOV", + "decimals": 18 + }, + "rpc": [ + "https://kovan.poa.network", + "http://kovan.poa.network:8545", + "https://kovan.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "wss://kovan.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "ws://kovan.poa.network:8546" + ], + "faucets": [ + "https://faucet.kovan.network", + "https://gitter.im/kovan-testnet/faucet" + ], + "infoURL": "https://kovan-testnet.github.io/website" + }, + { + "name": "Ethereum Testnet Rinkeby", + "chainId": 4, + "shortName": "rin", + "chain": "ETH", + "network": "rinkeby", + "networkId": 4, + "nativeCurrency": { + "name": "Rinkeby Ether", + "symbol": "RIN", + "decimals": 18 + }, + "rpc": [ + "https://rinkeby.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "wss://rinkeby.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161" + ], + "faucets": [ + "https://faucet.rinkeby.io" + ], + "infoURL": "https://www.rinkeby.io" + }, + { + "name": "Ethereum Testnet Görli", + "chainId": 5, + "shortName": "gor", + "chain": "ETH", + "network": "goerli", + "networkId": 5, + "nativeCurrency": { + "name": "Görli Ether", + "symbol": "GOR", + "decimals": 18 + }, + "rpc": [ + "https://rpc.goerli.mudit.blog/", + "https://rpc.slock.it/goerli ", + "https://goerli.prylabs.net/" + ], + "faucets": [ + "https://goerli-faucet.slock.it/?address=${ADDRESS}", + "https://faucet.goerli.mudit.blog" + ], + "infoURL": "https://goerli.net/#about" + }, + { + "name": "Klaytn Testnet Baobab", + "chainId": 1001, + "shortName": "Baobab", + "chain": "KLAY", + "network": "baobab", + "networkId": 1001, + "nativeCurrency": { + "name": "KLAY", + "symbol": "KLAY", + "decimals": 18 + }, + "rpc": [ + "https://node-api.klaytnapi.com/v1/klaytn" + ], + "faucets": [ + "https://baobab.wallet.klaytn.com/access?next=faucet" + ], + "infoURL": "https://www.klaytn.com/" + }, + { + "name": "Arbitrum Testnet V5", + "chainId": 144545313136048, + "shortName": "Arbitrum Test", + "chain": "Arbitrum Test", + "network": "testnet", + "networkId": 144545313136048, + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://kovan5.arbitrum.io/rpc" + ], + "faucets": [ + + ], + "infoURL": "" + }, + { + "name": "Zenith Smart Chain", + "chainId": 20212, + "shortName": "ZSC", + "chain": "ZSC", + "network": "mainnet", + "networkId": 20212, + "nativeCurrency": { + "name": "ZTB", + "symbol": "ZTB", + "decimals": 18 + }, + "rpc": [ + "https://zsc.one/rpc" + ], + "faucets": [ + + ], + "infoURL": "" + }, + { + "name": "Newton Testnet", + "chainId": 1007, + "shortName": "tnew", + "chain": "NEW", + "network": "testnet", + "networkId": 1007, + "nativeCurrency": { + "name": "Newton", + "symbol": "NEW", + "decimals": 18 + }, + "rpc": [ + "https://rpc1.newchain.newtonproject.org" + ], + "faucets": [ + + ], + "infoURL": "https://www.newtonproject.org/" + }, + { + "name": "EtherInc", + "chainId": 101, + "shortName": "eti", + "chain": "ETI", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "EtherInc Ether", + "symbol": "ETI", + "decimals": 18 + }, + "rpc": [ + "https://api.einc.io/jsonrpc/mainnet" + ], + "faucets": [ + + ], + "infoURL": "https://einc.io" + }, + { + "name": "Evrice Network", + "chainId": 1010, + "shortName": "EVC", + "chain": "EVC", + "network": "Evrice", + "networkId": 1010, + "nativeCurrency": { + "name": "Evrice", + "symbol": "EVC", + "decimals": 18 + }, + "rpc": [ + "https://meta.evrice.com" + ], + "faucets": [ + + ], + "infoURL": "https://evrice.com" + }, + { + "name": "Newton", + "chainId": 1012, + "shortName": "new", + "chain": "NEW", + "network": "mainnet", + "networkId": 1012, + "nativeCurrency": { + "name": "Newton", + "symbol": "NEW", + "decimals": 18 + }, + "rpc": [ + "https://global.rpc.mainnet.newtonproject.org" + ], + "faucets": [ + + ], + "infoURL": "https://www.newtonproject.org/" + }, + { + "name": "Web3Games Testnet", + "chainId": 102, + "shortName": "w3g", + "chain": "Web3Games", + "network": "Web3Games testnet", + "networkId": 102, + "nativeCurrency": { + "name": "Web3Games", + "symbol": "W3G", + "decimals": 18 + }, + "rpc": [ + "https://substrate.org.cn" + ], + "faucets": [ + + ], + "infoURL": "https://web3games.org/", + "app_resource": { + "ic_chain_select": "https://web3games-public.oss-ap-northeast-1.aliyuncs.com/web3games-token-pocket-02.png", + "ic_chain_unselect": "https://web3games-public.oss-ap-northeast-1.aliyuncs.com/web3games-token-pocket-01.png", + "color_chain_bg": "0x2A31FB" + } + }, + { + "name": "Clover Testnet", + "chainId": 1023, + "shortName": "tclv", + "chain": "Clover", + "network": "clover testnet", + "networkId": 1023, + "nativeCurrency": { + "name": "Clover", + "symbol": "CLV", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://clover.finance" + }, + { + "name": "Clover Mainnet", + "chainId": 1024, + "shortName": "clv", + "chain": "Clover", + "network": "clover mainnet", + "networkId": 1024, + "nativeCurrency": { + "name": "Clover", + "symbol": "CLV", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://clover.finance" + }, + { + "name": "Metadium Mainnet", + "chainId": 11, + "shortName": "meta", + "chain": "META", + "network": "mainnet", + "networkId": 11, + "nativeCurrency": { + "name": "Metadium Mainnet Ether", + "symbol": "META", + "decimals": 18 + }, + "rpc": [ + "https://api.metadium.com/prod" + ], + "faucets": [ + + ], + "infoURL": "https://metadium.com" + }, + { + "name": "IPOS Network", + "chainId": 1122334455, + "shortName": "ipos", + "chain": "IPOS", + "network": "mainnet", + "networkId": 1122334455, + "nativeCurrency": { + "name": "IPOS Network Ether", + "symbol": "IPOS", + "decimals": 18 + }, + "rpc": [ + "https://rpc.iposlab.com", + "https://rpc2.iposlab.com" + ], + "faucets": [ + + ], + "infoURL": "https://iposlab.com" + }, + { + "name": "MathChain", + "chainId": 1139, + "shortName": "MATH", + "chain": "MATH", + "network": "mainnet", + "networkId": 1139, + "nativeCurrency": { + "name": "MathChain", + "symbol": "MATH", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://mathwallet.org" + }, + { + "name": "MathChain Testnet", + "chainId": 1140, + "shortName": "tMATH", + "chain": "MATH", + "network": "testnet", + "networkId": 1140, + "nativeCurrency": { + "name": "MathChain", + "symbol": "MATH", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://mathwallet.org/" + }, + { + "name": "Metadium Testnet", + "chainId": 12, + "shortName": "kal", + "chain": "META", + "network": "testnet", + "networkId": 12, + "nativeCurrency": { + "name": "Metadium Testnet Ether", + "symbol": "KAL", + "decimals": 18 + }, + "rpc": [ + "https://api.metadium.com/dev" + ], + "faucets": [ + + ], + "infoURL": "https://metadium.com" + }, + { + "name": "Huobi ECO Chain Mainnet", + "chainId": 128, + "shortName": "heco", + "chain": "Heco", + "network": "mainnet", + "networkId": 128, + "nativeCurrency": { + "name": "Huobi ECO Chain Native Token", + "symbol": "HT", + "decimals": 18 + }, + "rpc": [ + "https://http-mainnet.hecochain.com", + "wss://ws-mainnet.hecochain.com" + ], + "faucets": [ + + ], + "infoURL": "https://www.hecochain.com" + }, + { + "name": "Moonbeam Polkadot", + "chainId": 1284, + "shortName": "mbeam", + "chain": "MOON", + "network": "moonbeam", + "networkId": 1284, + "nativeCurrency": { + "name": "Glimmer", + "symbol": "GLMR", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://moonbeam.network/networks/moonbeam/" + }, + { + "name": "Moonriver", + "chainId": 1285, + "shortName": "Moonriver", + "chain": "MOVR", + "network": "MOVR", + "networkId": 1285, + "nativeCurrency": { + "name": "MOVR", + "symbol": "MOVR", + "decimals": 18 + }, + "rpc": [ + "https://rpc.moonriver.moonbeam.network" + ], + "faucets": [ + + ], + "infoURL": "https://moonbeam.network/networks/moonriver/" + }, + { + "name": "Moonrock Rococo", + "chainId": 1286, + "shortName": "mrock", + "chain": "MOON", + "network": "moonrock", + "networkId": 1286, + "nativeCurrency": { + "name": "Rocs", + "symbol": "ROC", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "" + }, + { + "name": "Moonbeam Testnet Moonbase Alpha", + "chainId": 1287, + "shortName": "mbase", + "chain": "MOON", + "network": "moonbase", + "networkId": 1287, + "nativeCurrency": { + "name": "Dev", + "symbol": "DEV", + "decimals": 18 + }, + "rpc": [ + "https://rpc.testnet.moonbeam.network", + "wss://wss.testnet.moonbeam.network" + ], + "faucets": [ + + ], + "infoURL": "https://docs.moonbeam.network/networks/testnet/" + }, + { + "name": "Diode Testnet Staging", + "chainId": 13, + "shortName": "dstg", + "chain": "DIODE", + "network": "testnet", + "networkId": 13, + "nativeCurrency": { + "name": "Staging Diodes", + "symbol": "sDIODE", + "decimals": 18 + }, + "rpc": [ + "https://staging.diode.io:8443/", + "wss://staging.diode.io:8443/ws" + ], + "faucets": [ + + ], + "infoURL": "https://diode.io/staging" + }, + { + "name": "Ether-1", + "chainId": 1313114, + "shortName": "etho", + "chain": "ETHO", + "network": "mainnet", + "networkId": 1313114, + "nativeCurrency": { + "name": "Ether-1 Ether", + "symbol": "ETHO", + "decimals": 18 + }, + "rpc": [ + "https://rpc.ether1.org" + ], + "faucets": [ + + ], + "infoURL": "https://ether1.org" + }, + { + "name": "NEAR MainNet", + "chainId": 1313161554, + "shortName": "near", + "chain": "NEAR", + "network": "mainnet", + "networkId": 1313161554, + "nativeCurrency": { + "name": "NEAR", + "symbol": "NEAR", + "decimals": 24 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://near.org/" + }, + { + "name": "NEAR TestNet", + "chainId": 1313161555, + "shortName": "neart", + "chain": "NEAR", + "network": "testnet", + "networkId": 1313161555, + "nativeCurrency": { + "name": "NEAR", + "symbol": "tNEAR", + "decimals": 24 + }, + "rpc": [ + + ], + "faucets": [ + "https://wallet.testnet.near.org" + ], + "infoURL": "https://near.org/" + }, + { + "name": "NEAR BetaNet", + "chainId": 1313161556, + "shortName": "nearb", + "chain": "NEAR", + "network": "betanet", + "networkId": 1313161556, + "nativeCurrency": { + "name": "NEAR", + "symbol": "bNEAR", + "decimals": 24 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://near.org/" + }, + { + "name": "Xerom", + "chainId": 1313500, + "shortName": "xero", + "chain": "XERO", + "network": "mainnet", + "networkId": 1313500, + "nativeCurrency": { + "name": "Xerom Ether", + "symbol": "XERO", + "decimals": 18 + }, + "rpc": [ + "https://rpc.xerom.org" + ], + "faucets": [ + + ], + "infoURL": "https://xerom.org" + }, + { + "name": "PepChain Churchill", + "chainId": 13371337, + "shortName": "tpep", + "chain": "PEP", + "network": "testnet", + "networkId": 13371337, + "nativeCurrency": { + "name": "PepChain Churchill Ether", + "symbol": "TPEP", + "decimals": 18 + }, + "rpc": [ + "https://churchill-rpc.pepchain.io" + ], + "faucets": [ + + ], + "infoURL": "https://pepchain.io" + }, + { + "name": "Flare Mainnet", + "chainId": 14, + "shortName": "flr", + "chain": "FLR", + "network": "flare", + "networkId": 14, + "nativeCurrency": { + "name": "Spark", + "symbol": "FLR", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://flare.xyz" + }, + { + "name": "Diode Prenet", + "chainId": 15, + "shortName": "diode", + "chain": "DIODE", + "network": "mainnet", + "networkId": 15, + "nativeCurrency": { + "name": "Diodes", + "symbol": "DIODE", + "decimals": 18 + }, + "rpc": [ + "https://prenet.diode.io:8443/", + "wss://prenet.diode.io:8443/ws" + ], + "faucets": [ + + ], + "infoURL": "https://diode.io/prenet" + }, + { + "name": "Flare Testnet Coston", + "chainId": 16, + "shortName": "cflr", + "chain": "FLR", + "network": "coston", + "networkId": 16, + "nativeCurrency": { + "name": "Coston Spark", + "symbol": "CFLR", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://github.com/flare-eng/coston" + }, + { + "name": "Lightstreams Testnet", + "chainId": 162, + "shortName": "tpht", + "chain": "PHT", + "network": "sirius", + "networkId": 162, + "nativeCurrency": { + "name": "Lightstreams PHT", + "symbol": "PHT", + "decimals": 18 + }, + "rpc": [ + "https://node.sirius.lightstreams.io" + ], + "faucets": [ + "https://discuss.lightstreams.network/t/request-test-tokens" + ], + "infoURL": "https://explorer.sirius.lightstreams.io" + }, + { + "name": "Atheios", + "chainId": 1620, + "shortName": "ath", + "chain": "ATH", + "network": "mainnet", + "networkId": 11235813, + "nativeCurrency": { + "name": "Atheios Ether", + "symbol": "ATH", + "decimals": 18 + }, + "rpc": [ + "https://wallet.atheios.com:8797" + ], + "faucets": [ + + ], + "infoURL": "https://atheios.com" + }, + { + "name": "Lightstreams Mainnet", + "chainId": 163, + "shortName": "pht", + "chain": "PHT", + "network": "mainnet", + "networkId": 163, + "nativeCurrency": { + "name": "Lightstreams PHT", + "symbol": "PHT", + "decimals": 18 + }, + "rpc": [ + "https://node.mainnet.lightstreams.io" + ], + "faucets": [ + + ], + "infoURL": "https://explorer.lightstreams.io" + }, + { + "name": "Harmony Mainnet Shard 0", + "chainId": 1666600000, + "shortName": "hmy-s0", + "chain": "Harmony", + "network": "mainnet", + "networkId": 1666600000, + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "rpc": [ + "https://rpc.s0.t.hmny.io" + ], + "faucets": [ + + ], + "infoURL": "https://www.harmony.one/" + }, + { + "name": "Harmony Mainnet Shard 1", + "chainId": 1666600001, + "shortName": "hmy-s1", + "chain": "Harmony", + "network": "mainnet", + "networkId": 1666600001, + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "rpc": [ + "https://rpc.s1.t.hmny.io" + ], + "faucets": [ + + ], + "infoURL": "https://www.harmony.one/" + }, + { + "name": "Harmony Mainnet Shard 2", + "chainId": 1666600002, + "shortName": "hmy-s2", + "chain": "Harmony", + "network": "mainnet", + "networkId": 1666600002, + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "rpc": [ + "https://rpc.s2.t.hmny.io" + ], + "faucets": [ + + ], + "infoURL": "https://www.harmony.one/" + }, + { + "name": "Harmony Mainnet Shard 3", + "chainId": 1666600003, + "shortName": "hmy-s3", + "chain": "Harmony", + "network": "mainnet", + "networkId": 1666600003, + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "rpc": [ + "https://rpc.s3.t.hmny.io" + ], + "faucets": [ + + ], + "infoURL": "https://www.harmony.one/" + }, + { + "name": "ThaiChain 2.0 ThaiFi", + "chainId": 17, + "shortName": "tfi", + "chain": "TCH", + "network": "thaifi", + "networkId": 17, + "nativeCurrency": { + "name": "Thaifi Ether", + "symbol": "TFI", + "decimals": 18 + }, + "rpc": [ + "https://rpc.thaifi.com" + ], + "faucets": [ + + ], + "infoURL": "https://exp.thaifi.com" + }, + { + "name": "ThunderCore Testnet", + "chainId": 18, + "shortName": "TST", + "chain": "TST", + "network": "testnet", + "networkId": 18, + "nativeCurrency": { + "name": "ThunderCore Testnet Ether", + "symbol": "TST", + "decimals": 18 + }, + "rpc": [ + "https://testnet-rpc.thundercore.com" + ], + "faucets": [ + "https://faucet-testnet.thundercore.com" + ], + "infoURL": "https://thundercore.com" + }, + { + "name": "IOLite", + "chainId": 18289463, + "shortName": "ilt", + "chain": "ILT", + "network": "mainnet", + "networkId": 18289463, + "nativeCurrency": { + "name": "IOLite Ether", + "symbol": "ILT", + "decimals": 18 + }, + "rpc": [ + "https://net.iolite.io" + ], + "faucets": [ + + ], + "infoURL": "https://iolite.io" + }, + { + "name": "Teslafunds", + "chainId": 1856, + "shortName": "tsf", + "chain": "TSF", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Teslafunds Ether", + "symbol": "TSF", + "decimals": 18 + }, + "rpc": [ + "https://tsfapi.europool.me" + ], + "faucets": [ + + ], + "infoURL": "https://teslafunds.io" + }, + { + "name": "EtherGem", + "chainId": 1987, + "shortName": "egem", + "chain": "EGEM", + "network": "mainnet", + "networkId": 1987, + "nativeCurrency": { + "name": "EtherGem Ether", + "symbol": "EGEM", + "decimals": 18 + }, + "rpc": [ + "https://jsonrpc.egem.io/custom" + ], + "faucets": [ + + ], + "infoURL": "https://egem.io" + }, + { + "name": "Expanse Network", + "chainId": 2, + "shortName": "exp", + "chain": "EXP", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Expanse Network Ether", + "symbol": "EXP", + "decimals": 18 + }, + "rpc": [ + "https://node.expanse.tech" + ], + "faucets": [ + + ], + "infoURL": "https://expanse.tech" + }, + { + "name": "ELA-ETH-Sidechain Mainnet", + "chainId": 20, + "shortName": "elaeth", + "chain": "ETH", + "network": "mainnet", + "networkId": 20, + "nativeCurrency": { + "name": "Elastos", + "symbol": "ELA", + "decimals": 18 + }, + "rpc": [ + "https://mainrpc.elaeth.io" + ], + "faucets": [ + + ], + "infoURL": "https://www.elastos.org/" + }, + { + "name": "Akroma", + "chainId": 200625, + "shortName": "aka", + "chain": "AKA", + "network": "mainnet", + "networkId": 200625, + "nativeCurrency": { + "name": "Akroma Ether", + "symbol": "AKA", + "decimals": 18 + }, + "rpc": [ + "https://remote.akroma.io" + ], + "faucets": [ + + ], + "infoURL": "https://akroma.io" + }, + { + "name": "420coin", + "chainId": 2020, + "shortName": "420", + "chain": "420", + "network": "mainnet", + "networkId": 2020, + "nativeCurrency": { + "name": "Fourtwenty", + "symbol": "420", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://420integrated.com" + }, + { + "name": "Edgeware Mainnet", + "chainId": 2021, + "shortName": "edg", + "chain": "EDG", + "network": "mainnet", + "networkId": 2021, + "nativeCurrency": { + "name": "Edge", + "symbol": "EDG", + "decimals": 18 + }, + "rpc": [ + "https://mainnet1.edgewa.re" + ], + "faucets": [ + + ], + "infoURL": "http://edgewa.re" + }, + { + "name": "Beresheet Testnet", + "chainId": 2022, + "shortName": "edgt", + "chain": "EDG", + "network": "beresheet", + "networkId": 2022, + "nativeCurrency": { + "name": "Testnet Edge", + "symbol": "tEDG", + "decimals": 18 + }, + "rpc": [ + "https://beresheet1.edgewa.re" + ], + "faucets": [ + + ], + "infoURL": "http://edgewa.re" + }, + { + "name": "ELA-ETH-Sidechain Testnet", + "chainId": 21, + "shortName": "elaetht", + "chain": "ETH", + "network": "testnet", + "networkId": 21, + "nativeCurrency": { + "name": "Elastos", + "symbol": "tELA", + "decimals": 18 + }, + "rpc": [ + "https://rpc.elaeth.io" + ], + "faucets": [ + "https://faucet.elaeth.io/" + ], + "infoURL": "https://elaeth.io/" + }, + { + "name": "Freight Trust Network", + "chainId": 211, + "shortName": "EDI", + "chain": "EDI", + "network": "freight & trade network", + "networkId": 0, + "nativeCurrency": { + "name": "Freight Trust Native", + "symbol": "0xF", + "decimals": 18 + }, + "rpc": [ + "http://13.57.207.168:3435", + "https://app.freighttrust.net/ftn/${API_KEY}" + ], + "faucets": [ + "http://faucet.freight.sh" + ], + "infoURL": "https://freighttrust.com" + }, + { + "name": "Webchain", + "chainId": 24484, + "shortName": "web", + "chain": "WEB", + "network": "mainnet", + "networkId": 37129, + "nativeCurrency": { + "name": "Webchain Ether", + "symbol": "WEB", + "decimals": 18 + }, + "rpc": [ + "https://node1.webchain.network" + ], + "faucets": [ + + ], + "infoURL": "https://webchain.network" + }, + { + "name": "Energy Web Chain", + "chainId": 246, + "shortName": "ewt", + "chain": "Energy Web Chain", + "network": "mainnet", + "networkId": 246, + "nativeCurrency": { + "name": "Energy Web Token", + "symbol": "EWT", + "decimals": 18 + }, + "rpc": [ + "https://rpc.energyweb.org", + "wss://rpc.energyweb.org/ws" + ], + "faucets": [ + + ], + "infoURL": "https://energyweb.org" + }, + { + "name": "ARTIS sigma1", + "chainId": 246529, + "shortName": "ats", + "chain": "ARTIS", + "network": "sigma1", + "networkId": 246529, + "nativeCurrency": { + "name": "ARTIS sigma1 Ether", + "symbol": "ATS", + "decimals": 18 + }, + "rpc": [ + "https://rpc.sigma1.artis.network" + ], + "faucets": [ + + ], + "infoURL": "https://artis.eco" + }, + { + "name": "ARTIS Testnet tau1", + "chainId": 246785, + "shortName": "atstau", + "chain": "ARTIS", + "network": "tau1", + "networkId": 246785, + "nativeCurrency": { + "name": "ARTIS tau1 Ether", + "symbol": "tATS", + "decimals": 18 + }, + "rpc": [ + "https://rpc.tau1.artis.network" + ], + "faucets": [ + + ], + "infoURL": "https://artis.network" + }, + { + "name": "Huobi ECO Chain Testnet", + "chainId": 256, + "shortName": "hecot", + "chain": "Heco", + "network": "testnet", + "networkId": 256, + "nativeCurrency": { + "name": "Huobi ECO Chain Test Native Token", + "symbol": "htt", + "decimals": 18 + }, + "rpc": [ + "https://http-testnet.hecochain.com", + "wss://ws-testnet.hecochain.com" + ], + "faucets": [ + "https://scan-testnet.hecochain.com/faucet" + ], + "infoURL": "https://www.hecochain.com" + }, + { + "name": "High Performance Blockchain", + "chainId": 269, + "shortName": "hpb", + "chain": "HPB", + "network": "mainnet", + "networkId": 100, + "nativeCurrency": { + "name": "High Performance Blockchain Ether", + "symbol": "HPB", + "decimals": 18 + }, + "rpc": [ + "https://node.hpb.blue" + ], + "faucets": [ + + ], + "infoURL": "https://hpb.io" + }, + { + "name": "Auxilium Network Mainnet", + "chainId": 28945486, + "shortName": "auxi", + "chain": "AUX", + "network": "mainnet", + "networkId": 28945486, + "nativeCurrency": { + "name": "Auxilium coin", + "symbol": "AUX", + "decimals": 18 + }, + "rpc": [ + "https://rpc.auxilium.global" + ], + "faucets": [ + + ], + "infoURL": "https://auxilium.global" + }, + { + "name": "RSK Mainnet", + "chainId": 30, + "shortName": "rsk", + "chain": "RSK", + "network": "mainnet", + "networkId": 30, + "nativeCurrency": { + "name": "RSK Mainnet Ether", + "symbol": "RBTC", + "decimals": 18 + }, + "rpc": [ + "https://public-node.rsk.co", + "https://mycrypto.rsk.co" + ], + "faucets": [ + + ], + "infoURL": "https://rsk.co" + }, + { + "name": "RSK Testnet", + "chainId": 31, + "shortName": "trsk", + "chain": "RSK", + "network": "testnet", + "networkId": 31, + "nativeCurrency": { + "name": "RSK Testnet Ether", + "symbol": "tRBTC", + "decimals": 18 + }, + "rpc": [ + "https://public-node.testnet.rsk.co", + "https://mycrypto.testnet.rsk.co" + ], + "faucets": [ + "https://faucet.testnet.rsk.co" + ], + "infoURL": "https://rsk.co" + }, + { + "name": "Ethersocial Network", + "chainId": 31102, + "shortName": "esn", + "chain": "ESN", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Ethersocial Network Ether", + "symbol": "ESN", + "decimals": 18 + }, + "rpc": [ + "https://api.esn.gonspool.com" + ], + "faucets": [ + + ], + "infoURL": "https://ethersocial.org" + }, + { + "name": "Pirl", + "chainId": 3125659152, + "shortName": "pirl", + "chain": "PIRL", + "network": "mainnet", + "networkId": 3125659152, + "nativeCurrency": { + "name": "Pirl Ether", + "symbol": "PIRL", + "decimals": 18 + }, + "rpc": [ + "https://wallrpc.pirl.io" + ], + "faucets": [ + + ], + "infoURL": "https://pirl.io" + }, + { + "name": "GoodData Mainnet", + "chainId": 33, + "shortName": "GooD", + "chain": "GooD", + "network": "mainnet", + "networkId": 33, + "nativeCurrency": { + "name": "GoodData Mainnet Ether", + "symbol": "GooD", + "decimals": 18 + }, + "rpc": [ + "https://rpc.goodata.io" + ], + "faucets": [ + + ], + "infoURL": "https://www.goodata.org" + }, + { + "name": "TBWG Chain", + "chainId": 35, + "shortName": "tbwg", + "chain": "TBWG", + "network": "mainnet", + "networkId": 35, + "nativeCurrency": { + "name": "TBWG Ether", + "symbol": "TBG", + "decimals": 18 + }, + "rpc": [ + "https://rpc.tbwg.io" + ], + "faucets": [ + + ], + "infoURL": "https://tbwg.io" + }, + { + "name": "Joys Digital Mainnet", + "chainId": 35855456, + "shortName": "JOYS", + "chain": "JOYS", + "network": "mainnet", + "networkId": 35855456, + "nativeCurrency": { + "name": "JOYS", + "symbol": "JOYS", + "decimals": 18 + }, + "rpc": [ + "https://node.joys.digital" + ], + "faucets": [ + + ], + "infoURL": "https://joys.digital" + }, + { + "name": "Valorbit", + "chainId": 38, + "shortName": "val", + "chain": "VAL", + "network": "mainnet", + "networkId": 38, + "nativeCurrency": { + "name": "Valorbit", + "symbol": "VAL", + "decimals": 18 + }, + "rpc": [ + "https://rpc.valorbit.com/v2" + ], + "faucets": [ + + ], + "infoURL": "https://valorbit.com" + }, + { + "name": "Lisinski", + "chainId": 385, + "shortName": "lisinski", + "chain": "CRO", + "network": "mainnet", + "networkId": 385, + "nativeCurrency": { + "name": "Lisinski Ether", + "symbol": "LISINSKI", + "decimals": 18 + }, + "rpc": [ + "https://rpc-bitfalls1.lisinski.online" + ], + "faucets": [ + "https://pipa.lisinski.online" + ], + "infoURL": "https://lisinski.online" + }, + { + "name": "Energi Mainnet", + "chainId": 39797, + "shortName": "nrg", + "chain": "NRG", + "network": "mainnet", + "networkId": 39797, + "nativeCurrency": { + "name": "Energi", + "symbol": "NRG", + "decimals": 18 + }, + "rpc": [ + "https://nodeapi.gen3.energi.network" + ], + "faucets": [ + + ], + "infoURL": "https://www.energi.world/" + }, + { + "name": "Telos EVM Mainnet", + "chainId": 40, + "shortName": "Telos EVM", + "chain": "TLOS", + "network": "mainnet", + "networkId": 40, + "nativeCurrency": { + "name": "Telos", + "symbol": "TLOS", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.telos.net/evm" + ], + "faucets": [ + + ], + "infoURL": "https://telos.net" + }, + { + "name": "Telos EVM Testnet", + "chainId": 41, + "shortName": "Telos EVM Testnet", + "chain": "TLOS", + "network": "testnet", + "networkId": 41, + "nativeCurrency": { + "name": "Telos", + "symbol": "TLOS", + "decimals": 18 + }, + "rpc": [ + "https://testnet.telos.net/evm" + ], + "faucets": [ + "https://app.telos.net/testnet/developers" + ], + "infoURL": "https://telos.net" + }, + { + "name": "Optimistic Ethereum Testnet Goerli", + "chainId": 420, + "shortName": "ogor", + "chain": "ETH", + "network": "goerli", + "networkId": 420, + "nativeCurrency": { + "name": "Görli Ether", + "symbol": "GOR", + "decimals": 18 + }, + "rpc": [ + "https://goerli.optimism.io/" + ], + "faucets": [ + + ], + "infoURL": "https://optimism.io" + }, + { + "name": "pegglecoin", + "chainId": 42069, + "shortName": "PC", + "chain": "42069", + "network": "mainnet", + "networkId": 42069, + "nativeCurrency": { + "name": "pegglecoin", + "symbol": "peggle", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://teampeggle.com" + }, + { + "name": "Celo Mainnet", + "chainId": 42220, + "shortName": "CELO", + "chain": "CELO", + "network": "Mainnet", + "networkId": 42220, + "nativeCurrency": { + "name": "CELO", + "symbol": "CELO", + "decimals": 18 + }, + "rpc": [ + "https://forno.celo.org", + "wss://forno.celo.org/ws" + ], + "faucets": [ + + ], + "infoURL": "https://docs.celo.org/" + }, + { + "name": "Darwinia Pangolin Testnet", + "chainId": 43, + "shortName": "darwinia", + "chain": "pangolin", + "network": "free testnet", + "networkId": 43, + "nativeCurrency": { + "name": "Pangolin RING", + "symbol": "PRING", + "decimals": 9 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://darwinia.network/" + }, + { + "name": "Athereum", + "chainId": 43110, + "shortName": "avaeth", + "chain": "ATH", + "network": "athereum", + "networkId": 43110, + "nativeCurrency": { + "name": "Athereum Ether", + "symbol": "ATH", + "decimals": 18 + }, + "rpc": [ + "https://ava.network:21015/ext/evm/rpc" + ], + "faucets": [ + "http://athfaucet.ava.network//?address=${ADDRESS}" + ], + "infoURL": "https://athereum.ava.network" + }, + { + "name": "Avalanche Fuji Testnet", + "chainId": 43113, + "shortName": "Fuji", + "chain": "AVAX", + "network": "testnet", + "networkId": 1, + "nativeCurrency": { + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 + }, + "rpc": [ + "https://api.avax-test.network/ext/bc/C/rpc" + ], + "faucets": [ + "https://faucet.avax-test.network/" + ], + "infoURL": "https://cchain.explorer.avax-test.network" + }, + { + "name": "Celo Alfajores Testnet", + "chainId": 44787, + "shortName": "ALFA", + "chain": "CELO", + "network": "Alfajores", + "networkId": 44787, + "nativeCurrency": { + "name": "CELO", + "symbol": "CELO", + "decimals": 18 + }, + "rpc": [ + "https://alfajores-forno.celo-testnet.org", + "wss://alfajores-forno.celo-testnet.org/ws" + ], + "faucets": [ + "https://celo.org/developers/faucet", + "https://cauldron.pretoriaresearchlab.io/alfajores-faucet" + ], + "infoURL": "https://docs.celo.org/" + }, + { + "name": "Energi Testnet", + "chainId": 49797, + "shortName": "tnrg", + "chain": "NRG", + "network": "testnet", + "networkId": 49797, + "nativeCurrency": { + "name": "Energi", + "symbol": "tNRG", + "decimals": 18 + }, + "rpc": [ + "https://nodeapi.test3.energi.network" + ], + "faucets": [ + + ], + "infoURL": "https://www.energi.world/" + }, + { + "name": "Rupaya", + "chainId": 499, + "shortName": "rupx", + "chain": "RUPX", + "network": "mainnet", + "networkId": 499, + "nativeCurrency": { + "name": "Rupaya", + "symbol": "RUPX", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://www.rupx.io" + }, + { + "name": "XinFin Network Mainnet", + "chainId": 50, + "shortName": "xdc", + "chain": "XDC", + "network": "mainnet", + "networkId": 50, + "nativeCurrency": { + "name": "XinFin", + "symbol": "XDC", + "decimals": 18 + }, + "rpc": [ + "https://rpc.xinfin.network" + ], + "faucets": [ + + ], + "infoURL": "https://xinfin.org" + }, + { + "name": "XinFin Apothem Testnet", + "chainId": 51, + "shortName": "TXDC", + "chain": "TXDC", + "network": "testnet", + "networkId": 51, + "nativeCurrency": { + "name": "XinFinTest", + "symbol": "TXDC", + "decimals": 18 + }, + "rpc": [ + "https://rpc.apothem.network" + ], + "faucets": [ + + ], + "infoURL": "https://xinfin.org" + }, + { + "name": "CoinEx Smart Chain Mainnet", + "chainId": 52, + "shortName": "cet", + "chain": "CSC", + "network": "mainnet", + "networkId": 52, + "nativeCurrency": { + "name": "CoinEx Chain Native Token", + "symbol": "cet", + "decimals": 18 + }, + "rpc": [ + "https://rpc-mainnet.coinex.net" + ], + "faucets": [ + + ], + "infoURL": "http://www.coinex.org/" + }, + { + "name": "CoinEx Smart Chain Testnet", + "chainId": 53, + "shortName": "tcet", + "chain": "CSC", + "network": "testnet", + "networkId": 53, + "nativeCurrency": { + "name": "CoinEx Chain Test Native Token", + "symbol": "cett", + "decimals": 18 + }, + "rpc": [ + "https://rpc-testnet.coinex.net" + ], + "faucets": [ + + ], + "infoURL": "http://www.coinex.org/" + }, + { + "name": "Tao Network", + "chainId": 558, + "shortName": "tao", + "chain": "TAO", + "network": "core", + "networkId": 558, + "nativeCurrency": { + "name": "Tao", + "symbol": "TAO", + "decimals": 18 + }, + "rpc": [ + "https://rpc.testnet.tao.network", + "http://rpc.testnet.tao.network:8545", + "https://rpc.tao.network", + "wss://rpc.tao.network" + ], + "faucets": [ + + ], + "infoURL": "https://tao.network" + }, + { + "name": "Binance Smart Chain Mainnet", + "chainId": 56, + "shortName": "bnb", + "chain": "BSC", + "network": "mainnet", + "networkId": 56, + "nativeCurrency": { + "name": "Binance Chain Native Token", + "symbol": "BNB", + "decimals": 18 + }, + "rpc": [ + "https://bsc-dataseed1.binance.org", + "https://bsc-dataseed2.binance.org", + "https://bsc-dataseed3.binance.org", + "https://bsc-dataseed4.binance.org", + "https://bsc-dataseed1.defibit.io", + "https://bsc-dataseed2.defibit.io", + "https://bsc-dataseed3.defibit.io", + "https://bsc-dataseed4.defibit.io", + "https://bsc-dataseed1.ninicoin.io", + "https://bsc-dataseed2.ninicoin.io", + "https://bsc-dataseed3.ninicoin.io", + "https://bsc-dataseed4.ninicoin.io", + "wss://bsc-ws-node.nariox.org" + ], + "faucets": [ + + ], + "infoURL": "https://www.binance.org" + }, + { + "name": "Wegochain Rubidium Mainnet", + "chainId": 5869, + "shortName": "rbd", + "chain": "RBD", + "network": "mainnet", + "networkId": 5869, + "nativeCurrency": { + "name": "Rubid", + "symbol": "RBD", + "decimals": 18 + }, + "rpc": [ + "https://proxy.wegochain.io", + "http://wallet.wegochain.io:7764" + ], + "faucets": [ + + ], + "infoURL": "http://wegochain.io" + }, + { + "name": "Acala Mandala Testnet", + "chainId": 595, + "shortName": "maca", + "chain": "mACA", + "network": "testnet", + "networkId": 595, + "nativeCurrency": { + "name": "Acala Mandala Token", + "symbol": "mACA", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://acala.network" + }, + { + "name": "Ethereum Classic Testnet Kotti", + "chainId": 6, + "shortName": "kot", + "chain": "ETC", + "network": "kotti", + "networkId": 6, + "nativeCurrency": { + "name": "Kotti Ether", + "symbol": "KOT", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://explorer.jade.builders/?network=kotti" + }, + { + "name": "GoChain", + "chainId": 60, + "shortName": "go", + "chain": "GO", + "network": "mainnet", + "networkId": 60, + "nativeCurrency": { + "name": "GoChain Ether", + "symbol": "GO", + "decimals": 18 + }, + "rpc": [ + "https://rpc.gochain.io" + ], + "faucets": [ + + ], + "infoURL": "https://gochain.io" + }, + { + "name": "Aquachain", + "chainId": 61717561, + "shortName": "aqua", + "chain": "AQUA", + "network": "mainnet", + "networkId": 61717561, + "nativeCurrency": { + "name": "Aquachain Ether", + "symbol": "AQUA", + "decimals": 18 + }, + "rpc": [ + "https://c.onical.org", + "https://tx.aquacha.in/api" + ], + "faucets": [ + "https://aquacha.in/faucet" + ], + "infoURL": "https://aquachain.github.io" + }, + { + "name": "Ethereum Classic Testnet Morden", + "chainId": 62, + "shortName": "tetc", + "chain": "ETC", + "network": "testnet", + "networkId": 2, + "nativeCurrency": { + "name": "Ethereum Classic Testnet Ether", + "symbol": "TETC", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://ethereumclassic.org" + }, + { + "name": "Celo Baklava Testnet", + "chainId": 62320, + "shortName": "BKLV", + "chain": "CELO", + "network": "Baklava", + "networkId": 62320, + "nativeCurrency": { + "name": "CELO", + "symbol": "CELO", + "decimals": 18 + }, + "rpc": [ + "https://baklava-forno.celo-testnet.org" + ], + "faucets": [ + "https://docs.google.com/forms/d/e/1FAIpQLSdfr1BwUTYepVmmvfVUDRCwALejZ-TUva2YujNpvrEmPAX2pg/viewform", + "https://cauldron.pretoriaresearchlab.io/baklava-faucet" + ], + "infoURL": "https://docs.celo.org/" + }, + { + "name": "Ethereum Classic Testnet Mordor", + "chainId": 63, + "shortName": "metc", + "chain": "ETC", + "network": "testnet", + "networkId": 7, + "nativeCurrency": { + "name": "Mordor Classic Testnet Ether", + "symbol": "METC", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://github.com/eth-classic/mordor/" + }, + { + "name": "Ellaism", + "chainId": 64, + "shortName": "ella", + "chain": "ELLA", + "network": "mainnet", + "networkId": 64, + "nativeCurrency": { + "name": "Ellaism Ether", + "symbol": "ELLA", + "decimals": 18 + }, + "rpc": [ + "https://jsonrpc.ellaism.org" + ], + "faucets": [ + + ], + "infoURL": "https://ellaism.org" + }, + { + "name": "OKExChain Testnet", + "chainId": 65, + "shortName": "tokt", + "chain": "okexchain", + "network": "testnet", + "networkId": 65, + "nativeCurrency": { + "name": "OKExChain Global Utility Token in testnet", + "symbol": "OKT", + "decimals": 18 + }, + "rpc": [ + "https://exchaintestrpc.okex.org" + ], + "faucets": [ + "https://www.okex.com/drawdex" + ], + "infoURL": "https://www.okex.com/okexchain", + "app_resource": { + "ic_home_logo": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_home_bg.png", + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_chain_select.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_chain_unselect.png", + "ic_all_whitelist_logo": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_whitelist_logo.png", + "color_chain_bg": "0x1E2D5D", + "color_chain_text": "0xFFFFFF" + } + }, + { + "name": "OKExChain Mainnet", + "chainId": 66, + "shortName": "okt", + "chain": "okexchain", + "network": "mainnet", + "networkId": 66, + "nativeCurrency": { + "name": "OKExChain Global Utility Token", + "symbol": "OKT", + "decimals": 18 + }, + "rpc": [ + "https://exchain.okexcn.com" + ], + "faucets": [ + + ], + "infoURL": "https://www.okex.com/okexchain" + }, + { + "name": "DBChain Testnet", + "chainId": 67, + "shortName": "dbm", + "chain": "DBM", + "network": "testnet", + "networkId": 67, + "nativeCurrency": { + "name": "DBChain Testnet", + "symbol": "DBM", + "decimals": 18 + }, + "rpc": [ + "http://test-rpc.dbmbp.com" + ], + "faucets": [ + + ], + "infoURL": "http://test.dbmbp.com" + }, + { + "name": "SoterOne Mainnet", + "chainId": 68, + "shortName": "SO1", + "chain": "SOTER", + "network": "mainnet", + "networkId": 68, + "nativeCurrency": { + "name": "SoterOne Mainnet Ether", + "symbol": "SOTER", + "decimals": 18 + }, + "rpc": [ + "https://rpc.soter.one" + ], + "faucets": [ + + ], + "infoURL": "https://www.soterone.com" + }, + { + "name": "Karura Network", + "chainId": 686, + "shortName": "kar", + "chain": "KAR", + "network": "mainnet", + "networkId": 686, + "nativeCurrency": { + "name": "Karura Token", + "symbol": "KAR", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://karura.network" + }, + { + "name": "Optimistic Ethereum Testnet Kovan", + "chainId": 69, + "shortName": "okov", + "chain": "ETH", + "network": "kovan", + "networkId": 69, + "nativeCurrency": { + "name": "Kovan Ether", + "symbol": "KOR", + "decimals": 18 + }, + "rpc": [ + "https://kovan.optimism.io/" + ], + "faucets": [ + + ], + "infoURL": "https://optimism.io" + }, + { + "name": "ThaiChain", + "chainId": 7, + "shortName": "tch", + "chain": "TCH", + "network": "mainnet", + "networkId": 7, + "nativeCurrency": { + "name": "ThaiChain Ether", + "symbol": "TCH", + "decimals": 18 + }, + "rpc": [ + "https://rpc.dome.cloud" + ], + "faucets": [ + + ], + "infoURL": "https://thaichain.io" + }, + { + "name": "Energy Web Volta Testnet", + "chainId": 73799, + "shortName": "vt", + "chain": "Volta", + "network": "testnet", + "networkId": 73799, + "nativeCurrency": { + "name": "Volta Token", + "symbol": "VT", + "decimals": 18 + }, + "rpc": [ + "https://volta-rpc.energyweb.org", + "wss://volta-rpc.energyweb.org/ws" + ], + "faucets": [ + "https://voltafaucet.energyweb.org" + ], + "infoURL": "https://energyweb.org" + }, + { + "name": "Mix", + "chainId": 76, + "shortName": "mix", + "chain": "MIX", + "network": "mainnet", + "networkId": 76, + "nativeCurrency": { + "name": "Mix Ether", + "symbol": "MIX", + "decimals": 18 + }, + "rpc": [ + "https://rpc2.mix-blockchain.org:8647" + ], + "faucets": [ + + ], + "infoURL": "https://mix-blockchain.org" + }, + { + "name": "POA Network Sokol", + "chainId": 77, + "shortName": "poa", + "chain": "POA", + "network": "sokol", + "networkId": 77, + "nativeCurrency": { + "name": "POA Sokol Ether", + "symbol": "POA", + "decimals": 18 + }, + "rpc": [ + "https://sokol.poa.network", + "wss://sokol.poa.network/wss", + "ws://sokol.poa.network:8546" + ], + "faucets": [ + "https://faucet-sokol.herokuapp.com" + ], + "infoURL": "https://poa.network" + }, + { + "name": "Musicoin", + "chainId": 7762959, + "shortName": "music", + "chain": "MUSIC", + "network": "mainnet", + "networkId": 7762959, + "nativeCurrency": { + "name": "Musicoin", + "symbol": "MUSIC", + "decimals": 18 + }, + "rpc": [ + "https://mewapi.musicoin.tw" + ], + "faucets": [ + + ], + "infoURL": "https://musicoin.tw" + }, + { + "name": "Ethermint Testnet", + "chainId": 777, + "shortName": "emint", + "chain": "ETHERMINT", + "network": "testnet", + "networkId": 777, + "nativeCurrency": { + "name": "Photon", + "symbol": "Photon", + "decimals": 18 + }, + "rpc": [ + "http://54.210.246.165:8545" + ], + "faucets": [ + + ], + "infoURL": "https://docs.ethermint.zone" + }, + { + "name": "PrimusChain mainnet", + "chainId": 78, + "shortName": "primuschain", + "chain": "PC", + "network": "mainnet", + "networkId": 78, + "nativeCurrency": { + "name": "Primus Ether", + "symbol": "PETH", + "decimals": 18 + }, + "rpc": [ + "https://ethnode.primusmoney.com/mainnet" + ], + "faucets": [ + + ], + "infoURL": "https://primusmoney.com" + }, + { + "name": "Firenze test network", + "chainId": 78110, + "shortName": "firenze", + "chain": "ETH", + "network": "testnet", + "networkId": 78110, + "nativeCurrency": { + "name": "Firenze Ether", + "symbol": "FIN", + "decimals": 18 + }, + "rpc": [ + "https://ethnode.primusmoney.com/firenze" + ], + "faucets": [ + + ], + "infoURL": "https://primusmoney.com" + }, + { + "name": "Acala Network", + "chainId": 787, + "shortName": "aca", + "chain": "ACA", + "network": "mainnet", + "networkId": 787, + "nativeCurrency": { + "name": "Acala Token", + "symbol": "ACA", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://acala.network" + }, + { + "name": "GateChain Mainnet", + "chainId": 86, + "shortName": "gt", + "chain": "GT", + "network": "mainnet", + "networkId": 86, + "nativeCurrency": { + "name": "GateToken", + "symbol": "GT", + "decimals": 18 + }, + "rpc": [ + "https://evm.gatenode.cc", + "https://evm-cn1.gatenode.cc:6061" + ], + "faucets": [ + "https://www.gatescan.org/faucet" + ], + "infoURL": "https://www.gatechain.io" + }, + { + "name": "Ubiq Network Mainnet", + "chainId": 8, + "shortName": "ubq", + "chain": "UBQ", + "network": "mainnet", + "networkId": 88, + "nativeCurrency": { + "name": "Ubiq Ether", + "symbol": "UBQ", + "decimals": 18 + }, + "rpc": [ + "https://rpc.octano.dev", + "https://pyrus2.ubiqscan.io" + ], + "faucets": [ + + ], + "infoURL": "https://ubiqsmart.com" + }, + { + "name": "Matic Testnet Mumbai", + "chainId": 80001, + "shortName": "maticmum", + "chain": "Matic", + "network": "testnet", + "networkId": 80001, + "nativeCurrency": { + "name": "Matic", + "symbol": "tMATIC", + "decimals": 18 + }, + "rpc": [ + "https://rpc-mumbai.matic.today", + "wss://ws-mumbai.matic.today" + ], + "faucets": [ + "https://faucet.matic.network/" + ], + "infoURL": "https://matic.network/" + }, + { + "name": "Meter Mainnet", + "chainId": 82, + "shortName": "Meter", + "chain": "METER", + "network": "mainnet", + "networkId": 82, + "nativeCurrency": { + "name": "Meter", + "symbol": "MTR", + "decimals": 18 + }, + "rpc": [ + "https://rpc.meter.io" + ], + "faucets": [ + + ], + "infoURL": "https://www.meter.io" + }, + { + "name": "Callisto Mainnet", + "chainId": 820, + "shortName": "clo", + "chain": "CLO", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Callisto Mainnet Ether", + "symbol": "CLO", + "decimals": 18 + }, + "rpc": [ + "https://clo-geth.0xinfra.com" + ], + "faucets": [ + + ], + "infoURL": "https://callisto.network" + }, + { + "name": "Callisto Testnet", + "chainId": 821, + "shortName": "tclo", + "chain": "CLO", + "network": "testnet", + "networkId": 2, + "nativeCurrency": { + "name": "Callisto Testnet Ether", + "symbol": "TCLO", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://callisto.network" + }, + { + "name": "Klaytn Mainnet Cypress", + "chainId": 8217, + "shortName": "Cypress", + "chain": "KLAY", + "network": "cypress", + "networkId": 8217, + "nativeCurrency": { + "name": "KLAY", + "symbol": "KLAY", + "decimals": 18 + }, + "rpc": [ + "https://node-api.klaytnapi.com/v1/klaytn" + ], + "faucets": [ + + ], + "infoURL": "https://www.klaytn.com/" + }, + { + "name": "TomoChain", + "chainId": 88, + "shortName": "tomo", + "chain": "TOMO", + "network": "mainnet", + "networkId": 88, + "nativeCurrency": { + "name": "TomoChain Ether", + "symbol": "TOMO", + "decimals": 18 + }, + "rpc": [ + "https://rpc.tomochain.com" + ], + "faucets": [ + + ], + "infoURL": "https://tomocoin.io" + }, + { + "name": "Wanchain", + "chainId": 888, + "shortName": "wan", + "chain": "WAN", + "network": "mainnet", + "networkId": 888, + "nativeCurrency": { + "name": "Wancoin", + "symbol": "WAN", + "decimals": 18 + }, + "rpc": [ + "https://gwan-ssl.wandevs.org:56891/" + ], + "faucets": [ + + ], + "infoURL": "https://www.wanscan.org" + }, + { + "name": "bloxberg", + "chainId": 8995, + "shortName": "berg", + "chain": "bloxberg", + "network": "mainnet", + "networkId": 8995, + "nativeCurrency": { + "name": "BERG", + "symbol": "U+25B3", + "decimals": 18 + }, + "rpc": [ + "https://core.bloxberg.org" + ], + "faucets": [ + "https://faucet.bloxberg.org/" + ], + "infoURL": "https://bloxberg.org" + }, + { + "name": "Ubiq Network Testnet", + "chainId": 9, + "shortName": "tubq", + "chain": "UBQ", + "network": "mainnet", + "networkId": 2, + "nativeCurrency": { + "name": "Ubiq Testnet Ether", + "symbol": "TUBQ", + "decimals": 18 + }, + "rpc": [ + + ], + "faucets": [ + + ], + "infoURL": "https://ethersocial.org" + }, + { + "name": "Binance Smart Chain Testnet", + "chainId": 97, + "shortName": "bnbt", + "chain": "BSC", + "network": "Chapel", + "networkId": 97, + "nativeCurrency": { + "name": "Binance Chain Native Token", + "symbol": "tBNB", + "decimals": 18 + }, + "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" + ], + "infoURL": "https://testnet.binance.org/" + }, + { + "name": "Nepal Blockchain Network", + "chainId": 977, + "shortName": "yeti", + "chain": "YETI", + "network": "mainnet", + "networkId": 977, + "nativeCurrency": { + "name": "Nepal Blockchain Network Ether", + "symbol": "YETI", + "decimals": 18 + }, + "rpc": [ + "https://api.nepalblockchain.dev", + "https://api.nepalblockchain.network" + ], + "faucets": [ + "https://faucet.nepalblockchain.network" + ], + "infoURL": "https://nepalblockchain.network" + }, + { + "name": "POA Network Core", + "chainId": 99, + "shortName": "skl", + "chain": "POA", + "network": "core", + "networkId": 99, + "nativeCurrency": { + "name": "POA Network Core Ether", + "symbol": "SKL", + "decimals": 18 + }, + "rpc": [ + "https://core.poanetwork.dev", + "http://core.poanetwork.dev:8545", + "https://core.poa.network", + "ws://core.poanetwork.dev:8546" + ], + "faucets": [ + + ], + "infoURL": "https://poa.network" + }, + { + "name": "Joys Digital TestNet", + "chainId": 99415706, + "shortName": "TOYS", + "chain": "TOYS", + "network": "testnet", + "networkId": 99415706, + "nativeCurrency": { + "name": "TOYS", + "symbol": "TOYS", + "decimals": 18 + }, + "rpc": [ + "https://toys.joys.cash/" + ], + "faucets": [ + "https://faucet.joys.digital/" + ], + "infoURL": "https://joys.digital" + }, + { + "name": "Wanchain Testnet", + "chainId": 999, + "shortName": "twan", + "chain": "WAN", + "network": "testnet", + "networkId": 999, + "nativeCurrency": { + "name": "Wancoin", + "symbol": "WAN", + "decimals": 18 + }, + "rpc": [ + "https://gwan-ssl.wandevs.org:46891/" + ], + "faucets": [ + + ], + "infoURL": "https://testnet.wanscan.org" + }, + { + "name": "HPB Mainnet", + "chainId": 269, + "shortName": "HPB", + "chain": "HPB", + "network": "mainnet", + "networkId": 100, + "nativeCurrency": { + "name": "HPB", + "symbol": "HPB", + "decimals": 18 + }, + "rpc": [ + "https://hpbnode.com" + ], + "faucets": [ + + ], + "infoURL": "https://hpb.io" + }, + { + "name": "KCC Mainnet", + "chainId": 321, + "shortName": "kcc", + "chain": "KCC", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "KuCoin Token", + "symbol": "KCS", + "decimals": 18 + }, + "rpc": [ + "https://rpc-mainnet.kcc.network", + "wss://rpc-ws-mainnet.kcc.network" + ], + "faucets": [ + + ], + "infoURL": "https://kcc.io", + "app_resource": { + "ic_chain_select": "https://z3.ax1x.com/2021/08/30/hJ4vEq.png", + "ic_chain_unselect": "https://z3.ax1x.com/2021/08/30/hJ4vEq.png", + "color_chain_bg": "0xF0FFFF" + } + }, + { + "name": "HALO Mainnet", + "chainId": 1280, + "shortName": "HO", + "chain": "HALO", + "network": "mainnet", + "networkId": 1280, + "nativeCurrency": { + "name": "HALO", + "symbol": "HO", + "decimals": 18 + }, + "rpc": [ + "https://nodes.halo.land" + ], + "faucets": [ + + ], + "infoURL": "https://halo.land/#/", + "app_resource": { + "ic_chain_select": "https://tp-statics.tokenpocket.pro/token/tokenpocket-1632371652515.png", + "ic_chain_unselect": "https://tp-statics.tokenpocket.pro/token/tokenpocket-1632371627579.png", + "color_chain_bg": "0xB1232C" + } + }, + { + "name": "smartBCH Mainnet", + "chainId": 10000, + "shortName": "smartBCH", + "chain": "smartBCH", + "network": "mainnet", + "networkId": 10000, + "nativeCurrency": { + "name": "Bitcoin Cash", + "symbol": "BCH", + "decimals": 18 + }, + "rpc": [ + "https://smartbch.greyh.at", + "https://rpc-mainnet.smartbch.org", + "https://smartbch.fountainhead.cash/mainnet", + "https://smartbch.devops.cash/mainnet" + ], + "faucets": [ + + ], + "infoURL": "https://smartbch.org/", + "app_resource": { + "ic_chain_select": "https://assets.smartbch.org/img/bch_active_88px.png", + "ic_chain_unselect": "https://assets.smartbch.org/img/bch_inactive_88px.png", + "color_chain_bg": "0x4cc947" + } + } +] diff --git a/components/chain/chain.js b/components/chain/chain.js index 71fdbe40e..096198db8 100644 --- a/components/chain/chain.js +++ b/components/chain/chain.js @@ -97,11 +97,12 @@ export default function Chain({ chain }) {
{ - e.target.onerror = null; - e.target.src = "/chains/unknown-logo.png"; - }} + // src='/connectors/icn-asd.svg' + // onError={e => { + // e.target.onerror = null; + // e.target.src = "/chains/unknown-logo.png"; + // }} + src="/NetworkList/chains/unknown-logo.png" width={ 28 } height={ 28 } className={ classes.avatar } diff --git a/components/multichain/multichain.js b/components/multichain/multichain.js index a98e8439d..258e8427e 100644 --- a/components/multichain/multichain.js +++ b/components/multichain/multichain.js @@ -71,7 +71,7 @@ export default function Multichain({ closeMultichain }) {
- + Manage over 120 tokens and multi-chain assets with fully supported cross chain transactions.
- + From bad55a00af7ebd6a263c672e490aa3bbc501037f Mon Sep 17 00:00:00 2001 From: LiYuqing-2020 <37492889+LiYuqing-2020@users.noreply.github.com> Date: Fri, 17 Dec 2021 14:10:30 +0800 Subject: [PATCH 02/15] Update chains.json --- chains.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/chains.json b/chains.json index d344ddc07..9ab9b7977 100644 --- a/chains.json +++ b/chains.json @@ -3115,6 +3115,32 @@ "color_chain_bg": "0xB1232C" } }, + + { + "name": "UN Chain", + "chainId": 1681681688, + "shortName": "un", + "chain": "UN", + "network": "mainnet", + "networkId": 1681681688, + "nativeCurrency": { + "name": "UN", + "symbol": "UN", + "decimals": 18 + }, + "rpc": [ + "http://116.62.244.90:50121", + "ws://116.62.244.90:60121" + ], + "faucets": [], + "infoURL": "http://www.untokencan.com/#/", + "app_resource": { + "ic_chain_select": "https://files.moacchina.info/2021/12/14/e618eec7-4fb0-4210-bbee-6d0cee2c1650_1.png", + "ic_chain_unselect": "https://files.moacchina.info/2021/12/14/ede37514-9792-443b-897f-01d1377256e0_2.png", + "color_chain_bg": "0x58B2AF" + } + }, + { "name": "smartBCH Mainnet", "chainId": 10000, From aa7fd2ed1f10c7ea19725dfcb71391484c6e4464 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=82=BFridge?= <290898163@qq.com> Date: Wed, 5 Jan 2022 21:59:45 +0800 Subject: [PATCH 03/15] Update chains.json add aurora network --- chains.json | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/chains.json b/chains.json index 9ab9b7977..e97f028bf 100644 --- a/chains.json +++ b/chains.json @@ -3140,7 +3140,6 @@ "color_chain_bg": "0x58B2AF" } }, - { "name": "smartBCH Mainnet", "chainId": 10000, @@ -3168,5 +3167,33 @@ "ic_chain_unselect": "https://assets.smartbch.org/img/bch_inactive_88px.png", "color_chain_bg": "0x4cc947" } + }, + { + "name": "Aurora Mainnet", + "chainId": 1313161554, + "shortName": "Aurora", + "chain": "NEAR", + "network": "mainnet", + "networkId": 1313161554, + "nativeCurrency": { + "name": "Ether", + "symbol": "aETH", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.aurora.dev" + ], + "faucets": [ + + ], + "infoURL": "https://aurora.dev", + "app_resource": { + "ic_home_logo": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390444550.png", + "ic_chain_select": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390457950.png", + "ic_chain_unselect": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390467132.png", + "ic_all_whitelist_logo": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390477377.png", + "color_chain_bg": "0x78d64b", + "color_chain_text": "0xFFFFFF" + } } ] From 8fdc030f24c656a3b2bb78c033de64248f5a4cdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=82=BFridge?= <290898163@qq.com> Date: Wed, 5 Jan 2022 22:38:01 +0800 Subject: [PATCH 04/15] Update chains.json delete old near data --- chains.json | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/chains.json b/chains.json index e97f028bf..75a8cd2c9 100644 --- a/chains.json +++ b/chains.json @@ -954,26 +954,6 @@ ], "infoURL": "https://ether1.org" }, - { - "name": "NEAR MainNet", - "chainId": 1313161554, - "shortName": "near", - "chain": "NEAR", - "network": "mainnet", - "networkId": 1313161554, - "nativeCurrency": { - "name": "NEAR", - "symbol": "NEAR", - "decimals": 24 - }, - "rpc": [ - - ], - "faucets": [ - - ], - "infoURL": "https://near.org/" - }, { "name": "NEAR TestNet", "chainId": 1313161555, From 540fb4f432259be729143b0d9be6a5ef227cfa97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Csomeone=E2=80=9D?= <“someemail”> Date: Tue, 18 Jan 2022 13:11:04 +0800 Subject: [PATCH 05/15] add vision network --- chains.json | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/chains.json b/chains.json index 75a8cd2c9..4dbedb9aa 100644 --- a/chains.json +++ b/chains.json @@ -3175,5 +3175,55 @@ "color_chain_bg": "0x78d64b", "color_chain_text": "0xFFFFFF" } + }, + { + "name": "Vision Mainnet", + "chainId": 888888, + "shortName": "Vision", + "chain": "Vision - Mainnet", + "network": "mainnet", + "networkId": 888888, + "nativeCurrency": { + "name": "VS", + "symbol": "VS", + "decimals": 6 + }, + "rpc": [ + "https://infragrid.v.network/ethereum/compatible" + ], + "faucets": [ + + ], + "infoURL": "https://visionscan.org", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/vision/select-88px.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/vision/unselect-88px.png", + "color_chain_bg": "0x000000" + } + }, + { + "name": "Vision - Vpioneer Testnet", + "chainId": 666666, + "shortName": "Vpioneer", + "chain": "Vision - Vpioneer", + "network": "Vpioneer", + "networkId": 666666, + "nativeCurrency": { + "name": "VS", + "symbol": "VS", + "decimals": 6 + }, + "rpc": [ + "https://vpioneer.infragrid.v.network/ethereum/compatible" + ], + "faucets": [ + "https://vpioneerfaucet.visionscan.org" + ], + "infoURL": "https://visionscan.org", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/vision/select-88px.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/vision/unselect-88px.png", + "color_chain_bg": "0x000000" + } } ] From 6c926b94ac8e74bc511fee304ee30e4e387733a9 Mon Sep 17 00:00:00 2001 From: vchain007 <75559334+vchain007@users.noreply.github.com> Date: Wed, 26 Jan 2022 14:21:05 +0800 Subject: [PATCH 06/15] Update chains.json --- chains.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/chains.json b/chains.json index 4dbedb9aa..8b3c35a96 100644 --- a/chains.json +++ b/chains.json @@ -3196,8 +3196,8 @@ ], "infoURL": "https://visionscan.org", "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/vision/select-88px.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/vision/unselect-88px.png", + "ic_chain_select": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/d23f7961d62743aa8b3926d3917c232e12a188eadc0b4dffa4b7ba4e4dcb4059.png", + "ic_chain_unselect": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/798239fa73f24eb2977e17e0b0d0a6e8ee8826007995420aa93a213ab06695c0.png", "color_chain_bg": "0x000000" } }, @@ -3221,8 +3221,8 @@ ], "infoURL": "https://visionscan.org", "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/vision/select-88px.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/vision/unselect-88px.png", + "ic_chain_select": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/d23f7961d62743aa8b3926d3917c232e12a188eadc0b4dffa4b7ba4e4dcb4059.png", + "ic_chain_unselect": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/798239fa73f24eb2977e17e0b0d0a6e8ee8826007995420aa93a213ab06695c0.png", "color_chain_bg": "0x000000" } } From d8d59d843157b865aed3cba9e867f0df5fd32d5c Mon Sep 17 00:00:00 2001 From: vchain007 <75559334+vchain007@users.noreply.github.com> Date: Fri, 11 Feb 2022 15:52:43 +0800 Subject: [PATCH 07/15] Update chains.json decimals 6 --> 18 native vs decimal is 6 ,but ethereum compatible interface already adapt --- chains.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chains.json b/chains.json index 8b3c35a96..d65a0e5e2 100644 --- a/chains.json +++ b/chains.json @@ -3186,7 +3186,7 @@ "nativeCurrency": { "name": "VS", "symbol": "VS", - "decimals": 6 + "decimals": 18 }, "rpc": [ "https://infragrid.v.network/ethereum/compatible" @@ -3211,7 +3211,7 @@ "nativeCurrency": { "name": "VS", "symbol": "VS", - "decimals": 6 + "decimals": 18 }, "rpc": [ "https://vpioneer.infragrid.v.network/ethereum/compatible" From 0d5a200c51b7a3f918a89549b0ad6ba1cd1d53c7 Mon Sep 17 00:00:00 2001 From: yuop2002cn <53635917+yuop2002cn@users.noreply.github.com> Date: Sun, 13 Feb 2022 19:25:50 +0800 Subject: [PATCH 08/15] Add SAT L2 network --- chains.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/chains.json b/chains.json index 8b3c35a96..a523ec61a 100644 --- a/chains.json +++ b/chains.json @@ -3225,5 +3225,28 @@ "ic_chain_unselect": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/798239fa73f24eb2977e17e0b0d0a6e8ee8826007995420aa93a213ab06695c0.png", "color_chain_bg": "0x000000" } + }, + { + "name": "SAT L2 Chain", + "chainId": 123778899, + "shortName": "SL2", + "chain": "SL2", + "network": "testnet", + "networkId": 123778899, + "nativeCurrency": { + "name": "SL2", + "symbol": "SL2", + "decimals": 18 + }, + "rpc": [ + "http://123.58.210.13:8546", + ], + "faucets": [], + "infoURL": "", + "app_resource": { + "ic_chain_select": "http://106.75.144.161/icon/Smartx_H.png", + "ic_chain_unselect": "http://106.75.144.161/icon/Smartx_U.png", + "color_chain_bg": "0x8250df" + } } ] From 31cd603142043d46a901deaa7b81143225cf6ff0 Mon Sep 17 00:00:00 2001 From: chendatony31 <31647753@qq.com> Date: Tue, 22 Feb 2022 20:57:43 +0800 Subject: [PATCH 09/15] rename Goerli --- chains.json | 587 ++++++++++++++-------------------------------------- 1 file changed, 152 insertions(+), 435 deletions(-) diff --git a/chains.json b/chains.json index 8b3c35a96..7562e7e3e 100644 --- a/chains.json +++ b/chains.json @@ -17,9 +17,7 @@ "https://api.mycryptoapi.com/eth", "https://cloudflare-eth.com" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://ethereum.org" }, { @@ -37,9 +35,7 @@ "rpc": [ "https://mainnet.optimism.io/" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://optimism.io", "app_resource": { "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/1.png", @@ -68,9 +64,7 @@ "https://dai.poa.network", "ws://xdai.poanetwork.dev:8546" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://forum.poa.network/c/xdai-chain", "app_resource": { "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", @@ -97,9 +91,7 @@ "wss://dataseed2.btachain.com/wss", "ws://dataseed1.btachain.com:8861" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://btachain.com", "app_resource": { "ic_chain_select": "https://btachain.com/images/favicon/logo.png", @@ -122,9 +114,7 @@ "rpc": [ "https://arb1.arbitrum.io/rpc" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://arbitrum.io/" }, { @@ -168,9 +158,7 @@ "https://rpc-mainnet.matic.network", "wss://ws-mainnet.matic.network" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://matic.network/", "app_resource": { "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Polygon/1.png", @@ -193,9 +181,7 @@ "rpc": [ "https://api.avax.network/ext/bc/C/rpc" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://cchain.explorer.avax.network/", "app_resource": { "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Avalanche/1.png", @@ -218,9 +204,7 @@ "rpc": [ "https://rpc.fuse.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://fuse.io/", "app_resource": { "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/1.png", @@ -244,9 +228,7 @@ "https://rpcapi.fantom.network", "https://fantomscan.io/rpc" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://fantom.foundation", "app_resource": { "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fantom/1.png", @@ -270,9 +252,7 @@ "https://cronos-rpc.elk.finance", "https://cronosrpc-1.xstaking.sg" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://cronos.crypto.org/explorer" }, { @@ -290,9 +270,7 @@ "rpc": [ "https://mainnet.anyswap.exchange" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://fsnex.com/", "app_resource": { "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/1.png", @@ -365,9 +343,7 @@ "rpc": [ "https://www.ethercluster.com/etc" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://ethereumclassic.org", "app_resource": { "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/1.png", @@ -390,9 +366,7 @@ "rpc": [ "https://vm.mvs.org/mainnet/381e0fe4-e67d-4714-9c8c-69c7bd960e54" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "" }, { @@ -410,9 +384,7 @@ "rpc": [ "https://send.catechain.com" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://catechain.com" }, { @@ -483,7 +455,7 @@ "infoURL": "https://www.rinkeby.io" }, { - "name": "Ethereum Testnet Görli", + "name": "Ethereum Testnet Goerli", "chainId": 5, "shortName": "gor", "chain": "ETH", @@ -540,9 +512,7 @@ "rpc": [ "https://kovan5.arbitrum.io/rpc" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "" }, { @@ -560,9 +530,7 @@ "rpc": [ "https://zsc.one/rpc" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "" }, { @@ -580,9 +548,7 @@ "rpc": [ "https://rpc1.newchain.newtonproject.org" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.newtonproject.org/" }, { @@ -600,9 +566,7 @@ "rpc": [ "https://api.einc.io/jsonrpc/mainnet" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://einc.io" }, { @@ -620,9 +584,7 @@ "rpc": [ "https://meta.evrice.com" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://evrice.com" }, { @@ -640,9 +602,7 @@ "rpc": [ "https://global.rpc.mainnet.newtonproject.org" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.newtonproject.org/" }, { @@ -660,9 +620,7 @@ "rpc": [ "https://substrate.org.cn" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://web3games.org/", "app_resource": { "ic_chain_select": "https://web3games-public.oss-ap-northeast-1.aliyuncs.com/web3games-token-pocket-02.png", @@ -682,12 +640,8 @@ "symbol": "CLV", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://clover.finance" }, { @@ -702,12 +656,8 @@ "symbol": "CLV", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://clover.finance" }, { @@ -725,9 +675,7 @@ "rpc": [ "https://api.metadium.com/prod" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://metadium.com" }, { @@ -746,9 +694,7 @@ "https://rpc.iposlab.com", "https://rpc2.iposlab.com" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://iposlab.com" }, { @@ -763,12 +709,8 @@ "symbol": "MATH", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://mathwallet.org" }, { @@ -783,12 +725,8 @@ "symbol": "MATH", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://mathwallet.org/" }, { @@ -806,9 +744,7 @@ "rpc": [ "https://api.metadium.com/dev" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://metadium.com" }, { @@ -827,9 +763,7 @@ "https://http-mainnet.hecochain.com", "wss://ws-mainnet.hecochain.com" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.hecochain.com" }, { @@ -844,12 +778,8 @@ "symbol": "GLMR", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://moonbeam.network/networks/moonbeam/" }, { @@ -867,9 +797,7 @@ "rpc": [ "https://rpc.moonriver.moonbeam.network" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://moonbeam.network/networks/moonriver/" }, { @@ -884,12 +812,8 @@ "symbol": "ROC", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "" }, { @@ -908,9 +832,7 @@ "https://rpc.testnet.moonbeam.network", "wss://wss.testnet.moonbeam.network" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://docs.moonbeam.network/networks/testnet/" }, { @@ -929,9 +851,7 @@ "https://staging.diode.io:8443/", "wss://staging.diode.io:8443/ws" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://diode.io/staging" }, { @@ -949,9 +869,7 @@ "rpc": [ "https://rpc.ether1.org" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://ether1.org" }, { @@ -966,9 +884,7 @@ "symbol": "tNEAR", "decimals": 24 }, - "rpc": [ - - ], + "rpc": [], "faucets": [ "https://wallet.testnet.near.org" ], @@ -986,12 +902,8 @@ "symbol": "bNEAR", "decimals": 24 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://near.org/" }, { @@ -1009,9 +921,7 @@ "rpc": [ "https://rpc.xerom.org" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://xerom.org" }, { @@ -1029,9 +939,7 @@ "rpc": [ "https://churchill-rpc.pepchain.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://pepchain.io" }, { @@ -1046,12 +954,8 @@ "symbol": "FLR", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://flare.xyz" }, { @@ -1070,9 +974,7 @@ "https://prenet.diode.io:8443/", "wss://prenet.diode.io:8443/ws" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://diode.io/prenet" }, { @@ -1087,12 +989,8 @@ "symbol": "CFLR", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://github.com/flare-eng/coston" }, { @@ -1130,9 +1028,7 @@ "rpc": [ "https://wallet.atheios.com:8797" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://atheios.com" }, { @@ -1150,9 +1046,7 @@ "rpc": [ "https://node.mainnet.lightstreams.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://explorer.lightstreams.io" }, { @@ -1170,9 +1064,7 @@ "rpc": [ "https://rpc.s0.t.hmny.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.harmony.one/" }, { @@ -1190,9 +1082,7 @@ "rpc": [ "https://rpc.s1.t.hmny.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.harmony.one/" }, { @@ -1210,9 +1100,7 @@ "rpc": [ "https://rpc.s2.t.hmny.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.harmony.one/" }, { @@ -1230,9 +1118,7 @@ "rpc": [ "https://rpc.s3.t.hmny.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.harmony.one/" }, { @@ -1250,9 +1136,7 @@ "rpc": [ "https://rpc.thaifi.com" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://exp.thaifi.com" }, { @@ -1290,9 +1174,7 @@ "rpc": [ "https://net.iolite.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://iolite.io" }, { @@ -1310,9 +1192,7 @@ "rpc": [ "https://tsfapi.europool.me" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://teslafunds.io" }, { @@ -1330,9 +1210,7 @@ "rpc": [ "https://jsonrpc.egem.io/custom" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://egem.io" }, { @@ -1350,9 +1228,7 @@ "rpc": [ "https://node.expanse.tech" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://expanse.tech" }, { @@ -1370,9 +1246,7 @@ "rpc": [ "https://mainrpc.elaeth.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.elastos.org/" }, { @@ -1390,9 +1264,7 @@ "rpc": [ "https://remote.akroma.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://akroma.io" }, { @@ -1407,12 +1279,8 @@ "symbol": "420", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://420integrated.com" }, { @@ -1430,9 +1298,7 @@ "rpc": [ "https://mainnet1.edgewa.re" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "http://edgewa.re" }, { @@ -1450,9 +1316,7 @@ "rpc": [ "https://beresheet1.edgewa.re" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "http://edgewa.re" }, { @@ -1511,9 +1375,7 @@ "rpc": [ "https://node1.webchain.network" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://webchain.network" }, { @@ -1532,9 +1394,7 @@ "https://rpc.energyweb.org", "wss://rpc.energyweb.org/ws" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://energyweb.org" }, { @@ -1552,9 +1412,7 @@ "rpc": [ "https://rpc.sigma1.artis.network" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://artis.eco" }, { @@ -1572,9 +1430,7 @@ "rpc": [ "https://rpc.tau1.artis.network" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://artis.network" }, { @@ -1613,9 +1469,7 @@ "rpc": [ "https://node.hpb.blue" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://hpb.io" }, { @@ -1633,9 +1487,7 @@ "rpc": [ "https://rpc.auxilium.global" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://auxilium.global" }, { @@ -1654,9 +1506,7 @@ "https://public-node.rsk.co", "https://mycrypto.rsk.co" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://rsk.co" }, { @@ -1695,9 +1545,7 @@ "rpc": [ "https://api.esn.gonspool.com" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://ethersocial.org" }, { @@ -1715,9 +1563,7 @@ "rpc": [ "https://wallrpc.pirl.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://pirl.io" }, { @@ -1735,9 +1581,7 @@ "rpc": [ "https://rpc.goodata.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.goodata.org" }, { @@ -1755,9 +1599,7 @@ "rpc": [ "https://rpc.tbwg.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://tbwg.io" }, { @@ -1775,9 +1617,7 @@ "rpc": [ "https://node.joys.digital" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://joys.digital" }, { @@ -1795,9 +1635,7 @@ "rpc": [ "https://rpc.valorbit.com/v2" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://valorbit.com" }, { @@ -1835,9 +1673,7 @@ "rpc": [ "https://nodeapi.gen3.energi.network" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.energi.world/" }, { @@ -1855,9 +1691,7 @@ "rpc": [ "https://mainnet.telos.net/evm" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://telos.net" }, { @@ -1895,9 +1729,7 @@ "rpc": [ "https://goerli.optimism.io/" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://optimism.io" }, { @@ -1912,12 +1744,8 @@ "symbol": "peggle", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://teampeggle.com" }, { @@ -1936,9 +1764,7 @@ "https://forno.celo.org", "wss://forno.celo.org/ws" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://docs.celo.org/" }, { @@ -1953,12 +1779,8 @@ "symbol": "PRING", "decimals": 9 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://darwinia.network/" }, { @@ -2038,9 +1860,7 @@ "rpc": [ "https://nodeapi.test3.energi.network" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.energi.world/" }, { @@ -2055,12 +1875,8 @@ "symbol": "RUPX", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://www.rupx.io" }, { @@ -2078,9 +1894,7 @@ "rpc": [ "https://rpc.xinfin.network" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://xinfin.org" }, { @@ -2098,9 +1912,7 @@ "rpc": [ "https://rpc.apothem.network" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://xinfin.org" }, { @@ -2118,9 +1930,7 @@ "rpc": [ "https://rpc-mainnet.coinex.net" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "http://www.coinex.org/" }, { @@ -2138,9 +1948,7 @@ "rpc": [ "https://rpc-testnet.coinex.net" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "http://www.coinex.org/" }, { @@ -2161,9 +1969,7 @@ "https://rpc.tao.network", "wss://rpc.tao.network" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://tao.network" }, { @@ -2193,9 +1999,7 @@ "https://bsc-dataseed4.ninicoin.io", "wss://bsc-ws-node.nariox.org" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.binance.org" }, { @@ -2214,9 +2018,7 @@ "https://proxy.wegochain.io", "http://wallet.wegochain.io:7764" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "http://wegochain.io" }, { @@ -2231,12 +2033,8 @@ "symbol": "mACA", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://acala.network" }, { @@ -2251,12 +2049,8 @@ "symbol": "KOT", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://explorer.jade.builders/?network=kotti" }, { @@ -2274,9 +2068,7 @@ "rpc": [ "https://rpc.gochain.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://gochain.io" }, { @@ -2312,12 +2104,8 @@ "symbol": "TETC", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://ethereumclassic.org" }, { @@ -2353,12 +2141,8 @@ "symbol": "METC", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://github.com/eth-classic/mordor/" }, { @@ -2376,9 +2160,7 @@ "rpc": [ "https://jsonrpc.ellaism.org" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://ellaism.org" }, { @@ -2424,9 +2206,7 @@ "rpc": [ "https://exchain.okexcn.com" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.okex.com/okexchain" }, { @@ -2444,9 +2224,7 @@ "rpc": [ "http://test-rpc.dbmbp.com" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "http://test.dbmbp.com" }, { @@ -2464,9 +2242,7 @@ "rpc": [ "https://rpc.soter.one" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.soterone.com" }, { @@ -2481,12 +2257,8 @@ "symbol": "KAR", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://karura.network" }, { @@ -2504,9 +2276,7 @@ "rpc": [ "https://kovan.optimism.io/" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://optimism.io" }, { @@ -2524,9 +2294,7 @@ "rpc": [ "https://rpc.dome.cloud" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://thaichain.io" }, { @@ -2565,9 +2333,7 @@ "rpc": [ "https://rpc2.mix-blockchain.org:8647" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://mix-blockchain.org" }, { @@ -2607,9 +2373,7 @@ "rpc": [ "https://mewapi.musicoin.tw" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://musicoin.tw" }, { @@ -2627,9 +2391,7 @@ "rpc": [ "http://54.210.246.165:8545" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://docs.ethermint.zone" }, { @@ -2647,9 +2409,7 @@ "rpc": [ "https://ethnode.primusmoney.com/mainnet" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://primusmoney.com" }, { @@ -2667,9 +2427,7 @@ "rpc": [ "https://ethnode.primusmoney.com/firenze" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://primusmoney.com" }, { @@ -2684,12 +2442,8 @@ "symbol": "ACA", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://acala.network" }, { @@ -2729,9 +2483,7 @@ "https://rpc.octano.dev", "https://pyrus2.ubiqscan.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://ubiqsmart.com" }, { @@ -2770,9 +2522,7 @@ "rpc": [ "https://rpc.meter.io" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.meter.io" }, { @@ -2790,9 +2540,7 @@ "rpc": [ "https://clo-geth.0xinfra.com" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://callisto.network" }, { @@ -2807,12 +2555,8 @@ "symbol": "TCLO", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://callisto.network" }, { @@ -2830,9 +2574,7 @@ "rpc": [ "https://node-api.klaytnapi.com/v1/klaytn" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.klaytn.com/" }, { @@ -2850,9 +2592,7 @@ "rpc": [ "https://rpc.tomochain.com" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://tomocoin.io" }, { @@ -2870,9 +2610,7 @@ "rpc": [ "https://gwan-ssl.wandevs.org:56891/" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://www.wanscan.org" }, { @@ -2907,12 +2645,8 @@ "symbol": "TUBQ", "decimals": 18 }, - "rpc": [ - - ], - "faucets": [ - - ], + "rpc": [], + "faucets": [], "infoURL": "https://ethersocial.org" }, { @@ -2979,9 +2713,7 @@ "https://core.poa.network", "ws://core.poanetwork.dev:8546" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://poa.network" }, { @@ -3019,9 +2751,7 @@ "rpc": [ "https://gwan-ssl.wandevs.org:46891/" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://testnet.wanscan.org" }, { @@ -3039,9 +2769,7 @@ "rpc": [ "https://hpbnode.com" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://hpb.io" }, { @@ -3060,9 +2788,7 @@ "https://rpc-mainnet.kcc.network", "wss://rpc-ws-mainnet.kcc.network" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://kcc.io", "app_resource": { "ic_chain_select": "https://z3.ax1x.com/2021/08/30/hJ4vEq.png", @@ -3085,9 +2811,7 @@ "rpc": [ "https://nodes.halo.land" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://halo.land/#/", "app_resource": { "ic_chain_select": "https://tp-statics.tokenpocket.pro/token/tokenpocket-1632371652515.png", @@ -3095,7 +2819,6 @@ "color_chain_bg": "0xB1232C" } }, - { "name": "UN Chain", "chainId": 1681681688, @@ -3104,22 +2827,22 @@ "network": "mainnet", "networkId": 1681681688, "nativeCurrency": { - "name": "UN", - "symbol": "UN", - "decimals": 18 + "name": "UN", + "symbol": "UN", + "decimals": 18 }, "rpc": [ - "http://116.62.244.90:50121", - "ws://116.62.244.90:60121" + "http://116.62.244.90:50121", + "ws://116.62.244.90:60121" ], "faucets": [], "infoURL": "http://www.untokencan.com/#/", "app_resource": { - "ic_chain_select": "https://files.moacchina.info/2021/12/14/e618eec7-4fb0-4210-bbee-6d0cee2c1650_1.png", - "ic_chain_unselect": "https://files.moacchina.info/2021/12/14/ede37514-9792-443b-897f-01d1377256e0_2.png", - "color_chain_bg": "0x58B2AF" + "ic_chain_select": "https://files.moacchina.info/2021/12/14/e618eec7-4fb0-4210-bbee-6d0cee2c1650_1.png", + "ic_chain_unselect": "https://files.moacchina.info/2021/12/14/ede37514-9792-443b-897f-01d1377256e0_2.png", + "color_chain_bg": "0x58B2AF" } - }, + }, { "name": "smartBCH Mainnet", "chainId": 10000, @@ -3138,9 +2861,7 @@ "https://smartbch.fountainhead.cash/mainnet", "https://smartbch.devops.cash/mainnet" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://smartbch.org/", "app_resource": { "ic_chain_select": "https://assets.smartbch.org/img/bch_active_88px.png", @@ -3163,9 +2884,7 @@ "rpc": [ "https://mainnet.aurora.dev" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://aurora.dev", "app_resource": { "ic_home_logo": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390444550.png", @@ -3191,9 +2910,7 @@ "rpc": [ "https://infragrid.v.network/ethereum/compatible" ], - "faucets": [ - - ], + "faucets": [], "infoURL": "https://visionscan.org", "app_resource": { "ic_chain_select": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/d23f7961d62743aa8b3926d3917c232e12a188eadc0b4dffa4b7ba4e4dcb4059.png", @@ -3226,4 +2943,4 @@ "color_chain_bg": "0x000000" } } -] +] \ No newline at end of file From cc250daaa4f735140be2a39f59f9126a78a4bb0c Mon Sep 17 00:00:00 2001 From: chendatony31 <31647753@qq.com> Date: Tue, 22 Feb 2022 21:50:59 +0800 Subject: [PATCH 10/15] format --- chains.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/chains.json b/chains.json index ddc16c563..26d0d31e2 100644 --- a/chains.json +++ b/chains.json @@ -2951,19 +2951,19 @@ "network": "testnet", "networkId": 123778899, "nativeCurrency": { - "name": "SL2", - "symbol": "SL2", - "decimals": 18 + "name": "SL2", + "symbol": "SL2", + "decimals": 18 }, "rpc": [ - "http://123.58.210.13:8546", + "http://123.58.210.13:8546", ], "faucets": [], "infoURL": "", "app_resource": { - "ic_chain_select": "http://106.75.144.161/icon/Smartx_H.png", - "ic_chain_unselect": "http://106.75.144.161/icon/Smartx_U.png", - "color_chain_bg": "0x8250df" + "ic_chain_select": "http://106.75.144.161/icon/Smartx_H.png", + "ic_chain_unselect": "http://106.75.144.161/icon/Smartx_U.png", + "color_chain_bg": "0x8250df" } } ] \ No newline at end of file From ce502cafcf105867d54058111dcab399897ee293 Mon Sep 17 00:00:00 2001 From: chendatony31 <31647753@qq.com> Date: Thu, 3 Mar 2022 21:06:53 +0800 Subject: [PATCH 11/15] add evmos --- chains.json | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 67 insertions(+), 1 deletion(-) diff --git a/chains.json b/chains.json index 26d0d31e2..a5464dcee 100644 --- a/chains.json +++ b/chains.json @@ -2956,7 +2956,7 @@ "decimals": 18 }, "rpc": [ - "http://123.58.210.13:8546", + "http://123.58.210.13:8546" ], "faucets": [], "infoURL": "", @@ -2965,5 +2965,71 @@ "ic_chain_unselect": "http://106.75.144.161/icon/Smartx_U.png", "color_chain_bg": "0x8250df" } + }, + { + "name": "Evmos Testnet", + "chain": "Evmos", + "rpc": [ + "https://evmos-archive-testnet.api.bdnodes.net:8545" + ], + "faucets": [ + "https://faucet.evmos.dev" + ], + "nativeCurrency": { + "name": "test-Evmos", + "symbol": "tEVMOS", + "decimals": 18 + }, + "infoURL": "https://evmos.org", + "shortName": "evmos-testnet", + "chainId": 9000, + "networkId": 9000, + "icon": "evmos", + "explorers": [ + { + "name": "Evmos EVM Explorer (Blockscout)", + "url": "https://evm.evmos.dev", + "standard": "none", + "icon": "evmos" + }, + { + "name": "Evmos Cosmos Explorer", + "url": "https://explorer.evmos.dev", + "standard": "none", + "icon": "evmos" + } + ] + }, + { + "name": "Evmos", + "chain": "Evmos", + "rpc": [ + "https://eth.bd.evmos.org:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Evmos", + "symbol": "EVMOS", + "decimals": 18 + }, + "infoURL": "https://evmos.org", + "shortName": "evmos", + "chainId": 9001, + "networkId": 9001, + "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", + "standard": "none", + "icon": "evmos" + } + ] } ] \ No newline at end of file From 5b46e32a4543862ddef37dd3e87ac083e2d24f36 Mon Sep 17 00:00:00 2001 From: guijunchen <877020907@qq.com> Date: Fri, 4 Mar 2022 17:47:40 +0800 Subject: [PATCH 12/15] tp extension explain --- README.md | 92 +++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 82 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2688d4b94..188c51fd5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,30 @@ +## Introduction + +[TokenPocket](https://www.tokenpocket.pro) is the world’s leading multi-chain self-custodial wallet, which supports mainstream public chains including BTC, ETH, BSC, Polygon, Solana, HECO, Klaytn, Avalanche, Tron, OEC, HSC, Fantom, Polkadot, Kusama, EOS, etc. The private key is stored in the user’s own device and never uploaded to the server, so the user can fully control crypto assets. TokenPocket has provided reliable services for over 10 million users around the world. The number of monthly active users exceeds 5 million and the users are located in more than 200 countries around the world. + +TokenPocket钱包现已支持通过配置即可完成添加支持**EVM,Polkadot,EOSIO**技术系链。**EVM,Polkadot,EOSIO**技术系项目方如果希望TokenPocket钱包集成其链项目。首先按照本文档描述提供必要的网络信息和接口,然后等待TokenPocket官方人员评估和审核完成, 即可在TokenPocket钱包快速集成项目方的链。更多详细信息请参考[TokenPocket开发者文档](https://help.tokenpocket.pro/tp-developer/network/chains/addchain-multifunction)。 + +TokenPocket Chainlist is a list of EVM(ethereum)/Polkadot/EOSIO networks. Users can use the information to connect their wallets and Web3 middleware providers to the appropriate Chain ID and Network ID to connect to the correct chain. + ## How to add a new chain -Fork this repo and add your evm chain info into `chains.json` +Fork this repo and add your evm/polkadot/eosio chain info into `chains.json` + +| Field | Describe | Remark | +| -------------- | --------------- | ------------------------------------------------------------ | +| name | name | full name of chain | +| chainId | chain id | chain id exists in ethereum evm networks | +| namespace | namespace | TokenPocket Wallet Extension, available value ethereum/polkadot/eosio | +| shortName | short name | short name of chain | +| network | network | | +| networkId | network id | | +| nativeCurrency | native currency | | +| rpc | rpc | | +| faucets | faucets | | +| infoURL | info URL | | +| appResource | app resource | TokenPocket Wallet Extension | + +**chainId & networkId:** Ethereum networks have two identifiers, a network ID and a chain ID. Although they often have the same value, they have different uses.Peer-to-peer communication between nodes uses the *network ID*, while the transaction signature process uses the *chain ID*. Example: @@ -8,6 +32,7 @@ Example: { "name": "xDAI Chain", "chainId": 100, + "namespace": "ethereum", "shortName": "xdai", "chain": "XDAI", "network": "mainnet", @@ -28,20 +53,67 @@ Example: ], "faucets": [], "infoURL": "https://forum.poa.network/c/xdai-chain", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png", - "color_chain_bg": "0x58B2AF" + "appResource": { + "icChainSelect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", + "icChainUnselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png", + "colorChainBg": "0x58B2AF", + "txUrl":" https://xxxchaintxserver.xxx.xxx", + "browserInfo": [{ + "name": "Xscan", + "icon": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", + "addr": "https://xxx1scan.io/" + },{ + "name": "xDAIscan", + "icon": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", + "addr": "https://xxx2can.io/" + }] } } ``` -`app_resource` is optional, which is only affect the appearance in TokenPocket Wallet. You can follow the standard below: -![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-1.png) -![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-2.png) -![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-3.png) -![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-4.png) +### appResource + +`appResource` is optional, which is only affect the appearance in TokenPocket Wallet. You can follow the standard below: + +![image-01](https://tp-statics.tokenpocket.pro/images/chain-element/01.png) + + + +#### icon & color + + icChainSelect, icChainUnselect, colorChainBg 配置用来控制链在TokenPocket钱包选中、没有选中该链时候显示使用的图标和该链账户背景颜色。如下图所示: + +![image-02](https://tp-statics.tokenpocket.pro/images/chain-element/02.png) + +icon大小规格如下图所示: + +![image-03](https://tp-statics.tokenpocket.pro/images/chain-element/03.png) + +colorChainBg是该链账号背景颜色,颜色不能太亮以免影响内容文字的显示效果,如下图所示: + +![image-04](https://tp-statics.tokenpocket.pro/images/chain-element/04.png) + + + +#### namespace & txUrl + +TokenPocket钱包现已支持提交配置即可完成添加支持**EVM,Polkadot,EOSIO**技术系链。项目方链提供如果是**EVM,Polkadot,EOSIO**技术系链, 同时希望提交链在TokenPocket钱包能够显示交易记录,则提交需要namespace和txUrl配置项。namespace是说明链所属技术体系,txUrl是交易记录提供服务的地址,关于txUrl交易记录服务更多详细信息请参考[TokenPocket开发者文档](https://help.tokenpocket.pro/tp-developer/network/chains/addchain-multifunction)。支持交易记录链钱包中显示效果如下图所示: + +![image-05](https://tp-statics.tokenpocket.pro/images/chain-element/05.png) + + + +##### browserInfo + +browserInfo主要用于在TokenPocket钱包显示和跳转到官方浏览器。浏览器在TokenPocket钱包中其中一个用途,如下入图所示: + +![image-06](https://tp-statics.tokenpocket.pro/images/chain-element/06.png) + + + +## more + ![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-5.png) From 2758566b635d1a637ba4a20a232ba4614bb0328e Mon Sep 17 00:00:00 2001 From: guijunchen <877020907@qq.com> Date: Thu, 21 Apr 2022 22:02:35 +0800 Subject: [PATCH 13/15] modify readme --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.md b/README.md index 188c51fd5..ae3173fbd 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,31 @@ TokenPocket钱包现已支持通过配置即可完成添加支持**EVM,Polkadot, TokenPocket Chainlist is a list of EVM(ethereum)/Polkadot/EOSIO networks. Users can use the information to connect their wallets and Web3 middleware providers to the appropriate Chain ID and Network ID to connect to the correct chain. +TokenPocket钱包开发团队一直致力于给社区提供更多具有潜力链给广大开发者和钱包用户,致力于提供更加友好方式支持新链,致力于提供完全去中心化钱包给用户,致力于赋能和携手具有潜力项目方共同推进web3发展。 + +​ 为了支持不同项目方新链发展,为了钱包用户使用上不同项目方新链。我们不留余力深入了解项目方新链技术特点、稳定性、可用性和安全性,深入了解钱包用户对web3世界不断繁荣新的创新项目的需求。我们以更加负责任和专业能力保证用户利用TokenPocket钱包连接web3世界去探索新的项目同时保证用户钱包资产安全。在TokenPocket钱添加区块链需要满足以下条件: + +- 区块链必须已经在主网上线,并且至少已经稳定运行3~6个月。 +- 链上热门代币和应用数量必须50+。 +- 区块链具有完整公开官方使用文档、开发者文档和开发者工具。 +- 项目必须提供API/JSON-RPC访问节点获取余额等、提供区块链浏览器。 +- 原生代币可在交易所进行交易。 +- 项目方开发者必须保证项目不断更新和发展。 +- 在链集成到TokenPocket后,如果该链使用上遇到意外、紧急问题,能够提供及时技术支持,以保证TokenPocket钱包用户权益不受损失。 +- 根据所需支持程度,捐赠TPT。 + +| | 简单支持 | 完整支持 | +| ------------ | -------------------------------------- | ------------------------------------------------------------ | +| 捐赠数量 | 2,000,000 TPT | 6,000,000TPT | +| 支持公链种类 | EVM,Polkadot,EOSIO技术系链 | EVM,Polkadot,EOSIO技术系链 | +| 支持程度 | 自定义网络、公链列表处默认显示该链logo | 在已支持链列表显示原生币和非原生币、Token价格、热门Token选择列表、交易记录和交易详情、独立的Dapp入口等信息 | + +**注意:**TokenPocket基金会收款地址为 **0x7837AE9E4FD6E967F1B8C8824D6288ECE6e730F9** (仅支持收取BSC、HECO以及ETH链上的TPT,请转账前再三确认! ) + + 在收到项目方提交申请后,我们会第一时间深入交流、了解和评估区块链项目信息。 + + + ## How to add a new chain Fork this repo and add your evm/polkadot/eosio chain info into `chains.json` From 269047b154da734ceec70a0760347e77ca2f9aee Mon Sep 17 00:00:00 2001 From: guijunchen <877020907@qq.com> Date: Sun, 24 Apr 2022 16:16:27 +0800 Subject: [PATCH 14/15] add readme explain --- README.md | 203 +++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 179 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index ae3173fbd..54d1ce51b 100644 --- a/README.md +++ b/README.md @@ -2,32 +2,39 @@ [TokenPocket](https://www.tokenpocket.pro) is the world’s leading multi-chain self-custodial wallet, which supports mainstream public chains including BTC, ETH, BSC, Polygon, Solana, HECO, Klaytn, Avalanche, Tron, OEC, HSC, Fantom, Polkadot, Kusama, EOS, etc. The private key is stored in the user’s own device and never uploaded to the server, so the user can fully control crypto assets. TokenPocket has provided reliable services for over 10 million users around the world. The number of monthly active users exceeds 5 million and the users are located in more than 200 countries around the world. -TokenPocket钱包现已支持通过配置即可完成添加支持**EVM,Polkadot,EOSIO**技术系链。**EVM,Polkadot,EOSIO**技术系项目方如果希望TokenPocket钱包集成其链项目。首先按照本文档描述提供必要的网络信息和接口,然后等待TokenPocket官方人员评估和审核完成, 即可在TokenPocket钱包快速集成项目方的链。更多详细信息请参考[TokenPocket开发者文档](https://help.tokenpocket.pro/tp-developer/network/chains/addchain-multifunction)。 - TokenPocket Chainlist is a list of EVM(ethereum)/Polkadot/EOSIO networks. Users can use the information to connect their wallets and Web3 middleware providers to the appropriate Chain ID and Network ID to connect to the correct chain. -TokenPocket钱包开发团队一直致力于给社区提供更多具有潜力链给广大开发者和钱包用户,致力于提供更加友好方式支持新链,致力于提供完全去中心化钱包给用户,致力于赋能和携手具有潜力项目方共同推进web3发展。 +TokenPocket wallet now supports adding support for **EVM, Polkadot, EOSIO** technology chains through configuration. **EVM, Polkadot, EOSIO** technology project parties wish to integrate their chain projects with TokenPocket wallet. First, provide the necessary network information and interfaces as described in this document, and then wait for the evaluation and review by TokenPocket official personnel to complete, and then the project party's chain can be quickly integrated into the TokenPocket wallet. For more details, please refer to [TokenPocket developer documentation](https://help.tokenpocket.pro/developer-en/network/add-chain). -​ 为了支持不同项目方新链发展,为了钱包用户使用上不同项目方新链。我们不留余力深入了解项目方新链技术特点、稳定性、可用性和安全性,深入了解钱包用户对web3世界不断繁荣新的创新项目的需求。我们以更加负责任和专业能力保证用户利用TokenPocket钱包连接web3世界去探索新的项目同时保证用户钱包资产安全。在TokenPocket钱添加区块链需要满足以下条件: +The TokenPocket wallet development team has been committed to providing more potential chains for developers and wallet users, delivering a more friendly way to support the new chain, serving a fully decentralized wallet to users, and committed to empowerment and cooperation with potential project parties to jointly promote the development of web3.In order to support the development of new chains of various project parties, and allow wallet users to use new chains of different project parties, we spare no effort to fully understand the technical features, stability, usability and security of the project party's new chain, and appreciate the needs of wallet users for the innovative projects that are constantly prospering in the web3 world. We are more responsible and professional and allow the users to connect to the web3 world to explore new projects while ensuring the security of their wallet assets. -- 区块链必须已经在主网上线,并且至少已经稳定运行3~6个月。 -- 链上热门代币和应用数量必须50+。 -- 区块链具有完整公开官方使用文档、开发者文档和开发者工具。 -- 项目必须提供API/JSON-RPC访问节点获取余额等、提供区块链浏览器。 -- 原生代币可在交易所进行交易。 -- 项目方开发者必须保证项目不断更新和发展。 -- 在链集成到TokenPocket后,如果该链使用上遇到意外、紧急问题,能够提供及时技术支持,以保证TokenPocket钱包用户权益不受损失。 -- 根据所需支持程度,捐赠TPT。 +Adding blockchain to TokenPocket wallet needs to meet the following conditions: -| | 简单支持 | 完整支持 | -| ------------ | -------------------------------------- | ------------------------------------------------------------ | -| 捐赠数量 | 2,000,000 TPT | 6,000,000TPT | -| 支持公链种类 | EVM,Polkadot,EOSIO技术系链 | EVM,Polkadot,EOSIO技术系链 | -| 支持程度 | 自定义网络、公链列表处默认显示该链logo | 在已支持链列表显示原生币和非原生币、Token价格、热门Token选择列表、交易记录和交易详情、独立的Dapp入口等信息 | +- The blockchain must have launched the mainnet and has been running stably for at least 3-6 months. -**注意:**TokenPocket基金会收款地址为 **0x7837AE9E4FD6E967F1B8C8824D6288ECE6e730F9** (仅支持收取BSC、HECO以及ETH链上的TPT,请转账前再三确认! ) +- The number of popular tokens and applications on the chain must be 50+. - 在收到项目方提交申请后,我们会第一时间深入交流、了解和评估区块链项目信息。 +- The blockchain must have complete and public official documentation, developer documentation and developer tools. + +- The project must provide API/JSON-RPC nodes to access balances, etc., and have blockchain browsers. + +- Native tokens can be traded on exchanges. + +- Project developers must ensure that the project is constantly updated and developed. + +- After the chain is integrated into TokenPocket, if there are unexpected or urgent problems in the use of the chain, timely technical support can be provided to ensure that the rights and interests of users of TokenPocket wallet will not be lost. + +- Donate TPT based on the type of support needed. + +| | Simple support | Full support | +| -------------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | +| Donation Amount | 2,000,000 TPT | 6,000,000TPT | +| Type of public chain | EVM, Polkadot, EOSIO technology tether | EVM, Polkadot, EOSIO technology tether | +| Support content | custom network;The chain logo is displayed by default in the public chain list | Display native and non-native coins, Token prices, popular Token selection lists, transaction records and transaction details, independent Dapp entries and other information in the list of supported chains. | + +**Note**: Receiving address is **0x7837AE9E4FD6E967F1B8C8824D6288ECE6e730F9** (Also can scan QR code below to get receiving address). **Only support to receive TPT in BSC, HECO, and Ethereum chain.** Please double confirm your transfer information! + +After receiving the application submitted by the project party, we will communicate, understand and evaluate the blockchain information in depth as soon as possible. @@ -108,15 +115,15 @@ Example: #### icon & color - icChainSelect, icChainUnselect, colorChainBg 配置用来控制链在TokenPocket钱包选中、没有选中该链时候显示使用的图标和该链账户背景颜色。如下图所示: +icChainSelect, icChainUnselect, colorChainBg are configured to control the icon and background color of the chain account displayed when the chain is selected or not selected in the TokenPocket wallet. As shown below: ![image-02](https://tp-statics.tokenpocket.pro/images/chain-element/02.png) -icon大小规格如下图所示: +The icon size specifications are shown in the following figure: ![image-03](https://tp-statics.tokenpocket.pro/images/chain-element/03.png) -colorChainBg是该链账号背景颜色,颜色不能太亮以免影响内容文字的显示效果,如下图所示: +colorChainBg is the background color of the chain account. The color should not be too bright so as not to affect the display effect of the content text, as shown in the following figure: ![image-04](https://tp-statics.tokenpocket.pro/images/chain-element/04.png) @@ -124,7 +131,7 @@ colorChainBg是该链账号背景颜色,颜色不能太亮以免影响内容 #### namespace & txUrl -TokenPocket钱包现已支持提交配置即可完成添加支持**EVM,Polkadot,EOSIO**技术系链。项目方链提供如果是**EVM,Polkadot,EOSIO**技术系链, 同时希望提交链在TokenPocket钱包能够显示交易记录,则提交需要namespace和txUrl配置项。namespace是说明链所属技术体系,txUrl是交易记录提供服务的地址,关于txUrl交易记录服务更多详细信息请参考[TokenPocket开发者文档](https://help.tokenpocket.pro/tp-developer/network/chains/addchain-multifunction)。支持交易记录链钱包中显示效果如下图所示: +TokenPocket wallet now supports submitting configuration to complete adding support for **EVM, Polkadot, EOSIO** technology tethers. If the project party chain provides **EVM, Polkadot, EOSIO** technical tethers, and if you want the submitted chain to display transaction records in the TokenPocket wallet, the namespace and txUrl configuration items are required for submission. namespace is the technical system of the description chain, txUrl is the address of transaction record service, for more details about txUrl transaction record service, please refer to [TokenPocket developer documentation](https://help.tokenpocket.pro/developer-en/network/add-chain/addchain-multifunction). The display effect in the wallet that supports transaction records is shown in the following figure: ![image-05](https://tp-statics.tokenpocket.pro/images/chain-element/05.png) @@ -132,7 +139,7 @@ TokenPocket钱包现已支持提交配置即可完成添加支持**EVM,Polkadot, ##### browserInfo -browserInfo主要用于在TokenPocket钱包显示和跳转到官方浏览器。浏览器在TokenPocket钱包中其中一个用途,如下入图所示: +browserInfo is mainly used to display and jump to the official browser in TokenPocket wallet. One of the uses of the browser in the TokenPocket wallet, as shown in the figure below: ![image-06](https://tp-statics.tokenpocket.pro/images/chain-element/06.png) @@ -142,3 +149,151 @@ browserInfo主要用于在TokenPocket钱包显示和跳转到官方浏览器。 ![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-5.png) + + + + +## 介绍 + +[TokenPocket](https://www.tokenpocket.pro)是全球领先的多链自托管钱包,支持BTC、ETH、BSC、Polygon、Solana、HECO、Klaytn、Avalanche、Tron、OEC、HSC、Fantom、Polkadot、Kusama、EOS等主流公链。 TokenPocket移动钱包、chrome插件钱包、硬件钱包三位一体已经正式形成。私钥和助记词存储在用户自己的设备中,从不上传到服务器,因此用户可以完全控制自己的加密资产。 TokenPocket 已为全球超过 1000 万用户提供可靠的服务。月活跃用户数超过350万,用户遍布全球200多个国家和地区。 + +TokenPocket Chainlist 是 EVM(ethereum)/Polkadot/EOSIO 网络的列表。 用户可以使用他们的钱包和 Web3 中间件利用网络列表中信息连接到适当的链 ID 和网络 ID,以连接到正确的链。 + +TokenPocket钱包现已支持通过配置即可完成添加支持**EVM,Polkadot,EOSIO**技术系链。**EVM,Polkadot,EOSIO**技术系项目方如果希望TokenPocket钱包集成其链项目。首先按照本文档描述提供必要的网络信息和接口,然后等待TokenPocket官方人员评估和审核完成, 即可在TokenPocket钱包快速集成项目方的链。更多详细信息请参考[TokenPocket开发者文档](https://help.tokenpocket.pro/developer-cn/network/add-chain)。 + +TokenPocket钱包开发团队一直致力于给社区提供更多具有潜力链给广大开发者和钱包用户,致力于提供更加友好方式支持新链,致力于提供完全去中心化钱包给用户,致力于赋能和携手具有潜力项目方共同推进web3发展。为了支持不同项目方新链发展,为了钱包用户使用上不同项目方新链。我们不留余力深入了解项目方新链技术特点、稳定性、可用性和安全性,深入了解钱包用户对web3世界不断繁荣新的创新项目的需求。我们以更加负责任和专业能力保证用户利用TokenPocket钱包连接web3世界去探索新的项目同时保证用户钱包资产安全。在TokenPocket钱添加区块链需要满足以下条件: + +- 区块链必须已经在主网上线,并且至少已经稳定运行3~6个月。 +- 链上热门代币和应用数量必须50+。 +- 区块链具有完整公开官方使用文档、开发者文档和开发者工具。 +- 项目必须提供API/JSON-RPC访问节点获取余额等、提供区块链浏览器。 +- 原生代币可在交易所进行交易。 +- 项目方开发者必须保证项目不断更新和发展。 +- 在链集成到TokenPocket后,如果该链使用上遇到意外、紧急问题,能够提供及时技术支持,以保证TokenPocket钱包用户权益不受损失。 +- 根据所需支持程度,捐赠TPT。 + +| | 简单支持 | 完整支持 | +| ------------ | -------------------------------------- | ------------------------------------------------------------ | +| 捐赠数量 | 2,000,000 TPT | 6,000,000TPT | +| 支持公链种类 | EVM,Polkadot,EOSIO技术系链 | EVM,Polkadot,EOSIO技术系链 | +| 支持程度 | 自定义网络、公链列表处默认显示该链logo | 在已支持链列表显示原生币和非原生币、Token价格、热门Token选择列表、交易记录和交易详情、独立的Dapp入口等信息 | + +**注意:**TokenPocket基金会收款地址为 **0x7837AE9E4FD6E967F1B8C8824D6288ECE6e730F9** (仅支持收取BSC、HECO以及ETH链上的TPT,请转账前再三确认! ) + + 在收到项目方提交申请后,我们会第一时间深入交流、了解和评估区块链项目信息。 + + + +## 怎么添加一条新链信息 + +fork 这个 repo(仓库)并将你的 evm/polkadot/eosio 链信息添加到 `chains.json` + +| 域 | 描述 | Remark | +| -------------- | --------- | ---------------------------------------------------------- | +| name | name | 链全称 | +| chainId | chain id | 在Evm技术系链中的链ID | +| namespace | namespace | TokenPocket钱包扩展项,ethereum/polkadot/eosio技术系都需要 | +| shortName | 链简称 | 链简称 | +| network | 网络 | | +| networkId | 网络 id | | +| nativeCurrency | 原生币 | | +| rpc | rpc | | +| faucets | 水龙头 | | +| infoURL | 信息网址 | | +| appResource | 应用资源 | TokenPocket 钱包扩展扩展项 | + +**chainId & networkId:** 以太坊网络有两个标识符,一个网络 ID 和一个链 ID。 虽然它们往往具有相同的值,但它们有不同的用途。节点之间的点对点通信使用*network ID*,而交易签名过程使用*chain ID*。 + +示例: + +```javascript +{ + "name": "xDAI Chain", + "chainId": 100, + "namespace": "ethereum", + "shortName": "xdai", + "chain": "XDAI", + "network": "mainnet", + "networkId": 100, + "nativeCurrency": { + "name": "xDAI", + "symbol": "xDAI", + "decimals": 18 + }, + "rpc": [ + "https://rpc.xdaichain.com", + "https://xdai.poanetwork.dev", + "wss://rpc.xdaichain.com/wss", + "wss://xdai.poanetwork.dev/wss", + "http://xdai.poanetwork.dev", + "https://dai.poa.network", + "ws://xdai.poanetwork.dev:8546" + ], + "faucets": [], + "infoURL": "https://forum.poa.network/c/xdai-chain", + "appResource": { + "icChainSelect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", + "icChainUnselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png", + "colorChainBg": "0x58B2AF", + "txUrl":" https://xxxchaintxserver.xxx.xxx", + "browserInfo": [{ + "name": "Xscan", + "icon": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", + "addr": "https://xxx1scan.io/" + },{ + "name": "xDAIscan", + "icon": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", + "addr": "https://xxx2can.io/" + }] + } +} +``` + + + +### appResource + +`appResource` 是TokenPocket Wallet扩展项。 您可以遵循以下标准: + + + +![image-01](https://tp-statics.tokenpocket.pro/images/chain-element/01.png) + + + +#### 图标 & 颜色 + + icChainSelect, icChainUnselect, colorChainBg 配置用来控制链在TokenPocket钱包选中、没有选中该链时候显示使用的图标和该链账户背景颜色。如下图所示: + +![image-02](https://tp-statics.tokenpocket.pro/images/chain-element/02.png) + +icon大小规格如下图所示: + +![image-03](https://tp-statics.tokenpocket.pro/images/chain-element/03.png) + +colorChainBg是该链账号背景颜色,颜色不能太亮以免影响内容文字的显示效果,如下图所示: + +![image-04](https://tp-statics.tokenpocket.pro/images/chain-element/04.png) + + + +#### 命名空间 & 交易记录Url + +TokenPocket钱包现已支持提交配置即可完成添加支持**EVM,Polkadot,EOSIO**技术系链。项目方链提供如果是**EVM,Polkadot,EOSIO**技术系链, 同时希望提交链在TokenPocket钱包能够显示交易记录,则提交需要namespace和txUrl配置项。namespace是说明链所属技术体系,txUrl是交易记录提供服务的地址,关于txUrl交易记录服务更多详细信息请参考[TokenPocket开发者文档](https://help.tokenpocket.pro/developer-cn/network/add-chain/addchain-multifunction)。支持交易记录链钱包中显示效果如下图所示: + +![image-05](https://tp-statics.tokenpocket.pro/images/chain-element/05.png) + + + +##### 区块链浏览器信息 + +区块链浏览器信息主要用于在TokenPocket钱包显示和跳转到官方浏览器。浏览器在TokenPocket钱包中其中一个用途,如下入图所示: + +![image-06](https://tp-statics.tokenpocket.pro/images/chain-element/06.png) + + + +## 更多 + +![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-5.png) + From 251ae8583481377da54372438850c312ab449db3 Mon Sep 17 00:00:00 2001 From: guijunchen <877020907@qq.com> Date: Sun, 24 Apr 2022 16:29:05 +0800 Subject: [PATCH 15/15] add readme explain --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 54d1ce51b..8394c2696 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,12 @@ Example: "name": "xDAIscan", "icon": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", "addr": "https://xxx2can.io/" - }] + }], + "projectContactInfo": { + "officialWebsite": "https://xxx.network.com", + "phone": "02x-223xxx12", + "email": "xxx.xxx@xxx.com", + } } } ``` @@ -244,7 +249,12 @@ fork 这个 repo(仓库)并将你的 evm/polkadot/eosio 链信息添加到 `chai "name": "xDAIscan", "icon": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", "addr": "https://xxx2can.io/" - }] + }], + "projectContactInfo": { + "officialWebsite": "https://xxx.network.com", + "phone": "02x-223xxx12", + "email": "xxx.xxx@xxx.com", + } } } ```