Skip to content

Commit

Permalink
Ether-1 Node Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Dev-JamesR committed Aug 13, 2018
1 parent 6a58d04 commit 40e9bf9
Show file tree
Hide file tree
Showing 4 changed files with 2,607 additions and 1,251 deletions.
2 changes: 1 addition & 1 deletion app/includes/sendTx.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div ng-click="wd = !wd">
<a class="collapse-button"><span ng-show="wd">+</span><span ng-show="!wd">-</span></a>
<h1 translate="NAV_SendEther">
Send Ether &amp; Tokens
Send Ether-1 &amp; Tokens
</h1>
</div>
<div ng-show="!wd">
Expand Down
36 changes: 24 additions & 12 deletions app/scripts/nodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,36 @@ nodes.metamaskNode = require('./nodeHelpers/metamask');
nodes.nodeTypes = {
ETHO: "ETHO"
};
nodes.ensNodeTypes = [nodes.nodeTypes.ETH, nodes.nodeTypes.Ropsten];
nodes.ensSubNodeTypes = [nodes.nodeTypes.ETH];
nodes.domainsaleNodeTypes = [nodes.nodeTypes.ETH, nodes.nodeTypes.Ropsten];
nodes.ensNodeTypes = [nodes.nodeTypes.ETHO, nodes.nodeTypes.Ropsten];
nodes.ensSubNodeTypes = [nodes.nodeTypes.ETHO];
nodes.domainsaleNodeTypes = [nodes.nodeTypes.ETHO, nodes.nodeTypes.Ropsten];
nodes.customNodeObj = {
'name': 'CUS',
'blockExplorerTX': '',
'blockExplorerAddr': '',
'type': nodes.nodeTypes.Custom,
'eip155': false,
'chainId': '',
'tokenList': [],
'abiList': [],
'service': 'Custom',
'lib': null
};
nodes.nodeList = {
'etho': {
'name': 'ETHO',
'blockExplorerTX': 'https://explorer.ether1.org/tx/[[txHash]]',
'eth_mew': {
'name': 'Ether-1',
'blockExplorerTX': 'https://explorer.ether1.org/#/tx/[[txHash]]',
'blockExplorerAddr': 'https://explorer.ether1.org/addr/[[address]]',
'type': nodes.nodeTypes.ETHO,
'eip155': true,
'chainId': 1313114,
'tokenList': require('./tokens/ethoTokens.json'),
'abiList': require('./abiDefinitions/ethoAbi.json'),
'estimateGas': true,
'service': 'ether1.org',
'lib': new nodes.customNode('https://rpc.ether1.org', '')
}
'tokenList': require('./tokens/ethTokens.json'),
'abiList': require('./abiDefinitions/ethAbi.json'),
'service': 'rpc.ether1.org',
'lib': new nodes.customNode('https://rpc.ether1.org', '443')
},
};


nodes.ethPrice = require('./nodeHelpers/ethPrice');
module.exports = nodes;
Loading

0 comments on commit 40e9bf9

Please sign in to comment.