Aligned Layer
It's a proof verification layer developed on top of the EigenLayer using restaking and proof aggregation. This will enable cost-effective verification of any SNARK proof, leveraging Ethereum validator
Services
Block Height: 689866
Size: 36.02 GB
WASM: Yes
Indexer: null
Pruning: 100/0/10
File Name: latest.tar.lz4
Time: Thu May 16 23:06:03 UTC 2024
URL: https://krews.xyz/snapshots/alignedlayer/latest.tar.lz4
sudo systemctl stop alignedlayerd
cp $HOME/.alignedlayer/data/priv_validator_state.json $HOME/.alignedlayer/priv_validator_state.json.backup
rm -rf $HOME/.alignedlayer/data
curl https://krews.xyz/snapshots/alignedlayer/latest.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.alignedlayer
mv $HOME/.alignedlayer/priv_validator_state.json.backup $HOME/.alignedlayer/data/priv_validator_state.json
sudo systemctl restart alignedlayerd && sudo journalctl -u alignedlayerd -f -o cat
PEERS="2567ea5aed4bba4e3062a1072a8f1e7fb4e4497c@tcp://0.0.0.0:26656,51ca4087558ebe93a16e3f1e84a969d30e7a91f1@tcp://0.0.0.0:26656,46965e9f5b120c4b582aeb7a3d66c1c2d39178cb@tcp://0.0.0.0:26656,5f0e7fbfef5865c15be8d564f4b11f56abecc501@tcp://0.0.0.0:26656,62c55f50182c1577349b65130addb22990b45e36@tcp://0.0.0.0:5456,08593abdc72074191faada845b90d1ff3cc5e49d@94.72.101.125:656,d450305fb5b41c35ed6a16bca8539cc0d936d1d7@109.199.100.228:26656,bc8ed29cafd54f3c783024e8839db00063dd3772@tcp://0.0.0.0:5456,251945ba50af8b2ff3d7bcc277ef4e1b141884f9@tcp://0.0.0.0:5456,cb2e7deaf3d9a4e8739a64ac621ab23b3f711adb@tcp://0.0.0.0:26656"
sed -i 's|^persistent_peers *=.*|persistent_peers = "'$PEERS'"|' $HOME/.alignedlayer/config/config.toml
25ed2cb891b05bd5a28725cd19df601360b7cfdb@alignedlayer-seed.krews.xyz:24256
sudo systemctl stop alignedlayerd
SNAP_RPC="https://alignedlayer-rpc.krews.xyz:443"
cp $HOME/.alignedlayer/data/priv_validator_state.json $HOME/.alignedlayer/priv_validator_state.json.backup
alignedlayerd tendermint unsafe-reset-all --home ~/.alignedlayer/ --keep-addr-book
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 2000)); \
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash)
echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH
sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ; \
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"|" ~/.alignedlayer/config/config.toml
more ~/.alignedlayer/config/config.toml | grep 'rpc_servers'
more ~/.alignedlayer/config/config.toml | grep 'trust_height'
more ~/.alignedlayer/config/config.toml | grep 'trust_hash'
sudo mv $HOME/.alignedlayer/priv_validator_state.json.backup $HOME/.alignedlayer/data/priv_validator_state.json
sudo systemctl restart alignedlayerd && journalctl -u alignedlayerd -f -o cat
curl -Ls https://krews.xyz/snapshots/data/alignedlayer/genesis.json > $HOME/.alignedlayer/config/genesis.json
curl -Ls https://krews.xyz/snapshots/data/alignedlayer/addrbook.json > $HOME/.alignedlayer/config/addrbook.json
Useful Commands
Reload service configuration
sudo systemctl daemon-reload
Enable service
sudo systemctl enable alignedlayerd
Disable service
sudo systemctl disable alignedlayerd
Start service
sudo systemctl start alignedlayerd
Stop service
sudo systemctl stop alignedlayerd
Restart service
sudo systemctl restart alignedlayerd
Check service status
sudo systemctl status alignedlayerd
Check service logs
sudo journalctl -u alignedlayerd -f --no-hostname -o cat
Check Logs
sudo journalctl -fu alignedlayerd
Check service status
sudo systemctl status alignedlayerd
Start service
sudo systemctl start alignedlayerd
Stop service
sudo systemctl stop alignedlayerd
Restart service
sudo systemctl restart alignedlayerd
Disable service
sudo systemctl disable alignedlayerd
Node Sync info
alignedlayerd status | jq
Node Version
alignedlayerd version
Show Node Peer
echo $(alignedlayerd tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.alignedlayerd/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
Delete node
sudo systemctl stop alignedlayerd
sudo systemctl disable alignedlayerd
sudo rm -rf /etc/systemd/system/alignedlayerd.service
sudo rm $(which alignedlayerd)
sudo rm -rf $HOME/.alignedlayerd
sed -i "/ALIGNEDLAYER_/d" $HOME/.bash_profile
Upgrade Node
cd $HOME
rm -rf aligned_layer_tendermint
git clone https://github.com/yetanotherco/aligned_layer_tendermint.git
cd aligned_layer_tendermint
git fetch
git checkout v0.1.0
make build-linux
sudo systemctl restart alignedlayerd && sudo journalctl -fu alignedlayerd
Create new validator
alignedlayerd tx staking create-validator \
--amount 1000000stake \
--pubkey $(alignedlayerd tendermint show-validator) \
--moniker "YOUR_MONIKER" \
--identity "YOUR_KEYBASE_ID" \
--details "YOUR_DETAILS" \
--website "YOUR_WEBSITE_URL" \
--chain-id alignedlayer \
--commission-rate 0.05 \
--commission-max-rate 0.10 \
--commission-max-change-rate 0.05 \
--min-self-delegation 1 \
--from wallet \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0stake \
-y
Edit existing validator
alignedlayerd tx staking edit-validator \
--new-moniker "YOUR_MONIKER" \
--identity "YOUR_KEYBASE_ID" \
--details "YOUR_DETAILS" \
--website "YOUR_WEBSITE_URL" \
--chain-id alignedlayer \
--commission-rate 0.05 \
--from wallet \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0stake \
-y
Unjail validator
alignedlayerd tx slashing unjail \
--from wallet \
--chain-id alignedlayer \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0stake \
-y
Validator info:
alignedlayerd status 2>&1 | jq .validator_info
Validator details:
alignedlayerd q staking validator $(alignedlayerd keys show wallet --bech val -a)
Slashing info:
alignedlayerd q slashing signing-info $(alignedlayerd tendermint show-validator)
Slashing network paramters:
alignedlayerd q slashing params
Unjail validator:
alignedlayerd tx slashing unjail --from wallet --chain-id alignedlayer --fees 50stake -y
Active validators list:
alignedlayerd q staking validators -oj --limit=2000 | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " " + .description.moniker' | sort -gr | nl
Check validator key:
[[ $(alignedlayerd q staking validator $VALOPER_ADDRESS -oj | jq -r .consensus_pubkey.key) = $(alignedlayerd status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "Your key status is ok" || echo -e "Your key status is error"
Signing info:
alignedlayerd q slashing signing-info $(alignedlayerd tendermint show-validator)
Add new wallet:
alignedlayerd keys add wallet
Recover a wallet:
alignedlayerd keys add wallet --recover
List all wallets:
alignedlayerd keys list
Get wallet balance:
alignedlayerd q bank balances $(alignedlayerd keys show $ALIGNEDLAYER_WALLET -a)
Export key (save to wallet.backup):
alignedlayerd keys export wallet
Import key (restore from wallet.backup):
alignedlayerd keys import wallet wallet.backup
Get aallet address:
alignedlayerd keys show wallet -a
Get validator address:
alignedlayerd keys show wallet --bech val -a
Get vonsensus address:
alignedlayerd tendermint show-address
Check your balance:
alignedlayerd query bank balances $(alignedlayerd keys show wallet -a)
Delegate to your Validator:
alignedlayerd tx staking delegate $(alignedlayerd keys show wallet --bech val -a) 1000000stake --from wallet --chain-id alignedlayer --fees 50stake -y
Delegate to another Validator:
alignedlayerd tx staking delegate TO_VALOPER_ADDRESS 1000000stake --from wallet --chain-id alignedlayer --fees 50stake -y
Get Current Delegations:
alignedlayerd query staking delegations $(alignedlayerd keys show wallet -a)
Re-delegate to another Validator:
alignedlayerd tx staking redelegate $VALOPER_ADDRESS TO_VALOPER_ADDRESS 1000000stake --from wallet --chain-id alignedlayer --fees 50stake -y
Unbound:
alignedlayerd tx staking unbond $(alignedlayerd keys show wallet --bech val -a) 1000000stake --from wallet --chain-id alignedlayer --fees 50stake -y
Transfer Funds:
alignedlayerd tx bank send wallet TO_WALLET_ADDRESS 1000000stake --from wallet --chain-id alignedlayer --fees 50stake -y
Withdraw all rewards:
alignedlayerd tx distribution withdraw-all-rewards --from wallet --chain-id alignedlayer --fees 50stake
Withdraw rewards and commission from your validator:
alignedlayerd tx distribution withdraw-rewards $VALOPER_ADDRESS --from wallet --commission --chain-id alignedlayer --fees 50stake
Last updated
Was this helpful?