Skip to content

Coac/bithumb.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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