Created
April 18, 2020 01:48
-
-
Save rfikki/0c13dc0a581d9fe7ce1ed984171ffbe6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Generate state: | |
bazel run //tools/genesis-state-gen --define=ssz=mainnet -- \ | |
--num-validators=64 \ | |
--output-ssz=/tmp/genesis.ssz \ | |
--mainnet-config | |
BN1: | |
bazel run //beacon-chain --define ssz=mainnet -- \ | |
--http-web3provider \ | |
--web3provider \ | |
--no-custom-config \ | |
--bootstrap-node= \ | |
--custom-genesis-delay=12 \ | |
--datadir /tmp/chaindata \ | |
--force-clear-db \ | |
--interop-genesis-state /tmp/genesis.ssz \ | |
--interop-eth1data-votes \ | |
--min-sync-peers=0 \ | |
--enable-discv5 \ | |
--enable-dynamic-committee-subnets --pprof --grpc-gateway-port 6000 | |
VC1: | |
bazel run //validator --define=ssz=mainnet -- --no-custom-config --keymanager=interop --keymanageropts='{"keys":64,"offset":0}' --disable-protect-attester --disable-protect-propose | |
BN2: | |
bazel run //beacon-chain --define ssz=mainnet -- \ | |
--web3provider \ | |
--peer=enr:-LK4QEb0tt7w_hqd3OXoHPWcBJUwg96ojjJcKc6y6BKW43owJ4GHTP6BzvzjJhPPTQpjkDzhQcVqlbe_1qP-lP1Iiw0Bh2F0dG5ldHOIAAAAAAAAAACEZXRoMpDF96I2AAAAAP__________gmlkgnY0gmlwhMCoANWJc2VjcDI1NmsxoQNPDIXZT6Gsfy4qAsTGNCCB7kLdzFbRuyQzYvgFBTggxoN0Y3CCMsiDdWRwgi7g \ | |
--force-clear-db \ | |
--no-custom-config \ | |
--custom-genesis-delay 12 \ | |
--interop-genesis-state /tmp/genesis.ssz \ | |
--datadir /tmp/chaindata2 \ | |
--min-sync-peers=0 \ | |
--enable-discv5 \ | |
--enable-dynamic-committee-subnets \ | |
--p2p-udp-port 14332 \ | |
--p2p-tcp-port 14331 \ | |
--monitoring-port 8081 \ | |
--enable-initial-sync-queue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment