zinc-core 0.3.0

Core Rust library for Zinc Bitcoin + Ordinals wallet
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Ordinals integration primitives for `zinc-core`.
//!
//! Includes API clients, data types, error types, and PSBT protection helpers.

/// HTTP client helpers for ord server queries.
pub mod client;
/// Error types used by ordinals integrations.
pub mod error;
/// Ordinal Shield analysis and audit helpers.
pub mod shield;
/// Core ordinals domain models and serialization helpers.
pub mod types;

pub use client::*;
pub use error::*;
pub use shield::*;
pub use types::*;