# Handling a validator
Once you've properly set up a validator node, it must be subject to certain rules and certain operations must be carried out to manage it.
- Handling a validator
# Downtime rules
The node can only stay offline for a certain amount of time.
In the case of Commercio Network this period has been fixed at 19,000 blocks lost, approximately corresponding to 27/28 hours.
Validator must validate at least 5% of a window of 20000 blocks, i.e. 19000 blocks.
If the node remains offline or fails to produce blocks for a period longer than the limit, it will incur slashing, i.e. an immediate loss of a certain amount of the staked tokens and the exit from the active validator set
For "Commercio Network" the slashing percentage for downtime is set at 1%
.
# Double sign rules
A validator node must be unique on the chain, so only a node can sign with that private key.
If there was another node with the same private key, this would result in a double signature, and therefore an immediate jail entry of the node with no exit possibility.
For "Commercio Network" the slashing percentage for double sing is set at 5%
.
If you run into double signatures all tokens must be unbond and you must create a new validator node with new private keys.
WARNING
The unbond period is 21 days, so is necessary to wait this period to get back in possession of your tokens.
# Unjail procedure
In case a validator ended up jailed for downtime, it is necessary that the wallet that created the validator performs an unjail transaction.
The follow command must be performed
commercionetworkd tx slashing \
unjail \
--from <your pub addr creator val> \
--fees=10000ucommercio \
--chain-id="$CHAINID" \
-y
Note: You can use uccc
tokens instead ucommercio
for the fees
value
If you are using the Ledger device you must first connect it to your computer, start the cosmos application and add --ledger
flag to the command.
# Unbond procedure
Tokens can be delegated to any validator to increase its stake.
In case you want to remove all or part of the delegated tokens, an unbond transaction
must be performed.
The undelegated period is 21 days, so is necessary to wait this period to get back in possession of your tokens.
To perform unbond transaction
use the follow command
commercionetworkd tx staking \
unbond \
<validator-operator-addr> \
50000000000ucommercio \
--from <your pub addr delegator> \
--fees=10000ucommercio \
--chain-id="$CHAINID" \
-y
Note: You can use uccc
tokens instead ucommercio
for the fees
value
value of <validator-operator-addr>
can be obtain from explorer:
Commercio.network explorer Testnet (opens new window).
Commercio.network explorer Mainnet (opens new window).
If you see your validator in the list click on its name.
The validator tab should have the value Operator. That value is your <validator-operator-addr>
If you are using the Ledger device you must first connect it to your computer, start the cosmos application and add --ledger
flag to the command.
# Redelegate procedure
It is possible to perform a procedure of moving tokens in stake from one validator to another through the redelegate transaction
.
To perform redelegate transaction
use the follow command
commercionetworkd tx staking \
redelegate \
<source-validator-operator-addr> \
<destination-validator-operator-addr> \
50000000000ucommercio \
--from <your pub addr delegator> \
--fees=10000ucommercio \
--chain-id="$CHAINID" \
-y
Note: You can use uccc
tokens instead ucommercio
for the fees
value
value of <source-validator-operator-addr>
and <destination-validator-operator-addr>
can be obtains from explorer:
Commercio.network explorer Testnet (opens new window).
Commercio.network explorer Mainnet (opens new window).
Search your source validator in the list, i.e. the validator you want to move the tokens from, and click on its name.
The validator tab should have the value Operator. That value is your <source-validator-operator-addr>
Return to the list of validators and search your destination validator, i.e. the validator you want to move the tokens to, and click on its name.
The validator tab should have the value Operator. That value is your <destination-validator-operator-addr>
If you are using the Ledger device you must first connect it to your computer, start the cosmos application and add --ledger
flag to the command.
# Move node to other server
If you need to move your validator to another server, the only thing that you need to move is your private key.
Your node structure should be something like below
.commercionetwork
├── config
│ └── app.toml
│ └── config.toml
│ └── genesis.json
│ └── node_key.json
│ └── priv_validator_key.json
├── data
│ └── priv_validator_state.json
└── cosmovisor
└── current -> /path/to/the/current/version/of/commercionetworkd
└── genesis
│ └── bin
│ └── commercionetworkd
└── upgrades
└── <name>
└── bin
└── commercionetworkd
If you don't use kms
the private key of your validator is saved in priv_validator_key.json
file.
# Move validator to another server with priv_validator_key.json
file
- Install a full node in the new server
- Stop the full node
commercionetworkd
service in the new serversystemctl stop commercionetworkd
- Copy
data
folder to the new serverrsync -av --delete \ --exclude wasm/cache \ ~/.commercionetwork/data/ \ <USER_NEW_SERVER>@<IP_NEW_SERVER>:.commercionetwork/data/
- Stop and disable the
commercionetworkd
service in the current (old) server of validator nodesystemctl stop commercionetworkd systemctl disable commercionetworkd
- Sync again your new node
data
folderrsync -av --delete \ --exclude wasm/cache \ ~/.commercionetwork/data/ \ <USER_NEW_SERVER>@<IP_NEW_SERVER>:.commercionetwork/data/
- Copy your
priv_validator_key.json
in the new serverscp ~/.commercionetwork/config/priv_validator_key.json \ <USER_NEW_SERVER>@<IP_NEW_SERVER>:.commercionetwork/config/priv_validator_key.json
- If you have some special setup in your
config.toml
andapp.toml
copy that in your new node. - Remove the
priv_validator_key.json
file from old serverrm ~/.commercionetwork/config/priv_validator_key.json
- Restart the node in your new server
systemctl start commercionetworkd
- Verify if your validator signs again checking the explorer
# Move validator to another server with kms
- Install a full node in the new server
- Stop the full node
commercionetworkd
service in the new serversystemctl stop commercionetworkd
- Copy
data
folder to the new serverrsync -av --delete \ --exclude wasm/cache \ ~/.commercionetwork/data/ \ <USER_NEW_SERVER>@<IP_NEW_SERVER>:.commercionetwork/data/
- If you have some special setup in your
config.toml
andapp.toml
copy that in your new node. Especially setup yourpriv_val_addr
inconfig.toml
using the setup of your server. - Enter in your
kms
server and stop thetmkms
servicesystemctl stop tmkms
- Modify
tmkms
config usingpriv_val_addr
value of your validator[[validator]] addr = "tcp://<VALIDATOR_IP>:26658"
- Restart
tmkms
servicesystemctl start tmkms
- Restart the node in your new server
systemctl start commercionetworkd
- Verify if your validator signs again checking the explorer
# Resume validator after break down with priv_validator_key.json
file
To resume a validator after break down or some other terrible issue that destroy your server you need to have the priv_validator_key.json
saved in a secure place.
- Install a full node in the new server
- After the node is synced with the chain stop it
systemctl stop commercionetworkd
- Copy your saved
priv_validator_key.json
file in the new server in~/.commercionetwork/config/
folder - Restart the node in your new server
systemctl start commercionetworkd
- Verify if your validator signs again checking the explorer
# Resume validator after break down with kms
- Install a full node in the new server
- After the node is synced with the chain stop it
systemctl stop commercionetworkd
- Setup your
priv_val_addr
inconfig.toml
using the setup of your server. - Enter in your
kms
server and stop thetmkms
servicesystemctl stop tmkms
- Modify
tmkms
config usingpriv_val_addr
value of your validator[[validator]] addr = "tcp://<VALIDATOR_IP>:26658"
- Restart
tmkms
servicesystemctl start tmkms
- Restart the node in your new server
systemctl start commercionetworkd
- Verify if your validator signs again checking the explorer
# x% Loss of blocks
What does an x% loss of blocks mean for a validator?
In order to create blocks and extend the blockchain, active validators are selected in proportion to their stake by a pseudo-random mechanism that assigns at a time t a proposer (block proposer) and a fixed pool of validators (committee). The block proposer is assigned the task of proposing the block Bt (block at time t) while the committee is given the task of voting whether the block is hung on the chain or not.
Losing a block for a validator means that this validator was inactive at the time of the committee's choice or that it did not vote towards the execution of the block. Thus, having a validator with an x% loss of blocks means that the validator is only active (100 - x)% of the time when the Bt block is assigned.
# Disk consumption growth
The disk consumption of a node is mainly due to the storage of the blockchain and the state of the application. The blockchain is the sequence of blocks that are created over time and that are linked together by the hash of the previous block. The state of the application is the set of all the data that the application stores in the blockchain. The state of the application is stored in the data
folder of the node.
Time after time the space occupied by the blockchain and the state of the application increases, and you need to increase the disk space of the node or reduce the space occupied by the blockchain and the state of the application.
# Add a new disk to the node
The node can be configured to use a new disk to store the blockchain and the state of the application. You need to transfer the data
folder of the node to the new disk, and after linking the new folder to the data
folder of the node. The following steps must be performed to add a new disk to the node:
- Create a new disk in the vm provider (depending on the vm provider)
- Mount the new disk in the node
sudo su - mkdir /mnt/data mount /dev/sdb /mnt/data
- Transfer the
data
folder of the node to the new diskrsync -av --delete \ --exclude wasm/cache \ ~/.commercionetwork/data/ \ /mnt/data/
- Stop the node service and finalize the transfer of the
data
folder of the node to the new disksystemctl stop commercionetworkd rsync -av --delete \ --exclude wasm/cache \ ~/.commercionetwork/data/ \ /mnt/data/
- Link the new
data
folder to thedata
folder of the nodecd ~/.commercionetwork mv data data_old ln -s /mnt/data data
- Restart the node service
systemctl start commercionetworkd
- Verify if the node is working
journalctl -u commercionetworkd -f
- Remove the old
data
folderrm -rf ~/.commercionetwork/data_old
# Increase disk space
The vm provider allows you to increase the disk space of the node. The following steps must be performed to increase the disk space of the node (depending on the vm provider. Based on DigitalOcean Provider):
- Increase the disk space of the node from the vm provider console
- Enter in the node and stop the node service
systemctl stop commercionetworkd
- Check the mount point of the diskOutput example:
df -h
Get the mount point of the disk. In this example the mount point isfilesystem size used avail use% mounted on /dev/sda 25G 5G 20G 20% / /dev/sdb 25G 5G 20G 20% /mnt/data
/dev/sdb
- Umount the disk
sudo su - umount /mnt/data
- Resize the disk
sudo su - e2fsck -f /dev/sdb resize2fs /dev/sdb
- Mount the disk
sudo su - mount /dev/sdb /mnt/data
- Check the size of the disk
df -h
- Restart the node service
systemctl start commercionetworkd
- Verify if the node is working
journalctl -u commercionetworkd -f
# Split the content of data
folder
The blockchain and the state of the application can be split into different folders. The following steps must be performed to split the blockchain and the state of the application into different folders:
- Add a new disk to the node
- Check the mount point of the diskOutput example:
df -h
Get the mount point of the disk. In this example the mount point isfilesystem size used avail use% mounted on /dev/sda 25G 5G 20G 20% / /dev/sdb 25G 5G 20G 20% /mnt/data
/dev/sdb
- Select a sub-folder of
data
to move to the new disk. In this example the sub-folder isdata/application.db
- Transfer the sub-folder to the new disk
rsync -av --delete \ ~/.commercionetwork/data/application.db/ \ /mnt/data/application.db/
- Stop the node service and finalize the transfer of the sub-folder to the new disk
systemctl stop commercionetworkd rsync -av --delete \ ~/.commercionetwork/data/application.db/ \ /mnt/data/application.db/
- Link the new sub-folder to the
data
folder of the nodecd ~/.commercionetwork/data mv application.db application.db_old ln -s /mnt/data/application.db application.db
- Restart the node service
systemctl start commercionetworkd
- Verify if the node is working
journalctl -u commercionetworkd -f
- Remove the old sub-folder
rm -rf ~/.commercionetwork/data/application.db_old
- Repeat the steps from 3 to 9 for each sub-folder of
data
you want to move to the new disk
# Prune the node
The blockchain and the state of the application can be reduced by pruning the node. Pruning is the process of removing old blocks from the blockchain and the state of the application. The pruning process is performed automatically by the node. The default pruning process can be changed by setting the pruning
parameter in the ~/.commmercionetwork/config/config.toml
file. The default value is default
and it is possible to set the value to everything
, nothing
or custom
.
To increase the pruning process it is possible to set the pruning
parameter in the config.toml
file to everything
. The pruning setting can be applied restarting the node service.
You can apply pruning manually once in a while with the follow procedure.
Set the home chain path variable to adapt to any chain user
home_chain=$(systemctl show commercionetworkd | grep -oP 'DAEMON_HOME=\K\S+')
Stop
commercionetworkd
systemctl stop commercionetworkd
Prune the node
$home_chain/cosmovisor/current/bin/commercionetworkd \ forceprune -f 282000 -m 1000 --home $home_chain
Start the node
systemctl start commercionetworkd
# State sync the node
The blockchain and the state of the application can be reduced by state syncing the node. State syncing is the process of downloading the state of the application from a trusted node.
Read more about state syncing here (opens new window).
If you're looking for how to install a statesynced node follow the instructions here.
In this guide, we will walk you through the process of reducing the disk usage of your Commercio Network node by state syncing it to the blockchain.
Set the chain variables to adapt the procedure to any chain user (root or cnd)
# Retrieve the chain home path home_chain=$(systemctl show commercionetworkd | grep -oP 'DAEMON_HOME=\K\S+') # Retrieve the chain user comm_user=$(systemctl show -pUser commercionetworkd.service | awk -F'=' '{print $(NF)}')
Prepare the setup for the statesync
- Mainnet:
TRUST_RPC1="rpc-mainnet.commercio.network:80" TRUST_RPC2="rpc2-mainnet.commercio.network:80" # Get the current height of the blockchain. CURR_HEIGHT=$(curl -s "http://$TRUST_RPC1/block" | jq -r '.result.block.header.height') # Calculate the trust height. TRUST_HEIGHT=$((CURR_HEIGHT-(CURR_HEIGHT%10000))) # Get the trust hash. TRUST_HASH=$(curl -s "http://$TRUST_RPC1/block?height=$TRUST_HEIGHT" | jq -r '.result.block_id.hash')
- Testnet:
TRUST_RPC1="rpc-testnet.commercio.network:80" TRUST_RPC2="rpc2-testnet.commercio.network:80" # Get the current height of the blockchain. CURR_HEIGHT=$(curl -s "http://$TRUST_RPC1/block" | jq -r '.result.block.header.height') # Calculate the trust height. TRUST_HEIGHT=$((CURR_HEIGHT-(CURR_HEIGHT%10000))) # Get the trust hash. TRUST_HASH=$(curl -s "http://$TRUST_RPC1/block?height=$TRUST_HEIGHT" | jq -r '.result.block_id.hash')
Verify the output
printf "rpc_servers = \"$TRUST_RPC1,$TRUST_RPC2\"\ntrust_height = $TRUST_HEIGHT\ntrust_hash = \"$TRUST_HASH\"\n"
The output should be similar to the following:
rpc_servers = "rpc-mainnet.commercio.network:80,rpc2-mainnet.commercio.network:80" trust_height = 10520000 trust_hash = "2A3B7444CD097C556FD1D1AA4D259E99E9F7513041C02EF3B7DCF8F39FFA21F8"
Write the parameters in the config file
sed -i -e "s/enable = .*/enable = true/" $home_chain/config/config.toml sed -i -e "s/rpc_servers = \".*\"/rpc_servers = \"$TRUST_RPC1,$TRUST_RPC2\"/" $home_chain/config/config.toml sed -i -e "s/trust_height = .*/trust_height = $TRUST_HEIGHT/" $home_chain/config/config.toml sed -i -e "s/trust_hash = \".*\"/trust_hash = \"$TRUST_HASH\"/" $home_chain/config/config.toml sed -i -e "s/trust_period = \".*\"/trust_period = \"168h0m0s\"/" $home_chain/config/config.toml
Stop the
commercionetworkd
processsystemctl stop commercionetworkd
Backup state file
cp $home_chain/data/priv_validator_state.json \ $home_chain/priv_validator_state.json.backup
Reset node database
commercionetworkd unsafe-reset-all \ --home $home_chain --keep-addr-book
Copy back the backupped state file
cp $home_chain/priv_validator_state.json.backup \ $home_chain/data/priv_validator_state.json
If you're not operating with root change the permission accordingly
chown -R $comm_user:$comm_user $home_chain/
Start the node
systemctl start commercionetworkd
Check the node alignment
journalctl -u commercionetworkd -f | grep height=
Clean up operations
rm $home_chain/priv_validator_state.json.backup
# State sync the node with snapshot
In this guide, we will walk you through the process of reducing the disk usage of your Commercio Network node by using a Mainnet statesync node snapshot from https://quicksync.commercio.network website:
Set the chain variables to adapt the procedure to any chain user
# Retrieve the chain home path home_chain=$(systemctl show commercionetworkd | grep -oP 'DAEMON_HOME=\K\S+') # Retrieve the chain user comm_user=$(systemctl show -pUser commercionetworkd.service | awk -F'=' '{print $(NF)}') # Set up CHAINID CHAINID="commercio-3"
Stop the
commercionetworkd
processsudo systemctl stop commercionetworkd
Backup state file
cp $home_chain/data/priv_validator_state.json \ $home_chain/priv_validator_state.json.backup
you don't need to perform this step if you have a kms or if the node is not a validator
Remove the database
rm -rf $home_chain/data
Download the snapshot and extract it
wget "https://quicksync.commercio.network/$CHAINID-statesync.latest.tgz" -P $home_chain/ # Check if the checksum matches the one present inside https://quicksync.commercio.network cd $home_chain/ tar -zxf $CHAINID-statesync.latest.tgz rm $CHAINID-statesync.latest.tgz
Copy back the backupped state file
cp $home_chain/priv_validator_state.json.backup \ $home_chain/data/priv_validator_state.json
you don't need to perform this step if you have a kms or if the node is not a validator
If you're not operating with root change the permission accordingly
sudo chown -R $comm_user:$comm_user $home_chain/
Start the node
sudo systemctl start commercionetworkd
Check the node alignment
journalctl -u commercionetworkd -f | grep height=
Clean up operations
rm $home_chain/priv_validator_state.json.backup
You can check the alignment using the procedure described here
# Add identity to your validator
In order to publish the validator icon to any explorer, an identity must be created at keybase (opens new window). Below are the steps to be performed
# References keybase
# 1. Registration
In the Keybase.io (opens new window) site click on Login
; a popup opens where there is a Join Keybase
button. After pressing this button fill in the form fields and submit the request.
# 2. Adding one or more devices
Install Keybase on a device, start the program and authenticate with the credentials entered during registration. The application displays a prompt to add the device in use.
# 2.1. Program installation on computers
# 2.2. App installation on iPhone and Android
# 3. Verify email
After authenticating, request verification of the email address.
# 4. Add logo and key
In the people
section of the program, click on the Edit Profile
button to complete the profile (data and image) and to access the proof list.
From the proof list, select Add a PGP key
, then add a locally generated PGP public key or create a new one with the Get a new PGP key
function provided by the application. Generation via the Keybase application is done automatically, the only actions required are:
- Fill out the form (
full name
andemail
); - At the end of generation decide to save or not to Keybase the private key by encrypting it.
After adding the key you will be able to access your account image using the https://keybase.io/_/api/1.0/user/lookup.json?key_suffix=[id]&fields=pictures
endpoint, where [id]
consists of the first 16 hexadecimal digits of the PGP key.
# 5. Edit your validator adding identity
In order to add the identity to your validator you need to edit the validator profile with a transaction.
Warning: put the values of moniker
, website
and details
according with your environment
IDENTITY="[id]" #ID that you obtained in the previous step. Something like 21C53B7B20C1145D
commercionetworkd tx staking edit-validator \
--moniker="$NODENAME" \
--identity="$IDENTITY" \
--website="your website (leave blank if you don't have it)" \
--details="description of your node (leave blank if you don't have it)" \
--chain-id="commercio-3" \
--from=<CREATOR ADDRESS> \
--fees=10000ucommercio \
-y
N.B.: after editing the profile the Edit Profile
button will disappear, in its place will be the Prove your identies
button until the identity is proven