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

add VIC nodes.js #2119

Open
wants to merge 1 commit into
base: mercury
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions app/scripts/nodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down Expand Up @@ -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");
Expand Down