hubert 0.5.0

Secure distributed substrate for multiparty transactions using write-once key-value storage with ARID-based addressing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Hybrid-specific errors.
#[derive(Debug, thiserror::Error)]
pub enum Error {
    #[error("Referenced IPFS content not found")]
    ContentNotFound,

    #[error("Not a reference envelope")]
    NotReferenceEnvelope,

    #[error("Invalid ARID in reference envelope")]
    InvalidReferenceArid,

    #[error("No id assertion found in reference envelope")]
    NoIdAssertion,
}