Recent Posts
This month in RsNano 01/2023
Welcome to the fifth issue of This month in RsNano! RsNano is a Rust port of the original nano-node. This is a monthly summary of its progress and community. Want to get involved? We love contributions.
TLDR Not much happened because of vacation First development live stream was a success Next development live stream is scheduled Porting of class confirmation_height_unbounded is in progress Roughly 33% is ported This month we had:
read more
This month in RsNano 12/2022
Welcome to the fourth issue of This month in RsNano! RsNano is a Rust port of the original nano-node. This is a monthly summary of its progress and community. Want to get involved? We love contributions.
TLDR 32% ported Focus of this month was cleaninig up block validation and insertion Extracted resuable libraries Test suite runs 3x faster Dev live stream on January 10 Roughly 32% is ported This month we had:
read more
How to open the Nano ledger with Rust
Over the last few weeks I’ve been working on splitting RsNano into reusable libraries.The result currently looks like this:
This breakdown is still too simplistic and will be extended in the course of time. However, the extracted crates already allow working with the nano ledger!
To work with the ledger these crates can be used:
rsnano_core: Contains the basic types like BlockHash, Account, KeyPair,… rsnano_store_traits: Contains traits for the data stores.
read more