2020-10-21 16:42:50 +02:00
|
|
|
const networkConfig = {
|
|
|
|
netId1: {
|
|
|
|
rpcCallRetryAttempt: 15,
|
|
|
|
gasPrices: { instant: 80, fast: 50, standard: 25, low: 8 },
|
|
|
|
currencyName: 'ETH',
|
|
|
|
explorerUrl: {
|
|
|
|
tx: 'https://etherscan.io/tx/',
|
|
|
|
address: 'https://etherscan.io/address/',
|
|
|
|
},
|
|
|
|
networkName: 'Mainnet',
|
|
|
|
rpcUrls: {
|
|
|
|
Infura: {
|
|
|
|
name: 'Infura',
|
2020-12-12 21:21:20 +01:00
|
|
|
url: 'https://mainnet.infura.io/v3/2884a3281c1d4ae8952e25c84d76bced',
|
2020-10-21 16:42:50 +02:00
|
|
|
},
|
|
|
|
MyCrypto: { name: 'MyCrypto', url: 'https://api.mycryptoapi.com/eth' },
|
|
|
|
},
|
|
|
|
pollInterval: 60,
|
|
|
|
},
|
2020-12-12 21:19:11 +01:00
|
|
|
netId5: {
|
2020-10-21 16:42:50 +02:00
|
|
|
rpcCallRetryAttempt: 15,
|
|
|
|
gasPrices: { instant: 80, fast: 50, standard: 25, low: 8 },
|
2020-12-12 21:19:11 +01:00
|
|
|
currencyName: 'gETH',
|
2020-10-21 16:42:50 +02:00
|
|
|
explorerUrl: {
|
2020-12-12 21:19:11 +01:00
|
|
|
tx: 'https://goerli.etherscan.io/tx/',
|
|
|
|
address: 'https://goerli.etherscan.io/address/',
|
2020-10-21 16:42:50 +02:00
|
|
|
},
|
2020-12-12 21:19:11 +01:00
|
|
|
networkName: 'goerli',
|
2020-10-21 16:42:50 +02:00
|
|
|
rpcUrls: {
|
|
|
|
Infura: {
|
|
|
|
name: 'Infura',
|
2020-12-12 21:21:20 +01:00
|
|
|
url: 'https://goerli.infura.io/v3/2884a3281c1d4ae8952e25c84d76bced',
|
2020-10-21 16:42:50 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
pollInterval: 200,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
export default networkConfig
|