1.1.1 • Published 5 years ago

btcmarkets-australia v1.1.1

Weekly downloads
3
License
WTFPL
Repository
github
Last release
5 years ago

Build Status Coverage Status Dependencies

BTCMarkets Wrapper

Typescript / Node wrapper for the Market, Public, Account and Trade APIs offered by BTCMarkets

Setup

Install the dependancies with npm / yarn.

npm install btcmarkets-australia --save

API Key

In order to utilise the private functions you'll need to generate an API Key with BTCMarkets.

Usage

If using public methods api keys don't need to be passed to the constructor.

import { BTCMarkets } from 'btcmarkets-australia';

const btcm = new BTCMarkets('myPublicApiKey', 'myPrivateApiKey');

Examples

Examples of usage can be found in the /examplesdirectory.