Skip to content

Instantly share code, notes, and snippets.

View golashr's full-sized avatar

Ryan Golash golashr

View GitHub Profile
@golashr
golashr / validatorsteps
Last active August 13, 2020 14:03
This gist shows the steps to create validator address
> cd ~
> curl -LO https://github.com/ethereum/eth2.0-deposit-cli/releases/download/v0.2.1/eth2deposit-cli-v0.2.1-linux-amd64.tar.gz
eth2deposit-cli-v0.2.1-linux-amd64.tar.gz 100%[========================================================================================>] 14.56M 5.47MB/s in 2.7s
2020-08-12 07:19:25 (5.47 MB/s) - 'eth2deposit-cli-v0.2.1-linux-amd64.tar.gz' saved [15271039/15271039]
-rw-r--r-- 1 root root 15M Jul 28 07:10 eth2deposit-cli-v0.2.1-linux-amd64.tar.gz
> tar -xzf eth2deposit-cli-v0.2.1-linux-amd64.tar.gz
> cd eth2deposit-cli-de03fe3-linux-amd64
-rwxr-xr-x 1 goerli lighthousebeacon 15M Jul 28 07:00 deposit
@golashr
golashr / lighthousevalidator.service
Last active August 12, 2020 13:00
This gist gives details of lighthouse validator.service
[Unit]
Description=Lighthouse Validator
After=network.target
Wants=network.target
[Service]
User=lighthousevalidator
Group=lighthousevalidator
Type=simple
Restart=always
@golashr
golashr / lighthousebeacon.service
Last active January 14, 2021 00:33
This gist gives details of Lighthouse Beacon Node service
[Unit]
Description=Lighthouse Beacon Node
After=network.target
Wants=network.target
[Service]
User=lighthousebeacon
Group=lighthousebeacon
Type=simple
Restart=always
@golashr
golashr / geth.service
Created August 12, 2020 12:48
This gist gives details of geth.service
[Unit]
Description=Ethereum go client
After=network.target
Wants=network.target
[Service]
User=goeth
Group=goeth
Type=simple
Restart=always