node-dsx-api
Version:
Node api for DSX.uk crypto exchange
33 lines (25 loc) • 514 B
Markdown
`npm install node-dsx-api`
```
import { DsxExchange } from "../api/index";
const dsx = new DsxExchange({
verbose: true,
secretKey: "...",
apiKey: "..."
});
(async () => {
const res = await dsx.orderBook("BTCUSD");
//...
})();
```
* Promises native support
* Public market data
* Reports and History
* Orders, place and cancel
* Client information
* Deposits, only transfer status
MIT license