Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 924 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 924 Bytes

cryptopia.js

Cryptopia exchange api wrapper

npm version Build Status Standard - JavaScript Style Guide

Installation

npm install cryptopia.js

Usage

const Cryptopia = require('cryptopia.js')
const cryptopia = new Cryptopia('YOUR_KEY', 'YOUR_SECRET');

(async function () {
  const orderBook = await cryptopia.GetMarketOrders('DOT_BTC', 50)
  console.log(orderBook)
}())

See example.js for the implemented methods

Cryptopia Api docs