Running a validator node on Oraichain .
Validator is an actor that participates in the Oraichain system, which is responsible for committing blocks and executing test cases to validate data from different data sources. If the test cases satisfy the conditions stated in the oracle script, the validator will aggregate data from such data sources. As a result, the validators receive rewards which are ORAI tokens by doing so, and by committing new blocks. Becoming a validator requires a decent amount of ORAI tokens staked to guarantee reliability .
In this tutorial we are going to run a validator node on Oraichain , but before starting off it is advised to start a sentry node on Oraichain and let it update to latest state of the Oraichain . let's begin
Requirements
A full synced node
Follow any of the previous tutorials on how to run a full synced node on Oraichain .
A wallet
For setting up a wallet run the command
List all your keys
Get validator public key
Create Validator command
After getting some ORAI tokens , you can use the create validator
command given below
Empty command
Example command
from
flag is name or address of private of private key with which to signamount
flag signifies the amount of tokens to be staked ,1000000orai = 1 ORAI
The
pubkey
flag is The validator's Protobuf JSON encoded public keyThe
moniker
flag is The validator's nameThe
chain-id
flag is Oraichain (default value and can't change)The
commission-rate
is The initial commission rate percentage (in the example above, 3 percent)The
commission-max-rate
is The maximum commission rate percentage (in the example above, 10 percent)The
commission-max-change-rate
is The maximum commission change rate percentage (per day) (in the example above, 1 percent per day until reaching the max rate)The
min-self-delegation
is The minimum self delegation required on the validator (in the example above, 1 orai)The
gas-prices
is Gas prices in decimal format to determine the transaction feeThe
website
flag is The validator's (optional) websiteThe
details
flag is The validator's (optional) detail
Track validator
To check the current active validator set :
To track your validator's signing history
Please join the Oraichain validators group on Telegram to discuss ideas and problems!
Last updated