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

#116 in #chain

Download history 212/week @ 2024-12-08 209/week @ 2024-12-15 133/week @ 2024-12-22 24/week @ 2024-12-29 84/week @ 2025-01-05 130/week @ 2025-01-12 117/week @ 2025-01-19 36/week @ 2025-01-26 241/week @ 2025-02-02 288/week @ 2025-02-09 162/week @ 2025-02-16 155/week @ 2025-02-23 65/week @ 2025-03-02 126/week @ 2025-03-09 90/week @ 2025-03-16 81/week @ 2025-03-23

367 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