mirror of
https://github.com/tornadocash/tornado-initiation-ui.git
synced 2024-11-22 17:40:04 +01:00
27 lines
539 B
JavaScript
27 lines
539 B
JavaScript
const networkConfig = {
|
|
netId100: {
|
|
rpcCallRetryAttempt: 15,
|
|
gasPrices: {
|
|
instant: 5,
|
|
fast: 4,
|
|
standard: 3,
|
|
low: 1,
|
|
},
|
|
currencyName: 'xDAI',
|
|
explorerUrl: {
|
|
tx: 'https://blockscout.com/xdai/mainnet/tx/',
|
|
address: 'https://blockscout.com/xdai/mainnet/address/',
|
|
},
|
|
networkName: 'xdai',
|
|
rpcUrls: {
|
|
Infura: {
|
|
name: 'xDAI Chain RPC',
|
|
url: 'https://rpc.xdaichain.com/tornado',
|
|
},
|
|
},
|
|
pollInterval: 200,
|
|
},
|
|
}
|
|
|
|
export default networkConfig
|