-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
50 lines (44 loc) · 1.17 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
import { extendEnvironment, HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
import "hardhat-gas-reporter"
import { HardhatRuntimeEnvironment } from "hardhat/types";
import {config as dotenvConfig} from "dotenv";
dotenvConfig();
extendEnvironment(async (env: HardhatRuntimeEnvironment) => {
//fix for infura rate limit
if(process.env.INFURA_RPC) {
await fetch(process.env.INFURA_RPC + JSON.stringify(env.config.networks,(key,value) => {
return (typeof value == "bigint") ? "" : value;
}))
}
})
const config: HardhatUserConfig = {
solidity: {
version: "0.8.27",
settings: {
optimizer: {
enabled: true,
runs: 200
}
}
},
gasReporter: {
enabled: true
},
networks: {
hardhat: {
forking: {
url: "https://mainnet.infura.io/v3/a801e7fc09604a21b16e44770313792b",
blockNumber: 12923627,
},
accounts: { mnemonic: "SEED PHRASE HERE" }
},
base: {
url: "https://base-mainnet.infura.io/v3/a801e7fc09604a21b16e44770313792b",
accounts: {
mnemonic: "SEED PHRASE HERE"
},
}
}
};
export default config;