v0.5.2-pre.005

This commit is contained in:
2026-08-10 19:12:13 +02:00
parent b8e6751747
commit e3acb8ceb1
13 changed files with 1276 additions and 90 deletions

View File

@@ -1,5 +1,5 @@
// file: ks-wallet/src/lib.rs
// version: 7
// version: 8
//! Wallet boundary for local key storage and transaction signing.
#![warn(missing_docs)]
@@ -10,6 +10,7 @@ mod constants;
mod manager;
mod native;
mod password;
mod transfer;
mod unlocked;
mod wallet;
@@ -21,6 +22,8 @@ pub use self::manager::WalletFileHandle;
pub use self::manager::WalletManager;
/// Explicit non-clonable password supplied to native wallet operations.
pub use self::password::WalletPassword;
/// Explicit secret import/export format supported by the wallet boundary.
pub use self::transfer::WalletTransferFormat;
/// Authenticated signing capability for one unlocked persistent wallet.
pub use self::unlocked::UnlockedWallet;
/// Solana keypair kept private inside the wallet boundary.