forked from Uniswap/merkle-distributor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
40 lines (39 loc) · 931 Bytes
/
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
/**
* @type import('hardhat/config').HardhatUserConfig
*/
require('dotenv').config()
import '@nomiclabs/hardhat-ethers'
import '@nomiclabs/hardhat-waffle'
module.exports = {
solidity: {
compilers: [
{
version: '0.8.17',
settings: {
optimizer: {
enabled: true,
runs: 5000,
},
},
},
],
},
networks: {
hardhat: {
settings: {
debug: {
revertStrings: 'debug',
},
},
},
tenderly: {
chainId: 1,
url: `https://rpc.tenderly.co/fork/${process.env.TENDERLY_FORK_ID}`,
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
},
mainnet: {
url: `https://mainnet.infura.io/v3/${process.env.INFURA_KEY}`, // or any other JSON-RPC provider
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
},
},
}