forked from eth-infinitism/account-abstraction
-
Notifications
You must be signed in to change notification settings - Fork 1
/
hardhat.config.ts
89 lines (76 loc) · 2.36 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
83
84
85
86
87
88
89
import '@nomiclabs/hardhat-waffle'
import '@typechain/hardhat'
import { HardhatUserConfig } from 'hardhat/config'
import 'hardhat-deploy'
import '@nomiclabs/hardhat-etherscan'
import dotenv from 'dotenv';
import 'solidity-coverage'
import * as fs from 'fs'
dotenv.config();
const mnemonicFileName = process.env.MNEMONIC_FILE ?? `${process.env.HOME}/.secret/testnet-mnemonic.txt`
let mnemonic = 'test '.repeat(11) + 'junk'
if (fs.existsSync(mnemonicFileName)) { mnemonic = fs.readFileSync(mnemonicFileName, 'ascii') }
function getNetwork1 (url: string): { url: string, accounts: { mnemonic: string } } {
return {
url,
accounts: { mnemonic }
}
}
function getNetwork (name: string): { url: string, accounts: { mnemonic: string } } {
return getNetwork1(`https://${name}.infura.io/v3/${process.env.INFURA_ID}`)
// return getNetwork1(`wss://${name}.infura.io/ws/v3/${process.env.INFURA_ID}`)
}
const optimizedComilerSettings = {
version: '0.8.17',
settings: {
optimizer: { enabled: true, runs: 1000000 },
viaIR: true
}
}
// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more
const config: HardhatUserConfig = {
solidity: {
compilers: [{
version: '0.8.15',
settings: {
optimizer: { enabled: true, runs: 1000000 }
}
},
{
version: '0.6.11'
},
{
version: '0.6.2'
}
],
overrides: {
'contracts/core/EntryPoint.sol': optimizedComilerSettings,
'contracts/samples/SimpleAccount.sol': optimizedComilerSettings
}
},
networks: {
dev: { url: 'http://localhost:8545' },
// github action starts localgeth service, for gas calculations
localgeth: { url: 'http://localgeth:8545' },
goerli: getNetwork('goerli'),
sepolia: getNetwork('sepolia'),
proxy: getNetwork1('http://localhost:8545'),
polygon: getNetwork('polygon-mainnet'),
arb: getNetwork('arbitrum-mainnet'),
bsc: getNetwork1(process.env.RPC_BSC ?? `https://bsc-dataseed4.defibit.io`),
ethereum: process.env.RPC_ETHEREUM ? getNetwork1(process.env.RPC_ETHEREUM) : getNetwork('mainnet')
},
mocha: {
timeout: 10000
},
etherscan: {
apiKey: process.env.POLYGONSCAN_API_KEY
}
}
// coverage chokes on the "compilers" settings
if (process.env.COVERAGE != null) {
// @ts-ignore
config.solidity = config.solidity.compilers[0]
}
export default config