add goerli

This commit is contained in:
Roman Storm 2020-12-12 12:19:11 -08:00
parent 98d50bc6e3
commit b828f8fa3a
No known key found for this signature in database
GPG Key ID: 522F2A785F34E71F
2 changed files with 29 additions and 8 deletions

View File

@ -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,
},

View File

@ -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'),
})
},
},
}