38 个版本
0.4.39 | 2023 年 12 月 1 日 |
---|---|
0.4.38 | 2023 年 11 月 27 日 |
0.4.27 | 2023 年 10 月 30 日 |
0.4.20 | 2023 年 9 月 28 日 |
0.2.5 | 2023 年 4 月 17 日 |
#1805 in 神奇豆子
185 每月下载量
用于 mutiny-data-recovery
800KB
18K SLoC
mutiny-core
mutiny 节点的核心 SDK。
cargo add mutiny-core
用法
use bitcoin::Network;
use mutiny_core::nodemanager::NodeManager;
async fn main() {
let nm = NodeManager::new(
"password".to_string(),
None,
None,
Some(Network::Testnet),
None,
None,
None,
).await.unwrap();
let address = nm.get_new_address().await.unwrap();
println!("Address: {}", address);
let tx_details_opt = nm.check_address(address).await.unwrap();
}
依赖项
~28–45MB
~719K SLoC