Skip to content

Commit 9f1c15e

Browse files
Copilotsonnyquinn24
andcommitted
Initial exploration and plan to implement PR #24 review suggestions
Co-authored-by: sonnyquinn24 <[email protected]>
1 parent e1852ae commit 9f1c15e

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

hardhat.config.js

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
require("@nomicfoundation/hardhat-toolbox");
2-
31
/** @type import('hardhat/config').HardhatUserConfig */
42
const config = {
53
solidity: "0.8.24",
64
networks: {
7-
hardhat: {},
5+
hardhat: {
6+
chainId: 31337
7+
},
88
sepolia: {
99
url: process.env.SEPOLIA_RPC_URL || `https://sepolia.infura.io/v3/${process.env.INFURA_API_KEY}`,
1010
accounts: process.env.PRIVATE_KEY ? [process.env.PRIVATE_KEY] : [],
@@ -22,13 +22,6 @@ const config = {
2222
accounts: process.env.PRIVATE_KEY ? [process.env.PRIVATE_KEY] : [],
2323
},
2424
},
25-
gasReporter: {
26-
enabled: process.env.REPORT_GAS !== undefined,
27-
currency: "USD",
28-
},
29-
etherscan: {
30-
apiKey: process.env.ETHERSCAN_API_KEY,
31-
},
3225
};
3326

34-
module.exports = config;
27+
export default config;

0 commit comments

Comments
 (0)