mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 10:22:23 +00:00
11 lines
222 B
JavaScript
11 lines
222 B
JavaScript
require("@nomicfoundation/hardhat-toolbox");
|
|
|
|
/** @type import('hardhat/config').HardhatUserConfig */
|
|
module.exports = {
|
|
solidity: "0.8.24",
|
|
networks: {
|
|
devnet: {
|
|
url: "http://localhost:8545",
|
|
},
|
|
},
|
|
};
|