node-bithumb
v2.1.0
Published
NodeJS wrapped for Bithumb API
Downloads
26
Maintainers
Readme
node-bithumb
- NodeJS wrapped for Bithumb API
- See NPM
Description
- Typescript Support
- SDK for bithumb API
How to Use
$ npm i --save node-bithumb
import ApiBithumb from "node-bithumb";
const BithumbApi = new ApiBithumb("apiKey", "secetKey", "BTC");
/** {httpMethod}{ApiEndpoint(to camel case)} [eg. post, order_detail => postOrderDetail()] */
const buyRes = await BithumbApi.postMarketBuy(10, "ETH");
const sellRes = await BithumbApi.postMarketSell(10, "ETH");