-
Notifications
You must be signed in to change notification settings - Fork 39
/
hardhat.config.js
46 lines (44 loc) · 1.03 KB
/
hardhat.config.js
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
require("@nomiclabs/hardhat-waffle");
require('dotenv').config();
// require('./scripts/hardhat.tasks.js');
const {
MAINNET_PRIVATE_KEY,
MAINNET_URL,
TESTNET_PRIVATE_KEY,
TESTNET_URL,
} = process.env;
module.exports = {
defaultNetwork: "hardhat",
networks: {
hardhat: {
// loggingEnabled: true,
},
// testnet: {
// accounts: [TESTNET_PRIVATE_KEY],
// url: TESTNET_URL,
// },
// mainnet: {
// accounts: [MAINNET_PRIVATE_KEY],
// url: MAINNET_URL,
// }
},
paths: {
sources: "./contracts",
cache: "./build/cache",
artifacts: "./build/artifacts",
tests: "./hhtest",
},
solidity: {
compilers: [
{
version: "0.8.10",
settings: {
// optimizer: {
// enabled: true,
// runs: 1000000,
// }
}
},
]
}
};