harmoniis-wallet 0.1.46

Smart-contract wallet for the Harmoniis decentralised marketplace (RGB contracts, Witness-backed bearer state, Webcash fees)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Webcash types re-exported from [`webylib`].
//!
//! The harmoniis-wallet crate depends on webylib internally. This module
//! re-exports the commonly used types so that consumers (backend, agent)
//! only need to depend on harmoniis-wallet.

pub use webylib::amount::Amount;
pub use webylib::error::Error as WebcashError;
pub use webylib::hd::HDWallet as WebcashHDWallet;
pub use webylib::server::ServerClient as WebcashServerClient;
pub use webylib::wallet::{Wallet as WebcashWallet, WalletSnapshot as WebcashWalletSnapshot};
pub use webylib::webcash::{PublicWebcash, SecretWebcash};
pub use webylib::ChainCode as WebcashChainCode;