-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
60 lines (54 loc) · 1.39 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
52
53
54
55
56
57
58
59
60
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
import "@nomiclabs/hardhat-truffle5";
import '@openzeppelin/hardhat-upgrades';
import "@nomiclabs/hardhat-etherscan";
import "hardhat-gas-reporter";
import "hardhat-deploy";
require('dotenv').config()
const TENDERLY_FORK_URL = process.env.TENDERLY_FORK_URL || "";
const config: HardhatUserConfig = {
networks: {
mumbai: {
url: "https://rpc-mumbai.maticvigil.com",
accounts: [
process.env.DEPLOYER_PRIVATE_KEY as string,
process.env.INTEGRATION_TEST_ACC1_PRIVATE_KEY as string,
process.env.INTEGRATION_TEST_ACC2_PRIVATE_KEY as string,
process.env.INTEGRATION_TEST_ACC3_PRIVATE_KEY as string,
],
chainId: 80001,
},
polygonZkTestnet: {
url: "https://rpc.public.zkevm-test.net",
},
"tenderly-fork": {
url: TENDERLY_FORK_URL
},
},
namedAccounts: {
account0: 0
},
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY
},
solidity: {
compilers: [
{
version: "0.8.19",
settings: {
viaIR: true,
metadata: {
appendCBOR: false,
bytecodeHash: "none"
},
optimizer: {
enabled: true,
runs: 1,
}
}
}
]
}
};
export default config;