cardano_sdk/wallet/
mod.rs

1//! Wallet related stuff
2//!
3//! Contains 2 differents wallet:
4//!
5//! * Single: just a single key 'wallet'
6//! * Standard: a typical icarus style wallet using BIP39 HD principles
7
8pub mod address;
9pub mod single;
10pub mod standard;
11pub mod tx;
12pub mod utxo;