forked from CineCapsule/valentine-day
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.js
41 lines (38 loc) · 857 Bytes
/
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
require("@nomiclabs/hardhat-waffle");
const fs = require("fs");
const privateKey = fs.readFileSync(".env").toString().trim() || "";
task("accounts", "Prints the list of accounts", async (taskArgs, hre) => {
const accounts = await hre.ethers.getSigners();
for (const account of accounts) {
console.log(account.address);
}
});
module.exports = {
defaultNetwork: "spark",
networks: {
spark: {
chainId: 123,
url: "https://rpc.fusespark.io",
accounts: [privateKey],
gasPrice: 1000000000,
},
fuse: {
url: "https://rpc.fuse.io",
chainId: 122,
accounts: [privateKey],
gasPrice: 1000000000,
},
},
solidity: {
version: "0.8.4",
settings: {
optimizer: {
enabled: true,
runs: 20,
},
},
},
paths: {
artifacts: "./src/artifacts",
},
};