Asset

Documentation on interacting with ByBit's Asset API functions through the PENDAX Javascript SDK.

Get Coin Exchange Records

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/exchange

Function name:

getCoinExchangeRecords(options)

Usage:

import { createExchange } from "./exchanges/exchange.js";

  let myByBitAccount = createExchange({
      exchange: "bybit",
      authenticate: "true",
      key: "myKeys",
      secret: "mySecret",
      label: "bybit",
      testnet: "false"
});



async function getCoinExchangeRecords(exchange, options) {
    try {
        let result = await exchange.getCoinExchangeRecords(options);
        console.log(result);
    } catch (error) {
        console.log(error.message);
    }
}

const result = await getCoinExchangeRecords(myByBitAccount);

Get Delivery Record

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/delivery

Function name:

Usage:

Get USDC Session Settlement

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/settlement

Function name:

Usage:

Get Asset Info

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/asset-info

Function name:

Usage:

Get All Coins Balance

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/all-balance

Function name:

Usage:

Get Single Coin Balance

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/account-coin-balance

Function name:

Usage:

Get Transferable Coin

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/transferable-coin

Function name:

Usage:

Create Internal Transfer

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/create-inter-transfer

Function name:

Usage:

Get Internal Transfer Records

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/inter-transfer-list

Function name:

Usage:

Get Sub UID

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/sub-uid-list

Function name:

Usage:

Enable Universal Transfer for Sub UID

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/enable-unitransfer-subuid

Function name:

Usage:

Create Universal Transfer

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/unitransfer

Function name:

Usage:

Get Universal Transfer Records

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/unitransfer-list

Function name:

Usage:

Get Allowed Deposit Coin Info

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/deposit-coin-spec

Function name:

Usage:

Set Deposit Account

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/set-deposit-acct

Function name:

Usage:

Get Deposit Records (on-chain)

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/deposit-record

Function name:

Usage:

Get Sub Deposit Records (on-chain)

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/sub-deposit-record

Function name:

Usage:

Get Internal Deposit Records (off-chain)

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/internal-deposit-record

Function name:

Usage:

Get Master Deposit Address

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/master-deposit-addr

Function name:

Usage:

Get Sub Deposit Address

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/sub-deposit-addr

Function name:

Usage:

Get Coin Info

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/coin-info

Function name:

Usage:

Get Withdrawal Records

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/withdraw-record

Function name:

Usage:

Get Withdrawal Records

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/delay-amount

Function name:

Usage:

Withdraw

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/withdraw

Function name:

Usage:

Cancel Withdrawal

Please refer to the official ByBit API Docs for the required parameters.

https://bybit-exchange.github.io/docs/v5/asset/cancel-withdraw

Function name:

Usage:

Last updated