Crates.io | xrpl_http_client |
lib.rs | xrpl_http_client |
version | 0.16.5 |
source | src |
created_at | 2023-08-17 10:22:59.84497 |
updated_at | 2024-09-16 05:40:44.092763 |
description | A strongly-typed client for the XRP Ledger JSONRPC API |
homepage | |
repository | https://github.com/gmosx/xrpl-sdk-rust/tree/main/xrpl_http_client |
max_upload_size | |
id | 946872 |
size | 30,950 |
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.
[dependencies]
xrpl_http_client = "0.12"
let client = Client::new();
let account = "...";
let req = AccountTxRequest::new(&account).limit(5);
let resp = client.call(req).await;
dbg!(&resp);
let client = Client::new();
let account = "...";
let public_key = "...";
let secret_key = "...";
let offer_sequence = 123; // the sequence of the offer to cancel
let tx = Transaction::offer_cancel(account, offer_sequence);
let tx = client.prepare_transaction(tx).await?;
let public_key = hex::decode(public_key)?;
let secret_key = hex::decode(secret_key)?;
let tx = sign_transaction(tx, &public_key, &secret_key);
let tx_blob = serialize_transaction_to_hex(&tx);
let req = SubmitRequest::new(&tx_blob);
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.