From 065a7384b66f7aa3934393c25d3614436e41f6c1 Mon Sep 17 00:00:00 2001 From: h-nashida <63340743+h-nashida@users.noreply.github.com> Date: Sun, 12 Feb 2023 01:58:21 +0900 Subject: [PATCH 1/8] New network adding Bandai Namco Research Verse Mainnet, (#2241) https://www.bandainamco-mirai.com/en/ chainId: 876 Co-authored-by: nashida --- _data/chains/eip155-876.json | 27 +++++++++++++++++++++++++++ _data/icons/bnken.json | 8 ++++++++ 2 files changed, 35 insertions(+) create mode 100644 _data/chains/eip155-876.json create mode 100644 _data/icons/bnken.json diff --git a/_data/chains/eip155-876.json b/_data/chains/eip155-876.json new file mode 100644 index 00000000..78b40d00 --- /dev/null +++ b/_data/chains/eip155-876.json @@ -0,0 +1,27 @@ +{ + "name": "Bandai Namco Research Verse Mainnet", + "chain": "Bandai Namco Research Verse", + "icon": "bnken", + "rpc": ["https://rpc.main.oasvrs.bnken.net"], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://www.bandainamco-mirai.com/en/", + "shortName": "BNKEN", + "chainId": 876, + "networkId": 876, + "explorers": [ + { + "name": "Bandai Namco Research Verse Explorer", + "url": "https://explorer.main.oasvrs.bnken.net", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } +} diff --git a/_data/icons/bnken.json b/_data/icons/bnken.json new file mode 100644 index 00000000..554f7428 --- /dev/null +++ b/_data/icons/bnken.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://bafkreifhetalm3vpvjrg5u5d2momkcgvkz6rhltur5co3rslltbxzpr6yq", + "width": 2048, + "height": 2048, + "format": "png" + } +] From dd4b671a462ea419eec63715200dd4c3991fd043 Mon Sep 17 00:00:00 2001 From: Paul Abraham <103801437+hiddenPaul@users.noreply.github.com> Date: Sat, 11 Feb 2023 19:28:36 -0600 Subject: [PATCH 2/8] Add Canto Testnet - Chain 740 (#2266) * Add chain 740 - Canto Testnet * Correct typo * Change name/chain to Canto Testnet * Update short name --- _data/chains/eip155-740.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 _data/chains/eip155-740.json diff --git a/_data/chains/eip155-740.json b/_data/chains/eip155-740.json new file mode 100644 index 00000000..013d2f6e --- /dev/null +++ b/_data/chains/eip155-740.json @@ -0,0 +1,22 @@ +{ + "name": "Canto Testnet", + "chain": "Canto Tesnet", + "rpc": ["https://eth.plexnode.wtf/"], + "faucets": [], + "nativeCurrency": { + "name": "Canto", + "symbol": "CANTO", + "decimals": 18 + }, + "infoURL": "https://canto.io", + "shortName": "tcanto", + "chainId": 740, + "networkId": 740, + "explorers": [ + { + "name": "Canto Tesnet Explorer (Neobase)", + "url": "http://testnet-explorer.canto.neobase.one", + "standard": "none" + } + ] +} From 91163762b74957dc3b5d95e0c4c12888de046889 Mon Sep 17 00:00:00 2001 From: nacknime <34421603+nacknime-official@users.noreply.github.com> Date: Sun, 12 Feb 2023 03:30:05 +0200 Subject: [PATCH 3/8] Add AirDAO Mainnet & Testnet networks (#2264) * add AirDAO Mainnet & Testnet networks * fix: `ambnet`->`ambnet-test` & `airdao`->`airdao-test` --- _data/chains/eip155-16718.json | 23 +++++++++++++++++++++++ _data/chains/eip155-22040.json | 23 +++++++++++++++++++++++ _data/icons/airdao.json | 8 ++++++++ 3 files changed, 54 insertions(+) create mode 100644 _data/chains/eip155-16718.json create mode 100644 _data/chains/eip155-22040.json create mode 100644 _data/icons/airdao.json diff --git a/_data/chains/eip155-16718.json b/_data/chains/eip155-16718.json new file mode 100644 index 00000000..94253e60 --- /dev/null +++ b/_data/chains/eip155-16718.json @@ -0,0 +1,23 @@ +{ + "name": "AirDAO Mainnet", + "chain": "ambnet", + "icon": "airdao", + "rpc": ["https://network.ambrosus.io"], + "faucets": [], + "nativeCurrency": { + "name": "Amber", + "symbol": "AMB", + "decimals": 18 + }, + "infoURL": "https://airdao.io", + "shortName": "airdao", + "chainId": 16718, + "networkId": 16718, + "explorers": [ + { + "name": "AirDAO Network Explorer", + "url": "https://airdao.io/explorer", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-22040.json b/_data/chains/eip155-22040.json new file mode 100644 index 00000000..a61dba1b --- /dev/null +++ b/_data/chains/eip155-22040.json @@ -0,0 +1,23 @@ +{ + "name": "AirDAO Testnet", + "chain": "ambnet-test", + "icon": "airdao", + "rpc": ["https://network.ambrosus-test.io"], + "faucets": [], + "nativeCurrency": { + "name": "Amber", + "symbol": "AMB", + "decimals": 18 + }, + "infoURL": "https://testnet.airdao.io", + "shortName": "airdao-test", + "chainId": 22040, + "networkId": 22040, + "explorers": [ + { + "name": "AirDAO Network Explorer", + "url": "https://testnet.airdao.io/explorer", + "standard": "none" + } + ] +} diff --git a/_data/icons/airdao.json b/_data/icons/airdao.json new file mode 100644 index 00000000..4278b703 --- /dev/null +++ b/_data/icons/airdao.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSxXjvWng3Diz4YwXDV2VqSPgMyzLYBNfkjJcr7rzkxom", + "width": 400, + "height": 400, + "format": "png" + } +] From 7f3e2f5aa6cabad8b37eec48737a45ced792c12c Mon Sep 17 00:00:00 2001 From: Bread <97642356+Bread-VeSea@users.noreply.github.com> Date: Sun, 12 Feb 2023 02:47:34 +0100 Subject: [PATCH 4/8] Add vechain (#2259) * Create eip155-100009.json * Create eip155-100010.json * Create vechain.json * Update vechain.json * remove empty rpc element * remove empty rpc element * add empty rpc element array * Add empty rpc element array * Make shortname unique --------- Co-authored-by: ligi --- _data/chains/eip155-100009.json | 27 +++++++++++++++++++++++++++ _data/chains/eip155-100010.json | 22 ++++++++++++++++++++++ _data/icons/vechain.json | 8 ++++++++ 3 files changed, 57 insertions(+) create mode 100644 _data/chains/eip155-100009.json create mode 100644 _data/chains/eip155-100010.json create mode 100644 _data/icons/vechain.json diff --git a/_data/chains/eip155-100009.json b/_data/chains/eip155-100009.json new file mode 100644 index 00000000..973cf3c4 --- /dev/null +++ b/_data/chains/eip155-100009.json @@ -0,0 +1,27 @@ +{ + "name": "VeChain", + "chain": "VeChain", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "VeChain", + "symbol": "VET", + "decimals": 18 + }, + "infoURL": "https://vechain.org", + "shortName": "vechain", + "chainId": 100009, + "networkId": 100009, + "explorers": [ + { + "name": "VeChain Stats", + "url": "https://vechainstats.com", + "standard": "none" + }, + { + "name": "VeChain Explorer", + "url": "https://explore.vechain.org", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-100010.json b/_data/chains/eip155-100010.json new file mode 100644 index 00000000..a11f01d4 --- /dev/null +++ b/_data/chains/eip155-100010.json @@ -0,0 +1,22 @@ +{ + "name": "VeChain Testnet", + "chain": "VeChain", + "rpc": [], + "faucets": ["https://faucet.vecha.in"], + "nativeCurrency": { + "name": "VeChain", + "symbol": "VET", + "decimals": 18 + }, + "infoURL": "https://vechain.org", + "shortName": "vechain-testnet", + "chainId": 100010, + "networkId": 100010, + "explorers": [ + { + "name": "VeChain Explorer", + "url": "https://explore-testnet.vechain.org", + "standard": "none" + } + ] +} diff --git a/_data/icons/vechain.json b/_data/icons/vechain.json new file mode 100644 index 00000000..dd93d4b4 --- /dev/null +++ b/_data/icons/vechain.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmP2nMWbeZWogjVF6KV6GioFKMvBgiK3fs8Du87mg49c88", + "width": 512, + "height": 512, + "format": "png" + } +] From 413ffda4f89fc5158b4139b95b1e73d34d6e3f12 Mon Sep 17 00:00:00 2001 From: Ahmad Date: Tue, 14 Feb 2023 16:43:36 +0100 Subject: [PATCH 5/8] add elysium chains (#2275) * add elysium's mainet and testnet * typo * fix action jobs * reformat with prettier * update shortnames --- _data/chains/eip155-1338.json | 23 +++++++++++++++++++++++ _data/chains/eip155-1339.json | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 _data/chains/eip155-1338.json create mode 100644 _data/chains/eip155-1339.json diff --git a/_data/chains/eip155-1338.json b/_data/chains/eip155-1338.json new file mode 100644 index 00000000..512036a8 --- /dev/null +++ b/_data/chains/eip155-1338.json @@ -0,0 +1,23 @@ +{ + "name": "Elysium Testnet", + "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged", + "chain": "Elysium", + "rpc": ["https://elysium-test-rpc.vulcanforged.com"], + "faucets": [], + "nativeCurrency": { + "name": "LAVA", + "symbol": "LAVA", + "decimals": 18 + }, + "infoURL": "https://elysiumscan.vulcanforged.com", + "shortName": "ELST", + "chainId": 1338, + "networkId": 1338, + "explorers": [ + { + "name": "Elysium testnet explorer", + "url": "https://elysium-explorer.vulcanforged.com", + "standard": "none" + } + ] +} diff --git a/_data/chains/eip155-1339.json b/_data/chains/eip155-1339.json new file mode 100644 index 00000000..e0bf0d57 --- /dev/null +++ b/_data/chains/eip155-1339.json @@ -0,0 +1,23 @@ +{ + "name": "Elysium Mainnet", + "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged", + "chain": "Elysium", + "rpc": ["https://elysium-rpc.vulcanforged.com"], + "faucets": [], + "nativeCurrency": { + "name": "LAVA", + "symbol": "LAVA", + "decimals": 18 + }, + "infoURL": "https://elysiumscan.vulcanforged.com", + "shortName": "ELSM", + "chainId": 1339, + "networkId": 1339, + "explorers": [ + { + "name": "Elysium mainnet explorer", + "url": "https://explorer.elysiumchain.tech", + "standard": "none" + } + ] +} From e056b2166d8b0851806fa94fc73eda07ba59ae3c Mon Sep 17 00:00:00 2001 From: John Risk <119842926+john-risk-adigium@users.noreply.github.com> Date: Tue, 14 Feb 2023 17:47:22 +0200 Subject: [PATCH 6/8] Added "Oone Chain Testnet" (#2272) * Added "Oone Chain Testnet" * Correct the right "Oone Chain Testnet json" * Fixed check error "Explorer cannot have a slash on the end", and ran Prettier --------- Co-authored-by: John Risk --- _data/chains/eip155-333777.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 _data/chains/eip155-333777.json diff --git a/_data/chains/eip155-333777.json b/_data/chains/eip155-333777.json new file mode 100644 index 00000000..a54b2b62 --- /dev/null +++ b/_data/chains/eip155-333777.json @@ -0,0 +1,22 @@ +{ + "name": "Oone Chain Testnet", + "chain": "OONE", + "rpc": ["https://blockchain-test.adigium.world"], + "faucets": ["https://apps-test.adigium.com/faucet"], + "nativeCurrency": { + "name": "Oone", + "symbol": "tOONE", + "decimals": 18 + }, + "infoURL": "https://oone.world", + "shortName": "oonetest", + "chainId": 333777, + "networkId": 333777, + "explorers": [ + { + "name": "expedition", + "url": "https://explorer-test.adigium.world", + "standard": "none" + } + ] +} From a5cfe6f9d7c80b72a4418782cea6e48f10335505 Mon Sep 17 00:00:00 2001 From: ligi Date: Tue, 14 Feb 2023 16:52:57 +0100 Subject: [PATCH 7/8] Removing chain 96 (#2251) context #1629 --- _data/chains/eip155-96.json | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 _data/chains/eip155-96.json diff --git a/_data/chains/eip155-96.json b/_data/chains/eip155-96.json deleted file mode 100644 index e7702127..00000000 --- a/_data/chains/eip155-96.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "NEXT Smart Chain", - "chain": "NSC", - "rpc": ["https://rpc.nextsmartchain.com"], - "faucets": ["https://faucet.nextsmartchain.com"], - "nativeCurrency": { - "name": "NEXT", - "symbol": "NEXT", - "decimals": 18 - }, - "infoURL": "https://www.nextsmartchain.com/", - "shortName": "nsc", - "chainId": 96, - "networkId": 96, - "explorers": [ - { - "name": "Next Smart Chain Explorer", - "url": "https://explorer.nextsmartchain.com", - "standard": "none" - } - ] -} From e27e80ebac7760c209e891cc4328644fdc0becb8 Mon Sep 17 00:00:00 2001 From: Blackfort Wallet Exchange <64266941+BlackFortGroup@users.noreply.github.com> Date: Tue, 14 Feb 2023 19:56:02 +0400 Subject: [PATCH 8/8] Add BXN chains (testnet and mainnet) (#2257) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add BXN chains (testnet and mainnet) * Update _data/chains/eip155-4777.json Co-authored-by: ligi * Update eip155-4777.json * Run prettier --------- Co-authored-by: Wacław Kozłowski Co-authored-by: ligi --- _data/chains/eip155-4777.json | 25 +++++++++++++++++++++++++ _data/chains/eip155-4999.json | 30 ++++++++++++++++++++++++++++++ _data/icons/bxn.json | 8 ++++++++ 3 files changed, 63 insertions(+) create mode 100644 _data/chains/eip155-4777.json create mode 100644 _data/chains/eip155-4999.json create mode 100644 _data/icons/bxn.json diff --git a/_data/chains/eip155-4777.json b/_data/chains/eip155-4777.json new file mode 100644 index 00000000..fd85e1bb --- /dev/null +++ b/_data/chains/eip155-4777.json @@ -0,0 +1,25 @@ +{ + "name": "BlackFort Exchange Network Testnet", + "chain": "TBXN", + "rpc": ["https://testnet.blackfort.network/rpc"], + "faucets": [], + "nativeCurrency": { + "name": "BlackFort Testnet Token", + "symbol": "TBXN", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://blackfort.exchange", + "shortName": "TBXN", + "chainId": 4777, + "networkId": 4777, + "icon": "bxn", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.blackfort.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-4999.json b/_data/chains/eip155-4999.json new file mode 100644 index 00000000..94a01b88 --- /dev/null +++ b/_data/chains/eip155-4999.json @@ -0,0 +1,30 @@ +{ + "name": "BlackFort Exchange Network", + "chain": "BXN", + "rpc": [ + "https://mainnet.blackfort.network/rpc", + "https://mainnet-1.blackfort.network/rpc", + "https://mainnet-2.blackfort.network/rpc", + "https://mainnet-3.blackfort.network/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "BlackFort Token", + "symbol": "BXN", + "decimals": 18 + }, + "features": [{ "name": "EIP155" }, { "name": "EIP1559" }], + "infoURL": "https://blackfort.exchange", + "shortName": "BXN", + "chainId": 4999, + "networkId": 4999, + "icon": "bxn", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.blackfort.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] +} diff --git a/_data/icons/bxn.json b/_data/icons/bxn.json new file mode 100644 index 00000000..13ebdc45 --- /dev/null +++ b/_data/icons/bxn.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmPasA8xykRtJDivB2bcKDiRCUNWDPtfUTTKVAcaF2wVxC", + "width": 1968, + "height": 1968, + "format": "png" + } +]