generated from Barefoot-Dev/solidity-nft-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.ts
73 lines (66 loc) · 1.71 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
64
65
66
67
68
69
70
71
72
73
import "hardhat-deploy"; // adds the deploy task
import "@nomiclabs/hardhat-ethers";
import "@nomiclabs/hardhat-etherscan";
import "@nomiclabs/hardhat-waffle";
import "hardhat-gas-reporter";
import "solidity-coverage";
import { HardhatUserConfig } from "hardhat/config";
import { NetworkUserConfig } from "hardhat/types";
import { resolve } from "path";
import { config as dotenvConfig } from "dotenv";
dotenvConfig({ path: resolve(__dirname, "./.env") });
const chainIds = {
hardhat: 31337,
mainnet: 1,
rinkeby: 4,
};
// Ensure that we have all the environment variables we need.
const mnemonic: string | undefined = process.env.MNEMONIC;
if (!mnemonic) {
throw new Error("Please set your MNEMONIC in a .env file");
}
const alchemyKey: string | undefined = process.env.ALCHEMY_KEY;
if (!alchemyKey) {
throw new Error("Please set your ALCHEMY_KEY in a .env file");
}
function getChainConfig(network: keyof typeof chainIds): NetworkUserConfig {
const url: string =
"https://eth-" + network + ".alchemyapi.io/v2/" + alchemyKey;
return {
accounts: { mnemonic },
chainId: chainIds[network],
url: url,
};
}
const config: HardhatUserConfig = {
networks: {
hardhat: {
accounts: { mnemonic },
},
rinkeby: {
...getChainConfig("rinkeby"),
},
},
gasReporter: {
enabled: true,
currency: "USD",
},
namedAccounts: {
deployer: 0,
},
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY,
},
solidity: {
version: "0.8.9",
settings: {
// Disable the optimizer when debugging
// https://hardhat.org/hardhat-network/#solidity-optimizer-support
optimizer: {
enabled: true,
runs: 200,
},
},
},
};
export default config;