Become a Validator (HydraGon Node)
Run a Hydra Chain validator node from Linux: install the Hydragon client, generate & secure keys, sync the node, register as validator with a 15,000 HYDRA stake, and learn the essential operational co
Become a Hydra Chain Validator (HydraGon Node)
Hydra Chain validators are permissionless (first-come/first-serve) with up to 50 validator slots. To become a validator you need (1) at least 15,000 HYDRA and (2) an available slot.
GitHub: https://github.com/Hydra-Chain/hydragon-node?tab=readme-ov-file
🚀 Quickstart (5 steps)
⚠️ Uptime matters: Inactive validators can be ejected after ~2 hours (threshold is ~18,000 blocks depending on block time) and can be permanently banned if not reactivated within ~72 hours.
1) System requirements
Minimum recommended hardware to run a Hydra validator node:
CPU
4 cores
8 cores
RAM
16 GB
32 GB
Storage
200 GB NVMe SSD
1 TB NVMe SSD
Network
High-speed connection
Dedicated server + gigabit
💡 Hardware tips: Prefer a secure, stable Linux server OS (Debian-like) over desktop OS. Storage requirements grow with the chain over time.
2) Download / install the HydraGon node
Hydra currently supports Linux environments for validators. Choose one option below.
Option A: Install via executable (recommended)
Download the latest Hydragon Node release from GitHub Releases.
Unzip it. The extracted folder contains the
hydraexecutable.(Optional) Move
hydrato your system PATH (example):
Option B: Build from source
Prerequisite: Go >= 1.23.3
Notes from the upstream README:
CGO_ENABLED=0is used for a static build (more portable).You can cross-compile via
GOOS/GOARCH.
3) Generate validator secrets (keys)
Your validator identity uses three keys:
ECDSA key (transactions / account)
BLS key (consensus signing)
Networking ECDSA key (P2P identity)
Hydra recommends storing keys encrypted locally and keeping offline backups.
Create encrypted secrets
This generates secrets and stores them in node-secrets. You will set a password for encryption.
Output keys later (if needed)
Private keys:
Public data (EVM Address) + Node ID:
4) Configure the node
Genesis file (genesis.json)
genesis.json)The genesis file is critical. Do not alter it. In the new releases, the genesis file is built into the hydra executable and as such does not need a custom Genesis file. For visibility, you can find the latest HydraChain Mainnet genesis file at the following location.
Secrets manager config (secretsManagerConfig.json)
secretsManagerConfig.json)Generate a secrets manager config for encrypted-local secrets. This also includes a CoinGecko API key used for the Hydra Price Oracle feature. A free API key can be generated at CoinGecko's API page.
5) Launch the node (and wait for sync)
Run the node:
Chain flags:
Use
--chain mainnetfor Mainnet.Use
--chain testnetif using Testnet.If ever instructed to use a Custom genesis:
--chain "custom:<path_to_genesis_file>"
⏳ First sync can take time—wait until your node is fully synced before registering as a validator.
6) Prepare your validator account
After your node is operational and fully synced, you're ready to become a validator. This requires:
Mainnet: Fund your new validator address with a minimum of 15,000 HYDRA, plus some extra for transactions fees.
Testnet only: Fund your validator address using the Faucet.
7) Register and stake as validator
Hydra requires a minimum 15,000 HYDRA stake for validators.
Register + self-stake + set commission
🧠 Amounts are specified in wei. (15,000 HYDRA = 15000 × 10^18 wei.)
Stake with vesting (optional, higher rewards)
You can lock funds for 1–52 weeks to receive a loyalty bonus. Early unstake penalty is 0.5% per remaining week, and rewards distributed during the vesting period are burned on early exit. The below command can be run only after you have registered and self staked as a validator
Example (52 weeks vesting with additional 15,000 HYDRA):
The above example will vest your existing staked amount 15,000 HYDRA, plus an additional 15,000 HYDRA. If you wish to only vest the original 15,000 HYDRA, then you can do that by setting the --amount to 0 like below
8) Ongoing validator operations (must-know commands)
Update commission (two-step, with 15-day delay)
Set pending commission:
After the 15 day waiting period, apply:
Claim validator rewards + delegator commission rewards
Claim validator rewards:
Claim commission earned from delegators:
9) Ejection / Ban recovery (read this before you need it)
Hydra includes an ejection + ban mechanism to reduce network stall risk and maintain sub-second block time.
Initial ejection can trigger at ~18,000 blocks (~2 hours) depending on block time.
If not reactivated within ~259,200 seconds (~72 hours) you will be permanently banned.
Current penalty: 1,000 HYDRA, with 700 burned and 300 as reporter reward (in some cases).
Re-activate after ejection
After fixing the issue and re-syncing your node:
Withdraw penalized funds (if banned)
Initiate withdrawal:
After the withdrawal period of 7 days:
Withdraw using --banned:
💡 If your machine is down, you can use a public RPC as the
--jsonrpcvalue.For Instance, replace
--jsonrpc http://localhost:8545with--jsonrpc https://rpc-mainnet.hydrachain.org
Last updated
Was this helpful?