Skip to main content
Validators
Technical Requirements

Technical Requirements

Node Specifications

These are the recommended specs for a ZetaChain node.

Node TypeCPUMemoryData Disk
Observer Signer8 CPUs32 GB Memory300+ GB Data Disk
Core Validator4 CPUs16 GB Memory300+ GB Data Disk

Network Requirements

Public Ports

ZetaChain nodes communicate over the following ports. Make sure these are open to the public internet.

Node TypePortProtocol
Full Node and Validator26656TCP
Observer Signer Only8123TCP
Observer Signer Only6668TCP

Additionally, Observer Signers must allow communication between zetacored and zetaclientd on port 9090 but this port should not be publicly accessible.

RPC/API/Archive Nodes

If you want to access RPC/API services on your node you'll need to make sure the following ports are open.

RPC TypePortProtocol
EVM RPC - HTTP8545TCP
EVM RPC - WSS8546TCP
Cosmos RPC1317TCP

Operating System

ZetaChain nodes have been developed and tested on x86_64 architecture. Our binary files have been compiled with Ubuntu 22.04 LTS x86_64. This guide assumes you are using Ubuntu 22.04 LTS x86_64. If you are using a different OS you may need to make some adjustments.

Getting Started

Set Limits on Open Files and Number of Processes

To better manage the resources of your nodes, we recommend setting some limits on the maximum number of open file descriptors (nofile) and maximum number of processes (nproc).

Edit /etc/security/limits.conf to include or modify the following parameters:

*       soft    nproc   262144
* hard nproc 262144
* soft nofile 262144
* hard nofile 262144

Edit /etc/sysctl.conf to include the following:

fs.file-max=262144

Monitoring

In a production environment we recommend monitoring the node resources (CPU load, Memory Usage, Disk usage and Disk IO) for any performance degradation.

Prometheus can optionally be enabled to serve metrics which can be consumed by Prometheus collector(s). Telemetry include Prometheus metrics can be enabled in the app.toml file. See the CosmosSDK Telemetry Documentation for more information.