Skip to content

Coac/cryptopia.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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