mirror of
https://github.com/tornadocash/tornado-initiation-ui.git
synced 2025-02-14 13:10:29 +01:00
add goerli
This commit is contained in:
parent
98d50bc6e3
commit
b828f8fa3a
@ -17,21 +17,20 @@ const networkConfig = {
|
|||||||
},
|
},
|
||||||
pollInterval: 60,
|
pollInterval: 60,
|
||||||
},
|
},
|
||||||
netId42: {
|
netId5: {
|
||||||
rpcCallRetryAttempt: 15,
|
rpcCallRetryAttempt: 15,
|
||||||
gasPrices: { instant: 80, fast: 50, standard: 25, low: 8 },
|
gasPrices: { instant: 80, fast: 50, standard: 25, low: 8 },
|
||||||
currencyName: 'kETH',
|
currencyName: 'gETH',
|
||||||
explorerUrl: {
|
explorerUrl: {
|
||||||
tx: 'https://kovan.etherscan.io/tx/',
|
tx: 'https://goerli.etherscan.io/tx/',
|
||||||
address: 'https://kovan.etherscan.io/address/',
|
address: 'https://goerli.etherscan.io/address/',
|
||||||
},
|
},
|
||||||
networkName: 'Kovan',
|
networkName: 'goerli',
|
||||||
rpcUrls: {
|
rpcUrls: {
|
||||||
Infura: {
|
Infura: {
|
||||||
name: '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,
|
pollInterval: 200,
|
||||||
},
|
},
|
||||||
|
@ -78,5 +78,27 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
// Build Configuration (https://go.nuxtjs.dev/config-build)
|
// 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…
x
Reference in New Issue
Block a user