File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -36,9 +36,15 @@ module.exports = {
36
36
optimistBaseUrl : `http://${ process . env . OPTIMIST_HOST } :${ process . env . OPTIMIST_HTTP_PORT } ` ,
37
37
optimistWsUrl : `ws://${ process . env . OPTIMIST_HOST } :${ process . env . OPTIMIST_WS_PORT } ` ,
38
38
web3WsUrl : `ws://${ process . env . BLOCKCHAIN_WS_HOST } :${ process . env . BLOCKCHAIN_PORT } ` ,
39
- userEthereumSigningKey : '0x4775af73d6dc84a0ae76f8726bda4b9ecf187c377229cb39e1afa7a18236a69e' ,
40
- zkpMnemonic : 'hurt labor ketchup seven scan swap dirt brown brush path goat together' ,
41
- proposerEthereumSigningKey : '0x4775af73d6dc84a0ae76f8726bda4b9ecf187c377229cb39e1afa7a18236a69d' ,
39
+ userEthereumSigningKey :
40
+ process . env . userEthereumSigningKey ||
41
+ '0x4775af73d6dc84a0ae76f8726bda4b9ecf187c377229cb39e1afa7a18236a69e' ,
42
+ zkpMnemonic :
43
+ process . env . zkpMnemonic ||
44
+ 'hurt labor ketchup seven scan swap dirt brown brush path goat together' ,
45
+ proposerEthereumSigningKey :
46
+ process . env . proposerEthereumSigningKey ||
47
+ '0x4775af73d6dc84a0ae76f8726bda4b9ecf187c377229cb39e1afa7a18236a69d' ,
42
48
WEB3_OPTIONS : {
43
49
gas : process . env . GAS || 1000000 ,
44
50
gasPrice : process . env . GAS_PRICE || '20000000000' ,
You can’t perform that action at this time.
0 commit comments