Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xmr-rs/xmr

Monero node.
https://github.com/xmr-rs/xmr

blockchain cryptocurrency cryptonote monero node p2p proof-of-work rust xmr

Last synced: 17 days ago
JSON representation

Monero node.

Awesome Lists containing this project

README

        











# Xmr Monero node

Xmr is an implementation of the Monero cryptocurrency. It aims to be a full
Monero node with wallet functionality.

*This is a work in progress that is not yet functional*

## Building Xmr

Xmr is built with the [Cargo][1] package manager. First, ensure you have the
latest stable Rust version (it hasn't been tested with older Rust versions).
Then run this in the `xmr` repository folder:

[1]: https://crates.io/

```bash
cargo build
```

This will create the `dxmr` binary in the *target/debug* directory.

To build the binary optimized for release:

```bash
cargo build --release
```

## License
Some parts of the code are GPLv3 due to them being base on the `parity-bitcoin` code.
However the code that isn't related to the `parity-bitcoin` code is licensed under
the MIT or Apache 2.0 at your option.