Sentinel-Turing-1 : Run a Validator after genesis === The objective of this document is to enable users with the minimum configuration of the server, run a Validator node after the genesis or start of a chain. ### Minimum Configuration Required Cores : 4 RAM : 8-16GB Storage Space : 50GB Storage Type : SSD ### Initializing the Chain Initialize the `sentinel-hub` validator and set the moniker. *Moniker* is a name that you set to your validator. It will generate genesis.json and config file. `sentinel-hubd init <moniker name of validator>` for example, if `ironman_validator` is the moniker to be set, the below command is to be used `sentinel-hubd init ironman_validator` ![](https://i.imgur.com/PhJCMG2.png) ### Create An Account Run the following command to create a new Sentinel account. `sentinel-hubcli keys add <account name>` ![](https://i.imgur.com/jaNtCMF.png) ### Check Public Key Find the validator public key by using the following command `sentinel-hubd tendermint show-validator` ![](https://i.imgur.com/fyOnXjR.png) ### Becoming a Validator After the public key has been identified, use the below command to create a validator. `sentinel-hubcli tx staking create-validator \` `--moniker <moniker name of validator> \` `--amount <amount to be stake in tsent> \` `--fees < transaction fee in tsent> \` `--gas <gas value>\` `--pubkey <validator consensus public key> \ ` `--chain-id <chain id> \ ` `--node <node rpc server address>\` `--from <name of account which has staking tsent amount> \` `--commission-max-change-rate 0.01 \` `--commission-max-rate 0.2 \` `--commission-rate 0.1 \` `--min-self-delegation 1 \` `--broadcast-mode block ` ![](https://i.imgur.com/ZY89AO2.png) ... the image continues .. ![](https://i.imgur.com/s1t7gOE.png) ### Check added Validator Find the validators info by using `sentinel-hubcli query staking validators --chain-id <chain id> --node <node rpc server address>` ![](https://i.imgur.com/UdDqvyb.png) # Walkthrough - Running a Validator on Sentinel-Turing-1 after genesis Video coming soon!