Nimiq is a frictionless payment protocol for the web.
This repository contains the Rust implementation of the Nimiq Proof-of-Stake protocol based on the Albatross consensus algorithm. It is designed to deliver high performance without sacrificing security. The Mainnet is now fully operational and ready for live transactions. It has been rigorously tested and is ready for production use.
For the Testnet use and more detailed information on how to connect and use the network, please refer to the Testnet section.
- Reference
- Hardware Requirements
- Installation
- Configuration
- Service Nodes Guides
- Docker
- Testnet
- Software Integrity and Authenticity
- Contributing
- License
- Nimiq Proof-of-Stake Portal: General information and high level details of the Nimiq Proof-of-Stake blockchain.
- Nimiq Albatross White Paper: White paper describing the consensus algorithm used in Nimiq Proof-of-Stake.
- Nimiq Developer Center: The place for all the developer documentation and protocol design implementation.
- JSON-RPC Specification: Documentation for interacting with the network using JSON-RPC.
- Nimiq Proof-of-Stake Migration Technicalities: Migration process to Nimiq Proof-of-Stake.
- Migration for Integrators: A guide for those who want a more in depth overview of the transitioning process from Proof-of-Work to Proof-of-Stake.
- Blockchain Explorer: Block Explorer for the Mainnet.
PoS Node Type | Memory | CPU | Storage | Network | Syncing Time |
---|---|---|---|---|---|
History | Minimum 16GB RAM (higher recommended) | Minimum 4 vCPUs, 8 recommended | Minimum 1TB of storage (2TB when enabling indexing); storage usage starts at a few gigabytes and grows linearly with blockchain size over time | High-speed, reliable internet connection; Good I/O performance (SSDs required) | Sync time increases over the life of the blockchain |
Full | Minimum 16GB RAM | 4 vCPUs recommended | Minimum Minimum 60GB of storage | High-speed, reliable internet connection; Good I/O performance (SSDs recommended) | Sync time grows linearly but slowly |
Light | Minimum 4GB RAM | 64-bit recommended | Works with minimal storage | Moderate-speed internet connection (1 Mbps or higher) | Syncs in a few seconds |
- File System: Ensure support for sparse files.
- Clock Synchronization: Use a protocol like NTP for accurate block acceptance, which is essential for validators to produce blocks on time.
Nimiq has also two specific node types with specialized roles in maintaining the network security and performing more advanced tasks.
-
Validators for block production:
- PoS Node Type: Full or History
- Memory: 16GB RAM minimum
- CPU: 4 vCPUs recommended
-
Prover nodes for zero-knowledge proof generation:
- PoS Node Type: Full or History
- Memory: 64GB RAM minimum
- CPU: 8vCPUs recommended
- Install the latest version of Rust by following the instructions on the Rust website and following packages to be able to compile the source code:
clang
cmake
libssl-dev
(in Debian/Ubuntu) oropenssl-devel
(in Fedora/Red Hat)pkg-config
We currently do not make any guarantees about the minimum supported Rust version to consumers, but we currently test two versions older than the current Rust stable.
- Clone the core-rs repository and compile the project with
cargo
:
git clone https://github.com/nimiq/core-rs-albatross
cd core-rs-albatross
cargo build --release
- Install the client onto your system (into
$HOME/.cargo/bin
) with:
cargo install --path client/
Alternatively, you can install it directly from git:
cargo install --git https://github.com/nimiq/core-rs-albatross.git
You need a configuration file to customize your node according to your specific requirements. Follow one of the methods below to create and edit your configuration file.
Option A The configuration file is generated automatically and in a specific location.
- Generate the configuration file with the following command:
cargo run --release --bin nimiq-client
This generates a sample file and places it in a folder ./nimiq
.
2. Copy the sample configuration file into a new file in the same directory where you will edit it according to your needs:
cp $HOME/.nimiq/client.example.toml $HOME/.nimiq/client.toml
- Edit your configuration file following the explanations inside. Check some important settings to take into account below.
- Run the client:
cargo run --release --bin nimiq-client
By default, the client will look for the config file in $HOME/.nimiq/client.toml
.
Option B Download the example file and manually place it.
- Copy this sample configuration file to your preferred location.
- Edit the configuration file and adjust settings as needed. Refer to the configuration settings for guidance.
- Run the client with the specified file:
cargo run --release --bin nimiq-client -- -c path/to/client.toml
You can also choose to run a validator or a prover node. Check our guides with the full step-by-step description:
- Create a
data
folder in the main directory withmkdir ~/data
. - Pull the latest image from the container registry:
docker pull ghcr.io/nimiq/core-rs-albatross:latest
. - Create a
client.toml
file in~/data
withcp ./lib/src/config/config_file/client.example.toml ~/data/client.toml
. - Customize the configuration file to match your requirements. Refer to the sample configuration file and configuration settings for guidance.
- Run the client via Docker:
docker run -v $(pwd)/data:/home/nimiq/.nimiq -p 8443:8443 -p 8648:8648 -p 9100:9100 --name nimiq-rpc --rm ghcr.io/nimiq/core-rs-albatross:latest
.
Overview of Exposed Ports:
Port | Description |
---|---|
8443 | Incoming network connections port |
8648 | RPC port |
9100 | Metrics port |
The Testnet network is publicly available for testing and experimentation. Its main purpose is to invite everyone to exercise and test the Nimiq Proof-of-Stake functionality and we invite people to file and report any issues through our GitHub repository.
You can use the Testnet by setting the consensus.network in your configuration file set to test-albatross
. Additionally uncomment the network.seed_nodes for the Testnet and comment the Mainnet ones.
There are two ways of getting funds:
- Using an account in the Testnet Nimiq Wallet and requesting funds in the wallet.
- Directly using the Testnet Faucet:
curl -X POST -H "Content-Type: application/x-www-form-urlencoded" -d "address=NQXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX" https://faucet.pos.nimiq-testnet.com/tapit
To ensure the software you are running is authentic and has not been tampered with, refer to the documentation. It provides details on reproducing Nimiq software and verifying software signatures.
If you'd like to contribute to the development of Nimiq please follow our Code of Conduct and Contributing Guidelines. Small note: When editing the README, please conform to the standard-readme specification.
This project is licensed under the Apache License 2.0.