From 62e8ab723a1296f5719b39ab34df8c102682cfe4 Mon Sep 17 00:00:00 2001 From: Victorium <35151607+Victorium-org@users.noreply.github.com> Date: Wed, 24 Oct 2018 23:58:06 +0200 Subject: [PATCH] add VIC nodes.js --- app/scripts/nodes.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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");