Warden Protocol
Next-gen Modular L1 Blockchain Infrastructure for Omnichain Applications
Services
Block Height:
Size: 13.99 GB
WASM: Yes
Indexer: null
Pruning: 100/0/10
File Name: latest.tar.lz4
Time: Tue May 28 10:00:55 UTC 2024
URL: https://krews.xyz/snapshots/warden/latest.tar.lz4
sudo systemctl stop wardend
cp $HOME/.warden/data/priv_validator_state.json $HOME/.warden/priv_validator_state.json.backup
rm -rf $HOME/.warden/data
curl https://krews.xyz/snapshots/warden/latest.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.warden
mv $HOME/.warden/priv_validator_state.json.backup $HOME/.warden/data/priv_validator_state.json
sudo systemctl restart wardend && sudo journalctl -u wardend -f -o cat
PEERS="7e9adbd0a34fcab219c3a818a022248c575f622b@65.108.227.207:16656,33e4e172bded1867976d953c932689e138788246@tcp://0.0.0.0:11256,dc0122e37c203dec43306430a1f1879650653479@37.27.97.16:26656,6a4f5b991c321efb12188c126f115d73f4ebf885@95.217.116.103:36656,eee54c85c14748f7793738fadbc747ed1511efac@176.9.58.5:46656,bb6b86a92c92165a1a8131e40e861a3a8eb19975@tcp://0.0.0.0:11256,e4b0d04cb775891914dc10ff98586b31643bdfb7@95.216.7.84:29656,aa59909de26202791f252365b6d62fdd766e11df@163.172.64.81:26656,ae9de91c2236be4b8e6c29097199a3f2218d82c4@tcp://0.0.0.0:26656,db6947c73751a64b81360e2487c85c54ec0c81a5@81.17.97.89:656"
sed -i 's|^persistent_peers *=.*|persistent_peers = "'$PEERS'"|' $HOME/.warden/config/config.toml
25ed2cb891b05bd5a28725cd19df601360b7cfdb@warden-seed.krews.xyz:11256
sudo systemctl stop wardend
SNAP_RPC="https://warden-rpc.krews.xyz:443"
cp $HOME/.warden/data/priv_validator_state.json $HOME/.warden/priv_validator_state.json.backup
wardend tendermint unsafe-reset-all --home ~/.warden/ --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\"|" ~/.warden/config/config.toml
more ~/.warden/config/config.toml | grep 'rpc_servers'
more ~/.warden/config/config.toml | grep 'trust_height'
more ~/.warden/config/config.toml | grep 'trust_hash'
sudo mv $HOME/.warden/priv_validator_state.json.backup $HOME/.warden/data/priv_validator_state.json
sudo systemctl restart wardend && journalctl -u wardend -f -o cat
curl -Ls https://krews.xyz/snapshots/data/warden/genesis.json > $HOME/.warden/config/genesis.json
curl -Ls https://krews.xyz/snapshots/data/warden/addrbook.json > $HOME/.warden/config/addrbook.json
Useful Commands
Reload service configuration
sudo systemctl daemon-reload
Enable service
sudo systemctl enable wardend
Disable service
sudo systemctl disable wardend
Start service
sudo systemctl start wardend
Stop service
sudo systemctl stop wardend
Restart service
sudo systemctl restart wardend
Check service status
sudo systemctl status wardend
Check service logs
sudo journalctl -u wardend -f --no-hostname -o cat
Check Logs
sudo journalctl -fu wardend
Check service status
sudo systemctl status wardend
Start service
sudo systemctl start wardend
Stop service
sudo systemctl stop wardend
Restart service
sudo systemctl restart wardend
Disable service
sudo systemctl disable wardend
Node Sync info
wardend status | jq
Node Version
wardend version
Show Node Peer
echo $(wardend tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.warden/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
Delete node
sudo systemctl stop wardend
sudo systemctl disable wardend
sudo rm -rf /etc/systemd/system/wardend.service
sudo rm $(which wardend)
sudo rm -rf $HOME/.warden
sed -i "/WARDEN_/d" $HOME/.bash_profile
Upgrade Node
cd $HOME
rm -rf wardenprotocol
git clone --depth 1 -b v0.3.0 https://github.com/warden-protocol/wardenprotocol/
cd wardenprotocol/cmd/wardend
git fetch
git checkout v0.3.0
go build
sudo mv wardend $HOME/go/bin
sudo systemctl restart wardend && sudo journalctl -fu wardend
Create new validator
wardend tx staking create-validator \
--amount 1000000uward \
--pubkey $(wardend tendermint show-validator) \
--moniker "YOUR_MONIKER" \
--identity "YOUR_KEYBASE_ID" \
--details "YOUR_DETAILS" \
--website "YOUR_WEBSITE_URL" \
--chain-id buenavista-1 \
--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 0uward \
-y
Edit existing validator
wardend tx staking edit-validator \
--new-moniker "YOUR_MONIKER" \
--identity "YOUR_KEYBASE_ID" \
--details "YOUR_DETAILS" \
--website "YOUR_WEBSITE_URL" \
--chain-id buenavista-1 \
--commission-rate 0.05 \
--from wallet \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0uward \
-y
Unjail validator
wardend tx slashing unjail \
--from wallet \
--chain-id buenavista-1 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0uward \
-y
jail reason
wardend query slashing signing-info $(wardend tendermint show-validator)
List all active validators
wardend q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nl
List all inactive validators
wardend q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_UNBONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nl
View validator details
wardend q staking validator $(wardend keys show wallet --bech val -a)
Add new key
wardend keys add wallet
Recover existing key
wardend keys add wallet --recover
List all keys
wardend keys list
Delete key
wardend keys delete wallet
Export key to a file
wardend keys export wallet
Import key from a file
wardend keys import wallet wallet.backup
Query wallet balance
wardend q bank balances $(wardend keys show wallet -a)
Withdraw rewards from all validators
wardend tx distribution withdraw-all-rewards --from wallet --chain-id buenavista-1 --gas-adjustment 1.4 --gas auto --gas-prices 0uward -y
Withdraw commission and rewards from your validator
wardend tx distribution withdraw-rewards $(wardend keys show wallet --bech val -a) --commission --from wallet --chain-id buenavista-1 --gas-adjustment 1.4 --gas auto --gas-prices 0uward -y
Delegate tokens to yourself
wardend tx staking delegate $(wardend keys show wallet --bech val -a) 1000000uward --from wallet --chain-id buenavista-1 --gas-adjustment 1.4 --gas auto --gas-prices 0uward -y
Delegate tokens to validator
wardend tx staking delegate <TO_VALOPER_ADDRESS> 1000000uward --from wallet --chain-id buenavista-1 --gas-adjustment 1.4 --gas auto --gas-prices 0uward -y
Redelegate tokens to another validator
wardend tx staking redelegate $(wardend keys show wallet --bech val -a) <TO_VALOPER_ADDRESS> 1000000uward --from wallet --chain-id buenavista-1 --gas-adjustment 1.4 --gas auto --gas-prices 0uward -y
Unbond tokens from your validator
wardend tx staking unbond $(wardend keys show wallet --bech val -a) 1000000uward --from wallet --chain-id buenavista-1 --gas-adjustment 1.4 --gas auto --gas-prices 0uward -y
Send tokens to the wallet
wardend tx bank send wallet <TO_WALLET_ADDRESS> 1000000uward --from wallet --chain-id buenavista-1 --gas-adjustment 1.4 --gas auto --gas-prices 0uward -y
List all proposals
wardend query gov proposals
View proposal by id
wardend query gov proposal 1
Vote ‘yes’
wardend tx gov vote 1 yes --from wallet --chain-id buenavista-1 --gas-adjustment 1.4 --gas auto --gas-prices 0uward -y
Vote ‘no’
wardend tx gov vote 1 no --from wallet --chain-id buenavista-1 --gas-adjustment 1.4 --gas auto --gas-prices 0uward -y
Vote ‘abstain’
wardend tx gov vote 1 abstain --from wallet --chain-id buenavista-1 --gas-adjustment 1.4 --gas auto --gas-prices 0uward -y
Vote ‘nowithveto’
wardend tx gov vote 1 NoWithVeto --from wallet --chain-id buenavista-1 --gas-adjustment 1.4 --gas auto --gas-prices 0uward -y
Last updated
Was this helpful?