# Validator-Node

{% embed url="<https://docs.celestia.org/nodes/consensus-node#run-the-validator-node>" %}
Official guide documentation
{% endembed %}

## Hardware requirements[​](https://docs.celestia.org/nodes/light-node#hardware-requirements) <a href="#hardware-requirements" id="hardware-requirements"></a>

* Memory: **8 GB RAM (minimum)**
* CPU: **6 Cores**
* Disk: **500 GB SSD Storage**
* Bandwidth: **1 Gbps for Download/1 Gbps for Upload**

## Keys and wallets <a href="#initialize-the-light-node" id="initialize-the-light-node"></a>

```sh
export WALLET=set_your_wallet_name
echo $WALLET

celestia-appd keys add $WALLET

WALLET_ADDRESS=$(celestia-appd keys show $WALLET -a)
echo $WALLET_ADDRESS
echo "export WALLET_ADDRESS="$WALLET_ADDRESS >> $HOME/.bash_profile

VALOPER_ADDRESS=$(celestia-appd keys show $WALLET --bech val -a)
echo $VALOPER_ADDRESS
echo "export VALOPER_ADDRESS="$VALOPER_ADDRESS >> $HOME/.bash_profile

source $HOME/.bash_profile
```

## Create validator and delegate

```sh
celestia-appd tx staking create-validator \
    --amount 1000000utia \
    --from $WALLET \
    --commission-rate 0.1 \
    --commission-max-rate 0.2 \
    --commission-max-change-rate 0.01 \
    --min-self-delegation 1 \
    --pubkey $(celestia-appd tendermint show-validator) \
    --moniker "your_moniker" \
    --identity "your_identity" \
    --chain-id celestia \
    --gas auto --gas-adjustment 1.5 --gas-prices 0.005utia \
    -y

celestia-appd tx staking delegate celestiavaloper1p2and9ehh9rgqmefzwhzq7yhkrkd5wdddx8mgv 1000000utia --from inklbot \
    --chain-id celestia \
    --gas auto --gas-adjustment 1.5 --gas-prices 0.005utia \
    -y
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://inklbot.gitbook.io/validator-inklbot/celestia/light-node-1/light-node.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
