-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathhardhat.config.ts
More file actions
32 lines (29 loc) · 802 Bytes
/
Copy pathhardhat.config.ts
File metadata and controls
32 lines (29 loc) · 802 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
require("@nomiclabs/hardhat-waffle");
require("dotenv").config({ path: __dirname + "/.env" });
module.exports = {
networks: {
// ganache: {
// url: "HTTP://127.0.0.1:7545",
// accounts: {
// mnemonic:
// "tag palace accident hidden delay escape involve fetch mushroom corn settle doctor",
// path: "m/44'/60'/0'/0",
// initialIndex: 0,
// count: 10,
// },
// chainId: 1337,
// },
mumbai: {
url: `https://rpc-mumbai.maticvigil.com`,
gasPrice: 36000000000,
accounts: [`0x${process.env.POLYGON_PRIVATE_KEY}`],
},
harmonytest: {
url: `https://api.s0.b.hmny.io`,
gas: 56000000000,
accounts: [`0x${process.env.HARMONY_PRIVATE_KEY}`],
},
},
solidity: "0.8.4",
};
export {};