-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.ts
47 lines (44 loc) · 1.02 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
require('dotenv').config();
import '@nomiclabs/hardhat-ethers';
import '@nomiclabs/hardhat-etherscan';
import '@nomiclabs/hardhat-waffle';
import '@typechain/hardhat';
const ALCHEMY_KEY = process.env.ALCHEMY_KEY || '';
const PRIVATE_KEY = process.env.PRIVATE_KEY || '';
const ETHERSCAN_API_KEY = process.env.ETHERSCAN_API_KEY || '';
module.exports = {
solidity: {
compilers: [
{
version: '0.8.3',
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
],
},
defaultNetwork: 'hardhat',
networks: {
hardhat: {},
ropsten: {
url: `https://eth-ropsten.alchemyapi.io/v2/${ALCHEMY_KEY}`,
accounts: [`0x${PRIVATE_KEY}`],
chainId: 3,
},
mumbai: {
url: `https://polygon-mumbai.g.alchemy.com/v2/${ALCHEMY_KEY}`,
accounts: [`0x${PRIVATE_KEY}`],
chainId: 80001,
},
},
etherscan: {
apiKey: ETHERSCAN_API_KEY,
},
typechain: {
outDir: 'typechain',
target: 'ethers-v5',
},
};