Merge branch 'develop' into bug/enable-empty-trezor-passphrase

This commit is contained in:
Connor Bryan 2018-08-15 14:16:26 -05:00 committed by GitHub
commit aec34948d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 37 additions and 0 deletions

View File

@ -467,6 +467,32 @@ export const STATIC_NETWORKS_INITIAL_STATE: StaticNetworksState = {
} }
}, },
GO_TESTNET: {
id: 'GO_TESTNET',
name: 'GO',
unit: 'GO',
chainId: 31337,
isCustom: false,
color: '#00b04a',
blockExplorer: makeExplorer({
name: 'GoChain Testnet Explorer',
origin: 'https://testnet-explorer.gochain.io'
}),
tokens: [],
contracts: [],
isTestnet: true,
dPathFormats: {
[SecureWalletName.TREZOR]: GO_DEFAULT,
[SecureWalletName.SAFE_T]: GO_DEFAULT,
[InsecureWalletName.MNEMONIC_PHRASE]: GO_DEFAULT
},
gasPriceSettings: {
min: 2,
max: 60,
initial: 2
}
},
EOSC: { EOSC: {
id: 'EOSC', id: 'EOSC',
name: 'EOS Classic', name: 'EOS Classic',
@ -491,6 +517,7 @@ export const STATIC_NETWORKS_INITIAL_STATE: StaticNetworksState = {
initial: 20 initial: 20
} }
}, },
ESN: { ESN: {
id: 'ESN', id: 'ESN',
name: 'EthersocialNetwork', name: 'EthersocialNetwork',

View File

@ -195,6 +195,15 @@ export const NODE_CONFIGS: { [key in StaticNetworkIds]: RawNodeConfig[] } = {
} }
], ],
GO_TESTNET: [
{
name: makeNodeName('GO_TESTNET', 'go_testnet'),
type: 'rpc',
service: 'testnet-rpc.gochain.io',
url: 'https://testnet-rpc.gochain.io/'
}
],
EOSC: [ EOSC: [
{ {
name: makeNodeName('EOSC', 'eosc'), name: makeNodeName('EOSC', 'eosc'),

View File

@ -18,6 +18,7 @@ type StaticNetworkIds =
| 'RSK' | 'RSK'
| 'RSK_TESTNET' | 'RSK_TESTNET'
| 'GO' | 'GO'
| 'GO_TESTNET'
| 'EOSC' | 'EOSC'
| 'ESN'; | 'ESN';