Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 707 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 707 Bytes

Luno API

NuGet Package

Getting Started

Install

Install-Package luno-api

Usage

using luno_api;
var client = new LunoClient(_privateKey, _publicKey);

var response = await client.GetTickers();
foreach (var ticker in response.Tickers)
{
    Console.WriteLine(ticker.Bid);
}

Missing

Still need to implement the methods for Sending bitcoin and for creating quotes