8个版本
0.2.3 | 2022年3月13日 |
---|---|
0.2.2 | 2022年3月13日 |
0.2.1 | 2021年11月14日 |
0.1.3 | 2021年10月6日 |
0.1.2 | 2021年9月2日 |
在#submit中排名19
每月下载34次
8KB
164 代码行
txlog_client
txlog客户端的Rust实现
安装
可以通过cargo安装 txlog_client
用法
let url = "https://txlog.twetch.app".to_string();
let secret = "<jwt-goes-here>".to_string();
let txid = "b719054c19e96eba236b59056d7c66d64dac3a604a4d032594ae2b567e26a47d".to_string();
// create txlog client instance
let txlog = txlog_client::new(url, secret);
// fetch a rawtx
let rawtx = txlog.rawtx(txid).await.unwrap();
// get information about a transaction
let data = txlog.tx(txid).await.unwrap();
// submit a transaction
let submitted txlog.submit(rawtx, "based twetch").await.unwrap();
lib.rs
:
txlog客户端实现
提供从txlog服务器读取和写入比特币交易的功能
依赖项
~3–7.5MB
~170K SLoC