ecash-client 0.1.0

Client SDK for eCash protocol with wallet functionality
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod api;
pub mod error;
pub mod qr;
pub mod storage;
pub mod wallet;

pub use api::ApiClient;
pub use error::{ClientError, Result};
pub use qr::QrCodeGenerator;
pub use storage::{StoredToken, TokenStatus, WalletStorage};
pub use wallet::Wallet;