π AlignedLayer
Aligned layer Accelerate the roadmap of Ethereum by making proof verification faster and cheaper. If you have a proof we can verify it for 10% of the cost.
Info
https://twitter.com/alignedlayer https://discord.gg/alignedlayer
Public Endpoints
Explorer
https://explorer.validator247.com/Aligned-Layer-Testnet/staking
Manual Installation
Make sure you have the latest Go build and system components installed
Install Node
cd $HOME
rm -rf $HOME/aligned_layer_tendermint && git clone --depth 1 --branch v0.0.2 https://github.com/yetanotherco/aligned_layer_tendermint && cd
$HOME/aligned_layer_tendermint/cmd/alignedlayerd && go build
chmod +x alignedlayerd
sudo mv alignedlayerd /usr/local/bin/
cd $HOME
alignedlayerd version
Initialize Node:
alignedlayerd init NodeName --chain-id alignedlayer
Download Genesis & Download addrbook
wget https://raw.githubusercontent.com/Validator247/Aligned-Layer-Guide_Node/main/addrbook.json
wget https://raw.githubusercontent.com/Validator247/Aligned-Layer-Guide_Node/main/genesis.json
Seed & Peer
[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656
STAKETAB_PEER=dc2011a64fc5f888a3e575f84ecb680194307b56@148.251.235.130:20656
sed -i -e 's|^persistent_peers *=.*|persistent_peers = "'$STAKETAB_PEER','$PEERS'"|' $HOME/.alignedlayer/config/config.toml
sed -i -e 's|^seeds *=.*|seeds = "'$SEEDS'"|' $HOME/.alignedlayer/config/config.toml
Mini Gas
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0.0001stake\"|" $HOME/.alignedlayer/config/app.toml
Create Service
sudo tee /etc/systemd/system/alignedlayerd.service > /dev/null <<EOF
[Unit]
Description=alignedlayerd
After=network-online.target
[Service]
User=root
ExecStart=$(which alignedlayerd) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
cd $HOME
curl -L https://snap.nodex.one/alignedlayer-testnet/alignedlayer-latest.tar.lz4 | tar -Ilz4 -xf - -C $HOME/.alignedlayer
cd $HOME
sudo systemctl daemon-reload
sudo systemctl enable alignedlayerd
Launch Node
sudo systemctl restart alignedlayerd
sudo journalctl -u alignedlayerd -f -o cat
Here you wait after synchronization is complete, Proceed to create wallet - faucet - Create validator.
Good luck !
Last updated