Prerequisites
Begin by updating all packages currently installed on your system
Update The System:
Copy sudo apt update && sudo apt upgrade
Dependent Packages
You need to have the following packages installed: git
, make
, go
, gcc
You can check if a package is installed by running the command, followed by --version
Example: git --version
Install Prerequisites:
If any of the packages are not installed, you can install using the following commands:
sudo apt install git
sudo apt install make
sudo apt install golang-go
Once all 4 packages are installed, you can continue with the installation.
Download Merge Configuration Files:
Copy git clone https://github.com/eth-clients/merge-testnets.git
Change Directory:
Copy cd merge-testnets/kiln
Generate JSON Web Token (JWT):
Copy openssl rand -hex 32 | tr -d "\n" > "/tmp/jwtsecret"
Install Geth
Clone Geth Repository:
Copy git clone -b merge-kiln-v2 https://github.com/MariusVanDerWijden/go-ethereum.git
Change Directory:
Make Geth:
Result:
Change Directory (up one into the kiln directory):
Configure Initial State:
Copy ./go-ethereum/build/bin/geth init genesis.json --datadir "geth-datadir"
Result:
Start Geth:
Copy ./go-ethereum/build/bin/geth --datadir "geth-datadir" --override.terminaltotaldifficulty 20000000000000 --http --http.api="engine,eth,web3,net,debug" --http.corsdomain "*" --networkid=1337802 --syncmode=full --authrpc.jwtsecret=/tmp/jwtsecret --bootnodes "enode://c354db99124f0faf677ff0e75c3cbbd568b2febc186af664e0c51ac435609badedc67a18a63adb64dacc1780a28dcefebfc29b83fd1a3f4aa3c0eb161364cf94@164.92.130.5:30303" console
Result:
Next step is to generate the validator keys we will be using for Kiln.