UNPKG

dvf-client-js

Version:

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

8 lines (6 loc) 257 B
const { post } = require('request-promise') module.exports = async (dvf, withdrawalData) => { const url = dvf.config.api + '/v1/trading/w/fastWithdrawal' const json = await dvf.createFastWithdrawalPayload(withdrawalData) return post(url, { json }) }