1.0.14 • Published 5 years ago

nokuxapi v1.0.14

Weekly downloads
2
License
MIT
Repository
gitlab
Last release
5 years ago

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)
})
1.0.14

5 years ago

1.0.13

5 years ago

1.0.12

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago