tornado-initiation-ui/networkConfig.js

27 lines
539 B
JavaScript
Raw Normal View History

2020-10-21 16:42:50 +02:00
const networkConfig = {
2021-08-21 04:42:17 +02:00
netId100: {
2020-10-21 16:42:50 +02:00
rpcCallRetryAttempt: 15,
2021-08-21 04:42:17 +02:00
gasPrices: {
instant: 5,
fast: 4,
standard: 3,
low: 1,
},
currencyName: 'xDAI',
2020-10-21 16:42:50 +02:00
explorerUrl: {
2021-08-21 04:42:17 +02:00
tx: 'https://blockscout.com/xdai/mainnet/tx/',
address: 'https://blockscout.com/xdai/mainnet/address/',
2020-10-21 16:42:50 +02:00
},
2021-08-21 04:42:17 +02:00
networkName: 'xdai',
2020-10-21 16:42:50 +02:00
rpcUrls: {
Infura: {
2021-08-21 04:42:17 +02:00
name: 'xDAI Chain RPC',
url: 'https://rpc.xdaichain.com/tornado',
2020-10-21 16:42:50 +02:00
},
},
pollInterval: 200,
},
}
export default networkConfig