@gateway.fm/gtw-dvf-client-js
Version:
DVF client js lib with gateway.fm rpc endpoints
16 lines (10 loc) • 374 B
JavaScript
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)
}