taproot-assets 0.0.2

High-level Rust SDK bundling Taproot-Asset types, RPC client, and more.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! High-level convenience API for Taproot Assets.
//!
//! Re-export low-level crates and.

#![cfg_attr(not(feature = "std"), no_std)]

/// Re-export of taproot-assets-core for backend implementations.
pub use taproot_assets_core as core;

#[cfg(feature = "rpc")]
pub use taproot_assets_rpc as rpc;

/// Host-side verification helpers backed by bitcoin/secp256k1.
pub mod verify;