-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.js
78 lines (74 loc) · 1.85 KB
/
hardhat.config.js
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
74
75
76
77
78
require("@nomiclabs/hardhat-waffle");
require("hardhat-gas-reporter");
require("solidity-coverage");
require("@nomiclabs/hardhat-etherscan");
require("hardhat-deploy");
require("@nomiclabs/hardhat-ethers");
require("@openzeppelin/hardhat-upgrades");
require('hardhat-contract-sizer');
require('hardhat-abi-exporter');
const {
evmPrivateKey,
etherscanApiKey,
coinmarketCapKey,
} = require("./secretsManager.example");
require("./tasks/deploy");
require("./tasks/factory")
require("./tasks/royalties");
module.exports = {
solidity: {
version: "0.8.4",
settings: {
optimizer: {
enabled: true,
runs: 1,
},
},
},
gasReporter: {
enabled: true,
currency: "USD",
gasPrice: 30,
coinmarketcap: coinmarketCapKey,
},
paths: {
// deploy: "./contracts/deploy",
deployments: "deployments",
imports: "imports",
tests: "./test",
},
defaultNetwork: "hardhat",
namedAccounts: {
deployer: 0,
},
networks: {
hardhat: {
allowUnlimitedContractSize: true,
initialBaseFeePerGas: 0,
},
goerli: evmPrivateKey ? {
url: "https://goerli.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161",
accounts: [evmPrivateKey]
} : { url: "https://goerli.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161" },
mainnet: evmPrivateKey ? {
url: "https://mainnet.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161",
accounts: [evmPrivateKey]
} : { url: "https://mainnet.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161" }
},
etherscan: {
// Your API key for Etherscan
// Obtain one at https://etherscan.io/
apiKey: etherscanApiKey,
},
contractSizer: {
runOnCompile: true
},
abiExporter: {
path: './test/abis',
runOnCompile: true,
clear: true,
flat: false,
only: [':CreatorBlueprints$', ':CreatorBlueprintsFilterer$'],
spacing: 2
}
};