Setup Guide
Complete guide to setting up your Zentalk validator node
Prerequisites
Before you begin, ensure you have:
- A server meeting the minimum hardware requirements
- At least 100,000 CHAIN tokens for staking
- A valid SSL certificate
- Basic knowledge of Linux system administration
Installation Steps
1
Download the Validator Software
curl -sSL https://install.zentalk.network | bash2
Configure Your Node
Edit the configuration file:
sudo nano /etc/zentalk/validator.yamlConfigure the following settings:
node:
name: "my-validator"
region: "eu-west"
network:
relay_port: 8080
health_port: 8170
dht_port: 4001
staking:
operator_address: "0x..."
min_stake: 1000003
Start the Validator
sudo systemctl enable zentalk-validator
sudo systemctl start zentalk-validator4
Verify Installation
Check the validator status:
zentalk-cli statusFirewall Configuration
Ensure the following ports are open:
| Port | Protocol | Purpose |
|---|---|---|
| 8080 | TCP | Message relay |
| 8170 | TCP | Health checks |
| 4001 | TCP/UDP | Peer discovery |
Next Steps
After setup, your validator will appear in the explorer once it syncs with the network. Monitor your validator's performance and ensure it maintains high uptime for optimal rewards.