mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-05 03:23:46 +00:00
18 lines
No EOL
399 B
JavaScript
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",
|
|
}
|
|
}; |