Wallet (Spot)
Documentation on interacting with Bitget's Spot Market Wallet API functions through the PENDAX Javascript SDK.
All Spot Market Wallet API endpoints require authentication. Please create Bitget API keys to interact with these functions successfully. Accounts must be funded or collateralized for any trades to successfully post.
Transfer
Function name:
spotWalletTransfer()Usage:
import { createExchange } from "./exchanges/exchange.js";
let myBitgetAccount = createExchange({
exchange: "bitget",
authenticate: "true",
key: "myKeys",
secret: "mySecret",
passphrase: "myPassphrase",
label: "bitget",
marginType: "usdt"
});
async function spotWalletTransfer(exchange) {
try {
let result = await exchange.spotWalletTransfer();
console.log(result);
} catch (error) {
console.log(error.message);
}
}
const result = await spotWalletTransfer(myBitgetAccount,
{
fromType: "spot",
toType: "mix_usdt",
amount: "0.1",
coin: "USDT"
})Sub Transfer
Function name:
Usage:
Get Coin Address
Function name:
Usage:
Withdraw
This function is under construction
Function name:
Usage:
Inner Withdraw
Function name:
Usage:
Get Withdraw List
Function name:
Usage:
Get Deposit List
Function name:
Usage:
Last updated