A Rust SDK for working with XRP Ledger APIs.
This project is an unofficial, community-driven effort.
The SDK contains the following high-level crates:
Additionally, low-level crates are provided:
Finally, a convenient CLI is provided to demonstrate example usage:
let client = Client::new();
let account = env::var("XRPL_ACCOUNT_ADDRESS").expect("account not defined");
let req = AccountTxRequest::new(&account).limit(5);
let resp = client.call(req).await;
dbg!(&resp);
let mut client = Client::connect(DEFAULT_WS_URL)
.await
.expect("cannot connect");
let account = env::var("XRPL_ACCOUNT_ADDRESS").expect("account not defined");
let req = AccountInfoRequest::new(&account).strict(true);
client.call(req).await.expect("cannot send request");
if let Some(msg) = client.messages.next().await {
dbg!(&msg);
}
The following crates have no_std
support:
This work is under active development (pre-alpha) and the API is expected to change. It's not considered ready for use in production.
Pull requests, issues and comments are welcome! Make sure to add tests for new features and bug fixes.
This work is licensed under the Apache-2.0 License. See LICENSE.txt or https://spdx.org/licenses/Apache-2.0.html for details.
Copyright © 2022 Georgios Moschovitis.