fabric-sdk 0.5.3

Interact and program chaincode for the Hyperledger Fabric blockchain network
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// This mod contains general functions used across different implementations
pub mod crypto;
#[cfg(any(feature = "client", feature = "client-wasm"))]
pub(crate) mod grpc_error;
/// Implementation for the Envelope proto struct
pub mod envelope;
/// Implementation for the Header proto struct
pub mod header;
/// Implementation for the Payload proto struct
pub mod payload;
/// Implementation for the Proposal proto struct
pub mod proposal;
/// Implementation for the SignedProposal proto struct
pub mod signed_proposal;
/// Implementation for the Transaction proto struct
pub mod transaction;