mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +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.28",
|
|
networks: {
|
|
localhost: {
|
|
url: "http://127.0.0.1:8546"
|
|
}
|
|
}
|
|
};
|