From 45635a60f90f52415de1433c89a9675595241866 Mon Sep 17 00:00:00 2001 From: jet86 Date: Tue, 2 Nov 2021 00:15:30 +1100 Subject: [PATCH 01/11] Create Boba Network (#528) * Create Boba Network Mainnet * Create Boba Network Rinkeby --- _data/chains/eip155-28.json | 27 +++++++++++++++++++++++++++ _data/chains/eip155-288.json | 27 +++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 _data/chains/eip155-28.json create mode 100644 _data/chains/eip155-288.json diff --git a/_data/chains/eip155-28.json b/_data/chains/eip155-28.json new file mode 100644 index 00000000..e41e93fe --- /dev/null +++ b/_data/chains/eip155-28.json @@ -0,0 +1,27 @@ +{ + "name": "Boba Network Rinkeby Testnet", + "chain": "ETH", + "network": "rinkeby", + "rpc": ["https://rinkeby.boba.network/"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Boba Rinkeby", + "chainId": 28, + "networkId": 28, + + "explorers": [{ + "name": "Blockscout", + "url": "https://blockexplorer.rinkeby.boba.network/", + "standard": "none" + }], + "parent": { + "type" : "L2", + "chain": "eip155-4", + "bridges": [ {"url":"https://gateway.rinkeby.boba.network"} ] + } +} diff --git a/_data/chains/eip155-288.json b/_data/chains/eip155-288.json new file mode 100644 index 00000000..39156bb8 --- /dev/null +++ b/_data/chains/eip155-288.json @@ -0,0 +1,27 @@ +{ + "name": "Boba Network", + "chain": "ETH", + "network": "mainnet", + "rpc": ["https://mainnet.boba.network/"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Boba", + "chainId": 288, + "networkId": 288, + + "explorers": [{ + "name": "Blockscout", + "url": "https://blockexplorer.boba.network/", + "standard": "none" + }], + "parent": { + "type" : "L2", + "chain": "eip155-1", + "bridges": [ {"url":"https://gateway.boba.network"} ] + } +} From 85f31ea9e4efb04ab2af114c8aad1076a9d0a4df Mon Sep 17 00:00:00 2001 From: alliswell <45843736+benbaley@users.noreply.github.com> Date: Tue, 2 Nov 2021 10:13:36 +0800 Subject: [PATCH 02/11] added: Alaya&PlatON testnet (#529) * added: Alaya&PlatON testnet * add faucets * update explorer url" --- _data/chains/eip155-201030.json | 29 +++++++++++++++++++++++++++++ _data/chains/eip155-210309.json | 29 +++++++++++++++++++++++++++++ _data/icons/alaya.json | 8 ++++++++ _data/icons/platon.json | 8 ++++++++ 4 files changed, 74 insertions(+) create mode 100644 _data/chains/eip155-201030.json create mode 100644 _data/chains/eip155-210309.json create mode 100644 _data/icons/alaya.json create mode 100644 _data/icons/platon.json diff --git a/_data/chains/eip155-201030.json b/_data/chains/eip155-201030.json new file mode 100644 index 00000000..9892acc3 --- /dev/null +++ b/_data/chains/eip155-201030.json @@ -0,0 +1,29 @@ +{ + "name": "Alaya Dev Testnet", + "chain": "Alaya", + "network": "testnet", + "rpc": [ + "https://devnetopenapi.alaya.network/rpc", + "wss://devnetopenapi.alaya.network/ws" + ], + "faucets": [ + "https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c" + ], + "nativeCurrency": { + "name": "ATP", + "symbol": "atp", + "decimals": 18 + }, + "infoURL": "https://www.alaya.network/", + "shortName": "alaya", + "chainId": 201030, + "networkId": 1, + "icon": "alaya", + "explorers": [ + { + "name": "alaya explorer", + "url": "https://devnetscan.alaya.network", + "standard": "none" + } + ] +} \ No newline at end of file diff --git a/_data/chains/eip155-210309.json b/_data/chains/eip155-210309.json new file mode 100644 index 00000000..83dfb8fb --- /dev/null +++ b/_data/chains/eip155-210309.json @@ -0,0 +1,29 @@ +{ + "name": "PlatON Dev Testnet", + "chain": "PlatON", + "network": "testnet", + "rpc": [ + "https://devnetopenapi.platon.network/rpc", + "wss://devnetopenapi.platon.network/ws" + ], + "faucets": [ + "https://faucet.platon.network/faucet/?id=e5d32df10aee11ec911142010a667c03" + ], + "nativeCurrency": { + "name": "LAT", + "symbol": "lat", + "decimals": 18 + }, + "infoURL": "https://www.platon.network", + "shortName": "PlatON", + "chainId": 210309, + "networkId": 1, + "icon": "platon", + "explorers": [ + { + "name": "PlatON explorer", + "url": "https://devnetscan.platon.network/", + "standard": "none" + } + ] +} \ No newline at end of file diff --git a/_data/icons/alaya.json b/_data/icons/alaya.json new file mode 100644 index 00000000..d3c953c2 --- /dev/null +++ b/_data/icons/alaya.json @@ -0,0 +1,8 @@ +[ + { + "url":"ipfs://Qmci6vPcWAwmq19j98yuQxjV6UPzHtThMdCAUDbKeb8oYu", + "width":1140, + "height":1140, + "format":"png" + } +] \ No newline at end of file diff --git a/_data/icons/platon.json b/_data/icons/platon.json new file mode 100644 index 00000000..70f478cc --- /dev/null +++ b/_data/icons/platon.json @@ -0,0 +1,8 @@ +[ + { + "url":"ipfs://QmT7PSXBiVBma6E15hNkivmstqLu3JSnG1jXN5pTmcCGRC", + "width":200, + "height":200, + "format":"png" + } +] \ No newline at end of file From 8ebc4e5859f6e1da838da2e6dbda81986d316897 Mon Sep 17 00:00:00 2001 From: SeeleN <54703084+lkbtboy@users.noreply.github.com> Date: Wed, 3 Nov 2021 21:33:14 +0800 Subject: [PATCH 03/11] Create eip155-186.json (#534) Create eip155-186 for seele network --- _data/chains/eip155-186.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 _data/chains/eip155-186.json diff --git a/_data/chains/eip155-186.json b/_data/chains/eip155-186.json new file mode 100644 index 00000000..1957ae72 --- /dev/null +++ b/_data/chains/eip155-186.json @@ -0,0 +1,23 @@ +{ + "name": "Seele Mainnet", + "chain": "Seele", + "network": "mainnet", + "rpc": [ + "https://rpc.seelen.pro/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Seele", + "symbol": "Seele", + "decimals": 18 + }, + "infoURL": "https://seelen.pro/", + "shortName": "Seele", + "chainId": 186, + "networkId": 186, + "explorers": [{ + "name": "seeleview", + "url": "https://seeleview.net/", + "standard": "none" + }] +} From b85fcbf761e9feeb1d5328e1c9b010029c7840e7 Mon Sep 17 00:00:00 2001 From: f4nzkrys31 <87927930+f4nzkrys31@users.noreply.github.com> Date: Wed, 3 Nov 2021 22:49:43 +0800 Subject: [PATCH 04/11] Add HALO Network mainnet (#401) * Add HALO Network mainnet * Add HALO Network Mainnet Hi Thanks. * Add HALO Mainnet * Delete CAIP-2.json * Update eip155-1280.json * Update _data/chains/eip155-1280.json * Update _data/chains/eip155-1280.json * Update eip155-1280.json hi, i had removed the explorer. * Update eip155-1280.json i hope it is correct now * Update eip155-1280.json * Update eip155-1280.json * Update _data/chains/eip155-1280.json * Update _data/chains/eip155-1280.json Co-authored-by: ligi --- _data/chains/eip155-1280.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 _data/chains/eip155-1280.json diff --git a/_data/chains/eip155-1280.json b/_data/chains/eip155-1280.json new file mode 100644 index 00000000..dc6de1aa --- /dev/null +++ b/_data/chains/eip155-1280.json @@ -0,0 +1,24 @@ +{ + "name": "HALO Mainnet", + "chain": "HALO", + "network": "mainnet", + "rpc": [ + "https://https://nodes.halo.land" + ], + "faucets": [ + ], + "nativeCurrency": { + "name": "HALO", + "symbol": "HO", + "decimals": 18 + }, + "infoURL": "https://halo.land/#/", + "shortName": "HO", + "chainId": 1280, + "networkId": 1280, + "explorers": [{ + "name": "HALOexplorer", + "url": "https://browser.halo.land/", + "standard": "none" + }] +} From 7c83beda572e6abef4a0c144207477b8b7d632f2 Mon Sep 17 00:00:00 2001 From: shibachain <93488903+shibachain@users.noreply.github.com> Date: Mon, 8 Nov 2021 00:24:11 +0700 Subject: [PATCH 05/11] add shibachain (#541) * add shibachain * update exploror * fix typo * change standard to None Co-authored-by: Akita Inu --- _data/chains/eip155-27.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 _data/chains/eip155-27.json diff --git a/_data/chains/eip155-27.json b/_data/chains/eip155-27.json new file mode 100644 index 00000000..7aa0ff28 --- /dev/null +++ b/_data/chains/eip155-27.json @@ -0,0 +1,23 @@ +{ + "name": "ShibaChain", + "chain": "SHIB", + "network": "mainnet", + "rpc": [ + "https://rpc.shibachain.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "SHIBA INU COIN", + "symbol": "SHIB", + "decimals": 18 + }, + "infoURL": "https://www.shibachain.net", + "shortName": "shib", + "chainId": 27, + "networkId": 27, + "explorers": [{ + "name": "Shiba Explorer", + "url": "https://exp.shibachain.net/", + "standard": "none" + }] +} From 646ff3b612ca03a0ed8355963d52fae793d944e8 Mon Sep 17 00:00:00 2001 From: Calvin Lau <38898718+calvinaco@users.noreply.github.com> Date: Mon, 8 Nov 2021 15:44:23 +0800 Subject: [PATCH 06/11] Add Cronos mainnet beta and Update testnet (#546) --- _data/chains/eip155-25.json | 23 +++++++++++++++++++++++ _data/chains/eip155-338.json | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 _data/chains/eip155-25.json diff --git a/_data/chains/eip155-25.json b/_data/chains/eip155-25.json new file mode 100644 index 00000000..f2e856b7 --- /dev/null +++ b/_data/chains/eip155-25.json @@ -0,0 +1,23 @@ +{ + "name": "Cronos Mainnet Beta", + "chain": "CRO", + "network": "mainnet", + "rpc": [ + "https://evm-cronos.crypto.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Crypto.org Coin", + "symbol": "CRO", + "decimals": 18 + }, + "infoURL": "https://cronos.crypto.org", + "shortName": "cro", + "chainId": 25, + "networkId": 25, + "explorers": [{ + "name": "Cronos Explorer", + "url": "https://cronos.crypto.org/explorer", + "standard": "none" + }] +} diff --git a/_data/chains/eip155-338.json b/_data/chains/eip155-338.json index f9583f60..568eeaed 100644 --- a/_data/chains/eip155-338.json +++ b/_data/chains/eip155-338.json @@ -20,7 +20,7 @@ "networkId": 338, "explorers": [{ "name": "Cronos Testnet Explorer", - "url": "https://cronos.crypto.org/explorer", + "url": "https://cronos.crypto.org/explorer/testnet3", "standard": "none" }] } From d65dc6b3da8422c9b342e3c34baacedf080b955a Mon Sep 17 00:00:00 2001 From: Nan Thanwa Date: Mon, 8 Nov 2021 14:49:23 +0700 Subject: [PATCH 07/11] Update explorer on Avalanche (#539) --- _data/chains/eip155-43113.json | 9 ++++++++- _data/chains/eip155-43114.json | 12 +++++++----- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/_data/chains/eip155-43113.json b/_data/chains/eip155-43113.json index 290c0f68..1169719f 100644 --- a/_data/chains/eip155-43113.json +++ b/_data/chains/eip155-43113.json @@ -16,5 +16,12 @@ "infoURL": "https://cchain.explorer.avax-test.network", "shortName": "Fuji", "chainId": 43113, - "networkId": 1 + "networkId": 1, + "explorers": [ + { + "name": "snowtrace", + "url": "https://testnet.snowtrace.io/", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-43114.json b/_data/chains/eip155-43114.json index 00190f22..fbfd2614 100644 --- a/_data/chains/eip155-43114.json +++ b/_data/chains/eip155-43114.json @@ -16,9 +16,11 @@ "chainId": 43114, "networkId": 43114, "slip44": 9000, - "explorers": [{ - "name": "blockscout", - "url": "https://cchain.explorer.avax.network", - "standard": "none" - }] + "explorers": [ + { + "name": "snowtrace", + "url": "https://snowtrace.io/", + "standard": "EIP3091" + } + ] } From c87ab28513e98d3662b92d420cbe069a2ffe9990 Mon Sep 17 00:00:00 2001 From: Andy Lou Date: Mon, 8 Nov 2021 22:29:12 +0800 Subject: [PATCH 08/11] Add Singularity ZERO Testnet (#540) * Add Singularity ZERO Testnet * Update Singularity faucets * use https on rpc and explorer --- _data/chains/eip155-12051.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 _data/chains/eip155-12051.json diff --git a/_data/chains/eip155-12051.json b/_data/chains/eip155-12051.json new file mode 100644 index 00000000..2931a890 --- /dev/null +++ b/_data/chains/eip155-12051.json @@ -0,0 +1,25 @@ +{ + "name": "Singularity ZERO Testnet", + "chain": "ZERO", + "network": "testnet", + "rpc": [ + "https://betaenv.singularity.gold:18545" + ], + "faucets": [ + "https://nft.singularity.gold" + ], + "nativeCurrency": { + "name": "ZERO", + "symbol": "tZERO", + "decimals": 18 + }, + "infoURL": "https://www.singularity.gold", + "shortName": "tZERO", + "chainId": 12051, + "networkId": 12051, + "explorers": [{ + "name": "zeroscan", + "url": "https://betaenv.singularity.gold:18002", + "standard": "EIP3091" + }] +} From 9b36e6c94bced645452be7d1422337101fcef08c Mon Sep 17 00:00:00 2001 From: Simon Zhang Date: Tue, 9 Nov 2021 00:32:03 +0800 Subject: [PATCH 09/11] add Meter Testnet, update Meter Mainnet (#538) * update data for Meter Mainnet, add data for Meter Testnet * update shortName to avoid duplicate --- _data/chains/eip155-82.json | 11 +++++++++-- _data/chains/eip155-83.json | 26 ++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 _data/chains/eip155-83.json diff --git a/_data/chains/eip155-82.json b/_data/chains/eip155-82.json index 8fdf7d9e..ac5a54a6 100644 --- a/_data/chains/eip155-82.json +++ b/_data/chains/eip155-82.json @@ -5,7 +5,9 @@ "rpc": [ "https://rpc.meter.io" ], - "faucets": [], + "faucets": [ + "https://faucet.meter.io" + ], "nativeCurrency": { "name": "Meter", "symbol": "MTR", @@ -14,6 +16,11 @@ "infoURL": "https://www.meter.io", "shortName": "Meter", "chainId": 82, - "networkId": 82 + "networkId": 82, + "explorers": [{ + "name": "Meter Mainnet Scan", + "url": "https://scan.meter.io", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-83.json b/_data/chains/eip155-83.json new file mode 100644 index 00000000..b112c7b4 --- /dev/null +++ b/_data/chains/eip155-83.json @@ -0,0 +1,26 @@ +{ + "name": "Meter Testnet", + "chain": "METER Testnet", + "network": "testnet", + "rpc": [ + "https://rpctest.meter.io" + ], + "faucets": [ + "https://faucet-warringstakes.meter.io" + ], + "nativeCurrency": { + "name": "Meter", + "symbol": "MTR", + "decimals": 18 + }, + "infoURL": "https://www.meter.io", + "shortName": "MeterTest", + "chainId": 83, + "networkId": 83, + "explorers": [{ + "name": "Meter Testnet Scan", + "url": "https://scan-warringstakes.meter.io", + "standard": "EIP3091" + }] +} + From 1e5dde3769762eb6a499508a26327c64a0cfcc71 Mon Sep 17 00:00:00 2001 From: Thinkium <67776241+ThinkiumChain@users.noreply.github.com> Date: Tue, 9 Nov 2021 02:02:24 +0800 Subject: [PATCH 10/11] add Thinkium Network (#532) * add Thinkium Network * update Thinkium Network * update Thinkium Network Co-authored-by: gansheng <562979315@qq.com> --- _data/chains/eip155-60000.json | 25 +++++++++++++++++++++++++ _data/chains/eip155-60001.json | 25 +++++++++++++++++++++++++ _data/chains/eip155-60002.json | 25 +++++++++++++++++++++++++ _data/chains/eip155-60103.json | 25 +++++++++++++++++++++++++ _data/chains/eip155-70000.json | 23 +++++++++++++++++++++++ _data/chains/eip155-70001.json | 23 +++++++++++++++++++++++ _data/chains/eip155-70002.json | 23 +++++++++++++++++++++++ _data/chains/eip155-70103.json | 23 +++++++++++++++++++++++ 8 files changed, 192 insertions(+) create mode 100644 _data/chains/eip155-60000.json create mode 100644 _data/chains/eip155-60001.json create mode 100644 _data/chains/eip155-60002.json create mode 100644 _data/chains/eip155-60103.json create mode 100644 _data/chains/eip155-70000.json create mode 100644 _data/chains/eip155-70001.json create mode 100644 _data/chains/eip155-70002.json create mode 100644 _data/chains/eip155-70103.json diff --git a/_data/chains/eip155-60000.json b/_data/chains/eip155-60000.json new file mode 100644 index 00000000..1d398fbb --- /dev/null +++ b/_data/chains/eip155-60000.json @@ -0,0 +1,25 @@ +{ + "name": "Thinkium Testnet Chain 0", + "chain": "Thinkium", + "network": "testnet", + "rpc": [ + "https://test.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test0", + "chainId": 60000, + "networkId": 60000, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://test0.thinkiumscan.net/", + "standard": "EIP3091" + }] +} \ No newline at end of file diff --git a/_data/chains/eip155-60001.json b/_data/chains/eip155-60001.json new file mode 100644 index 00000000..14f4bbcd --- /dev/null +++ b/_data/chains/eip155-60001.json @@ -0,0 +1,25 @@ +{ + "name": "Thinkium Testnet Chain 1", + "chain": "Thinkium", + "network": "testnet", + "rpc": [ + "https://test1.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test1", + "chainId": 60001, + "networkId": 60001, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://test1.thinkiumscan.net/", + "standard": "EIP3091" + }] +} \ No newline at end of file diff --git a/_data/chains/eip155-60002.json b/_data/chains/eip155-60002.json new file mode 100644 index 00000000..70dcfdb3 --- /dev/null +++ b/_data/chains/eip155-60002.json @@ -0,0 +1,25 @@ +{ + "name": "Thinkium Testnet Chain 2", + "chain": "Thinkium", + "network": "testnet", + "rpc": [ + "https://test2.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test2", + "chainId": 60002, + "networkId": 60002, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://test2.thinkiumscan.net/", + "standard": "EIP3091" + }] +} \ No newline at end of file diff --git a/_data/chains/eip155-60103.json b/_data/chains/eip155-60103.json new file mode 100644 index 00000000..882b532e --- /dev/null +++ b/_data/chains/eip155-60103.json @@ -0,0 +1,25 @@ +{ + "name": "Thinkium Testnet Chain 103", + "chain": "Thinkium", + "network": "testnet", + "rpc": [ + "https://test103.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test103", + "chainId": 60103, + "networkId": 60103, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://test103.thinkiumscan.net", + "standard": "EIP3091" + }] +} \ No newline at end of file diff --git a/_data/chains/eip155-70000.json b/_data/chains/eip155-70000.json new file mode 100644 index 00000000..d6739e52 --- /dev/null +++ b/_data/chains/eip155-70000.json @@ -0,0 +1,23 @@ +{ + "name": "Thinkium Mainnet Chain 0", + "chain": "Thinkium", + "network": "mainnet", + "rpc": [ + "https://proxy.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM0", + "chainId": 70000, + "networkId": 70000, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://chain0.thinkiumscan.net/", + "standard": "EIP3091" + }] +} \ No newline at end of file diff --git a/_data/chains/eip155-70001.json b/_data/chains/eip155-70001.json new file mode 100644 index 00000000..b887132f --- /dev/null +++ b/_data/chains/eip155-70001.json @@ -0,0 +1,23 @@ +{ + "name": "Thinkium Mainnet Chain 1", + "chain": "Thinkium", + "network": "mainnet", + "rpc": [ + "https://proxy1.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM1", + "chainId": 70001, + "networkId": 70001, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://chain1.thinkiumscan.net/", + "standard": "EIP3091" + }] +} \ No newline at end of file diff --git a/_data/chains/eip155-70002.json b/_data/chains/eip155-70002.json new file mode 100644 index 00000000..da9569b1 --- /dev/null +++ b/_data/chains/eip155-70002.json @@ -0,0 +1,23 @@ +{ + "name": "Thinkium Mainnet Chain 2", + "chain": "Thinkium", + "network": "mainnet", + "rpc": [ + "https://proxy2.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM2", + "chainId": 70002, + "networkId": 70002, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://chain2.thinkiumscan.net/", + "standard": "EIP3091" + }] +} \ No newline at end of file diff --git a/_data/chains/eip155-70103.json b/_data/chains/eip155-70103.json new file mode 100644 index 00000000..a63908f7 --- /dev/null +++ b/_data/chains/eip155-70103.json @@ -0,0 +1,23 @@ +{ + "name": "Thinkium Mainnet Chain 103", + "chain": "Thinkium", + "network": "mainnet", + "rpc": [ + "https://proxy103.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM103", + "chainId": 70103, + "networkId": 70103, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://chain103.thinkiumscan.net/", + "standard": "EIP3091" + }] +} \ No newline at end of file From a83d0f40221195de97e36466b17e4d1a3c6b3db8 Mon Sep 17 00:00:00 2001 From: ligi Date: Tue, 9 Nov 2021 20:30:28 +0100 Subject: [PATCH 11/11] Remove broken RPC endpoint - closes #544 (#549) --- _data/chains/eip155-80001.json | 1 - 1 file changed, 1 deletion(-) diff --git a/_data/chains/eip155-80001.json b/_data/chains/eip155-80001.json index 3789d8e9..7d73f909 100644 --- a/_data/chains/eip155-80001.json +++ b/_data/chains/eip155-80001.json @@ -3,7 +3,6 @@ "chain": "Polygon", "network": "testnet", "rpc": [ - "https://rpc-mumbai.matic.today", "https://matic-mumbai.chainstacklabs.com", "https://rpc-mumbai.maticvigil.com", "https://matic-testnet-archive-rpc.bwarelabs.com"