feat(): Added all missing examples

This commit is contained in:
Jerko J
2024-06-20 13:51:58 +02:00
parent 6ecc0bd34d
commit 6b6b6f5e13
28 changed files with 548 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
// https://api.bybit.com/v5/ins-loan/ltv-convert
const { RestClientV5 } = require('bybit-api');
const client = new RestClientV5({
testnet: true,
key: 'apikey',
secret: 'apisecret',
});
client
.getInstitutionalLendingLTVWithLadderConversionRate()
.then((response) => {
console.log(response);
})
.catch((error) => {
console.error(error);
});