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

Commit

Permalink
Merge pull request #1770 from yograterol/patch-5
Browse files Browse the repository at this point in the history
Add CLO mainnet and testnet RPC
  • Loading branch information
gamalielhere authored May 3, 2018
2 parents 3983113 + ac94c5b commit 3e6a0f9
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/scripts/abiDefinitions/cloAbi.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[]
26 changes: 26 additions & 0 deletions app/scripts/nodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ nodes.nodeTypes = {
ELLA: "ELLA",
ETSC: "ETSC",
EGEM: "EGEM",
CLO: "CLO",
CLOT: "Testnet CLO",
Custom: "CUSTOM ETH"
};
nodes.ensNodeTypes = [nodes.nodeTypes.ETH, nodes.nodeTypes.Ropsten];
Expand Down Expand Up @@ -270,6 +272,30 @@ nodes.nodeList = {
'estimateGas': true,
'service': 'egem.io',
'lib': new nodes.customNode('https://jsonrpc.egem.io/custom', '')
},
'clo_mainnet': {
'name': 'CLO',
'blockExplorerTX': 'https://explorer.callisto.network/tx/[[txHash]]',
'blockExplorerAddr': 'https://explorer.callisto.network/addr/[[address]]',
'type': nodes.nodeTypes.CLO,
'eip155': true,
'chainId': 820,
'tokenList': require('./tokens/cloTokens.json'),
'abiList': require('./abiDefinitions/cloAbi.json'),
'service': 'Callisto.network',
'lib': new nodes.customNode('https://clo-geth.0xinfra.com/', '')
},
'clo_testnet3': {
'name': 'CLO Testnet 3.0',
'blockExplorerTX': 'https://explorer-testnet.callisto.network/tx/[[txHash]]',
'blockExplorerAddr': 'https://explorer-testnet.callisto.network/addr/[[address]]',
'type': nodes.nodeTypes.CLOT,
'eip155': true,
'chainId': 7919,
'tokenList': require('./tokens/cloTokens.json'),
'abiList': require('./abiDefinitions/cloAbi.json'),
'service': 'Callisto.network',
'lib': new nodes.customNode('https://clo-testnet3.0xinfra.com/', '')
}
};

Expand Down
1 change: 1 addition & 0 deletions app/scripts/tokens/cloTokens.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[]

0 comments on commit 3e6a0f9

Please sign in to comment.