1.0.0 • Published 7 years ago

cryptopia.js v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

cryptopia.js

Cryptopia exchange api wrapper

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