1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! # Usage
//!
//! ```rust
//! use hdwallet_filecoin::{new_mnemonic, SecretKey};
//!
//! let mnemonic = new_mnemonic().unwrap();
//! println!("{}", mnemonic);
//! let seed = mnemonic.to_seed("");
//!
//! let sk = SecretKey::from_seed_bls(&seed).unwrap();
//! let pk = sk.public_key();
//! println!("{}", pk.address());
//!
//! let msg = b"hello world";
//! let sig = sk.sign(msg).unwrap();
//!
//! assert!(sig.verify(msg, &pk).is_ok());
//! ```
//mod wallet;
pub use Address;
pub use ;
pub use SigType;
pub use PublicKey;
pub use SecretKey;
pub use Signature;
pub use ;
pub use LocalWallet;