Crates.io | a_block_chain |
lib.rs | a_block_chain |
version | 1.3.0 |
source | src |
created_at | 2023-11-27 13:44:21.407442 |
updated_at | 2024-02-21 09:54:31.960725 |
description | A-Block Chain is a distributed blockchain store with a dual double entry (DDE) data structure. |
homepage | https://a-block.io |
repository | https://github.com/ABlockOfficial/Chain |
max_upload_size | |
id | 1050430 |
size | 877,692 |
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
..
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
..
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.