-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.ts
82 lines (77 loc) · 1.84 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
74
75
76
77
78
79
80
81
82
import '@nomicfoundation/hardhat-toolbox'
import { HardhatUserConfig, task } from 'hardhat/config'
require('dotenv').config()
task('accounts', 'Prints the list of accounts', async (taskArgs, hre) => {
const accounts = await hre.ethers.getSigners()
for (const account of accounts) {
console.log(account.address)
}
})
const config: HardhatUserConfig = {
solidity: {
version: '0.8.24',
settings: {
optimizer: {
enabled: true,
runs: 200
}
}
},
paths: {
sources: './contracts',
tests: './test',
cache: './cache',
artifacts: './artifacts'
},
mocha: {
timeout: 40000
},
networks: {
// for hardhat local testing
hardhat: {},
// for local dev environment
localhost: {
url: 'http://localhost:8545',
accounts: [process.env.WALLET_PRIVATE_KEY as string],
gasPrice: 1000000000
},
// for testnet
base_sepolia: {
url: 'https://sepolia.base.org',
accounts: [process.env.WALLET_PRIVATE_KEY as string],
gasPrice: 1000000000
},
// for mainnet
base_mainnet: {
url: 'https://mainnet.base.org',
accounts: [process.env.WALLET_PRIVATE_KEY as string],
gasPrice: 1000000000
}
},
etherscan: {
apiKey: {
base_sepolia: process.env.ETHERSCAN_API_KEY as string,
base_mainnet: process.env.ETHERSCAN_API_KEY as string
},
customChains: [
{
network: 'base_sepolia',
chainId: 84532,
urls: {
apiURL: 'https://api-sepolia.basescan.org/api',
browserURL: 'https://sepolia.basescan.org'
}
},
{
network: 'base_mainnet',
chainId: 8453,
urls: {
apiURL: 'https://api.basescan.org/api',
browserURL: 'https://basescan.org'
}
}
]
},
defaultNetwork: 'hardhat'
}
export default config