Skip to content
This repository was archived by the owner on Nov 21, 2019. It is now read-only.

Commit b7fb88d

Browse files
authored
Merge pull request #2305 from kvhnuke/devop/add-etc-nodes
devop/add-etc-nodes
2 parents b7334be + 4e21e94 commit b7fb88d

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
- Add ETC nodes [#2305](https://github.com/kvhnuke/etherwallet/pull/2305)
12
- Add warning modal [#2302](https://github.com/kvhnuke/etherwallet/pull/2302)
23
- Sync tokens with ethereum-list [#2301](https://github.com/kvhnuke/etherwallet/pull/2301)
34

app/scripts/nodes.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,30 @@ nodes.nodeList = {
9696
service: "giveth.io",
9797
lib: new nodes.customNode("https://mew.giveth.io", "")
9898
},
99+
etc_ethereumclassiccooperative_parity: {
100+
name: "ETC",
101+
blockExplorerTX: "https://gastracker.io/tx/[[txHash]]",
102+
blockExplorerAddr: "https://gastracker.io/addr/[[address]]",
103+
type: nodes.nodeTypes.ETC,
104+
eip155: true,
105+
chainId: 61,
106+
tokenList: require("./tokens/etcTokens.json"),
107+
abiList: require("./abiDefinitions/etcAbi.json"),
108+
service: "ETC Coop Parity",
109+
lib: new nodes.customNode("https://www.ethercluster.com/etc", "")
110+
},
111+
etc_ethereumclassiccooperative_parity_classic: {
112+
name: "ETC",
113+
blockExplorerTX: "https://gastracker.io/tx/[[txHash]]",
114+
blockExplorerAddr: "https://gastracker.io/addr/[[address]]",
115+
type: nodes.nodeTypes.ETC,
116+
eip155: true,
117+
chainId: 61,
118+
tokenList: require("./tokens/etcTokens.json"),
119+
abiList: require("./abiDefinitions/etcAbi.json"),
120+
service: "ETC Coop Parity Classic",
121+
lib: new nodes.customNode("https://www.ethereumclassic.network/", "")
122+
},
99123
etc_ethereumcommonwealth_geth: {
100124
name: "ETC",
101125
blockExplorerTX: "https://gastracker.io/tx/[[txHash]]",

0 commit comments

Comments
 (0)