-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathhardhat.config.ts
51 lines (44 loc) · 1.09 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 * as dotenv from 'dotenv'
import { HardhatUserConfig } from 'hardhat/types'
import '@nomiclabs/hardhat-ethers'
import '@nomiclabs/hardhat-waffle'
import '@nomiclabs/hardhat-solhint'
import '@typechain/hardhat'
import "@nomiclabs/hardhat-etherscan";
import "hardhat-gas-reporter"
dotenv.config();
const config: HardhatUserConfig = {
defaultNetwork: 'hardhat',
solidity: {
version: '0.8.4',
settings: {
optimizer: {
enabled: true,
runs: 2000
}
}
},
typechain: {
outDir: 'bindings',
target: 'ethers-v5'
},
networks: {
rinkeby: {
url: `https://eth-rinkeby.alchemyapi.io/v2/${process.env.RINKEBY_ALCHEMY_KEY}`,
accounts: [process.env.TESTING_PRIVATE_KEY!],
},
mainnet: {
url: `https://eth-mainnet.alchemyapi.io/v2/${process.env.MAINNET_ALCHEMY_KEY}`,
accounts: [process.env.PRODUCTION_PRIVATE_KEY!],
},
},
etherscan: {
apiKey: process.env.ETHERSCAN_API!,
},
gasReporter: {
enabled: true,
currency: "USD",
coinmarketcap: process.env.COINMARKETCAP_API!
}
};
export default config