Loyal
Guide Loyal Testnet
Twitter BeritaCryptoo
Telegram BeritaCryptoo
Discord BeritaCryptoo

Official Link
Explorer
Spesifikasi Minimal
3x CPU; the higher the clock speed the better
4GB of RAM
80GB Disk
Automatic Setup
wget -O loyal.sh https://raw.githubusercontent.com/Megumiiiiii/Loyal-Testnet/main/loyal.sh && chmod +x loyal.sh && ./loyal.shCek Sync
loyald status 2>&1 | jq .SyncInfoCreate Wallet
loyald keys add $LYL_WALLET Restore Wallet
loyald keys add $LYL_WALLET --recoverList Wallet
loyald keys listExport Variable ( Optional )
LYL_WALLET_ADDRESS=$(loyald keys show $LYL_WALLET -a)
LYL_VALOPER_ADDRESS=$(loyald keys show $LYL_WALLET --bech val -a)
echo 'export LYL_WALLET_ADDRESS='${LYL_WALLET_ADDRESS} >> $HOME/.bash_profile
echo 'export LYL_VALOPER_ADDRESS='${LYL_VALOPER_ADDRESS} >> $HOME/.bash_profile
source $HOME/.bash_profileCek Saldo
loyald query bank balances $LYL_WALLET_ADDRESSFaucet
Ambil di web pake keplr WEB
Register akun baru, masuk ke profil, get 7LYL
Create Validator
loyald tx staking create-validator \
--amount 1000000ulyl \
--from $LYL_WALLET \
--identity ABOGOBOGAAEZAKMI \
--website "https://t.me/BeritaCryptoo" \
--details="Apa yang sedang Anda pikirkan" \
--commission-max-change-rate "0.01" \
--commission-max-rate "0.2" \
--commission-rate "0.08" \
--min-self-delegation "1" \
--pubkey $(loyald tendermint show-validator) \
--moniker $LYL_NODENAME \
--fees 5000ulyl \
--chain-id loyal-1
Useful Command
Identity Validator : https://mirror.xyz/megumii.eth/Rg86BWkUDFYL23lJZYkjTcpaEBsq2keJz_YfrC1z8sc
Seputar Services
Cek Logs:
journalctl -fu loyald -o catStart Service:
systemctl start loyaldStop Service:
systemctl stop loyaldRestart Service:
systemctl restart loyaldCek Node
Status Sinkronasi:
loyald status 2>&1 | jq .SyncInfoValidator Info:
loyald status 2>&1 | jq .ValidatorInfoNode Info:
loyald status 2>&1 | jq .NodeInfoCek Node ID:
loyald tendermint show-node-idWallet
Cek List Wallet:
loyald keys listImport Wallet:
loyald keys add $LYL_WALLET --recoverDelete Wallet:
loyald keys delete $LYL_WALLETCek Saldo:
loyald query bank balances $LYL_WALLET_ADDRESSMelihat Private Key
loyald keys export $LYL_WALLET --unarmored-hex --unsafeTransfer:
loyald tx bank send $LYL_WALLET_ADDRESS <TO_WALLET_ADDRESS> 10000000ulyl --fees=5000ulylVote Proposal
loyald tx gov vote 1 yes --from $LYL_WALLET --chain-id=$LYL_IDStake, Delegate, Rewards
Delegate:
loyald tx staking delegate $LYL_VALOPER_ADDRESS 10000000ulyl --from=$LYL_WALLET --chain-id=$LYL_ID --gas=auto --fees 5000ulylPindah Validator:
loyald tx staking redelegate <srcValidatorAddress> <destValidatorAddress> 10000000ulyl --from=$LYL_WALLET --chain-id=$LYL_ID --gas=auto --fees 5000ulylWithdraw rewards stake + komisi:
loyald tx distribution withdraw-all-rewards --from=$LYL_WALLET --chain-id=$LYL_ID --gas=auto --fees 5000ulylWithdraw rewards stake:
loyald tx distribution withdraw-rewards $LYL_VALOPER_ADDRESS --from=$LYL_WALLET --commission --chain-id=$LYL_IDMerubah Node
Edit Validator:
loyald tx staking edit-validator \
--moniker=NEWNODENAME \
--chain-id=$LYL_ID \
--from=$LYL_WALLETUnjail:
loyald tx slashing unjail \
--broadcast-mode=block \
--from=$LYL_WALLET \
--chain-id=$LYL_ID \
--gas=auto \
--fees 250ulylDelete Node:
sudo systemctl stop loyald
sudo systemctl disable loyald
sudo rm /etc/systemd/system/loyald* -rf
sudo rm $(which loyald) -rf
sudo rm $HOME/.loyal* -rf
sudo rm $HOME/loyal* -rf
sed -i '/LYL_/d' ~/.bash_profileLast updated