From ae004727c71f261f6e97e66599ca2554a847b086 Mon Sep 17 00:00:00 2001 From: tomatoskittles Date: Wed, 1 Sep 2021 15:36:59 -0400 Subject: [PATCH] Support syscoin (#392) * Adding support for Syscoin * Adjusting values after review. Changed the testnet chainId to 5700. * Updating the name of Syscoin Testnet to Syscoin Tanenbaum Testnet * Fixing json syntax error, and removing explorers. * Making the shortname unique by changing the testnet shortname. Co-authored-by: bboileau --- _data/chains/eip155-57.json | 20 ++++++++++++++++++++ _data/chains/eip155-5700.json | 18 ++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 _data/chains/eip155-57.json create mode 100644 _data/chains/eip155-5700.json diff --git a/_data/chains/eip155-57.json b/_data/chains/eip155-57.json new file mode 100644 index 00000000..88f9a788 --- /dev/null +++ b/_data/chains/eip155-57.json @@ -0,0 +1,20 @@ +{ + "name": "Syscoin Mainnet", + "chain": "SYS", + "network": "mainnet", + "rpc": [ + "https://nevm.syscoin.org/api/eth-rpc", + "https://web3.syscoin.org", + "wss://web3.syscoin.org" + ], + "faucets": ["https://faucet.syscoin.org"], + "nativeCurrency": { + "name": "Syscoin", + "symbol": "SYS", + "decimals": 18 + }, + "infoURL": "https://www.syscoin.org", + "shortName": "sys", + "chainId": 57, + "networkId": 57 +} diff --git a/_data/chains/eip155-5700.json b/_data/chains/eip155-5700.json new file mode 100644 index 00000000..260daf1a --- /dev/null +++ b/_data/chains/eip155-5700.json @@ -0,0 +1,18 @@ +{ + "name": "Syscoin Tanenbaum Testnet", + "chain": "SYS", + "network": "testnet", + "rpc": [ + "https://tanenbaum.io/api/eth-rpc" + ], + "faucets": ["https://faucet.tanenbaum.io"], + "nativeCurrency": { + "name": "Testnet Syscoin", + "symbol": "tSYS", + "decimals": 18 + }, + "infoURL": "https://syscoin.org", + "shortName": "tsys", + "chainId": 5700, + "networkId": 5700 +}