A strongly-typed client for the XRP Ledger HTTP JSONRPC API.
This crate is an unofficial, community-driven effort.
More information about this crate can be found in the crate documentation.
toml
[dependencies]
xrpl_sdk_jsonrpc = "0.6"
```rust let client = Client::new();
let account = env::var("XRPLACCOUNTADDRESS").expect("account not defined");
let req = AccountTxRequest::new(&account).limit(5); let resp = client.call(req).await;
dbg!(&resp); ```
This work is under active development and the API is expected to change.
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.