mirror of
https://github.com/tornadocash/tornado-initiation-ui.git
synced 2024-11-22 01:26:51 +01:00
add goerli
This commit is contained in:
parent
98d50bc6e3
commit
b828f8fa3a
@ -17,21 +17,20 @@ const networkConfig = {
|
||||
},
|
||||
pollInterval: 60,
|
||||
},
|
||||
netId42: {
|
||||
netId5: {
|
||||
rpcCallRetryAttempt: 15,
|
||||
gasPrices: { instant: 80, fast: 50, standard: 25, low: 8 },
|
||||
currencyName: 'kETH',
|
||||
currencyName: 'gETH',
|
||||
explorerUrl: {
|
||||
tx: 'https://kovan.etherscan.io/tx/',
|
||||
address: 'https://kovan.etherscan.io/address/',
|
||||
tx: 'https://goerli.etherscan.io/tx/',
|
||||
address: 'https://goerli.etherscan.io/address/',
|
||||
},
|
||||
networkName: 'Kovan',
|
||||
networkName: 'goerli',
|
||||
rpcUrls: {
|
||||
Infura: {
|
||||
name: 'Infura',
|
||||
url: 'https://kovan.infura.io/v3/9b8f0ddb3e684ece890f594bf1710c88',
|
||||
url: 'https://goerli.infura.io/v3/da564f81919d40c9a3bcaee4ff44438d',
|
||||
},
|
||||
'POA.network': { name: 'POA.network', url: 'https://kovan.poa.network' },
|
||||
},
|
||||
pollInterval: 200,
|
||||
},
|
||||
|
@ -78,5 +78,27 @@ export default {
|
||||
},
|
||||
|
||||
// Build Configuration (https://go.nuxtjs.dev/config-build)
|
||||
build: {},
|
||||
build: {
|
||||
/*
|
||||
** You can extend webpack config here
|
||||
*/
|
||||
extend(config, ctx) {
|
||||
config.output.publicPath = './_nuxt/'
|
||||
},
|
||||
// splitChunks: {
|
||||
// commons: false
|
||||
// }
|
||||
},
|
||||
|
||||
router: {
|
||||
linkActiveClass: '',
|
||||
linkExactActiveClass: 'is-active',
|
||||
extendRoutes(routes, resolve) {
|
||||
routes.push({
|
||||
name: 'ipfs-root',
|
||||
path: '*',
|
||||
component: resolve(__dirname, 'pages/index.vue'),
|
||||
})
|
||||
},
|
||||
},
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user