-
Notifications
You must be signed in to change notification settings - Fork 112
/
hardhat.config.ts
79 lines (73 loc) · 1.6 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
/* eslint-disable import/no-extraneous-dependencies */
import '@nomiclabs/hardhat-ethers'
import 'dotenv/config'
import 'hardhat-deploy'
import { resolve } from 'path'
import { HardhatUserConfig } from 'hardhat/config'
const ensContractsPath = './node_modules/@ensdomains/ens-contracts'
console.log(resolve(ensContractsPath, 'artifacts'))
const config: HardhatUserConfig = {
solidity: {
compilers: [
{
version: '0.8.13',
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
],
},
defaultNetwork: 'localhost',
networks: {
hardhat: {
saveDeployments: false,
chainId: 1337,
accounts: {
mnemonic: process.env.SECRET_WORDS!,
},
live: false,
tags: ['test', 'legacy', 'use_root'],
},
localhost: {
saveDeployments: false,
url: 'http://localhost:8545',
chainId: 1337,
accounts: {
mnemonic: process.env.SECRET_WORDS!,
},
live: false,
tags: ['test', 'legacy', 'use_root'],
},
},
// namedAccounts: {
// deployer: {
// default: '0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266',
// },
// },
namedAccounts: {
deployer: {
default: 0,
},
owner: {
default: 1,
},
owner2: {
default: 2,
},
},
external: {
contracts: [
{
artifacts: [
resolve(ensContractsPath, 'artifacts'),
resolve(ensContractsPath, './deployments/archive'),
],
deploy: resolve(ensContractsPath, './build/deploy'),
},
],
},
}
export default config