Skip to content

Commit 8967957

Browse files
committed
fix: externalise test keys
1 parent 9dc599a commit 8967957

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

‎config/default.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,15 @@ module.exports = {
3636
optimistBaseUrl: `http://${process.env.OPTIMIST_HOST}:${process.env.OPTIMIST_HTTP_PORT}`,
3737
optimistWsUrl: `ws://${process.env.OPTIMIST_HOST}:${process.env.OPTIMIST_WS_PORT}`,
3838
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',
4248
WEB3_OPTIONS: {
4349
gas: process.env.GAS || 1000000,
4450
gasPrice: process.env.GAS_PRICE || '20000000000',

0 commit comments

Comments
 (0)