#soroban #stellar #smart-contracts #client-server #rpc-server #rust

soroban-client

A high-level library Rust client library for interacting with Soroban smart contracts on the Stellar blockchain

20 releases

new 0.3.2 Apr 15, 2024
0.3.0 Mar 30, 2024
0.2.9 Mar 24, 2024
0.2.1 Oct 14, 2023
0.1.4 Jul 20, 2023

#325 in Magic Beans

Download history 6/week @ 2024-01-22 7/week @ 2024-02-05 32/week @ 2024-02-12 7/week @ 2024-02-19 147/week @ 2024-02-26 14/week @ 2024-03-04 22/week @ 2024-03-11 351/week @ 2024-03-18 208/week @ 2024-03-25 52/week @ 2024-04-01

634 downloads per month

Apache-2.0 and LGPL-3.0+

42KB
939 lines

Rust Soroban Client Library

Crates.io Crates.io Crates.io publish workflow

drawing

A Rust client library for interacting with Soroban smart contracts on the Stellar blockchain

This project is currently in early development and is not yet functional. It is a work in progress and is subject to significant changes, including the addition or removal of features and modifications to its functionality.

Quickstart

Add this to your Cargo.toml:

[dependencies]
soroban-client = "0.3.1"

And this to your code:

use soroban_client::*;

Description

The library is composed of 3 components:

  1. rs-stellar-xdr: a low-level library for encoding/decoding XDR data. This has already been developed by the Stellar Core team.
  2. rs-stellar-base: a library that offers a comprehensive set of functions for reading, writing, hashing, and signing primitive XDR constructs utilized in the Stellar network. It provides a nice abstraction for building and signing transactions.
  3. rs-soroban-client: A high-level rust library that serves as client-side API for Horizon client. Useful for communicating with a Soroban RPC server.

This library will enable developers to seamlessly integrate Soroban functionality into their Rust-based applications and services. Most of the groundwork has already been laid by the Stellar team by building the xdr library and rust stellar strkey implementation. This particular library has been the missing piece for soroban and the rust community at large in the stellar ecosystem.

Sample Usage of the library

// Submitting a transaction
use soroban_client::Server;
use soroban_client::Networks;
use soroban_client::TransactionBuilder;
use soroban_client::Keypair;

#[tokio::main]
async fn main() {
    let server = Server::new("http://localhost:8000/soroban/rpc").unwrap();
    let public_key = "..."; // Replace with the actual public key
    let secret_string = "..."; // Replace with the actual secret key
    let contract_id = "..."; // Replace with the actual contract ID

    let account = server.get_account(public_key).await.unwrap();

    // Fee hardcoded for this example.
    let fee = 100;

    let contract = Contract::new(contract_id).unwrap();

    let mut transaction = TransactionBuilder::new(&account, fee, Networks::STANDALONE)
        .add_operation(
            // An operation to call increment on the contract
            contract.call("increment").unwrap(),
        )
        .set_timeout(30)
        .build();

    // Simulate the transaction to discover the storage footprint, and update the
    // transaction to include it. If you already know the storage footprint you
    // can use `add_footprint` to add it yourself, skipping this step.
    transaction = server.prepare_transaction(transaction).await.unwrap();

    // Sign the transaction
    let secret_key = Keypair::from_secret(secret_string).unwrap();
    transaction.sign(&secret_key);

    match server.send_transaction(transaction).await {
        Ok(transaction_result) => {
            println!("{:?}", transaction_result);
        }
        Err(err) => {
            eprintln!("{:?}", err);
        }
    }
}

Practical Use Case

Suppose someone wants to build a trading bot targeting a DEX built on Soroban itself. This bot executes a large number of trades within a short period, often leveraging market inefficiencies and price discrepancies. A Rust client library for Soroban would provide the person with a performant toolset to build trading algorithms, interact with the Stellar network, and execute trades with minimal latency.

Authors

Rahul Soshte (Twitter)

Dependencies

~15–33MB
~501K SLoC