From 87f107b211f069a1e726e7da1d6be8aa411e326e Mon Sep 17 00:00:00 2001 From: turndealer Date: Fri, 10 Dec 2021 02:59:41 +0530 Subject: [PATCH 1/5] btcix.json (#641) added ipfs file for btcix network --- _data/icons/btcix.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 _data/icons/btcix.json diff --git a/_data/icons/btcix.json b/_data/icons/btcix.json new file mode 100644 index 00000000..7bf8d189 --- /dev/null +++ b/_data/icons/btcix.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmZttTpHJreq3AinjDSkVP5yZ7Xzccdwi41G1uJhdogGBA", + "width": 520, + "height": 521, + "format": "png" + } +] From 33f123ad0f64008945adf5aa391efb7895a04ecf Mon Sep 17 00:00:00 2001 From: tomatoskittles Date: Thu, 9 Dec 2021 16:38:15 -0500 Subject: [PATCH 2/5] Adding support for Syscoin Mainnet (#644) Adding support for Syscoin Mainnet to the chainlist. --- _data/chains/eip155-57.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 _data/chains/eip155-57.json diff --git a/_data/chains/eip155-57.json b/_data/chains/eip155-57.json new file mode 100644 index 00000000..3967e8cc --- /dev/null +++ b/_data/chains/eip155-57.json @@ -0,0 +1,26 @@ +{ + "name": "Syscoin Mainnet", + "chain": "SYS", + "network": "mainnet", + "rpc": [ + "https://rpc.syscoin.org", + "wss://rpc.syscoin.org/wss" + ], + "faucets": ["https://faucet.syscoin.org"], + "nativeCurrency": { + "name": "Syscoin", + "symbol": "SYS", + "decimals": 18 + }, + "infoURL": "https://www.syscoin.org", + "shortName": "sys", + "chainId": 57, + "networkId": 57, + "explorers": [ + { + "name": "Syscoin Block Explorer", + "url": "https://explorer.syscoin.org", + "standard": "EIP3091" + } + ] +} From 2640bb6a99ef5543806252fa205cb9376e5cb9cd Mon Sep 17 00:00:00 2001 From: xiao93 <42384581+xiao93@users.noreply.github.com> Date: Fri, 10 Dec 2021 05:41:27 +0800 Subject: [PATCH 3/5] Update eip155-52.json (#646) --- _data/chains/eip155-52.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-52.json b/_data/chains/eip155-52.json index faf4811b..a006f959 100644 --- a/_data/chains/eip155-52.json +++ b/_data/chains/eip155-52.json @@ -11,7 +11,7 @@ "symbol": "cet", "decimals": 18 }, - "infoURL": "http://www.coinex.org/", + "infoURL": "https://www.coinex.org/", "shortName": "cet", "chainId": 52, "networkId": 52 From 7e010430e7572ab8ec1f7d6f422544e98836355d Mon Sep 17 00:00:00 2001 From: purestaketdb <45097828+purestaketdb@users.noreply.github.com> Date: Thu, 9 Dec 2021 16:41:41 -0500 Subject: [PATCH 4/5] Updates for explorers, faucet, rpc (#645) --- _data/chains/eip155-1284.json | 5 ++++- _data/chains/eip155-1285.json | 17 +++++++++-------- _data/chains/eip155-1287.json | 9 ++++++++- 3 files changed, 21 insertions(+), 10 deletions(-) diff --git a/_data/chains/eip155-1284.json b/_data/chains/eip155-1284.json index 27e58d02..151202f6 100644 --- a/_data/chains/eip155-1284.json +++ b/_data/chains/eip155-1284.json @@ -2,7 +2,10 @@ "name": "Moonbeam", "chain": "MOON", "network": "moonbeam", - "rpc": [], + "rpc": [ + "https://rpc.api.moonbeam.network", + "wss://wss.api.moonbeam.network" + ], "faucets": [], "nativeCurrency": { "name": "Glimmer", diff --git a/_data/chains/eip155-1285.json b/_data/chains/eip155-1285.json index 3fdd8b29..0b903861 100644 --- a/_data/chains/eip155-1285.json +++ b/_data/chains/eip155-1285.json @@ -6,7 +6,7 @@ "https://rpc.moonriver.moonbeam.network", "wss://wss.moonriver.moonbeam.network" ], - "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], + "faucets": [], "nativeCurrency": { "name": "Moonriver", "symbol": "MOVR", @@ -16,10 +16,11 @@ "shortName": "mriver", "chainId": 1285, "networkId": 1285, - - "explorers": [{ - "name": "blockscout", - "url": "https://blockscout.moonriver.moonbeam.network", - "standard": "none" - }] -} + "explorers": [ + { + "name": "moonscan", + "url": "https://moonriver.moonscan.io/", + "standard": "none" + } + ] +} \ No newline at end of file diff --git a/_data/chains/eip155-1287.json b/_data/chains/eip155-1287.json index 4e2edcfe..9c0f6745 100644 --- a/_data/chains/eip155-1287.json +++ b/_data/chains/eip155-1287.json @@ -15,5 +15,12 @@ "infoURL": "https://docs.moonbeam.network/networks/testnet/", "shortName": "mbase", "chainId": 1287, - "networkId": 1287 + "networkId": 1287, + "explorers": [ + { + "name": "moonscan", + "url": "https://moonbase.moonscan.io/", + "standard": "none" + } + ] } \ No newline at end of file From 638caee7e45ab29ee65da073a881daa72d0f65ff Mon Sep 17 00:00:00 2001 From: xiao93 <42384581+xiao93@users.noreply.github.com> Date: Fri, 10 Dec 2021 05:49:22 +0800 Subject: [PATCH 5/5] Update eip155-53.json (#647) --- _data/chains/eip155-53.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-53.json b/_data/chains/eip155-53.json index 68545b21..490e1bb8 100644 --- a/_data/chains/eip155-53.json +++ b/_data/chains/eip155-53.json @@ -11,7 +11,7 @@ "symbol": "cett", "decimals": 18 }, - "infoURL": "http://www.coinex.org/", + "infoURL": "https://www.coinex.org/", "shortName": "tcet", "chainId": 53, "networkId": 53