Rust implementation of the Nimiq Proof-of-Stake blockchain.
Nimiq is a frictionless payment protocol for the web.
This repository is currently under development. It contains the implementation of the Nimiq Proof-of-Stake protocol based on the Albatross consensus algorithm.
Nimiq Proof-of-Stake was conceived with performance in mind without sacrificing security.
Currently, the protocol can be exercised in an environment aimed for developers where bugs are expected to happen. For more detailed information about how to connect and use the testnet network, please refer to the Testnet section.
- Background
- System requirements
- Installation
- Documentation
- Usage
- Configuration
- Testnet
- Docker
- 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 Proof-of-Stake migration process: Migration process to Nimiq Proof-of-Stake
- Nimiq 1.0 Developer Reference: Details of the protocol architecture.
- Nimiq 1.0 JavaScript implementation: Nimiq 1.0 implementation
- 64-bit computing architecture.
- 2 or more CPU cores
- 2GB of available RAM memory
- 5GB of free disk space, an SSD is highly recommended (100GB or more is required for history nodes)
- File systems with sparse file support.
- It is highly recommended to run a clock synchronization protocol such as NTP. This is needed to properly accept blocks according to the timestamp and it is especially important for validators in order to produce blocks in the expected timestamps.
Besides Rust stable itself, the following packages are required 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.
After installing the previous packages, compiling the project is achieved through cargo
:
git clone https://github.com/nimiq/core-rs-albatross
cd core-rs-albatross
cargo build --release
If you want to install the client onto your system (into $HOME/.cargo/bin
), run:
cargo install --path client/
Alternatively, you can install it directly from git:
cargo install --git https://github.com/nimiq/core-rs-albatross.git
Extensive documentation explaining how the protocol is built up, the JSON-RPC specification, how to get started building applications on top of Nimiq and more can be found at the Nimiq Developer Center.
You can refer to the documentation to learn more about reproducing Nimiq software for yourself as well as checking software signatures in order to verify the integrity and authenticity of software.
After installation, you can run the client directly, like this:
cargo run --release --bin nimiq-client
By default the client will look for a configuration file in $HOME/.nimiq/client.toml
.
In order to create this file yourself, you can use the example config file as follow:
cargo run --release --bin nimiq-client # Run the client. This will create the example config file.
cp $HOME/.nimiq/client.example.toml $HOME/.nimiq/client.toml # Create your config from the example.
nano $HOME/.nimiq/client.toml # Edit the config. Explanations are included in the file.
If you want to directly specify your own configuration file when running the client, you can do so as follow:
cargo run --release --bin nimiq-client -- -c path/to/client.toml
Please take a look at the client.example.toml
for all the configuration options.
The testnet network is currently in a phase open to the general public to use. 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.
There are two ways of getting funds:
- Using an account in the Testnet Nimiq Wallet and requesting funds in the wallet.
- Directly using the Devnet 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
Check this guide for steps on becoming a validator.
Use docker pull ghcr.io/nimiq/core-rs-albatross:latest
to pull the latest docker image.
Then mount a volume to configure the client:
mkdir data
cp ./lib/src/config/config_file/client.example.toml data/client.toml
Note that you can modify the client configuration and this is a must if you are running a validator. For more documentation on the configuration file, check the configuration section of this guide.
Once the data directory is created and ready, you can run the client with:
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 connections port |
8648 | RPC port |
9100 | Metrics port |
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.