diff --git a/CHANGELOG.md b/CHANGELOG.md index babb3f920e..834ca06d1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +- Add ETC nodes [#2305](https://github.com/kvhnuke/etherwallet/pull/2305) - Add warning modal [#2302](https://github.com/kvhnuke/etherwallet/pull/2302) - Sync tokens with ethereum-list [#2301](https://github.com/kvhnuke/etherwallet/pull/2301) diff --git a/app/scripts/nodes.js b/app/scripts/nodes.js index 94d5709021..b371e76e3b 100644 --- a/app/scripts/nodes.js +++ b/app/scripts/nodes.js @@ -96,6 +96,30 @@ nodes.nodeList = { service: "giveth.io", lib: new nodes.customNode("https://mew.giveth.io", "") }, + etc_ethereumclassiccooperative_parity: { + name: "ETC", + blockExplorerTX: "https://gastracker.io/tx/[[txHash]]", + blockExplorerAddr: "https://gastracker.io/addr/[[address]]", + type: nodes.nodeTypes.ETC, + eip155: true, + chainId: 61, + tokenList: require("./tokens/etcTokens.json"), + abiList: require("./abiDefinitions/etcAbi.json"), + service: "ETC Coop Parity", + lib: new nodes.customNode("https://www.ethercluster.com/etc", "") + }, + etc_ethereumclassiccooperative_parity_classic: { + name: "ETC", + blockExplorerTX: "https://gastracker.io/tx/[[txHash]]", + blockExplorerAddr: "https://gastracker.io/addr/[[address]]", + type: nodes.nodeTypes.ETC, + eip155: true, + chainId: 61, + tokenList: require("./tokens/etcTokens.json"), + abiList: require("./abiDefinitions/etcAbi.json"), + service: "ETC Coop Parity Classic", + lib: new nodes.customNode("https://www.ethereumclassic.network/", "") + }, etc_ethereumcommonwealth_geth: { name: "ETC", blockExplorerTX: "https://gastracker.io/tx/[[txHash]]",