cex-as-promised
Version:
CEX.io API on a promise
32 lines (22 loc) • 608 B
Markdown
# cex-as-promised
async / promise-based CEX.io API client
[](https://travis-ci.org/sdd/cex-as-promised)
Can be configured by environment vars as well as object passed to constructor
```javascript
const CEXIO = require('cex-as-promised');
const cexio = new CEXIO({
clientId: 'cex client',
key: 'Ive got the key',
secret: 'Ive got the secret',
ccy1: 'BTC',
ccy2: 'EUR'
});
```
Or pass any combination of the fields above and the following env vars:
```
CEXIO_CLIENT_ID
CEXIO_KEY
CEXIO_SECRET
CEXIO_CCY_1
CEXIO_CCY_2
```