From 87f107b211f069a1e726e7da1d6be8aa411e326e Mon Sep 17 00:00:00 2001 From: turndealer Date: Fri, 10 Dec 2021 02:59:41 +0530 Subject: [PATCH 01/53] btcix.json (#641) added ipfs file for btcix network --- _data/icons/btcix.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 _data/icons/btcix.json diff --git a/_data/icons/btcix.json b/_data/icons/btcix.json new file mode 100644 index 00000000..7bf8d189 --- /dev/null +++ b/_data/icons/btcix.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZttTpHJreq3AinjDSkVP5yZ7Xzccdwi41G1uJhdogGBA", + "width": 520, + "height": 521, + "format": "png" + } +] From 33f123ad0f64008945adf5aa391efb7895a04ecf Mon Sep 17 00:00:00 2001 From: tomatoskittles Date: Thu, 9 Dec 2021 16:38:15 -0500 Subject: [PATCH 02/53] Adding support for Syscoin Mainnet (#644) Adding support for Syscoin Mainnet to the chainlist. --- _data/chains/eip155-57.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 _data/chains/eip155-57.json diff --git a/_data/chains/eip155-57.json b/_data/chains/eip155-57.json new file mode 100644 index 00000000..3967e8cc --- /dev/null +++ b/_data/chains/eip155-57.json @@ -0,0 +1,26 @@ +{ + "name": "Syscoin Mainnet", + "chain": "SYS", + "network": "mainnet", + "rpc": [ + "https://rpc.syscoin.org", + "wss://rpc.syscoin.org/wss" + ], + "faucets": ["https://faucet.syscoin.org"], + "nativeCurrency": { + "name": "Syscoin", + "symbol": "SYS", + "decimals": 18 + }, + "infoURL": "https://www.syscoin.org", + "shortName": "sys", + "chainId": 57, + "networkId": 57, + "explorers": [ + { + "name": "Syscoin Block Explorer", + "url": "https://explorer.syscoin.org", + "standard": "EIP3091" + } + ] +} From 2640bb6a99ef5543806252fa205cb9376e5cb9cd Mon Sep 17 00:00:00 2001 From: xiao93 <42384581+xiao93@users.noreply.github.com> Date: Fri, 10 Dec 2021 05:41:27 +0800 Subject: [PATCH 03/53] Update eip155-52.json (#646) --- _data/chains/eip155-52.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-52.json b/_data/chains/eip155-52.json index faf4811b..a006f959 100644 --- a/_data/chains/eip155-52.json +++ b/_data/chains/eip155-52.json @@ -11,7 +11,7 @@ "symbol": "cet", "decimals": 18 }, - "infoURL": "http://www.coinex.org/", + "infoURL": "https://www.coinex.org/", "shortName": "cet", "chainId": 52, "networkId": 52 From 7e010430e7572ab8ec1f7d6f422544e98836355d Mon Sep 17 00:00:00 2001 From: purestaketdb <45097828+purestaketdb@users.noreply.github.com> Date: Thu, 9 Dec 2021 16:41:41 -0500 Subject: [PATCH 04/53] Updates for explorers, faucet, rpc (#645) --- _data/chains/eip155-1284.json | 5 ++++- _data/chains/eip155-1285.json | 17 +++++++++-------- _data/chains/eip155-1287.json | 9 ++++++++- 3 files changed, 21 insertions(+), 10 deletions(-) diff --git a/_data/chains/eip155-1284.json b/_data/chains/eip155-1284.json index 27e58d02..151202f6 100644 --- a/_data/chains/eip155-1284.json +++ b/_data/chains/eip155-1284.json @@ -2,7 +2,10 @@ "name": "Moonbeam", "chain": "MOON", "network": "moonbeam", - "rpc": [], + "rpc": [ + "https://rpc.api.moonbeam.network", + "wss://wss.api.moonbeam.network" + ], "faucets": [], "nativeCurrency": { "name": "Glimmer", diff --git a/_data/chains/eip155-1285.json b/_data/chains/eip155-1285.json index 3fdd8b29..0b903861 100644 --- a/_data/chains/eip155-1285.json +++ b/_data/chains/eip155-1285.json @@ -6,7 +6,7 @@ "https://rpc.moonriver.moonbeam.network", "wss://wss.moonriver.moonbeam.network" ], - "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], + "faucets": [], "nativeCurrency": { "name": "Moonriver", "symbol": "MOVR", @@ -16,10 +16,11 @@ "shortName": "mriver", "chainId": 1285, "networkId": 1285, - - "explorers": [{ - "name": "blockscout", - "url": "https://blockscout.moonriver.moonbeam.network", - "standard": "none" - }] -} + "explorers": [ + { + "name": "moonscan", + "url": "https://moonriver.moonscan.io/", + "standard": "none" + } + ] +} \ No newline at end of file diff --git a/_data/chains/eip155-1287.json b/_data/chains/eip155-1287.json index 4e2edcfe..9c0f6745 100644 --- a/_data/chains/eip155-1287.json +++ b/_data/chains/eip155-1287.json @@ -15,5 +15,12 @@ "infoURL": "https://docs.moonbeam.network/networks/testnet/", "shortName": "mbase", "chainId": 1287, - "networkId": 1287 + "networkId": 1287, + "explorers": [ + { + "name": "moonscan", + "url": "https://moonbase.moonscan.io/", + "standard": "none" + } + ] } \ No newline at end of file From 638caee7e45ab29ee65da073a881daa72d0f65ff Mon Sep 17 00:00:00 2001 From: xiao93 <42384581+xiao93@users.noreply.github.com> Date: Fri, 10 Dec 2021 05:49:22 +0800 Subject: [PATCH 05/53] Update eip155-53.json (#647) --- _data/chains/eip155-53.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-53.json b/_data/chains/eip155-53.json index 68545b21..490e1bb8 100644 --- a/_data/chains/eip155-53.json +++ b/_data/chains/eip155-53.json @@ -11,7 +11,7 @@ "symbol": "cett", "decimals": 18 }, - "infoURL": "http://www.coinex.org/", + "infoURL": "https://www.coinex.org/", "shortName": "tcet", "chainId": 53, "networkId": 53 From 405d35d85ad0b025563f8d3d9bfee958947dac48 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Dec 2021 09:47:49 +0100 Subject: [PATCH 06/53] Bump moshi-kotlin from 1.12.0 to 1.13.0 (#648) Bumps [moshi-kotlin](https://github.com/square/moshi) from 1.12.0 to 1.13.0. - [Release notes](https://github.com/square/moshi/releases) - [Changelog](https://github.com/square/moshi/blob/master/CHANGELOG.md) - [Commits](https://github.com/square/moshi/compare/moshi-parent-1.12.0...moshi-parent-1.13.0) --- updated-dependencies: - dependency-name: com.squareup.moshi:moshi-kotlin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 096b3e75..36cf31a6 100644 --- a/build.gradle +++ b/build.gradle @@ -34,7 +34,7 @@ dependencies { implementation "com.github.komputing.kethereum:crypto_impl_bouncycastle:${KETHEREUM_VERSION}" implementation 'com.beust:klaxon:5.5' - implementation 'com.squareup.moshi:moshi-kotlin:1.12.0' + implementation 'com.squareup.moshi:moshi-kotlin:1.13.0' implementation 'com.squareup.okhttp3:okhttp:4.9.3' testImplementation "org.jetbrains.kotlin:kotlin-test:${KOTLIN_VERSION}" From 36aedab5d92282478b42aaa04a780f1893886ca5 Mon Sep 17 00:00:00 2001 From: Bittex <91625051+bittex-coin@users.noreply.github.com> Date: Fri, 10 Dec 2021 21:20:49 +0530 Subject: [PATCH 07/53] New Chain Related (#651) --- _data/chains/eip155-3690.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 _data/chains/eip155-3690.json diff --git a/_data/chains/eip155-3690.json b/_data/chains/eip155-3690.json new file mode 100644 index 00000000..81701fb2 --- /dev/null +++ b/_data/chains/eip155-3690.json @@ -0,0 +1,26 @@ +{ + "name": "Bittex Mainnet", + "chain": "BTTX", + "network": "mainnet", + "rpc": [ + "https://rpc1.bittexscan.info", + "https://rpc2.bittexscan.info" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bittex", + "symbol": "BTTX", + "decimals": 18 + }, + "infoURL": "https://bittexscan.com", + "shortName": "bttx", + "chainId": 3690, + "networkId": 3690, + "icon": "ethereum", + "explorers": [{ + "name": "bittexscan", + "url": "https://bittexscan.com", + "icon": "etherscan", + "standard": "EIP3091" + }] +} From 4adceea2fcddfbd125da0533a332c8ce0565a885 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Dec 2021 10:30:57 +0100 Subject: [PATCH 08/53] Bump KETHEREUM_VERSION from 0.85.3 to 0.85.5 (#662) Bumps `KETHEREUM_VERSION` from 0.85.3 to 0.85.5. Updates `rpc` from 0.85.3 to 0.85.5 - [Release notes](https://github.com/komputing/KEthereum/releases) - [Commits](https://github.com/komputing/KEthereum/compare/0.85.3...0.85.5) Updates `model` from 0.85.3 to 0.85.5 - [Release notes](https://github.com/komputing/KEthereum/releases) - [Commits](https://github.com/komputing/KEthereum/compare/0.85.3...0.85.5) Updates `erc55` from 0.85.3 to 0.85.5 - [Release notes](https://github.com/komputing/KEthereum/releases) - [Commits](https://github.com/komputing/KEthereum/compare/0.85.3...0.85.5) Updates `crypto_impl_bouncycastle` from 0.85.3 to 0.85.5 - [Release notes](https://github.com/komputing/KEthereum/releases) - [Commits](https://github.com/komputing/KEthereum/compare/0.85.3...0.85.5) --- updated-dependencies: - dependency-name: com.github.komputing.kethereum:rpc dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.github.komputing.kethereum:model dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.github.komputing.kethereum:erc55 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.github.komputing.kethereum:crypto_impl_bouncycastle dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 36cf31a6..1ab262d3 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ buildscript { ext { KOTLIN_VERSION = "1.6.0" - KETHEREUM_VERSION = "0.85.3" + KETHEREUM_VERSION = "0.85.5" } repositories { From 84e17f1d61ca079879043349c55b104cbfe894ec Mon Sep 17 00:00:00 2001 From: xiao93 <42384581+xiao93@users.noreply.github.com> Date: Wed, 15 Dec 2021 04:26:04 +0800 Subject: [PATCH 09/53] Update eip155-53.json (#661) https://docs.coinex.org/#/testnet --- _data/chains/eip155-53.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-53.json b/_data/chains/eip155-53.json index 490e1bb8..2653e41c 100644 --- a/_data/chains/eip155-53.json +++ b/_data/chains/eip155-53.json @@ -3,7 +3,7 @@ "chain": "CSC", "network": "testnet", "rpc": [ - "https://rpc-testnet.coinex.net" + "https://testnet-rpc.coinex.net/" ], "faucets": [], "nativeCurrency": { From 7c883f55529a88ccf87577ddb0b16c108389b676 Mon Sep 17 00:00:00 2001 From: xiao93 <42384581+xiao93@users.noreply.github.com> Date: Wed, 15 Dec 2021 04:30:16 +0800 Subject: [PATCH 10/53] Update eip155-52.json (#660) https://docs.coinex.org/#/mainnet --- _data/chains/eip155-52.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-52.json b/_data/chains/eip155-52.json index a006f959..072ad8a0 100644 --- a/_data/chains/eip155-52.json +++ b/_data/chains/eip155-52.json @@ -3,7 +3,7 @@ "chain": "CSC", "network": "mainnet", "rpc": [ - "https://rpc-mainnet.coinex.net" + "https://rpc.coinex.net" ], "faucets": [], "nativeCurrency": { From 4bfae3321e20345f198fbeb1ce4448982176e6bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Dec 2021 11:59:42 +0100 Subject: [PATCH 11/53] Bump KOTLIN_VERSION from 1.6.0 to 1.6.10 (#669) Bumps `KOTLIN_VERSION` from 1.6.0 to 1.6.10. Updates `kotlin-gradle-plugin` from 1.6.0 to 1.6.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v1.6.10/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v1.6.0...v1.6.10) Updates `kotlin-stdlib` from 1.6.0 to 1.6.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v1.6.10/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v1.6.0...v1.6.10) Updates `kotlin-test` from 1.6.0 to 1.6.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v1.6.10/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v1.6.0...v1.6.10) Updates `kotlin-test-junit` from 1.6.0 to 1.6.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v1.6.10/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v1.6.0...v1.6.10) --- updated-dependencies: - dependency-name: org.jetbrains.kotlin:kotlin-gradle-plugin dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.jetbrains.kotlin:kotlin-stdlib dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.jetbrains.kotlin:kotlin-test dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.jetbrains.kotlin:kotlin-test-junit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 1ab262d3..a21c77e8 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - KOTLIN_VERSION = "1.6.0" + KOTLIN_VERSION = "1.6.10" KETHEREUM_VERSION = "0.85.5" } From cb8ea490ca95738152b5fe8a6726046560c8c4a4 Mon Sep 17 00:00:00 2001 From: Reggie <92185630+blockchainreg@users.noreply.github.com> Date: Wed, 15 Dec 2021 09:12:38 -0500 Subject: [PATCH 12/53] Update Chain (#672) We changed forks and now needed to change the parameters. --- _data/chains/eip155-7878.json | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/_data/chains/eip155-7878.json b/_data/chains/eip155-7878.json index 792f840f..53a9ddf0 100644 --- a/_data/chains/eip155-7878.json +++ b/_data/chains/eip155-7878.json @@ -2,22 +2,25 @@ "name": "Hazlor Testnet", "chain": "SCAS", "network": "testnet", - "rpc": ["https://hatlas.rpc.hazlor.com:8545/"], - "faucets": ["https://faucet.hazlor.com"], + "rpc": [ + "https://hatlas.rpc.hazlor.com:8545", + "wss://hatlas.rpc.hazlor.com:8546" + ], + "faucets": [ + "https://faucet.hazlor.com" + ], "nativeCurrency": { "name": "Hazlor Test Coin", "symbol": "TSCAS", "decimals": 18 }, "infoURL": "https://hazlor.com", - "shortName": "hazlor-hatlas", + "shortName": "tscas", "chainId": 7878, "networkId": 7878, - "explorers": [ - { - "name": "Hazlor Explorer ", - "url": "https://explorer.hazlor.com", - "standard": "none" - } - ] + "explorers": [{ + "name": "Hazlor Testnet Explorer", + "url": "https://explorer.hazlor.com", + "standard": "none" + }] } From 61e981e28088d7b582c58c485dea9c6b021eeb7e Mon Sep 17 00:00:00 2001 From: xiao93 <42384581+xiao93@users.noreply.github.com> Date: Wed, 15 Dec 2021 22:28:22 +0800 Subject: [PATCH 13/53] Update eip155-53.json (#671) * Update eip155-53.json add explorers https://testnet.coinex.net/ * Update eip155-53.json --- _data/chains/eip155-53.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/_data/chains/eip155-53.json b/_data/chains/eip155-53.json index 2653e41c..c448f6b0 100644 --- a/_data/chains/eip155-53.json +++ b/_data/chains/eip155-53.json @@ -14,5 +14,10 @@ "infoURL": "https://www.coinex.org/", "shortName": "tcet", "chainId": 53, - "networkId": 53 + "networkId": 53, + "explorers": [{ + "name": "coinexscan", + "url": "https://testnet.coinex.net/", + "standard": "none" + }] } From d62b8630447757599cc84fad8aa1f49deb13c36d Mon Sep 17 00:00:00 2001 From: xiao93 <42384581+xiao93@users.noreply.github.com> Date: Wed, 15 Dec 2021 23:00:36 +0800 Subject: [PATCH 14/53] Update eip155-52.json (#670) * Update eip155-52.json add explorers https://www.coinex.net/ * Update eip155-52.json --- _data/chains/eip155-52.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/_data/chains/eip155-52.json b/_data/chains/eip155-52.json index 072ad8a0..7a718629 100644 --- a/_data/chains/eip155-52.json +++ b/_data/chains/eip155-52.json @@ -14,5 +14,10 @@ "infoURL": "https://www.coinex.org/", "shortName": "cet", "chainId": 52, - "networkId": 52 + "networkId": 52, + "explorers": [{ + "name": "coinexscan", + "url": "https://www.coinex.net/", + "standard": "none" + }] } From f372e5e1f2e72bc8c13a2624199bf838aa6b590d Mon Sep 17 00:00:00 2001 From: MartinB <38029526+MartinBTM@users.noreply.github.com> Date: Fri, 17 Dec 2021 02:28:09 +0800 Subject: [PATCH 15/53] Create eip155-188.json (#679) create eip155-188.json --- _data/chains/eip155-188.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 _data/chains/eip155-188.json diff --git a/_data/chains/eip155-188.json b/_data/chains/eip155-188.json new file mode 100644 index 00000000..1fcdc2ca --- /dev/null +++ b/_data/chains/eip155-188.json @@ -0,0 +1,23 @@ +{ + "name": "BMC Mainnet", + "chain": "BMC", + "network": "mainnet", + "rpc": [ + "https://mainnet.bmcchain.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTM", + "symbol": "BTM", + "decimals": 18 + }, + "infoURL": "https://bmc.bytom.io/", + "shortName": "BMC", + "chainId": 188, + "networkId": 188, + "explorers": [{ + "name": "Blockmeta", + "url": "https://bmc.blockmeta.com/", + "standard": "none" + }] +} From ab884ed024500fff634ebd50c4d53b2afb26fb88 Mon Sep 17 00:00:00 2001 From: madmattman <35346049+madmattman@users.noreply.github.com> Date: Thu, 16 Dec 2021 10:40:18 -0800 Subject: [PATCH 16/53] Create eip155-2021121117.json (#674) --- _data/chains/eip155-2021121117.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 _data/chains/eip155-2021121117.json diff --git a/_data/chains/eip155-2021121117.json b/_data/chains/eip155-2021121117.json new file mode 100644 index 00000000..679a56bb --- /dev/null +++ b/_data/chains/eip155-2021121117.json @@ -0,0 +1,18 @@ +{ + "name": "DataHopper", + "chain": "HOP", + "network": "hopnet", + "rpc": [ + "https://23.92.21.121:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "DataHoppers", + "symbol": "HOP", + "decimals": 18 + }, + "infoURL": "https://www.DataHopper.com", + "shortName": "hop", + "chainId": 2021121117, + "networkId": 2021121117 +} From 46a72fe08c37c0e54abbed140c925f9d9fde4341 Mon Sep 17 00:00:00 2001 From: LittleBear <1581487855@qq.com> Date: Fri, 17 Dec 2021 16:17:15 +0800 Subject: [PATCH 17/53] create eip155-2025 (#682) * create eip155-2025 * create eip155-2025 --- _data/chains/eip155-2025.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 _data/chains/eip155-2025.json diff --git a/_data/chains/eip155-2025.json b/_data/chains/eip155-2025.json new file mode 100644 index 00000000..5e288197 --- /dev/null +++ b/_data/chains/eip155-2025.json @@ -0,0 +1,24 @@ +{ + "name": "Rangers Protocol Mainnet", + "chain": "Rangers", + "network": "mainnet", + "rpc": [ + "https://mainnet.rangersprotocol.com/api/jsonrpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rangers Protocol Gas", + "symbol": "RPG", + "decimals": 18 + }, + "infoURL": "https://rangersprotocol.com", + "shortName": "rpg", + "chainId": 2025, + "networkId": 2025, + "slip44": 1008, + "explorers": [{ + "name": "rangersscan", + "url": "https://scan.rangersprotocol.com", + "standard": "none" + }] +} From 14dbd5b3872878760478c9fc96a4809fff501125 Mon Sep 17 00:00:00 2001 From: MartinB <38029526+MartinBTM@users.noreply.github.com> Date: Fri, 17 Dec 2021 17:37:06 +0800 Subject: [PATCH 18/53] create eip155-189.json (#683) * Create eip155-188.json create eip155-188.json * Create eip155-189.json Create eip155-189.json --- _data/chains/eip155-189.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 _data/chains/eip155-189.json diff --git a/_data/chains/eip155-189.json b/_data/chains/eip155-189.json new file mode 100644 index 00000000..cb3e0b38 --- /dev/null +++ b/_data/chains/eip155-189.json @@ -0,0 +1,23 @@ +{ + "name": "BMC Testnet", + "chain": "BMC", + "network": "testnet", + "rpc": [ + "https://testnet.bmcchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTM", + "symbol": "BTM", + "decimals": 18 + }, + "infoURL": "https://bmc.bytom.io/", + "shortName": "BMCT", + "chainId": 189, + "networkId": 189, + "explorers": [{ + "name": "Blockmeta", + "url": "https://bmc.blockmeta.com/", + "standard": "none" + }] +} From ac6cb3516e5d6d8abd14d626e0f384e832325463 Mon Sep 17 00:00:00 2001 From: LittleBear <1581487855@qq.com> Date: Fri, 17 Dec 2021 18:09:57 +0800 Subject: [PATCH 19/53] Pr/9527 (#685) * create eip155-9527 * create eip155-9527 * create eip155-9527 --- _data/chains/eip155-9527.json | 24 ++++++++++++++++++++++++ _data/icons/rangers.json | 8 ++++++++ 2 files changed, 32 insertions(+) create mode 100644 _data/chains/eip155-9527.json create mode 100644 _data/icons/rangers.json diff --git a/_data/chains/eip155-9527.json b/_data/chains/eip155-9527.json new file mode 100644 index 00000000..1653551b --- /dev/null +++ b/_data/chains/eip155-9527.json @@ -0,0 +1,24 @@ +{ + "name": "Rangers Protocol Testnet Robin", + "chain": "Rangers", + "network": "robin", + "icon": "rangers", + "rpc": [ + "https://robin.rangersprotocol.com/api/jsonrpc" + ], + "faucets": ["https://robin-faucet.rangersprotocol.com"], + "nativeCurrency": { + "name": "Rangers Protocol Gas", + "symbol": "tRPG", + "decimals": 18 + }, + "infoURL": "https://rangersprotocol.com", + "shortName": "trpg", + "chainId": 9527, + "networkId": 9527, + "explorers": [{ + "name": "rangersscan-robin", + "url": "https://robin-rangersscan.rangersprotocol.com", + "standard": "none" + }] +} diff --git a/_data/icons/rangers.json b/_data/icons/rangers.json new file mode 100644 index 00000000..9bfdb96d --- /dev/null +++ b/_data/icons/rangers.json @@ -0,0 +1,8 @@ +[ + { + "url":"ipfs://QmfHG3xbg4iiopagww93Gu7tmvCpPwZdiwsUjd3Dt5mRwT", + "width":835, + "height":835, + "format":"png" + } +] From 2241b4468f8e18575fa977239e8212e38425e501 Mon Sep 17 00:00:00 2001 From: Benjamin Hyo-keun Oh Date: Fri, 17 Dec 2021 20:48:56 +0900 Subject: [PATCH 20/53] Update eip155-8217.json (#654) * Update eip155-8217.json - remove Klayn Official JSON-RPC route (Klaytn official API doesn't work any more) - add ozys JSON-RPC route - add klaytnscope uri * Update eip155-8217.json - fix uri - remove EIP-3091 * Update _data/chains/eip155-8217.json Co-authored-by: ligi --- _data/chains/eip155-8217.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/_data/chains/eip155-8217.json b/_data/chains/eip155-8217.json index bea84c46..e853633a 100644 --- a/_data/chains/eip155-8217.json +++ b/_data/chains/eip155-8217.json @@ -3,7 +3,7 @@ "chain": "KLAY", "network": "cypress", "rpc": [ - "https://node-api.klaytnapi.com/v1/klaytn" + "https://api.cypress.ozys.net:8651" ], "faucets": [], "nativeCurrency": { @@ -15,5 +15,10 @@ "shortName": "Cypress", "chainId": 8217, "networkId": 8217, - "slip44": 8217 + "slip44": 8217, + "explorers": [{ + "name": "Klaytnscope", + "url": "https://scope.klaytn.com", + "standard": "none" + }] } From 98fbc9d31106768c9863d2ec85ca3932895936dc Mon Sep 17 00:00:00 2001 From: ligi Date: Sat, 18 Dec 2021 12:56:33 +0100 Subject: [PATCH 21/53] Add kintsugi test network (#686) --- _data/chains/eip155-1337702.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 _data/chains/eip155-1337702.json diff --git a/_data/chains/eip155-1337702.json b/_data/chains/eip155-1337702.json new file mode 100644 index 00000000..0cfcbe1d --- /dev/null +++ b/_data/chains/eip155-1337702.json @@ -0,0 +1,25 @@ +{ + "name": "Kintsugi merge testnet", + "chain": "ETH", + "network": "testnet", + "rpc": [ + "https://rpc.kintsugi.themerge.dev" + ], + "faucets": [ + "https://faucet.kintsugi.themerge.dev" + ], + "nativeCurrency": { + "name": "kintsugi Ethere", + "symbol": "kiETH", + "decimals": 18 + }, + "infoURL": "https://kintsugi.themerge.dev/", + "shortName": "kintsugi", + "chainId": 1337702, + "networkId": 1337702, + "explorers": [{ + "name": "kintsugi explorer", + "url": "https://explorer.kintsugi.themerge.dev/", + "standard": "EIP3091" + }] +} From 9e07221635a9559ab159fa9e459dbe1927490c9b Mon Sep 17 00:00:00 2001 From: SolidityX <88942434+solidityx@users.noreply.github.com> Date: Sat, 18 Dec 2021 17:26:46 +0530 Subject: [PATCH 22/53] Create dithereum.json (#643) * Create dithereum.json * Create eip155-34.json * Create ditherscan.json * added standard in explorer for dithereum testnet * removed explorer details for now. * Update _data/icons/dithereum.json * Update _data/icons/dithereum.json * Update _data/chains/eip155-34.json * Update _data/chains/eip155-34.json * changed RPC URL Co-authored-by: ligi --- _data/chains/eip155-34.json | 21 +++++++++++++++++++++ _data/icons/dithereum.json | 8 ++++++++ _data/icons/ditherscan.json | 8 ++++++++ 3 files changed, 37 insertions(+) create mode 100644 _data/chains/eip155-34.json create mode 100644 _data/icons/dithereum.json create mode 100644 _data/icons/ditherscan.json diff --git a/_data/chains/eip155-34.json b/_data/chains/eip155-34.json new file mode 100644 index 00000000..84a87bf9 --- /dev/null +++ b/_data/chains/eip155-34.json @@ -0,0 +1,21 @@ +{ + "name": "Dithereum Testnet", + "chain": "DTH", + "network": "testnet", + "icon": "dithereum", + "rpc": [ + "https://node-testnet.dithereum.io" + ], + "faucets": [ + "https://faucet.dithereum.org" + ], + "nativeCurrency": { + "name": "Dither", + "symbol": "DTH", + "decimals": 18 + }, + "infoURL": "https://dithereum.org", + "shortName": "dth", + "chainId": 34, + "networkId": 34 +} diff --git a/_data/icons/dithereum.json b/_data/icons/dithereum.json new file mode 100644 index 00000000..c3fefa58 --- /dev/null +++ b/_data/icons/dithereum.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSHN5GtRGpMMpszSn1hF47ZSLRLqrLxWsQ48YYdJPyjLf", + "width": 500, + "height": 500, + "format": "png" + } +] diff --git a/_data/icons/ditherscan.json b/_data/icons/ditherscan.json new file mode 100644 index 00000000..c3fefa58 --- /dev/null +++ b/_data/icons/ditherscan.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSHN5GtRGpMMpszSn1hF47ZSLRLqrLxWsQ48YYdJPyjLf", + "width": 500, + "height": 500, + "format": "png" + } +] From 46a47868c938cba238b9c22efd95ae486a00b9ab Mon Sep 17 00:00:00 2001 From: Bittex <91625051+bittex-coin@users.noreply.github.com> Date: Fri, 24 Dec 2021 14:16:33 +0530 Subject: [PATCH 23/53] Updated Symbol (#690) Changed shortcode from BTTX -> BTX --- _data/chains/eip155-3690.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_data/chains/eip155-3690.json b/_data/chains/eip155-3690.json index 81701fb2..0107c54f 100644 --- a/_data/chains/eip155-3690.json +++ b/_data/chains/eip155-3690.json @@ -1,6 +1,6 @@ { "name": "Bittex Mainnet", - "chain": "BTTX", + "chain": "BTX", "network": "mainnet", "rpc": [ "https://rpc1.bittexscan.info", @@ -9,11 +9,11 @@ "faucets": [], "nativeCurrency": { "name": "Bittex", - "symbol": "BTTX", + "symbol": "BTX", "decimals": 18 }, "infoURL": "https://bittexscan.com", - "shortName": "bttx", + "shortName": "btx", "chainId": 3690, "networkId": 3690, "icon": "ethereum", From ed12fbf86df64b55586a2183b7cc98579a982ab8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Dec 2021 09:48:36 +0100 Subject: [PATCH 24/53] Bump KETHEREUM_VERSION from 0.85.5 to 0.85.6 (#693) Bumps `KETHEREUM_VERSION` from 0.85.5 to 0.85.6. Updates `rpc` from 0.85.5 to 0.85.6 - [Release notes](https://github.com/komputing/KEthereum/releases) - [Commits](https://github.com/komputing/KEthereum/compare/0.85.5...0.85.6) Updates `model` from 0.85.5 to 0.85.6 - [Release notes](https://github.com/komputing/KEthereum/releases) - [Commits](https://github.com/komputing/KEthereum/compare/0.85.5...0.85.6) Updates `erc55` from 0.85.5 to 0.85.6 - [Release notes](https://github.com/komputing/KEthereum/releases) - [Commits](https://github.com/komputing/KEthereum/compare/0.85.5...0.85.6) Updates `crypto_impl_bouncycastle` from 0.85.5 to 0.85.6 - [Release notes](https://github.com/komputing/KEthereum/releases) - [Commits](https://github.com/komputing/KEthereum/compare/0.85.5...0.85.6) --- updated-dependencies: - dependency-name: com.github.komputing.kethereum:rpc dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.github.komputing.kethereum:model dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.github.komputing.kethereum:erc55 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.github.komputing.kethereum:crypto_impl_bouncycastle dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index a21c77e8..eace1084 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ buildscript { ext { KOTLIN_VERSION = "1.6.10" - KETHEREUM_VERSION = "0.85.5" + KETHEREUM_VERSION = "0.85.6" } repositories { From 3a5de0d49a2b6545f8d4415407c5e51631d4bfd5 Mon Sep 17 00:00:00 2001 From: LittleBear <1581487855@qq.com> Date: Fri, 24 Dec 2021 16:50:47 +0800 Subject: [PATCH 25/53] eip2025 add icon (#695) * create eip155-2025 * create eip155-2025 * eip155-2025 add icon --- _data/chains/eip155-2025.json | 1 + 1 file changed, 1 insertion(+) diff --git a/_data/chains/eip155-2025.json b/_data/chains/eip155-2025.json index 5e288197..49841a08 100644 --- a/_data/chains/eip155-2025.json +++ b/_data/chains/eip155-2025.json @@ -2,6 +2,7 @@ "name": "Rangers Protocol Mainnet", "chain": "Rangers", "network": "mainnet", + "icon": "rangers", "rpc": [ "https://mainnet.rangersprotocol.com/api/jsonrpc" ], From d62a8ad71f20640a53ec7d4c9347b0a555924c0b Mon Sep 17 00:00:00 2001 From: boomer2 <37128068+boomer2@users.noreply.github.com> Date: Fri, 24 Dec 2021 18:23:54 +0900 Subject: [PATCH 26/53] changed Klaytn mainnet RPC url (#706) * changed Klaytn mainnet RPC url * changed Klaytn testnet RPC url * changed Klaytn testnet RPC url * changed Klaytn testnet RPC url --- _data/chains/eip155-1001.json | 2 +- _data/chains/eip155-8217.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/chains/eip155-1001.json b/_data/chains/eip155-1001.json index da0f663b..8d061268 100644 --- a/_data/chains/eip155-1001.json +++ b/_data/chains/eip155-1001.json @@ -3,7 +3,7 @@ "chain": "KLAY", "network": "baobab", "rpc": [ - "https://node-api.klaytnapi.com/v1/klaytn" + "https://api.baobab.klaytn.net:8651" ], "faucets": [ "https://baobab.wallet.klaytn.com/access?next=faucet" diff --git a/_data/chains/eip155-8217.json b/_data/chains/eip155-8217.json index e853633a..b60b5b1c 100644 --- a/_data/chains/eip155-8217.json +++ b/_data/chains/eip155-8217.json @@ -3,7 +3,7 @@ "chain": "KLAY", "network": "cypress", "rpc": [ - "https://api.cypress.ozys.net:8651" + "https://public-node-api.klaytnapi.com/v1/cypress" ], "faucets": [], "nativeCurrency": { From f219a1730e302a113116067baa45e839a1326c3b Mon Sep 17 00:00:00 2001 From: Dev Cizz <70370489+kawisin@users.noreply.github.com> Date: Fri, 24 Dec 2021 16:56:09 +0700 Subject: [PATCH 27/53] New chain id (#698) --- eip155-9100.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 eip155-9100.json diff --git a/eip155-9100.json b/eip155-9100.json new file mode 100644 index 00000000..12a64dd7 --- /dev/null +++ b/eip155-9100.json @@ -0,0 +1,19 @@ +{ + "name": "Genesis Coin", + "chain": "Genesis", + "network": "Genesis Coin", + "rpc": [ + "https://genesis-gn.com", + "wss://genesis-gn.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "GN Coin", + "symbol": "GNC", + "decimals": 18 + }, + "infoURL": "https://genesis-gn.com", + "shortName": "GENEC", + "chainId": 9100, + "networkId": 9100 +} \ No newline at end of file From 7504a90fae604227e674ba06fb7bfcfa32bf6d76 Mon Sep 17 00:00:00 2001 From: GimluCom <79271880+GimluCom@users.noreply.github.com> Date: Fri, 24 Dec 2021 15:54:05 +0100 Subject: [PATCH 28/53] Update Gnosis chain (#696) * Update Gnosis chain Updated Gnosis chain, formerly xdai chain. * Update eip155-100.json --- _data/chains/eip155-100.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/_data/chains/eip155-100.json b/_data/chains/eip155-100.json index b8a3a314..3705732b 100644 --- a/_data/chains/eip155-100.json +++ b/_data/chains/eip155-100.json @@ -1,6 +1,6 @@ { - "name": "xDAI Chain", - "chain": "XDAI", + "name": "Gnosis Chain (formerly xDai)", + "chain": "Gnosis", "network": "mainnet", "rpc": [ "https://rpc.xdaichain.com", @@ -11,21 +11,21 @@ "https://dai.poa.network", "ws://xdai.poanetwork.dev:8546" ], - "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/","https://xdai-app.herokuapp.com/faucet"], + "faucets": ["https://xdai-app.herokuapp.com/faucet", "https://stakely.io/faucet/xdai-chain", "https://faucet.prussia.dev/xdai"], "nativeCurrency": { "name": "xDAI", "symbol": "xDAI", "decimals": 18 }, - "infoURL": "https://forum.poa.network/c/xdai-chain", - "shortName": "xdai", + "infoURL": "https://www.xdaichain.com/", + "shortName": "gno", "chainId": 100, "networkId": 100, "slip44": 700, "explorers": [{ "name": "blockscout", - "url": "https://blockscout.com/poa/xdai", + "url": "https://blockscout.com/xdai/mainnet", "standard": "EIP3091" }] } From ca3a5ab653a3a79edec145c95fdf23cbec1c94ce Mon Sep 17 00:00:00 2001 From: Markus Alvila <44319370+RareData@users.noreply.github.com> Date: Fri, 24 Dec 2021 15:56:36 +0100 Subject: [PATCH 29/53] Add more public RPC nodes (#707) --- _data/chains/eip155-19.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/_data/chains/eip155-19.json b/_data/chains/eip155-19.json index 3062f569..279af21e 100644 --- a/_data/chains/eip155-19.json +++ b/_data/chains/eip155-19.json @@ -3,9 +3,12 @@ "chain": "SGB", "network": "songbird", "rpc": [ - "https://songbird.towolabs.com/rpc" + "https://songbird.towolabs.com/rpc", + "https://sgb.ftso.com.au/ext/bc/C/rpc", + "https://sgb.lightft.so/rpc", + "https://sgb-rpc.ftso.eu" ], - "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], + "faucets": [], "nativeCurrency": { "name": "Songbird", "symbol": "SGB", From c2dcfd82e737d894044635f9cb4f0a6d8cf0d158 Mon Sep 17 00:00:00 2001 From: Victor Date: Sat, 25 Dec 2021 23:31:05 +1300 Subject: [PATCH 30/53] Add Emerald Paratime networks. (#708) * Add Emerald Paratime networks. * Update the standard of the explorers. * Correct the shortname for the mainnet. --- _data/chains/eip155-42261.json | 25 +++++++++++++++++++++++++ _data/chains/eip155-42262.json | 25 +++++++++++++++++++++++++ _data/icons/oasis.json | 8 ++++++++ 3 files changed, 58 insertions(+) create mode 100644 _data/chains/eip155-42261.json create mode 100644 _data/chains/eip155-42262.json create mode 100644 _data/icons/oasis.json diff --git a/_data/chains/eip155-42261.json b/_data/chains/eip155-42261.json new file mode 100644 index 00000000..07879731 --- /dev/null +++ b/_data/chains/eip155-42261.json @@ -0,0 +1,25 @@ +{ + "name": "Emerald Paratime Testnet", + "chain": "Emerald", + "network": "testnet", + "icon": "oasis", + "rpc": [ + "https://testnet.emerald.oasis.dev/", + "wss://testnet.emerald.oasis.dev/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Emerald Rose", + "symbol": "ROSE", + "decimals": 18 + }, + "infoURL": "https://docs.oasis.dev/general/developer-resources/overview", + "shortName": "emerald", + "chainId": 42261, + "networkId": 42261, + "explorers": [{ + "name": "Emerald Paratime Testnet Explorer", + "url": "https://testnet.explorer.emerald.oasis.dev/", + "standard": "EIP3091" + }] +} diff --git a/_data/chains/eip155-42262.json b/_data/chains/eip155-42262.json new file mode 100644 index 00000000..ffd257d1 --- /dev/null +++ b/_data/chains/eip155-42262.json @@ -0,0 +1,25 @@ +{ + "name": "Emerald Paratime Mainnet", + "chain": "Emerald", + "network": "Mainnet", + "icon": "oasis", + "rpc": [ + "https://emerald.oasis.dev", + "wss://emerald.oasis.dev/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Emerald Rose", + "symbol": "ROSE", + "decimals": 18 + }, + "infoURL": "https://docs.oasis.dev/general/developer-resources/overview", + "shortName": "oasis", + "chainId": 42262, + "networkId": 42262, + "explorers": [{ + "name": "Emerald Paratime Mainnet Explorer", + "url": "https://explorer.emerald.oasis.dev/", + "standard": "EIP3091" + }] +} diff --git a/_data/icons/oasis.json b/_data/icons/oasis.json new file mode 100644 index 00000000..9696c62c --- /dev/null +++ b/_data/icons/oasis.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreiespupb52akiwrexxg7g72mh7m7h7lum5hmqijmpdh3kmuunzclha", + "width": 2000, + "height": 2000, + "format": "png" + } +] From 52f9c1d3b6d4ce35a936deb8f66d4ba4ffdffff0 Mon Sep 17 00:00:00 2001 From: SolidityX <88942434+solidityx@users.noreply.github.com> Date: Sun, 26 Dec 2021 22:50:03 +0530 Subject: [PATCH 31/53] Please add Dithereum Mainnet on Chain ID 24 (#711) * Create dithereum.json * Create eip155-34.json * Create ditherscan.json * added standard in explorer for dithereum testnet * removed explorer details for now. * Update _data/icons/dithereum.json * Update _data/icons/dithereum.json * Update _data/chains/eip155-34.json * Update _data/chains/eip155-34.json * changed RPC URL * Create eip155-24.json * changed shortName to make it unique * Update _data/chains/eip155-24.json Co-authored-by: ligi --- _data/chains/eip155-24.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 _data/chains/eip155-24.json diff --git a/_data/chains/eip155-24.json b/_data/chains/eip155-24.json new file mode 100644 index 00000000..c729c013 --- /dev/null +++ b/_data/chains/eip155-24.json @@ -0,0 +1,21 @@ +{ + "name": "Dithereum Mainnet", + "chain": "DTH", + "network": "mainnet", + "icon": "dithereum", + "rpc": [ + "https://node-mainnet.dithereum.io" + ], + "faucets": [ + "https://faucet.dithereum.org" + ], + "nativeCurrency": { + "name": "Dither", + "symbol": "DTH", + "decimals": 18 + }, + "infoURL": "https://dithereum.org", + "shortName": "dthmainnet", + "chainId": 24, + "networkId": 24 +} From bbc896d285ebf4fd56848ab25d2ca486f81f164c Mon Sep 17 00:00:00 2001 From: Erin Shaben Date: Wed, 29 Dec 2021 15:48:47 -0500 Subject: [PATCH 32/53] update rpc urls for Moonbase Alpha (#717) --- _data/chains/eip155-1287.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/chains/eip155-1287.json b/_data/chains/eip155-1287.json index 9c0f6745..05928a09 100644 --- a/_data/chains/eip155-1287.json +++ b/_data/chains/eip155-1287.json @@ -3,8 +3,8 @@ "chain": "MOON", "network": "moonbase", "rpc": [ - "https://rpc.testnet.moonbeam.network", - "wss://wss.testnet.moonbeam.network" + "https://rpc.api.moonbase.moonbeam.network", + "wss://wss.api.moonbase.moonbeam.network" ], "faucets": [], "nativeCurrency": { From 5e113833a576526fad035bd71abe67168ad89238 Mon Sep 17 00:00:00 2001 From: ligi Date: Wed, 29 Dec 2021 22:19:53 +0100 Subject: [PATCH 33/53] Unshadow name extraFields --- src/main/kotlin/org/ethereum/lists/chains/Main.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/kotlin/org/ethereum/lists/chains/Main.kt b/src/main/kotlin/org/ethereum/lists/chains/Main.kt index b0caef1b..523ca1ce 100644 --- a/src/main/kotlin/org/ethereum/lists/chains/Main.kt +++ b/src/main/kotlin/org/ethereum/lists/chains/Main.kt @@ -220,9 +220,9 @@ fun checkChain(chainFile: File, connectRPC: Boolean) { throw ParentMustHaveChainAndType() } - val extraFields = it.keys - setOf("chain", "type", "bridges") - if (extraFields.isNotEmpty()) { - throw ParentHasExtraFields(extraFields) + val extraParentFields = it.keys - setOf("chain", "type", "bridges") + if (extraParentFields.isNotEmpty()) { + throw ParentHasExtraFields(extraParentFields) } val bridges = it["bridges"] From ccbf55afd689a0a43a116d63f6e72f751e920130 Mon Sep 17 00:00:00 2001 From: ligi Date: Wed, 29 Dec 2021 22:08:15 +0100 Subject: [PATCH 34/53] Add Explorer field to model --- .../kotlin/org/ethereum/lists/chains/Main.kt | 4 ++-- .../org/ethereum/lists/chains/model/Chain.kt | 19 ++++++++++--------- .../ethereum/lists/chains/model/Explorer.kt | 7 +++++++ .../ethereum/lists/chains/TheChainChecker.kt | 2 +- .../eip155-1.json} | 5 +++++ .../invalid/sameshortname/eip155-1.json | 5 +++++ 6 files changed, 30 insertions(+), 12 deletions(-) create mode 100644 src/main/kotlin/org/ethereum/lists/chains/model/Explorer.kt rename src/test/resources/test_chains/invalid/{eip155-extracomma.json => extracomma/eip155-1.json} (76%) diff --git a/src/main/kotlin/org/ethereum/lists/chains/Main.kt b/src/main/kotlin/org/ethereum/lists/chains/Main.kt index 523ca1ce..ff65b415 100644 --- a/src/main/kotlin/org/ethereum/lists/chains/Main.kt +++ b/src/main/kotlin/org/ethereum/lists/chains/Main.kt @@ -138,8 +138,6 @@ fun checkIcon(icon: File) { fun checkChain(chainFile: File, connectRPC: Boolean) { println("processing $chainFile") - parseWithMoshi(chainFile) - val jsonObject = Klaxon().parseJsonObject(chainFile.reader()) val chainAsLong = getNumber(jsonObject, "chainId") @@ -248,6 +246,8 @@ fun checkChain(chainFile: File, connectRPC: Boolean) { } + parseWithMoshi(chainFile) + if (connectRPC) { if (jsonObject["rpc"] is List<*>) { (jsonObject["rpc"] as List<*>).forEach { diff --git a/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt b/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt index 86d29ec1..e65077dd 100644 --- a/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt +++ b/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt @@ -1,13 +1,14 @@ package org.ethereum.lists.chains.model data class Chain( - val name: String, - val shortName: String, - val chain: String, - val network: String, - val chainId: Long, - val networkId: Long, - val rpc: List, - val faucets: List, - val infoURL: String, + val name: String, + val shortName: String, + val chain: String, + val network: String, + val chainId: Long, + val networkId: Long, + val rpc: List, + val faucets: List, + val explorers: List?, + val infoURL: String, ) \ No newline at end of file diff --git a/src/main/kotlin/org/ethereum/lists/chains/model/Explorer.kt b/src/main/kotlin/org/ethereum/lists/chains/model/Explorer.kt new file mode 100644 index 00000000..932d9119 --- /dev/null +++ b/src/main/kotlin/org/ethereum/lists/chains/model/Explorer.kt @@ -0,0 +1,7 @@ +package org.ethereum.lists.chains.model + +data class Explorer( + val name: String, + val url: String, + val standard: String +) \ No newline at end of file diff --git a/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt b/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt index bd3c3ad4..19a0a681 100644 --- a/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt +++ b/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt @@ -172,7 +172,7 @@ class TheChainChecker { @Test(expected = JsonEncodingException::class) fun shouldFailForExtraComma() { - val file = getFile("invalid/eip155-extracomma.json") + val file = getFile("invalid/extracomma/eip155-1.json") checkChain(file, false) } diff --git a/src/test/resources/test_chains/invalid/eip155-extracomma.json b/src/test/resources/test_chains/invalid/extracomma/eip155-1.json similarity index 76% rename from src/test/resources/test_chains/invalid/eip155-extracomma.json rename to src/test/resources/test_chains/invalid/extracomma/eip155-1.json index 8fa947c1..4d18cd85 100644 --- a/src/test/resources/test_chains/invalid/eip155-extracomma.json +++ b/src/test/resources/test_chains/invalid/extracomma/eip155-1.json @@ -9,6 +9,11 @@ "https://mainnet.infura.io/v3/${INFURA_API_KEY}", "https://api.mycryptoapi.com/eth" ], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, "faucets": [], "infoURL": "https://ethereum.org", } diff --git a/src/test/resources/test_chains/invalid/sameshortname/eip155-1.json b/src/test/resources/test_chains/invalid/sameshortname/eip155-1.json index d3f9eee1..104eaab3 100644 --- a/src/test/resources/test_chains/invalid/sameshortname/eip155-1.json +++ b/src/test/resources/test_chains/invalid/sameshortname/eip155-1.json @@ -9,6 +9,11 @@ "https://mainnet.infura.io/v3/${INFURA_API_KEY}", "https://api.mycryptoapi.com/eth" ], + "nativeCurrency": { + "name": "Görli Ether", + "symbol": "GOR", + "decimals": 18 + }, "faucets": [], "infoURL": "https://ethereum.org" } From b75b0dc30b16848c59641b36400b7cc299e7f644 Mon Sep 17 00:00:00 2001 From: ligi Date: Wed, 29 Dec 2021 22:15:10 +0100 Subject: [PATCH 35/53] Use gradle 7.3.3 --- gradle/wrapper/gradle-wrapper.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index fbce071a..669386b8 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists From 4aa4314d51421330387d9131ce4b45a60a37cbc0 Mon Sep 17 00:00:00 2001 From: ligi Date: Wed, 29 Dec 2021 22:18:00 +0100 Subject: [PATCH 36/53] Move chain 9100 to correct folder --- eip155-9100.json => _data/chains/eip155-9100.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename eip155-9100.json => _data/chains/eip155-9100.json (100%) diff --git a/eip155-9100.json b/_data/chains/eip155-9100.json similarity index 100% rename from eip155-9100.json rename to _data/chains/eip155-9100.json From dfba60a7b8a912b9ea6471ca6e760d6678428509 Mon Sep 17 00:00:00 2001 From: ligi Date: Thu, 30 Dec 2021 07:34:57 +0100 Subject: [PATCH 37/53] Split out the model to extra module --- build.gradle | 28 +------------------ model/build.gradle | 15 ++++++++++ .../org/ethereum/lists/chains/model/Chain.kt | 0 .../ethereum/lists/chains/model/Explorer.kt | 0 processor/build.gradle | 28 +++++++++++++++++++ .../kotlin/org/ethereum/lists/chains/Env.kt | 0 .../kotlin/org/ethereum/lists/chains/Main.kt | 8 ++++-- .../ethereum/lists/chains/model/Exceptions.kt | 0 .../ethereum/lists/chains/TheChainChecker.kt | 0 .../test_chains/invalid/eip155-1.json | 0 .../test_chains/invalid/eip155-1.nojson | 0 .../test_chains/invalid/eip155-100.json | 0 .../test_chains/invalid/eip155-101.json | 0 .../test_chains/invalid/eip155-102.json | 0 .../test_chains/invalid/eip155-2.json | 0 .../test_chains/invalid/eip155-3.json | 0 .../test_chains/invalid/eip155-4.json | 0 .../test_chains/invalid/eip155-99.json | 0 .../invalid/eip155-invalid_filename.json | 0 .../invalid/explorerinvalidurl/eip155-1.json | 0 .../invalid/explorermissingurl/eip155-1.json | 0 .../invalid/explorernoname/eip155-1.json | 0 .../invalid/explorersnotarray/eip155-1.json | 0 .../invalid/extracomma/eip155-1.json | 0 .../invalid/sameshortname/eip155-1.json | 0 .../invalid/sameshortname/eip155-5.json | 0 .../withparentchaindoesnotexist/eip155-2.json | 0 .../eip155-2.json | 0 .../withparentextrabridgesfield/eip155-2.json | 0 .../eip155-2.json | 0 .../withparentextrafield/eip155-2.json | 0 .../withparentinvalidtype/eip155-2.json | 0 .../invalid/withparentnobject/eip155-2.json | 0 .../wrongexplorerstandard/eip155-1.json | 0 .../resources/test_chains/valid/eip155-1.json | 0 .../resources/test_chains/valid/eip155-5.json | 0 .../valid/withexplorer/eip155-1.json | 0 .../valid/withexplorer/eip155-2.json | 0 .../valid/withparent/eip155-1.json | 0 .../valid/withparent/eip155-2.json | 0 .../valid/withparentbridge/eip155-1.json | 0 .../valid/withparentbridge/eip155-2.json | 0 settings.gradle.kts | 2 ++ 43 files changed, 51 insertions(+), 30 deletions(-) create mode 100644 model/build.gradle rename {src => model/src}/main/kotlin/org/ethereum/lists/chains/model/Chain.kt (100%) rename {src => model/src}/main/kotlin/org/ethereum/lists/chains/model/Explorer.kt (100%) create mode 100644 processor/build.gradle rename {src => processor/src}/main/kotlin/org/ethereum/lists/chains/Env.kt (100%) rename {src => processor/src}/main/kotlin/org/ethereum/lists/chains/Main.kt (97%) rename {src => processor/src}/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt (100%) rename {src => processor/src}/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt (100%) rename {src => processor/src}/test/resources/test_chains/invalid/eip155-1.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/eip155-1.nojson (100%) rename {src => processor/src}/test/resources/test_chains/invalid/eip155-100.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/eip155-101.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/eip155-102.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/eip155-2.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/eip155-3.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/eip155-4.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/eip155-99.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/eip155-invalid_filename.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/explorerinvalidurl/eip155-1.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/explorermissingurl/eip155-1.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/explorernoname/eip155-1.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/explorersnotarray/eip155-1.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/extracomma/eip155-1.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/sameshortname/eip155-1.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/sameshortname/eip155-5.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/withparentchaindoesnotexist/eip155-2.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/withparentextrabridgeelementnoobject/eip155-2.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/withparentextrabridgesfield/eip155-2.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/withparentextrabridgesnoarray/eip155-2.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/withparentextrafield/eip155-2.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/withparentinvalidtype/eip155-2.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/withparentnobject/eip155-2.json (100%) rename {src => processor/src}/test/resources/test_chains/invalid/wrongexplorerstandard/eip155-1.json (100%) rename {src => processor/src}/test/resources/test_chains/valid/eip155-1.json (100%) rename {src => processor/src}/test/resources/test_chains/valid/eip155-5.json (100%) rename {src => processor/src}/test/resources/test_chains/valid/withexplorer/eip155-1.json (100%) rename {src => processor/src}/test/resources/test_chains/valid/withexplorer/eip155-2.json (100%) rename {src => processor/src}/test/resources/test_chains/valid/withparent/eip155-1.json (100%) rename {src => processor/src}/test/resources/test_chains/valid/withparent/eip155-2.json (100%) rename {src => processor/src}/test/resources/test_chains/valid/withparentbridge/eip155-1.json (100%) rename {src => processor/src}/test/resources/test_chains/valid/withparentbridge/eip155-2.json (100%) create mode 100644 settings.gradle.kts diff --git a/build.gradle b/build.gradle index eace1084..c97da999 100644 --- a/build.gradle +++ b/build.gradle @@ -14,30 +14,4 @@ buildscript { } } -apply plugin: "kotlin" -apply plugin: "application" -apply plugin: "com.github.ben-manes.versions" - -mainClassName = "org.ethereum.lists.chains.MainKt" - -repositories { - mavenCentral() - maven { url 'https://jitpack.io' } -} - -dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN_VERSION}" - - implementation "com.github.komputing.kethereum:rpc:${KETHEREUM_VERSION}" - implementation "com.github.komputing.kethereum:model:${KETHEREUM_VERSION}" - implementation "com.github.komputing.kethereum:erc55:${KETHEREUM_VERSION}" - implementation "com.github.komputing.kethereum:crypto_impl_bouncycastle:${KETHEREUM_VERSION}" - - implementation 'com.beust:klaxon:5.5' - implementation 'com.squareup.moshi:moshi-kotlin:1.13.0' - implementation 'com.squareup.okhttp3:okhttp:4.9.3' - - testImplementation "org.jetbrains.kotlin:kotlin-test:${KOTLIN_VERSION}" - testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN_VERSION}" -} - +apply plugin: "com.github.ben-manes.versions" \ No newline at end of file diff --git a/model/build.gradle b/model/build.gradle new file mode 100644 index 00000000..87f496b4 --- /dev/null +++ b/model/build.gradle @@ -0,0 +1,15 @@ +apply plugin: "kotlin" + +repositories { + mavenCentral() + maven { url 'https://jitpack.io' } +} + +dependencies { + implementation "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN_VERSION}" + + implementation 'com.squareup.moshi:moshi-kotlin:1.13.0' + implementation 'com.squareup.okhttp3:okhttp:4.9.3' + +} + diff --git a/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt b/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt similarity index 100% rename from src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt rename to model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt diff --git a/src/main/kotlin/org/ethereum/lists/chains/model/Explorer.kt b/model/src/main/kotlin/org/ethereum/lists/chains/model/Explorer.kt similarity index 100% rename from src/main/kotlin/org/ethereum/lists/chains/model/Explorer.kt rename to model/src/main/kotlin/org/ethereum/lists/chains/model/Explorer.kt diff --git a/processor/build.gradle b/processor/build.gradle new file mode 100644 index 00000000..1b4b6eb9 --- /dev/null +++ b/processor/build.gradle @@ -0,0 +1,28 @@ +apply plugin: "kotlin" +apply plugin: "application" + +mainClassName = "org.ethereum.lists.chains.MainKt" + +repositories { + mavenCentral() + maven { url 'https://jitpack.io' } +} + +dependencies { + implementation "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN_VERSION}" + + implementation "com.github.komputing.kethereum:rpc:${KETHEREUM_VERSION}" + implementation "com.github.komputing.kethereum:model:${KETHEREUM_VERSION}" + implementation "com.github.komputing.kethereum:erc55:${KETHEREUM_VERSION}" + implementation "com.github.komputing.kethereum:crypto_impl_bouncycastle:${KETHEREUM_VERSION}" + + implementation 'com.beust:klaxon:5.5' + implementation 'com.squareup.moshi:moshi-kotlin:1.13.0' + implementation 'com.squareup.okhttp3:okhttp:4.9.3' + + implementation project(":model") + + testImplementation "org.jetbrains.kotlin:kotlin-test:${KOTLIN_VERSION}" + testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN_VERSION}" +} + diff --git a/src/main/kotlin/org/ethereum/lists/chains/Env.kt b/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt similarity index 100% rename from src/main/kotlin/org/ethereum/lists/chains/Env.kt rename to processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt diff --git a/src/main/kotlin/org/ethereum/lists/chains/Main.kt b/processor/src/main/kotlin/org/ethereum/lists/chains/Main.kt similarity index 97% rename from src/main/kotlin/org/ethereum/lists/chains/Main.kt rename to processor/src/main/kotlin/org/ethereum/lists/chains/Main.kt index ff65b415..904d62f6 100644 --- a/src/main/kotlin/org/ethereum/lists/chains/Main.kt +++ b/processor/src/main/kotlin/org/ethereum/lists/chains/Main.kt @@ -12,9 +12,11 @@ import org.kethereum.rpc.HttpEthereumRPC val parsedShortNames = mutableSetOf() val parsedNames = mutableSetOf() -val iconsPath = File("_data/icons") +val basePath = File("..") +val dataPath = File(basePath, "_data") +val iconsPath = File(dataPath, "icons") -val chainsPath = File("_data/chains") +val chainsPath = File(dataPath, "chains") private val allFiles = chainsPath.listFiles() ?: error("$chainsPath must contain the chain json files - but it does not") private val allChainFiles = allFiles.filter { !it.isDirectory } @@ -26,7 +28,7 @@ fun main(args: Array) { } private fun createOutputFiles() { - val buildPath = File("output").apply { mkdir() } + val buildPath = File(basePath, "output").apply { mkdir() } val chainJSONArray = JsonArray() val miniChainJSONArray = JsonArray() diff --git a/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt b/processor/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt similarity index 100% rename from src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt rename to processor/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt diff --git a/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt b/processor/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt similarity index 100% rename from src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt rename to processor/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt diff --git a/src/test/resources/test_chains/invalid/eip155-1.json b/processor/src/test/resources/test_chains/invalid/eip155-1.json similarity index 100% rename from src/test/resources/test_chains/invalid/eip155-1.json rename to processor/src/test/resources/test_chains/invalid/eip155-1.json diff --git a/src/test/resources/test_chains/invalid/eip155-1.nojson b/processor/src/test/resources/test_chains/invalid/eip155-1.nojson similarity index 100% rename from src/test/resources/test_chains/invalid/eip155-1.nojson rename to processor/src/test/resources/test_chains/invalid/eip155-1.nojson diff --git a/src/test/resources/test_chains/invalid/eip155-100.json b/processor/src/test/resources/test_chains/invalid/eip155-100.json similarity index 100% rename from src/test/resources/test_chains/invalid/eip155-100.json rename to processor/src/test/resources/test_chains/invalid/eip155-100.json diff --git a/src/test/resources/test_chains/invalid/eip155-101.json b/processor/src/test/resources/test_chains/invalid/eip155-101.json similarity index 100% rename from src/test/resources/test_chains/invalid/eip155-101.json rename to processor/src/test/resources/test_chains/invalid/eip155-101.json diff --git a/src/test/resources/test_chains/invalid/eip155-102.json b/processor/src/test/resources/test_chains/invalid/eip155-102.json similarity index 100% rename from src/test/resources/test_chains/invalid/eip155-102.json rename to processor/src/test/resources/test_chains/invalid/eip155-102.json diff --git a/src/test/resources/test_chains/invalid/eip155-2.json b/processor/src/test/resources/test_chains/invalid/eip155-2.json similarity index 100% rename from src/test/resources/test_chains/invalid/eip155-2.json rename to processor/src/test/resources/test_chains/invalid/eip155-2.json diff --git a/src/test/resources/test_chains/invalid/eip155-3.json b/processor/src/test/resources/test_chains/invalid/eip155-3.json similarity index 100% rename from src/test/resources/test_chains/invalid/eip155-3.json rename to processor/src/test/resources/test_chains/invalid/eip155-3.json diff --git a/src/test/resources/test_chains/invalid/eip155-4.json b/processor/src/test/resources/test_chains/invalid/eip155-4.json similarity index 100% rename from src/test/resources/test_chains/invalid/eip155-4.json rename to processor/src/test/resources/test_chains/invalid/eip155-4.json diff --git a/src/test/resources/test_chains/invalid/eip155-99.json b/processor/src/test/resources/test_chains/invalid/eip155-99.json similarity index 100% rename from src/test/resources/test_chains/invalid/eip155-99.json rename to processor/src/test/resources/test_chains/invalid/eip155-99.json diff --git a/src/test/resources/test_chains/invalid/eip155-invalid_filename.json b/processor/src/test/resources/test_chains/invalid/eip155-invalid_filename.json similarity index 100% rename from src/test/resources/test_chains/invalid/eip155-invalid_filename.json rename to processor/src/test/resources/test_chains/invalid/eip155-invalid_filename.json diff --git a/src/test/resources/test_chains/invalid/explorerinvalidurl/eip155-1.json b/processor/src/test/resources/test_chains/invalid/explorerinvalidurl/eip155-1.json similarity index 100% rename from src/test/resources/test_chains/invalid/explorerinvalidurl/eip155-1.json rename to processor/src/test/resources/test_chains/invalid/explorerinvalidurl/eip155-1.json diff --git a/src/test/resources/test_chains/invalid/explorermissingurl/eip155-1.json b/processor/src/test/resources/test_chains/invalid/explorermissingurl/eip155-1.json similarity index 100% rename from src/test/resources/test_chains/invalid/explorermissingurl/eip155-1.json rename to processor/src/test/resources/test_chains/invalid/explorermissingurl/eip155-1.json diff --git a/src/test/resources/test_chains/invalid/explorernoname/eip155-1.json b/processor/src/test/resources/test_chains/invalid/explorernoname/eip155-1.json similarity index 100% rename from src/test/resources/test_chains/invalid/explorernoname/eip155-1.json rename to processor/src/test/resources/test_chains/invalid/explorernoname/eip155-1.json diff --git a/src/test/resources/test_chains/invalid/explorersnotarray/eip155-1.json b/processor/src/test/resources/test_chains/invalid/explorersnotarray/eip155-1.json similarity index 100% rename from src/test/resources/test_chains/invalid/explorersnotarray/eip155-1.json rename to processor/src/test/resources/test_chains/invalid/explorersnotarray/eip155-1.json diff --git a/src/test/resources/test_chains/invalid/extracomma/eip155-1.json b/processor/src/test/resources/test_chains/invalid/extracomma/eip155-1.json similarity index 100% rename from src/test/resources/test_chains/invalid/extracomma/eip155-1.json rename to processor/src/test/resources/test_chains/invalid/extracomma/eip155-1.json diff --git a/src/test/resources/test_chains/invalid/sameshortname/eip155-1.json b/processor/src/test/resources/test_chains/invalid/sameshortname/eip155-1.json similarity index 100% rename from src/test/resources/test_chains/invalid/sameshortname/eip155-1.json rename to processor/src/test/resources/test_chains/invalid/sameshortname/eip155-1.json diff --git a/src/test/resources/test_chains/invalid/sameshortname/eip155-5.json b/processor/src/test/resources/test_chains/invalid/sameshortname/eip155-5.json similarity index 100% rename from src/test/resources/test_chains/invalid/sameshortname/eip155-5.json rename to processor/src/test/resources/test_chains/invalid/sameshortname/eip155-5.json diff --git a/src/test/resources/test_chains/invalid/withparentchaindoesnotexist/eip155-2.json b/processor/src/test/resources/test_chains/invalid/withparentchaindoesnotexist/eip155-2.json similarity index 100% rename from src/test/resources/test_chains/invalid/withparentchaindoesnotexist/eip155-2.json rename to processor/src/test/resources/test_chains/invalid/withparentchaindoesnotexist/eip155-2.json diff --git a/src/test/resources/test_chains/invalid/withparentextrabridgeelementnoobject/eip155-2.json b/processor/src/test/resources/test_chains/invalid/withparentextrabridgeelementnoobject/eip155-2.json similarity index 100% rename from src/test/resources/test_chains/invalid/withparentextrabridgeelementnoobject/eip155-2.json rename to processor/src/test/resources/test_chains/invalid/withparentextrabridgeelementnoobject/eip155-2.json diff --git a/src/test/resources/test_chains/invalid/withparentextrabridgesfield/eip155-2.json b/processor/src/test/resources/test_chains/invalid/withparentextrabridgesfield/eip155-2.json similarity index 100% rename from src/test/resources/test_chains/invalid/withparentextrabridgesfield/eip155-2.json rename to processor/src/test/resources/test_chains/invalid/withparentextrabridgesfield/eip155-2.json diff --git a/src/test/resources/test_chains/invalid/withparentextrabridgesnoarray/eip155-2.json b/processor/src/test/resources/test_chains/invalid/withparentextrabridgesnoarray/eip155-2.json similarity index 100% rename from src/test/resources/test_chains/invalid/withparentextrabridgesnoarray/eip155-2.json rename to processor/src/test/resources/test_chains/invalid/withparentextrabridgesnoarray/eip155-2.json diff --git a/src/test/resources/test_chains/invalid/withparentextrafield/eip155-2.json b/processor/src/test/resources/test_chains/invalid/withparentextrafield/eip155-2.json similarity index 100% rename from src/test/resources/test_chains/invalid/withparentextrafield/eip155-2.json rename to processor/src/test/resources/test_chains/invalid/withparentextrafield/eip155-2.json diff --git a/src/test/resources/test_chains/invalid/withparentinvalidtype/eip155-2.json b/processor/src/test/resources/test_chains/invalid/withparentinvalidtype/eip155-2.json similarity index 100% rename from src/test/resources/test_chains/invalid/withparentinvalidtype/eip155-2.json rename to processor/src/test/resources/test_chains/invalid/withparentinvalidtype/eip155-2.json diff --git a/src/test/resources/test_chains/invalid/withparentnobject/eip155-2.json b/processor/src/test/resources/test_chains/invalid/withparentnobject/eip155-2.json similarity index 100% rename from src/test/resources/test_chains/invalid/withparentnobject/eip155-2.json rename to processor/src/test/resources/test_chains/invalid/withparentnobject/eip155-2.json diff --git a/src/test/resources/test_chains/invalid/wrongexplorerstandard/eip155-1.json b/processor/src/test/resources/test_chains/invalid/wrongexplorerstandard/eip155-1.json similarity index 100% rename from src/test/resources/test_chains/invalid/wrongexplorerstandard/eip155-1.json rename to processor/src/test/resources/test_chains/invalid/wrongexplorerstandard/eip155-1.json diff --git a/src/test/resources/test_chains/valid/eip155-1.json b/processor/src/test/resources/test_chains/valid/eip155-1.json similarity index 100% rename from src/test/resources/test_chains/valid/eip155-1.json rename to processor/src/test/resources/test_chains/valid/eip155-1.json diff --git a/src/test/resources/test_chains/valid/eip155-5.json b/processor/src/test/resources/test_chains/valid/eip155-5.json similarity index 100% rename from src/test/resources/test_chains/valid/eip155-5.json rename to processor/src/test/resources/test_chains/valid/eip155-5.json diff --git a/src/test/resources/test_chains/valid/withexplorer/eip155-1.json b/processor/src/test/resources/test_chains/valid/withexplorer/eip155-1.json similarity index 100% rename from src/test/resources/test_chains/valid/withexplorer/eip155-1.json rename to processor/src/test/resources/test_chains/valid/withexplorer/eip155-1.json diff --git a/src/test/resources/test_chains/valid/withexplorer/eip155-2.json b/processor/src/test/resources/test_chains/valid/withexplorer/eip155-2.json similarity index 100% rename from src/test/resources/test_chains/valid/withexplorer/eip155-2.json rename to processor/src/test/resources/test_chains/valid/withexplorer/eip155-2.json diff --git a/src/test/resources/test_chains/valid/withparent/eip155-1.json b/processor/src/test/resources/test_chains/valid/withparent/eip155-1.json similarity index 100% rename from src/test/resources/test_chains/valid/withparent/eip155-1.json rename to processor/src/test/resources/test_chains/valid/withparent/eip155-1.json diff --git a/src/test/resources/test_chains/valid/withparent/eip155-2.json b/processor/src/test/resources/test_chains/valid/withparent/eip155-2.json similarity index 100% rename from src/test/resources/test_chains/valid/withparent/eip155-2.json rename to processor/src/test/resources/test_chains/valid/withparent/eip155-2.json diff --git a/src/test/resources/test_chains/valid/withparentbridge/eip155-1.json b/processor/src/test/resources/test_chains/valid/withparentbridge/eip155-1.json similarity index 100% rename from src/test/resources/test_chains/valid/withparentbridge/eip155-1.json rename to processor/src/test/resources/test_chains/valid/withparentbridge/eip155-1.json diff --git a/src/test/resources/test_chains/valid/withparentbridge/eip155-2.json b/processor/src/test/resources/test_chains/valid/withparentbridge/eip155-2.json similarity index 100% rename from src/test/resources/test_chains/valid/withparentbridge/eip155-2.json rename to processor/src/test/resources/test_chains/valid/withparentbridge/eip155-2.json diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 00000000..7befe42f --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,2 @@ +include(":model") +include(":processor") \ No newline at end of file From 70f175e5e13cce83479be1552f809374cd3047b7 Mon Sep 17 00:00:00 2001 From: ligi Date: Thu, 30 Dec 2021 08:06:07 +0100 Subject: [PATCH 38/53] Move to moshi ksp codegen instead of reflection and DRY up gradle files --- build.gradle | 9 +++++++++ model/build.gradle | 11 ++++------- .../kotlin/org/ethereum/lists/chains/model/Chain.kt | 3 +++ .../org/ethereum/lists/chains/model/Explorer.kt | 3 +++ processor/build.gradle | 8 +------- .../src/main/kotlin/org/ethereum/lists/chains/Env.kt | 3 +-- 6 files changed, 21 insertions(+), 16 deletions(-) diff --git a/build.gradle b/build.gradle index c97da999..9d8f1173 100644 --- a/build.gradle +++ b/build.gradle @@ -14,4 +14,13 @@ buildscript { } } +subprojects { + apply plugin: "kotlin" + + repositories { + mavenCentral() + maven { url 'https://jitpack.io' } + } +} + apply plugin: "com.github.ben-manes.versions" \ No newline at end of file diff --git a/model/build.gradle b/model/build.gradle index 87f496b4..0398edc1 100644 --- a/model/build.gradle +++ b/model/build.gradle @@ -1,15 +1,12 @@ -apply plugin: "kotlin" - -repositories { - mavenCentral() - maven { url 'https://jitpack.io' } +plugins { + id("com.google.devtools.ksp").version("1.6.10-1.0.2") } dependencies { + ksp("com.squareup.moshi:moshi-kotlin-codegen:1.13.0") implementation "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN_VERSION}" - implementation 'com.squareup.moshi:moshi-kotlin:1.13.0' + implementation 'com.squareup.moshi:moshi:1.13.0' implementation 'com.squareup.okhttp3:okhttp:4.9.3' - } diff --git a/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt b/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt index e65077dd..3e7b7bed 100644 --- a/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt +++ b/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt @@ -1,5 +1,8 @@ package org.ethereum.lists.chains.model +import com.squareup.moshi.JsonClass + +@JsonClass(generateAdapter = true) data class Chain( val name: String, val shortName: String, diff --git a/model/src/main/kotlin/org/ethereum/lists/chains/model/Explorer.kt b/model/src/main/kotlin/org/ethereum/lists/chains/model/Explorer.kt index 932d9119..0da3eba7 100644 --- a/model/src/main/kotlin/org/ethereum/lists/chains/model/Explorer.kt +++ b/model/src/main/kotlin/org/ethereum/lists/chains/model/Explorer.kt @@ -1,5 +1,8 @@ package org.ethereum.lists.chains.model +import com.squareup.moshi.JsonClass + +@JsonClass(generateAdapter = true) data class Explorer( val name: String, val url: String, diff --git a/processor/build.gradle b/processor/build.gradle index 1b4b6eb9..3954b70d 100644 --- a/processor/build.gradle +++ b/processor/build.gradle @@ -1,13 +1,7 @@ -apply plugin: "kotlin" apply plugin: "application" mainClassName = "org.ethereum.lists.chains.MainKt" -repositories { - mavenCentral() - maven { url 'https://jitpack.io' } -} - dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN_VERSION}" @@ -17,7 +11,7 @@ dependencies { implementation "com.github.komputing.kethereum:crypto_impl_bouncycastle:${KETHEREUM_VERSION}" implementation 'com.beust:klaxon:5.5' - implementation 'com.squareup.moshi:moshi-kotlin:1.13.0' + implementation 'com.squareup.moshi:moshi:1.13.0' implementation 'com.squareup.okhttp3:okhttp:4.9.3' implementation project(":model") diff --git a/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt b/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt index 74ef5bdf..7fb8cdf0 100644 --- a/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt +++ b/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt @@ -2,7 +2,6 @@ package org.ethereum.lists.chains import com.squareup.moshi.JsonAdapter import com.squareup.moshi.Moshi -import com.squareup.moshi.kotlin.reflect.KotlinJsonAdapterFactory import org.ethereum.lists.chains.model.Chain val mandatory_fields = listOf( @@ -25,5 +24,5 @@ val optionalFields = listOf( "parent" ) -val moshi: Moshi = Moshi.Builder().add(KotlinJsonAdapterFactory()).build() +val moshi: Moshi = Moshi.Builder().build() val chainAdapter: JsonAdapter = moshi.adapter(Chain::class.java) From bec23dbc0af1d1e86f4da644ed89c8b09aefaede Mon Sep 17 00:00:00 2001 From: ligi Date: Thu, 30 Dec 2021 09:00:08 +0100 Subject: [PATCH 39/53] Add maven plugin and migrate to kts --- model/build.gradle | 12 ------------ model/build.gradle.kts | 23 +++++++++++++++++++++++ 2 files changed, 23 insertions(+), 12 deletions(-) delete mode 100644 model/build.gradle create mode 100644 model/build.gradle.kts diff --git a/model/build.gradle b/model/build.gradle deleted file mode 100644 index 0398edc1..00000000 --- a/model/build.gradle +++ /dev/null @@ -1,12 +0,0 @@ -plugins { - id("com.google.devtools.ksp").version("1.6.10-1.0.2") -} - -dependencies { - ksp("com.squareup.moshi:moshi-kotlin-codegen:1.13.0") - implementation "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN_VERSION}" - - implementation 'com.squareup.moshi:moshi:1.13.0' - implementation 'com.squareup.okhttp3:okhttp:4.9.3' -} - diff --git a/model/build.gradle.kts b/model/build.gradle.kts new file mode 100644 index 00000000..1d4c3158 --- /dev/null +++ b/model/build.gradle.kts @@ -0,0 +1,23 @@ +plugins { + id("com.google.devtools.ksp").version("1.6.10-1.0.2") + id("maven-publish") +} + +publishing { + publications { + create("maven") { + version = "1.0" + + from(components["java"]) + } + } +} + +dependencies { + ksp("com.squareup.moshi:moshi-kotlin-codegen:1.13.0") + implementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.10") + + implementation("com.squareup.moshi:moshi:1.13.0") + implementation("com.squareup.okhttp3:okhttp:4.9.3") +} + From 40108ff4752e7c09589a595d6ea2eb21eeaaa3d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Dec 2021 23:21:18 +0100 Subject: [PATCH 40/53] Bump gradle-versions-plugin from 0.39.0 to 0.40.0 (#720) Bumps [gradle-versions-plugin](https://github.com/ben-manes/gradle-versions-plugin) from 0.39.0 to 0.40.0. - [Release notes](https://github.com/ben-manes/gradle-versions-plugin/releases) - [Commits](https://github.com/ben-manes/gradle-versions-plugin/compare/v0.39.0...v0.40.0) --- updated-dependencies: - dependency-name: com.github.ben-manes:gradle-versions-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 9d8f1173..cf16a116 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ buildscript { dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${KOTLIN_VERSION}" - classpath 'com.github.ben-manes:gradle-versions-plugin:0.39.0' + classpath 'com.github.ben-manes:gradle-versions-plugin:0.40.0' } } From fc51b2ebf2ab3492d5b74069a87c9a58109f2c43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Federico=20Kunze=20K=C3=BCllmer?= <31522760+fedekunze@users.noreply.github.com> Date: Thu, 30 Dec 2021 23:21:28 +0100 Subject: [PATCH 41/53] Add Evmos mainnet (#719) * evmos testnet * shortName * rename file * add Evmos mainnet * update Evmos testnet --- _data/chains/eip155-9001.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 _data/chains/eip155-9001.json diff --git a/_data/chains/eip155-9001.json b/_data/chains/eip155-9001.json new file mode 100644 index 00000000..54f5837d --- /dev/null +++ b/_data/chains/eip155-9001.json @@ -0,0 +1,28 @@ +{ + "name": "Evmos", + "chain": "Evmos", + "network": "mainnet", + "rpc": ["https://ethereum.rpc.evmos.org"], + "faucets": [], + "nativeCurrency": { + "name": "Evmos", + "symbol": "EVMOS", + "decimals": 18 + }, + "infoURL": "https://evmos.org", + "shortName": "evmos", + "chainId": 9001, + "networkId": 9001, + "explorers": [ + { + "name": "Evmos EVM Explorer (Blockscout)", + "url": "https://evm.evmos.org", + "standard": "none" + }, + { + "name": "Evmos Cosmos Explorer (Big Dipper)", + "url": "https://explorer.evmos.org", + "standard": "none" + } + ] +} From 02b0a54d6e1b0e3e5fc167ac25d952ca0298fa6a Mon Sep 17 00:00:00 2001 From: ligi Date: Fri, 31 Dec 2021 09:44:17 +0100 Subject: [PATCH 42/53] Introduce title field (#722) Mainly to make name shorter - needs more BackFilling --- _data/chains/eip155-1337702.json | 3 ++- _data/chains/eip155-5.json | 3 ++- model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt | 1 + processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt | 1 + processor/src/test/resources/test_chains/invalid/eip155-1.json | 3 ++- 5 files changed, 8 insertions(+), 3 deletions(-) diff --git a/_data/chains/eip155-1337702.json b/_data/chains/eip155-1337702.json index 0cfcbe1d..95862255 100644 --- a/_data/chains/eip155-1337702.json +++ b/_data/chains/eip155-1337702.json @@ -1,5 +1,6 @@ { - "name": "Kintsugi merge testnet", + "name": "Kintsugi", + "title": "Kintsugi merge testnet", "chain": "ETH", "network": "testnet", "rpc": [ diff --git a/_data/chains/eip155-5.json b/_data/chains/eip155-5.json index f19ffe39..34cb5453 100644 --- a/_data/chains/eip155-5.json +++ b/_data/chains/eip155-5.json @@ -1,5 +1,6 @@ { - "name": "Ethereum Testnet Görli", + "name": "Görli", + "title": "Ethereum Testnet Görli", "chain": "ETH", "network": "goerli", "rpc": [ diff --git a/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt b/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt index 3e7b7bed..0dd6c247 100644 --- a/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt +++ b/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt @@ -14,4 +14,5 @@ data class Chain( val faucets: List, val explorers: List?, val infoURL: String, + val title: String? ) \ No newline at end of file diff --git a/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt b/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt index 7fb8cdf0..2966021b 100644 --- a/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt +++ b/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt @@ -21,6 +21,7 @@ val optionalFields = listOf( "ens", "icon", "explorers", + "title", "parent" ) diff --git a/processor/src/test/resources/test_chains/invalid/eip155-1.json b/processor/src/test/resources/test_chains/invalid/eip155-1.json index d843a6da..ad1da697 100644 --- a/processor/src/test/resources/test_chains/invalid/eip155-1.json +++ b/processor/src/test/resources/test_chains/invalid/eip155-1.json @@ -1,5 +1,6 @@ { - "name": "Ethereum Mainnet", + "title": "Ethereum Mainnet", + "name": "Ethereum", "shortName": "eth", "chain": "ETH", "network": "mainnet", From 1f02ea7293b1ecaa67dad92b393bf488d674cf41 Mon Sep 17 00:00:00 2001 From: ligi Date: Fri, 31 Dec 2021 09:45:26 +0100 Subject: [PATCH 43/53] Deprecate the 'network' field --- _data/chains/eip155-5.json | 1 - model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt | 3 ++- processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt | 2 +- processor/src/test/resources/test_chains/invalid/eip155-1.json | 1 - processor/src/test/resources/test_chains/valid/eip155-5.json | 1 - 5 files changed, 3 insertions(+), 5 deletions(-) diff --git a/_data/chains/eip155-5.json b/_data/chains/eip155-5.json index 34cb5453..eaa342e4 100644 --- a/_data/chains/eip155-5.json +++ b/_data/chains/eip155-5.json @@ -2,7 +2,6 @@ "name": "Görli", "title": "Ethereum Testnet Görli", "chain": "ETH", - "network": "goerli", "rpc": [ "https://rpc.goerli.mudit.blog/", "https://rpc.slock.it/goerli", diff --git a/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt b/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt index 0dd6c247..6cf42eb6 100644 --- a/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt +++ b/model/src/main/kotlin/org/ethereum/lists/chains/model/Chain.kt @@ -7,7 +7,8 @@ data class Chain( val name: String, val shortName: String, val chain: String, - val network: String, + @Deprecated("Will be removed in the future") + val network: String?, val chainId: Long, val networkId: Long, val rpc: List, diff --git a/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt b/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt index 2966021b..fbb13991 100644 --- a/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt +++ b/processor/src/main/kotlin/org/ethereum/lists/chains/Env.kt @@ -8,7 +8,6 @@ val mandatory_fields = listOf( "name", "shortName", "chain", - "network", "chainId", "networkId", "rpc", @@ -22,6 +21,7 @@ val optionalFields = listOf( "icon", "explorers", "title", + "network", "parent" ) diff --git a/processor/src/test/resources/test_chains/invalid/eip155-1.json b/processor/src/test/resources/test_chains/invalid/eip155-1.json index ad1da697..b2a9051c 100644 --- a/processor/src/test/resources/test_chains/invalid/eip155-1.json +++ b/processor/src/test/resources/test_chains/invalid/eip155-1.json @@ -3,7 +3,6 @@ "name": "Ethereum", "shortName": "eth", "chain": "ETH", - "network": "mainnet", "chainId": 1, "networkId": 1, "rpc": [ diff --git a/processor/src/test/resources/test_chains/valid/eip155-5.json b/processor/src/test/resources/test_chains/valid/eip155-5.json index f8c7e5a0..15387bf6 100644 --- a/processor/src/test/resources/test_chains/valid/eip155-5.json +++ b/processor/src/test/resources/test_chains/valid/eip155-5.json @@ -1,7 +1,6 @@ { "name": "Ethereum Testnet Görli", "chain": "ETH", - "network": "goerli", "rpc": [ "https://rpc.goerli.mudit.blog/", "https://rpc.slock.it/goerli ", From 1f42c6bc251b3a21fc63eafa1a6055df1275f38f Mon Sep 17 00:00:00 2001 From: ligi Date: Fri, 31 Dec 2021 09:50:12 +0100 Subject: [PATCH 44/53] Bump version to 1.1 --- model/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/build.gradle.kts b/model/build.gradle.kts index 1d4c3158..63d91aa4 100644 --- a/model/build.gradle.kts +++ b/model/build.gradle.kts @@ -6,7 +6,7 @@ plugins { publishing { publications { create("maven") { - version = "1.0" + version = "1.1" from(components["java"]) } From f03e61c8a25e04be82a5205bf7860ccfc3609832 Mon Sep 17 00:00:00 2001 From: GimluCom <79271880+GimluCom@users.noreply.github.com> Date: Tue, 4 Jan 2022 10:32:40 +0100 Subject: [PATCH 45/53] Update eip155-100.json (#721) --- _data/chains/eip155-100.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-100.json b/_data/chains/eip155-100.json index 3705732b..3d798325 100644 --- a/_data/chains/eip155-100.json +++ b/_data/chains/eip155-100.json @@ -11,7 +11,7 @@ "https://dai.poa.network", "ws://xdai.poanetwork.dev:8546" ], - "faucets": ["https://xdai-app.herokuapp.com/faucet", "https://stakely.io/faucet/xdai-chain", "https://faucet.prussia.dev/xdai"], + "faucets": ["https://faucet.gimlu.com/gnosis", "https://stakely.io/faucet/xdai-chain", "https://faucet.prussia.dev/xdai"], "nativeCurrency": { "name": "xDAI", "symbol": "xDAI", From 3e446a8b74bd250d205adfc8e8f6b07c0d81e4d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Garamv=C3=B6lgyi?= Date: Tue, 4 Jan 2022 18:26:42 +0800 Subject: [PATCH 46/53] add Conflux mainnet (#725) --- _data/chains/eip155-1030.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 _data/chains/eip155-1030.json diff --git a/_data/chains/eip155-1030.json b/_data/chains/eip155-1030.json new file mode 100644 index 00000000..9bdc5ba4 --- /dev/null +++ b/_data/chains/eip155-1030.json @@ -0,0 +1,23 @@ +{ + "name": "Conflux", + "chain": "Conflux", + "network": "mainnet", + "rpc": ["https://ethcore.confluxrpc.com"], + "faucets": [], + "nativeCurrency": { + "name": "CFX", + "symbol": "CFX", + "decimals": 18 + }, + "infoURL": "https://confluxnetwork.org", + "shortName": "cfx", + "chainId": 1030, + "networkId": 1030, + "explorers": [ + { + "name": "Conflux Scan", + "url": "https://confluxscan.io", + "standard": "none" + } + ] + } \ No newline at end of file From bc2775844c88108c639c2da11a689b305532dadd Mon Sep 17 00:00:00 2001 From: ligi Date: Tue, 4 Jan 2022 11:52:15 +0100 Subject: [PATCH 47/53] Add projects --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 584db353..31a4b6da 100644 --- a/README.md +++ b/README.md @@ -87,4 +87,6 @@ There are also aggregated json files with all chains automatically assembled: * [TREZOR](https://trezor.io) * [networks.vercel.app](https://networks.vercel.app) * [eth-chains](https://github.com/taylorjdawson/eth-chains) + * [EVM-BOX](https://github.com/izayl/evm-box) + * [FaucETH](https://github.com/komputing/FaucETH) * Your project - contact us to add it here! From ddcc3f4f097d68ee58141cfebb98a6369ec4bfb9 Mon Sep 17 00:00:00 2001 From: Prajjwol Gautam Date: Tue, 4 Jan 2022 02:52:25 -0800 Subject: [PATCH 48/53] New evmos logo added (#730) --- _data/chains/eip155-9000.json | 7 +++++-- _data/chains/eip155-9001.json | 7 +++++-- _data/icons/evmos.json | 14 +++++++------- 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/_data/chains/eip155-9000.json b/_data/chains/eip155-9000.json index de7ce6a8..f43099ab 100644 --- a/_data/chains/eip155-9000.json +++ b/_data/chains/eip155-9000.json @@ -13,16 +13,19 @@ "shortName": "evmos-mons", "chainId": 9000, "networkId": 9000, + "icon": "evmos", "explorers": [ { "name": "Evmos EVM Explorer (Blockscout)", "url": "https://evm.evmos.org", - "standard": "none" + "standard": "none", + "icon": "evmos" }, { "name": "Evmos Cosmos Explorer (Big Dipper)", "url": "https://explorer.evmos.org", - "standard": "none" + "standard": "none", + "icon": "evmos" } ] } diff --git a/_data/chains/eip155-9001.json b/_data/chains/eip155-9001.json index 54f5837d..280e7bc1 100644 --- a/_data/chains/eip155-9001.json +++ b/_data/chains/eip155-9001.json @@ -13,16 +13,19 @@ "shortName": "evmos", "chainId": 9001, "networkId": 9001, + "icon": "evmos", "explorers": [ { "name": "Evmos EVM Explorer (Blockscout)", "url": "https://evm.evmos.org", - "standard": "none" + "standard": "none", + "icon": "evmos" }, { "name": "Evmos Cosmos Explorer (Big Dipper)", "url": "https://explorer.evmos.org", - "standard": "none" + "standard": "none", + "icon": "evmos" } ] } diff --git a/_data/icons/evmos.json b/_data/icons/evmos.json index fb1292e1..88a52748 100644 --- a/_data/icons/evmos.json +++ b/_data/icons/evmos.json @@ -1,8 +1,8 @@ [ - { - "url": "ipfs://QmU1avSagPdrjV7YuDc4faj5cjezrdNDjDTohLCyw7fPku", - "width": 1600, - "height": 1600, - "format": "png" - } -] + { + "url": "ipfs://Qmc4nHKSTgRwhpc5gpUnd7cQb7ooUgkcMxSbJcDAjJqx6T", + "width": 1000, + "height": 620, + "format": "svg" + } +] \ No newline at end of file From f107345b08e5fbd591f24d7df215edc4731205d3 Mon Sep 17 00:00:00 2001 From: Reggie <92185630+blockchainreg@users.noreply.github.com> Date: Tue, 4 Jan 2022 02:57:20 -0800 Subject: [PATCH 49/53] BlockChain Station (#727) * Create eip155-707.json * Create eip155-708.json * Update Short name --- _data/chains/eip155-707.json | 24 ++++++++++++++++++++++++ _data/chains/eip155-708.json | 26 ++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 _data/chains/eip155-707.json create mode 100644 _data/chains/eip155-708.json diff --git a/_data/chains/eip155-707.json b/_data/chains/eip155-707.json new file mode 100644 index 00000000..c7206e6c --- /dev/null +++ b/_data/chains/eip155-707.json @@ -0,0 +1,24 @@ +{ + "name": "BlockChain Station Mainnet", + "chain": "BCS", + "network": "mainnet", + "rpc": [ + "https://rpc-mainnet.bcsdev.io", + "wss://rpc-ws-mainnet.bcsdev.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BCS Token", + "symbol": "PLAY", + "decimals": 18 + }, + "infoURL": "https://blockchainstation.io", + "shortName": "play", + "chainId": 707, + "networkId": 707, + "explorers": [{ + "name": "BlockChain Station Explorer", + "url": "https://explorer.bcsdev.io", + "standard": "EIP3091" + }] +} diff --git a/_data/chains/eip155-708.json b/_data/chains/eip155-708.json new file mode 100644 index 00000000..98203ec6 --- /dev/null +++ b/_data/chains/eip155-708.json @@ -0,0 +1,26 @@ +{ + "name": "BlockChain Station Testnet", + "chain": "BCS", + "network": "testnet", + "rpc": [ + "https://rpc-testnet.bcsdev.io", + "wss://rpc-ws-testnet.bcsdev.io" + ], + "faucets": [ + "https://faucet.bcsdev.io" + ], + "nativeCurrency": { + "name": "BCS Testnet Token", + "symbol": "tPLAY", + "decimals": 18 + }, + "infoURL": "https://blockchainstation.io", + "shortName": "tplay", + "chainId": 708, + "networkId": 708, + "explorers": [{ + "name": "BlockChain Station Explorer", + "url": "https://testnet.bcsdev.io", + "standard": "EIP3091" + }] + } From 8a719d1e8649e380ea7fdfb8eaf64ca2b666e0b5 Mon Sep 17 00:00:00 2001 From: ligi Date: Wed, 5 Jan 2022 10:20:10 +0100 Subject: [PATCH 50/53] Add kovan explorer (#732) --- _data/chains/eip155-42.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/_data/chains/eip155-42.json b/_data/chains/eip155-42.json index d9245224..449d9ad7 100644 --- a/_data/chains/eip155-42.json +++ b/_data/chains/eip155-42.json @@ -18,8 +18,13 @@ "symbol": "KOV", "decimals": 18 }, + "explorers": [{ + "name": "etherscan", + "url": "https://kovan.etherscan.io", + "standard": "EIP3091" + }], "infoURL": "https://kovan-testnet.github.io/website", "shortName": "kov", "chainId": 42, "networkId": 42 -} \ No newline at end of file +} From 62ad98d60e7fba1ce66514bbb52c430b032eaf33 Mon Sep 17 00:00:00 2001 From: ligi Date: Wed, 5 Jan 2022 13:07:27 +0100 Subject: [PATCH 51/53] Remove deprecated network field from all chains --- _data/chains/deprecated/eip155-218.json | 1 - _data/chains/eip155-1.json | 1 - _data/chains/eip155-10.json | 1 - _data/chains/eip155-100.json | 1 - _data/chains/eip155-10000.json | 1 - _data/chains/eip155-100000.json | 1 - _data/chains/eip155-100001.json | 1 - _data/chains/eip155-100002.json | 1 - _data/chains/eip155-100003.json | 1 - _data/chains/eip155-100004.json | 1 - _data/chains/eip155-100005.json | 1 - _data/chains/eip155-100006.json | 1 - _data/chains/eip155-100007.json | 1 - _data/chains/eip155-100008.json | 1 - _data/chains/eip155-10001.json | 1 - _data/chains/eip155-1001.json | 1 - _data/chains/eip155-1007.json | 1 - _data/chains/eip155-101.json | 1 - _data/chains/eip155-1010.json | 1 - _data/chains/eip155-10101.json | 1 - _data/chains/eip155-1012.json | 1 - _data/chains/eip155-102.json | 1 - _data/chains/eip155-1022.json | 1 - _data/chains/eip155-1023.json | 1 - _data/chains/eip155-1024.json | 1 - _data/chains/eip155-1028.json | 1 - _data/chains/eip155-1030.json | 1 - _data/chains/eip155-106.json | 1 - _data/chains/eip155-108.json | 1 - _data/chains/eip155-1088.json | 1 - _data/chains/eip155-11.json | 1 - _data/chains/eip155-110.json | 1 - _data/chains/eip155-110000.json | 1 - _data/chains/eip155-110001.json | 1 - _data/chains/eip155-110002.json | 1 - _data/chains/eip155-110003.json | 1 - _data/chains/eip155-110004.json | 1 - _data/chains/eip155-110005.json | 1 - _data/chains/eip155-110006.json | 1 - _data/chains/eip155-110007.json | 1 - _data/chains/eip155-110008.json | 1 - _data/chains/eip155-111.json | 1 - _data/chains/eip155-1122334455.json | 1 - _data/chains/eip155-11297108099.json | 1 - _data/chains/eip155-11297108109.json | 1 - _data/chains/eip155-1139.json | 1 - _data/chains/eip155-1140.json | 1 - _data/chains/eip155-12.json | 1 - _data/chains/eip155-1202.json | 1 - _data/chains/eip155-12051.json | 1 - _data/chains/eip155-12052.json | 1 - _data/chains/eip155-1213.json | 1 - _data/chains/eip155-122.json | 1 - _data/chains/eip155-123.json | 1 - _data/chains/eip155-124.json | 1 - _data/chains/eip155-127.json | 1 - _data/chains/eip155-128.json | 1 - _data/chains/eip155-1280.json | 1 - _data/chains/eip155-1284.json | 1 - _data/chains/eip155-1285.json | 1 - _data/chains/eip155-1286.json | 1 - _data/chains/eip155-1287.json | 1 - _data/chains/eip155-1288.json | 1 - _data/chains/eip155-13.json | 1 - _data/chains/eip155-1313114.json | 1 - _data/chains/eip155-1313161554.json | 1 - _data/chains/eip155-1313161555.json | 1 - _data/chains/eip155-1313161556.json | 1 - _data/chains/eip155-1313500.json | 1 - _data/chains/eip155-13371337.json | 1 - _data/chains/eip155-1337702.json | 1 - _data/chains/eip155-137.json | 1 - _data/chains/eip155-14.json | 1 - _data/chains/eip155-142.json | 1 - _data/chains/eip155-15.json | 1 - _data/chains/eip155-16.json | 1 - _data/chains/eip155-16000.json | 1 - _data/chains/eip155-16001.json | 1 - _data/chains/eip155-1618.json | 1 - _data/chains/eip155-162.json | 1 - _data/chains/eip155-1620.json | 1 - _data/chains/eip155-163.json | 1 - _data/chains/eip155-1657.json | 1 - _data/chains/eip155-1666600000.json | 1 - _data/chains/eip155-1666600001.json | 1 - _data/chains/eip155-1666600002.json | 1 - _data/chains/eip155-1666600003.json | 1 - _data/chains/eip155-1666700000.json | 1 - _data/chains/eip155-1666700001.json | 1 - _data/chains/eip155-1666700002.json | 1 - _data/chains/eip155-1666700003.json | 1 - _data/chains/eip155-17.json | 1 - _data/chains/eip155-170.json | 1 - _data/chains/eip155-172.json | 1 - _data/chains/eip155-18.json | 1 - _data/chains/eip155-18289463.json | 1 - _data/chains/eip155-1856.json | 1 - _data/chains/eip155-186.json | 1 - _data/chains/eip155-188.json | 1 - _data/chains/eip155-189.json | 1 - _data/chains/eip155-19.json | 1 - _data/chains/eip155-192837465.json | 1 - _data/chains/eip155-197710212030.json | 1 - _data/chains/eip155-197710212031.json | 1 - _data/chains/eip155-19845.json | 1 - _data/chains/eip155-1987.json | 1 - _data/chains/eip155-199.json | 1 - _data/chains/eip155-2.json | 1 - _data/chains/eip155-20.json | 1 - _data/chains/eip155-200.json | 1 - _data/chains/eip155-200625.json | 1 - _data/chains/eip155-201018.json | 1 - _data/chains/eip155-201030.json | 1 - _data/chains/eip155-20181205.json | 1 - _data/chains/eip155-2020.json | 1 - _data/chains/eip155-2021.json | 1 - _data/chains/eip155-2021121117.json | 1 - _data/chains/eip155-2022.json | 1 - _data/chains/eip155-2025.json | 1 - _data/chains/eip155-21.json | 1 - _data/chains/eip155-2100.json | 1 - _data/chains/eip155-2101.json | 1 - _data/chains/eip155-210309.json | 1 - _data/chains/eip155-211.json | 1 - _data/chains/eip155-22.json | 1 - _data/chains/eip155-222.json | 1 - _data/chains/eip155-23.json | 1 - _data/chains/eip155-24.json | 1 - _data/chains/eip155-24484.json | 1 - _data/chains/eip155-245022926.json | 1 - _data/chains/eip155-245022934.json | 1 - _data/chains/eip155-245022940.json | 1 - _data/chains/eip155-246.json | 1 - _data/chains/eip155-246529.json | 1 - _data/chains/eip155-246785.json | 1 - _data/chains/eip155-24734.json | 1 - _data/chains/eip155-25.json | 1 - _data/chains/eip155-250.json | 1 - _data/chains/eip155-2559.json | 1 - _data/chains/eip155-256.json | 1 - _data/chains/eip155-26.json | 1 - _data/chains/eip155-262.json | 1 - _data/chains/eip155-269.json | 1 - _data/chains/eip155-27.json | 1 - _data/chains/eip155-28.json | 1 - _data/chains/eip155-281121.json | 1 - _data/chains/eip155-288.json | 1 - _data/chains/eip155-28945486.json | 1 - _data/chains/eip155-29.json | 1 - _data/chains/eip155-3.json | 1 - _data/chains/eip155-30.json | 1 - _data/chains/eip155-31.json | 1 - _data/chains/eip155-31102.json | 1 - _data/chains/eip155-311752642.json | 1 - _data/chains/eip155-3125659152.json | 1 - _data/chains/eip155-31337.json | 1 - _data/chains/eip155-32.json | 1 - _data/chains/eip155-321.json | 1 - _data/chains/eip155-322.json | 1 - _data/chains/eip155-32659.json | 1 - _data/chains/eip155-33.json | 1 - _data/chains/eip155-3331.json | 1 - _data/chains/eip155-333888.json | 1 - _data/chains/eip155-333999.json | 1 - _data/chains/eip155-336.json | 1 - _data/chains/eip155-338.json | 1 - _data/chains/eip155-34.json | 1 - _data/chains/eip155-35.json | 1 - _data/chains/eip155-356256156.json | 1 - _data/chains/eip155-35855456.json | 1 - _data/chains/eip155-361.json | 1 - _data/chains/eip155-363.json | 1 - _data/chains/eip155-364.json | 1 - _data/chains/eip155-365.json | 1 - _data/chains/eip155-369.json | 1 - _data/chains/eip155-3690.json | 1 - _data/chains/eip155-38.json | 1 - _data/chains/eip155-385.json | 1 - _data/chains/eip155-39797.json | 1 - _data/chains/eip155-4.json | 1 - _data/chains/eip155-40.json | 1 - _data/chains/eip155-4002.json | 1 - _data/chains/eip155-41.json | 1 - _data/chains/eip155-42.json | 1 - _data/chains/eip155-420.json | 1 - _data/chains/eip155-42069.json | 1 - _data/chains/eip155-42161.json | 1 - _data/chains/eip155-421611.json | 1 - _data/chains/eip155-4216137055.json | 1 - _data/chains/eip155-42220.json | 1 - _data/chains/eip155-42261.json | 1 - _data/chains/eip155-42262.json | 1 - _data/chains/eip155-43.json | 1 - _data/chains/eip155-43110.json | 1 - _data/chains/eip155-43113.json | 1 - _data/chains/eip155-43114.json | 1 - _data/chains/eip155-44.json | 1 - _data/chains/eip155-44787.json | 1 - _data/chains/eip155-4689.json | 1 - _data/chains/eip155-4690.json | 1 - _data/chains/eip155-486217935.json | 1 - _data/chains/eip155-49797.json | 1 - _data/chains/eip155-499.json | 1 - _data/chains/eip155-50.json | 1 - _data/chains/eip155-51.json | 1 - _data/chains/eip155-5197.json | 1 - _data/chains/eip155-52.json | 1 - _data/chains/eip155-53.json | 1 - _data/chains/eip155-5315.json | 1 - _data/chains/eip155-55.json | 1 - _data/chains/eip155-558.json | 1 - _data/chains/eip155-56.json | 1 - _data/chains/eip155-57.json | 1 - _data/chains/eip155-5700.json | 1 - _data/chains/eip155-58.json | 1 - _data/chains/eip155-5851.json | 1 - _data/chains/eip155-5869.json | 1 - _data/chains/eip155-588.json | 1 - _data/chains/eip155-59.json | 1 - _data/chains/eip155-595.json | 1 - _data/chains/eip155-6.json | 1 - _data/chains/eip155-60.json | 1 - _data/chains/eip155-60000.json | 1 - _data/chains/eip155-60001.json | 1 - _data/chains/eip155-60002.json | 1 - _data/chains/eip155-60103.json | 1 - _data/chains/eip155-6022140761023.json | 1 - _data/chains/eip155-61.json | 1 - _data/chains/eip155-61717561.json | 1 - _data/chains/eip155-62.json | 1 - _data/chains/eip155-62320.json | 1 - _data/chains/eip155-63.json | 1 - _data/chains/eip155-64.json | 1 - _data/chains/eip155-65.json | 1 - _data/chains/eip155-66.json | 1 - _data/chains/eip155-6626.json | 1 - _data/chains/eip155-666.json | 1 - _data/chains/eip155-67.json | 1 - _data/chains/eip155-68.json | 1 - _data/chains/eip155-686.json | 1 - _data/chains/eip155-69.json | 1 - _data/chains/eip155-7.json | 1 - _data/chains/eip155-70000.json | 1 - _data/chains/eip155-70001.json | 1 - _data/chains/eip155-70002.json | 1 - _data/chains/eip155-70103.json | 1 - _data/chains/eip155-707.json | 1 - _data/chains/eip155-708.json | 1 - _data/chains/eip155-71393.json | 1 - _data/chains/eip155-721.json | 1 - _data/chains/eip155-73799.json | 1 - _data/chains/eip155-76.json | 1 - _data/chains/eip155-77.json | 1 - _data/chains/eip155-7762959.json | 1 - _data/chains/eip155-777.json | 1 - _data/chains/eip155-78.json | 1 - _data/chains/eip155-78110.json | 1 - _data/chains/eip155-787.json | 1 - _data/chains/eip155-7878.json | 1 - _data/chains/eip155-8.json | 1 - _data/chains/eip155-80.json | 1 - _data/chains/eip155-80001.json | 1 - _data/chains/eip155-8029.json | 1 - _data/chains/eip155-803.json | 1 - _data/chains/eip155-8080.json | 1 - _data/chains/eip155-82.json | 1 - _data/chains/eip155-820.json | 1 - _data/chains/eip155-821.json | 1 - _data/chains/eip155-8217.json | 1 - _data/chains/eip155-8285.json | 1 - _data/chains/eip155-83.json | 1 - _data/chains/eip155-85.json | 1 - _data/chains/eip155-86.json | 1 - _data/chains/eip155-8723.json | 1 - _data/chains/eip155-8724.json | 1 - _data/chains/eip155-88.json | 1 - _data/chains/eip155-880.json | 1 - _data/chains/eip155-888.json | 1 - _data/chains/eip155-8888.json | 1 - _data/chains/eip155-8995.json | 1 - _data/chains/eip155-9.json | 1 - _data/chains/eip155-9000.json | 1 - _data/chains/eip155-9001.json | 1 - _data/chains/eip155-9100.json | 1 - _data/chains/eip155-940.json | 1 - _data/chains/eip155-95.json | 1 - _data/chains/eip155-9527.json | 1 - _data/chains/eip155-955305.json | 1 - _data/chains/eip155-96.json | 1 - _data/chains/eip155-97.json | 1 - _data/chains/eip155-977.json | 1 - _data/chains/eip155-99.json | 1 - _data/chains/eip155-99415706.json | 1 - _data/chains/eip155-998.json | 1 - _data/chains/eip155-999.json | 1 - _data/chains/eip155-9999.json | 1 - 296 files changed, 296 deletions(-) diff --git a/_data/chains/deprecated/eip155-218.json b/_data/chains/deprecated/eip155-218.json index 62ee4bf0..9cc2c382 100644 --- a/_data/chains/deprecated/eip155-218.json +++ b/_data/chains/deprecated/eip155-218.json @@ -1,7 +1,6 @@ { "name": "SoterOne Mainnet", "chain": "SOTER", - "network": "mainnet", "rpc": [ "https://rpc.soter.one" ], diff --git a/_data/chains/eip155-1.json b/_data/chains/eip155-1.json index 16c91853..7954077b 100644 --- a/_data/chains/eip155-1.json +++ b/_data/chains/eip155-1.json @@ -1,7 +1,6 @@ { "name": "Ethereum Mainnet", "chain": "ETH", - "network": "mainnet", "icon": "ethereum", "rpc": [ "https://mainnet.infura.io/v3/${INFURA_API_KEY}", diff --git a/_data/chains/eip155-10.json b/_data/chains/eip155-10.json index 6b08fb4a..ca033651 100644 --- a/_data/chains/eip155-10.json +++ b/_data/chains/eip155-10.json @@ -1,7 +1,6 @@ { "name": "Optimistic Ethereum", "chain": "ETH", - "network": "mainnet", "rpc": ["https://mainnet.optimism.io/"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-100.json b/_data/chains/eip155-100.json index 3d798325..59cf6497 100644 --- a/_data/chains/eip155-100.json +++ b/_data/chains/eip155-100.json @@ -1,7 +1,6 @@ { "name": "Gnosis Chain (formerly xDai)", "chain": "Gnosis", - "network": "mainnet", "rpc": [ "https://rpc.xdaichain.com", "https://xdai.poanetwork.dev", diff --git a/_data/chains/eip155-10000.json b/_data/chains/eip155-10000.json index 472bc1ef..3de8bedc 100644 --- a/_data/chains/eip155-10000.json +++ b/_data/chains/eip155-10000.json @@ -1,7 +1,6 @@ { "name": "Smart Bitcoin Cash", "chain": "smartBCH", - "network": "mainnet", "rpc": [ "https://smartbch.greyh.at", "https://rpc-mainnet.smartbch.org", diff --git a/_data/chains/eip155-100000.json b/_data/chains/eip155-100000.json index fdce1bc0..29ef2692 100644 --- a/_data/chains/eip155-100000.json +++ b/_data/chains/eip155-100000.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Mainnet Root", "chain": "QuarkChain", - "network": "mainnet", "rpc": [ "http://jrpc.mainnet.quarkchain.io:38391/" ], diff --git a/_data/chains/eip155-100001.json b/_data/chains/eip155-100001.json index 82595bc4..a2d0b175 100644 --- a/_data/chains/eip155-100001.json +++ b/_data/chains/eip155-100001.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Mainnet Shard 0", "chain": "QuarkChain", - "network": "mainnet", "rpc": [ "http://eth-jrpc.mainnet.quarkchain.io:39000/" ], diff --git a/_data/chains/eip155-100002.json b/_data/chains/eip155-100002.json index 7bc05ab8..f81dd7e5 100644 --- a/_data/chains/eip155-100002.json +++ b/_data/chains/eip155-100002.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Mainnet Shard 1", "chain": "QuarkChain", - "network": "mainnet", "rpc": [ "http://eth-jrpc.mainnet.quarkchain.io:39001/" ], diff --git a/_data/chains/eip155-100003.json b/_data/chains/eip155-100003.json index 5f49588a..c5702393 100644 --- a/_data/chains/eip155-100003.json +++ b/_data/chains/eip155-100003.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Mainnet Shard 2", "chain": "QuarkChain", - "network": "mainnet", "rpc": [ "http://eth-jrpc.mainnet.quarkchain.io:39002/" ], diff --git a/_data/chains/eip155-100004.json b/_data/chains/eip155-100004.json index eb343d61..ae3b5865 100644 --- a/_data/chains/eip155-100004.json +++ b/_data/chains/eip155-100004.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Mainnet Shard 3", "chain": "QuarkChain", - "network": "mainnet", "rpc": [ "http://eth-jrpc.mainnet.quarkchain.io:39003/" ], diff --git a/_data/chains/eip155-100005.json b/_data/chains/eip155-100005.json index 336e01fe..e795282d 100644 --- a/_data/chains/eip155-100005.json +++ b/_data/chains/eip155-100005.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Mainnet Shard 4", "chain": "QuarkChain", - "network": "mainnet", "rpc": [ "http://eth-jrpc.mainnet.quarkchain.io:39004/" ], diff --git a/_data/chains/eip155-100006.json b/_data/chains/eip155-100006.json index 8fe4ea63..8b23c9ad 100644 --- a/_data/chains/eip155-100006.json +++ b/_data/chains/eip155-100006.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Mainnet Shard 5", "chain": "QuarkChain", - "network": "mainnet", "rpc": [ "http://eth-jrpc.mainnet.quarkchain.io:39005/" ], diff --git a/_data/chains/eip155-100007.json b/_data/chains/eip155-100007.json index 5e640378..b6ee3cc4 100644 --- a/_data/chains/eip155-100007.json +++ b/_data/chains/eip155-100007.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Mainnet Shard 6", "chain": "QuarkChain", - "network": "mainnet", "rpc": [ "http://eth-jrpc.mainnet.quarkchain.io:39006/" ], diff --git a/_data/chains/eip155-100008.json b/_data/chains/eip155-100008.json index 67419f39..ecc23244 100644 --- a/_data/chains/eip155-100008.json +++ b/_data/chains/eip155-100008.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Mainnet Shard 7", "chain": "QuarkChain", - "network": "mainnet", "rpc": [ "http://eth-jrpc.mainnet.quarkchain.io:39007/" ], diff --git a/_data/chains/eip155-10001.json b/_data/chains/eip155-10001.json index a04ac598..b193de31 100644 --- a/_data/chains/eip155-10001.json +++ b/_data/chains/eip155-10001.json @@ -1,7 +1,6 @@ { "name": "Smart Bitcoin Cash Testnet", "chain": "smartBCHTest", - "network": "testnet", "rpc": [ "https://rpc-testnet.smartbch.org", "https://smartbch.devops.cash/testnet" diff --git a/_data/chains/eip155-1001.json b/_data/chains/eip155-1001.json index 8d061268..8d8046b4 100644 --- a/_data/chains/eip155-1001.json +++ b/_data/chains/eip155-1001.json @@ -1,7 +1,6 @@ { "name": "Klaytn Testnet Baobab", "chain": "KLAY", - "network": "baobab", "rpc": [ "https://api.baobab.klaytn.net:8651" ], diff --git a/_data/chains/eip155-1007.json b/_data/chains/eip155-1007.json index b66433b8..7f5f4147 100644 --- a/_data/chains/eip155-1007.json +++ b/_data/chains/eip155-1007.json @@ -1,7 +1,6 @@ { "name": "Newton Testnet", "chain": "NEW", - "network": "testnet", "rpc": [ "https://rpc1.newchain.newtonproject.org" ], diff --git a/_data/chains/eip155-101.json b/_data/chains/eip155-101.json index ae18812f..499c41db 100644 --- a/_data/chains/eip155-101.json +++ b/_data/chains/eip155-101.json @@ -1,7 +1,6 @@ { "name": "EtherInc", "chain": "ETI", - "network": "mainnet", "rpc": [ "https://api.einc.io/jsonrpc/mainnet" ], diff --git a/_data/chains/eip155-1010.json b/_data/chains/eip155-1010.json index 9dcf8be7..b607bec2 100644 --- a/_data/chains/eip155-1010.json +++ b/_data/chains/eip155-1010.json @@ -1,7 +1,6 @@ { "name": "Evrice Network", "chain": "EVC", - "network": "Evrice", "rpc": [ "https://meta.evrice.com" ], diff --git a/_data/chains/eip155-10101.json b/_data/chains/eip155-10101.json index eff89654..7150c45b 100644 --- a/_data/chains/eip155-10101.json +++ b/_data/chains/eip155-10101.json @@ -1,7 +1,6 @@ { "name": "Blockchain Genesis Mainnet", "chain": "GEN", - "network": "mainnet", "rpc": [ "https://eu.mainnet.xixoio.com", "https://us.mainnet.xixoio.com", diff --git a/_data/chains/eip155-1012.json b/_data/chains/eip155-1012.json index d77c5215..7397ea91 100644 --- a/_data/chains/eip155-1012.json +++ b/_data/chains/eip155-1012.json @@ -1,7 +1,6 @@ { "name": "Newton", "chain": "NEW", - "network": "mainnet", "rpc": [ "https://global.rpc.mainnet.newtonproject.org" ], diff --git a/_data/chains/eip155-102.json b/_data/chains/eip155-102.json index 7b7561b4..d6597dc4 100644 --- a/_data/chains/eip155-102.json +++ b/_data/chains/eip155-102.json @@ -1,7 +1,6 @@ { "name": "Web3Games Testnet", "chain": "Web3Games", - "network": "testnet", "rpc": ["https://testnet.web3games.org/evm"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-1022.json b/_data/chains/eip155-1022.json index 8e4098ee..7b364a83 100644 --- a/_data/chains/eip155-1022.json +++ b/_data/chains/eip155-1022.json @@ -1,7 +1,6 @@ { "name": "Sakura", "chain": "Sakura", - "network": "sakura", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-1023.json b/_data/chains/eip155-1023.json index 94328e40..dc479714 100644 --- a/_data/chains/eip155-1023.json +++ b/_data/chains/eip155-1023.json @@ -1,7 +1,6 @@ { "name": "Clover Testnet", "chain": "Clover", - "network": "clover testnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-1024.json b/_data/chains/eip155-1024.json index 294d3fed..778f3ed8 100644 --- a/_data/chains/eip155-1024.json +++ b/_data/chains/eip155-1024.json @@ -1,7 +1,6 @@ { "name": "Clover Mainnet", "chain": "Clover", - "network": "clover mainnet", "rpc": [ "https://rpc-ivy.clover.finance", "https://rpc-ivy-2.clover.finance", diff --git a/_data/chains/eip155-1028.json b/_data/chains/eip155-1028.json index 57a3255e..ee4ed4b7 100644 --- a/_data/chains/eip155-1028.json +++ b/_data/chains/eip155-1028.json @@ -1,7 +1,6 @@ { "name": "BitTorrent Chain Testnet", "chain": "BTTC", - "network": "testnet", "rpc": [ "https://testrpc.bittorrentchain.io/" ], diff --git a/_data/chains/eip155-1030.json b/_data/chains/eip155-1030.json index 9bdc5ba4..7f4b2a46 100644 --- a/_data/chains/eip155-1030.json +++ b/_data/chains/eip155-1030.json @@ -1,7 +1,6 @@ { "name": "Conflux", "chain": "Conflux", - "network": "mainnet", "rpc": ["https://ethcore.confluxrpc.com"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-106.json b/_data/chains/eip155-106.json index 3b8c05c5..010b3750 100644 --- a/_data/chains/eip155-106.json +++ b/_data/chains/eip155-106.json @@ -1,7 +1,6 @@ { "name": "Velas EVM Mainnet", "chain": "Velas", - "network": "mainnet", "icon": "velas", "rpc": [ "https://evmexplorer.velas.com/rpc", diff --git a/_data/chains/eip155-108.json b/_data/chains/eip155-108.json index 578bb274..5391bbf6 100644 --- a/_data/chains/eip155-108.json +++ b/_data/chains/eip155-108.json @@ -1,7 +1,6 @@ { "name": "ThunderCore Mainnet", "chain": "TT", - "network": "mainnet", "rpc": [ "https://mainnet-rpc.thundercore.com" ], diff --git a/_data/chains/eip155-1088.json b/_data/chains/eip155-1088.json index df851a8d..7c632728 100644 --- a/_data/chains/eip155-1088.json +++ b/_data/chains/eip155-1088.json @@ -1,7 +1,6 @@ { "name": "Metis Andromeda Mainnet", "chain": "ETH", - "network": "mainnet", "rpc": ["https://andromeda.metis.io/?owner=1088"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-11.json b/_data/chains/eip155-11.json index 8f3108fd..f4d10462 100644 --- a/_data/chains/eip155-11.json +++ b/_data/chains/eip155-11.json @@ -1,7 +1,6 @@ { "name": "Metadium Mainnet", "chain": "META", - "network": "mainnet", "rpc": [ "https://api.metadium.com/prod" ], diff --git a/_data/chains/eip155-110.json b/_data/chains/eip155-110.json index 4ade7b4a..7a4ea78b 100644 --- a/_data/chains/eip155-110.json +++ b/_data/chains/eip155-110.json @@ -1,7 +1,6 @@ { "name": "Proton Testnet", "chain": "XPR", - "network": "testnet", "rpc": [ "https://protontestnet.greymass.com/" ], diff --git a/_data/chains/eip155-110000.json b/_data/chains/eip155-110000.json index 1987551c..c7fe6d5d 100644 --- a/_data/chains/eip155-110000.json +++ b/_data/chains/eip155-110000.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Devnet Root", "chain": "QuarkChain", - "network": "devnet", "rpc": [ "http://jrpc.devnet.quarkchain.io:38391/" ], diff --git a/_data/chains/eip155-110001.json b/_data/chains/eip155-110001.json index 02344f16..b9aef9be 100644 --- a/_data/chains/eip155-110001.json +++ b/_data/chains/eip155-110001.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Devnet Shard 0", "chain": "QuarkChain", - "network": "devnet", "rpc": [ "http://eth-jrpc.devnet.quarkchain.io:39900/" ], diff --git a/_data/chains/eip155-110002.json b/_data/chains/eip155-110002.json index 08d61d4c..31b5d6af 100644 --- a/_data/chains/eip155-110002.json +++ b/_data/chains/eip155-110002.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Devnet Shard 1", "chain": "QuarkChain", - "network": "devnet", "rpc": [ "http://eth-jrpc.devnet.quarkchain.io:39901/" ], diff --git a/_data/chains/eip155-110003.json b/_data/chains/eip155-110003.json index 75f81eba..91a22879 100644 --- a/_data/chains/eip155-110003.json +++ b/_data/chains/eip155-110003.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Devnet Shard 2", "chain": "QuarkChain", - "network": "devnet", "rpc": [ "http://eth-jrpc.devnet.quarkchain.io:39902/" ], diff --git a/_data/chains/eip155-110004.json b/_data/chains/eip155-110004.json index bd5f2c6e..120fcc6c 100644 --- a/_data/chains/eip155-110004.json +++ b/_data/chains/eip155-110004.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Devnet Shard 3", "chain": "QuarkChain", - "network": "devnet", "rpc": [ "http://eth-jrpc.devnet.quarkchain.io:39903/" ], diff --git a/_data/chains/eip155-110005.json b/_data/chains/eip155-110005.json index 1d72f76a..8b76ed3d 100644 --- a/_data/chains/eip155-110005.json +++ b/_data/chains/eip155-110005.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Devnet Shard 4", "chain": "QuarkChain", - "network": "devnet", "rpc": [ "http://eth-jrpc.devnet.quarkchain.io:39904/" ], diff --git a/_data/chains/eip155-110006.json b/_data/chains/eip155-110006.json index 5fafec4a..85e9b8be 100644 --- a/_data/chains/eip155-110006.json +++ b/_data/chains/eip155-110006.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Devnet Shard 5", "chain": "QuarkChain", - "network": "devnet", "rpc": [ "http://eth-jrpc.devnet.quarkchain.io:39905/" ], diff --git a/_data/chains/eip155-110007.json b/_data/chains/eip155-110007.json index fcc3a3b1..e427d535 100644 --- a/_data/chains/eip155-110007.json +++ b/_data/chains/eip155-110007.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Devnet Shard 6", "chain": "QuarkChain", - "network": "devnet", "rpc": [ "http://eth-jrpc.devnet.quarkchain.io:39906/" ], diff --git a/_data/chains/eip155-110008.json b/_data/chains/eip155-110008.json index daee5b92..c9044a47 100644 --- a/_data/chains/eip155-110008.json +++ b/_data/chains/eip155-110008.json @@ -1,7 +1,6 @@ { "name": "QuarkChain Devnet Shard 7", "chain": "QuarkChain", - "network": "devnet", "rpc": [ "http://eth-jrpc.devnet.quarkchain.io:39907/" ], diff --git a/_data/chains/eip155-111.json b/_data/chains/eip155-111.json index 808266d3..c5e01384 100644 --- a/_data/chains/eip155-111.json +++ b/_data/chains/eip155-111.json @@ -1,7 +1,6 @@ { "name": "EtherLite Chain", "chain": "ETL", - "network": "mainnet", "rpc": [ "https://rpc.etherlite.org" ], diff --git a/_data/chains/eip155-1122334455.json b/_data/chains/eip155-1122334455.json index 1ffdd29a..2339b332 100644 --- a/_data/chains/eip155-1122334455.json +++ b/_data/chains/eip155-1122334455.json @@ -1,7 +1,6 @@ { "name": "IPOS Network", "chain": "IPOS", - "network": "mainnet", "rpc": [ "https://rpc.iposlab.com", "https://rpc2.iposlab.com" diff --git a/_data/chains/eip155-11297108099.json b/_data/chains/eip155-11297108099.json index 2d2c0de7..5d6ec8f5 100644 --- a/_data/chains/eip155-11297108099.json +++ b/_data/chains/eip155-11297108099.json @@ -1,7 +1,6 @@ { "name": "Palm Testnet", "chain": "Palm", - "network": "testnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-11297108109.json b/_data/chains/eip155-11297108109.json index 8f0380d7..686695ff 100644 --- a/_data/chains/eip155-11297108109.json +++ b/_data/chains/eip155-11297108109.json @@ -1,7 +1,6 @@ { "name": "Palm Mainnet", "chain": "Palm", - "network": "mainnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-1139.json b/_data/chains/eip155-1139.json index acbe34fb..29a77118 100644 --- a/_data/chains/eip155-1139.json +++ b/_data/chains/eip155-1139.json @@ -1,7 +1,6 @@ { "name": "MathChain", "chain": "MATH", - "network": "mainnet", "rpc": [ "https://mathchain-asia.maiziqianbao.net/rpc", "https://mathchain-us.maiziqianbao.net/rpc" diff --git a/_data/chains/eip155-1140.json b/_data/chains/eip155-1140.json index fc15213f..1d3ebd38 100644 --- a/_data/chains/eip155-1140.json +++ b/_data/chains/eip155-1140.json @@ -1,7 +1,6 @@ { "name": "MathChain Testnet", "chain": "MATH", - "network": "testnet", "rpc": [ "https://galois-hk.maiziqianbao.net/rpc" ], diff --git a/_data/chains/eip155-12.json b/_data/chains/eip155-12.json index d0545f42..7086dab1 100644 --- a/_data/chains/eip155-12.json +++ b/_data/chains/eip155-12.json @@ -1,7 +1,6 @@ { "name": "Metadium Testnet", "chain": "META", - "network": "testnet", "rpc": [ "https://api.metadium.com/dev" ], diff --git a/_data/chains/eip155-1202.json b/_data/chains/eip155-1202.json index b74bd828..e27acc81 100644 --- a/_data/chains/eip155-1202.json +++ b/_data/chains/eip155-1202.json @@ -1,7 +1,6 @@ { "name": "World Trade Technical Chain Mainnet", "chain": "WTT", - "network": "mainnet", "rpc": [ "https://rpc.cadaut.com", "wss://rpc.cadaut.com/ws" diff --git a/_data/chains/eip155-12051.json b/_data/chains/eip155-12051.json index 2931a890..5ad0b00e 100644 --- a/_data/chains/eip155-12051.json +++ b/_data/chains/eip155-12051.json @@ -1,7 +1,6 @@ { "name": "Singularity ZERO Testnet", "chain": "ZERO", - "network": "testnet", "rpc": [ "https://betaenv.singularity.gold:18545" ], diff --git a/_data/chains/eip155-12052.json b/_data/chains/eip155-12052.json index 49bafbd5..38ade39b 100644 --- a/_data/chains/eip155-12052.json +++ b/_data/chains/eip155-12052.json @@ -1,7 +1,6 @@ { "name": "Singularity ZERO Mainnet", "chain": "ZERO", - "network": "mainnet", "rpc": [ "https://zerorpc.singularity.gold" ], diff --git a/_data/chains/eip155-1213.json b/_data/chains/eip155-1213.json index 027ae172..badea025 100644 --- a/_data/chains/eip155-1213.json +++ b/_data/chains/eip155-1213.json @@ -1,7 +1,6 @@ { "name": "Popcateum Mainnet", "chain": "POPCATEUM", - "network": "mainnet", "rpc": [ "https://dataseed.popcateum.org" ], diff --git a/_data/chains/eip155-122.json b/_data/chains/eip155-122.json index cb4ad0f8..76932664 100644 --- a/_data/chains/eip155-122.json +++ b/_data/chains/eip155-122.json @@ -1,7 +1,6 @@ { "name": "Fuse Mainnet", "chain": "FUSE", - "network": "mainnet", "rpc": [ "https://rpc.fuse.io" ], diff --git a/_data/chains/eip155-123.json b/_data/chains/eip155-123.json index 64f46eec..943e8784 100644 --- a/_data/chains/eip155-123.json +++ b/_data/chains/eip155-123.json @@ -1,7 +1,6 @@ { "name": "Fuse Sparknet", "chain": "fuse", - "network": "testnet", "rpc": [ "https://rpc.fusespark.io" ], diff --git a/_data/chains/eip155-124.json b/_data/chains/eip155-124.json index 427e7451..b95ad350 100644 --- a/_data/chains/eip155-124.json +++ b/_data/chains/eip155-124.json @@ -2,7 +2,6 @@ "name": "Decentralized Web Mainnet", "shortName": "dwu", "chain": "DWU", - "network": "mainnet", "chainId": 124, "networkId": 124, "rpc": ["https://decentralized-web.tech/dw_rpc.php"], diff --git a/_data/chains/eip155-127.json b/_data/chains/eip155-127.json index af70e279..7f319a1a 100644 --- a/_data/chains/eip155-127.json +++ b/_data/chains/eip155-127.json @@ -1,7 +1,6 @@ { "name": "Factory 127 Mainnet", "chain": "FETH", - "network": "factory127 mainnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-128.json b/_data/chains/eip155-128.json index 29eaab82..90449052 100644 --- a/_data/chains/eip155-128.json +++ b/_data/chains/eip155-128.json @@ -1,7 +1,6 @@ { "name": "Huobi ECO Chain Mainnet", "chain": "Heco", - "network": "mainnet", "rpc": [ "https://http-mainnet.hecochain.com", "wss://ws-mainnet.hecochain.com" diff --git a/_data/chains/eip155-1280.json b/_data/chains/eip155-1280.json index abbcba7e..860e8b1d 100644 --- a/_data/chains/eip155-1280.json +++ b/_data/chains/eip155-1280.json @@ -1,7 +1,6 @@ { "name": "HALO Mainnet", "chain": "HALO", - "network": "mainnet", "rpc": [ "https://nodes.halo.land" ], diff --git a/_data/chains/eip155-1284.json b/_data/chains/eip155-1284.json index 151202f6..7194d959 100644 --- a/_data/chains/eip155-1284.json +++ b/_data/chains/eip155-1284.json @@ -1,7 +1,6 @@ { "name": "Moonbeam", "chain": "MOON", - "network": "moonbeam", "rpc": [ "https://rpc.api.moonbeam.network", "wss://wss.api.moonbeam.network" diff --git a/_data/chains/eip155-1285.json b/_data/chains/eip155-1285.json index 0b903861..7df32f94 100644 --- a/_data/chains/eip155-1285.json +++ b/_data/chains/eip155-1285.json @@ -1,7 +1,6 @@ { "name": "Moonriver", "chain": "MOON", - "network": "moonriver", "rpc": [ "https://rpc.moonriver.moonbeam.network", "wss://wss.moonriver.moonbeam.network" diff --git a/_data/chains/eip155-1286.json b/_data/chains/eip155-1286.json index 4b573435..3cc60c66 100644 --- a/_data/chains/eip155-1286.json +++ b/_data/chains/eip155-1286.json @@ -1,7 +1,6 @@ { "name": "Moonrock", "chain": "MOON", - "network": "moonrock", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-1287.json b/_data/chains/eip155-1287.json index 05928a09..8e248cde 100644 --- a/_data/chains/eip155-1287.json +++ b/_data/chains/eip155-1287.json @@ -1,7 +1,6 @@ { "name": "Moonbase Alpha", "chain": "MOON", - "network": "moonbase", "rpc": [ "https://rpc.api.moonbase.moonbeam.network", "wss://wss.api.moonbase.moonbeam.network" diff --git a/_data/chains/eip155-1288.json b/_data/chains/eip155-1288.json index 49a471e6..f8253baf 100644 --- a/_data/chains/eip155-1288.json +++ b/_data/chains/eip155-1288.json @@ -1,7 +1,6 @@ { "name": "Moonshadow", "chain": "MOON", - "network": "moonshadow", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-13.json b/_data/chains/eip155-13.json index 594da07f..0d9b55bb 100644 --- a/_data/chains/eip155-13.json +++ b/_data/chains/eip155-13.json @@ -1,7 +1,6 @@ { "name": "Diode Testnet Staging", "chain": "DIODE", - "network": "testnet", "rpc": [ "https://staging.diode.io:8443/", "wss://staging.diode.io:8443/ws" diff --git a/_data/chains/eip155-1313114.json b/_data/chains/eip155-1313114.json index 16094838..7b613e68 100644 --- a/_data/chains/eip155-1313114.json +++ b/_data/chains/eip155-1313114.json @@ -1,7 +1,6 @@ { "name": "Etho Protocol", "chain": "ETHO", - "network": "mainnet", "rpc": [ "https://rpc.ether1.org" ], diff --git a/_data/chains/eip155-1313161554.json b/_data/chains/eip155-1313161554.json index 9120e0e0..2c236994 100644 --- a/_data/chains/eip155-1313161554.json +++ b/_data/chains/eip155-1313161554.json @@ -1,7 +1,6 @@ { "name": "Aurora MainNet", "chain": "NEAR", - "network": "mainnet", "rpc": [ "https://mainnet.aurora.dev" ], diff --git a/_data/chains/eip155-1313161555.json b/_data/chains/eip155-1313161555.json index 7ba0cf26..c82537a2 100644 --- a/_data/chains/eip155-1313161555.json +++ b/_data/chains/eip155-1313161555.json @@ -1,7 +1,6 @@ { "name": "Aurora TestNet", "chain": "NEAR", - "network": "testnet", "rpc": [ "https://testnet.aurora.dev/" ], diff --git a/_data/chains/eip155-1313161556.json b/_data/chains/eip155-1313161556.json index 5438dc79..f1230393 100644 --- a/_data/chains/eip155-1313161556.json +++ b/_data/chains/eip155-1313161556.json @@ -1,7 +1,6 @@ { "name": "Aurora BetaNet", "chain": "NEAR", - "network": "betanet", "rpc": [ "https://betanet.aurora.dev/" ], diff --git a/_data/chains/eip155-1313500.json b/_data/chains/eip155-1313500.json index c6eab7d8..d5cc6515 100644 --- a/_data/chains/eip155-1313500.json +++ b/_data/chains/eip155-1313500.json @@ -1,7 +1,6 @@ { "name": "Xerom", "chain": "XERO", - "network": "mainnet", "rpc": [ "https://rpc.xerom.org" ], diff --git a/_data/chains/eip155-13371337.json b/_data/chains/eip155-13371337.json index fbb82aa3..2fe6fc33 100644 --- a/_data/chains/eip155-13371337.json +++ b/_data/chains/eip155-13371337.json @@ -1,7 +1,6 @@ { "name": "PepChain Churchill", "chain": "PEP", - "network": "testnet", "rpc": [ "https://churchill-rpc.pepchain.io" ], diff --git a/_data/chains/eip155-1337702.json b/_data/chains/eip155-1337702.json index 95862255..30d56428 100644 --- a/_data/chains/eip155-1337702.json +++ b/_data/chains/eip155-1337702.json @@ -2,7 +2,6 @@ "name": "Kintsugi", "title": "Kintsugi merge testnet", "chain": "ETH", - "network": "testnet", "rpc": [ "https://rpc.kintsugi.themerge.dev" ], diff --git a/_data/chains/eip155-137.json b/_data/chains/eip155-137.json index 86b23448..72cceea0 100644 --- a/_data/chains/eip155-137.json +++ b/_data/chains/eip155-137.json @@ -1,7 +1,6 @@ { "name": "Polygon Mainnet", "chain": "Polygon", - "network": "mainnet", "rpc": [ "https://polygon-rpc.com/", "https://rpc-mainnet.matic.network", diff --git a/_data/chains/eip155-14.json b/_data/chains/eip155-14.json index 01446cd8..90b70ca4 100644 --- a/_data/chains/eip155-14.json +++ b/_data/chains/eip155-14.json @@ -1,7 +1,6 @@ { "name": "Flare Mainnet", "chain": "FLR", - "network": "flare", "rpc": [ ], "faucets": [ diff --git a/_data/chains/eip155-142.json b/_data/chains/eip155-142.json index 9d4176da..11d54eec 100644 --- a/_data/chains/eip155-142.json +++ b/_data/chains/eip155-142.json @@ -1,7 +1,6 @@ { "name": "DAX CHAIN", "chain": "DAX", - "network": "mainnet", "rpc": [ "https://rpc.prodax.io" ], diff --git a/_data/chains/eip155-15.json b/_data/chains/eip155-15.json index 9a6b207a..a6c8cb12 100644 --- a/_data/chains/eip155-15.json +++ b/_data/chains/eip155-15.json @@ -1,7 +1,6 @@ { "name": "Diode Prenet", "chain": "DIODE", - "network": "mainnet", "rpc": [ "https://prenet.diode.io:8443/", "wss://prenet.diode.io:8443/ws" diff --git a/_data/chains/eip155-16.json b/_data/chains/eip155-16.json index 8cfc7b84..7f20668c 100644 --- a/_data/chains/eip155-16.json +++ b/_data/chains/eip155-16.json @@ -1,7 +1,6 @@ { "name": "Flare Testnet Coston", "chain": "FLR", - "network": "coston", "rpc": [ ], "faucets": [ diff --git a/_data/chains/eip155-16000.json b/_data/chains/eip155-16000.json index 3dfb4573..e3b4cdd5 100644 --- a/_data/chains/eip155-16000.json +++ b/_data/chains/eip155-16000.json @@ -1,7 +1,6 @@ { "name": "MetaDot Mainnet", "chain": "MTT", - "network": "mainnet", "rpc": [ "https://mainnet.metadot.network" ], diff --git a/_data/chains/eip155-16001.json b/_data/chains/eip155-16001.json index 451d4598..9727cebc 100644 --- a/_data/chains/eip155-16001.json +++ b/_data/chains/eip155-16001.json @@ -1,7 +1,6 @@ { "name": "MetaDot Testnet", "chain": "MTTTest", - "network": "devnet", "rpc": [ "https://testnet.metadot.network" ], diff --git a/_data/chains/eip155-1618.json b/_data/chains/eip155-1618.json index ab514f2e..9f0b0900 100644 --- a/_data/chains/eip155-1618.json +++ b/_data/chains/eip155-1618.json @@ -1,7 +1,6 @@ { "name": "Catecoin Chain Mainnet", "chain": "Catechain", - "network": "mainnet", "rpc": [ "https://send.catechain.com" ], diff --git a/_data/chains/eip155-162.json b/_data/chains/eip155-162.json index cba8d670..65dbf70a 100644 --- a/_data/chains/eip155-162.json +++ b/_data/chains/eip155-162.json @@ -1,7 +1,6 @@ { "name": "Lightstreams Testnet", "chain": "PHT", - "network": "sirius", "rpc": [ "https://node.sirius.lightstreams.io" ], diff --git a/_data/chains/eip155-1620.json b/_data/chains/eip155-1620.json index 4a752163..18101561 100644 --- a/_data/chains/eip155-1620.json +++ b/_data/chains/eip155-1620.json @@ -1,7 +1,6 @@ { "name": "Atheios", "chain": "ATH", - "network": "mainnet", "rpc": [ "https://wallet.atheios.com:8797" ], diff --git a/_data/chains/eip155-163.json b/_data/chains/eip155-163.json index 5ff63a15..96f89177 100644 --- a/_data/chains/eip155-163.json +++ b/_data/chains/eip155-163.json @@ -1,7 +1,6 @@ { "name": "Lightstreams Mainnet", "chain": "PHT", - "network": "mainnet", "rpc": [ "https://node.mainnet.lightstreams.io" ], diff --git a/_data/chains/eip155-1657.json b/_data/chains/eip155-1657.json index e2faded1..a02af235 100644 --- a/_data/chains/eip155-1657.json +++ b/_data/chains/eip155-1657.json @@ -1,7 +1,6 @@ { "name": "Btachain", "chain": "btachain", - "network": "mainnet", "rpc": [ "https://dataseed1.btachain.com/" ], diff --git a/_data/chains/eip155-1666600000.json b/_data/chains/eip155-1666600000.json index 12ee6617..0a19b696 100644 --- a/_data/chains/eip155-1666600000.json +++ b/_data/chains/eip155-1666600000.json @@ -1,7 +1,6 @@ { "name": "Harmony Mainnet Shard 0", "chain": "Harmony", - "network": "mainnet", "rpc": [ "https://api.harmony.one" ], diff --git a/_data/chains/eip155-1666600001.json b/_data/chains/eip155-1666600001.json index 0a1bedaa..4c7330bc 100644 --- a/_data/chains/eip155-1666600001.json +++ b/_data/chains/eip155-1666600001.json @@ -1,7 +1,6 @@ { "name": "Harmony Mainnet Shard 1", "chain": "Harmony", - "network": "mainnet", "rpc": [ "https://s1.api.harmony.one" ], diff --git a/_data/chains/eip155-1666600002.json b/_data/chains/eip155-1666600002.json index e1f9aec0..5b0b933d 100644 --- a/_data/chains/eip155-1666600002.json +++ b/_data/chains/eip155-1666600002.json @@ -1,7 +1,6 @@ { "name": "Harmony Mainnet Shard 2", "chain": "Harmony", - "network": "mainnet", "rpc": [ "https://s2.api.harmony.one" ], diff --git a/_data/chains/eip155-1666600003.json b/_data/chains/eip155-1666600003.json index 14a228db..3bf7e72c 100644 --- a/_data/chains/eip155-1666600003.json +++ b/_data/chains/eip155-1666600003.json @@ -1,7 +1,6 @@ { "name": "Harmony Mainnet Shard 3", "chain": "Harmony", - "network": "mainnet", "rpc": [ "https://s3.api.harmony.one" ], diff --git a/_data/chains/eip155-1666700000.json b/_data/chains/eip155-1666700000.json index f8d4e6d7..a66f37a6 100644 --- a/_data/chains/eip155-1666700000.json +++ b/_data/chains/eip155-1666700000.json @@ -1,7 +1,6 @@ { "name": "Harmony Testnet Shard 0", "chain": "Harmony", - "network": "testnet", "rpc": [ "https://api.s0.b.hmny.io" ], diff --git a/_data/chains/eip155-1666700001.json b/_data/chains/eip155-1666700001.json index 7fb96936..fa093995 100644 --- a/_data/chains/eip155-1666700001.json +++ b/_data/chains/eip155-1666700001.json @@ -1,7 +1,6 @@ { "name": "Harmony Testnet Shard 1", "chain": "Harmony", - "network": "testnet", "rpc": [ "https://api.s1.b.hmny.io" ], diff --git a/_data/chains/eip155-1666700002.json b/_data/chains/eip155-1666700002.json index c81c44e6..19230baa 100644 --- a/_data/chains/eip155-1666700002.json +++ b/_data/chains/eip155-1666700002.json @@ -1,7 +1,6 @@ { "name": "Harmony Testnet Shard 2", "chain": "Harmony", - "network": "testnet", "rpc": [ "https://api.s2.b.hmny.io" ], diff --git a/_data/chains/eip155-1666700003.json b/_data/chains/eip155-1666700003.json index 98a9bb30..86b601fe 100644 --- a/_data/chains/eip155-1666700003.json +++ b/_data/chains/eip155-1666700003.json @@ -1,7 +1,6 @@ { "name": "Harmony Testnet Shard 3", "chain": "Harmony", - "network": "testnet", "rpc": [ "https://api.s3.b.hmny.io" ], diff --git a/_data/chains/eip155-17.json b/_data/chains/eip155-17.json index 56c2c1c1..8c8a32b0 100644 --- a/_data/chains/eip155-17.json +++ b/_data/chains/eip155-17.json @@ -1,7 +1,6 @@ { "name": "ThaiChain 2.0 ThaiFi", "chain": "TCH", - "network": "thaifi", "rpc": [ "https://rpc.thaifi.com" ], diff --git a/_data/chains/eip155-170.json b/_data/chains/eip155-170.json index 85f7c853..e8c2e2ea 100644 --- a/_data/chains/eip155-170.json +++ b/_data/chains/eip155-170.json @@ -1,7 +1,6 @@ { "name": "HOO Smart Chain Testnet", "chain": "ETH", - "network": "testnet", "rpc": [ "https://http-testnet.hoosmartchain.com" ], diff --git a/_data/chains/eip155-172.json b/_data/chains/eip155-172.json index 3fa3a7b4..b8cf3865 100644 --- a/_data/chains/eip155-172.json +++ b/_data/chains/eip155-172.json @@ -1,7 +1,6 @@ { "name": "Latam-Blockchain Resil Testnet", "chain": "Resil", - "network": "testnet", "rpc": [ "https://rpc.latam-blockchain.com", "wss://ws.latam-blockchain.com" diff --git a/_data/chains/eip155-18.json b/_data/chains/eip155-18.json index 6631c034..d4911d6a 100644 --- a/_data/chains/eip155-18.json +++ b/_data/chains/eip155-18.json @@ -1,7 +1,6 @@ { "name": "ThunderCore Testnet", "chain": "TST", - "network": "testnet", "rpc": [ "https://testnet-rpc.thundercore.com" ], diff --git a/_data/chains/eip155-18289463.json b/_data/chains/eip155-18289463.json index 230c8785..d4039afe 100644 --- a/_data/chains/eip155-18289463.json +++ b/_data/chains/eip155-18289463.json @@ -1,7 +1,6 @@ { "name": "IOLite", "chain": "ILT", - "network": "mainnet", "rpc": [ "https://net.iolite.io" ], diff --git a/_data/chains/eip155-1856.json b/_data/chains/eip155-1856.json index f9ca9ef6..6e4f240f 100644 --- a/_data/chains/eip155-1856.json +++ b/_data/chains/eip155-1856.json @@ -1,7 +1,6 @@ { "name": "Teslafunds", "chain": "TSF", - "network": "mainnet", "rpc": [ "https://tsfapi.europool.me" ], diff --git a/_data/chains/eip155-186.json b/_data/chains/eip155-186.json index 1957ae72..df7c772b 100644 --- a/_data/chains/eip155-186.json +++ b/_data/chains/eip155-186.json @@ -1,7 +1,6 @@ { "name": "Seele Mainnet", "chain": "Seele", - "network": "mainnet", "rpc": [ "https://rpc.seelen.pro/" ], diff --git a/_data/chains/eip155-188.json b/_data/chains/eip155-188.json index 1fcdc2ca..800c2526 100644 --- a/_data/chains/eip155-188.json +++ b/_data/chains/eip155-188.json @@ -1,7 +1,6 @@ { "name": "BMC Mainnet", "chain": "BMC", - "network": "mainnet", "rpc": [ "https://mainnet.bmcchain.com/" ], diff --git a/_data/chains/eip155-189.json b/_data/chains/eip155-189.json index cb3e0b38..ba3436d4 100644 --- a/_data/chains/eip155-189.json +++ b/_data/chains/eip155-189.json @@ -1,7 +1,6 @@ { "name": "BMC Testnet", "chain": "BMC", - "network": "testnet", "rpc": [ "https://testnet.bmcchain.com" ], diff --git a/_data/chains/eip155-19.json b/_data/chains/eip155-19.json index 279af21e..e3eabc0a 100644 --- a/_data/chains/eip155-19.json +++ b/_data/chains/eip155-19.json @@ -1,7 +1,6 @@ { "name": "Songbird Canary-Network", "chain": "SGB", - "network": "songbird", "rpc": [ "https://songbird.towolabs.com/rpc", "https://sgb.ftso.com.au/ext/bc/C/rpc", diff --git a/_data/chains/eip155-192837465.json b/_data/chains/eip155-192837465.json index 56c601b8..5fb0d83d 100644 --- a/_data/chains/eip155-192837465.json +++ b/_data/chains/eip155-192837465.json @@ -1,7 +1,6 @@ { "name": "Gather Mainnet Network", "chain": "GTH", - "network": "mainnet", "rpc": [ "https://mainnet.gather.network" ], diff --git a/_data/chains/eip155-197710212030.json b/_data/chains/eip155-197710212030.json index 3c8bebe3..adbe69c2 100644 --- a/_data/chains/eip155-197710212030.json +++ b/_data/chains/eip155-197710212030.json @@ -1,7 +1,6 @@ { "name": "Ntity Mainnet", "chain": "Ntity", - "network": "mainnet", "rpc": [ "https://rpc.ntity.io" ], diff --git a/_data/chains/eip155-197710212031.json b/_data/chains/eip155-197710212031.json index f0ca0576..779bebab 100644 --- a/_data/chains/eip155-197710212031.json +++ b/_data/chains/eip155-197710212031.json @@ -1,7 +1,6 @@ { "name": "Haradev Testnet", "chain": "Ntity", - "network": "testnet", "rpc": [ "https://blockchain.haradev.com" ], diff --git a/_data/chains/eip155-19845.json b/_data/chains/eip155-19845.json index f60dfa6a..5e5c50f1 100644 --- a/_data/chains/eip155-19845.json +++ b/_data/chains/eip155-19845.json @@ -1,7 +1,6 @@ { "name": "BTCIX Network", "chain": "BTCIX", - "network": "mainnet", "rpc": [ "https://seed.btcix.org/rpc" ], diff --git a/_data/chains/eip155-1987.json b/_data/chains/eip155-1987.json index 417cd5e0..fef6d8fe 100644 --- a/_data/chains/eip155-1987.json +++ b/_data/chains/eip155-1987.json @@ -1,7 +1,6 @@ { "name": "EtherGem", "chain": "EGEM", - "network": "mainnet", "rpc": [ "https://jsonrpc.egem.io/custom" ], diff --git a/_data/chains/eip155-199.json b/_data/chains/eip155-199.json index 22d77fce..0361174c 100644 --- a/_data/chains/eip155-199.json +++ b/_data/chains/eip155-199.json @@ -1,7 +1,6 @@ { "name": "BitTorrent Chain Mainnet", "chain": "BTTC", - "network": "mainnet", "rpc": [ "https://rpc.bittorrentchain.io/" ], diff --git a/_data/chains/eip155-2.json b/_data/chains/eip155-2.json index f50d9e2f..6ce5d4b0 100644 --- a/_data/chains/eip155-2.json +++ b/_data/chains/eip155-2.json @@ -1,7 +1,6 @@ { "name": "Expanse Network", "chain": "EXP", - "network": "mainnet", "rpc": [ "https://node.expanse.tech" ], diff --git a/_data/chains/eip155-20.json b/_data/chains/eip155-20.json index 815283fc..0bddca16 100644 --- a/_data/chains/eip155-20.json +++ b/_data/chains/eip155-20.json @@ -1,7 +1,6 @@ { "name": "ELA-ETH-Sidechain Mainnet", "chain": "ETH", - "network": "mainnet", "rpc": [ "https://mainrpc.elaeth.io" ], diff --git a/_data/chains/eip155-200.json b/_data/chains/eip155-200.json index 010c8d5c..cb9b1e4e 100644 --- a/_data/chains/eip155-200.json +++ b/_data/chains/eip155-200.json @@ -1,7 +1,6 @@ { "name": "Arbitrum on xDai", "chain": "AOX", - "network": "xdai", "rpc": ["https://arbitrum.xdaichain.com/"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-200625.json b/_data/chains/eip155-200625.json index 49af133e..375b314c 100644 --- a/_data/chains/eip155-200625.json +++ b/_data/chains/eip155-200625.json @@ -1,7 +1,6 @@ { "name": "Akroma", "chain": "AKA", - "network": "mainnet", "rpc": [ "https://remote.akroma.io" ], diff --git a/_data/chains/eip155-201018.json b/_data/chains/eip155-201018.json index 5b27f0d8..42570288 100644 --- a/_data/chains/eip155-201018.json +++ b/_data/chains/eip155-201018.json @@ -1,7 +1,6 @@ { "name": "Alaya Mainnet", "chain": "Alaya", - "network": "mainnet", "rpc": [ "https://openapi.alaya.network/rpc", "wss://openapi.alaya.network/ws" diff --git a/_data/chains/eip155-201030.json b/_data/chains/eip155-201030.json index 6f062540..d506ca7f 100644 --- a/_data/chains/eip155-201030.json +++ b/_data/chains/eip155-201030.json @@ -1,7 +1,6 @@ { "name": "Alaya Dev Testnet", "chain": "Alaya", - "network": "testnet", "rpc": [ "https://devnetopenapi.alaya.network/rpc", "wss://devnetopenapi.alaya.network/ws" diff --git a/_data/chains/eip155-20181205.json b/_data/chains/eip155-20181205.json index 7f5e45b4..6d7aca73 100644 --- a/_data/chains/eip155-20181205.json +++ b/_data/chains/eip155-20181205.json @@ -1,7 +1,6 @@ { "name": "quarkblockchain", "chain": "QKI", - "network": "mainnet", "rpc": [ "https://hz.rpc.qkiscan.cn", "https://jp.rpc.qkiscan.io" diff --git a/_data/chains/eip155-2020.json b/_data/chains/eip155-2020.json index e8f40f5b..34887df5 100644 --- a/_data/chains/eip155-2020.json +++ b/_data/chains/eip155-2020.json @@ -1,7 +1,6 @@ { "name": "420coin", "chain": "420", - "network": "mainnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-2021.json b/_data/chains/eip155-2021.json index 3a8a4bf7..de4654f9 100644 --- a/_data/chains/eip155-2021.json +++ b/_data/chains/eip155-2021.json @@ -1,7 +1,6 @@ { "name": "Edgeware Mainnet", "chain": "EDG", - "network": "mainnet", "rpc": [ "https://mainnet1.edgewa.re" ], diff --git a/_data/chains/eip155-2021121117.json b/_data/chains/eip155-2021121117.json index 679a56bb..14fcdec3 100644 --- a/_data/chains/eip155-2021121117.json +++ b/_data/chains/eip155-2021121117.json @@ -1,7 +1,6 @@ { "name": "DataHopper", "chain": "HOP", - "network": "hopnet", "rpc": [ "https://23.92.21.121:8545" ], diff --git a/_data/chains/eip155-2022.json b/_data/chains/eip155-2022.json index 316bfca6..fc5b7525 100644 --- a/_data/chains/eip155-2022.json +++ b/_data/chains/eip155-2022.json @@ -1,7 +1,6 @@ { "name": "Beresheet Testnet", "chain": "EDG", - "network": "beresheet", "rpc": [ "https://beresheet1.edgewa.re" ], diff --git a/_data/chains/eip155-2025.json b/_data/chains/eip155-2025.json index 49841a08..4f89486e 100644 --- a/_data/chains/eip155-2025.json +++ b/_data/chains/eip155-2025.json @@ -1,7 +1,6 @@ { "name": "Rangers Protocol Mainnet", "chain": "Rangers", - "network": "mainnet", "icon": "rangers", "rpc": [ "https://mainnet.rangersprotocol.com/api/jsonrpc" diff --git a/_data/chains/eip155-21.json b/_data/chains/eip155-21.json index 68cc3d6b..2602e65a 100644 --- a/_data/chains/eip155-21.json +++ b/_data/chains/eip155-21.json @@ -1,7 +1,6 @@ { "name": "ELA-ETH-Sidechain Testnet", "chain": "ETH", - "network": "testnet", "rpc": [ "https://rpc.elaeth.io" ], diff --git a/_data/chains/eip155-2100.json b/_data/chains/eip155-2100.json index 8926900f..b9d529c1 100644 --- a/_data/chains/eip155-2100.json +++ b/_data/chains/eip155-2100.json @@ -1,7 +1,6 @@ { "name": "Ecoball Mainnet", "chain": "ECO", - "network": "mainnet", "rpc": [ "https://api.ecoball.org/ecoball/" ], diff --git a/_data/chains/eip155-2101.json b/_data/chains/eip155-2101.json index a9d9cf77..7463df69 100644 --- a/_data/chains/eip155-2101.json +++ b/_data/chains/eip155-2101.json @@ -1,7 +1,6 @@ { "name": "Ecoball Testnet Espuma", "chain": "ECO", - "network": "espuma", "rpc": [ "https://api.ecoball.org/espuma/" ], diff --git a/_data/chains/eip155-210309.json b/_data/chains/eip155-210309.json index 83dfb8fb..9e69304b 100644 --- a/_data/chains/eip155-210309.json +++ b/_data/chains/eip155-210309.json @@ -1,7 +1,6 @@ { "name": "PlatON Dev Testnet", "chain": "PlatON", - "network": "testnet", "rpc": [ "https://devnetopenapi.platon.network/rpc", "wss://devnetopenapi.platon.network/ws" diff --git a/_data/chains/eip155-211.json b/_data/chains/eip155-211.json index f0005fa7..125be41f 100644 --- a/_data/chains/eip155-211.json +++ b/_data/chains/eip155-211.json @@ -1,7 +1,6 @@ { "name": "Freight Trust Network", "chain": "EDI", - "network": "freight & trade network", "rpc": [ "http://13.57.207.168:3435", "https://app.freighttrust.net/ftn/${API_KEY}" diff --git a/_data/chains/eip155-22.json b/_data/chains/eip155-22.json index a16e1df8..59a83a02 100644 --- a/_data/chains/eip155-22.json +++ b/_data/chains/eip155-22.json @@ -1,7 +1,6 @@ { "name": "ELA-DID-Sidechain Mainnet", "chain": "ETH", - "network": "mainnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-222.json b/_data/chains/eip155-222.json index 15ed32eb..e142a8c0 100644 --- a/_data/chains/eip155-222.json +++ b/_data/chains/eip155-222.json @@ -1,7 +1,6 @@ { "name": "Permission", "chain": "ASK", - "network": "ASK", "rpc": [ "https://blockchain-api-mainnet.permission.io/rpc" ], diff --git a/_data/chains/eip155-23.json b/_data/chains/eip155-23.json index aeb18471..2f233762 100644 --- a/_data/chains/eip155-23.json +++ b/_data/chains/eip155-23.json @@ -1,7 +1,6 @@ { "name": "ELA-DID-Sidechain Testnet", "chain": "ETH", - "network": "testnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-24.json b/_data/chains/eip155-24.json index c729c013..c5240775 100644 --- a/_data/chains/eip155-24.json +++ b/_data/chains/eip155-24.json @@ -1,7 +1,6 @@ { "name": "Dithereum Mainnet", "chain": "DTH", - "network": "mainnet", "icon": "dithereum", "rpc": [ "https://node-mainnet.dithereum.io" diff --git a/_data/chains/eip155-24484.json b/_data/chains/eip155-24484.json index 20efe647..9e312c82 100644 --- a/_data/chains/eip155-24484.json +++ b/_data/chains/eip155-24484.json @@ -1,7 +1,6 @@ { "name": "Webchain", "chain": "WEB", - "network": "mainnet", "rpc": [ "https://node1.webchain.network" ], diff --git a/_data/chains/eip155-245022926.json b/_data/chains/eip155-245022926.json index 66486491..4a6d7188 100644 --- a/_data/chains/eip155-245022926.json +++ b/_data/chains/eip155-245022926.json @@ -1,7 +1,6 @@ { "name": "Neon EVM DevNet", "chain": "Solana", - "network": "devnet", "rpc": [ "https://proxy.devnet.neonlabs.org/solana" ], diff --git a/_data/chains/eip155-245022934.json b/_data/chains/eip155-245022934.json index 11175af5..1b1f65b0 100644 --- a/_data/chains/eip155-245022934.json +++ b/_data/chains/eip155-245022934.json @@ -1,7 +1,6 @@ { "name": "Neon EVM MainNet", "chain": "Solana", - "network": "mainnet", "rpc": [ "https://proxy.mainnet.neonlabs.org/solana" ], diff --git a/_data/chains/eip155-245022940.json b/_data/chains/eip155-245022940.json index 6a8a88a5..6cd464f2 100644 --- a/_data/chains/eip155-245022940.json +++ b/_data/chains/eip155-245022940.json @@ -1,7 +1,6 @@ { "name": "Neon EVM TestNet", "chain": "Solana", - "network": "testnet", "rpc": [ "https://proxy.testnet.neonlabs.org/solana" ], diff --git a/_data/chains/eip155-246.json b/_data/chains/eip155-246.json index 61fec517..2af6fe22 100644 --- a/_data/chains/eip155-246.json +++ b/_data/chains/eip155-246.json @@ -1,7 +1,6 @@ { "name": "Energy Web Chain", "chain": "Energy Web Chain", - "network": "mainnet", "rpc": [ "https://rpc.energyweb.org", "wss://rpc.energyweb.org/ws" diff --git a/_data/chains/eip155-246529.json b/_data/chains/eip155-246529.json index 358eca2d..21a168b9 100644 --- a/_data/chains/eip155-246529.json +++ b/_data/chains/eip155-246529.json @@ -1,7 +1,6 @@ { "name": "ARTIS sigma1", "chain": "ARTIS", - "network": "sigma1", "rpc": [ "https://rpc.sigma1.artis.network" ], diff --git a/_data/chains/eip155-246785.json b/_data/chains/eip155-246785.json index 8fc10cb2..15248e15 100644 --- a/_data/chains/eip155-246785.json +++ b/_data/chains/eip155-246785.json @@ -1,7 +1,6 @@ { "name": "ARTIS Testnet tau1", "chain": "ARTIS", - "network": "tau1", "rpc": [ "https://rpc.tau1.artis.network" ], diff --git a/_data/chains/eip155-24734.json b/_data/chains/eip155-24734.json index 013a3394..6319d313 100644 --- a/_data/chains/eip155-24734.json +++ b/_data/chains/eip155-24734.json @@ -1,7 +1,6 @@ { "name": "MintMe.com Coin", "chain": "MINTME", - "network": "mainnet", "rpc": [ "https://node1.mintme.com" ], diff --git a/_data/chains/eip155-25.json b/_data/chains/eip155-25.json index f2e856b7..145025fd 100644 --- a/_data/chains/eip155-25.json +++ b/_data/chains/eip155-25.json @@ -1,7 +1,6 @@ { "name": "Cronos Mainnet Beta", "chain": "CRO", - "network": "mainnet", "rpc": [ "https://evm-cronos.crypto.org" ], diff --git a/_data/chains/eip155-250.json b/_data/chains/eip155-250.json index 005095e1..a93e1cf0 100644 --- a/_data/chains/eip155-250.json +++ b/_data/chains/eip155-250.json @@ -1,7 +1,6 @@ { "name": "Fantom Opera", "chain": "FTM", - "network": "mainnet", "rpc": ["https://rpc.ftm.tools"], "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], "nativeCurrency": { diff --git a/_data/chains/eip155-2559.json b/_data/chains/eip155-2559.json index a9f215e0..15d52fae 100644 --- a/_data/chains/eip155-2559.json +++ b/_data/chains/eip155-2559.json @@ -1,7 +1,6 @@ { "name": "Kortho Mainnet", "chain": "Kortho Chain", - "network": "mainnet", "rpc": [ "https://www.kortho-chain.com" ], diff --git a/_data/chains/eip155-256.json b/_data/chains/eip155-256.json index 8efc1196..bac1e7d3 100644 --- a/_data/chains/eip155-256.json +++ b/_data/chains/eip155-256.json @@ -1,7 +1,6 @@ { "name": "Huobi ECO Chain Testnet", "chain": "Heco", - "network": "testnet", "rpc": [ "https://http-testnet.hecochain.com", "wss://ws-testnet.hecochain.com" diff --git a/_data/chains/eip155-26.json b/_data/chains/eip155-26.json index ee59059a..17731241 100644 --- a/_data/chains/eip155-26.json +++ b/_data/chains/eip155-26.json @@ -1,7 +1,6 @@ { "name": "Genesis L1 testnet", "chain": "genesis", - "network": "testnet", "rpc": [ "https://testrpc.genesisl1.org" ], diff --git a/_data/chains/eip155-262.json b/_data/chains/eip155-262.json index 09e9ca1d..44ebefea 100644 --- a/_data/chains/eip155-262.json +++ b/_data/chains/eip155-262.json @@ -1,7 +1,6 @@ { "name": "SUR Blockchain Network", "chain": "SUR", - "network": "mainnet", "rpc": [ "https://sur.nilin.org" ], diff --git a/_data/chains/eip155-269.json b/_data/chains/eip155-269.json index b1056f8f..3f1a3050 100644 --- a/_data/chains/eip155-269.json +++ b/_data/chains/eip155-269.json @@ -1,7 +1,6 @@ { "name": "High Performance Blockchain", "chain": "HPB", - "network": "mainnet", "rpc": [ "https://hpbnode.com", "wss://ws.hpbnode.com" diff --git a/_data/chains/eip155-27.json b/_data/chains/eip155-27.json index 7aa0ff28..cb034ef6 100644 --- a/_data/chains/eip155-27.json +++ b/_data/chains/eip155-27.json @@ -1,7 +1,6 @@ { "name": "ShibaChain", "chain": "SHIB", - "network": "mainnet", "rpc": [ "https://rpc.shibachain.net" ], diff --git a/_data/chains/eip155-28.json b/_data/chains/eip155-28.json index e41e93fe..8e04a29e 100644 --- a/_data/chains/eip155-28.json +++ b/_data/chains/eip155-28.json @@ -1,7 +1,6 @@ { "name": "Boba Network Rinkeby Testnet", "chain": "ETH", - "network": "rinkeby", "rpc": ["https://rinkeby.boba.network/"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-281121.json b/_data/chains/eip155-281121.json index f82204bb..7e757132 100644 --- a/_data/chains/eip155-281121.json +++ b/_data/chains/eip155-281121.json @@ -1,7 +1,6 @@ { "name": "Social Smart Chain Mainnet", "chain": "SoChain", - "network": "mainnet", "rpc": [ "https://socialsmartchain.digitalnext.business" ], diff --git a/_data/chains/eip155-288.json b/_data/chains/eip155-288.json index 39156bb8..aba9a781 100644 --- a/_data/chains/eip155-288.json +++ b/_data/chains/eip155-288.json @@ -1,7 +1,6 @@ { "name": "Boba Network", "chain": "ETH", - "network": "mainnet", "rpc": ["https://mainnet.boba.network/"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-28945486.json b/_data/chains/eip155-28945486.json index 8f5ccc09..d26c7dc9 100644 --- a/_data/chains/eip155-28945486.json +++ b/_data/chains/eip155-28945486.json @@ -1,7 +1,6 @@ { "name": "Auxilium Network Mainnet", "chain": "AUX", - "network": "mainnet", "rpc": [ "https://rpc.auxilium.global" ], diff --git a/_data/chains/eip155-29.json b/_data/chains/eip155-29.json index fe967e40..33579353 100644 --- a/_data/chains/eip155-29.json +++ b/_data/chains/eip155-29.json @@ -1,7 +1,6 @@ { "name": "Genesis L1", "chain": "genesis", - "network": "mainnet", "rpc": [ "https://rpc.genesisl1.org" ], diff --git a/_data/chains/eip155-3.json b/_data/chains/eip155-3.json index 6e577a87..5e20f066 100644 --- a/_data/chains/eip155-3.json +++ b/_data/chains/eip155-3.json @@ -1,7 +1,6 @@ { "name": "Ethereum Testnet Ropsten", "chain": "ETH", - "network": "ropsten", "rpc": [ "https://ropsten.infura.io/v3/${INFURA_API_KEY}", "wss://ropsten.infura.io/ws/v3/${INFURA_API_KEY}" diff --git a/_data/chains/eip155-30.json b/_data/chains/eip155-30.json index a1f77051..c3541990 100644 --- a/_data/chains/eip155-30.json +++ b/_data/chains/eip155-30.json @@ -1,7 +1,6 @@ { "name": "RSK Mainnet", "chain": "RSK", - "network": "mainnet", "rpc": [ "https://public-node.rsk.co", "https://mycrypto.rsk.co" diff --git a/_data/chains/eip155-31.json b/_data/chains/eip155-31.json index 1c1f29f1..53f988f9 100644 --- a/_data/chains/eip155-31.json +++ b/_data/chains/eip155-31.json @@ -1,7 +1,6 @@ { "name": "RSK Testnet", "chain": "RSK", - "network": "testnet", "rpc": [ "https://public-node.testnet.rsk.co", "https://mycrypto.testnet.rsk.co" diff --git a/_data/chains/eip155-31102.json b/_data/chains/eip155-31102.json index e64c57e1..925b32c6 100644 --- a/_data/chains/eip155-31102.json +++ b/_data/chains/eip155-31102.json @@ -1,7 +1,6 @@ { "name": "Ethersocial Network", "chain": "ESN", - "network": "mainnet", "rpc": [ "https://api.esn.gonspool.com" ], diff --git a/_data/chains/eip155-311752642.json b/_data/chains/eip155-311752642.json index 6cbdfa17..0ea0a8a4 100644 --- a/_data/chains/eip155-311752642.json +++ b/_data/chains/eip155-311752642.json @@ -1,7 +1,6 @@ { "name": "OneLedger Mainnet", "chain": "OLT", - "network": "mainnet", "icon": "oneledger", "rpc": [ "https://mainnet-rpc.oneledger.network" diff --git a/_data/chains/eip155-3125659152.json b/_data/chains/eip155-3125659152.json index 0609973a..24fa0172 100644 --- a/_data/chains/eip155-3125659152.json +++ b/_data/chains/eip155-3125659152.json @@ -1,7 +1,6 @@ { "name": "Pirl", "chain": "PIRL", - "network": "mainnet", "rpc": [ "https://wallrpc.pirl.io" ], diff --git a/_data/chains/eip155-31337.json b/_data/chains/eip155-31337.json index 4e5cacea..f2f18daa 100644 --- a/_data/chains/eip155-31337.json +++ b/_data/chains/eip155-31337.json @@ -1,7 +1,6 @@ { "name": "GoChain Testnet", "chain": "GO", - "network": "testnet", "rpc": [ "https://testnet-rpc.gochain.io" ], diff --git a/_data/chains/eip155-32.json b/_data/chains/eip155-32.json index 73e3f8a3..92c54411 100644 --- a/_data/chains/eip155-32.json +++ b/_data/chains/eip155-32.json @@ -1,7 +1,6 @@ { "name": "GoodData Testnet", "chain": "GooD", - "network": "testnet", "rpc": [ "https://test2.goodata.io" ], diff --git a/_data/chains/eip155-321.json b/_data/chains/eip155-321.json index 1092c85c..7d25a648 100644 --- a/_data/chains/eip155-321.json +++ b/_data/chains/eip155-321.json @@ -1,7 +1,6 @@ { "name": "KCC Mainnet", "chain": "KCC", - "network": "mainnet", "rpc": [ "https://rpc-mainnet.kcc.network", "wss://rpc-ws-mainnet.kcc.network" diff --git a/_data/chains/eip155-322.json b/_data/chains/eip155-322.json index 06bbbe93..4fb3a794 100644 --- a/_data/chains/eip155-322.json +++ b/_data/chains/eip155-322.json @@ -1,7 +1,6 @@ { "name": "KCC Testnet", "chain": "KCC", - "network": "testnet", "rpc": [ "https://rpc-testnet.kcc.network", "wss://rpc-ws-testnet.kcc.network" diff --git a/_data/chains/eip155-32659.json b/_data/chains/eip155-32659.json index 792c0bb0..3308f5df 100644 --- a/_data/chains/eip155-32659.json +++ b/_data/chains/eip155-32659.json @@ -1,7 +1,6 @@ { "name": "Fusion Mainnet", "chain": "FSN", - "network": "mainnet", "rpc": [ "https://mainnet.anyswap.exchange", "https://fsn.dev/api" diff --git a/_data/chains/eip155-33.json b/_data/chains/eip155-33.json index 3ebc1517..74c4ad12 100644 --- a/_data/chains/eip155-33.json +++ b/_data/chains/eip155-33.json @@ -1,7 +1,6 @@ { "name": "GoodData Mainnet", "chain": "GooD", - "network": "mainnet", "rpc": [ "https://rpc.goodata.io" ], diff --git a/_data/chains/eip155-3331.json b/_data/chains/eip155-3331.json index afa0c409..8c9ac9b5 100644 --- a/_data/chains/eip155-3331.json +++ b/_data/chains/eip155-3331.json @@ -1,7 +1,6 @@ { "name": "ZCore Testnet", "chain": "Beach", - "network": "testnet", "icon": "zcore", "rpc": [ "https://rpc-testnet.zcore.cash" diff --git a/_data/chains/eip155-333888.json b/_data/chains/eip155-333888.json index deee8c26..633e05b0 100644 --- a/_data/chains/eip155-333888.json +++ b/_data/chains/eip155-333888.json @@ -1,7 +1,6 @@ { "name": "Polis Testnet", "chain": "Sparta", - "network": "testnet", "icon": "polis", "rpc": [ "https://sparta-rpc.polis.tech" diff --git a/_data/chains/eip155-333999.json b/_data/chains/eip155-333999.json index 7c21f8b8..b36b0aba 100644 --- a/_data/chains/eip155-333999.json +++ b/_data/chains/eip155-333999.json @@ -1,7 +1,6 @@ { "name": "Polis Mainnet", "chain": "Olympus", - "network": "mainnet", "icon": "polis", "rpc": [ "https://rpc.polis.tech" diff --git a/_data/chains/eip155-336.json b/_data/chains/eip155-336.json index 8b471acc..ecbe4d43 100644 --- a/_data/chains/eip155-336.json +++ b/_data/chains/eip155-336.json @@ -1,7 +1,6 @@ { "name": "Shiden", "chain": "SDN", - "network": "shiden", "rpc": [ "https://rpc.shiden.astar.network:8545", "wss://shiden.api.onfinality.io/public-ws" diff --git a/_data/chains/eip155-338.json b/_data/chains/eip155-338.json index 568eeaed..40aaeda8 100644 --- a/_data/chains/eip155-338.json +++ b/_data/chains/eip155-338.json @@ -1,7 +1,6 @@ { "name": "Cronos Testnet", "chain": "CRO", - "network": "testnet", "rpc": [ "https://cronos-testnet-3.crypto.org:8545", "wss://cronos-testnet-3.crypto.org:8546" diff --git a/_data/chains/eip155-34.json b/_data/chains/eip155-34.json index 84a87bf9..7a509601 100644 --- a/_data/chains/eip155-34.json +++ b/_data/chains/eip155-34.json @@ -1,7 +1,6 @@ { "name": "Dithereum Testnet", "chain": "DTH", - "network": "testnet", "icon": "dithereum", "rpc": [ "https://node-testnet.dithereum.io" diff --git a/_data/chains/eip155-35.json b/_data/chains/eip155-35.json index 3255a29a..6563091e 100644 --- a/_data/chains/eip155-35.json +++ b/_data/chains/eip155-35.json @@ -1,7 +1,6 @@ { "name": "TBWG Chain", "chain": "TBWG", - "network": "mainnet", "rpc": [ "https://rpc.tbwg.io" ], diff --git a/_data/chains/eip155-356256156.json b/_data/chains/eip155-356256156.json index 7bcaee40..ed02017b 100644 --- a/_data/chains/eip155-356256156.json +++ b/_data/chains/eip155-356256156.json @@ -1,7 +1,6 @@ { "name": "Gather Tesnet Network", "chain": "GTH", - "network": "testnet", "rpc": [ "https://testnet.gather.network" ], diff --git a/_data/chains/eip155-35855456.json b/_data/chains/eip155-35855456.json index a1dce5a5..9a1eaa25 100644 --- a/_data/chains/eip155-35855456.json +++ b/_data/chains/eip155-35855456.json @@ -1,7 +1,6 @@ { "name": "Joys Digital Mainnet", "chain": "JOYS", - "network": "mainnet", "rpc": [ "https://node.joys.digital" ], diff --git a/_data/chains/eip155-361.json b/_data/chains/eip155-361.json index 144575ac..b26a92ed 100644 --- a/_data/chains/eip155-361.json +++ b/_data/chains/eip155-361.json @@ -1,7 +1,6 @@ { "name": "Theta Mainnet", "chain": "Theta", - "network": "mainnet", "rpc": [ "https://eth-rpc-api.thetatoken.org/rpc" ], diff --git a/_data/chains/eip155-363.json b/_data/chains/eip155-363.json index 0f8d28f7..db004766 100644 --- a/_data/chains/eip155-363.json +++ b/_data/chains/eip155-363.json @@ -1,7 +1,6 @@ { "name": "Theta Sapphire Testnet", "chain": "Theta", - "network": "testnet_sapphire", "rpc": [ "https://eth-rpc-api-sapphire.thetatoken.org/rpc" ], diff --git a/_data/chains/eip155-364.json b/_data/chains/eip155-364.json index 99a4dbfe..a09c90a0 100644 --- a/_data/chains/eip155-364.json +++ b/_data/chains/eip155-364.json @@ -1,7 +1,6 @@ { "name": "Theta Amber Testnet", "chain": "Theta", - "network": "testnet_amber", "rpc": [ "https://eth-rpc-api-amber.thetatoken.org/rpc" ], diff --git a/_data/chains/eip155-365.json b/_data/chains/eip155-365.json index c90a7bb2..6bc81d07 100644 --- a/_data/chains/eip155-365.json +++ b/_data/chains/eip155-365.json @@ -1,7 +1,6 @@ { "name": "Theta Testnet", "chain": "Theta", - "network": "testnet", "rpc": [ "https://eth-rpc-api-testnet.thetatoken.org/rpc" ], diff --git a/_data/chains/eip155-369.json b/_data/chains/eip155-369.json index 51888fe8..a3caa93a 100644 --- a/_data/chains/eip155-369.json +++ b/_data/chains/eip155-369.json @@ -2,7 +2,6 @@ "name": "PulseChain Mainnet", "shortName": "pls", "chain": "PLS", - "network": "mainnet", "chainId": 369, "networkId": 369, "infoURL": "https://pulsechain.com/", diff --git a/_data/chains/eip155-3690.json b/_data/chains/eip155-3690.json index 0107c54f..547699ad 100644 --- a/_data/chains/eip155-3690.json +++ b/_data/chains/eip155-3690.json @@ -1,7 +1,6 @@ { "name": "Bittex Mainnet", "chain": "BTX", - "network": "mainnet", "rpc": [ "https://rpc1.bittexscan.info", "https://rpc2.bittexscan.info" diff --git a/_data/chains/eip155-38.json b/_data/chains/eip155-38.json index 2e7ba0de..015fca92 100644 --- a/_data/chains/eip155-38.json +++ b/_data/chains/eip155-38.json @@ -1,7 +1,6 @@ { "name": "Valorbit", "chain": "VAL", - "network": "mainnet", "rpc": [ "https://rpc.valorbit.com/v2" ], diff --git a/_data/chains/eip155-385.json b/_data/chains/eip155-385.json index df699081..afb79bac 100644 --- a/_data/chains/eip155-385.json +++ b/_data/chains/eip155-385.json @@ -1,7 +1,6 @@ { "name": "Lisinski", "chain": "CRO", - "network": "mainnet", "rpc": [ "https://rpc-bitfalls1.lisinski.online" ], diff --git a/_data/chains/eip155-39797.json b/_data/chains/eip155-39797.json index 79bd94d1..7d087d08 100644 --- a/_data/chains/eip155-39797.json +++ b/_data/chains/eip155-39797.json @@ -1,7 +1,6 @@ { "name": "Energi Mainnet", "chain": "NRG", - "network": "mainnet", "rpc": [ "https://nodeapi.energi.network" ], diff --git a/_data/chains/eip155-4.json b/_data/chains/eip155-4.json index 888166fa..da4faa8c 100644 --- a/_data/chains/eip155-4.json +++ b/_data/chains/eip155-4.json @@ -1,7 +1,6 @@ { "name": "Ethereum Testnet Rinkeby", "chain": "ETH", - "network": "rinkeby", "rpc": [ "https://rinkeby.infura.io/v3/${INFURA_API_KEY}", "wss://rinkeby.infura.io/ws/v3/${INFURA_API_KEY}" diff --git a/_data/chains/eip155-40.json b/_data/chains/eip155-40.json index a84af434..f67df5e1 100644 --- a/_data/chains/eip155-40.json +++ b/_data/chains/eip155-40.json @@ -1,7 +1,6 @@ { "name": "Telos EVM Mainnet", "chain": "TLOS", - "network": "mainnet", "rpc": [ "https://mainnet.telos.net/evm" ], diff --git a/_data/chains/eip155-4002.json b/_data/chains/eip155-4002.json index 746af304..797f62bc 100644 --- a/_data/chains/eip155-4002.json +++ b/_data/chains/eip155-4002.json @@ -1,7 +1,6 @@ { "name": "Fantom Testnet", "chain": "FTM", - "network": "testnet", "rpc": ["https://rpc.testnet.fantom.network"], "faucets": ["https://faucet.fantom.network"], "nativeCurrency": { diff --git a/_data/chains/eip155-41.json b/_data/chains/eip155-41.json index 2649cc06..4b8fe6cc 100644 --- a/_data/chains/eip155-41.json +++ b/_data/chains/eip155-41.json @@ -1,7 +1,6 @@ { "name": "Telos EVM Testnet", "chain": "TLOS", - "network": "testnet", "rpc": [ "https://testnet.telos.net/evm" ], diff --git a/_data/chains/eip155-42.json b/_data/chains/eip155-42.json index 449d9ad7..40e4b430 100644 --- a/_data/chains/eip155-42.json +++ b/_data/chains/eip155-42.json @@ -1,7 +1,6 @@ { "name": "Ethereum Testnet Kovan", "chain": "ETH", - "network": "kovan", "rpc": [ "https://kovan.poa.network", "http://kovan.poa.network:8545", diff --git a/_data/chains/eip155-420.json b/_data/chains/eip155-420.json index 4eae6df5..a5836fbf 100644 --- a/_data/chains/eip155-420.json +++ b/_data/chains/eip155-420.json @@ -1,7 +1,6 @@ { "name": "Optimistic Ethereum Testnet Goerli", "chain": "ETH", - "network": "goerli", "rpc": ["https://goerli.optimism.io/"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-42069.json b/_data/chains/eip155-42069.json index c0de048a..82d45c45 100644 --- a/_data/chains/eip155-42069.json +++ b/_data/chains/eip155-42069.json @@ -2,7 +2,6 @@ { "name": "pegglecoin", "chain": "42069", - "network": "mainnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-42161.json b/_data/chains/eip155-42161.json index a0fb8cdc..13886d0f 100644 --- a/_data/chains/eip155-42161.json +++ b/_data/chains/eip155-42161.json @@ -3,7 +3,6 @@ "chainId": 42161, "shortName": "arb1", "chain": "ETH", - "network": "mainnet", "networkId": 42161, "nativeCurrency": { "name": "Ether", diff --git a/_data/chains/eip155-421611.json b/_data/chains/eip155-421611.json index 77b2d9c0..835d11d2 100644 --- a/_data/chains/eip155-421611.json +++ b/_data/chains/eip155-421611.json @@ -3,7 +3,6 @@ "chainId": 421611, "shortName": "arb-rinkeby", "chain": "ETH", - "network": "rinkeby", "networkId": 421611, "nativeCurrency": { "name": "Arbitrum Rinkeby Ether", diff --git a/_data/chains/eip155-4216137055.json b/_data/chains/eip155-4216137055.json index 383e1020..027c47d5 100644 --- a/_data/chains/eip155-4216137055.json +++ b/_data/chains/eip155-4216137055.json @@ -1,7 +1,6 @@ { "name": "OneLedger Testnet Frankenstein", "chain": "OLT", - "network": "testnet", "icon": "oneledger", "rpc": [ "https://frankenstein-rpc.oneledger.network" diff --git a/_data/chains/eip155-42220.json b/_data/chains/eip155-42220.json index 600d8224..d1280820 100644 --- a/_data/chains/eip155-42220.json +++ b/_data/chains/eip155-42220.json @@ -3,7 +3,6 @@ "chainId": 42220, "shortName": "CELO", "chain": "CELO", - "network": "Mainnet", "networkId": 42220, "nativeCurrency": { "name": "CELO", diff --git a/_data/chains/eip155-42261.json b/_data/chains/eip155-42261.json index 07879731..f208a56f 100644 --- a/_data/chains/eip155-42261.json +++ b/_data/chains/eip155-42261.json @@ -1,7 +1,6 @@ { "name": "Emerald Paratime Testnet", "chain": "Emerald", - "network": "testnet", "icon": "oasis", "rpc": [ "https://testnet.emerald.oasis.dev/", diff --git a/_data/chains/eip155-42262.json b/_data/chains/eip155-42262.json index ffd257d1..93f656f8 100644 --- a/_data/chains/eip155-42262.json +++ b/_data/chains/eip155-42262.json @@ -1,7 +1,6 @@ { "name": "Emerald Paratime Mainnet", "chain": "Emerald", - "network": "Mainnet", "icon": "oasis", "rpc": [ "https://emerald.oasis.dev", diff --git a/_data/chains/eip155-43.json b/_data/chains/eip155-43.json index 4f412a6f..070ee15f 100644 --- a/_data/chains/eip155-43.json +++ b/_data/chains/eip155-43.json @@ -1,7 +1,6 @@ { "name": "Darwinia Pangolin Testnet", "chain": "pangolin", - "network": "free testnet", "rpc": [ "http://pangolin-rpc.darwinia.network" ], diff --git a/_data/chains/eip155-43110.json b/_data/chains/eip155-43110.json index ca159752..a3492bdb 100644 --- a/_data/chains/eip155-43110.json +++ b/_data/chains/eip155-43110.json @@ -1,7 +1,6 @@ { "name": "Athereum", "chain": "ATH", - "network": "athereum", "rpc": [ "https://ava.network:21015/ext/evm/rpc" ], diff --git a/_data/chains/eip155-43113.json b/_data/chains/eip155-43113.json index 1169719f..0d03b633 100644 --- a/_data/chains/eip155-43113.json +++ b/_data/chains/eip155-43113.json @@ -1,7 +1,6 @@ { "name": "Avalanche Fuji Testnet", "chain": "AVAX", - "network": "testnet", "rpc": [ "https://api.avax-test.network/ext/bc/C/rpc" ], diff --git a/_data/chains/eip155-43114.json b/_data/chains/eip155-43114.json index fbfd2614..c31c0221 100644 --- a/_data/chains/eip155-43114.json +++ b/_data/chains/eip155-43114.json @@ -1,7 +1,6 @@ { "name": "Avalanche Mainnet", "chain": "AVAX", - "network": "mainnet", "rpc": [ "https://api.avax.network/ext/bc/C/rpc" ], diff --git a/_data/chains/eip155-44.json b/_data/chains/eip155-44.json index acdc5fb5..6cf37276 100644 --- a/_data/chains/eip155-44.json +++ b/_data/chains/eip155-44.json @@ -1,7 +1,6 @@ { "name": "Darwinia Crab Network", "chain": "crab", - "network": "Crab network", "rpc": [ "http://crab-rpc.darwinia.network" ], diff --git a/_data/chains/eip155-44787.json b/_data/chains/eip155-44787.json index 85558ff0..daac2729 100644 --- a/_data/chains/eip155-44787.json +++ b/_data/chains/eip155-44787.json @@ -3,7 +3,6 @@ "chainId": 44787, "shortName": "ALFA", "chain": "CELO", - "network": "Alfajores", "networkId": 44787, "nativeCurrency": { "name": "CELO", diff --git a/_data/chains/eip155-4689.json b/_data/chains/eip155-4689.json index 4c5642c4..165741d7 100644 --- a/_data/chains/eip155-4689.json +++ b/_data/chains/eip155-4689.json @@ -1,7 +1,6 @@ { "name": "IoTeX Network Mainnet", "chain": "iotex.io", - "network": "mainnet", "rpc": [ "https://babel-api.mainnet.iotex.io" ], diff --git a/_data/chains/eip155-4690.json b/_data/chains/eip155-4690.json index f40419e6..cec09ec7 100644 --- a/_data/chains/eip155-4690.json +++ b/_data/chains/eip155-4690.json @@ -1,7 +1,6 @@ { "name": "IoTeX Network Testnet", "chain": "iotex.io", - "network": "testnet", "rpc": [ "https://babel-api.testnet.iotex.io" ], diff --git a/_data/chains/eip155-486217935.json b/_data/chains/eip155-486217935.json index 56cb2e5f..83b8aca5 100644 --- a/_data/chains/eip155-486217935.json +++ b/_data/chains/eip155-486217935.json @@ -1,7 +1,6 @@ { "name": "Gather Devnet Network", "chain": "GTH", - "network": "devnet", "rpc": [ "https://devnet.gather.network" ], diff --git a/_data/chains/eip155-49797.json b/_data/chains/eip155-49797.json index b63cbcf5..efa209d8 100644 --- a/_data/chains/eip155-49797.json +++ b/_data/chains/eip155-49797.json @@ -1,7 +1,6 @@ { "name": "Energi Testnet", "chain": "NRG", - "network": "testnet", "rpc": [ "https://nodeapi.test.energi.network" ], diff --git a/_data/chains/eip155-499.json b/_data/chains/eip155-499.json index 3f8e9b76..3c463b0a 100644 --- a/_data/chains/eip155-499.json +++ b/_data/chains/eip155-499.json @@ -1,7 +1,6 @@ { "name": "Rupaya", "chain": "RUPX", - "network": "mainnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-50.json b/_data/chains/eip155-50.json index 2393460b..2e5d2710 100644 --- a/_data/chains/eip155-50.json +++ b/_data/chains/eip155-50.json @@ -1,7 +1,6 @@ { "name": "XinFin Network Mainnet", "chain": "XDC", - "network": "mainnet", "rpc": [ "https://rpc.xinfin.network" ], diff --git a/_data/chains/eip155-51.json b/_data/chains/eip155-51.json index 4c63ac40..c332a32f 100644 --- a/_data/chains/eip155-51.json +++ b/_data/chains/eip155-51.json @@ -1,7 +1,6 @@ { "name": "XinFin Apothem Testnet", "chain": "TXDC", - "network": "testnet", "rpc": [ "https://rpc.apothem.network" ], diff --git a/_data/chains/eip155-5197.json b/_data/chains/eip155-5197.json index 828553ab..9a6ec0c0 100644 --- a/_data/chains/eip155-5197.json +++ b/_data/chains/eip155-5197.json @@ -1,7 +1,6 @@ { "name": "EraSwap Mainnet", "chain": "ESN", - "network": "mainnet", "icon": "eraswap", "rpc": [ "https://mainnet.eraswap.network", diff --git a/_data/chains/eip155-52.json b/_data/chains/eip155-52.json index 7a718629..236a8b61 100644 --- a/_data/chains/eip155-52.json +++ b/_data/chains/eip155-52.json @@ -1,7 +1,6 @@ { "name": "CoinEx Smart Chain Mainnet", "chain": "CSC", - "network": "mainnet", "rpc": [ "https://rpc.coinex.net" ], diff --git a/_data/chains/eip155-53.json b/_data/chains/eip155-53.json index c448f6b0..06ce0ac9 100644 --- a/_data/chains/eip155-53.json +++ b/_data/chains/eip155-53.json @@ -1,7 +1,6 @@ { "name": "CoinEx Smart Chain Testnet", "chain": "CSC", - "network": "testnet", "rpc": [ "https://testnet-rpc.coinex.net/" ], diff --git a/_data/chains/eip155-5315.json b/_data/chains/eip155-5315.json index 4c28d4ad..2fc15fe3 100644 --- a/_data/chains/eip155-5315.json +++ b/_data/chains/eip155-5315.json @@ -1,7 +1,6 @@ { "name": "Uzmi Network Mainnet", "chain": "UZMI", - "network": "mainnet", "rpc": [ "https://network.uzmigames.com.br/" ], diff --git a/_data/chains/eip155-55.json b/_data/chains/eip155-55.json index fce54c1b..0f729823 100644 --- a/_data/chains/eip155-55.json +++ b/_data/chains/eip155-55.json @@ -1,7 +1,6 @@ { "name": "Zyx Mainnet", "chain": "ZYX", - "network": "mainnet", "rpc": [ "https://rpc-1.zyx.network/", "https://rpc-2.zyx.network/", diff --git a/_data/chains/eip155-558.json b/_data/chains/eip155-558.json index fd6f6e95..9c5b91d5 100644 --- a/_data/chains/eip155-558.json +++ b/_data/chains/eip155-558.json @@ -1,7 +1,6 @@ { "name": "Tao Network", "chain": "TAO", - "network": "core", "rpc": [ "https://rpc.testnet.tao.network", "http://rpc.testnet.tao.network:8545", diff --git a/_data/chains/eip155-56.json b/_data/chains/eip155-56.json index 21ef7b0e..5efe6946 100644 --- a/_data/chains/eip155-56.json +++ b/_data/chains/eip155-56.json @@ -1,7 +1,6 @@ { "name": "Binance Smart Chain Mainnet", "chain": "BSC", - "network": "mainnet", "rpc": [ "https://bsc-dataseed1.binance.org", "https://bsc-dataseed2.binance.org", diff --git a/_data/chains/eip155-57.json b/_data/chains/eip155-57.json index 3967e8cc..ffe22827 100644 --- a/_data/chains/eip155-57.json +++ b/_data/chains/eip155-57.json @@ -1,7 +1,6 @@ { "name": "Syscoin Mainnet", "chain": "SYS", - "network": "mainnet", "rpc": [ "https://rpc.syscoin.org", "wss://rpc.syscoin.org/wss" diff --git a/_data/chains/eip155-5700.json b/_data/chains/eip155-5700.json index 5cc5ae63..063b3b2b 100644 --- a/_data/chains/eip155-5700.json +++ b/_data/chains/eip155-5700.json @@ -1,7 +1,6 @@ { "name": "Syscoin Tanenbaum Testnet", "chain": "SYS", - "network": "testnet", "rpc": [ "https://rpc.tanenbaum.io", "wss://rpc.tanenbaum.io/wss" diff --git a/_data/chains/eip155-58.json b/_data/chains/eip155-58.json index 78820fbc..d39a149f 100644 --- a/_data/chains/eip155-58.json +++ b/_data/chains/eip155-58.json @@ -1,7 +1,6 @@ { "name": "Ontology Mainnet", "chain": "Ontology", - "network": "mainnet", "rpc": [ "https://dappnode1.ont.io:20339", "https://dappnode2.ont.io:20339", diff --git a/_data/chains/eip155-5851.json b/_data/chains/eip155-5851.json index 6ecff5f3..5ebaa18c 100644 --- a/_data/chains/eip155-5851.json +++ b/_data/chains/eip155-5851.json @@ -1,7 +1,6 @@ { "name": "Ontology Testnet", "chain": "Ontology", - "network": "testnet", "rpc": [ "https://polaris1.ont.io:20339", "https://polaris2.ont.io:20339", diff --git a/_data/chains/eip155-5869.json b/_data/chains/eip155-5869.json index 3e2053c2..2ed792d2 100644 --- a/_data/chains/eip155-5869.json +++ b/_data/chains/eip155-5869.json @@ -1,7 +1,6 @@ { "name": "Wegochain Rubidium Mainnet", "chain": "RBD", - "network": "mainnet", "rpc": [ "https://proxy.wegochain.io", "http://wallet.wegochain.io:7764" diff --git a/_data/chains/eip155-588.json b/_data/chains/eip155-588.json index 1605bbef..7c84e0ce 100644 --- a/_data/chains/eip155-588.json +++ b/_data/chains/eip155-588.json @@ -1,7 +1,6 @@ { "name": "Metis Stardust Testnet", "chain": "ETH", - "network": "rinkeby", "rpc": ["https://stardust.metis.io/?owner=588"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-59.json b/_data/chains/eip155-59.json index 4aee75e2..b5a98f31 100644 --- a/_data/chains/eip155-59.json +++ b/_data/chains/eip155-59.json @@ -1,7 +1,6 @@ { "name": "EOS Mainnet", "chain": "EOS", - "network": "mainnet", "rpc": [ "https://api.eosargentina.io" ], diff --git a/_data/chains/eip155-595.json b/_data/chains/eip155-595.json index e31eed2d..0b23b5c3 100644 --- a/_data/chains/eip155-595.json +++ b/_data/chains/eip155-595.json @@ -1,7 +1,6 @@ { "name": "Acala Mandala Testnet", "chain": "mACA", - "network": "testnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-6.json b/_data/chains/eip155-6.json index c7548b65..4e2a95e8 100644 --- a/_data/chains/eip155-6.json +++ b/_data/chains/eip155-6.json @@ -1,7 +1,6 @@ { "name": "Ethereum Classic Testnet Kotti", "chain": "ETC", - "network": "kotti", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-60.json b/_data/chains/eip155-60.json index 29c11b13..dd05bb88 100644 --- a/_data/chains/eip155-60.json +++ b/_data/chains/eip155-60.json @@ -1,7 +1,6 @@ { "name": "GoChain", "chain": "GO", - "network": "mainnet", "rpc": [ "https://rpc.gochain.io" ], diff --git a/_data/chains/eip155-60000.json b/_data/chains/eip155-60000.json index 1d398fbb..d325d232 100644 --- a/_data/chains/eip155-60000.json +++ b/_data/chains/eip155-60000.json @@ -1,7 +1,6 @@ { "name": "Thinkium Testnet Chain 0", "chain": "Thinkium", - "network": "testnet", "rpc": [ "https://test.thinkiumrpc.net/" ], diff --git a/_data/chains/eip155-60001.json b/_data/chains/eip155-60001.json index 14f4bbcd..9becdf10 100644 --- a/_data/chains/eip155-60001.json +++ b/_data/chains/eip155-60001.json @@ -1,7 +1,6 @@ { "name": "Thinkium Testnet Chain 1", "chain": "Thinkium", - "network": "testnet", "rpc": [ "https://test1.thinkiumrpc.net/" ], diff --git a/_data/chains/eip155-60002.json b/_data/chains/eip155-60002.json index 70dcfdb3..541bce10 100644 --- a/_data/chains/eip155-60002.json +++ b/_data/chains/eip155-60002.json @@ -1,7 +1,6 @@ { "name": "Thinkium Testnet Chain 2", "chain": "Thinkium", - "network": "testnet", "rpc": [ "https://test2.thinkiumrpc.net/" ], diff --git a/_data/chains/eip155-60103.json b/_data/chains/eip155-60103.json index 882b532e..10aa7dc1 100644 --- a/_data/chains/eip155-60103.json +++ b/_data/chains/eip155-60103.json @@ -1,7 +1,6 @@ { "name": "Thinkium Testnet Chain 103", "chain": "Thinkium", - "network": "testnet", "rpc": [ "https://test103.thinkiumrpc.net/" ], diff --git a/_data/chains/eip155-6022140761023.json b/_data/chains/eip155-6022140761023.json index 21bce3a0..edad5b1d 100644 --- a/_data/chains/eip155-6022140761023.json +++ b/_data/chains/eip155-6022140761023.json @@ -1,7 +1,6 @@ { "name": "Molereum Network", "chain": "ETH", - "network": "molereum", "rpc": [ "https://molereum.jdubedition.com" ], diff --git a/_data/chains/eip155-61.json b/_data/chains/eip155-61.json index 3e52198f..f95a395d 100644 --- a/_data/chains/eip155-61.json +++ b/_data/chains/eip155-61.json @@ -1,7 +1,6 @@ { "name": "Ethereum Classic Mainnet", "chain": "ETC", - "network": "mainnet", "rpc": [ "https://ethereumclassic.network" ], diff --git a/_data/chains/eip155-61717561.json b/_data/chains/eip155-61717561.json index d3f04865..e82f11e4 100644 --- a/_data/chains/eip155-61717561.json +++ b/_data/chains/eip155-61717561.json @@ -1,7 +1,6 @@ { "name": "Aquachain", "chain": "AQUA", - "network": "mainnet", "rpc": [ "https://c.onical.org", "https://tx.aquacha.in/api" diff --git a/_data/chains/eip155-62.json b/_data/chains/eip155-62.json index 6448fe31..2e4b927e 100644 --- a/_data/chains/eip155-62.json +++ b/_data/chains/eip155-62.json @@ -1,7 +1,6 @@ { "name": "Ethereum Classic Testnet Morden", "chain": "ETC", - "network": "testnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-62320.json b/_data/chains/eip155-62320.json index 8790d500..4f3680f8 100644 --- a/_data/chains/eip155-62320.json +++ b/_data/chains/eip155-62320.json @@ -3,7 +3,6 @@ "chainId": 62320, "shortName": "BKLV", "chain": "CELO", - "network": "Baklava", "networkId": 62320, "nativeCurrency": { "name": "CELO", diff --git a/_data/chains/eip155-63.json b/_data/chains/eip155-63.json index 4356f56d..40e89a5c 100644 --- a/_data/chains/eip155-63.json +++ b/_data/chains/eip155-63.json @@ -1,7 +1,6 @@ { "name": "Ethereum Classic Testnet Mordor", "chain": "ETC", - "network": "testnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-64.json b/_data/chains/eip155-64.json index 87299e5b..66165daa 100644 --- a/_data/chains/eip155-64.json +++ b/_data/chains/eip155-64.json @@ -1,7 +1,6 @@ { "name": "Ellaism", "chain": "ELLA", - "network": "mainnet", "rpc": [ "https://jsonrpc.ellaism.org" ], diff --git a/_data/chains/eip155-65.json b/_data/chains/eip155-65.json index 3181941c..0750c07e 100644 --- a/_data/chains/eip155-65.json +++ b/_data/chains/eip155-65.json @@ -1,7 +1,6 @@ { "name": "OKExChain Testnet", "chain": "okexchain", - "network": "testnet", "rpc": [ "https://exchaintestrpc.okex.org" ], diff --git a/_data/chains/eip155-66.json b/_data/chains/eip155-66.json index f0bd39db..8a200d66 100644 --- a/_data/chains/eip155-66.json +++ b/_data/chains/eip155-66.json @@ -1,7 +1,6 @@ { "name": "OKExChain Mainnet", "chain": "okexchain", - "network": "mainnet", "rpc": [ "https://exchainrpc.okex.org" ], diff --git a/_data/chains/eip155-6626.json b/_data/chains/eip155-6626.json index f08614ea..1fbd051b 100644 --- a/_data/chains/eip155-6626.json +++ b/_data/chains/eip155-6626.json @@ -1,7 +1,6 @@ { "name": "Pixie Chain Mainnet", "chain": "PixieChain", - "network": "mainnet", "rpc": [ "https://http-mainnet.chain.pixie.xyz", "wss://ws-mainnet.chain.pixie.xyz" diff --git a/_data/chains/eip155-666.json b/_data/chains/eip155-666.json index c91fb23c..c77e5a3f 100644 --- a/_data/chains/eip155-666.json +++ b/_data/chains/eip155-666.json @@ -1,7 +1,6 @@ { "name": "Pixie Chain Testnet", "chain": "PixieChain", - "network": "testnet", "rpc": [ "https://http-testnet.chain.pixie.xyz", "wss://ws-testnet.chain.pixie.xyz" diff --git a/_data/chains/eip155-67.json b/_data/chains/eip155-67.json index f4c40a67..77698e50 100644 --- a/_data/chains/eip155-67.json +++ b/_data/chains/eip155-67.json @@ -1,7 +1,6 @@ { "name": "DBChain Testnet", "chain": "DBM", - "network": "testnet", "rpc": [ "http://test-rpc.dbmbp.com" ], diff --git a/_data/chains/eip155-68.json b/_data/chains/eip155-68.json index 8b9d9c39..9e88bfe6 100644 --- a/_data/chains/eip155-68.json +++ b/_data/chains/eip155-68.json @@ -1,7 +1,6 @@ { "name": "SoterOne Mainnet", "chain": "SOTER", - "network": "mainnet", "rpc": [ "https://rpc.soter.one" ], diff --git a/_data/chains/eip155-686.json b/_data/chains/eip155-686.json index 2745b474..d403de93 100644 --- a/_data/chains/eip155-686.json +++ b/_data/chains/eip155-686.json @@ -1,7 +1,6 @@ { "name": "Karura Network", "chain": "KAR", - "network": "mainnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-69.json b/_data/chains/eip155-69.json index 3fabe090..7a1fd0bb 100644 --- a/_data/chains/eip155-69.json +++ b/_data/chains/eip155-69.json @@ -1,7 +1,6 @@ { "name": "Optimistic Ethereum Testnet Kovan", "chain": "ETH", - "network": "kovan", "rpc": ["https://kovan.optimism.io/"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-7.json b/_data/chains/eip155-7.json index c1873b25..62268c07 100644 --- a/_data/chains/eip155-7.json +++ b/_data/chains/eip155-7.json @@ -1,7 +1,6 @@ { "name": "ThaiChain", "chain": "TCH", - "network": "mainnet", "rpc": [ "https://rpc.dome.cloud" ], diff --git a/_data/chains/eip155-70000.json b/_data/chains/eip155-70000.json index d6739e52..42d58d88 100644 --- a/_data/chains/eip155-70000.json +++ b/_data/chains/eip155-70000.json @@ -1,7 +1,6 @@ { "name": "Thinkium Mainnet Chain 0", "chain": "Thinkium", - "network": "mainnet", "rpc": [ "https://proxy.thinkiumrpc.net/" ], diff --git a/_data/chains/eip155-70001.json b/_data/chains/eip155-70001.json index b887132f..a9129b49 100644 --- a/_data/chains/eip155-70001.json +++ b/_data/chains/eip155-70001.json @@ -1,7 +1,6 @@ { "name": "Thinkium Mainnet Chain 1", "chain": "Thinkium", - "network": "mainnet", "rpc": [ "https://proxy1.thinkiumrpc.net/" ], diff --git a/_data/chains/eip155-70002.json b/_data/chains/eip155-70002.json index da9569b1..d26770a5 100644 --- a/_data/chains/eip155-70002.json +++ b/_data/chains/eip155-70002.json @@ -1,7 +1,6 @@ { "name": "Thinkium Mainnet Chain 2", "chain": "Thinkium", - "network": "mainnet", "rpc": [ "https://proxy2.thinkiumrpc.net/" ], diff --git a/_data/chains/eip155-70103.json b/_data/chains/eip155-70103.json index a63908f7..a40d2d1d 100644 --- a/_data/chains/eip155-70103.json +++ b/_data/chains/eip155-70103.json @@ -1,7 +1,6 @@ { "name": "Thinkium Mainnet Chain 103", "chain": "Thinkium", - "network": "mainnet", "rpc": [ "https://proxy103.thinkiumrpc.net/" ], diff --git a/_data/chains/eip155-707.json b/_data/chains/eip155-707.json index c7206e6c..f5715615 100644 --- a/_data/chains/eip155-707.json +++ b/_data/chains/eip155-707.json @@ -1,7 +1,6 @@ { "name": "BlockChain Station Mainnet", "chain": "BCS", - "network": "mainnet", "rpc": [ "https://rpc-mainnet.bcsdev.io", "wss://rpc-ws-mainnet.bcsdev.io" diff --git a/_data/chains/eip155-708.json b/_data/chains/eip155-708.json index 98203ec6..7d7b5f4a 100644 --- a/_data/chains/eip155-708.json +++ b/_data/chains/eip155-708.json @@ -1,7 +1,6 @@ { "name": "BlockChain Station Testnet", "chain": "BCS", - "network": "testnet", "rpc": [ "https://rpc-testnet.bcsdev.io", "wss://rpc-ws-testnet.bcsdev.io" diff --git a/_data/chains/eip155-71393.json b/_data/chains/eip155-71393.json index f2a57309..ee7677dc 100644 --- a/_data/chains/eip155-71393.json +++ b/_data/chains/eip155-71393.json @@ -1,7 +1,6 @@ { "name": "Polyjuice Testnet", "chain": "CKB", - "network": "testnet", "icon": "polyjuice", "rpc": [ "https://godwoken-testnet-web3-rpc.ckbapp.dev", diff --git a/_data/chains/eip155-721.json b/_data/chains/eip155-721.json index 998a60aa..36dd0a2c 100644 --- a/_data/chains/eip155-721.json +++ b/_data/chains/eip155-721.json @@ -1,7 +1,6 @@ { "name": "Factory 127 Testnet", "chain": "FETH", - "network": "factory127 testnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-73799.json b/_data/chains/eip155-73799.json index 6cfac8ce..dfc421aa 100644 --- a/_data/chains/eip155-73799.json +++ b/_data/chains/eip155-73799.json @@ -1,7 +1,6 @@ { "name": "Energy Web Volta Testnet", "chain": "Volta", - "network": "testnet", "rpc": [ "https://volta-rpc.energyweb.org", "wss://volta-rpc.energyweb.org/ws" diff --git a/_data/chains/eip155-76.json b/_data/chains/eip155-76.json index 23be787f..f1de7988 100644 --- a/_data/chains/eip155-76.json +++ b/_data/chains/eip155-76.json @@ -1,7 +1,6 @@ { "name": "Mix", "chain": "MIX", - "network": "mainnet", "rpc": [ "https://rpc2.mix-blockchain.org:8647" ], diff --git a/_data/chains/eip155-77.json b/_data/chains/eip155-77.json index 66aef5c1..17e05f1c 100644 --- a/_data/chains/eip155-77.json +++ b/_data/chains/eip155-77.json @@ -1,7 +1,6 @@ { "name": "POA Network Sokol", "chain": "POA", - "network": "sokol", "rpc": [ "https://sokol.poa.network", "wss://sokol.poa.network/wss", diff --git a/_data/chains/eip155-7762959.json b/_data/chains/eip155-7762959.json index ee87df50..de129a07 100644 --- a/_data/chains/eip155-7762959.json +++ b/_data/chains/eip155-7762959.json @@ -1,7 +1,6 @@ { "name": "Musicoin", "chain": "MUSIC", - "network": "mainnet", "rpc": [ "https://mewapi.musicoin.tw" ], diff --git a/_data/chains/eip155-777.json b/_data/chains/eip155-777.json index 65148b20..682fcb74 100644 --- a/_data/chains/eip155-777.json +++ b/_data/chains/eip155-777.json @@ -1,7 +1,6 @@ { "name": "cheapETH", "chain": "cheapETH", - "network": "cheapnet", "rpc": [ "https://node.cheapeth.org/rpc" ], diff --git a/_data/chains/eip155-78.json b/_data/chains/eip155-78.json index 9551eb83..099ab160 100644 --- a/_data/chains/eip155-78.json +++ b/_data/chains/eip155-78.json @@ -1,7 +1,6 @@ { "name": "PrimusChain mainnet", "chain": "PC", - "network": "mainnet", "rpc": [ "https://ethnode.primusmoney.com/mainnet" ], diff --git a/_data/chains/eip155-78110.json b/_data/chains/eip155-78110.json index 03ed9ac2..c6c89ab7 100644 --- a/_data/chains/eip155-78110.json +++ b/_data/chains/eip155-78110.json @@ -1,7 +1,6 @@ { "name": "Firenze test network", "chain": "ETH", - "network": "testnet", "rpc": [ "https://ethnode.primusmoney.com/firenze" ], diff --git a/_data/chains/eip155-787.json b/_data/chains/eip155-787.json index edae88ce..28451091 100644 --- a/_data/chains/eip155-787.json +++ b/_data/chains/eip155-787.json @@ -1,7 +1,6 @@ { "name": "Acala Network", "chain": "ACA", - "network": "mainnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-7878.json b/_data/chains/eip155-7878.json index 53a9ddf0..cd21f7c3 100644 --- a/_data/chains/eip155-7878.json +++ b/_data/chains/eip155-7878.json @@ -1,7 +1,6 @@ { "name": "Hazlor Testnet", "chain": "SCAS", - "network": "testnet", "rpc": [ "https://hatlas.rpc.hazlor.com:8545", "wss://hatlas.rpc.hazlor.com:8546" diff --git a/_data/chains/eip155-8.json b/_data/chains/eip155-8.json index d882099d..a0083484 100644 --- a/_data/chains/eip155-8.json +++ b/_data/chains/eip155-8.json @@ -1,7 +1,6 @@ { "name": "Ubiq", "chain": "UBQ", - "network": "mainnet", "rpc": [ "https://rpc.octano.dev", "https://pyrus2.ubiqscan.io" diff --git a/_data/chains/eip155-80.json b/_data/chains/eip155-80.json index 7d072578..b0a10e4f 100644 --- a/_data/chains/eip155-80.json +++ b/_data/chains/eip155-80.json @@ -1,7 +1,6 @@ { "name": "GeneChain", "chain": "GeneChain", - "network": "mainnet", "rpc": [ "https://rpc.genechain.io" ], diff --git a/_data/chains/eip155-80001.json b/_data/chains/eip155-80001.json index 7d73f909..8ae2d1c2 100644 --- a/_data/chains/eip155-80001.json +++ b/_data/chains/eip155-80001.json @@ -1,7 +1,6 @@ { "name": "Polygon Testnet Mumbai", "chain": "Polygon", - "network": "testnet", "rpc": [ "https://matic-mumbai.chainstacklabs.com", "https://rpc-mumbai.maticvigil.com", diff --git a/_data/chains/eip155-8029.json b/_data/chains/eip155-8029.json index 4176357a..cd2ccbdd 100644 --- a/_data/chains/eip155-8029.json +++ b/_data/chains/eip155-8029.json @@ -1,7 +1,6 @@ { "name": "MDGL Testnet", "chain": "MDGL", - "network": "testnet", "rpc": [ "https://testnet.mdgl.io" ], diff --git a/_data/chains/eip155-803.json b/_data/chains/eip155-803.json index d2e1be66..9ae76e03 100644 --- a/_data/chains/eip155-803.json +++ b/_data/chains/eip155-803.json @@ -1,7 +1,6 @@ { "name": "Haic", "chain": "Haic", - "network": "mainnet", "rpc": ["https://orig.haichain.io/"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-8080.json b/_data/chains/eip155-8080.json index a8fbbc4f..3fc8d396 100644 --- a/_data/chains/eip155-8080.json +++ b/_data/chains/eip155-8080.json @@ -1,7 +1,6 @@ { "name": "GeneChain Adenine Testnet", "chain": "GeneChain", - "network": "adenine", "rpc": [ "https://rpc-testnet.genechain.io" ], diff --git a/_data/chains/eip155-82.json b/_data/chains/eip155-82.json index ac5a54a6..bcff02dd 100644 --- a/_data/chains/eip155-82.json +++ b/_data/chains/eip155-82.json @@ -1,7 +1,6 @@ { "name": "Meter Mainnet", "chain": "METER", - "network": "mainnet", "rpc": [ "https://rpc.meter.io" ], diff --git a/_data/chains/eip155-820.json b/_data/chains/eip155-820.json index b587f60c..1939ea15 100644 --- a/_data/chains/eip155-820.json +++ b/_data/chains/eip155-820.json @@ -1,7 +1,6 @@ { "name": "Callisto Mainnet", "chain": "CLO", - "network": "mainnet", "rpc": [ "https://clo-geth.0xinfra.com" ], diff --git a/_data/chains/eip155-821.json b/_data/chains/eip155-821.json index 4ed39546..ac0058a3 100644 --- a/_data/chains/eip155-821.json +++ b/_data/chains/eip155-821.json @@ -1,7 +1,6 @@ { "name": "Callisto Testnet", "chain": "CLO", - "network": "testnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-8217.json b/_data/chains/eip155-8217.json index b60b5b1c..c1e3c71d 100644 --- a/_data/chains/eip155-8217.json +++ b/_data/chains/eip155-8217.json @@ -1,7 +1,6 @@ { "name": "Klaytn Mainnet Cypress", "chain": "KLAY", - "network": "cypress", "rpc": [ "https://public-node-api.klaytnapi.com/v1/cypress" ], diff --git a/_data/chains/eip155-8285.json b/_data/chains/eip155-8285.json index fe29d1e2..320e842f 100644 --- a/_data/chains/eip155-8285.json +++ b/_data/chains/eip155-8285.json @@ -1,7 +1,6 @@ { "name": "KorthoTest", "chain": "Kortho", - "network": "Test", "rpc": [ "https://www.krotho-test.net" ], diff --git a/_data/chains/eip155-83.json b/_data/chains/eip155-83.json index b112c7b4..75b3a70e 100644 --- a/_data/chains/eip155-83.json +++ b/_data/chains/eip155-83.json @@ -1,7 +1,6 @@ { "name": "Meter Testnet", "chain": "METER Testnet", - "network": "testnet", "rpc": [ "https://rpctest.meter.io" ], diff --git a/_data/chains/eip155-85.json b/_data/chains/eip155-85.json index cab131cd..0c181b81 100644 --- a/_data/chains/eip155-85.json +++ b/_data/chains/eip155-85.json @@ -3,7 +3,6 @@ "chainId": 85, "shortName": "gttest", "chain": "GTTEST", - "network": "testnet", "networkId": 85, "nativeCurrency": { "name": "GateToken", diff --git a/_data/chains/eip155-86.json b/_data/chains/eip155-86.json index 4929fbaf..ef23e413 100644 --- a/_data/chains/eip155-86.json +++ b/_data/chains/eip155-86.json @@ -3,7 +3,6 @@ "chainId": 86, "shortName": "gt", "chain": "GT", - "network": "mainnet", "networkId": 86, "nativeCurrency": { "name": "GateToken", diff --git a/_data/chains/eip155-8723.json b/_data/chains/eip155-8723.json index e9aef0ee..bab4f4db 100644 --- a/_data/chains/eip155-8723.json +++ b/_data/chains/eip155-8723.json @@ -1,7 +1,6 @@ { "name": "TOOL Global Mainnet", "chain": "OLO", - "network": "mainnet", "rpc": [ "https://mainnet-web3.wolot.io" ], diff --git a/_data/chains/eip155-8724.json b/_data/chains/eip155-8724.json index 543a713c..7d05ded8 100644 --- a/_data/chains/eip155-8724.json +++ b/_data/chains/eip155-8724.json @@ -1,7 +1,6 @@ { "name": "TOOL Global Testnet", "chain": "OLO", - "network": "testnet", "rpc": [ "https://testnet-web3.wolot.io" ], diff --git a/_data/chains/eip155-88.json b/_data/chains/eip155-88.json index da6a4172..0112c424 100644 --- a/_data/chains/eip155-88.json +++ b/_data/chains/eip155-88.json @@ -1,7 +1,6 @@ { "name": "TomoChain", "chain": "TOMO", - "network": "mainnet", "rpc": [ "https://rpc.tomochain.com" ], diff --git a/_data/chains/eip155-880.json b/_data/chains/eip155-880.json index 62154f60..4ef28d5a 100644 --- a/_data/chains/eip155-880.json +++ b/_data/chains/eip155-880.json @@ -1,7 +1,6 @@ { "name": "Ambros Chain Mainnet", "chain": "ambroschain", - "network": "mainnet", "rpc": [ "https://mainnet.ambroschain.com" ], diff --git a/_data/chains/eip155-888.json b/_data/chains/eip155-888.json index f13af693..2041974e 100644 --- a/_data/chains/eip155-888.json +++ b/_data/chains/eip155-888.json @@ -1,7 +1,6 @@ { "name": "Wanchain", "chain": "WAN", - "network": "mainnet", "rpc": [ "https://gwan-ssl.wandevs.org:56891/" ], diff --git a/_data/chains/eip155-8888.json b/_data/chains/eip155-8888.json index eaf86bdc..4ace1154 100644 --- a/_data/chains/eip155-8888.json +++ b/_data/chains/eip155-8888.json @@ -1,7 +1,6 @@ { "name": "Ambros Chain Testnet", "chain": "ambroschain", - "network": "testnet", "rpc": [ "https://testnet.ambroschain.com" ], diff --git a/_data/chains/eip155-8995.json b/_data/chains/eip155-8995.json index 33f480f8..e1cb3264 100644 --- a/_data/chains/eip155-8995.json +++ b/_data/chains/eip155-8995.json @@ -1,7 +1,6 @@ { "name": "bloxberg", "chain": "bloxberg", - "network": "mainnet", "rpc": [ "https://core.bloxberg.org" ], diff --git a/_data/chains/eip155-9.json b/_data/chains/eip155-9.json index a8cfd11e..57960412 100644 --- a/_data/chains/eip155-9.json +++ b/_data/chains/eip155-9.json @@ -1,7 +1,6 @@ { "name": "Ubiq Network Testnet", "chain": "UBQ", - "network": "mainnet", "rpc": [], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-9000.json b/_data/chains/eip155-9000.json index f43099ab..c7cff005 100644 --- a/_data/chains/eip155-9000.json +++ b/_data/chains/eip155-9000.json @@ -1,7 +1,6 @@ { "name": "Evmos Testnet", "chain": "Evmos", - "network": "testnet", "rpc": ["https://ethereum.rpc.evmos.dev"], "faucets": ["https://faucet.evmos.org"], "nativeCurrency": { diff --git a/_data/chains/eip155-9001.json b/_data/chains/eip155-9001.json index 280e7bc1..ed429b86 100644 --- a/_data/chains/eip155-9001.json +++ b/_data/chains/eip155-9001.json @@ -1,7 +1,6 @@ { "name": "Evmos", "chain": "Evmos", - "network": "mainnet", "rpc": ["https://ethereum.rpc.evmos.org"], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-9100.json b/_data/chains/eip155-9100.json index 12a64dd7..25e233ad 100644 --- a/_data/chains/eip155-9100.json +++ b/_data/chains/eip155-9100.json @@ -1,7 +1,6 @@ { "name": "Genesis Coin", "chain": "Genesis", - "network": "Genesis Coin", "rpc": [ "https://genesis-gn.com", "wss://genesis-gn.com" diff --git a/_data/chains/eip155-940.json b/_data/chains/eip155-940.json index 368bec81..6c1aebdc 100644 --- a/_data/chains/eip155-940.json +++ b/_data/chains/eip155-940.json @@ -2,7 +2,6 @@ "name": "PulseChain Testnet", "shortName": "tpls", "chain": "tPLS", - "network": "testnet", "chainId": 940, "networkId": 940, "infoURL": "https://pulsechain.com/", diff --git a/_data/chains/eip155-95.json b/_data/chains/eip155-95.json index ba020c68..d95a6706 100644 --- a/_data/chains/eip155-95.json +++ b/_data/chains/eip155-95.json @@ -1,7 +1,6 @@ { "name": "CryptoKylin Testnet", "chain": "EOS", - "network": "testnet", "rpc": [ "https://kylin.eosargentina.io" ], diff --git a/_data/chains/eip155-9527.json b/_data/chains/eip155-9527.json index 1653551b..c3478c2a 100644 --- a/_data/chains/eip155-9527.json +++ b/_data/chains/eip155-9527.json @@ -1,7 +1,6 @@ { "name": "Rangers Protocol Testnet Robin", "chain": "Rangers", - "network": "robin", "icon": "rangers", "rpc": [ "https://robin.rangersprotocol.com/api/jsonrpc" diff --git a/_data/chains/eip155-955305.json b/_data/chains/eip155-955305.json index c89d0cbd..b1770eb2 100644 --- a/_data/chains/eip155-955305.json +++ b/_data/chains/eip155-955305.json @@ -1,7 +1,6 @@ { "name": "Eluvio Content Fabric", "chain": "Eluvio", - "network": "mainnet", "rpc": [ "https://host-76-74-28-226.contentfabric.io/eth/", "https://host-76-74-28-232.contentfabric.io/eth/", diff --git a/_data/chains/eip155-96.json b/_data/chains/eip155-96.json index 4009b35e..3633676a 100644 --- a/_data/chains/eip155-96.json +++ b/_data/chains/eip155-96.json @@ -1,7 +1,6 @@ { "name": "NEXT Smart Chain", "chain": "NSC", - "network": "mainnet", "rpc": [ "https://rpc.nextsmartchain.com" ], diff --git a/_data/chains/eip155-97.json b/_data/chains/eip155-97.json index e83adf83..cac2bd11 100644 --- a/_data/chains/eip155-97.json +++ b/_data/chains/eip155-97.json @@ -1,7 +1,6 @@ { "name": "Binance Smart Chain Testnet", "chain": "BSC", - "network": "Chapel", "rpc": [ "https://data-seed-prebsc-1-s1.binance.org:8545", "https://data-seed-prebsc-2-s1.binance.org:8545", diff --git a/_data/chains/eip155-977.json b/_data/chains/eip155-977.json index 52dc783f..0c559daf 100644 --- a/_data/chains/eip155-977.json +++ b/_data/chains/eip155-977.json @@ -1,7 +1,6 @@ { "name": "Nepal Blockchain Network", "chain": "YETI", - "network": "mainnet", "rpc": [ "https://api.nepalblockchain.dev", "https://api.nepalblockchain.network" diff --git a/_data/chains/eip155-99.json b/_data/chains/eip155-99.json index 6608a125..d01dc465 100644 --- a/_data/chains/eip155-99.json +++ b/_data/chains/eip155-99.json @@ -1,7 +1,6 @@ { "name": "POA Network Core", "chain": "POA", - "network": "core", "rpc": [ "https://core.poanetwork.dev", "http://core.poanetwork.dev:8545", diff --git a/_data/chains/eip155-99415706.json b/_data/chains/eip155-99415706.json index 6c50e9f7..dd34f17d 100644 --- a/_data/chains/eip155-99415706.json +++ b/_data/chains/eip155-99415706.json @@ -1,7 +1,6 @@ { "name": "Joys Digital TestNet", "chain": "TOYS", - "network": "testnet", "rpc": [ "https://toys.joys.cash/" ], diff --git a/_data/chains/eip155-998.json b/_data/chains/eip155-998.json index 2d6d0d3e..79072f08 100644 --- a/_data/chains/eip155-998.json +++ b/_data/chains/eip155-998.json @@ -1,7 +1,6 @@ { "name": "Lucky Network", "chain": "LN", - "network": "mainnet", "rpc": [ "https://rpc.luckynetwork.org", "wss://ws.lnscan.org", diff --git a/_data/chains/eip155-999.json b/_data/chains/eip155-999.json index a2d18bae..432e01f6 100644 --- a/_data/chains/eip155-999.json +++ b/_data/chains/eip155-999.json @@ -1,7 +1,6 @@ { "name": "Wanchain Testnet", "chain": "WAN", - "network": "testnet", "rpc": [ "https://gwan-ssl.wandevs.org:46891/" ], diff --git a/_data/chains/eip155-9999.json b/_data/chains/eip155-9999.json index 0adad584..39ec69ee 100644 --- a/_data/chains/eip155-9999.json +++ b/_data/chains/eip155-9999.json @@ -1,7 +1,6 @@ { "name": "myOwn Testnet", "chain": "myOwn", - "network": "testnet", "rpc": [ "https://geth.dev.bccloud.net" ], From 150d8173fcefeb1f5133bf1ef92c7ef8ec0d264c Mon Sep 17 00:00:00 2001 From: ligi Date: Wed, 5 Jan 2022 14:59:57 +0100 Subject: [PATCH 52/53] Remove discontinued RPCs and add infura --- _data/chains/eip155-5.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/_data/chains/eip155-5.json b/_data/chains/eip155-5.json index eaa342e4..e3aa3e07 100644 --- a/_data/chains/eip155-5.json +++ b/_data/chains/eip155-5.json @@ -3,10 +3,9 @@ "title": "Ethereum Testnet Görli", "chain": "ETH", "rpc": [ - "https://rpc.goerli.mudit.blog/", - "https://rpc.slock.it/goerli", - - "https://goerli.prylabs.net/" + "https://goerli.infura.io/v3/${INFURA_API_KEY}", + "wss://goerli.infura.io/v3/${INFURA_API_KEY}", + "https://rpc.goerli.mudit.blog/" ], "faucets": [ "https://goerli-faucet.slock.it/?address=${ADDRESS}", From 6e3b5d8821425df43088bfab9af0dd581006e1d6 Mon Sep 17 00:00:00 2001 From: ligi Date: Wed, 5 Jan 2022 15:25:33 +0100 Subject: [PATCH 53/53] Backfill more title fields and shorten corresponding names --- _data/chains/eip155-4.json | 3 ++- _data/chains/eip155-42.json | 3 ++- _data/chains/eip155-421611.json | 3 ++- _data/chains/eip155-69.json | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/_data/chains/eip155-4.json b/_data/chains/eip155-4.json index da4faa8c..ef77f275 100644 --- a/_data/chains/eip155-4.json +++ b/_data/chains/eip155-4.json @@ -1,5 +1,6 @@ { - "name": "Ethereum Testnet Rinkeby", + "name": "Rinkeby", + "title": "Ethereum Testnet Rinkeby", "chain": "ETH", "rpc": [ "https://rinkeby.infura.io/v3/${INFURA_API_KEY}", diff --git a/_data/chains/eip155-42.json b/_data/chains/eip155-42.json index 40e4b430..db7db908 100644 --- a/_data/chains/eip155-42.json +++ b/_data/chains/eip155-42.json @@ -1,5 +1,6 @@ { - "name": "Ethereum Testnet Kovan", + "name": "Kovan", + "title": "Ethereum Testnet Kovan", "chain": "ETH", "rpc": [ "https://kovan.poa.network", diff --git a/_data/chains/eip155-421611.json b/_data/chains/eip155-421611.json index 835d11d2..885f7957 100644 --- a/_data/chains/eip155-421611.json +++ b/_data/chains/eip155-421611.json @@ -1,5 +1,6 @@ { - "name": "Arbitrum Testnet Rinkeby", + "name": "Arbitrum Rinkeby", + "title": "Arbitrum Testnet Rinkeby", "chainId": 421611, "shortName": "arb-rinkeby", "chain": "ETH", diff --git a/_data/chains/eip155-69.json b/_data/chains/eip155-69.json index 7a1fd0bb..5ddf000a 100644 --- a/_data/chains/eip155-69.json +++ b/_data/chains/eip155-69.json @@ -1,5 +1,6 @@ { - "name": "Optimistic Ethereum Testnet Kovan", + "name": "Optimistic Kovan", + "title": "Optimistic Ethereum Testnet Kovan", "chain": "ETH", "rpc": ["https://kovan.optimism.io/"], "faucets": [],