feat(): add asset samples

This commit is contained in:
tiagosiebler
2023-06-09 12:07:10 +01:00
parent 6e3fe4c4ad
commit f739ec8550
26 changed files with 451 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
const { RestClientV5 } = require('bybit-api');
const client = new RestClientV5({
testnet: true,
key: 'apikey',
secret: 'apisecret',
});
client
.createUniversalTransfer({
transferId: 'be7a2462-1138-4e27-80b1-62653f24925e',
coin: 'ETH',
amount: '0.5',
fromMemberId: 592334,
toMemberId: 691355,
fromAccountType: 'CONTRACT',
toAccountType: 'UNIFIED',
})
.then((response) => {
console.log(response);
})
.catch((error) => {
console.error(error);
});