#luno #crypto #bitcoin #api

luno_sdk

unofficial rust wrapper for the Luno API

3 releases

0.1.2 Sep 2, 2020
0.1.1 Sep 1, 2020
0.1.0 Aug 31, 2020

#5 in #luno

Download history 17/week @ 2024-02-26 51/week @ 2024-04-01

51 downloads per month

MIT license

28KB
598 lines

luno_api_sdk

SDK in Rust for accessing the Luno exchange API.

This is an unofficial Rust API Wrapper for accessing the Luno Exchange API. Please read the License.

  • This module is a work in progress and is by no means ready to use in production.
  • This module is made for educational purposes and is not meant to be used in a real cryptocurrency trading application.
  • Any financial losses resulting from the use of this module, are solely the responsibility of the persons involved.

supported methods: (last updated: 17-08-2020)

  • create_account()
  • update_account()
  • list_pending_transactions()
  • list_balances()
  • get_ticker()
  • get_tickers()
  • list_trades_market()
  • get_orderbook_top()
  • get_orderbook()
  • list_beneficiaries
  • get_fee_info()
  • list_orders()
  • list_trades_user()
  • get_order()
  • create_quote()
  • get_quote()
  • get_receive_address()
  • create_receive_address()
  • list_withdrawawl_requests()
  • get_withdrawal()
  • send()
  • request_withdrawal()
  • cancel_withdrawal()
  • exercise_quote()
  • discard_quote()
  • post_market_order()
  • post_limit_order()
  • stop_order()

todo:

  • add unit tests
  • add integration tests
  • refactor method functionality
  • refactor as crate

example of use:

use luno_sdk::LunoClient;
use luno_sdk::Market;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {

    let luno_client = LunoClient::new("api_key_id", "api_key_secret");

    let resp = luno_client.get_ticker("XBTEUR");
    println!("received reponse: {}", resp.await?.text().await?);

    Ok(())
}

Dependencies

~7–12MB
~240K SLoC