fabric-sdk 0.2.2

Interact and program chaincode for the Hyperledger Fabric blockchain network
Documentation
#[allow(dead_code)]
mod fabric {
    pub mod common;
    pub mod gateway;
    pub mod msp;
    pub mod orderer;
    pub mod protos;
    pub mod queryresult;
}
pub mod chaincode;
pub mod error;
pub mod gateway;
pub mod identity;
pub mod signer;
pub(crate) mod transaction;

pub mod prelude{
    pub use fabric_sdk_derives as derives;
    pub use derives::*;

    pub use tokio;
    pub use serde_json;
    pub use crate::chaincode::context::Context;
}