3.3 KiB
Interop Scenarios
Here we demonstrate some expected interop scenarios.
All scenarios assume a working development environment and
commands are based in the target/release directory (this is the build dir for
cargo).
Additional functions can be found in the interop cheat-sheet.
Table of contents
- Starting from a
validator_count, genesis_timetuple - Starting a node from a genesis state file
- Starting a validator client
- Exporting a genesis state file from a running Lighthouse node
Start beacon node given a validator count and genesis_time
To start a brand-new beacon node (with no history) use:
$ ./beacon_node testnet -f quick 8 <GENESIS_TIME>
Where GENESIS_TIME is in unix time.
Notes:
- This method conforms the "Quick-start genesis" method in the
ethereum/eth2.0-pmrepository.- The
-fflag ignores any existing database or configuration, backing them up before re-initializing.8is the validator count and1567222226is the genesis time.- See
$ ./beacon_node testnet quick --helpfor more configuration options.
Start Beacon Node given a genesis state file
A genesis state can be read from file using the testnet file subcommand.
There are three supported formats:
ssz(default)jsonyaml
Start a new node using /tmp/genesis.ssz as the genesis state:
$ ./beacon_node testnet --spec minimal -f file ssz /tmp/genesis.ssz
Notes:
- The
-fflag ignores any existing database or configuration, backing them up before re-initializing.- See
$ ./beacon_node testnet file --helpfor more configuration options.- The
--specflag is required to allow SSZ parsing of fixed-length lists.
Start an auto-configured validator client
To start a brand-new validator client (with no history) use:
$ ./validator_client testnet -b insecure 0 8
Notes:
- The
-bflag means the validator client will "bootstrap" specs and config from the beacon node.- The
insecurecommand dictates that the interop keypairs will be used.- The
0 8indicates that this validator client should manage 8 validators, starting at validator 0 (the first deposited validator).- The validator client will try to connect to the beacon node at
localhost. See--helpto configure that address and other features.- The validator client will operate very unsafely in
testnetmode, happily swapping between chains and creating double-votes.
Exporting a genesis file
Genesis states can downloaded from a running Lighthouse node via the HTTP API. Three content-types are supported:
application/jsonapplication/yamlapplication/ssz
Using curl, a genesis state can be downloaded to /tmp/genesis.ssz:
$ curl --header "Content-Type: application/ssz" "localhost:5052/beacon/state/genesis" -o /tmp/genesis.ssz