-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
40 lines (38 loc) · 912 Bytes
/
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
import { HardhatUserConfig } from "hardhat/types";
import "hardhat-deploy";
import "@nomiclabs/hardhat-ethers";
import secrets from './secrets.json';
import "./scripts/custom-tasks/customDeploy";
import "@nomicfoundation/hardhat-toolbox";
const config: HardhatUserConfig = {
solidity: {
version: "0.8.17",
settings: {
optimizer: {
enabled: true,
runs: 200
}
}
},
networks: {
sepolia: {
url: secrets.INFURA_SEPOLIA_URL,
accounts: [secrets.PRIVATE_KEY],
allowUnlimitedContractSize: true,
},
goerli: {
url: secrets.INFURA_GOERLI_URL,
accounts: [secrets.PRIVATE_KEY],
allowUnlimitedContractSize: true,
},
development: {
url: "http://127.0.0.1:8545",
allowUnlimitedContractSize: true,
chainId: 31337
},
},
etherscan: {
apiKey: secrets.ETHERSCAN_KEY
},
};
export default config;