btcmarkets-australia
v1.1.1
Published
Typescript wrapper for BTCMarkets Exchange
Downloads
1
Maintainers
Readme
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 /examples
directory.