-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
635ae66
commit 04ff2d9
Showing
3 changed files
with
62 additions
and
23 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
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,37 @@ | ||
# Run the Prysm beacon node | ||
./beacon-chain --datadir beacondata \ | ||
--min-sync-peers 0 \ | ||
--genesis-state genesis.ssz \ | ||
--bootstrap-node= \ | ||
--interop-eth1data-votes \ | ||
--chain-config-file config.yml \ | ||
--contract-deployment-block 0 \ | ||
--chain-id 32382 \ | ||
--rpc-host=127.0.0.1 \ | ||
--rpc-port=4000 \ | ||
--accept-terms-of-use \ | ||
--jwt-secret jwt.hex \ | ||
--suggested-fee-recipient 0x123463a4B065722E99115D6c222f267d9cABb524 \ | ||
--minimum-peers-per-subnet 0 \ | ||
--enable-debug-rpc-endpoints \ | ||
--verbosity=debug \ | ||
--execution-endpoint gethdata/geth.ipc > "${prysm_logs}"/beacon-chain.log 2>&1 & | ||
|
||
#1run Prysm validator client | ||
./validator --beacon-rpc-provider=localhost:4000 \ | ||
--datadir validatordata \ | ||
--accept-terms-of-use \ | ||
--interop-num-validators 64 \ | ||
--chain-config-file config.yml > "${prysm_logs}"/validator.log 2>&1 & | ||
|
||
# run go-ethereum | ||
./geth --http \ | ||
--http.api eth,net,web3 \ | ||
--ws --ws.api eth,net,web3 \ | ||
--authrpc.jwtsecret jwt.hex \ | ||
--datadir gethdata \ | ||
--nodiscover \ | ||
--syncmode full \ | ||
--allow-insecure-unlock \ | ||
--unlock 0x123463a4b065722e99115d6c222f267d9cabb524 \ | ||
--password ./password.txt > "${prysm_logs}"/geth.log 2>&1 & |