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

#126 in #executor

Download history 111/week @ 2023-12-04 194/week @ 2023-12-11 162/week @ 2023-12-18 140/week @ 2023-12-25 113/week @ 2024-01-01 189/week @ 2024-01-08 153/week @ 2024-01-15 163/week @ 2024-01-22 214/week @ 2024-01-29 133/week @ 2024-02-05 105/week @ 2024-02-12 199/week @ 2024-02-19 234/week @ 2024-02-26 169/week @ 2024-03-04 164/week @ 2024-03-11 189/week @ 2024-03-18

759 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.

lib.rs:

General block framework.

Dependencies