2 releases
0.1.2 | Jun 10, 2023 |
---|---|
0.1.1 | Apr 14, 2023 |
0.1.0 |
|
#3 in #xrp
40KB
1K
SLoC
xrpl
A multithreaded websocket client library for interacting with the xrp ledger's json rpc. At its core, the client maintains a single websocket connection, but is able to make atomic requests to the json rpc with a single function call, or make subscriptions with a function that returns a listener for incoming messages. These features are implemented using the websocket implementation by tokio-tungstenite
, as well as using channels implemented by tokio::sync
.
Roadmap
- connect to the ledger, and make basic rpc requests ✅
- open and maintain a websocket connection to the ledger ✅
- make atomic json rpc requests for info ✅
- make subscription requests with dedicated listeners ✅
- implement wallets
- create a new wallet from entropy
- derive a wallet from seed
- implement transactions
- create typesafe transaction builder
- sign transactions with wallet
Usage
This client library was written to be as close to the javascript client as possible. A common example with the javascript library would be as follows:
import { Client } from "xrpl";
async function main() {
const client = new Client("wss://xrpl.ws");
const res = await client.request({
command: "account_info",
account: "r...",
});
console.log(res);
}
Using this client, the same request may be performed as:
use xrpl::{XrplClient, request};
#[tokio::main]
async fn main() {
let account = "r..."; // an xrpl address
let client = XrplClient::new("wss://xrpl.ws").await.unwrap();
let server_info = client.request(request::AccountInfo { account: "r...".into(), ..Default::default() }).await;
println!("{server_info}");
}
Subscriptions, on the other hand, are handled somewhat differently. In javascript, a subscription would look look something like:
import { Client } from "xrpl";
async function main() {
const client = new Client("wss://xrpl.ws");
const subscription_res = await client.request({
command: "subscribe",
streams: ["ledger"],
});
console.log(subscription_res); // an acknowledgement message wiht some relevant data
client.on("ledgerClosed", (msg) => console.log(msg)); // the actual messages, delivered via a callback
}
In this library, the same subscription would look something like this
async fn main() {
let client = XrplClient::new("wss://xrpl.ws").await.unwrap();
let (subscription_res, receiver) = client.request(subscription::LedgerClosed).await;
println!("{subscription_res:?}"); // the acknowledgement message with data etc...
loop {
let msg = receiver.recv().await;
match msg {
Ok(msg) => println!("{msg:#?}"), // the actual messages
Err(e) => {
eprintln!("{e:#?}");
break;
}
}
}
}
The receiver is implemented using mpsc::broadcast, and as such can be quite trivially cloned through receiver.resubscribe()
, or even moved into a different thread etc.
Dependencies
~6–16MB
~221K SLoC