forked from smartcontractkit/LinkToken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
81 lines (74 loc) · 2.42 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
// hardhat.config.ts
import { HardhatUserConfig, SolcConfig } from 'hardhat/types'
import { task } from 'hardhat/config'
import { TASK_COMPILE } from 'hardhat/builtin-tasks/task-names'
import { hardhat, Networks, Versions } from './src'
// plugins
import '@nomiclabs/hardhat-waffle'
import '@typechain/hardhat'
import '@nomiclabs/hardhat-waffle'
import '@eth-optimism/hardhat-ovm'
import 'hardhat-contract-sizer'
import 'hardhat-gas-reporter'
const DEFAULT_NETWORK = Networks.HARDHAT
const DEFAULT_VERSION = Versions.v0_6
// Override compile task to add custom param
task(TASK_COMPILE)
.addOptionalParam('contracts', 'The contracts version to compile.', DEFAULT_VERSION)
.setAction(async (_args, _hre, runSuper) => runSuper(_args))
const versions: Record<Versions, SolcConfig> = {
[Versions.v0_4]: { version: '0.4.16', settings: hardhat.solcSettings(200) },
[Versions.v0_6]: { version: '0.6.12', settings: hardhat.solcSettings(200) },
[Versions.v0_7]: { version: '0.7.6', settings: hardhat.solcSettings(1_000_000) },
}
// Require version exists
const versionLabel = hardhat.argv.contracts || DEFAULT_VERSION
const compiler = versions[versionLabel as Versions]
if (!compiler) throw Error(`Compiler for ${versionLabel} could not be found!`)
// Setup networks
const networks: { [key: string]: any } = {
[Networks.OPTIMISM]: {
url: 'http://127.0.0.1:8545',
ovm: true, // ensures contracts will be compiled to OVM target.
},
}
const targetNetwork = hardhat.argv.network || DEFAULT_NETWORK
const typesDir = networks[targetNetwork]?.ovm ? `types-ovm` : 'types'
const versionDir = `v${versionLabel}`
const config: HardhatUserConfig = {
defaultNetwork: DEFAULT_NETWORK,
networks,
paths: {
sources: `./contracts/${versionDir}`,
cache: './build/cache',
artifacts: './build/artifacts',
},
solidity: {
compilers: Object.values(versions),
overrides: {
...hardhat.generateOverrides(`contracts/${versionDir}/**/*.sol`, {}, compiler),
},
},
ovm: {
// Supported OVM versions: https://github.com/ethereum-optimism/solc-bin/tree/gh-pages/bin
solcVersion: compiler.version,
},
typechain: {
outDir: `./build/${typesDir}/${versionDir}`,
target: 'ethers-v5',
},
mocha: {
timeout: 5000,
},
contractSizer: {
alphaSort: true,
runOnCompile: true,
disambiguatePaths: true,
},
gasReporter: {
currency: 'USD',
gasPrice: 100,
showTimeSpent: true,
},
}
export default config