Join our telegram
Join our discord
Visit our website
Deploy your VPS using our referral link to get 20€ bonus
Deploy your VPS using our referral link to get 100$ free bonus for 60 days
Deploy your VPS using our referral link to get 100$ free bonus
Official documentation:
Explorer:
To set up monitoring for your validator node navigate to Set up monitoring and alerting for terp validator
To migrate your validator to another machine read Migrate your validator to another machine
Like any Cosmos-SDK chain, the hardware requirements are pretty modest.
- 4x CPUs; the faster clock speed the better
- 8GB RAM
- 100GB of storage (SSD or NVME)
- Permanent Internet connection (traffic will be minimal during testnet; 10Mbps will be plenty - for production at least 100Mbps is expected)
- 8x CPUs; the faster clock speed the better
- 64GB RAM
- 1TB of storage (SSD or NVME)
- Permanent Internet connection (traffic will be minimal during testnet; 10Mbps will be plenty - for production at least 100Mbps is expected)
You can setup your terp fullnode in few minutes by using automated script below. It will prompt you to input your validator node name!
wget -O terp.sh https://raw.githubusercontent.com/kj89/testnet_manuals/main/terp/terp.sh && chmod +x terp.sh && ./terp.sh
You can follow manual guide if you better prefer setting up node manually
When installation is finished please load variables into system
source $HOME/.bash_profile
Next you have to make sure your validator is syncing blocks. You can use command below to check synchronization status
terpd status 2>&1 | jq .SyncInfo
You can state sync your node in minutes by running commands below
N/A
To create new wallet you can use command below. Don’t forget to save the mnemonic
terpd keys add $WALLET
(OPTIONAL) To recover your wallet using seed phrase
terpd keys add $WALLET --recover
To get current list of wallets
terpd keys list
Add wallet and valoper address into variables
TERP_WALLET_ADDRESS=$(terpd keys show $WALLET -a)
TERP_VALOPER_ADDRESS=$(terpd keys show $WALLET --bech val -a)
echo 'export TERP_WALLET_ADDRESS='${TERP_WALLET_ADDRESS} >> $HOME/.bash_profile
echo 'export TERP_VALOPER_ADDRESS='${TERP_VALOPER_ADDRESS} >> $HOME/.bash_profile
source $HOME/.bash_profile
In order to create validator first you need to fund your wallet with testnet tokens.
N/A
Before creating validator please make sure that you have at least 1 terp (1 terp is equal to 1000000 uterpx) and your node is synchronized
To check your wallet balance:
terpd query bank balances $TERP_WALLET_ADDRESS
If your wallet does not show any balance than probably your node is still syncing. Please wait until it finish to synchronize and then continue
To create your validator run command below
terpd tx staking create-validator \
--amount 10000000uterpx \
--from $WALLET \
--commission-max-change-rate "0.01" \
--commission-max-rate "0.2" \
--commission-rate "0.07" \
--min-self-delegation "1" \
--pubkey $(terpd tendermint show-validator) \
--moniker $NODENAME \
--chain-id $TERP_CHAIN_ID
To protect you keys please make sure you follow basic security rules
Good tutorial on how to set up ssh keys for authentication to your server can be found here
Start by checking the status of ufw.
sudo ufw status
Sets the default to allow outgoing connections, deny all incoming except ssh and 26656. Limit SSH login attempts
sudo ufw default allow outgoing
sudo ufw default deny incoming
sudo ufw allow ssh/tcp
sudo ufw limit ssh/tcp
sudo ufw allow ${TERP_PORT}656,${TERP_PORT}660/tcp
sudo ufw enable
To monitor and get alerted about your validator health status you can use my guide on Set up monitoring and alerting for terp validator
This script will help you to estimate how much time it will take to fully synchronize your node
It measures average blocks per minute that are being synchronized for period of 5 minutes and then gives you results
wget -O synctime.py https://raw.githubusercontent.com/kj89/testnet_manuals/main/terp/tools/synctime.py && python3 ./synctime.py
[[ $(terpd q staking validator $TERP_VALOPER_ADDRESS -oj | jq -r .consensus_pubkey.key) = $(terpd status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "\n\e[1m\e[32mTrue\e[0m\n" || echo -e "\n\e[1m\e[31mFalse\e[0m\n"
terpd 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
curl -sS http://localhost:${TERP_PORT}657/net_info | jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):\(.node_info.listen_addr)"' | awk -F ':' '{print $1":"$(NF)}'
Check logs
journalctl -fu terpd -o cat
Start service
sudo systemctl start terpd
Stop service
sudo systemctl stop terpd
Restart service
sudo systemctl restart terpd
Synchronization info
terpd status 2>&1 | jq .SyncInfo
Validator info
terpd status 2>&1 | jq .ValidatorInfo
Node info
terpd status 2>&1 | jq .NodeInfo
Show node id
terpd tendermint show-node-id
List of wallets
terpd keys list
Recover wallet
terpd keys add $WALLET --recover
Delete wallet
terpd keys delete $WALLET
Get wallet balance
terpd query bank balances $TERP_WALLET_ADDRESS
Transfer funds
terpd tx bank send $TERP_WALLET_ADDRESS <TO_TERP_WALLET_ADDRESS> 10000000uterpx
terpd tx gov vote 1 yes --from $WALLET --chain-id=$TERP_CHAIN_ID
Delegate stake
terpd tx staking delegate $TERP_VALOPER_ADDRESS 10000000uterpx --from=$WALLET --chain-id=$TERP_CHAIN_ID --gas=auto
Redelegate stake from validator to another validator
terpd tx staking redelegate <srcValidatorAddress> <destValidatorAddress> 10000000uterpx --from=$WALLET --chain-id=$TERP_CHAIN_ID --gas=auto
Withdraw all rewards
terpd tx distribution withdraw-all-rewards --from=$WALLET --chain-id=$TERP_CHAIN_ID --gas=auto
Withdraw rewards with commision
terpd tx distribution withdraw-rewards $TERP_VALOPER_ADDRESS --from=$WALLET --commission --chain-id=$TERP_CHAIN_ID
Edit validator
terpd tx staking edit-validator \
--moniker=$NODENAME \
--identity=<your_keybase_id> \
--website="<your_website>" \
--details="<your_validator_description>" \
--chain-id=$TERP_CHAIN_ID \
--from=$WALLET
Unjail validator
terpd tx slashing unjail \
--broadcast-mode=block \
--from=$WALLET \
--chain-id=$TERP_CHAIN_ID \
--gas=auto
This commands will completely remove node from server. Use at your own risk!
sudo systemctl stop terpd
sudo systemctl disable terpd
sudo rm /etc/systemd/system/terp* -rf
sudo rm $(which terpd) -rf
sudo rm $HOME/.terp* -rf
sudo rm $HOME/terp -rf
sed -i '/TERP_/d' ~/.bash_profile