UNPKG

dvf-client-js

Version:

<img src="https://avatars1.githubusercontent.com/u/56512535?s=200&v=4" align="right" />

16 lines (10 loc) 374 B
const post = require('../lib/dvf/post-authenticated') const validateAssertions = require('../lib/validators/validateAssertions') module.exports = async (dvf, token, nonce, signature) => { if (token) { validateAssertions(dvf, {token}) } const endpoint = '/v1/trading/r/getDeposits' const data = {token} return post(dvf, endpoint, nonce, signature, data) }