github.com/0xsequence/ethkit@v1.25.0/ethtest/testchain/hardhat.config.js (about) 1 // see https://hardhat.org/hardhat-network/docs/reference#config 2 module.exports = { 3 solidity: "0.8.17", 4 5 networks: { 6 hardhat: { 7 mining: { 8 auto: false, 9 interval: 1000 10 }, 11 12 // gas: 10000000000000, 13 // blockGasLimit: 10000000000000, 14 // gasPrice: 2, 15 initialBaseFeePerGas: 1, 16 chainId: 1337, 17 accounts: { 18 mnemonic: 'major danger this key only test please avoid main net use okay' 19 }, 20 // loggingEnabled: true 21 // verbose: true 22 }, 23 } 24 }