-
Notifications
You must be signed in to change notification settings - Fork 2
/
hardhat.config.js
59 lines (55 loc) · 1.37 KB
/
hardhat.config.js
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
/**
* @type import('hardhat/config').HardhatUserConfig
*/
require('@nomiclabs/hardhat-ethers');
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
// Networks
networks: {
hardhat: {
forking: {
url: `https://eth-mainnet.alchemyapi.io/v2/${process.env.ALCHEMY_API}`,
},
},
moonbase: {
url: 'https://rpc.api.moonbase.moonbeam.network',
accounts: [process.env.PRIV_KEY],
gasPrice: 1000000000,
chainId: 1287,
},
moonriver: {
url: 'https://rpc.moonriver.moonbeam.network',
accounts: [process.env.PRIV_KEY],
gasPrice: 1000000000,
chainId: 1285,
},
moonbeam: {
url: 'https://rpc.api.moonbeam.network',
accounts: [process.env.PRIV_KEY],
gasPrice: 100000000000,
chainId: 1284,
},
},
// Solc
solidity: {
compilers: [
{
version: '0.4.19',
settings: {
optimizer: {
enabled: false,
runs: 200,
},
},
},
],
},
// Paths
paths: {
sources: './contracts',
cache: './cache',
artifacts: './artifacts',
},
};