8 个版本
0.1.7 | 2022 年 5 月 16 日 |
---|---|
0.1.6 | 2022 年 4 月 12 日 |
0.1.5 | 2022 年 3 月 30 日 |
0.1.1 | 2022 年 2 月 19 日 |
0.1.0 | 2022 年 1 月 6 日 |
#6 在 #xrp
每月 41 次下载
155KB
2.5K SLoC
一个公开与 XRP 账本交互方法的客户端。
示例用法
use std::convert::TryInto;
use xrpl_rs::{XRPL, transports::HTTP, types::account::AccountInfoRequest, types::CurrencyAmount};
use tokio_test::block_on;
// Create a new XRPL client with the HTTP transport.
let xrpl = XRPL::new(
HTTP::builder()
.with_endpoint("http://s1.ripple.com:51234/")
.unwrap()
.build()
.unwrap());
// Create a request
let mut req = AccountInfoRequest::default();
req.account = "rG1QQv2nh2gr7RCZ1P8YYcBUKCCN633jCn".to_owned();
// Fetch the account info for an address.
let account_info = block_on(async {
xrpl
.account_info(req)
.await
.unwrap()
});
assert_eq!(account_info.account_data.balance, CurrencyAmount::xrp(9977));
依赖项
~18–35MB
~515K SLoC