From 0307521f9e3f675b1581a7080b616838fef4660d Mon Sep 17 00:00:00 2001 From: ping-ke Date: Tue, 22 Feb 2022 23:13:00 +0800 Subject: [PATCH] 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" + }] +}