tornado-initiation-ui/networkConfig.js

23 lines
529 B
JavaScript
Raw Normal View History

2020-10-21 16:42:50 +02:00
const networkConfig = {
2021-06-23 14:18:14 +02:00
netId137: {
2020-10-21 16:42:50 +02:00
rpcCallRetryAttempt: 15,
2021-06-23 14:18:14 +02:00
gasPrices: { instant: 7.5, fast: 5, standard: 1, low: 1 },
currencyName: 'MATIC',
2020-10-21 16:42:50 +02:00
explorerUrl: {
2021-06-23 14:18:14 +02:00
tx: 'https://polygonscan.com/tx/',
address: 'https://polygonscan.com/address/',
2020-10-21 16:42:50 +02:00
},
2021-06-23 14:18:14 +02:00
networkName: 'polygon',
2020-10-21 16:42:50 +02:00
rpcUrls: {
Infura: {
name: 'Infura',
2021-06-02 11:47:40 +02:00
url:
2021-06-23 14:18:14 +02:00
'https://polygon-mainnet.infura.io/v3/da564f81919d40c9a3bcaee4ff44438d',
2020-10-21 16:42:50 +02:00
},
},
2021-06-23 14:18:14 +02:00
pollInterval: 60,
2020-10-21 16:42:50 +02:00
},
}
export default networkConfig