webylib 0.3.20

Webcash HD wallet library — bearer e-cash with BIP32-style key derivation, SQLite storage, AES-256-GCM encryption, and full C FFI for cross-platform SDKs
Documentation
1
2
3
4
5
6
7
8
9
//! Asset-generic wallet operations.
//!
//! Each op is parameterised over [`crate::WalletAsset`] and holds no
//! flavor-specific code. Per-flavor wallet crates wrap these ops with
//! their concrete type and any flavor-only side effects (`pay` for a
//! splittable asset; `transfer` for a non-splittable one — the
//! splittable-only ops are statically gated by additional bounds).

pub mod recover;