lasersell-sdk 1.1.0

Rust SDK for the LaserSell API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Rust SDK for the LaserSell API.
//!
//! The crate is organized by module:
//! - `exit_api`: HTTP client for building unsigned buy/sell transactions.
//! - `stream`: realtime websocket client and session helpers.
//! - `tx`: signing and transaction submission helpers.
//! - `retry`: shared retry and timeout utilities.

/// LaserSell API client and request/response types.
pub mod exit_api;
pub use exit_api::{prove_ownership, WalletProof};
/// Retry and timeout helpers used across the SDK.
pub mod retry;
/// Realtime stream client, protocol types, and session state helpers.
pub mod stream;
/// Transaction signing and submission helpers.
pub mod tx;