-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.ts
63 lines (61 loc) · 1.33 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
61
62
63
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
import "@nomiclabs/hardhat-ethers";
import "hardhat-deploy";
import "@nomiclabs/hardhat-etherscan";
import "dotenv/config";
import "./scripts/mint";
import { node_url, accounts } from './utils/network';
const privateKey = process.env.PRIVATE_KEY;
const config: HardhatUserConfig = {
solidity: {
compilers: [
{
version: '0.8.9',
settings: {
optimizer: {
enabled: true,
runs: 2000,
},
},
},
],
},
namedAccounts: {
deployer: 0,
otherAccount: 1,
},
etherscan: {
apiKey: "WG8G4PBTJDUBBYWA9ZZ56MV3XJXXPNAIH5",
},
networks: {
hardhat: {
accounts: accounts('mainnet'),
},
staging: {
url: node_url('rinkeby'),
accounts: accounts('rinkeby'),
},
production: {
url: node_url('mainnet'),
accounts: accounts('mainnet'),
},
mainnet: {
url: node_url('mainnet'),
accounts: accounts('mainnet'),
},
rinkeby: {
url: node_url('rinkeby'),
accounts: accounts('rinkeby'),
},
kovan: {
url: node_url('kovan'),
accounts: accounts('kovan'),
},
goerli: {
url: node_url('goerli'),
accounts: accounts('goerli'),
}
},
};
export default config;