gmocoin-api-node
TypeScript icon, indicating that this package has built-in type declarations

0.2.7 • Public • Published

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

Dependents (0)

Package Sidebar

Install

npm i gmocoin-api-node

Weekly Downloads

0

Version

0.2.7

License

MIT

Unpacked Size

75.1 kB

Total Files

31

Last publish

Collaborators

  • daikiojm