0.2.7 • Published 3 years ago

gmocoin-api-node v0.2.7

Weekly downloads
83
License
MIT
Repository
github
Last release
3 years ago

gmocoin-api-node

API wrapper for the GMO Coin

Installation

yarn add gmocoin-api-node

Getting started

Import the module and create a new client instance.
Passing api keys is optional only if you don't plan on doing authenticated calls.

import { GmoCoinApi } from 'gmocoin-api-node';

(async function main() {
  const client = new GmoCoinApi({});

  try {
    const { data } = await client.getStatus();
    console.log(data.status);
  } catch (e) {
    console.log(e);
  }
})();

TODO

  • Support Public WebSocket API
  • Support Private WebSocket API

License

MIT

0.2.7

3 years ago

0.2.6

3 years ago

0.2.5

3 years ago

0.2.4

3 years ago

0.2.1

3 years ago

0.2.2

3 years ago

0.2.0

3 years ago

0.1.0

4 years ago