Merge branch 'develop' into bug/enable-empty-trezor-passphrase
This commit is contained in:
commit
aec34948d0
|
@ -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',
|
||||||
|
|
|
@ -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'),
|
||||||
|
|
|
@ -18,6 +18,7 @@ type StaticNetworkIds =
|
||||||
| 'RSK'
|
| 'RSK'
|
||||||
| 'RSK_TESTNET'
|
| 'RSK_TESTNET'
|
||||||
| 'GO'
|
| 'GO'
|
||||||
|
| 'GO_TESTNET'
|
||||||
| 'EOSC'
|
| 'EOSC'
|
||||||
| 'ESN';
|
| 'ESN';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue