0.3.33 • Published 2 years ago

hex-client-api v0.3.33

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

HexClientApi

Hex APIs Node JS helper.

For full API specification please contact Hex Trust Ops Team

Client API Docs see ./docs folder

To install:

npm i hex-client-api

To try it out:

const { HexClientApi } = require('hex-client-api');
(async () => {
  const hexClient = new HexClientApi('api-domain', 'api-key-id', 'api secret');
  await hexClient.get('api-route');
})();