Babylon
Preparations
To continue, we can update the packages by running the following commands in the terminal. The first part of the command (sudo apt update) updates the package lists for upgrades, and the second part (sudo apt upgrade -y) actually performs the upgrades with the “-y” flag allowing for automatic confirmation of prompts during the upgrade process:
Setup Validator Name
First change “YOUR_MONIKER_GOES_HERE” to your chosen validator moniker and enter this command:
Install Dependencies & Install GO
Download And Build Binaries
Set Up Cosmovisor And Create The Corresponding Service
Initialize The Node
Retrieve The Genesis File:
Start Service And Check The Logs
Becoming a Validator
Keyring creation and getting funds: Validators are required to have funds for two reasons:
Self-delegation: Validators must stake their own funds as a commitment to the network.
Transaction fees: Funds are necessary to cover the costs of submitting BLS signature transactions.
Presently, validators are limited to using the test keyring backend. However, Babylon plans to expand support to include various encrypted backends offered by the Cosmos SDK in the future.
Create a New Key
Obtain Funds from the Babylon Testnet Faucet
To receive funds, visit the #faucet channel on the official Babylon Discord server. Here, you can request funds by sharing the address you previously created. Please note, in order to access the #faucet channel, you first need to visit the “get-a-role” channel and react with the “Computer” emoji. This action will grant you the necessary permissions to view the #faucet channel. Once in the channel, submit your request by typing !faucet
followed by your address. For instance, you would type this to request funds for that specific address:
!faucet bbn16yzx3zfucs6fxu4hw3ack6ht4hgsp9wqrly2c9
You can check your wallet balance using this command:
Ensure that you have successfully received 1,100,000 ubbn. Please be aware that you can only claim 1 BBN from the faucet every 24 hours.
Generate a BLS Key Pair
As a validator, you are required to provide a BLS signature at the conclusion of each epoch. For this purpose, it’s essential to possess a BLS key pair, which will be used for signing information. This should be done using the address that was established in the preceding step.
Executing this command will generate a BLS key, which will then be stored in the $HOME/.babylond/config/priv_validator_key.json
file. This file also contains the private key used by the validator for block signing. It's crucial to secure this file adequately to maintain the integrity and security of your validator operations. After creating a BLS key, you need to restart your node to load this key into memory.
Update the Configuration Settings
Additionally, it’s necessary to define the name of the key your validator will utilize for submitting BLS signature transactions. This is done in the $HOME/.babylond/config/app.toml
file. You should edit this file to assign the key name to the one associated with the funds in your keyring.
Lastly, it is highly advisable to adjust the timeout_commit
parameter in the $HOME/.babylond/config/config.toml
file. This setting determines the duration a validator waits before committing a block and proceeding to a new height. In alignment with Babylon's goal of maintaining a 10-second interval between blocks, you should configure this value accordingly.
Create the Validator
Unlike traditional Cosmos SDK chains, establishing a validator on Babylon requires using the babylond tx checkpointing create-validator
command. This process assumes the presence of a BLS validator key in the $HOME/.babylond/config/priv_validator_key.json
file.
Babylon validators have the responsibility to submit a BLS signature transaction at the end of each epoch, which currently occurs approximately every 30 minutes. These transactions incur a fixed gas fee of 100ubbn. Consequently, it’s crucial for validators to ensure they have sufficient unbonded funds in their keyring to cover these recurring transaction fees.
Check the network synchronization status with the command:
As soon as the value of catching_up becomes “false”, you can proceed to the final step.
To achieve active validator status, it’s essential to bond more ubbn tokens than the current lowest-bonded validator in the ranking (unless the validator set isn’t full). Additionally, you must have a minimum of 10,000,000 ubbn tokens bonded.
Congratulations! You’ve successfully become a validator on the Babylon network. Usually it within 30 minutes, the validator should appear in the list at https://babylon.explorers.guru/validators.
However, due to network congestion, there might be delays sometimes. You can find your validator by searching for the wallet address or your Moniker, and then see it in the delegations to your validator on this wallet.
Last updated