Add Blockscale Beta Node (#1134)

This commit is contained in:
Danny Skubak 2018-02-24 12:56:18 -05:00 committed by Daniel Ternyak
parent a50dc2ebb0
commit 94061e0c3e
3 changed files with 15 additions and 0 deletions

View File

@ -26,6 +26,13 @@ export const INITIAL_STATE: State = {
lib: new InfuraNode('https://mainnet.infura.io/mycrypto'),
estimateGas: false
},
eth_blockscale: {
network: 'ETH',
isCustom: false,
lib: new RPCNode('https://api.dev.blockscale.net/dev/parity'),
service: 'Blockscale beta',
estimateGas: true
},
rop_infura: {
network: 'Ropsten',
isCustom: false,

View File

@ -35,6 +35,7 @@ declare enum StaticNodeId {
ETH_MYCRYPTO = 'eth_mycrypto',
ETH_ETHSCAN = 'eth_ethscan',
ETH_INFURA = 'eth_infura',
ETH_BLOCKSCALE = 'eth_blockscale',
ROP_INFURA = 'rop_infura',
KOV_ETHSCAN = 'kov_ethscan',
RIN_ETHSCAN = 'rin_ethscan',

View File

@ -26,6 +26,13 @@ const expectedInitialState = {
lib: new InfuraNode('https://mainnet.infura.io/mycrypto'),
estimateGas: false
},
eth_blockscale: {
network: 'ETH',
isCustom: false,
lib: new RPCNode('https://api.dev.blockscale.net/dev/parity'),
service: 'Blockscale beta',
estimateGas: true
},
rop_infura: {
network: 'Ropsten',
isCustom: false,