From b7e6a52212ce79f3fa53f656167a8e8d1bb060b8 Mon Sep 17 00:00:00 2001 From: Anthony Date: Wed, 15 Aug 2018 17:45:20 -0400 Subject: [PATCH 1/3] Add gastracker; remove Commonwealth as Commonwealth nodes are currently down. Preventative measure for increased traffic from the Coinbase addition. Will follow-up with more nodes. --- common/libs/nodes/configs.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/libs/nodes/configs.ts b/common/libs/nodes/configs.ts index 97f59ab1..12800aad 100644 --- a/common/libs/nodes/configs.ts +++ b/common/libs/nodes/configs.ts @@ -74,10 +74,10 @@ export const NODE_CONFIGS: { [key in StaticNetworkIds]: RawNodeConfig[] } = { url: 'https://cry.epool.io' }, { - name: makeNodeName('ETC', 'commonwealth'), + name: makeNodeName('ETC', 'gastracker'), type: 'rpc', - service: 'Ethereum Commonwealth', - url: 'https://etc-geth.0xinfra.com/' + service: 'GasTracker (ETCDEV)', + url: 'https://web3.gastracker.io' } ], From ef8bbcf0f913bc49d1963c482b209b3dd3fd0f93 Mon Sep 17 00:00:00 2001 From: Anthony Date: Wed, 15 Aug 2018 19:34:43 -0400 Subject: [PATCH 2/3] Add ETC Cooperative's ETC public node as well --- common/libs/nodes/configs.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/common/libs/nodes/configs.ts b/common/libs/nodes/configs.ts index 12800aad..bdf3e867 100644 --- a/common/libs/nodes/configs.ts +++ b/common/libs/nodes/configs.ts @@ -78,6 +78,12 @@ export const NODE_CONFIGS: { [key in StaticNetworkIds]: RawNodeConfig[] } = { type: 'rpc', service: 'GasTracker (ETCDEV)', url: 'https://web3.gastracker.io' + }, + { + name: makeNodeName('ETC', 'etccooperative'), + type: 'rpc', + service: 'ETC Cooperative', + url: 'https://ethereumclassic.network' } ], From b4fa952026f17551cee110e33cc2f03fc074d959 Mon Sep 17 00:00:00 2001 From: Anthony Date: Thu, 16 Aug 2018 10:09:32 -0400 Subject: [PATCH 3/3] GasTracker is not an ETCDEV project Removed reference. My mistake. --- common/libs/nodes/configs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/libs/nodes/configs.ts b/common/libs/nodes/configs.ts index bdf3e867..534efc54 100644 --- a/common/libs/nodes/configs.ts +++ b/common/libs/nodes/configs.ts @@ -76,7 +76,7 @@ export const NODE_CONFIGS: { [key in StaticNetworkIds]: RawNodeConfig[] } = { { name: makeNodeName('ETC', 'gastracker'), type: 'rpc', - service: 'GasTracker (ETCDEV)', + service: 'GasTracker', url: 'https://web3.gastracker.io' }, {