jlib

Crates.iojlib
lib.rsjlib
version0.3.7
sourcesrc
created_at2019-08-08 05:17:06.013447
updated_at2020-05-12 04:21:24.896108
descriptionA lightweight blockchain lib.
homepage
repositoryhttps://github.com/zTgx/jlib-rs.git
max_upload_size
id154931
size378,829
(zTgx)

documentation

README

jlib-rs Build Status crate

Lightweight blockchain lib for Skywelld write in Rust.


/// Request blockchain server status
let config = Config::new(TEST_SERVER, true);
ServerInfo::new().request_server_info(config.clone(), |x| match x {
    Ok(response) => {
        println!("build_version : {:?}", response.build_version);
    }

    Err(_) => {
    }
});

Introduction

Homepage

API Documentation

Getting Started

For detailed installation and usage instructions, check out the guide.

More examples

More examples can be found in the examples directory and the full documentation can be found here.

Contributing

Please report bugs and make feature requests here.

If you're looking for inspiration, there's list of open issues right here on github.

And hey, did you know you can also contribute by just starring the project here on github :)

Changelog

Release notes are available in CHANGELOG.md.

Commit count: 462

cargo fmt