-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhardhat.config.js
More file actions
52 lines (52 loc) · 1.06 KB
/
hardhat.config.js
File metadata and controls
52 lines (52 loc) · 1.06 KB
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
require("dotenv/config");
require("@nomicfoundation/hardhat-toolbox");
require("@nomicfoundation/hardhat-verify");
const MONAD_URL = "https://testnet-rpc.monad.xyz";
const ACCOUNTS = process.env.DEPLOYER_ACCOUNT_PRIV_KEY
? [`${process.env.DEPLOYER_ACCOUNT_PRIV_KEY}`]
: [];
module.exports = {
defaultNetwork: "hardhat",
gasReporter: {
enabled: false,
},
networks: {
hardhat: { chainId: 31337 },
monad: {
url: MONAD_URL,
accounts: ACCOUNTS,
},
},
etherscan: {
apiKey: {},
customChains: [
{
network: "monad",
chainId: 10143,
urls: {
apiURL: "https://testnet.monadexplorer.com/api",
browserURL: "https://testnet.monadexplorer.com",
},
},
],
},
sourcify: {
enabled: false,
},
solidity: {
version: "0.8.28",
settings: {
evmVersion: "paris",
optimizer: {
enabled: true,
runs: 200,
},
},
},
paths: {
sources: "./contracts",
tests: "./test",
cache: "./cache",
artifacts: "./artifacts",
},
};