Panduan Pengoperasian Uptick Full Node ⚙️
Berikut adalah beberapa operasi penting untuk mengelola Uptick Full Node pada jaringan. Pastikan Anda telah menggantikan variabel yang sesuai dengan nilai yang diperlukan sebelum menjalankan perintah-perintah di bawah ini.
Operasi Layanan ⚙️
1. Cek Log
sudo journalctl -u uptickd -f
2. Memulai Layanan
sudo systemctl start uptickd
3. Menghentikan Layanan
sudo systemctl stop uptickd
4. Merestart Layanan
sudo systemctl restart uptickd
5. Cek Status Layanan
sudo systemctl status uptickd
6. Memuat Ulang Layanan
sudo systemctl daemon-reload
7. Mengaktifkan Layanan
sudo systemctl enable uptickd
8. Menonaktifkan Layanan
sudo systemctl disable uptickd
Manajemen Kunci 🔐
1. Menambahkan Dompet Baru
uptickd keys add $WALLET
2. Memulihkan Dompet yang Ada
uptickd keys add $WALLET --recover
3. Menampilkan Daftar Semua Dompet
uptickd keys list
4. Menghapus Dompet
uptickd keys delete $WALLET
5. Memeriksa Saldo
uptickd q bank balances $(uptickd keys show $WALLET -a)
6. Ekspor Kunci (Simpan ke wallet.backup)
uptickd keys export $WALLET
7. Impor Kunci (Pulihkan dari wallet.backup)
uptickd keys import $WALLET wallet.backup
Token 💰
1. Mengirim ke Alamat Valoper
uptickd tx bank send $WALLET_ADDRESS <TO_VALOPER_ADDRESS> 1000000auoc --gas auto --gas-adjustment 1.5 -y
2. Mengirim ke Alamat Dompet
uptickd tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000auoc --gas auto --gas-adjustment 1.5 -y
3. Menarik Semua Hadiah
uptickd tx distribution withdraw-all-rewards --from $WALLET --chain-id origin_1170-1 --gas auto --gas-adjustment 1.5
4. Menarik Hadiah dan Komisi dari Validatormu
uptickd tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id origin_1170-1 --gas auto --gas-adjustment 1.5 -y
5. Memeriksa Saldo Anda
uptickd query bank balances $WALLET_ADDRESS
6. Mendelegasikan ke Alamat Sendiri
uptickd tx staking delegate $(uptickd keys show $WALLET --bech val -a) 1000000auoc --from $WALLET --chain-id origin_1170-1 --gas auto --gas-adjustment 1.5 -y
7. Mendelegasikan
uptickd tx staking delegate <TO_VALOPER_ADDRESS> 1000000auoc --from $WALLET --chain-id origin_1170-1 --gas auto --gas-adjustment 1.5 -y
8. Redelegasi Staking ke Validator Lain
uptickd tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000auoc --from $WALLET --chain-id origin_1170-1 --gas auto --gas-adjustment 1.5 -y
9. Unbond (Melepaskan Staking)
uptickd tx staking unbond $(uptickd keys show $WALLET --bech val -a) 1000000auoc --from $WALLET --chain-id origin_1170-1 --gas auto --gas-adjustment
1.5 -y
Operasi Validator 🛡️
1. Moniker
uptickd tx staking edit-validator \
--commission-rate 0.1 \
--new-moniker "$MONIKER" \
--identity "" \
--details "" \
--from $WALLET \
--chain-id origin_1170-1 \
--gas auto --gas-adjustment 1.5 \
-y
2. Informasi Validator
uptickd status 2>&1 | jq .ValidatorInfo
3. Detil Validator
uptickd q staking validator $(uptickd keys show $WALLET --bech val -a)
4. Informasi Penjara (Jailing)
uptickd q slashing signing-info $(uptickd tendermint show-validator)
5. Membatalkan Penjara Validator
uptickd tx slashing unjail --broadcast-mode block --from $WALLET --chain-id origin_1170-1 --gas auto --gas-adjustment 1.5 -y
6. Daftar Validator Aktif
uptickd 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
7. Memeriksa Kunci Validator
[[ $(uptickd q staking validator $VALOPER_ADDRESS -oj | jq -r .consensus_pubkey.key) = $(uptickd status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "Status kunci Anda baik-baik saja" || echo -e "Status kunci Anda bermasalah"
8. Informasi Penandatanganan (Signing)
uptickd q slashing signing-info $(uptickd tendermint show-validator)
Tata Pemerintahan 🏛️
1. Membuat Proposal Teks Baru
uptickd tx gov submit-proposal \
--title "" \
--description "" \
--deposit 1000000auoc \
--type Text \
--from $WALLET \
--gas auto --gas-adjustment 1.5 \
-y
2. Daftar Proposal
uptickd query gov proposals
3. Melihat Proposal
uptickd query gov proposal 1
4. Memilih Proposal
uptickd tx gov vote 1 yes --from $WALLET --chain-id origin_1170-1 --gas auto --gas-adjustment 1.5 -y