ETC commonwealth node (#1518)

This commit is contained in:
William O'Beirne 2018-04-15 12:45:36 -04:00 committed by Daniel Ternyak
parent 985ea0fb89
commit 944128bd29
3 changed files with 9 additions and 0 deletions

View File

@ -82,6 +82,7 @@ shepherd.useProvider('etherscan', 'rin_infura', regRinConf, 'https://rinkeby.eth
const regEtcConf = makeProviderConfig({ network: 'ETC' });
shepherd.useProvider('rpc', 'etc_epool', regEtcConf, 'https://mewapi.epool.io');
shepherd.useProvider('rpc', 'etc_commonwealth', regEtcConf, 'https://etc-geth.0xinfra.com/');
const regUbqConf = makeProviderConfig({ network: 'UBQ' });
shepherd.useProvider('rpc', 'ubq', regUbqConf, 'https://pyrus2.ubiqscan.io');

View File

@ -106,6 +106,13 @@ export const INITIAL_STATE: StaticNodesState = {
lib: shepherdProvider,
estimateGas: false
},
etc_commonwealth: {
network: 'ETC',
isCustom: false,
service: 'Ethereum Commonwealth',
lib: shepherdProvider,
estimateGas: false
},
ubq_auto: {
network: 'UBQ',

View File

@ -40,6 +40,7 @@ declare enum StaticNodeId {
RIN_INFURA = 'rin_infura',
ETC_AUTO = 'etc_auto',
ETC_EPOOL = 'etc_epool',
ETC_COMMONWEALTH = 'etc_commonwealth',
UBQ_AUTO = 'ubq_auto',
UBQ = 'ubq',
EXP_AUTO = 'exp_auto',