-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: #318 hosted geth config configured
- Loading branch information
1 parent
1e9ab91
commit 9298ae0
Showing
6 changed files
with
43 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
version: '3.5' | ||
# Use this script for running up nightfall_3 in 'ropsten' mode with local | ||
# Use it as an override file for docker-compose.yml | ||
# See the readme for more information. | ||
services: | ||
client1: | ||
environment: | ||
BLOCKCHAIN_URL: 'wss://ropsten1-ws.testnet.nightfall3.com' | ||
USE_HOSTED_GETH: 'true' | ||
AUTOSTART_RETRIES: 600 | ||
|
||
client2: | ||
environment: | ||
BLOCKCHAIN_URL: 'wss://ropsten1-ws.testnet.nightfall3.com' | ||
USE_HOSTED_GETH: 'true' | ||
AUTOSTART_RETRIES: 600 | ||
|
||
deployer: | ||
environment: | ||
# ETH_NETWORK sets the network selected by Truffle from truffle-config.js | ||
# startup routines will wait for a blockchain client to be reachable on this network | ||
ETH_NETWORK: ropsten | ||
BLOCKCHAIN_URL: 'wss://ropsten1-ws.testnet.nightfall3.com' | ||
USE_HOSTED_GETH: 'true' | ||
FROM_ADDRESS: '0x29100E7E3dA6654BF63d9E7804ADe518aCc5AaA5' | ||
ETH_PRIVATE_KEY: $ETH_PRIVATE_KEY | ||
|
||
optimist1: | ||
environment: | ||
BLOCKCHAIN_URL: 'wss://ropsten1-ws.testnet.nightfall3.com' | ||
USE_HOSTED_GETH: 'true' | ||
AUTOSTART_RETRIES: 600 | ||
|
||
optimist2: | ||
environment: | ||
BLOCKCHAIN_URL: 'wss://ropsten1-ws.testnet.nightfall3.com' | ||
USE_HOSTED_GETH: 'true' | ||
AUTOSTART_RETRIES: 600 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,4 +45,4 @@ module.exports = function (deployer, _, accounts) { | |
} | ||
} | ||
}); | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters