The official Orionx SDK for JavaScript
Usage
First you need to install it via npm.
npm install orionx-sdk --save
Then you will need to get your credentials, follow this tutorial
After that we are ready to go
Code example
import Orionx from 'orionx-sdk'
Orionx.setCredentials({
apiKey: '<apiKey>',
secretKey: '<secretKey>',
apiUriL '<https://apiUri.com/graphql>'
})
Orionx.market({code: 'LTCBTC'})
.then(function(market) {
console.log(market)
})
.catch(function(err) {
console.log(err)
})
Methods
me
The me()
method returns yours user data.
await Orionx.me()
market
The market()
method returns the info of a specified market.
await Orionx.market({code: ':marketCode'})
Params
code: Market code
markets
The markets()
method returns the info of all the markets.
await Orionx.markets()
Docs
For further information about, visit our Docs
Opening Issues
If you encounter a bug with the Orionx SDK for JavaScript we would like to hear about it. Search the existing issues and try to make sure your problem doesn’t already exist before opening a new issue. It’s helpful if you include the version of the SDK, Node.js and OS you’re using.
License
This project is licensed under the MIT License - see the LICENSE.md file for details