tornado-initiation-ui/networkConfig.js

28 lines
568 B
JavaScript
Raw Normal View History

2020-10-21 16:42:50 +02:00
const networkConfig = {
2021-11-22 08:29:48 +01:00
netId42161: {
2020-10-21 16:42:50 +02:00
rpcCallRetryAttempt: 15,
2021-11-22 08:29:48 +01:00
gasPrices: {
instant: 4,
fast: 3,
standard: 2.52,
low: 2.29,
},
currencyName: 'ETH',
2020-10-21 16:42:50 +02:00
explorerUrl: {
2021-11-22 08:29:48 +01:00
tx: 'https://arbiscan.io/tx/',
address: 'https://arbiscan.io/address/',
2020-10-21 16:42:50 +02:00
},
2021-11-22 08:29:48 +01:00
networkName: 'arbitrum',
2020-10-21 16:42:50 +02:00
rpcUrls: {
Infura: {
2021-11-22 08:29:48 +01:00
name: 'Arbitrum Public RPC',
url:
'https://arb-mainnet.g.alchemy.com/v2/_82R9fXSpgWH9iv_oKdwKww7qMyJ6OpR',
2020-10-21 16:42:50 +02:00
},
},
2021-11-22 08:29:48 +01:00
pollInterval: 15,
2020-10-21 16:42:50 +02:00
},
}
export default networkConfig