btwallet 4.0.1

Bittensor wallet — Substrate-based key management, encryption, and signing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod config;
mod constants;
pub mod errors;
pub mod keyfile;
pub mod keypair;
#[cfg(feature = "python-bindings")]
mod python_bindings;
pub mod utils;
pub mod wallet;

pub use config::Config;
pub use errors::{ConfigurationError, KeyFileError, PasswordError};
pub use keyfile::Keyfile;
pub use keypair::Keypair;
pub use wallet::Wallet;