Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 803 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 803 Bytes

bithumb.js

Bithumb exchange api wrapper

npm version Build Status Standard - JavaScript Style Guide

Installation

npm install bithumb.js

Usage

const Bithumb = require('bithumb.js')
const bithumb = new Bithumb('YOUR_KEY', 'YOUR_SECRET');

(async function () {
  const orderBook = await bithumb.getOrderbook('ALL')
  console.log(orderBook)
}())

See example.js for the implemented methods

Bithumb Api docs