ETC commonwealth node (#1518)
This commit is contained in:
parent
985ea0fb89
commit
944128bd29
|
@ -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');
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue