an-node / dusk-blockchain

Reference implementation of the DUSK Network node, written in Golang

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dusk Network Node

Official reference implementation of the DUSK Network protocol in Golang.

Actions Status codecov Go Report Card PkgGoDev

Specification Requirements

Minimum Specifications

CPU RAM Storage Network Connection
2 cores; 2 GHz 1 GB 60 GB 1 Mbps

Recommended Specifications

CPU RAM Storage Network Connection
4 cores; 2 GHz 4 GB 250 GB 10 Mbps

Installation Guide

This guide is for building the node from source. If you would like to just download the compiled program, head over to the releases page, which should include a pre-built DUSK node, and a pre-built wallet executable.

NOTE: This guide assumes you are building and running from a UNIX-like operating system. The node is not tested on Windows.

Requirements

Go 1.17 or newer.

Installation

First, download the codebase and it's dependencies into your $GOPATH by running:

go get github.com/dusk-network/dusk-blockchain

Then, navigate to the testnet folder, like so:

cd $GOPATH/src/github.com/dusk-network/dusk-blockchain

To build the binary, simply run:

make build

Finally, to start your node, type:

./bin/dusk --config=dusk.toml

Wallet

The wallet is hosted in a separate folder, found here.

Building the wallet

The wallet is automatically built when running make build. You can then execute it by typing:

./bin/wallet

Running the wallet

Alternatively, to build and run the wallet in a single command, simply type:

make wallet

How to use the wallet

The wallet will show you a menu with available options, that you can navigate with the arrow keys and the enter key.

Note that the wallet is a seperate process from the node, and thus closing the wallet does not stop the node from running.

License

The Dusk Network blockchain client is licensed under the MIT License. See the license file for details.

Contributing

Please see the contribution guidelines for details.

About

Reference implementation of the DUSK Network node, written in Golang

License:MIT License


Languages

Language:Go 98.0%Language:Shell 1.2%Language:Makefile 0.6%Language:JavaScript 0.2%