-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhardhat.config.js
More file actions
56 lines (52 loc) · 1.14 KB
/
hardhat.config.js
File metadata and controls
56 lines (52 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
require("@nomicfoundation/hardhat-toolbox");
require("dotenv").config();
const { subtask } = require("hardhat/config");
const {
TASK_COMPILE_SOLIDITY_GET_SOLC_BUILD,
} = require("hardhat/builtin-tasks/task-names");
subtask(TASK_COMPILE_SOLIDITY_GET_SOLC_BUILD, async (args, hre, runSuper) => {
if (args.solcVersion === "0.8.28") {
return {
compilerPath: require.resolve("solc/soljson.js"),
isSolcJs: true,
version: args.solcVersion,
longVersion: "0.8.28",
};
}
return runSuper();
});
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
defaultNetwork: "sepolia",
networks: {
hardhat: {
chainId: 31337,
},
localHardhat: {
url: "http://127.0.0.1:8545",
},
sepolia: {
url: "https://eth-sepolia.g.alchemy.com/v2/<key>",
accounts: [],
},
},
solidity: {
version: "0.8.28",
preferWasm: true,
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
paths: {
sources: "./contracts",
tests: "./test",
cache: "./cache",
artifacts: "./artifacts",
},
mocha: {
timeout: 40000,
},
};