From 3849f6168fdfb92224d311cc8c9ab61573eb1901 Mon Sep 17 00:00:00 2001 From: Narate Ketram Date: Wed, 9 Feb 2022 18:32:48 +0700 Subject: [PATCH 01/49] Add Vela1 Chain Mainnet eip155-555.json (#845) --- _data/chains/eip155-555.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 _data/chains/eip155-555.json diff --git a/_data/chains/eip155-555.json b/_data/chains/eip155-555.json new file mode 100644 index 00000000..af8c94d6 --- /dev/null +++ b/_data/chains/eip155-555.json @@ -0,0 +1,24 @@ +{ + "name": "Vela1 Chain Mainnet", + "chain": "VELA1", + "rpc": [ + "https://rpc.velaverse.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "CLASS COIN", + "symbol": "CLASS", + "decimals": 18 + }, + "infoURL": "https://velaverse.io", + "shortName": "CLASS", + "chainId": 555, + "networkId": 555, + "explorers": [ + { + "name": "Vela1 Chain Mainnet Explorer", + "url": "https://exp.velaverse.io", + "standard": "EIP3091" + } + ] +} From 5b500fd7156bf28c861a518beb5194d75d251cd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Garamv=C3=B6lgyi?= Date: Wed, 9 Feb 2022 20:20:58 +0800 Subject: [PATCH 02/49] update Conflux network names (#848) --- _data/chains/eip155-1030.json | 5 +++-- _data/chains/eip155-71.json | 6 +++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/_data/chains/eip155-1030.json b/_data/chains/eip155-1030.json index 04b1e138..6e548091 100644 --- a/_data/chains/eip155-1030.json +++ b/_data/chains/eip155-1030.json @@ -1,6 +1,7 @@ { - "name": "Conflux Mainnet", + "name": "Conflux eSpace", "chain": "Conflux", + "network": "mainnet", "rpc": ["https://evm.confluxrpc.com"], "faucets": [], "nativeCurrency": { @@ -16,7 +17,7 @@ "explorers": [ { "name": "Conflux Scan", - "url": "https://evm.confluxscan.io", + "url": "https://evm.confluxscan.net", "standard": "none" } ] diff --git a/_data/chains/eip155-71.json b/_data/chains/eip155-71.json index b3b61358..1c3167ec 100644 --- a/_data/chains/eip155-71.json +++ b/_data/chains/eip155-71.json @@ -1,9 +1,9 @@ { - "name": "Conflux Testnet", + "name": "Conflux eSpace (Testnet)", "chain": "Conflux", "network": "testnet", "rpc": ["https://evmtestnet.confluxrpc.com"], - "faucets": [], + "faucets": ["https://faucet.confluxnetwork.org"], "nativeCurrency": { "name": "CFX", "symbol": "CFX", @@ -17,7 +17,7 @@ "explorers": [ { "name": "Conflux Scan", - "url": "https://evmtestnet.confluxscan.io", + "url": "https://evmtestnet.confluxscan.net", "standard": "none" } ] From 81ae6ee4554bb2abfd499e60e6778db139dacfe3 Mon Sep 17 00:00:00 2001 From: Nova Network Inc <95463062+nova-network-inc@users.noreply.github.com> Date: Thu, 10 Feb 2022 02:14:37 +1300 Subject: [PATCH 03/49] Create novanetwork.json (#852) Add Nova Network --- _data/icons/novanetwork.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 _data/icons/novanetwork.json diff --git a/_data/icons/novanetwork.json b/_data/icons/novanetwork.json new file mode 100644 index 00000000..714aa167 --- /dev/null +++ b/_data/icons/novanetwork.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNtr72zqg3eKGNyVVNgTNLddPm3nUCqggXYyE9vQxZDW2", + "width": 512, + "height": 512, + "format": "png" + } +] From 4b5471527aa6aff117583dccb59c4c436b9376b3 Mon Sep 17 00:00:00 2001 From: Stephen van Egmond Date: Wed, 9 Feb 2022 10:37:58 -0500 Subject: [PATCH 04/49] Shyft network (#850) * add shyft network * add shyft chain particulars * Update _data/chains/eip155-7341.json Co-authored-by: ligi * fix broken json * fix ipfs url Co-authored-by: ligi --- _data/chains/eip155-11437.json | 23 +++++++++++++++++++++++ _data/chains/eip155-7341.json | 24 ++++++++++++++++++++++++ _data/icons/shyft.json | 9 +++++++++ 3 files changed, 56 insertions(+) create mode 100644 _data/chains/eip155-11437.json create mode 100644 _data/chains/eip155-7341.json create mode 100644 _data/icons/shyft.json diff --git a/_data/chains/eip155-11437.json b/_data/chains/eip155-11437.json new file mode 100644 index 00000000..0dcbf80f --- /dev/null +++ b/_data/chains/eip155-11437.json @@ -0,0 +1,23 @@ +{ + "name": "Shyft Testnet", + "chain": "SHYFTT", + "icon": "shyft", + "rpc": [ + "https://rpc.testnet.shyft.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shyft Test Token", + "symbol": "SHYFTT", + "decimals": 18 + }, + "infoURL": "https://shyft.network", + "shortName": "shyftt", + "chainId": 11437, + "networkId": 11437, + "explorers": [{ + "name": "Shyft Testnet BX", + "url": "https://bx.testnet.shyft.network", + "standard": "EIP3091" + }] +} diff --git a/_data/chains/eip155-7341.json b/_data/chains/eip155-7341.json new file mode 100644 index 00000000..d89753c3 --- /dev/null +++ b/_data/chains/eip155-7341.json @@ -0,0 +1,24 @@ +{ + "name": "Shyft Mainnet", + "chain": "SHYFT", + "icon": "shyft", + "rpc": [ + "https://rpc.shyft.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shyft", + "symbol": "SHYFT", + "decimals": 18 + }, + "infoURL": "https://shyft.network", + "shortName": "shyft", + "chainId": 7341, + "networkId": 7341, + "slip44": 2147490989, + "explorers": [{ + "name": "Shyft BX", + "url": "https://bx.shyft.network", + "standard": "EIP3091" + }] +} diff --git a/_data/icons/shyft.json b/_data/icons/shyft.json new file mode 100644 index 00000000..17c728e9 --- /dev/null +++ b/_data/icons/shyft.json @@ -0,0 +1,9 @@ +[ + { + "url":"ipfs://QmUkFZC2ZmoYPTKf7AHdjwRPZoV2h1MCuHaGM4iu8SNFpi", + "width":400, + "height":400, + "format":"svg" + } +] + From e44841c3a04e4333ef235356c050a030c2cacd99 Mon Sep 17 00:00:00 2001 From: Nova Network Inc <95463062+nova-network-inc@users.noreply.github.com> Date: Thu, 10 Feb 2022 19:41:51 +1300 Subject: [PATCH 05/49] Create nebulatestnet.json (#861) --- _data/icons/nebulatestnet.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 _data/icons/nebulatestnet.json diff --git a/_data/icons/nebulatestnet.json b/_data/icons/nebulatestnet.json new file mode 100644 index 00000000..714aa167 --- /dev/null +++ b/_data/icons/nebulatestnet.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNtr72zqg3eKGNyVVNgTNLddPm3nUCqggXYyE9vQxZDW2", + "width": 512, + "height": 512, + "format": "png" + } +] From 268fd321a2b2675fb61a448e3720c3fef8382871 Mon Sep 17 00:00:00 2001 From: alliswell <45843736+benbaley@users.noreply.github.com> Date: Thu, 10 Feb 2022 18:27:54 +0800 Subject: [PATCH 06/49] =?UTF-8?q?Change=20210309=EF=BC=88chainid=EF=BC=89'?= =?UTF-8?q?s=20shortname=20to=20platondev=20and=20add=20PlatON=20mainnet(2?= =?UTF-8?q?10425)=20(#864)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * added: Alaya&PlatON testnet * add faucets * update explorer url" * add alaya mainnet * Add PlatON mainnet * rm eip155-201018.json * change platon devnet's shortname to platondev * change platon devnet's shortname to platondev * add PlatON mainnet * Remove extra slash Co-authored-by: ligi --- _data/chains/eip155-210309.json | 2 +- _data/chains/eip155-210425.json | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 _data/chains/eip155-210425.json diff --git a/_data/chains/eip155-210309.json b/_data/chains/eip155-210309.json index a6b23f4c..aed0e533 100644 --- a/_data/chains/eip155-210309.json +++ b/_data/chains/eip155-210309.json @@ -14,7 +14,7 @@ "decimals": 18 }, "infoURL": "https://www.platon.network", - "shortName": "PlatON", + "shortName": "platondev", "chainId": 210309, "networkId": 1, "icon": "platon", diff --git a/_data/chains/eip155-210425.json b/_data/chains/eip155-210425.json new file mode 100644 index 00000000..21b73ff8 --- /dev/null +++ b/_data/chains/eip155-210425.json @@ -0,0 +1,27 @@ +{ + "name": "PlatON Mainnet", + "chain": "PlatON", + "network": "mainnet", + "rpc": [ + "https://openapi.platon.network/rpc", + "wss://openapi.platon.network/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "LAT", + "symbol": "lat", + "decimals": 18 + }, + "infoURL": "https://www.platon.network", + "shortName": "platon", + "chainId": 210425, + "networkId": 1, + "icon": "platon", + "explorers": [ + { + "name": "PlatON explorer", + "url": "https://scan.platon.network", + "standard": "none" + } + ] +} \ No newline at end of file From 00696485a454405bcd762ed1e72062985e35777b Mon Sep 17 00:00:00 2001 From: Thanatat Tamtan Date: Fri, 11 Feb 2022 15:00:56 +0700 Subject: [PATCH 07/49] add rei chain (#868) --- _data/chains/eip155-55555.json | 25 +++++++++++++++++++++++++ _data/chains/eip155-55556.json | 25 +++++++++++++++++++++++++ _data/icons/reichain.json | 8 ++++++++ 3 files changed, 58 insertions(+) create mode 100644 _data/chains/eip155-55555.json create mode 100644 _data/chains/eip155-55556.json create mode 100644 _data/icons/reichain.json diff --git a/_data/chains/eip155-55555.json b/_data/chains/eip155-55555.json new file mode 100644 index 00000000..250f0a0c --- /dev/null +++ b/_data/chains/eip155-55555.json @@ -0,0 +1,25 @@ +{ + "name": "REI Chain Mainnet", + "chain": "REI", + "icon": "reichain", + "rpc": [ + "https://rei-rpc.moonrhythm.io" + ], + "faucets": [ + "http://kururu.finance/faucet?chainId=55555" + ], + "nativeCurrency": { + "name": "Rei", + "symbol": "REI", + "decimals": 18 + }, + "infoURL": "https://reichain.io", + "shortName": "rei", + "chainId": 55555, + "networkId": 55555, + "explorers": [{ + "name": "reiscan", + "url": "https://reiscan.com", + "standard": "EIP3091" + }] +} diff --git a/_data/chains/eip155-55556.json b/_data/chains/eip155-55556.json new file mode 100644 index 00000000..79332b68 --- /dev/null +++ b/_data/chains/eip155-55556.json @@ -0,0 +1,25 @@ +{ + "name": "REI Chain Testnet", + "chain": "REI", + "icon": "reichain", + "rpc": [ + "https://rei-testnet-rpc.moonrhythm.io" + ], + "faucets": [ + "http://kururu.finance/faucet?chainId=55556" + ], + "nativeCurrency": { + "name": "tRei", + "symbol": "tREI", + "decimals": 18 + }, + "infoURL": "https://reichain.io", + "shortName": "trei", + "chainId": 55556, + "networkId": 55556, + "explorers": [{ + "name": "reiscan", + "url": "https://testnet.reiscan.com", + "standard": "EIP3091" + }] +} diff --git a/_data/icons/reichain.json b/_data/icons/reichain.json new file mode 100644 index 00000000..895fa347 --- /dev/null +++ b/_data/icons/reichain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmNy5d5knHVjJJS9g4kLsh9i73RTjckpKL6KZvRk6ptbhf", + "width": 591, + "height": 591, + "format": "svg" + } +] From feb250fa69fbf93ac36e6f436b4133ff4875f3d8 Mon Sep 17 00:00:00 2001 From: Nova Network Inc <95463062+nova-network-inc@users.noreply.github.com> Date: Fri, 11 Feb 2022 21:04:04 +1300 Subject: [PATCH 08/49] Create eip155-87.json (#859) * Create eip155-87.json Add Nova Network * Update _data/chains/eip155-87.json * Update eip155-87.json * remove extra comma Co-authored-by: ligi --- _data/chains/eip155-87.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 _data/chains/eip155-87.json diff --git a/_data/chains/eip155-87.json b/_data/chains/eip155-87.json new file mode 100644 index 00000000..d729b9c9 --- /dev/null +++ b/_data/chains/eip155-87.json @@ -0,0 +1,19 @@ +{ + "name": "Nova Network", + "chain": "NBX", + "icon": "novanetwork", + "rpc": [ + "http://rpc.novanetwork.io:8545/", + "http://82.165.54.110:8545/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Nebula X", + "symbol": "NBX", + "decimals": 18 + }, + "infoURL": "https://novanetwork.io/", + "shortName": "nbx", + "chainId": 87, + "networkId": 87 +} From 13b6e53166234a6ecca2e6e2fd803ab5a51407c7 Mon Sep 17 00:00:00 2001 From: meshnyan <83761421+meshnyan@users.noreply.github.com> Date: Fri, 11 Feb 2022 11:07:11 +0300 Subject: [PATCH 09/49] create mos elections testnet network (#863) Co-authored-by: novikovmu --- _data/chains/eip155-600.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 _data/chains/eip155-600.json diff --git a/_data/chains/eip155-600.json b/_data/chains/eip155-600.json new file mode 100644 index 00000000..a90c577f --- /dev/null +++ b/_data/chains/eip155-600.json @@ -0,0 +1,18 @@ +{ + "name": "Mos elections testnet", + "chain": "METestChain", + "rpc": [ + ], + "faucets": [ + ], + "nativeCurrency": { + "name": "Mos Elections Testnet Native Token", + "symbol": "METNT", + "decimals": 18 + }, + "infoURL": "", + "shortName": "me-chain-testnet", + "chainId": 600, + "networkId": 600 + } + \ No newline at end of file From 64279c282cd57943fa5324ed2006e21943ad8e04 Mon Sep 17 00:00:00 2001 From: albertov19 <64150856+albertov19@users.noreply.github.com> Date: Fri, 11 Feb 2022 09:10:01 +0100 Subject: [PATCH 10/49] updated moonriver/moonbeam (#865) --- _data/chains/eip155-1284.json | 5 ----- _data/chains/eip155-1285.json | 4 ++-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/_data/chains/eip155-1284.json b/_data/chains/eip155-1284.json index ffb88e21..5d1cdada 100644 --- a/_data/chains/eip155-1284.json +++ b/_data/chains/eip155-1284.json @@ -16,11 +16,6 @@ "chainId": 1284, "networkId": 1284, "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.moonbeam.network", - "standard": "none" - }, { "name": "moonscan", "url": "https://moonbeam.moonscan.io", diff --git a/_data/chains/eip155-1285.json b/_data/chains/eip155-1285.json index 3940e979..c4a58304 100644 --- a/_data/chains/eip155-1285.json +++ b/_data/chains/eip155-1285.json @@ -2,8 +2,8 @@ "name": "Moonriver", "chain": "MOON", "rpc": [ - "https://rpc.moonriver.moonbeam.network", - "wss://wss.moonriver.moonbeam.network" + "https://rpc.api.moonriver.moonbeam.network", + "wss://wss.api.moonriver.moonbeam.network" ], "faucets": [], "nativeCurrency": { From d2915575c7903682061b5cddb9fbf9bd91725002 Mon Sep 17 00:00:00 2001 From: vchain007 <75559334+vchain007@users.noreply.github.com> Date: Fri, 11 Feb 2022 16:13:53 +0800 Subject: [PATCH 11/49] Update eip155-666666.json (#869) decimals 6 --> 18 native vs decimal is 6 ,but ethereum compatible interface already adapt --- _data/chains/eip155-666666.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/chains/eip155-666666.json b/_data/chains/eip155-666666.json index 61e290d2..267d94f8 100644 --- a/_data/chains/eip155-666666.json +++ b/_data/chains/eip155-666666.json @@ -10,11 +10,11 @@ "nativeCurrency": { "name": "VS", "symbol": "VS", - "decimals": 6 + "decimals": 18 }, "infoURL": "https://visionscan.org", "shortName": "vpioneer", "chainId": 666666, "networkId": 666666, "slip44": 60 -} \ No newline at end of file +} From 76df19fc93ed7cb8451471b8f64abb041c5f24aa Mon Sep 17 00:00:00 2001 From: vchain007 <75559334+vchain007@users.noreply.github.com> Date: Fri, 11 Feb 2022 16:19:29 +0800 Subject: [PATCH 12/49] Update eip155-888888.json (#870) decimals 6 --> 18 native vs decimal is 6 ,but ethereum compatible interface already adapt --- _data/chains/eip155-888888.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/chains/eip155-888888.json b/_data/chains/eip155-888888.json index 81960b40..67e1cd1e 100644 --- a/_data/chains/eip155-888888.json +++ b/_data/chains/eip155-888888.json @@ -9,11 +9,11 @@ "nativeCurrency": { "name": "VS", "symbol": "VS", - "decimals": 6 + "decimals": 18 }, "infoURL": "https://visionscan.org", "shortName": "vision", "chainId": 888888, "networkId": 888888, "slip44": 60 - } \ No newline at end of file + } From dbe564c78e8b244af938ceec81407c2ef72bfd9a Mon Sep 17 00:00:00 2001 From: meshnyan <83761421+meshnyan@users.noreply.github.com> Date: Fri, 11 Feb 2022 11:32:58 +0300 Subject: [PATCH 13/49] rename test network (#871) Co-authored-by: novikovmu --- _data/chains/eip155-600.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/_data/chains/eip155-600.json b/_data/chains/eip155-600.json index a90c577f..b3d08784 100644 --- a/_data/chains/eip155-600.json +++ b/_data/chains/eip155-600.json @@ -1,17 +1,17 @@ { - "name": "Mos elections testnet", - "chain": "METestChain", + "name": "Meshnyan testnet", + "chain": "MeshTestChain", "rpc": [ ], "faucets": [ ], "nativeCurrency": { - "name": "Mos Elections Testnet Native Token", - "symbol": "METNT", + "name": "Meshnyan Testnet Native Token", + "symbol": "MESHT", "decimals": 18 }, "infoURL": "", - "shortName": "me-chain-testnet", + "shortName": "mesh-chain-testnet", "chainId": 600, "networkId": 600 } From 038d89efce188cc215d84dae21c3377af81762d5 Mon Sep 17 00:00:00 2001 From: Bobby Dresser Date: Fri, 11 Feb 2022 02:07:34 -0800 Subject: [PATCH 14/49] Update Optimism chain info (#843) * update Optimism chain info * Short name MUST be unique Co-authored-by: ligi --- _data/chains/eip155-10.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-10.json b/_data/chains/eip155-10.json index 40e5ae54..06a11075 100644 --- a/_data/chains/eip155-10.json +++ b/_data/chains/eip155-10.json @@ -5,7 +5,7 @@ "faucets": [], "nativeCurrency": { "name": "Ether", - "symbol": "OETH", + "symbol": "ETH", "decimals": 18 }, "infoURL": "https://optimism.io", From f2e9a1e92c5f773127189f01fce62c08a29d647b Mon Sep 17 00:00:00 2001 From: Nova Network Inc <95463062+nova-network-inc@users.noreply.github.com> Date: Mon, 14 Feb 2022 20:33:19 +1300 Subject: [PATCH 15/49] Add HTTPS RPCs and Explorer (#875) * Add HTTPS RPCs and Explorer Added secure RPCs and Explorer. * Added comma * Rebranding native prior launch Rebranding native currency --- _data/chains/eip155-87.json | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/_data/chains/eip155-87.json b/_data/chains/eip155-87.json index d729b9c9..43790650 100644 --- a/_data/chains/eip155-87.json +++ b/_data/chains/eip155-87.json @@ -1,19 +1,24 @@ { "name": "Nova Network", - "chain": "NBX", + "chain": "NNW", "icon": "novanetwork", "rpc": [ - "http://rpc.novanetwork.io:8545/", - "http://82.165.54.110:8545/" + "https://rpc.novanetwork.io:9070", + "http://nova.genyrpc.info:8545" ], "faucets": [], "nativeCurrency": { - "name": "Nebula X", - "symbol": "NBX", + "name": "Supernova", + "symbol": "SNT", "decimals": 18 }, - "infoURL": "https://novanetwork.io/", - "shortName": "nbx", + "infoURL": "https://novanetwork.io", + "shortName": "nnw", "chainId": 87, - "networkId": 87 + "networkId": 87, + "explorers": [{ + "name": "novanetwork", + "url": "https://explorer.novanetwork.io", + "standard": "EIP3091" + }] } From 052dfa7c934068dc06f4d941477beb63ddb186a0 Mon Sep 17 00:00:00 2001 From: Brothereum <84236781+brothereum@users.noreply.github.com> Date: Mon, 14 Feb 2022 13:53:13 +0530 Subject: [PATCH 16/49] Initial commit (#878) --- _data/chains/eip155-108801.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 _data/chains/eip155-108801.json diff --git a/_data/chains/eip155-108801.json b/_data/chains/eip155-108801.json new file mode 100644 index 00000000..7ebac3ff --- /dev/null +++ b/_data/chains/eip155-108801.json @@ -0,0 +1,26 @@ +{ + "name": "BROChain Mainnet", + "chain": "BRO", + "network": "mainnet", + "rpc": [ + "https://rpc.brochain.org", + "http://rpc.brochain.org", + "https://rpc.brochain.org/mainnet", + "http://rpc.brochain.org/mainnet" + ], + "faucets": [], + "nativeCurrency": { + "name": "Brother", + "symbol": "BRO", + "decimals": 18 + }, + "infoURL": "https://brochain.org", + "shortName": "bro", + "chainId": 108801, + "networkId": 108801, + "explorers": [{ + "name": "BROChain Explorer", + "url": "https://explorer.brochain.org", + "standard": "EIP3091" + }] +} From 2279b878222d55c6ddbc3a88a5bd58c28baa767a Mon Sep 17 00:00:00 2001 From: ligi Date: Tue, 15 Feb 2022 14:03:40 +0100 Subject: [PATCH 17/49] Housekeeping (#885) * Use gradle 7.4 * Remove issue templates we want that people open PRs * Configure stale to get rid of issues/PRs with no activity --- .../add-new-chain---network-id.md | 25 ------------------ .github/ISSUE_TEMPLATE/other.md | 8 ------ .github/workflows/stale.yml | 15 +++++++++++ gradle/wrapper/gradle-wrapper.jar | Bin 59536 -> 59821 bytes gradle/wrapper/gradle-wrapper.properties | 2 +- 5 files changed, 16 insertions(+), 34 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/add-new-chain---network-id.md delete mode 100644 .github/ISSUE_TEMPLATE/other.md create mode 100644 .github/workflows/stale.yml diff --git a/.github/ISSUE_TEMPLATE/add-new-chain---network-id.md b/.github/ISSUE_TEMPLATE/add-new-chain---network-id.md deleted file mode 100644 index 84eee745..00000000 --- a/.github/ISSUE_TEMPLATE/add-new-chain---network-id.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: Add new chain / network ID -about: Adding a new chain and/or network ID by filing an issue -title: "[New Chain / Network]" -labels: '' -assignees: '' - ---- - -> Fill out the following to add your chain / network id, OR propose a Pull Request making your edits to the ```_data/chains.json``` file directly - -``` -{ - "name": "Ethereum Mainnet", - "shortName": "eth", - "chain": "ETH", - "network": "mainnet", - "chainId": 1, - "networkId": 1, - "rpc": ["https://mainnet.infura.io"], - "faucets": [], - "infoURL: "https://ethereum.org", - "nativeCurrency": {"name":"Ether","symbol":"ETH","decimals":18} -} -``` diff --git a/.github/ISSUE_TEMPLATE/other.md b/.github/ISSUE_TEMPLATE/other.md deleted file mode 100644 index 601e0e9d..00000000 --- a/.github/ISSUE_TEMPLATE/other.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -name: other -about: either an issue with ethereum-lists/chains or a suggestion -title: "" -labels: '' -assignees: '' - ---- diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 00000000..23c8f1cb --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,15 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '30 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v4 + with: + stale-issue-message: 'This issue has no activity in a while - it will be closed soon.' + stale-pr-message: 'This PR has no activity in a while - it will be closed soon.' + days-before-stale: 42 + days-before-close: 7 \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 7454180f2ae8848c63b8b4dea2cb829da983f2fa..41d9927a4d4fb3f96a785543079b8df6723c946b 100644 GIT binary patch delta 8958 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 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 669386b8..b1159fc5 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.3-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists From 48f4ad2e1fdffdd87f321e27fa128c80de6258de Mon Sep 17 00:00:00 2001 From: rubidiumchain <51225157+rubidiumchain@users.noreply.github.com> Date: Tue, 15 Feb 2022 22:03:55 +0900 Subject: [PATCH 18/49] Update explorer url (#884) Co-authored-by: kodabs --- _data/chains/eip155-5869.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/_data/chains/eip155-5869.json b/_data/chains/eip155-5869.json index 2ed792d2..8a92eac1 100644 --- a/_data/chains/eip155-5869.json +++ b/_data/chains/eip155-5869.json @@ -11,8 +11,13 @@ "symbol": "RBD", "decimals": 18 }, - "infoURL": "http://wegochain.io", + "infoURL": "https://www.wegochain.io", "shortName": "rbd", "chainId": 5869, - "networkId": 5869 + "networkId": 5869, + "explorers": [{ + "name": "wegoscan2", + "url": "https://scan2.wegochain.io", + "standard": "EIP3091" + }] } From 263353e3b38768039635d1933e604e747122a5a1 Mon Sep 17 00:00:00 2001 From: Nova Network Inc <95463062+nova-network-inc@users.noreply.github.com> Date: Wed, 16 Feb 2022 08:54:58 +1300 Subject: [PATCH 19/49] Create eip155-107.json (#860) * Create eip155-107.json Add Nebula Testnet * Remove extra quote * Http -> https * Update _data/chains/eip155-107.json * Change short name * Update eip155-107.json * Recommit to build * Add Nebula Testnet Icon Co-authored-by: ligi --- _data/chains/eip155-107.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 _data/chains/eip155-107.json diff --git a/_data/chains/eip155-107.json b/_data/chains/eip155-107.json new file mode 100644 index 00000000..f41e8b7c --- /dev/null +++ b/_data/chains/eip155-107.json @@ -0,0 +1,24 @@ +{ + "name": "Nebula Testnet", + "chain": "NTN", + "icon": "nebulatestnet", + "rpc": [ + "https://testnet.rpc.novanetwork.io:9070", + "http://testnet.rpc.novanetwork.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Nebula X", + "symbol": "NBX", + "decimals": 18 + }, + "infoURL": "https://novanetwork.io", + "shortName": "ntn", + "chainId": 107, + "networkId": 107, + "explorers": [{ + "name": "nebulatestnet", + "url": "https://explorer.novanetwork.io", + "standard": "EIP3091" + }] +} From a5641809625159391918da389ea0bdc2be8f564f Mon Sep 17 00:00:00 2001 From: ligi Date: Wed, 16 Feb 2022 05:55:31 +0100 Subject: [PATCH 20/49] Do not mark enhancement issues as stale --- .github/workflows/stale.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 23c8f1cb..38e16d46 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -10,6 +10,7 @@ jobs: - uses: actions/stale@v4 with: stale-issue-message: 'This issue has no activity in a while - it will be closed soon.' + exempt-issue-labels: enhancement stale-pr-message: 'This PR has no activity in a while - it will be closed soon.' days-before-stale: 42 days-before-close: 7 \ No newline at end of file From 79887e716dec1ecc026a6167fb546d133a9e2299 Mon Sep 17 00:00:00 2001 From: ligi Date: Sat, 19 Feb 2022 12:45:53 +0100 Subject: [PATCH 21/49] Add Sepolia (#899) --- _data/chains/eip155-11155111.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 _data/chains/eip155-11155111.json diff --git a/_data/chains/eip155-11155111.json b/_data/chains/eip155-11155111.json new file mode 100644 index 00000000..2db2d033 --- /dev/null +++ b/_data/chains/eip155-11155111.json @@ -0,0 +1,25 @@ +{ + "name": "Sepolia", + "title": "Ethereum Testnet Sepolia", + "chain": "ETH", + "rpc": [ + ], + "faucets": [ + ], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "SEP", + "decimals": 18 + }, + "infoURL": "https://sepolia.otterscan.io", + "shortName": "sep", + "chainId": 11155111, + "networkId": 11155111, + "explorers": [ + { + "name": "otterscan-sepolia", + "url": "https://sepolia.otterscan.io", + "standard": "EIP3091" + } + ] +} From e6c4ee6883f7a93bc38319d49b6a66ad0b3f808b Mon Sep 17 00:00:00 2001 From: KK Cheah <69582311+KKCheah@users.noreply.github.com> Date: Sat, 19 Feb 2022 21:42:06 +0800 Subject: [PATCH 22/49] Adding Phoenix Mainnet to Chainlist (#900) --- _data/chains/eip155-13381.json | 25 +++++++++++++++++++++++++ _data/icons/phoenix.json | 8 ++++++++ 2 files changed, 33 insertions(+) create mode 100644 _data/chains/eip155-13381.json create mode 100644 _data/icons/phoenix.json diff --git a/_data/chains/eip155-13381.json b/_data/chains/eip155-13381.json new file mode 100644 index 00000000..83d12581 --- /dev/null +++ b/_data/chains/eip155-13381.json @@ -0,0 +1,25 @@ +{ + "name": "Phoenix Mainnet", + "chain": "Phoenix", + "network": "mainnet", + "rpc": [ + "https://rpc.phoenixplorer.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Phoenix", + "symbol": "Phoenix", + "decimals": 18 + }, + "infoURL": "https://cryptophoenix.org/phoenix", + "shortName": "Phoenix", + "chainId": 13381, + "networkId": 13381, + "icon": "phoenix", + "explorers": [{ + "name": "phoenixplorer", + "url": "https://phoenixplorer.com", + "icon": "phoenixplorer", + "standard": "EIP3091" + }] +} \ No newline at end of file diff --git a/_data/icons/phoenix.json b/_data/icons/phoenix.json new file mode 100644 index 00000000..dc34bb6b --- /dev/null +++ b/_data/icons/phoenix.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmYiLMeKDXMSNuQmtxNdxm53xR588pcRXMf7zuiZLjQnc6", + "width": 1501, + "height": 1501, + "format": "png" + } +] \ No newline at end of file From a04361f468277287fe13d927c06cdb6359bb2ae9 Mon Sep 17 00:00:00 2001 From: Pedro Magalhaes Date: Sat, 19 Feb 2022 10:45:16 -0300 Subject: [PATCH 23/49] Iora Chain ChainID (#896) * iorachain * add empty faucets --- _data/chains/eip155-1197.json | 17 +++++++++++++++++ _data/icons/iorachain.json | 8 ++++++++ 2 files changed, 25 insertions(+) create mode 100644 _data/chains/eip155-1197.json create mode 100644 _data/icons/iorachain.json diff --git a/_data/chains/eip155-1197.json b/_data/chains/eip155-1197.json new file mode 100644 index 00000000..fa2f2622 --- /dev/null +++ b/_data/chains/eip155-1197.json @@ -0,0 +1,17 @@ +{ + "name": "Iora Chain", + "chain": "IORA", + "network": "iorachain", + "icon": "iorachain", + "rpc": ["https://dataseed.iorachain.com"], + "faucets": [], + "nativeCurrency": { + "name": "Iora", + "symbol": "IORA", + "decimals": 18 + }, + "infoURL": "https://iorachain.com", + "shortName": "iora", + "chainId": 1197, + "networkId": 1197 +} diff --git a/_data/icons/iorachain.json b/_data/icons/iorachain.json new file mode 100644 index 00000000..ffe12e8a --- /dev/null +++ b/_data/icons/iorachain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafybeidlq74wufudcig44h67d3len37ro3y4aw4vtigl7ofczx4cjkqpza", + "width": 150, + "height": 150, + "format": "png" + } +] From 92b786d6db9fee9db25a2f662cb1cbee136fd34b Mon Sep 17 00:00:00 2001 From: Pedro Magalhaes Date: Sun, 20 Feb 2022 06:17:51 -0300 Subject: [PATCH 24/49] update logo and explorer added (#903) --- _data/chains/eip155-1197.json | 10 +++++++++- _data/icons/iorachain.json | 6 +++--- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/_data/chains/eip155-1197.json b/_data/chains/eip155-1197.json index fa2f2622..fa0b6f60 100644 --- a/_data/chains/eip155-1197.json +++ b/_data/chains/eip155-1197.json @@ -13,5 +13,13 @@ "infoURL": "https://iorachain.com", "shortName": "iora", "chainId": 1197, - "networkId": 1197 + "networkId": 1197, + "explorers": [ + { + "name": "ioraexplorer", + "url": "https://explorer.iorachain.com", + "standard": "EIP3091" + } + ] } + diff --git a/_data/icons/iorachain.json b/_data/icons/iorachain.json index ffe12e8a..27545381 100644 --- a/_data/icons/iorachain.json +++ b/_data/icons/iorachain.json @@ -1,8 +1,8 @@ [ { - "url": "ipfs://bafybeidlq74wufudcig44h67d3len37ro3y4aw4vtigl7ofczx4cjkqpza", - "width": 150, - "height": 150, + "url": "ipfs://bafybeiehps5cqdhqottu2efo4jeehwpkz5rbux3cjxd75rm6rjm4sgs2wi", + "width": 250, + "height": 250, "format": "png" } ] From 65d7b7c5e98ff317e663bc4a556d792eef78f548 Mon Sep 17 00:00:00 2001 From: kael <97500486+KaelTop@users.noreply.github.com> Date: Tue, 22 Feb 2022 00:26:28 +0800 Subject: [PATCH 25/49] teleport testnet (#908) * teleport testnet * use ipfs url --- _data/chains/eip155-8001.json | 30 ++++++++++++++++++++++++++++++ _data/icons/teleport.json | 8 ++++++++ 2 files changed, 38 insertions(+) create mode 100644 _data/chains/eip155-8001.json create mode 100644 _data/icons/teleport.json diff --git a/_data/chains/eip155-8001.json b/_data/chains/eip155-8001.json new file mode 100644 index 00000000..2ae5147f --- /dev/null +++ b/_data/chains/eip155-8001.json @@ -0,0 +1,30 @@ +{ + "name": "Teleport Testnet", + "chain": "Teleport", + "rpc": ["https://evm-rpc.testnet.teleport.network"], + "faucets": ["https://chain-docs.teleport.network/testnet/faucet.html"], + "nativeCurrency": { + "name": "Tele", + "symbol": "TELE", + "decimals": 18 + }, + "infoURL": "https://teleport.network/", + "shortName": "teleport-testnet", + "chainId": 8001, + "networkId": 8001, + "icon": "teleport", + "explorers": [ + { + "name": "Teleport EVM Explorer (Blockscout)", + "url": "https://evm-explorer.testnet.teleport.network", + "standard": "none", + "icon": "teleport" + }, + { + "name": "Teleport Cosmos Explorer (Big Dipper)", + "url": "https://explorer.testnet.teleport.network", + "standard": "none", + "icon": "teleport" + } + ] +} diff --git a/_data/icons/teleport.json b/_data/icons/teleport.json new file mode 100644 index 00000000..9f4f4abc --- /dev/null +++ b/_data/icons/teleport.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmdP1sLnsmW9dwnfb1GxAXU1nHDzCvWBQNumvMXpdbCSuz", + "width": 390, + "height": 390, + "format": "svg" + } +] From 521989e0a5fca7f81facd361bff284b3d1f2b7d8 Mon Sep 17 00:00:00 2001 From: kael <97500486+KaelTop@users.noreply.github.com> Date: Tue, 22 Feb 2022 15:00:15 +0800 Subject: [PATCH 26/49] teleport mainnet (#912) --- _data/chains/eip155-8000.json | 30 ++++++++++++++++++++++++++++++ _data/chains/eip155-8001.json | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 _data/chains/eip155-8000.json diff --git a/_data/chains/eip155-8000.json b/_data/chains/eip155-8000.json new file mode 100644 index 00000000..bc7772f0 --- /dev/null +++ b/_data/chains/eip155-8000.json @@ -0,0 +1,30 @@ +{ + "name": "Teleport", + "chain": "Teleport", + "rpc": ["https://evm-rpc.teleport.network"], + "faucets": [], + "nativeCurrency": { + "name": "Tele", + "symbol": "TELE", + "decimals": 18 + }, + "infoURL": "https://teleport.network", + "shortName": "teleport", + "chainId": 8000, + "networkId": 8000, + "icon": "teleport", + "explorers": [ + { + "name": "Teleport EVM Explorer (Blockscout)", + "url": "https://evm-explorer.teleport.network", + "standard": "none", + "icon": "teleport" + }, + { + "name": "Teleport Cosmos Explorer (Big Dipper)", + "url": "https://explorer.teleport.network", + "standard": "none", + "icon": "teleport" + } + ] +} diff --git a/_data/chains/eip155-8001.json b/_data/chains/eip155-8001.json index 2ae5147f..723a2938 100644 --- a/_data/chains/eip155-8001.json +++ b/_data/chains/eip155-8001.json @@ -8,7 +8,7 @@ "symbol": "TELE", "decimals": 18 }, - "infoURL": "https://teleport.network/", + "infoURL": "https://teleport.network", "shortName": "teleport-testnet", "chainId": 8001, "networkId": 8001, From dfd79089e5ca40d02018ca464efe86bb44457cfa Mon Sep 17 00:00:00 2001 From: KK Cheah <69582311+KKCheah@users.noreply.github.com> Date: Tue, 22 Feb 2022 22:19:45 +0800 Subject: [PATCH 27/49] Edit native currency symbol (#914) Change "Phoenix" to "PHX" for native currency symbol due to "add network failed: Expected 2-6 character string 'nativeCurrency.symbol'. Received: Phoenix" error --- _data/chains/eip155-13381.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-13381.json b/_data/chains/eip155-13381.json index 83d12581..6b580861 100644 --- a/_data/chains/eip155-13381.json +++ b/_data/chains/eip155-13381.json @@ -8,7 +8,7 @@ "faucets": [], "nativeCurrency": { "name": "Phoenix", - "symbol": "Phoenix", + "symbol": "PHX", "decimals": 18 }, "infoURL": "https://cryptophoenix.org/phoenix", From 0307521f9e3f675b1581a7080b616838fef4660d Mon Sep 17 00:00:00 2001 From: ping-ke Date: Tue, 22 Feb 2022 23:13:00 +0800 Subject: [PATCH 28/49] Add Chain Id for Web3q mainnet and testnet (#909) * add w3q chain id * change name from w3q to web3q * resolve comments * update explorers from http to https Co-authored-by: Qi Zhou --- _data/chains/eip155-333.json | 23 +++++++++++++++++++++++ _data/chains/eip155-3333.json | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 _data/chains/eip155-333.json create mode 100644 _data/chains/eip155-3333.json diff --git a/_data/chains/eip155-333.json b/_data/chains/eip155-333.json new file mode 100644 index 00000000..53c061b9 --- /dev/null +++ b/_data/chains/eip155-333.json @@ -0,0 +1,23 @@ +{ + "name": "Web3Q Mainnet", + "chain": "Web3Q", + "rpc": [ + "https://mainnet.web3q.io:8545" + ], + "faucets": [ + ], + "nativeCurrency": { + "name": "Web3Q", + "symbol": "W3Q", + "decimals": 18 + }, + "infoURL": "https://web3q.io/home.w3q/", + "shortName": "w3q", + "chainId": 333, + "networkId": 333, + "explorers": [{ + "name": "w3q-mainnet", + "url": "https://explorer.mainnet.web3q.io", + "standard": "EIP3091" + }] +} diff --git a/_data/chains/eip155-3333.json b/_data/chains/eip155-3333.json new file mode 100644 index 00000000..4c7bca7d --- /dev/null +++ b/_data/chains/eip155-3333.json @@ -0,0 +1,23 @@ +{ + "name": "Web3Q Testnet", + "chain": "Web3Q", + "rpc": [ + "https://testnet.web3q.io:8545" + ], + "faucets": [ + ], + "nativeCurrency": { + "name": "Web3Q", + "symbol": "W3Q", + "decimals": 18 + }, + "infoURL": "https://web3q.io/home.w3q/", + "shortName": "w3q-t", + "chainId": 3333, + "networkId": 3333, + "explorers": [{ + "name": "w3q-testnet", + "url": "https://explorer.testnet.web3q.io", + "standard": "EIP3091" + }] +} From 342ef535f4651a352ddb31acf5ee1220c4b95fec Mon Sep 17 00:00:00 2001 From: litvinsky <60661362+litvinsky@users.noreply.github.com> Date: Wed, 23 Feb 2022 13:06:40 +0100 Subject: [PATCH 29/49] Update eip155-9000.json (#917) --- _data/chains/eip155-9000.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/_data/chains/eip155-9000.json b/_data/chains/eip155-9000.json index c7cff005..43288923 100644 --- a/_data/chains/eip155-9000.json +++ b/_data/chains/eip155-9000.json @@ -1,28 +1,28 @@ { "name": "Evmos Testnet", "chain": "Evmos", - "rpc": ["https://ethereum.rpc.evmos.dev"], - "faucets": ["https://faucet.evmos.org"], + "rpc": ["https://evmos-archive-testnet.api.bdnodes.net:8545"], + "faucets": ["https://faucet.evmos.dev"], "nativeCurrency": { "name": "Photon", "symbol": "PHOTON", "decimals": 18 }, "infoURL": "https://evmos.org", - "shortName": "evmos-mons", + "shortName": "evmos-testnet", "chainId": 9000, "networkId": 9000, "icon": "evmos", "explorers": [ { "name": "Evmos EVM Explorer (Blockscout)", - "url": "https://evm.evmos.org", + "url": "https://evm.evmos.dev", "standard": "none", "icon": "evmos" }, { - "name": "Evmos Cosmos Explorer (Big Dipper)", - "url": "https://explorer.evmos.org", + "name": "Evmos Cosmos Explorer", + "url": "https://explorer.evmos.dev", "standard": "none", "icon": "evmos" } From f0622383a398cda9c99d45870589e008c4dac1f2 Mon Sep 17 00:00:00 2001 From: Exlo <46317321+Exlo84@users.noreply.github.com> Date: Thu, 24 Feb 2022 08:03:03 +0100 Subject: [PATCH 30/49] Update eip155-1313114.json (#923) updated RPC --- _data/chains/eip155-1313114.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-1313114.json b/_data/chains/eip155-1313114.json index 7b613e68..01182ba2 100644 --- a/_data/chains/eip155-1313114.json +++ b/_data/chains/eip155-1313114.json @@ -2,7 +2,7 @@ "name": "Etho Protocol", "chain": "ETHO", "rpc": [ - "https://rpc.ether1.org" + "https://rpc.ethoprotocol.com" ], "faucets": [], From 4c15cf0f873269fabddf498000fedadbee178ab3 Mon Sep 17 00:00:00 2001 From: Joe Schmoe <64335177+jolube@users.noreply.github.com> Date: Wed, 23 Feb 2022 23:19:11 -0800 Subject: [PATCH 31/49] Update eip155-9000 denom (#924) --- _data/chains/eip155-9000.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/chains/eip155-9000.json b/_data/chains/eip155-9000.json index 43288923..dfc5cb85 100644 --- a/_data/chains/eip155-9000.json +++ b/_data/chains/eip155-9000.json @@ -4,8 +4,8 @@ "rpc": ["https://evmos-archive-testnet.api.bdnodes.net:8545"], "faucets": ["https://faucet.evmos.dev"], "nativeCurrency": { - "name": "Photon", - "symbol": "PHOTON", + "name": "test-Evmos", + "symbol": "tEVMOS", "decimals": 18 }, "infoURL": "https://evmos.org", From 7025cc3bfee48ac2660f80ead296353c240ebb4c Mon Sep 17 00:00:00 2001 From: Frederik Bolding Date: Thu, 24 Feb 2022 19:44:22 +0100 Subject: [PATCH 32/49] Update Avalanche C Chain values (#925) --- _data/chains/eip155-43114.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/chains/eip155-43114.json b/_data/chains/eip155-43114.json index e4037701..2784924b 100644 --- a/_data/chains/eip155-43114.json +++ b/_data/chains/eip155-43114.json @@ -1,5 +1,5 @@ { - "name": "Avalanche Mainnet", + "name": "Avalanche C-Chain", "chain": "AVAX", "rpc": [ "https://api.avax.network/ext/bc/C/rpc" @@ -14,7 +14,7 @@ "shortName": "Avalanche", "chainId": 43114, "networkId": 43114, - "slip44": 9000, + "slip44": 9005, "explorers": [ { "name": "snowtrace", From e68cce7e61dcc6d94f559c22659e3426b5ff5ef7 Mon Sep 17 00:00:00 2001 From: Samuel Tay Date: Sun, 27 Feb 2022 18:22:00 +0000 Subject: [PATCH 33/49] Update Cronos name and URLs (#927) Inline with rename: https://medium.com/cronos-chain/cro-is-now-cronos-bf103c257bd Details found here: https://cronos.org/docs/getting-started/metamask.html#connecting-to-the-cronos-mainnet-beta --- _data/chains/eip155-25.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_data/chains/eip155-25.json b/_data/chains/eip155-25.json index 145025fd..7d1b2871 100644 --- a/_data/chains/eip155-25.json +++ b/_data/chains/eip155-25.json @@ -2,21 +2,21 @@ "name": "Cronos Mainnet Beta", "chain": "CRO", "rpc": [ - "https://evm-cronos.crypto.org" + "https://evm.cronos.org" ], "faucets": [], "nativeCurrency": { - "name": "Crypto.org Coin", + "name": "Cronos", "symbol": "CRO", "decimals": 18 }, - "infoURL": "https://cronos.crypto.org", + "infoURL": "https://cronos.org/", "shortName": "cro", "chainId": 25, "networkId": 25, "explorers": [{ "name": "Cronos Explorer", - "url": "https://cronos.crypto.org/explorer", + "url": "https://cronos.org/explorer", "standard": "none" }] } From 14b966032dcfaa7bd1c7897db9454129b567cabd Mon Sep 17 00:00:00 2001 From: calehh <80093788+calehh@users.noreply.github.com> Date: Wed, 2 Mar 2022 14:16:51 +0800 Subject: [PATCH 34/49] Add Evanesco mainnet and Avis testnet (#933) * add evanesco chain * add avis testnet * Update _data/chains/eip155-2213.json Co-authored-by: ligi * Update _data/chains/eip155-2213.json Co-authored-by: ligi * Update _data/icons/evanesco.json Co-authored-by: ligi Co-authored-by: ligi --- _data/chains/eip155-1201.json | 18 ++++++++++++++++++ _data/chains/eip155-2213.json | 26 ++++++++++++++++++++++++++ _data/icons/evanesco.json | 8 ++++++++ 3 files changed, 52 insertions(+) create mode 100644 _data/chains/eip155-1201.json create mode 100644 _data/chains/eip155-2213.json create mode 100644 _data/icons/evanesco.json diff --git a/_data/chains/eip155-1201.json b/_data/chains/eip155-1201.json new file mode 100644 index 00000000..6ff68236 --- /dev/null +++ b/_data/chains/eip155-1201.json @@ -0,0 +1,18 @@ +{ + "name": "AVIS Testnet", + "chain": "AVIS Testnet", + "network": "avis", + "rpc": [ + "https://seed5.evanesco.org:8547" + ], + "faucets": [], + "nativeCurrency": { + "name": "AVIS", + "symbol": "AVIS", + "decimals": 18 + }, + "infoURL": "https://evanesco.org/", + "shortName": "avis", + "chainId": 1201, + "networkId": 1201 +} \ No newline at end of file diff --git a/_data/chains/eip155-2213.json b/_data/chains/eip155-2213.json new file mode 100644 index 00000000..4c34672d --- /dev/null +++ b/_data/chains/eip155-2213.json @@ -0,0 +1,26 @@ +{ + "name": "Evanesco Mainnet", + "chain": "EVA", + "network": "mainnet", + "rpc": [ + "https://seed4.evanesco.org:8546" + ], + "faucets": [], + "nativeCurrency": { + "name": "EVA", + "symbol": "EVA", + "decimals": 18 + }, + "infoURL": "https://evanesco.org/", + "shortName": "evanesco", + "chainId": 2213, + "networkId": 2213, + "icon": "evanesco", + "explorers": [ + { + "name": "Evanesco Explorer", + "url": "https://explorer.evanesco.org", + "standard": "none" + } + ] +} \ No newline at end of file diff --git a/_data/icons/evanesco.json b/_data/icons/evanesco.json new file mode 100644 index 00000000..b5159969 --- /dev/null +++ b/_data/icons/evanesco.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZbmGYdfbMRrWJore3c7hyD6q7B5pXHJqTSNjbZZUK6V8", + "width": 200, + "height": 200, + "format": "png" + } +] \ No newline at end of file From ef2939b6f6adbc642b6228e0e981f711edcea9ac Mon Sep 17 00:00:00 2001 From: calehh <80093788+calehh@users.noreply.github.com> Date: Wed, 2 Mar 2022 23:13:55 +0800 Subject: [PATCH 35/49] change testnet name (#936) --- _data/chains/eip155-1201.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/chains/eip155-1201.json b/_data/chains/eip155-1201.json index 6ff68236..1c22b0d0 100644 --- a/_data/chains/eip155-1201.json +++ b/_data/chains/eip155-1201.json @@ -1,6 +1,6 @@ { - "name": "AVIS Testnet", - "chain": "AVIS Testnet", + "name": "Evanesco Testnet", + "chain": "Evanesco Testnet", "network": "avis", "rpc": [ "https://seed5.evanesco.org:8547" From 4c51a11958b052c619bc5f49fe41c69f8c100831 Mon Sep 17 00:00:00 2001 From: skenaja <510285+skenaja@users.noreply.github.com> Date: Wed, 2 Mar 2022 16:37:26 +0000 Subject: [PATCH 36/49] Add Palm icon and explorer (#937) --- _data/chains/eip155-11297108099.json | 9 ++++++++- _data/chains/eip155-11297108109.json | 9 ++++++++- _data/icons/palm.json | 8 ++++++++ 3 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 _data/icons/palm.json diff --git a/_data/chains/eip155-11297108099.json b/_data/chains/eip155-11297108099.json index 0251bad8..c0155fb2 100644 --- a/_data/chains/eip155-11297108099.json +++ b/_data/chains/eip155-11297108099.json @@ -1,6 +1,7 @@ { "name": "Palm Testnet", "chain": "Palm", + "icon": "palm", "rpc": [ "https://palm-testnet.infura.io/v3/{INFURA_API_KEY}" ], @@ -13,5 +14,11 @@ "infoURL": "https://palm.io", "shortName": "tpalm", "chainId": 11297108099, - "networkId": 11297108099 + "networkId": 11297108099, + "explorers": [{ + "name": "Palm Testnet Explorer", + "url": "https://explorer.palm-uat.xyz", + "standard": "EIP3091", + "icon": "palm" + }] } diff --git a/_data/chains/eip155-11297108109.json b/_data/chains/eip155-11297108109.json index d1952904..db9d7b35 100644 --- a/_data/chains/eip155-11297108109.json +++ b/_data/chains/eip155-11297108109.json @@ -1,6 +1,7 @@ { "name": "Palm", "chain": "Palm", + "icon": "palm", "rpc": [ "https://palm-mainnet.infura.io/v3/{INFURA_API_KEY}" ], @@ -13,5 +14,11 @@ "infoURL": "https://palm.io", "shortName": "palm", "chainId": 11297108109, - "networkId": 11297108109 + "networkId": 11297108109, + "explorers": [{ + "name": "Palm Explorer", + "url": "https://explorer.palm.io", + "standard": "EIP3091", + "icon": "palm" + }] } diff --git a/_data/icons/palm.json b/_data/icons/palm.json new file mode 100644 index 00000000..8b4c14b0 --- /dev/null +++ b/_data/icons/palm.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmX6h8xm4em77oNpFRtmAqrZ734MH4VGCC68dEKHUfdfPs", + "width": 1080, + "height": 1080, + "format": "svg" + } +] From 500177b5e94a841039d78dd3e346bde2053d6aff Mon Sep 17 00:00:00 2001 From: fredlacs <32464905+fredlacs@users.noreply.github.com> Date: Wed, 2 Mar 2022 17:13:20 +0000 Subject: [PATCH 37/49] Update Arbitrum chain info (#938) --- _data/chains/eip155-42161.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-42161.json b/_data/chains/eip155-42161.json index 13886d0f..c23a8497 100644 --- a/_data/chains/eip155-42161.json +++ b/_data/chains/eip155-42161.json @@ -6,7 +6,7 @@ "networkId": 42161, "nativeCurrency": { "name": "Ether", - "symbol": "AETH", + "symbol": "ETH", "decimals": 18 }, "rpc": [ From 454232a8fe95e77701dd8ecb734f50896910291e Mon Sep 17 00:00:00 2001 From: Akash Khosla <8366960+khoslaventures@users.noreply.github.com> Date: Thu, 3 Mar 2022 02:19:37 -0800 Subject: [PATCH 38/49] update evmos mainnet rpc and explorer (#939) --- _data/chains/eip155-9001.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_data/chains/eip155-9001.json b/_data/chains/eip155-9001.json index ed429b86..3a428fcb 100644 --- a/_data/chains/eip155-9001.json +++ b/_data/chains/eip155-9001.json @@ -1,7 +1,7 @@ { "name": "Evmos", "chain": "Evmos", - "rpc": ["https://ethereum.rpc.evmos.org"], + "rpc": ["https://eth.bd.evmos.org:8545"], "faucets": [], "nativeCurrency": { "name": "Evmos", @@ -21,8 +21,8 @@ "icon": "evmos" }, { - "name": "Evmos Cosmos Explorer (Big Dipper)", - "url": "https://explorer.evmos.org", + "name": "Evmos Cosmos Explorer (Mintscan)", + "url": "https://www.mintscan.io/evmos", "standard": "none", "icon": "evmos" } From f2b68bd2c813c4dc024d385eb288d04ba6187be5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franco=20Mu=C3=B1iz?= <37410203+FrancoMuniz@users.noreply.github.com> Date: Sat, 5 Mar 2022 03:05:34 -0300 Subject: [PATCH 39/49] Add ChainDirectory to readme (#942) A few hours ago I forked Chainlist and set it up on chaindirectory.xyz. Will update the logo soon, already mentions credits to the original site. Same code, open source, anyone can contribute with improvements. If you agree, I think it makes sense to add it as Chainlist will no longer work after April 3. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index fbfcf39f..60676c78 100644 --- a/README.md +++ b/README.md @@ -90,4 +90,5 @@ There are also aggregated json files with all chains automatically assembled: * [EVM-BOX](https://github.com/izayl/evm-box) * [FaucETH](https://github.com/komputing/FaucETH) * [Sourcify playground](https://playground.sourcify.dev) + * [chaindirectory.xyz](https://www.chaindirectory.xyz) * Your project - contact us to add it here! From a658f86f19db30e64f89b31b144840e95b02fe85 Mon Sep 17 00:00:00 2001 From: 0xngmi <80541789+0xngmi@users.noreply.github.com> Date: Sun, 6 Mar 2022 14:27:34 +0000 Subject: [PATCH 40/49] add defillama's fork (#944) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 60676c78..8d97a48b 100644 --- a/README.md +++ b/README.md @@ -91,4 +91,5 @@ There are also aggregated json files with all chains automatically assembled: * [FaucETH](https://github.com/komputing/FaucETH) * [Sourcify playground](https://playground.sourcify.dev) * [chaindirectory.xyz](https://www.chaindirectory.xyz) + * [DefiLlama's chainlist](https://chainlist.defillama.com/) * Your project - contact us to add it here! From 42671eecbdc9cfa3c975482a6c1deb49960183bd Mon Sep 17 00:00:00 2001 From: Henter Date: Sun, 6 Mar 2022 22:34:24 +0800 Subject: [PATCH 41/49] Add chain-list.org (#945) Co-authored-by: ligi --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8d97a48b..15a0dd06 100644 --- a/README.md +++ b/README.md @@ -91,5 +91,6 @@ There are also aggregated json files with all chains automatically assembled: * [FaucETH](https://github.com/komputing/FaucETH) * [Sourcify playground](https://playground.sourcify.dev) * [chaindirectory.xyz](https://www.chaindirectory.xyz) + * [chain-list.org](https://chain-list.org) * [DefiLlama's chainlist](https://chainlist.defillama.com/) * Your project - contact us to add it here! From 43f62165d1ffad9e0ccdaceb24d152efd8121456 Mon Sep 17 00:00:00 2001 From: Robin Wen Date: Mon, 7 Mar 2022 14:07:25 +0800 Subject: [PATCH 42/49] Add chainlist.network (#947) --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 15a0dd06..7db643b8 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ when an icon is used in either the network or a explorer there must be a json in [ { - "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", + "url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", "width": 1000, "height": 1628, "format": "png" @@ -69,7 +69,7 @@ If the chain is an L2 or a shard of another chain you can link it to the parent where you need to specify type 2 and the reference to an existing parent. The field about bridges is optional. -## Aggregation +## Aggregation There are also aggregated json files with all chains automatically assembled: * https://chainid.network/chains.json @@ -93,4 +93,5 @@ There are also aggregated json files with all chains automatically assembled: * [chaindirectory.xyz](https://www.chaindirectory.xyz) * [chain-list.org](https://chain-list.org) * [DefiLlama's chainlist](https://chainlist.defillama.com/) + * [chainlist.network](https://chainlist.network/) * Your project - contact us to add it here! From ade942d0994075f75dd1403148626ae67962735f Mon Sep 17 00:00:00 2001 From: phx9 <96976012+phx9@users.noreply.github.com> Date: Mon, 7 Mar 2022 22:37:33 +0800 Subject: [PATCH 43/49] Replace chainlist.org with evmchainlist.org (#946) * update usages; * add one site * Update --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7db643b8..96a80454 100644 --- a/README.md +++ b/README.md @@ -94,4 +94,6 @@ There are also aggregated json files with all chains automatically assembled: * [chain-list.org](https://chain-list.org) * [DefiLlama's chainlist](https://chainlist.defillama.com/) * [chainlist.network](https://chainlist.network/) + * [https://evmchainlist.org](https://evmchainlist.org) + * [https://evmchainlist.com](https://evmchainlist.com) * Your project - contact us to add it here! From d2332befcb5e9bffe4cb3ff0440d7d32a04e7509 Mon Sep 17 00:00:00 2001 From: vchain007 <75559334+vchain007@users.noreply.github.com> Date: Mon, 7 Mar 2022 22:43:51 +0800 Subject: [PATCH 44/49] Update eip155-888888.json (#949) add explorers visionscan --- _data/chains/eip155-888888.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/_data/chains/eip155-888888.json b/_data/chains/eip155-888888.json index 67e1cd1e..c0969d3e 100644 --- a/_data/chains/eip155-888888.json +++ b/_data/chains/eip155-888888.json @@ -11,7 +11,12 @@ "symbol": "VS", "decimals": 18 }, - "infoURL": "https://visionscan.org", + "infoURL": "https://www.v.network", + "explorers": [{ + "name": "Visionscan", + "url": "https://www.visionscan.org", + "standard": "EIP3091" + }], "shortName": "vision", "chainId": 888888, "networkId": 888888, From 2753c321a75bc9cdb0608ce679ac75c2adab4ae8 Mon Sep 17 00:00:00 2001 From: phx9 <96976012+phx9@users.noreply.github.com> Date: Tue, 8 Mar 2022 01:20:22 +0800 Subject: [PATCH 45/49] Remove https prefix (#950) * update usages; * add one site * Update * Remove https for evmchainlist --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 96a80454..40fef0bd 100644 --- a/README.md +++ b/README.md @@ -94,6 +94,6 @@ There are also aggregated json files with all chains automatically assembled: * [chain-list.org](https://chain-list.org) * [DefiLlama's chainlist](https://chainlist.defillama.com/) * [chainlist.network](https://chainlist.network/) - * [https://evmchainlist.org](https://evmchainlist.org) - * [https://evmchainlist.com](https://evmchainlist.com) + * [evmchainlist.org](https://evmchainlist.org) + * [evmchainlist.com](https://evmchainlist.com) * Your project - contact us to add it here! From 93aafa5336ffaaf911cad8489e416b1e7fa6307e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0zzet=20Emre=20Demir?= Date: Wed, 9 Mar 2022 10:12:44 +0300 Subject: [PATCH 46/49] thechainlist.io added to Readme (#951) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 40fef0bd..355f80d7 100644 --- a/README.md +++ b/README.md @@ -96,4 +96,5 @@ There are also aggregated json files with all chains automatically assembled: * [chainlist.network](https://chainlist.network/) * [evmchainlist.org](https://evmchainlist.org) * [evmchainlist.com](https://evmchainlist.com) + * [thechainlist.io](https://thechainlist.io) * Your project - contact us to add it here! From 9ee67b239111bc18729725122983ec1eaa8eb373 Mon Sep 17 00:00:00 2001 From: "Muhammad-Jibril B.A" Date: Wed, 9 Mar 2022 15:17:39 +0800 Subject: [PATCH 47/49] Add Setheum - `"chainId": 258,` (#952) ``` { "name": "Setheum", "chain": "Setheum", "rpc": [], "faucets": [], "nativeCurrency": { "name": "Setheum", "symbol": "SETM", "decimals": 18 }, "infoURL": "https://setheum.xyz", "shortName": "setm", "chainId": 258, "networkId": 258 } ``` --- _data/chains/eip155-258.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 _data/chains/eip155-258.json diff --git a/_data/chains/eip155-258.json b/_data/chains/eip155-258.json new file mode 100644 index 00000000..a0359a44 --- /dev/null +++ b/_data/chains/eip155-258.json @@ -0,0 +1,15 @@ +{ + "name": "Setheum", + "chain": "Setheum", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Setheum", + "symbol": "SETM", + "decimals": 18 + }, + "infoURL": "https://setheum.xyz", + "shortName": "setm", + "chainId": 258, + "networkId": 258 +} From 71e377e338318f432e4f30671ab2c270f2b11a22 Mon Sep 17 00:00:00 2001 From: syr0910 <99308606+syr0910@users.noreply.github.com> Date: Wed, 9 Mar 2022 15:40:30 +0800 Subject: [PATCH 48/49] Create eip155-512.json (#953) * Create eip155-512.json add AAC * Update _data/chains/eip155-512.json Co-authored-by: syr0910 Co-authored-by: ligi --- _data/chains/eip155-512.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 _data/chains/eip155-512.json diff --git a/_data/chains/eip155-512.json b/_data/chains/eip155-512.json new file mode 100644 index 00000000..42e59cf0 --- /dev/null +++ b/_data/chains/eip155-512.json @@ -0,0 +1,23 @@ +{ + "name": "Double-A Chain Mainnet", + "chain": "AAC", + "rpc": [ + "https://rpc.acuteangle.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Acuteangle Native Token", + "symbol": "AAC", + "decimals": 18 + }, + "infoURL": "https://www.acuteangle.com/", + "shortName": "aac", + "chainId": 512, + "networkId": 512, + "slip44": 1512, + "explorers": [{ + "name": "aacscan", + "url": "https://scan.acuteangle.com", + "standard": "EIP3091" + }] + } \ No newline at end of file From 8876b99a0ff63eda706a9e1f629d110c896b8e8f Mon Sep 17 00:00:00 2001 From: syr0910 <99308606+syr0910@users.noreply.github.com> Date: Wed, 9 Mar 2022 20:07:39 +0800 Subject: [PATCH 49/49] Addition of Double-A chain and token (#955) * Create eip155-512.json add AAC * Update _data/chains/eip155-512.json * Update eip155-512.json Update url * Create aac.json add AAC-icon * Update eip155-512.json add aacicon Co-authored-by: syr0910 Co-authored-by: ligi --- _data/chains/eip155-512.json | 3 ++- _data/icons/aac.json | 8 ++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 _data/icons/aac.json diff --git a/_data/chains/eip155-512.json b/_data/chains/eip155-512.json index 42e59cf0..f9f5305e 100644 --- a/_data/chains/eip155-512.json +++ b/_data/chains/eip155-512.json @@ -19,5 +19,6 @@ "name": "aacscan", "url": "https://scan.acuteangle.com", "standard": "EIP3091" - }] + }], + "icon": "aac" } \ No newline at end of file diff --git a/_data/icons/aac.json b/_data/icons/aac.json new file mode 100644 index 00000000..cd12bb98 --- /dev/null +++ b/_data/icons/aac.json @@ -0,0 +1,8 @@ +[ + { + "url":"ipfs://QmRUrz4dULaoaMpnqd8qXT7ehwz3aaqnYKY4ePsy7isGaF", + "width":512, + "height":512, + "format":"png" + } +]