- NodeJS wrapped for Bithumb API
- See NPM
- Typescript Support
- SDK for bithumb API
$ npm i --save node-bithumbimportApiBithumbfrom"node-bithumb";/** 'apiKey', 'secretKey', 'payment currency (krw, btc, eth, etc..)' */constBithumbApi=newApiBithumb("apiKey","secretKey","BTC");/** {httpMethod}{ApiEndpoint(to camel case)} [eg. post, order_detail => postOrderDetail()] */constbuyRes=awaitBithumbApi.postMarketBuy(10,"ETH");constsellRes=awaitBithumbApi.postMarketSell(10,"ETH");