Socket
Socket
Sign inDemoInstall

nokuxapi

Package Overview
Dependencies
2
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    nokuxapi

Noku Exchange API sdk


Version published
Weekly downloads
14
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Noku Exchange API sdk

Noku Logo

API documentation

Read the Noku Exchange api documentation

Example usage

const NokuApi = require('nokuxapi')
let api = new NokuApi({
  token: process.env.API_TOKEN,
  domain: 'api.noku.exchange', // use devapi.noku.exchange to access the beta exchange instance
  streaming: 'streaming.noku.exchange' // use devstreaming.noku.exchange to access the beta exchange instance
})

let start = async () => {
  await api.closeAll('ETHEUR')
  console.log(await api.orderCreate('ETHEUR', 'limit', '117.86', '10', 'bid'))
}

start().then(console.log, function (err) {
  console.log(err)
  process.exit(1)
})

Keywords

FAQs

Last updated on 03 Jun 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc