#blockchain #distributed #ledger #store #dde #data-structures

a_block_chain

A-Block Chain is a distributed blockchain store with a dual double entry (DDE) data structure

7 releases (stable)

1.3.0 Feb 21, 2024
1.2.2 Jan 23, 2024
1.0.0 Nov 29, 2023
0.1.0 Nov 27, 2023

#101 in #ledger

Download history 36/week @ 2024-01-09 2/week @ 2024-01-16 5/week @ 2024-01-23 2/week @ 2024-02-13 156/week @ 2024-02-20 29/week @ 2024-02-27 9/week @ 2024-03-05 40/week @ 2024-03-12 2/week @ 2024-03-26 8/week @ 2024-04-02

51 downloads per month

GPL-3.0 license

1MB
7K SLoC


A-Block Chain

Pipeline Status Cargo Crates Version

The blockchain that powers the A-Block tech stack

Official documentation »

The Chain repo contains all the code needed to set up and interact with a local instance of the A-Block chain.

简体中文 | Español | عربي | Deutsch | Français

..

Getting Started

Running Chain assumes you have Rust installed and are using a Unix system. You can clone this repo and run the Makefile to set everything up for a development environment:

make
cargo build
cargo test

..

Use

Blockchain can be added to your project as a dependency by adding the following to your Cargo.toml file:

[dependencies]
a_block_chain = "0.1.0"

Or alternatively, via command line:

cargo add a_block_chain

Running cargo run --bin main from a repo clone will currently list all assets on the local instance. Chain is not generally intended to be used directly though, and is instead intended to be used from other programs that require access to the blockchain data structure.

Dependencies

~14–31MB
~519K SLoC