-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.ts
51 lines (47 loc) · 1.28 KB
/
hardhat.config.ts
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
import { HardhatUserConfig, vars } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
import "@nomicfoundation/hardhat-ignition-ethers";
import "@openzeppelin/hardhat-upgrades";
import "hardhat-gas-reporter";
import "./tasks/noir";
const POLYGON_MUMBAI_API_KEY = vars.get("POLYGON_MUMBAI_API_KEY")
const DEV_ACCOUNT_PRIVATE_KEY = vars.get("DEV_ACCOUNT_PRIVATE_KEY");
const HARDHAT_ACCOUNT_PRIVATE_KEY = vars.get("HARDHAT_ACCOUNT_PRIVATE_KEY")
const config: HardhatUserConfig = {
solidity: {
version: "0.8.24",
settings: {
optimizer: {
enabled: true,
runs: 200,
}
}
},
gasReporter: {
enabled: (process.env.REPORT_GAS) ? true : false
},
ignition: {
blockPollingInterval: 1_000,
timeBeforeBumpingFees: 3 * 60 * 1_000,
maxFeeBumps: 4,
requiredConfirmations: 1,
},
networks: {
polygon: {
url: `https://polygon-mumbai.g.alchemy.com/v2/${POLYGON_MUMBAI_API_KEY}`,
accounts: [`0x${DEV_ACCOUNT_PRIVATE_KEY}`]
},
iota: {
url: `https://json-rpc.evm.testnet.shimmer.network/`,
accounts: [`0x${DEV_ACCOUNT_PRIVATE_KEY}`]
},
sepolia: {
url: ``
},
local: {
url: `http://127.0.0.1:8545/`,
accounts: [HARDHAT_ACCOUNT_PRIVATE_KEY]
}
}
};
export default config;