From d527f76d0679ddb1288f64600db013f901d28792 Mon Sep 17 00:00:00 2001 From: vincent Date: Sat, 17 Dec 2022 14:11:00 +0800 Subject: [PATCH] Add mantle chains (#1779) * add mantle chains * fix check * update short name * fix illegal name * update url * update name * update domain Co-authored-by: chengwenxi <22697326+chengwenxi@users.noreply.github.com> Co-authored-by: Yoda Gao --- _data/chains/eip155-5000.json | 22 ++++++++++++++++++++++ _data/chains/eip155-5001.json | 22 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 _data/chains/eip155-5000.json create mode 100644 _data/chains/eip155-5001.json diff --git a/_data/chains/eip155-5000.json b/_data/chains/eip155-5000.json new file mode 100644 index 00000000..af734bb8 --- /dev/null +++ b/_data/chains/eip155-5000.json @@ -0,0 +1,22 @@ +{ + "name": "Mantle", + "chain": "ETH", + "rpc": ["https://rpc.mantle.xyz"], + "faucets": [], + "nativeCurrency": { + "name": "BitDAO", + "symbol": "BIT", + "decimals": 18 + }, + "infoURL": "https://mantle.xyz", + "shortName": "mantle", + "chainId": 5000, + "networkId": 5000, + "explorers": [ + { + "name": "Mantle Explorer", + "url": "https://explorer.mantle.xyz", + "standard": "EIP3091" + } + ] +} diff --git a/_data/chains/eip155-5001.json b/_data/chains/eip155-5001.json new file mode 100644 index 00000000..bc358c57 --- /dev/null +++ b/_data/chains/eip155-5001.json @@ -0,0 +1,22 @@ +{ + "name": "Mantle Testnet", + "chain": "ETH", + "rpc": ["https://rpc.testnet.mantle.xyz"], + "faucets": ["https://faucet.testnet.mantle.xyz"], + "nativeCurrency": { + "name": "Testnet BitDAO", + "symbol": "BIT", + "decimals": 18 + }, + "infoURL": "https://mantle.xyz", + "shortName": "mantle-testnet", + "chainId": 5001, + "networkId": 5001, + "explorers": [ + { + "name": "Mantle Testnet Explorer", + "url": "https://explorer.testnet.mantle.xyz", + "standard": "EIP3091" + } + ] +}