BlockBid Australia Wrapper
Typescript / Node wrapper for the APIs offered by BlockBid Australia
Setup
Install the dependancies with npm / yarn.
npm install blockbid --save
API Key
TODO
Usage
The API wrapper exposes several classes, Accounts
, Apis
, Deposits
, Markets
, Orders
and Withdraws
. Each class has methods for each API Endpoint as specified in the BlockBid API Documentation.
Exposed Functions
Authentication is required for some functions within each class. When requesting public end-points API Keys aren't required.
Accounts
methods are withinaccounts.ts
Apis
methods are withinapis.ts
Deposits
methods are withindeposits.ts
Markets
methods are withinmarkets.ts
Orders
methods are withinorders.ts
Withdraws
methods are withinwithdraws.ts
Example
Examples for usage of each function can be found within the examples folder.
; // Public Method; bb.orders.markets .then .catch; // Private Method; bbPrivate.orders.order112233 .then .catch;