-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathhardhat.config.js
More file actions
149 lines (133 loc) · 5.36 KB
/
hardhat.config.js
File metadata and controls
149 lines (133 loc) · 5.36 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
const moment = require('moment');
require('@nomiclabs/hardhat-truffle5');
require('hardhat-dependency-compiler');
require('./node_modules/dxdao-contracts/scripts/deploy-dxdao-contracts');
require('./node_modules/dxdao-contracts/scripts/actions-dxdao-contracts');
require('@typechain/hardhat');
require('hardhat-ethernal');
const MNEMONIC =
'cream core pear sure dinner indoor citizen divorce sudden captain subject remember';
require('dotenv').config();
// # Accounts
// # ========
// # Account #0: 0x9578e973bba0cc33bdbc93c7f77bb3fe6d47d68a (10000 ETH)
// # Private Key #0: 0x2edaf5755c340d57c68ab5c084a0afd867caafcbcf556838f404468e2ad0ea94
// # Account #1: 0xc5b20ade9c9cd5e0cc087c62b26b815a4bc1881f (10000 ETH)
// # Private Key #1: 0x40126ad770c1ff59937436ddab2872193c01d5353213d297fdb0ea2c13b5981e
// # Account #2: 0xaf8eb8c3a5d9d900aa0b98e3df0bcc17d3c5f698 (10000 ETH)
// # Private Key #2: 0x4db6b61624bd4a9bf87ff59e7fca0991b02ff605664a3ad97dc237c84ba0e013
// # Account #3: 0x84eeb305da0a4309a696d43de9f79f04e66eb4f8 (10000 ETH)
// # Private Key #3: 0x6d8b1b46346a00fec52fd0e2edba75592e8814b11aec5815ec0f6b882e072131
// # Account #4: 0x1b929bdde0fb3b7b759696f23d6cac0963d326e6 (10000 ETH)
// # Private Key #4: 0x19ea21f217094f12da6bab83fe697f902caea0dcf5a2914d7c000b73938f7d85
// # Account #5: 0xd507743abcdb265f5fcef125e3f6cf7250cfe9da (10000 ETH)
// # Private Key #5: 0x6a944885ff4551fd546c59a2322a967af9906f596f60ecd110505c278f464f6e
// # Account #6: 0x9af7a0d34fcf09a735ddaa03adc825398a6557ae (10000 ETH)
// # Private Key #6: 0x4299ee99407089bfc51e829734c0f6c1b366f515d5ddb5ece4f880a2f8fd430c
// # Account #7: 0x2154cdc3632db21a2635819afa450f2dda08aebd (10000 ETH)
// # Private Key #7: 0x0e7ee7881e497062427ed392d310f09ca993fa964040c751cc383c10f55efc7c
// # Account #8: 0x73c8825893ba6b197f883f60a20b4926c0f32a2c (10000 ETH)
// # Private Key #8: 0xd84954f2cea66fd01a872496f25ddb86db79ee81366609fbcff8087c9739b63a
// # Account #9: 0x73d2888f96bc0eb530490ca5342d0c274d95654d (10000 ETH)
// # Private Key #9: 0xd20a2f6a6656d291ca4c4e6121b479db81b3b281e64707ff4a068acf549dc03c
// # Account #10: 0xf8a3681248934f1139be67e0c22a6af450eb9d7c (10000 ETH)
// # Private Key #10: 0x8188d555d06262bfa3a343fa809b59b6368f02aa5a1ac5a3d2cb24e18e2b556e
const INFURA_API_KEY = process.env.REACT_APP_KEY_INFURA_API_KEY;
const ALCHEMY_API_KEY = process.env.REACT_APP_KEY_ALCHEMY_API_KEY || '';
module.exports = {
paths: {
sources: './src', // Use src folder instead of contracts to avoid having empty contracts folder
},
solidity: {
compilers: [
{
version: '0.5.17',
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
{
version: '0.7.6',
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
{
version: '0.8.8',
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
],
},
networks: {
hardhat: {
chainId: 1337,
accounts: { mnemonic: MNEMONIC },
throwOnTransactionFailures: true,
throwOnCallFailures: true,
allowUnlimitedContractSize: false,
initialDate: moment.unix(0).toDate().toString(),
mining: {
auto: true,
interval: 5000,
},
},
mainnet: {
url:
ALCHEMY_API_KEY.length > 0
? `https://eth-mainnet.alchemyapi.io/v2/${ALCHEMY_API_KEY}`
: `https://mainnet.infura.io/v3/${INFURA_API_KEY}`,
accounts: { mnemonic: MNEMONIC },
gasLimit: 9000000,
timeout: 20000,
},
goerli: {
url:
ALCHEMY_API_KEY.length > 0
? `https://eth-goerli.alchemyapi.io/v2/${ALCHEMY_API_KEY}`
: `https://goerli.infura.io/v3/${INFURA_API_KEY}`,
accounts: { mnemonic: MNEMONIC },
gasLimit: 9000000,
gasPrice: 1000000000, // 1 gwei
},
xdai: {
url: `https://poa-xdai-archival.gateway.pokt.network/v1/lb/61b4a50ec922b9003a3a93dc`,
accounts: { mnemonic: MNEMONIC },
gasLimit: 17000000,
gasPrice: 2000000000, // 2 gwei
timeout: 60000,
},
arbitrum: {
url: `https://arb1.arbitrum.io/rpc`,
accounts: { mnemonic: MNEMONIC },
chainId: 42161,
timeout: 60000,
},
arbitrumTestnet: {
url: 'https://rinkeby.arbitrum.io/rpc',
accounts: { mnemonic: MNEMONIC },
chainId: 421611,
timeout: 60000,
},
},
ethernal: {
email: process.env.ETHERNAL_EMAIL,
password: process.env.ETHERNAL_PASSWORD,
disableSync: false, // If set to true, plugin will not sync blocks & txs
disableTrace: false, // If set to true, plugin won't trace transaction
workspace: 'localhost', // Set the workspace to use, will default to the default workspace (latest one used in the dashboard). It is also possible to set it through the ETHERNAL_WORKSPACE env variable
uploadAst: false, // If set to true, plugin will upload AST, and you'll be able to use the storage feature (longer sync time though)
disabled: !process.env.ETHERNAL_PASSWORD && !process.env.ETHERNAL_EMAIL, // If set to true, the plugin will be disabled, nohting will be synced, ethernal.push won't do anything either
resetOnStart: 'localhost', // Pass a workspace name to reset it automatically when restarting the node, note that if the workspace doesn't exist it won't error
},
};