-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhardhat.config.js
More file actions
36 lines (35 loc) · 783 Bytes
/
hardhat.config.js
File metadata and controls
36 lines (35 loc) · 783 Bytes
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
// require("@nomicfoundation/hardhat-toolbox");
// /** @type import('hardhat/config').HardhatUserConfig */
// module.exports = {
// solidity: "0.8.28",
// };
require("@nomicfoundation/hardhat-ethers");
module.exports = {
defaultNetwork: "matic",
networks: {
hardhat: {},
matic: {
url: "https://chaotic-tame-waterfall.zkevm-cardona.quiknode.pro/d6b8977e1292a315140eb579a2caf88ca2215e46",
accounts: [
"ac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80",
],
},
},
solidity: {
version: "0.8.0",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
paths: {
sources: "./contracts",
tests: "./test",
cache: "./cache",
},
mocha: {
timeout: 20000,
},
};