kadena 0.1.0

A comprehensive Rust library for interacting with Pact smart contracts and the Kadena blockchain.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Debug, Error)]
pub enum CommandError {
    #[error("Failed to serialize command: {0}")]
    SerializationError(#[from] serde_json::Error),
    #[error("Base64 decode error: {0}")]
    Base64Error(#[from] crate::crypto::CryptoError),
    #[error("Signing error: {0}")]
    SigningError(String),
}