diff --git a/app/scripts/nodes.js b/app/scripts/nodes.js index fe71ec6c75..1ffab9505c 100644 --- a/app/scripts/nodes.js +++ b/app/scripts/nodes.js @@ -28,6 +28,7 @@ nodes.nodeTypes = { ILT: "ILT", WEB: "WEB", MIX: "MIX", + VIC: "VIC", Custom: "CUSTOM ETH" }; nodes.ensNodeTypes = [nodes.nodeTypes.ETH, nodes.nodeTypes.Ropsten]; @@ -484,7 +485,21 @@ nodes.nodeList = { estimateGas: true, service: "mix-blockchain.org", lib: new nodes.customNode("https://rpc2.mix-blockchain.org", "8647") + }, + VIC: { + name: "VIC", + blockExplorerTX: "http://victorium.info/tx/[[txHash]]", + blockExplorerAddr: "http://victorium.info/addr/[[address]]", + type: nodes.nodeTypes.VIC, + eip155: true, + chainId: 4388577777, + tokenList: require("./tokens/vicTokens.json"), + abiList: require("./abiDefinitions/vicAbi.json"), + estimateGas: true, + service: "victorium.org", + lib: new nodes.customNode("https://node.victorium.org", "8555") } + }; nodes.ethPrice = require("./nodeHelpers/ethPrice");