hyperhasher

Crates.iohyperhasher
lib.rshyperhasher
version0.1.2
sourcesrc
created_at2022-06-11 17:41:06.340459
updated_at2022-07-19 15:42:40.868959
descriptionA VERY light blockchain library
homepagehttps://github.com/AtomicGamer9523/Hyperhasher
repositoryhttps://github.com/AtomicGamer9523/Hyperhasher
max_upload_size
id604158
size5,903
Матвей Т (AtomicGamer9523)

documentation

https://github.com/AtomicGamer9523/Hyperhasher/blob/main/docs/index.md

README

Hyper-Hasher

A Simple BlockChain Library for rust and js

Examples

const {Block, Chain} = require('hyperhasher');

let chain = new Chain();

let block = new Block("DATA_FOR_THE_BLOCK",chain);

chain.push(block);
use hyperhasher::{Block, Chain};

fn main() {
    let mut chain = Chain::new();
    let block = Block::new("DATA_FOR_THE_BLOCK",&chain);
    chain.push(block);
}
Commit count: 41

cargo fmt