go-ethereum/hardhat/hardhat.config.js
2025-03-07 00:29:21 +02:00

18 lines
No EOL
399 B
JavaScript

require("@nomicfoundation/hardhat-toolbox");
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
networks: {
localhost: {
url: "http://127.0.0.1:8545",
accounts: {
mnemonic: "test test test test test test test test test test test junk",
},
chainId: 1337,
gasPrice: 8000000000
},
},
solidity: {
version: "0.8.28",
}
};