tornado-initiation-ui/networkConfig.js

41 lines
1.1 KiB
JavaScript
Raw Normal View History

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',
url: 'https://mainnet.infura.io/v3/da564f81919d40c9a3bcaee4ff44438d',
},
MyCrypto: { name: 'MyCrypto', url: 'https://api.mycryptoapi.com/eth' },
},
pollInterval: 60,
},
netId42: {
rpcCallRetryAttempt: 15,
gasPrices: { instant: 80, fast: 50, standard: 25, low: 8 },
currencyName: 'kETH',
explorerUrl: {
tx: 'https://kovan.etherscan.io/tx/',
address: 'https://kovan.etherscan.io/address/',
},
networkName: 'Kovan',
rpcUrls: {
Infura: {
name: 'Infura',
url: 'https://kovan.infura.io/v3/9b8f0ddb3e684ece890f594bf1710c88',
},
'POA.network': { name: 'POA.network', url: 'https://kovan.poa.network' },
},
pollInterval: 200,
},
}
export default networkConfig