mirror of
https://github.com/tornadocash/tornado-initiation-ui.git
synced 2025-02-14 13:10:29 +01:00
23 lines
529 B
JavaScript
23 lines
529 B
JavaScript
const networkConfig = {
|
|
netId137: {
|
|
rpcCallRetryAttempt: 15,
|
|
gasPrices: { instant: 7.5, fast: 5, standard: 1, low: 1 },
|
|
currencyName: 'MATIC',
|
|
explorerUrl: {
|
|
tx: 'https://polygonscan.com/tx/',
|
|
address: 'https://polygonscan.com/address/',
|
|
},
|
|
networkName: 'polygon',
|
|
rpcUrls: {
|
|
Infura: {
|
|
name: 'Infura',
|
|
url:
|
|
'https://polygon-mainnet.infura.io/v3/da564f81919d40c9a3bcaee4ff44438d',
|
|
},
|
|
},
|
|
pollInterval: 60,
|
|
},
|
|
}
|
|
|
|
export default networkConfig
|