thehemi / core-rs-albatross

Rust implementation of the Albatross protocol

Home Page:https://nimiq.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nimiq 2.0 implementation in Rust

nimiq

Rust implementation of the Nimiq 2.0 blockchain node

Build Status dependency status

Nimiq is a frictionless payment protocol for the web.

This repository is currently under development. It contains the implementation of the Nimiq 2.0 protocol: a Proof-of-stake blockchain based on the Albatross consensus algorithm.

Nimiq 2.0 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 development network, please refer to the Devnet section.

Table of Contents

Background

System requirements

  • 64-bit computing architecture.
  • File systems with sparse file support.

Installation

Besides Rust stable itself, the following packages are required to be able to compile the source code:

  • clang
  • pkg-config
  • libssl-dev (in Debian/Ubuntu) or openssl-devel (in Fedora/Red Hat)

After installing the previous packages, compiling the project is achieved through cargo:

git clone https://github.com/nimiq/core-rs-albatross
cd core-rs
cargo build

Note that this will build in debug mode, which is not as performant. To get the most speed out of the client, please build in release mode:

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

Usage

After installation, you can run the client directly, like this:

nimiq-client

Configuration

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:

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 direcly specify your own configuration file when running the client, you can do so as follow:

nimiq-client -c path/to/client.toml

Please take a look at the client.example.toml for all the configuration options.

Devnet

The development network is currently in release-candidate phase where we are giving RPC access to interested developers. Its main purpose is to invite all developers to exercise and test the Nimiq 2.0 RPC functionality (to see how it fits for their app use cases), and we invite them to file and report any issues through our GitHub repository.

ARPL is the recommended command line tool to connect to the devnet RPC, like this:

arpl -u "https://seed1.v2.nimiq-testnet.com:8648/?secret=<TOKEN>" status

Using the TOKEN that will be given after requesting developer access from a team member through our social media channels.

And get funds to experiment with it (for example, by becoming a validator) 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.v2.nimiq-testnet.com/tapit

Contributing

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.

License

This project is licensed under the Apache License 2.0.

About

Rust implementation of the Albatross protocol

https://nimiq.com

License:Other


Languages

Language:Rust 98.3%Language:Python 1.1%Language:Shell 0.6%Language:Dockerfile 0.1%