zinc-core 0.3.0

Core Rust library for Zinc Bitcoin + Ordinals wallet
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

/// Errors returned by ordinals API/parsing operations.
#[derive(Error, Debug)]
pub enum OrdError {
    /// HTTP request or payload parsing failed.
    #[error("API request failed: {0}")]
    RequestFailed(String),
}