Skip to content

Instantly share code, notes, and snippets.

@tbenr
Last active October 5, 2021 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tbenr/48758e83d7d154b2c97e757ccbba3103 to your computer and use it in GitHub Desktop.
Save tbenr/48758e83d7d154b2c97e757ccbba3103 to your computer and use it in GitHub Desktop.
run teku M3 tests

run teku M3 tests

build

build Teku

git clone https://github.com/ConsenSys/teku.git -b merge-interop
cd teku && ./gradlew distTar installDist

cleanup eventual old data

macos

rm -rf ~/Library/teku/

linux

rm -rf ~/.local/share/teku/

initialize genesis state

./build/install/teku/bin/teku genesis mock \
--output-file ./local-genesis.ssz \
--network=minimal \
--Xnetwork-altair-fork-epoch=0 \
--Xnetwork-merge-fork-epoch=10 \
--validator-count=256

run

./build/install/teku/bin/teku \
--eth1-endpoints=http://localhost:8545 \
--ee-fee-recipient-address=0xfe3b557e8fb62b89f4916b721be55ceb828dbd73 \
--Xinterop-enabled=true \
--Xinterop-number-of-validators=256 \
--Xinterop-owned-validator-start-index=0 \
--Xinterop-owned-validator-count=256 \
--network=minimal \
--Xnetwork-altair-fork-epoch=0 \
--Xnetwork-merge-fork-epoch=2 \
--Xnetwork-merge-total-terminal-difficulty 10000 \
--p2p-enabled=false \
--initial-state ./local-genesis.ssz \
-l DEBUG

specify eth1-endpoints, Xnetwork-merge-fork-epoch and Xnetwork-merge-total-terminal-difficulty params in accordance with execution client you are testing with

  • NOTE: use Xnetwork-merge-fork-epoch to determine when teku start following the EC head (reminder: 6*32 seconds per epoch)

  • NOTE: specify Xnetwork-merge-total-terminal-difficulty in decimal format

  • NOTE: if your EE expose engine APIs on a different endpoint, add --ee-endpoints=http://localhost:8550

check logs

macos

tail -f  ~/Library/teku/logs/teku.log

linux

tail -f  ~/.local/share/teku/logs/teku.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment