Files
bybit-api/examples/apidoc/V5/Asset/confirm-convert-quote.js
Jerko J 06476e6dd6 feat(): Update per release notes as of 17th July, 2024
- added convert endpoints
- added examples for those endpoints
- minor param/response changes based on release notes
2024-07-17 14:16:40 +02:00

19 lines
339 B
JavaScript

const { RestClientV5 } = require('bybit-api');
const client = new RestClientV5({
testnet: true,
key: 'apikey',
secret: 'apisecret',
});
client
.confirmConvertQuote({
quoteTxId: '10100108106409343501030232064',
})
.then((response) => {
console.log(response);
})
.catch((error) => {
console.error(error);
});