Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/xmr-rs/xmr
- Owner: xmr-rs
- License: apache-2.0
- Created: 2018-02-04T19:53:45.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-09-27T19:41:03.000Z (about 4 years ago)
- Last Synced: 2024-10-13T19:25:39.951Z (about 1 month ago)
- Topics: blockchain, cryptocurrency, cryptonote, monero, node, p2p, proof-of-work, rust, xmr
- Language: C
- Size: 1.15 MB
- Stars: 30
- Watchers: 6
- Forks: 9
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
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.