38 releases (8 breaking)

0.9.2 Aug 7, 2019
0.8.1 May 31, 2019
0.3.1 Mar 9, 2019
0.2.0 Oct 5, 2017
0.1.0 Jul 3, 2017

#112 in #chain

Download history 176/week @ 2024-12-16 136/week @ 2024-12-23 45/week @ 2024-12-30 72/week @ 2025-01-06 123/week @ 2025-01-13 115/week @ 2025-01-20 35/week @ 2025-01-27 252/week @ 2025-02-03 294/week @ 2025-02-10 153/week @ 2025-02-17 152/week @ 2025-02-24 65/week @ 2025-03-03 127/week @ 2025-03-10 86/week @ 2025-03-17 96/week @ 2025-03-24 76/week @ 2025-03-31

393 downloads per month
Used in 39 crates (5 directly)

GPL-3.0 license

34KB
932 lines

Rust Blockchain

crates.io Documentation

Rust Blockchain is an unopinioned blockchain framework that helps you to develop a blockchain project.

Chain

The chain module handles block import and state storage. Assumptions we have in this module:

  • We have Block, which consists of a hash, and has a parent block. It forms a chain.
  • At each Block there is a corresponding State.
  • An executor that takes a block, and parent block's state. Executing it should get the current block's state.

Dependencies