forked from ethersphere/storage-incentives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.ts
57 lines (53 loc) · 1.15 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
import 'dotenv/config';
import { HardhatUserConfig } from 'hardhat/types';
import 'solidity-coverage';
import 'hardhat-deploy';
import 'hardhat-deploy-ethers';
// Define mnemonic for accounts.
let mnemonic = process.env.MNEMONIC;
if (!mnemonic) {
// NOTE: this fallback is for development only!
// When using other networks, set the secret in .env.
// DO NOT commit or share your mnemonic with others!
mnemonic = 'test test test test test test test test test test test test';
}
const accounts = { mnemonic };
// Config for hardhat.
const config: HardhatUserConfig = {
solidity: {
version: '0.8.1',
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
// mocha: {
// timeout: 100000000
// },
namedAccounts: {
deployer: 0,
admin: 1,
stamper: 2,
oracle: 3,
},
networks: {
hardhat: {
initialBaseFeePerGas: 0,
accounts,
},
localhost: {
url: 'http://localhost:8545',
accounts,
},
staging: {
url: 'https://goerli.infura.io/v3/' + process.env.INFURA_TOKEN,
accounts,
},
},
paths: {
sources: 'src',
},
};
export default config;