diff --git a/.gitignore b/.gitignore index 623f721..0581dc7 100644 --- a/.gitignore +++ b/.gitignore @@ -6,5 +6,6 @@ util/config.js coverage/ yarn-error.log lib/* +testfile.ts privaterepotracker restClientRegex.ts \ No newline at end of file diff --git a/docs/endpointFunctionList.md b/docs/endpointFunctionList.md index ca7d1c8..6cdaf77 100644 --- a/docs/endpointFunctionList.md +++ b/docs/endpointFunctionList.md @@ -50,422 +50,422 @@ This table includes all endpoints from the official Exchange API docs and corres | Function | AUTH | HTTP Method | Endpoint | | -------- | :------: | :------: | -------- | -| [testConnectivity()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L571) | | GET | `api/v3/ping` | -| [getExchangeInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L575) | | GET | `api/v3/exchangeInfo` | -| [getOrderBook()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L595) | | GET | `api/v3/depth` | -| [getRecentTrades()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L599) | | GET | `api/v3/trades` | -| [getHistoricalTrades()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L603) | | GET | `api/v3/historicalTrades` | -| [getAggregateTrades()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L607) | | GET | `api/v3/aggTrades` | -| [getKlines()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L613) | | GET | `api/v3/klines` | -| [getUIKlines()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L617) | | GET | `api/v3/uiKlines` | -| [getAvgPrice()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L621) | | GET | `api/v3/avgPrice` | -| [get24hrChangeStatististics()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L625) | | GET | `api/v3/ticker/24hr` | -| [getTradingDayTicker()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L650) | | GET | `api/v3/ticker/tradingDay` | -| [getSymbolPriceTicker()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L656) | | GET | `api/v3/ticker/price` | -| [getSymbolOrderBookTicker()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L662) | | GET | `api/v3/ticker/bookTicker` | -| [getRollingWindowTicker()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L668) | | GET | `api/v3/ticker` | -| [getOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L696) | :closed_lock_with_key: | GET | `api/v3/order` | -| [cancelOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L700) | :closed_lock_with_key: | DELETE | `api/v3/order` | -| [cancelAllSymbolOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L704) | :closed_lock_with_key: | DELETE | `api/v3/openOrders` | -| [getOpenOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L719) | :closed_lock_with_key: | GET | `api/v3/openOrders` | -| [getAllOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L723) | :closed_lock_with_key: | GET | `api/v3/allOrders` | -| [submitNewOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L730) | :closed_lock_with_key: | POST | `api/v3/order/oco` | -| [submitNewOrderListOTO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L747) | :closed_lock_with_key: | POST | `api/v3/orderList/oto` | -| [submitNewOrderListOTOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L757) | :closed_lock_with_key: | POST | `api/v3/orderList/otoco` | -| [cancelOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L767) | :closed_lock_with_key: | DELETE | `api/v3/orderList` | -| [getOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L772) | :closed_lock_with_key: | GET | `api/v3/orderList` | -| [getAllOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L776) | :closed_lock_with_key: | GET | `api/v3/allOrderList` | -| [getAllOpenOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L783) | :closed_lock_with_key: | GET | `api/v3/openOrderList` | -| [submitNewSOROrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L790) | :closed_lock_with_key: | POST | `api/v3/sor/order` | -| [testNewSOROrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L801) | :closed_lock_with_key: | POST | `api/v3/sor/order/test` | -| [getAccountInformation()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L817) | :closed_lock_with_key: | GET | `api/v3/account` | -| [getAccountTradeList()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L821) | :closed_lock_with_key: | GET | `api/v3/myTrades` | -| [getOrderRateLimit()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L827) | :closed_lock_with_key: | GET | `api/v3/rateLimit/order` | -| [getPreventedMatches()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L831) | :closed_lock_with_key: | GET | `api/v3/myPreventedMatches` | -| [getAllocations()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L837) | :closed_lock_with_key: | GET | `api/v3/myAllocations` | -| [getCommissionRates()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L841) | :closed_lock_with_key: | GET | `api/v3/account/commission` | -| [getCrossMarginCollateralRatio()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L851) | :closed_lock_with_key: | GET | `sapi/v1/margin/crossMarginCollateralRatio` | -| [getAllCrossMarginPairs()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L860) | | GET | `sapi/v1/margin/allPairs` | -| [getIsolatedMarginAllSymbols()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L864) | :closed_lock_with_key: | GET | `sapi/v1/margin/isolated/allPairs` | -| [getAllMarginAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L870) | | GET | `sapi/v1/margin/allAssets` | -| [getMarginDelistSchedule()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L874) | :closed_lock_with_key: | GET | `sapi/v1/margin/delist-schedule` | -| [getIsolatedMarginTierData()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L878) | :closed_lock_with_key: | GET | `sapi/v1/margin/isolatedMarginTier` | -| [queryMarginPriceIndex()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L884) | | GET | `sapi/v1/margin/priceIndex` | -| [getMarginAvailableInventory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L890) | :closed_lock_with_key: | GET | `sapi/v1/margin/available-inventory` | -| [getLeverageBracket()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L896) | :closed_lock_with_key: | GET | `sapi/v1/margin/leverageBracket` | -| [getNextHourlyInterestRate()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L906) | :closed_lock_with_key: | GET | `sapi/v1/margin/next-hourly-interest-rate` | -| [getMarginInterestHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L912) | :closed_lock_with_key: | GET | `sapi/v1/margin/interestHistory` | -| [submitMarginAccountBorrowRepay()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L919) | :closed_lock_with_key: | POST | `sapi/v1/margin/borrow-repay` | -| [getMarginAccountBorrowRepayRecords()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L925) | :closed_lock_with_key: | GET | `sapi/v1/margin/borrow-repay` | -| [getMarginInterestRateHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L931) | :closed_lock_with_key: | GET | `sapi/v1/margin/interestRateHistory` | -| [queryMaxBorrow()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L937) | :closed_lock_with_key: | GET | `sapi/v1/margin/maxBorrowable` | -| [getMarginForceLiquidationRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L949) | :closed_lock_with_key: | GET | `sapi/v1/margin/forceLiquidationRec` | -| [getSmallLiabilityExchangeCoins()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L958) | :closed_lock_with_key: | GET | `sapi/v1/margin/exchange-small-liability` | -| [getSmallLiabilityExchangeHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L962) | :closed_lock_with_key: | GET | `sapi/v1/margin/exchange-small-liability-history` | -| [marginAccountCancelOpenOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L974) | :closed_lock_with_key: | DELETE | `sapi/v1/margin/openOrders` | -| [marginAccountCancelOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L980) | :closed_lock_with_key: | DELETE | `sapi/v1/margin/orderList` | -| [marginAccountCancelOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L985) | :closed_lock_with_key: | DELETE | `sapi/v1/margin/order` | -| [marginAccountNewOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L991) | :closed_lock_with_key: | POST | `sapi/v1/margin/order/oco` | -| [getMarginOrderCountUsage()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1006) | :closed_lock_with_key: | GET | `sapi/v1/margin/rateLimit/order` | -| [queryMarginAccountAllOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1012) | :closed_lock_with_key: | GET | `sapi/v1/margin/allOrderList` | -| [queryMarginAccountAllOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1018) | :closed_lock_with_key: | GET | `sapi/v1/margin/allOrders` | -| [queryMarginAccountOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1024) | :closed_lock_with_key: | GET | `sapi/v1/margin/orderList` | -| [queryMarginAccountOpenOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1028) | :closed_lock_with_key: | GET | `sapi/v1/margin/openOrderList` | -| [queryMarginAccountOpenOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1035) | :closed_lock_with_key: | GET | `sapi/v1/margin/openOrders` | -| [queryMarginAccountOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1039) | :closed_lock_with_key: | GET | `sapi/v1/margin/order` | -| [queryMarginAccountTradeList()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1043) | :closed_lock_with_key: | GET | `sapi/v1/margin/myTrades` | -| [submitSmallLiabilityExchange()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1049) | :closed_lock_with_key: | POST | `sapi/v1/margin/exchange-small-liability` | -| [submitManualLiquidation()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1056) | :closed_lock_with_key: | POST | `sapi/v1/margin/manual-liquidation` | -| [submitMarginOTOOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1065) | :closed_lock_with_key: | POST | `sapi/v1/margin/order/oto` | -| [submitMarginOTOCOOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1077) | :closed_lock_with_key: | POST | `sapi/v1/margin/order/otoco` | -| [createMarginSpecialLowLatencyKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1090) | :closed_lock_with_key: | POST | `sapi/v1/margin/apiKey` | -| [deleteMarginSpecialLowLatencyKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1096) | :closed_lock_with_key: | DELETE | `sapi/v1/margin/apiKey` | -| [updateMarginIPForSpecialLowLatencyKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1104) | :closed_lock_with_key: | PUT | `sapi/v1/margin/apiKey/ip` | -| [getMarginSpecialLowLatencyKeys()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1115) | :closed_lock_with_key: | GET | `sapi/v1/margin/api-key-list` | -| [getMarginSpecialLowLatencyKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1124) | :closed_lock_with_key: | GET | `sapi/v1/margin/apiKey` | -| [getCrossMarginTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1137) | :closed_lock_with_key: | GET | `sapi/v1/margin/transfer` | -| [queryMaxTransferOutAmount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1143) | :closed_lock_with_key: | GET | `sapi/v1/margin/maxTransferable` | -| [updateCrossMarginMaxLeverage()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1155) | :closed_lock_with_key: | POST | `sapi/v1/margin/max-leverage` | -| [disableIsolatedMarginAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1161) | :closed_lock_with_key: | DELETE | `sapi/v1/margin/isolated/account` | -| [enableIsolatedMarginAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1168) | :closed_lock_with_key: | POST | `sapi/v1/margin/isolated/account` | -| [getBNBBurn()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1175) | :closed_lock_with_key: | GET | `sapi/v1/bnbBurn` | -| [getMarginSummary()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1179) | :closed_lock_with_key: | GET | `sapi/v1/margin/tradeCoeff` | -| [queryCrossMarginAccountDetails()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1183) | :closed_lock_with_key: | GET | `sapi/v1/margin/account` | -| [getCrossMarginFeeData()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1187) | :closed_lock_with_key: | GET | `sapi/v1/margin/crossMarginData` | -| [getIsolatedMarginAccountLimit()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1193) | :closed_lock_with_key: | GET | `sapi/v1/margin/isolated/accountLimit` | -| [getIsolatedMarginAccountInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1200) | :closed_lock_with_key: | GET | `sapi/v1/margin/isolated/account` | -| [getIsolatedMarginFeeData()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1206) | :closed_lock_with_key: | GET | `sapi/v1/margin/isolatedMarginData` | -| [toggleBNBBurn()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1212) | :closed_lock_with_key: | POST | `sapi/v1/bnbBurn` | -| [getMarginCapitalFlow()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1220) | :closed_lock_with_key: | GET | `sapi/v1/margin/capital-flow` | -| [queryLoanRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1229) | :closed_lock_with_key: | GET | `sapi/v1/margin/loan` | -| [queryRepayRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1238) | :closed_lock_with_key: | GET | `sapi/v1/margin/repay` | -| [isolatedMarginAccountTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1247) | :closed_lock_with_key: | POST | `sapi/v1/margin/isolated/transfer` | -| [getBalances()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1259) | :closed_lock_with_key: | GET | `sapi/v1/capital/config/getall` | -| [withdraw()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1262) | :closed_lock_with_key: | POST | `sapi/v1/capital/withdraw/apply` | -| [getWithdrawHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1266) | :closed_lock_with_key: | GET | `sapi/v1/capital/withdraw/history` | -| [getWithdrawAddresses()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1272) | :closed_lock_with_key: | GET | `sapi/v1/capital/withdraw/address/list` | -| [getDepositHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1276) | :closed_lock_with_key: | GET | `sapi/v1/capital/deposit/hisrec` | -| [getDepositAddress()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1280) | :closed_lock_with_key: | GET | `sapi/v1/capital/deposit/address` | -| [getDepositAddresses()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1286) | :closed_lock_with_key: | GET | `sapi/v1/capital/deposit/address/list` | -| [submitDepositCredit()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1292) | :closed_lock_with_key: | POST | `sapi/v1/capital/deposit/credit-apply` | -| [getAutoConvertStablecoins()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1298) | :closed_lock_with_key: | GET | `sapi/v1/capital/contract/convertible-coins` | -| [setConvertibleCoins()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1302) | :closed_lock_with_key: | POST | `sapi/v1/capital/contract/convertible-coins` | -| [getAssetDetail()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1315) | :closed_lock_with_key: | GET | `sapi/v1/asset/assetDetail` | -| [getWalletBalances()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1321) | :closed_lock_with_key: | GET | `sapi/v1/asset/wallet/balance` | -| [getUserAsset()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1325) | :closed_lock_with_key: | POST | `sapi/v3/asset/getUserAsset` | -| [submitUniversalTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1329) | :closed_lock_with_key: | POST | `sapi/v1/asset/transfer` | -| [getUniversalTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1335) | :closed_lock_with_key: | GET | `sapi/v1/asset/transfer` | -| [getDust()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1341) | :closed_lock_with_key: | POST | `sapi/v1/asset/dust-btc` | -| [convertDustToBnb()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1345) | :closed_lock_with_key: | POST | `sapi/v1/asset/dust` | -| [getDustLog()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1349) | :closed_lock_with_key: | GET | `sapi/v1/asset/dribblet` | -| [getAssetDividendRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1353) | :closed_lock_with_key: | GET | `sapi/v1/asset/assetDividend` | -| [getTradeFee()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1357) | :closed_lock_with_key: | GET | `sapi/v1/asset/tradeFee` | -| [getFundingAsset()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1361) | :closed_lock_with_key: | POST | `sapi/v1/asset/get-funding-asset` | -| [getCloudMiningHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1365) | :closed_lock_with_key: | GET | `sapi/v1/asset/ledger-transfer/cloud-mining/queryByPage` | -| [getDelegationHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1375) | :closed_lock_with_key: | GET | `sapi/v1/asset/custody/transfer-history` | -| [submitNewFutureAccountTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1405) | :closed_lock_with_key: | POST | `sapi/v1/futures/transfer` | -| [getFutureAccountTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1415) | :closed_lock_with_key: | GET | `sapi/v1/futures/transfer` | -| [getCrossCollateralBorrowHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1424) | :closed_lock_with_key: | GET | `sapi/v1/futures/loan/borrow/history` | -| [getCrossCollateralRepaymentHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1430) | :closed_lock_with_key: | GET | `sapi/v1/futures/loan/repay/history` | -| [getCrossCollateralWalletV2()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1436) | :closed_lock_with_key: | GET | `sapi/v2/futures/loan/wallet` | -| [getAdjustCrossCollateralLTVHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1442) | :closed_lock_with_key: | GET | `sapi/v1/futures/loan/adjustCollateral/history` | -| [getCrossCollateralLiquidationHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1453) | :closed_lock_with_key: | GET | `sapi/v1/futures/loan/liquidationHistory` | -| [getCrossCollateralInterestHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1461) | :closed_lock_with_key: | GET | `sapi/v1/futures/loan/interestHistory` | -| [getAccountInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1473) | :closed_lock_with_key: | GET | `sapi/v1/account/info` | -| [getDailyAccountSnapshot()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1477) | :closed_lock_with_key: | GET | `sapi/v1/accountSnapshot` | -| [disableFastWithdrawSwitch()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1483) | :closed_lock_with_key: | POST | `sapi/v1/account/disableFastWithdrawSwitch` | -| [enableFastWithdrawSwitch()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1487) | :closed_lock_with_key: | POST | `sapi/v1/account/enableFastWithdrawSwitch` | -| [getAccountStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1491) | :closed_lock_with_key: | GET | `sapi/v1/account/status` | -| [getApiTradingStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1495) | :closed_lock_with_key: | GET | `sapi/v1/account/apiTradingStatus` | -| [getApiKeyPermissions()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1499) | :closed_lock_with_key: | GET | `sapi/v1/account/apiRestrictions` | -| [getSystemStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1517) | | GET | `sapi/v1/system/status` | -| [getDelistSchedule()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1521) | :closed_lock_with_key: | GET | `sapi/v1/spot/delist-schedule` | -| [createVirtualSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1531) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/virtualSubAccount` | -| [getSubAccountList()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1537) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/list` | -| [subAccountEnableFutures()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1543) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/futures/enable` | -| [subAccountEnableMargin()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1547) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/margin/enable` | -| [enableOptionsForSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1551) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/eoptions/enable` | -| [subAccountEnableLeverageToken()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1557) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/blvt/enable` | -| [getSubAccountStatusOnMarginOrFutures()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1563) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/status` | -| [getSubAccountFuturesPositionRisk()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1569) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/futures/positionRisk` | -| [getSubAccountFuturesPositionRiskV2()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1577) | :closed_lock_with_key: | GET | `sapi/v2/sub-account/futures/positionRisk` | -| [getSubAccountTransactionStatistics()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1583) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/transaction-statistics` | -| [getSubAccountIPRestriction()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1598) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/subAccountApi/ipRestriction` | -| [subAccountDeleteIPList()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1607) | :closed_lock_with_key: | DELETE | `sapi/v1/sub-account/subAccountApi/ipRestriction/ipList` | -| [subAccountAddIPRestriction()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1616) | :closed_lock_with_key: | POST | `sapi/v2/sub-account/subAccountApi/ipRestriction` | -| [subAccountAddIPList()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1629) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/subAccountApi/ipRestriction/ipList` | -| [subAccountEnableOrDisableIPRestriction()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1642) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/subAccountApi/ipRestriction` | -| [subAccountFuturesTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1657) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/futures/transfer` | -| [getSubAccountFuturesAccountDetail()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1663) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/futures/account` | -| [getSubAccountDetailOnFuturesAccountV2()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1669) | :closed_lock_with_key: | GET | `sapi/v2/sub-account/futures/account` | -| [getSubAccountDetailOnMarginAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1675) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/margin/account` | -| [getSubAccountDepositAddress()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1681) | :closed_lock_with_key: | GET | `sapi/v1/capital/deposit/subAddress` | -| [getSubAccountDepositHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1687) | :closed_lock_with_key: | GET | `sapi/v1/capital/deposit/subHisrec` | -| [getSubAccountFuturesAccountSummary()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1693) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/futures/accountSummary` | -| [getSubAccountSummaryOnFuturesAccountV2()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1697) | :closed_lock_with_key: | GET | `sapi/v2/sub-account/futures/accountSummary` | -| [getSubAccountsSummaryOfMarginAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1706) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/margin/accountSummary` | -| [subAccountMarginTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1710) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/margin/transfer` | -| [getSubAccountAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1716) | :closed_lock_with_key: | GET | `sapi/v3/sub-account/assets` | -| [getSubAccountAssetsMaster()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1722) | :closed_lock_with_key: | GET | `sapi/v4/sub-account/assets` | -| [getSubAccountFuturesAssetTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1728) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/futures/internalTransfer` | -| [getSubAccountSpotAssetTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1737) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/sub/transfer/history` | -| [getSubAccountSpotAssetsSummary()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1743) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/spotSummary` | -| [getSubAccountUniversalTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1749) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/universalTransfer` | -| [subAccountFuturesAssetTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1755) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/futures/internalTransfer` | -| [subAccountTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1764) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/transfer/subUserHistory` | -| [subAccountTransferToMaster()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1773) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/transfer/subToMaster` | -| [subAccountTransferToSameMaster()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1779) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/transfer/subToSub` | -| [subAccountUniversalTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1785) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/universalTransfer` | -| [depositAssetsIntoManagedSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1797) | :closed_lock_with_key: | POST | `sapi/v1/managed-subaccount/deposit` | -| [getManagedSubAccountDepositAddress()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1803) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/deposit/address` | -| [withdrawAssetsFromManagedSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1812) | :closed_lock_with_key: | POST | `sapi/v1/managed-subaccount/withdraw` | -| [getManagedSubAccountTransfersParent()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1818) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/queryTransLogForTradeParent` | -| [getManagedSubAccountTransferLog()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1830) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/query-trans-log` | -| [getManagedSubAccountTransfersInvestor()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1842) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/queryTransLogForInvestor` | -| [getManagedSubAccounts()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1854) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/info` | -| [getManagedSubAccountSnapshot()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1861) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/accountSnapshot` | -| [getManagedSubAccountAssetDetails()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1870) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/asset` | -| [getManagedSubAccountMarginAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1876) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/marginAsset` | -| [getManagedSubAccountFuturesAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1882) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/fetch-future-asset` | -| [getAutoInvestAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1897) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/all/asset` | -| [getAutoInvestSourceAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1904) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/source-asset/list` | -| [getAutoInvestTargetAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1913) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/target-asset/list` | -| [getAutoInvestTargetAssetsROI()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1922) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/target-asset/roi/list` | -| [getAutoInvestIndex()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1931) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/index/info` | -| [getAutoInvestPlans()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1937) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/plan/list` | -| [submitAutoInvestOneTimeTransaction()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1955) | :closed_lock_with_key: | POST | `sapi/v1/lending/auto-invest/one-off` | -| [updateAutoInvestPlanStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1971) | :closed_lock_with_key: | POST | `sapi/v1/lending/auto-invest/plan/edit-status` | -| [updateAutoInvestmentPlanOld()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1985) | :closed_lock_with_key: | POST | `sapi/v1/lending/auto-invest/plan/edit` | -| [updateAutoInvestmentPlan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1991) | :closed_lock_with_key: | POST | `sapi/v1/lending/auto-invest/plan/edit` | -| [submitAutoInvestRedemption()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2008) | :closed_lock_with_key: | POST | `sapi/v1/lending/auto-invest/redeem` | -| [getAutoInvestSubscriptionTransactions()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2016) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/history/list` | -| [getOneTimeTransactionStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2022) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/one-off/status` | -| [submitAutoInvestmentPlanOld()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2035) | :closed_lock_with_key: | POST | `sapi/v1/lending/auto-invest/plan/add` | -| [submitAutoInvestmentPlan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2041) | :closed_lock_with_key: | POST | `sapi/v1/lending/auto-invest/plan/add` | -| [getAutoInvestRedemptionHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2056) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/redeem/history` | -| [getAutoInvestPlan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2065) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/plan/id` | -| [getAutoInvestUserIndex()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2069) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/index/user-summary` | -| [getAutoInvestRebalanceHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2078) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/rebalance/history` | -| [getConvertPairs()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2093) | :closed_lock_with_key: | GET | `sapi/v1/convert/exchangeInfo` | -| [getConvertAssetInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2097) | :closed_lock_with_key: | GET | `sapi/v1/convert/assetInfo` | -| [convertQuoteRequest()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2107) | :closed_lock_with_key: | POST | `sapi/v1/convert/getQuote` | -| [acceptQuoteRequest()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2111) | :closed_lock_with_key: | POST | `sapi/v1/convert/acceptQuote` | -| [getConvertTradeHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2115) | :closed_lock_with_key: | GET | `sapi/v1/convert/tradeFlow` | -| [getOrderStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2119) | :closed_lock_with_key: | GET | `sapi/v1/convert/orderStatus` | -| [submitConvertLimitOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2123) | :closed_lock_with_key: | POST | `sapi/v1/convert/limit/placeOrder` | -| [cancelConvertLimitOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2127) | :closed_lock_with_key: | POST | `sapi/v1/convert/limit/cancelOrder` | -| [getConvertLimitOpenOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2131) | :closed_lock_with_key: | GET | `sapi/v1/convert/limit/queryOpenOrders` | -| [getEthStakingAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2146) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/account` | -| [getEthStakingAccountV2()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2150) | :closed_lock_with_key: | GET | `sapi/v2/eth-staking/account` | -| [getEthStakingQuota()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2154) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/eth/quota` | -| [subscribeEthStakingV1()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2167) | :closed_lock_with_key: | POST | `sapi/v1/eth-staking/eth/stake` | -| [subscribeEthStakingV2()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2173) | :closed_lock_with_key: | POST | `sapi/v2/eth-staking/eth/stake` | -| [redeemEth()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2179) | :closed_lock_with_key: | POST | `sapi/v1/eth-staking/eth/redeem` | -| [wrapBeth()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2183) | :closed_lock_with_key: | POST | `sapi/v1/eth-staking/wbeth/wrap` | -| [getEthStakingHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2193) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/eth/history/stakingHistory` | -| [getEthRedemptionHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2203) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/eth/history/redemptionHistory` | -| [getBethRewardsHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2213) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/eth/history/rewardsHistory` | -| [getWbethRewardsHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2223) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/eth/history/wbethRewardsHistory` | -| [getEthRateHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2232) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/eth/history/rateHistory` | -| [getBethWrapHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2242) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/wbeth/history/wrapHistory` | -| [getBethUnwrapHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2252) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/wbeth/history/unwrapHistory` | -| [getStakingProducts()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2265) | :closed_lock_with_key: | GET | `sapi/v1/staking/productList` | -| [getStakingProductPosition()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2276) | :closed_lock_with_key: | GET | `sapi/v1/staking/position` | -| [getStakingHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2288) | :closed_lock_with_key: | GET | `sapi/v1/staking/stakingRecord` | -| [getPersonalLeftQuotaOfStakingProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2295) | :closed_lock_with_key: | GET | `sapi/v1/staking/personalLeftQuota` | -| [getSolStakingAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2308) | :closed_lock_with_key: | GET | `sapi/v1/sol-staking/account` | -| [getSolStakingQuota()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2312) | :closed_lock_with_key: | GET | `sapi/v1/sol-staking/sol/quota` | -| [subscribeSolStaking()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2322) | :closed_lock_with_key: | POST | `sapi/v1/sol-staking/sol/stake` | -| [redeemSol()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2328) | :closed_lock_with_key: | POST | `sapi/v1/sol-staking/sol/redeem` | -| [getSolStakingHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2338) | :closed_lock_with_key: | GET | `sapi/v1/sol-staking/sol/history/stakingHistory` | -| [getSolRedemptionHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2348) | :closed_lock_with_key: | GET | `sapi/v1/sol-staking/sol/history/redemptionHistory` | -| [getBnsolRewardsHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2358) | :closed_lock_with_key: | GET | `sapi/v1/sol-staking/sol/history/bnsolRewardsHistory` | -| [getBnsolRateHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2369) | :closed_lock_with_key: | GET | `sapi/v1/sol-staking/sol/history/rateHistory` | -| [getFuturesLeadTraderStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2385) | :closed_lock_with_key: | GET | `sapi/v1/copyTrading/futures/userStatus` | -| [getFuturesLeadTradingSymbolWhitelist()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2389) | :closed_lock_with_key: | GET | `sapi/v1/copyTrading/futures/leadSymbol` | -| [getMiningAlgos()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2401) | | GET | `sapi/v1/mining/pub/algoList` | -| [getMiningCoins()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2405) | | GET | `sapi/v1/mining/pub/coinList` | -| [getHashrateResales()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2409) | :closed_lock_with_key: | GET | `sapi/v1/mining/hash-transfer/config/details/list` | -| [getMiners()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2418) | :closed_lock_with_key: | GET | `sapi/v1/mining/worker/list` | -| [getMinerDetails()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2422) | :closed_lock_with_key: | GET | `sapi/v1/mining/worker/detail` | -| [getExtraBonuses()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2428) | :closed_lock_with_key: | GET | `sapi/v1/mining/payment/other` | -| [getMiningEarnings()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2434) | :closed_lock_with_key: | GET | `sapi/v1/mining/payment/list` | -| [cancelHashrateResaleConfig()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2440) | :closed_lock_with_key: | POST | `sapi/v1/mining/hash-transfer/config/cancel` | -| [getHashrateResale()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2449) | :closed_lock_with_key: | GET | `sapi/v1/mining/hash-transfer/profit/details` | -| [getMiningAccountEarnings()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2458) | :closed_lock_with_key: | GET | `sapi/v1/mining/payment/uid` | -| [getMiningStatistics()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2464) | :closed_lock_with_key: | GET | `sapi/v1/mining/statistics/user/status` | -| [submitHashrateResale()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2470) | :closed_lock_with_key: | POST | `sapi/v1/mining/hash-transfer/config` | -| [getMiningAccounts()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2474) | :closed_lock_with_key: | GET | `sapi/v1/mining/statistics/user/list` | -| [submitVpNewOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2486) | :closed_lock_with_key: | POST | `sapi/v1/algo/futures/newOrderVp` | -| [submitTwapNewOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2493) | :closed_lock_with_key: | POST | `sapi/v1/algo/futures/newOrderTwap` | -| [cancelAlgoOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2500) | :closed_lock_with_key: | DELETE | `sapi/v1/algo/futures/order` | -| [getAlgoSubOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2506) | :closed_lock_with_key: | GET | `sapi/v1/algo/futures/subOrders` | -| [getAlgoOpenOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2512) | :closed_lock_with_key: | GET | `sapi/v1/algo/futures/openOrders` | -| [getAlgoHistoricalOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2519) | :closed_lock_with_key: | GET | `sapi/v1/algo/futures/historicalOrders` | -| [submitSpotAlgoTwapOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2532) | :closed_lock_with_key: | POST | `sapi/v1/algo/spot/newOrderTwap` | -| [cancelSpotAlgoOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2539) | :closed_lock_with_key: | DELETE | `sapi/v1/algo/spot/order` | -| [getSpotAlgoSubOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2545) | :closed_lock_with_key: | GET | `sapi/v1/algo/spot/subOrders` | -| [getSpotAlgoOpenOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2551) | :closed_lock_with_key: | GET | `sapi/v1/algo/spot/openOrders` | -| [getSpotAlgoHistoricalOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2558) | :closed_lock_with_key: | GET | `sapi/v1/algo/spot/historicalOrders` | -| [getCryptoLoanFlexibleCollateralAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2573) | :closed_lock_with_key: | GET | `sapi/v2/loan/flexible/collateral/data` | -| [getCryptoLoanFlexibleAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2582) | :closed_lock_with_key: | GET | `sapi/v2/loan/flexible/loanable/data` | -| [borrowCryptoLoanFlexible()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2595) | :closed_lock_with_key: | POST | `sapi/v2/loan/flexible/borrow` | -| [repayCryptoLoanFlexible()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2601) | :closed_lock_with_key: | POST | `sapi/v2/loan/flexible/repay` | -| [adjustCryptoLoanFlexibleLTV()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2607) | :closed_lock_with_key: | POST | `sapi/v2/loan/flexible/adjust/ltv` | -| [getCryptoLoanFlexibleLTVAdjustmentHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2619) | :closed_lock_with_key: | GET | `sapi/v2/loan/flexible/ltv/adjustment/history` | -| [getLoanFlexibleBorrowHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2631) | :closed_lock_with_key: | GET | `sapi/v2/loan/flexible/borrow/history` | -| [getCryptoLoanFlexibleOngoingOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2640) | :closed_lock_with_key: | GET | `sapi/v2/loan/flexible/ongoing/orders` | -| [getLoanFlexibleRepaymentHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2649) | :closed_lock_with_key: | GET | `sapi/v2/loan/flexible/repay/history` | -| [getCryptoLoanLoanableAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2664) | :closed_lock_with_key: | GET | `sapi/v1/loan/loanable/data` | -| [getCryptoLoanCollateralRepayRate()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2671) | :closed_lock_with_key: | GET | `sapi/v1/loan/repay/collateral/rate` | -| [getCryptoLoanCollateralAssetsData()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2677) | :closed_lock_with_key: | GET | `sapi/v1/loan/collateral/data` | -| [getCryptoLoansIncomeHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2686) | :closed_lock_with_key: | GET | `sapi/v1/loan/income` | -| [borrowCryptoLoan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2698) | :closed_lock_with_key: | POST | `sapi/v1/loan/borrow` | -| [repayCryptoLoan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2704) | :closed_lock_with_key: | POST | `sapi/v1/loan/repay` | -| [adjustCryptoLoanLTV()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2710) | :closed_lock_with_key: | POST | `sapi/v1/loan/adjust/ltv` | -| [customizeCryptoLoanMarginCall()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2716) | :closed_lock_with_key: | POST | `sapi/v1/loan/customize/margin_call` | -| [getCryptoLoanOngoingOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2729) | :closed_lock_with_key: | GET | `sapi/v1/loan/ongoing/orders` | -| [getCryptoLoanBorrowHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2736) | :closed_lock_with_key: | GET | `sapi/v1/loan/borrow/history` | -| [getCryptoLoanLTVAdjustmentHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2743) | :closed_lock_with_key: | GET | `sapi/v1/loan/ltv/adjustment/history` | -| [getCryptoLoanRepaymentHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2752) | :closed_lock_with_key: | GET | `sapi/v1/loan/repay/history` | -| [getSimpleEarnAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2764) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/account` | -| [getFlexibleSavingProducts()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2768) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/list` | -| [getSimpleEarnLockedProductList()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2775) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/locked/list` | -| [getFlexibleProductPosition()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2784) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/position` | -| [getLockedProductPosition()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2793) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/locked/position` | -| [getFlexiblePersonalLeftQuota()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2802) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/personalLeftQuota` | -| [getLockedPersonalLeftQuota()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2811) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/locked/personalLeftQuota` | -| [purchaseFlexibleProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2826) | :closed_lock_with_key: | POST | `sapi/v1/simple-earn/flexible/subscribe` | -| [subscribeSimpleEarnLockedProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2832) | :closed_lock_with_key: | POST | `sapi/v1/simple-earn/locked/subscribe` | -| [redeemFlexibleProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2838) | :closed_lock_with_key: | POST | `sapi/v1/simple-earn/flexible/redeem` | -| [redeemLockedProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2844) | :closed_lock_with_key: | POST | `sapi/v1/simple-earn/locked/redeem` | -| [setFlexibleAutoSubscribe()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2850) | :closed_lock_with_key: | POST | `sapi/v1/simple-earn/flexible/setAutoSubscribe` | -| [setLockedAutoSubscribe()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2859) | :closed_lock_with_key: | POST | `sapi/v1/simple-earn/locked/setAutoSubscribe` | -| [getFlexibleSubscriptionPreview()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2868) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/subscriptionPreview` | -| [getLockedSubscriptionPreview()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2877) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/locked/subscriptionPreview` | -| [setLockedProductRedeemOption()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2886) | :closed_lock_with_key: | POST | `sapi/v1/simple-earn/locked/setRedeemOption` | -| [getFlexibleSubscriptionRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2904) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/history/subscriptionRecord` | -| [getLockedSubscriptionRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2916) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/locked/history/subscriptionRecord` | -| [getFlexibleRedemptionRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2928) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/history/redemptionRecord` | -| [getLockedRedemptionRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2940) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/locked/history/redemptionRecord` | -| [getFlexibleRewardsHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2950) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/history/rewardsRecord` | -| [getLockedRewardsHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2960) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/locked/history/rewardsRecord` | -| [getCollateralRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2970) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/history/collateralRecord` | -| [getRateHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2980) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/history/rateHistory` | -| [getVipBorrowInterestRate()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2996) | :closed_lock_with_key: | GET | `sapi/v1/loan/vip/request/interestRate` | -| [getVipLoanableAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3002) | :closed_lock_with_key: | GET | `sapi/v1/loan/vip/loanable/data` | -| [getVipCollateralAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3009) | :closed_lock_with_key: | GET | `sapi/v1/loan/vip/collateral/data` | -| [getVipLoanOpenOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3022) | :closed_lock_with_key: | GET | `sapi/v1/loan/vip/ongoing/orders` | -| [getVipLoanRepaymentHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3029) | :closed_lock_with_key: | GET | `sapi/v1/loan/vip/repay/history` | -| [checkVipCollateralAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3038) | :closed_lock_with_key: | GET | `sapi/v1/loan/vip/collateral/account` | -| [getVipApplicationStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3045) | :closed_lock_with_key: | GET | `sapi/v1/loan/vip/request/data` | -| [renewVipLoan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3058) | :closed_lock_with_key: | POST | `sapi/v1/loan/vip/renew` | -| [repayVipLoan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3062) | :closed_lock_with_key: | POST | `sapi/v1/loan/vip/repay` | -| [borrowVipLoan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3066) | :closed_lock_with_key: | POST | `sapi/v1/loan/vip/borrow` | -| [getDualInvestmentProducts()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3076) | :closed_lock_with_key: | GET | `sapi/v1/dci/product/list` | -| [subscribeDualInvestmentProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3091) | :closed_lock_with_key: | POST | `sapi/v1/dci/product/subscribe` | -| [getDualInvestmentPositions()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3097) | :closed_lock_with_key: | GET | `sapi/v1/dci/product/positions` | -| [getDualInvestmentAccounts()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3106) | :closed_lock_with_key: | GET | `sapi/v1/dci/product/accounts` | -| [updateAutoCompoundStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3110) | :closed_lock_with_key: | POST | `sapi/v1/dci/product/auto_compound/edit-status` | -| [createGiftCard()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3125) | :closed_lock_with_key: | POST | `sapi/v1/giftcard/createCode` | -| [createDualTokenGiftCard()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3129) | :closed_lock_with_key: | POST | `sapi/v1/giftcard/buyCode` | -| [redeemGiftCard()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3133) | :closed_lock_with_key: | POST | `sapi/v1/giftcard/redeemCode` | -| [verifyGiftCard()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3137) | :closed_lock_with_key: | GET | `sapi/v1/giftcard/verify` | -| [getTokenLimit()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3141) | :closed_lock_with_key: | GET | `sapi/v1/giftcard/buyCode/token-limit` | -| [getRsaPublicKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3145) | :closed_lock_with_key: | GET | `sapi/v1/giftcard/cryptography/rsa-public-key` | -| [getNftTransactionHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3155) | :closed_lock_with_key: | GET | `sapi/v1/nft/history/transactions` | -| [getNftDepositHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3162) | :closed_lock_with_key: | GET | `sapi/v1/nft/history/deposit` | -| [getNftWithdrawHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3169) | :closed_lock_with_key: | GET | `sapi/v1/nft/history/withdraw` | -| [getNftAsset()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3176) | :closed_lock_with_key: | GET | `sapi/v1/nft/user/getAsset` | -| [getC2CTradeHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3189) | :closed_lock_with_key: | GET | `sapi/v1/c2c/orderMatch/listUserOrderHistory` | -| [getFiatOrderHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3204) | :closed_lock_with_key: | GET | `sapi/v1/fiat/orders` | -| [getFiatPaymentsHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3210) | :closed_lock_with_key: | GET | `sapi/v1/fiat/payments` | -| [getSpotRebateHistoryRecords()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3222) | :closed_lock_with_key: | GET | `sapi/v1/rebate/taxQuery` | -| [getPortfolioMarginIndexPrice()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3235) | | GET | `sapi/v1/portfolio/asset-index-price` | -| [getPortfolioMarginAssetLeverage()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3241) | :closed_lock_with_key: | GET | `sapi/v1/portfolio/margin-asset-leverage` | -| [getPortfolioMarginProCollateralRate()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3247) | | GET | `sapi/v1/portfolio/collateralRate` | -| [getPortfolioMarginProTieredCollateralRate()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3253) | | GET | `sapi/v2/portfolio/collateralRate` | -| [getPortfolioMarginProAccountInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3264) | :closed_lock_with_key: | GET | `sapi/v1/portfolio/account` | -| [bnbTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3268) | :closed_lock_with_key: | POST | `sapi/v1/portfolio/bnb-transfer` | -| [submitPortfolioMarginProFullTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3274) | :closed_lock_with_key: | POST | `sapi/v1/portfolio/auto-collection` | -| [submitPortfolioMarginProSpecificTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3280) | :closed_lock_with_key: | POST | `sapi/v1/portfolio/asset-collection` | -| [repayPortfolioMarginProBankruptcyLoan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3286) | :closed_lock_with_key: | POST | `sapi/v1/portfolio/repay` | -| [getPortfolioMarginProBankruptcyLoanAmount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3294) | :closed_lock_with_key: | GET | `sapi/v1/portfolio/pmLoan` | -| [repayFuturesNegativeBalance()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3298) | :closed_lock_with_key: | POST | `sapi/v1/portfolio/repay-futures-negative-balance` | -| [updateAutoRepayFuturesStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3304) | :closed_lock_with_key: | POST | `sapi/v1/portfolio/repay-futures-switch` | -| [getAutoRepayFuturesStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3310) | :closed_lock_with_key: | GET | `sapi/v1/portfolio/repay-futures-switch` | -| [getPortfolioMarginProInterestHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3316) | :closed_lock_with_key: | GET | `sapi/v1/portfolio/interest-history` | -| [getFuturesTickLevelOrderbookDataLink()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3329) | :closed_lock_with_key: | GET | `sapi/v1/futures/histDataLink` | -| [getBlvtInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3343) | | GET | `sapi/v1/blvt/tokenInfo` | -| [subscribeBlvt()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3347) | :closed_lock_with_key: | POST | `sapi/v1/blvt/subscribe` | -| [getBlvtSubscriptionRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3351) | :closed_lock_with_key: | GET | `sapi/v1/blvt/subscribe/record` | -| [redeemBlvt()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3357) | :closed_lock_with_key: | POST | `sapi/v1/blvt/redeem` | -| [getBlvtRedemptionRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3361) | :closed_lock_with_key: | GET | `sapi/v1/blvt/redeem/record` | -| [getBlvtUserLimitInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3367) | :closed_lock_with_key: | GET | `sapi/v1/blvt/userLimit` | -| [getPayTransactions()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3378) | :closed_lock_with_key: | GET | `sapi/v1/pay/transactions` | -| [createBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3388) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccount` | -| [getBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3394) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccount` | -| [enableMarginBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3400) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccount/futures` | -| [createApiKeyBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3406) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccountApi` | -| [changePermissionApiKeyBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3412) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccountApi/permission` | -| [changeComissionBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3418) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccountApi/permission` | -| [enableUniversalTransferApiKeyBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3424) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccountApi/permission/universalTransfer` | -| [updateIpRestrictionForSubAccountApiKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3433) | :closed_lock_with_key: | POST | `sapi/v2/broker/subAccountApi/ipRestriction` | -| [deleteIPRestrictionForSubAccountApiKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3447) | :closed_lock_with_key: | DELETE | `sapi/v1/broker/subAccountApi/ipRestriction/ipList` | -| [deleteApiKeyBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3463) | :closed_lock_with_key: | DELETE | `sapi/v1/broker/subAccountApi` | -| [getSubAccountBrokerIpRestriction()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3469) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccountApi/ipRestriction` | -| [getApiKeyBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3485) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccountApi` | -| [getBrokerInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3491) | :closed_lock_with_key: | GET | `sapi/v1/broker/info` | -| [updateSubAccountBNBBurn()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3495) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccount/bnbBurn/spot` | -| [updateSubAccountMarginInterestBNBBurn()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3505) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccount/bnbBurn/marginInterest` | -| [getSubAccountBNBBurnStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3518) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccount/bnbBurn/status` | -| [transferBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3532) | :closed_lock_with_key: | POST | `sapi/v1/broker/transfer` | -| [getBrokerSubAccountHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3538) | :closed_lock_with_key: | GET | `sapi/v1/broker/transfer` | -| [submitBrokerSubFuturesTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3544) | :closed_lock_with_key: | POST | `sapi/v1/broker/transfer/futures` | -| [getSubAccountFuturesTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3559) | :closed_lock_with_key: | GET | `sapi/v1/broker/transfer/futures` | -| [getBrokerSubDepositHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3571) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccount/depositHist` | -| [getBrokerSubAccountSpotAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3577) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccount/spotSummary` | -| [getSubAccountMarginAssetInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3586) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccount/marginSummary` | -| [querySubAccountFuturesAssetInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3595) | :closed_lock_with_key: | GET | `sapi/v3/broker/subAccount/futuresSummary` | -| [universalTransferBroker()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3604) | :closed_lock_with_key: | POST | `sapi/v1/broker/universalTransfer` | -| [getUniversalTransferBroker()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3611) | :closed_lock_with_key: | GET | `sapi/v1/broker/universalTransfer` | -| [updateBrokerSubAccountCommission()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3623) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccountApi/commission` | -| [updateBrokerSubAccountFuturesCommission()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3629) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccountApi/commission/futures` | -| [getBrokerSubAccountFuturesCommission()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3638) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccountApi/commission/futures` | -| [updateBrokerSubAccountCoinFuturesCommission()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3647) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccountApi/commission/coinFutures` | -| [getBrokerSubAccountCoinFuturesCommission()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3656) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccountApi/commission/coinFutures` | -| [getBrokerSpotCommissionRebate()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3665) | :closed_lock_with_key: | GET | `sapi/v1/broker/rebate/recentRecord` | -| [getBrokerFuturesCommissionRebate()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3671) | :closed_lock_with_key: | GET | `sapi/v1/broker/rebate/futures/recentRecord` | -| [getBrokerIfNewSpotUser()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3708) | :closed_lock_with_key: | GET | `sapi/v1/apiReferral/ifNewUser` | -| [getBrokerSubAccountDepositHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3719) | :closed_lock_with_key: | GET | `sapi/v1/bv1/apiReferral/ifNewUser` | -| [enableFuturesBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3738) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccount` | -| [enableMarginApiKeyBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3748) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccount/margin` | -| [getSpotUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3785) | | POST | `api/v3/userDataStream` | -| [keepAliveSpotUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3789) | | PUT | `api/v3/userDataStream?listenKey=${listenKey}` | -| [closeSpotUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3793) | | DELETE | `api/v3/userDataStream?listenKey=${listenKey}` | -| [getMarginUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3798) | | POST | `sapi/v1/userDataStream` | -| [keepAliveMarginUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3802) | | PUT | `sapi/v1/userDataStream?listenKey=${listenKey}` | -| [closeMarginUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3806) | | DELETE | `sapi/v1/userDataStream?listenKey=${listenKey}` | -| [getIsolatedMarginUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3811) | | POST | `sapi/v1/userDataStream/isolated?${serialiseParams(params)}` | -| [keepAliveIsolatedMarginUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3819) | | PUT | `sapi/v1/userDataStream/isolated?${serialiseParams(params)}` | -| [closeIsolatedMarginUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3828) | | DELETE | `sapi/v1/userDataStream/isolated?${serialiseParams(params)}` | -| [getBSwapLiquidity()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3851) | :closed_lock_with_key: | GET | `sapi/v1/bswap/liquidity` | -| [addBSwapLiquidity()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3858) | :closed_lock_with_key: | POST | `sapi/v1/bswap/liquidityAdd` | -| [removeBSwapLiquidity()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3867) | :closed_lock_with_key: | POST | `sapi/v1/bswap/liquidityRemove` | -| [getBSwapOperations()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3876) | :closed_lock_with_key: | GET | `sapi/v1/bswap/liquidityOps` | -| [getLeftDailyPurchaseQuotaFlexibleProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3891) | :closed_lock_with_key: | GET | `sapi/v1/lending/daily/userLeftQuota` | -| [getLeftDailyRedemptionQuotaFlexibleProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3900) | :closed_lock_with_key: | GET | `sapi/v1/lending/daily/userRedemptionQuota` | -| [purchaseFixedAndActivityProject()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3914) | :closed_lock_with_key: | POST | `sapi/v1/lending/customizedFixed/purchase` | -| [getFixedAndActivityProjects()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3924) | :closed_lock_with_key: | GET | `sapi/v1/lending/project/list` | -| [getFixedAndActivityProductPosition()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3933) | :closed_lock_with_key: | GET | `sapi/v1/lending/project/position/list` | -| [getLendingAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3942) | :closed_lock_with_key: | GET | `sapi/v1/lending/union/account` | -| [getPurchaseRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3949) | :closed_lock_with_key: | GET | `sapi/v1/lending/union/purchaseRecord` | -| [getRedemptionRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3956) | :closed_lock_with_key: | GET | `sapi/v1/lending/union/redemptionRecord` | -| [getInterestHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3963) | :closed_lock_with_key: | GET | `sapi/v1/lending/union/interestHistory` | -| [changeFixedAndActivityPositionToDailyPosition()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3970) | :closed_lock_with_key: | POST | `sapi/v1/lending/positionChanged` | -| [enableConvertSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3987) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccount/convert` | -| [convertBUSD()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3993) | :closed_lock_with_key: | POST | `sapi/v1/asset/convert-transfer` | -| [getConvertBUSDHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L4000) | :closed_lock_with_key: | GET | `sapi/v1/asset/convert-transfer/queryByPage` | +| [testConnectivity()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L628) | | GET | `api/v3/ping` | +| [getExchangeInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L632) | | GET | `api/v3/exchangeInfo` | +| [getOrderBook()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L652) | | GET | `api/v3/depth` | +| [getRecentTrades()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L656) | | GET | `api/v3/trades` | +| [getHistoricalTrades()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L660) | | GET | `api/v3/historicalTrades` | +| [getAggregateTrades()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L664) | | GET | `api/v3/aggTrades` | +| [getKlines()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L670) | | GET | `api/v3/klines` | +| [getUIKlines()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L674) | | GET | `api/v3/uiKlines` | +| [getAvgPrice()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L678) | | GET | `api/v3/avgPrice` | +| [get24hrChangeStatististics()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L682) | | GET | `api/v3/ticker/24hr` | +| [getTradingDayTicker()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L707) | | GET | `api/v3/ticker/tradingDay` | +| [getSymbolPriceTicker()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L713) | | GET | `api/v3/ticker/price` | +| [getSymbolOrderBookTicker()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L719) | | GET | `api/v3/ticker/bookTicker` | +| [getRollingWindowTicker()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L725) | | GET | `api/v3/ticker` | +| [getOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L753) | :closed_lock_with_key: | GET | `api/v3/order` | +| [cancelOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L757) | :closed_lock_with_key: | DELETE | `api/v3/order` | +| [cancelAllSymbolOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L761) | :closed_lock_with_key: | DELETE | `api/v3/openOrders` | +| [getOpenOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L776) | :closed_lock_with_key: | GET | `api/v3/openOrders` | +| [getAllOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L780) | :closed_lock_with_key: | GET | `api/v3/allOrders` | +| [submitNewOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L787) | :closed_lock_with_key: | POST | `api/v3/order/oco` | +| [submitNewOrderListOTO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L804) | :closed_lock_with_key: | POST | `api/v3/orderList/oto` | +| [submitNewOrderListOTOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L814) | :closed_lock_with_key: | POST | `api/v3/orderList/otoco` | +| [cancelOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L824) | :closed_lock_with_key: | DELETE | `api/v3/orderList` | +| [getOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L829) | :closed_lock_with_key: | GET | `api/v3/orderList` | +| [getAllOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L833) | :closed_lock_with_key: | GET | `api/v3/allOrderList` | +| [getAllOpenOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L840) | :closed_lock_with_key: | GET | `api/v3/openOrderList` | +| [submitNewSOROrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L847) | :closed_lock_with_key: | POST | `api/v3/sor/order` | +| [testNewSOROrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L858) | :closed_lock_with_key: | POST | `api/v3/sor/order/test` | +| [getAccountInformation()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L874) | :closed_lock_with_key: | GET | `api/v3/account` | +| [getAccountTradeList()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L878) | :closed_lock_with_key: | GET | `api/v3/myTrades` | +| [getOrderRateLimit()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L884) | :closed_lock_with_key: | GET | `api/v3/rateLimit/order` | +| [getPreventedMatches()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L888) | :closed_lock_with_key: | GET | `api/v3/myPreventedMatches` | +| [getAllocations()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L894) | :closed_lock_with_key: | GET | `api/v3/myAllocations` | +| [getCommissionRates()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L898) | :closed_lock_with_key: | GET | `api/v3/account/commission` | +| [getCrossMarginCollateralRatio()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L908) | :closed_lock_with_key: | GET | `sapi/v1/margin/crossMarginCollateralRatio` | +| [getAllCrossMarginPairs()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L917) | | GET | `sapi/v1/margin/allPairs` | +| [getIsolatedMarginAllSymbols()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L921) | :closed_lock_with_key: | GET | `sapi/v1/margin/isolated/allPairs` | +| [getAllMarginAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L927) | | GET | `sapi/v1/margin/allAssets` | +| [getMarginDelistSchedule()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L931) | :closed_lock_with_key: | GET | `sapi/v1/margin/delist-schedule` | +| [getIsolatedMarginTierData()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L935) | :closed_lock_with_key: | GET | `sapi/v1/margin/isolatedMarginTier` | +| [queryMarginPriceIndex()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L941) | | GET | `sapi/v1/margin/priceIndex` | +| [getMarginAvailableInventory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L947) | :closed_lock_with_key: | GET | `sapi/v1/margin/available-inventory` | +| [getLeverageBracket()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L953) | :closed_lock_with_key: | GET | `sapi/v1/margin/leverageBracket` | +| [getNextHourlyInterestRate()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L963) | :closed_lock_with_key: | GET | `sapi/v1/margin/next-hourly-interest-rate` | +| [getMarginInterestHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L969) | :closed_lock_with_key: | GET | `sapi/v1/margin/interestHistory` | +| [submitMarginAccountBorrowRepay()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L976) | :closed_lock_with_key: | POST | `sapi/v1/margin/borrow-repay` | +| [getMarginAccountBorrowRepayRecords()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L982) | :closed_lock_with_key: | GET | `sapi/v1/margin/borrow-repay` | +| [getMarginInterestRateHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L988) | :closed_lock_with_key: | GET | `sapi/v1/margin/interestRateHistory` | +| [queryMaxBorrow()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L994) | :closed_lock_with_key: | GET | `sapi/v1/margin/maxBorrowable` | +| [getMarginForceLiquidationRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1006) | :closed_lock_with_key: | GET | `sapi/v1/margin/forceLiquidationRec` | +| [getSmallLiabilityExchangeCoins()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1015) | :closed_lock_with_key: | GET | `sapi/v1/margin/exchange-small-liability` | +| [getSmallLiabilityExchangeHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1019) | :closed_lock_with_key: | GET | `sapi/v1/margin/exchange-small-liability-history` | +| [marginAccountCancelOpenOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1031) | :closed_lock_with_key: | DELETE | `sapi/v1/margin/openOrders` | +| [marginAccountCancelOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1037) | :closed_lock_with_key: | DELETE | `sapi/v1/margin/orderList` | +| [marginAccountCancelOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1042) | :closed_lock_with_key: | DELETE | `sapi/v1/margin/order` | +| [marginAccountNewOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1048) | :closed_lock_with_key: | POST | `sapi/v1/margin/order/oco` | +| [getMarginOrderCountUsage()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1063) | :closed_lock_with_key: | GET | `sapi/v1/margin/rateLimit/order` | +| [queryMarginAccountAllOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1069) | :closed_lock_with_key: | GET | `sapi/v1/margin/allOrderList` | +| [queryMarginAccountAllOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1075) | :closed_lock_with_key: | GET | `sapi/v1/margin/allOrders` | +| [queryMarginAccountOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1081) | :closed_lock_with_key: | GET | `sapi/v1/margin/orderList` | +| [queryMarginAccountOpenOCO()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1085) | :closed_lock_with_key: | GET | `sapi/v1/margin/openOrderList` | +| [queryMarginAccountOpenOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1092) | :closed_lock_with_key: | GET | `sapi/v1/margin/openOrders` | +| [queryMarginAccountOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1096) | :closed_lock_with_key: | GET | `sapi/v1/margin/order` | +| [queryMarginAccountTradeList()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1100) | :closed_lock_with_key: | GET | `sapi/v1/margin/myTrades` | +| [submitSmallLiabilityExchange()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1106) | :closed_lock_with_key: | POST | `sapi/v1/margin/exchange-small-liability` | +| [submitManualLiquidation()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1113) | :closed_lock_with_key: | POST | `sapi/v1/margin/manual-liquidation` | +| [submitMarginOTOOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1122) | :closed_lock_with_key: | POST | `sapi/v1/margin/order/oto` | +| [submitMarginOTOCOOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1134) | :closed_lock_with_key: | POST | `sapi/v1/margin/order/otoco` | +| [createMarginSpecialLowLatencyKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1147) | :closed_lock_with_key: | POST | `sapi/v1/margin/apiKey` | +| [deleteMarginSpecialLowLatencyKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1153) | :closed_lock_with_key: | DELETE | `sapi/v1/margin/apiKey` | +| [updateMarginIPForSpecialLowLatencyKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1161) | :closed_lock_with_key: | PUT | `sapi/v1/margin/apiKey/ip` | +| [getMarginSpecialLowLatencyKeys()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1172) | :closed_lock_with_key: | GET | `sapi/v1/margin/api-key-list` | +| [getMarginSpecialLowLatencyKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1181) | :closed_lock_with_key: | GET | `sapi/v1/margin/apiKey` | +| [getCrossMarginTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1194) | :closed_lock_with_key: | GET | `sapi/v1/margin/transfer` | +| [queryMaxTransferOutAmount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1200) | :closed_lock_with_key: | GET | `sapi/v1/margin/maxTransferable` | +| [updateCrossMarginMaxLeverage()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1212) | :closed_lock_with_key: | POST | `sapi/v1/margin/max-leverage` | +| [disableIsolatedMarginAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1218) | :closed_lock_with_key: | DELETE | `sapi/v1/margin/isolated/account` | +| [enableIsolatedMarginAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1225) | :closed_lock_with_key: | POST | `sapi/v1/margin/isolated/account` | +| [getBNBBurn()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1232) | :closed_lock_with_key: | GET | `sapi/v1/bnbBurn` | +| [getMarginSummary()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1236) | :closed_lock_with_key: | GET | `sapi/v1/margin/tradeCoeff` | +| [queryCrossMarginAccountDetails()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1240) | :closed_lock_with_key: | GET | `sapi/v1/margin/account` | +| [getCrossMarginFeeData()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1244) | :closed_lock_with_key: | GET | `sapi/v1/margin/crossMarginData` | +| [getIsolatedMarginAccountLimit()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1250) | :closed_lock_with_key: | GET | `sapi/v1/margin/isolated/accountLimit` | +| [getIsolatedMarginAccountInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1257) | :closed_lock_with_key: | GET | `sapi/v1/margin/isolated/account` | +| [getIsolatedMarginFeeData()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1263) | :closed_lock_with_key: | GET | `sapi/v1/margin/isolatedMarginData` | +| [toggleBNBBurn()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1269) | :closed_lock_with_key: | POST | `sapi/v1/bnbBurn` | +| [getMarginCapitalFlow()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1277) | :closed_lock_with_key: | GET | `sapi/v1/margin/capital-flow` | +| [queryLoanRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1286) | :closed_lock_with_key: | GET | `sapi/v1/margin/loan` | +| [queryRepayRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1295) | :closed_lock_with_key: | GET | `sapi/v1/margin/repay` | +| [isolatedMarginAccountTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1304) | :closed_lock_with_key: | POST | `sapi/v1/margin/isolated/transfer` | +| [getBalances()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1316) | :closed_lock_with_key: | GET | `sapi/v1/capital/config/getall` | +| [withdraw()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1319) | :closed_lock_with_key: | POST | `sapi/v1/capital/withdraw/apply` | +| [getWithdrawHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1323) | :closed_lock_with_key: | GET | `sapi/v1/capital/withdraw/history` | +| [getWithdrawAddresses()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1329) | :closed_lock_with_key: | GET | `sapi/v1/capital/withdraw/address/list` | +| [getDepositHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1333) | :closed_lock_with_key: | GET | `sapi/v1/capital/deposit/hisrec` | +| [getDepositAddress()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1337) | :closed_lock_with_key: | GET | `sapi/v1/capital/deposit/address` | +| [getDepositAddresses()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1343) | :closed_lock_with_key: | GET | `sapi/v1/capital/deposit/address/list` | +| [submitDepositCredit()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1349) | :closed_lock_with_key: | POST | `sapi/v1/capital/deposit/credit-apply` | +| [getAutoConvertStablecoins()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1355) | :closed_lock_with_key: | GET | `sapi/v1/capital/contract/convertible-coins` | +| [setConvertibleCoins()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1359) | :closed_lock_with_key: | POST | `sapi/v1/capital/contract/convertible-coins` | +| [getAssetDetail()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1372) | :closed_lock_with_key: | GET | `sapi/v1/asset/assetDetail` | +| [getWalletBalances()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1378) | :closed_lock_with_key: | GET | `sapi/v1/asset/wallet/balance` | +| [getUserAsset()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1382) | :closed_lock_with_key: | POST | `sapi/v3/asset/getUserAsset` | +| [submitUniversalTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1386) | :closed_lock_with_key: | POST | `sapi/v1/asset/transfer` | +| [getUniversalTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1392) | :closed_lock_with_key: | GET | `sapi/v1/asset/transfer` | +| [getDust()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1398) | :closed_lock_with_key: | POST | `sapi/v1/asset/dust-btc` | +| [convertDustToBnb()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1402) | :closed_lock_with_key: | POST | `sapi/v1/asset/dust` | +| [getDustLog()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1406) | :closed_lock_with_key: | GET | `sapi/v1/asset/dribblet` | +| [getAssetDividendRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1410) | :closed_lock_with_key: | GET | `sapi/v1/asset/assetDividend` | +| [getTradeFee()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1414) | :closed_lock_with_key: | GET | `sapi/v1/asset/tradeFee` | +| [getFundingAsset()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1418) | :closed_lock_with_key: | POST | `sapi/v1/asset/get-funding-asset` | +| [getCloudMiningHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1422) | :closed_lock_with_key: | GET | `sapi/v1/asset/ledger-transfer/cloud-mining/queryByPage` | +| [getDelegationHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1432) | :closed_lock_with_key: | GET | `sapi/v1/asset/custody/transfer-history` | +| [submitNewFutureAccountTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1462) | :closed_lock_with_key: | POST | `sapi/v1/futures/transfer` | +| [getFutureAccountTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1472) | :closed_lock_with_key: | GET | `sapi/v1/futures/transfer` | +| [getCrossCollateralBorrowHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1481) | :closed_lock_with_key: | GET | `sapi/v1/futures/loan/borrow/history` | +| [getCrossCollateralRepaymentHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1487) | :closed_lock_with_key: | GET | `sapi/v1/futures/loan/repay/history` | +| [getCrossCollateralWalletV2()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1493) | :closed_lock_with_key: | GET | `sapi/v2/futures/loan/wallet` | +| [getAdjustCrossCollateralLTVHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1499) | :closed_lock_with_key: | GET | `sapi/v1/futures/loan/adjustCollateral/history` | +| [getCrossCollateralLiquidationHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1510) | :closed_lock_with_key: | GET | `sapi/v1/futures/loan/liquidationHistory` | +| [getCrossCollateralInterestHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1518) | :closed_lock_with_key: | GET | `sapi/v1/futures/loan/interestHistory` | +| [getAccountInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1530) | :closed_lock_with_key: | GET | `sapi/v1/account/info` | +| [getDailyAccountSnapshot()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1534) | :closed_lock_with_key: | GET | `sapi/v1/accountSnapshot` | +| [disableFastWithdrawSwitch()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1540) | :closed_lock_with_key: | POST | `sapi/v1/account/disableFastWithdrawSwitch` | +| [enableFastWithdrawSwitch()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1544) | :closed_lock_with_key: | POST | `sapi/v1/account/enableFastWithdrawSwitch` | +| [getAccountStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1548) | :closed_lock_with_key: | GET | `sapi/v1/account/status` | +| [getApiTradingStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1552) | :closed_lock_with_key: | GET | `sapi/v1/account/apiTradingStatus` | +| [getApiKeyPermissions()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1556) | :closed_lock_with_key: | GET | `sapi/v1/account/apiRestrictions` | +| [getSystemStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1574) | | GET | `sapi/v1/system/status` | +| [getDelistSchedule()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1578) | :closed_lock_with_key: | GET | `sapi/v1/spot/delist-schedule` | +| [createVirtualSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1588) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/virtualSubAccount` | +| [getSubAccountList()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1594) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/list` | +| [subAccountEnableFutures()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1600) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/futures/enable` | +| [subAccountEnableMargin()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1604) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/margin/enable` | +| [enableOptionsForSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1608) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/eoptions/enable` | +| [subAccountEnableLeverageToken()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1614) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/blvt/enable` | +| [getSubAccountStatusOnMarginOrFutures()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1620) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/status` | +| [getSubAccountFuturesPositionRisk()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1626) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/futures/positionRisk` | +| [getSubAccountFuturesPositionRiskV2()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1634) | :closed_lock_with_key: | GET | `sapi/v2/sub-account/futures/positionRisk` | +| [getSubAccountTransactionStatistics()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1640) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/transaction-statistics` | +| [getSubAccountIPRestriction()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1655) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/subAccountApi/ipRestriction` | +| [subAccountDeleteIPList()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1664) | :closed_lock_with_key: | DELETE | `sapi/v1/sub-account/subAccountApi/ipRestriction/ipList` | +| [subAccountAddIPRestriction()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1673) | :closed_lock_with_key: | POST | `sapi/v2/sub-account/subAccountApi/ipRestriction` | +| [subAccountAddIPList()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1686) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/subAccountApi/ipRestriction/ipList` | +| [subAccountEnableOrDisableIPRestriction()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1699) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/subAccountApi/ipRestriction` | +| [subAccountFuturesTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1714) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/futures/transfer` | +| [getSubAccountFuturesAccountDetail()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1720) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/futures/account` | +| [getSubAccountDetailOnFuturesAccountV2()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1726) | :closed_lock_with_key: | GET | `sapi/v2/sub-account/futures/account` | +| [getSubAccountDetailOnMarginAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1732) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/margin/account` | +| [getSubAccountDepositAddress()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1738) | :closed_lock_with_key: | GET | `sapi/v1/capital/deposit/subAddress` | +| [getSubAccountDepositHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1744) | :closed_lock_with_key: | GET | `sapi/v1/capital/deposit/subHisrec` | +| [getSubAccountFuturesAccountSummary()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1750) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/futures/accountSummary` | +| [getSubAccountSummaryOnFuturesAccountV2()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1754) | :closed_lock_with_key: | GET | `sapi/v2/sub-account/futures/accountSummary` | +| [getSubAccountsSummaryOfMarginAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1763) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/margin/accountSummary` | +| [subAccountMarginTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1767) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/margin/transfer` | +| [getSubAccountAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1773) | :closed_lock_with_key: | GET | `sapi/v3/sub-account/assets` | +| [getSubAccountAssetsMaster()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1779) | :closed_lock_with_key: | GET | `sapi/v4/sub-account/assets` | +| [getSubAccountFuturesAssetTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1785) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/futures/internalTransfer` | +| [getSubAccountSpotAssetTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1794) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/sub/transfer/history` | +| [getSubAccountSpotAssetsSummary()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1800) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/spotSummary` | +| [getSubAccountUniversalTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1806) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/universalTransfer` | +| [subAccountFuturesAssetTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1812) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/futures/internalTransfer` | +| [subAccountTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1821) | :closed_lock_with_key: | GET | `sapi/v1/sub-account/transfer/subUserHistory` | +| [subAccountTransferToMaster()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1830) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/transfer/subToMaster` | +| [subAccountTransferToSameMaster()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1836) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/transfer/subToSub` | +| [subAccountUniversalTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1842) | :closed_lock_with_key: | POST | `sapi/v1/sub-account/universalTransfer` | +| [depositAssetsIntoManagedSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1854) | :closed_lock_with_key: | POST | `sapi/v1/managed-subaccount/deposit` | +| [getManagedSubAccountDepositAddress()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1860) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/deposit/address` | +| [withdrawAssetsFromManagedSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1869) | :closed_lock_with_key: | POST | `sapi/v1/managed-subaccount/withdraw` | +| [getManagedSubAccountTransfersParent()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1875) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/queryTransLogForTradeParent` | +| [getManagedSubAccountTransferLog()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1887) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/query-trans-log` | +| [getManagedSubAccountTransfersInvestor()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1899) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/queryTransLogForInvestor` | +| [getManagedSubAccounts()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1911) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/info` | +| [getManagedSubAccountSnapshot()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1918) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/accountSnapshot` | +| [getManagedSubAccountAssetDetails()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1927) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/asset` | +| [getManagedSubAccountMarginAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1933) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/marginAsset` | +| [getManagedSubAccountFuturesAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1939) | :closed_lock_with_key: | GET | `sapi/v1/managed-subaccount/fetch-future-asset` | +| [getAutoInvestAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1954) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/all/asset` | +| [getAutoInvestSourceAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1961) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/source-asset/list` | +| [getAutoInvestTargetAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1970) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/target-asset/list` | +| [getAutoInvestTargetAssetsROI()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1979) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/target-asset/roi/list` | +| [getAutoInvestIndex()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1988) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/index/info` | +| [getAutoInvestPlans()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1994) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/plan/list` | +| [submitAutoInvestOneTimeTransaction()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2012) | :closed_lock_with_key: | POST | `sapi/v1/lending/auto-invest/one-off` | +| [updateAutoInvestPlanStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2028) | :closed_lock_with_key: | POST | `sapi/v1/lending/auto-invest/plan/edit-status` | +| [updateAutoInvestmentPlanOld()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2042) | :closed_lock_with_key: | POST | `sapi/v1/lending/auto-invest/plan/edit` | +| [updateAutoInvestmentPlan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2048) | :closed_lock_with_key: | POST | `sapi/v1/lending/auto-invest/plan/edit` | +| [submitAutoInvestRedemption()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2065) | :closed_lock_with_key: | POST | `sapi/v1/lending/auto-invest/redeem` | +| [getAutoInvestSubscriptionTransactions()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2073) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/history/list` | +| [getOneTimeTransactionStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2079) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/one-off/status` | +| [submitAutoInvestmentPlanOld()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2092) | :closed_lock_with_key: | POST | `sapi/v1/lending/auto-invest/plan/add` | +| [submitAutoInvestmentPlan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2098) | :closed_lock_with_key: | POST | `sapi/v1/lending/auto-invest/plan/add` | +| [getAutoInvestRedemptionHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2113) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/redeem/history` | +| [getAutoInvestPlan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2122) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/plan/id` | +| [getAutoInvestUserIndex()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2126) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/index/user-summary` | +| [getAutoInvestRebalanceHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2135) | :closed_lock_with_key: | GET | `sapi/v1/lending/auto-invest/rebalance/history` | +| [getConvertPairs()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2150) | :closed_lock_with_key: | GET | `sapi/v1/convert/exchangeInfo` | +| [getConvertAssetInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2154) | :closed_lock_with_key: | GET | `sapi/v1/convert/assetInfo` | +| [convertQuoteRequest()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2164) | :closed_lock_with_key: | POST | `sapi/v1/convert/getQuote` | +| [acceptQuoteRequest()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2168) | :closed_lock_with_key: | POST | `sapi/v1/convert/acceptQuote` | +| [getConvertTradeHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2172) | :closed_lock_with_key: | GET | `sapi/v1/convert/tradeFlow` | +| [getOrderStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2176) | :closed_lock_with_key: | GET | `sapi/v1/convert/orderStatus` | +| [submitConvertLimitOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2180) | :closed_lock_with_key: | POST | `sapi/v1/convert/limit/placeOrder` | +| [cancelConvertLimitOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2184) | :closed_lock_with_key: | POST | `sapi/v1/convert/limit/cancelOrder` | +| [getConvertLimitOpenOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2188) | :closed_lock_with_key: | GET | `sapi/v1/convert/limit/queryOpenOrders` | +| [getEthStakingAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2203) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/account` | +| [getEthStakingAccountV2()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2207) | :closed_lock_with_key: | GET | `sapi/v2/eth-staking/account` | +| [getEthStakingQuota()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2211) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/eth/quota` | +| [subscribeEthStakingV1()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2224) | :closed_lock_with_key: | POST | `sapi/v1/eth-staking/eth/stake` | +| [subscribeEthStakingV2()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2230) | :closed_lock_with_key: | POST | `sapi/v2/eth-staking/eth/stake` | +| [redeemEth()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2236) | :closed_lock_with_key: | POST | `sapi/v1/eth-staking/eth/redeem` | +| [wrapBeth()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2240) | :closed_lock_with_key: | POST | `sapi/v1/eth-staking/wbeth/wrap` | +| [getEthStakingHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2250) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/eth/history/stakingHistory` | +| [getEthRedemptionHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2260) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/eth/history/redemptionHistory` | +| [getBethRewardsHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2270) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/eth/history/rewardsHistory` | +| [getWbethRewardsHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2280) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/eth/history/wbethRewardsHistory` | +| [getEthRateHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2289) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/eth/history/rateHistory` | +| [getBethWrapHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2299) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/wbeth/history/wrapHistory` | +| [getBethUnwrapHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2309) | :closed_lock_with_key: | GET | `sapi/v1/eth-staking/wbeth/history/unwrapHistory` | +| [getStakingProducts()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2322) | :closed_lock_with_key: | GET | `sapi/v1/staking/productList` | +| [getStakingProductPosition()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2333) | :closed_lock_with_key: | GET | `sapi/v1/staking/position` | +| [getStakingHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2345) | :closed_lock_with_key: | GET | `sapi/v1/staking/stakingRecord` | +| [getPersonalLeftQuotaOfStakingProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2352) | :closed_lock_with_key: | GET | `sapi/v1/staking/personalLeftQuota` | +| [getSolStakingAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2365) | :closed_lock_with_key: | GET | `sapi/v1/sol-staking/account` | +| [getSolStakingQuota()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2369) | :closed_lock_with_key: | GET | `sapi/v1/sol-staking/sol/quota` | +| [subscribeSolStaking()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2379) | :closed_lock_with_key: | POST | `sapi/v1/sol-staking/sol/stake` | +| [redeemSol()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2385) | :closed_lock_with_key: | POST | `sapi/v1/sol-staking/sol/redeem` | +| [getSolStakingHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2395) | :closed_lock_with_key: | GET | `sapi/v1/sol-staking/sol/history/stakingHistory` | +| [getSolRedemptionHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2405) | :closed_lock_with_key: | GET | `sapi/v1/sol-staking/sol/history/redemptionHistory` | +| [getBnsolRewardsHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2415) | :closed_lock_with_key: | GET | `sapi/v1/sol-staking/sol/history/bnsolRewardsHistory` | +| [getBnsolRateHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2426) | :closed_lock_with_key: | GET | `sapi/v1/sol-staking/sol/history/rateHistory` | +| [getFuturesLeadTraderStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2442) | :closed_lock_with_key: | GET | `sapi/v1/copyTrading/futures/userStatus` | +| [getFuturesLeadTradingSymbolWhitelist()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2446) | :closed_lock_with_key: | GET | `sapi/v1/copyTrading/futures/leadSymbol` | +| [getMiningAlgos()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2458) | | GET | `sapi/v1/mining/pub/algoList` | +| [getMiningCoins()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2462) | | GET | `sapi/v1/mining/pub/coinList` | +| [getHashrateResales()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2466) | :closed_lock_with_key: | GET | `sapi/v1/mining/hash-transfer/config/details/list` | +| [getMiners()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2475) | :closed_lock_with_key: | GET | `sapi/v1/mining/worker/list` | +| [getMinerDetails()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2479) | :closed_lock_with_key: | GET | `sapi/v1/mining/worker/detail` | +| [getExtraBonuses()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2485) | :closed_lock_with_key: | GET | `sapi/v1/mining/payment/other` | +| [getMiningEarnings()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2491) | :closed_lock_with_key: | GET | `sapi/v1/mining/payment/list` | +| [cancelHashrateResaleConfig()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2497) | :closed_lock_with_key: | POST | `sapi/v1/mining/hash-transfer/config/cancel` | +| [getHashrateResale()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2506) | :closed_lock_with_key: | GET | `sapi/v1/mining/hash-transfer/profit/details` | +| [getMiningAccountEarnings()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2515) | :closed_lock_with_key: | GET | `sapi/v1/mining/payment/uid` | +| [getMiningStatistics()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2521) | :closed_lock_with_key: | GET | `sapi/v1/mining/statistics/user/status` | +| [submitHashrateResale()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2527) | :closed_lock_with_key: | POST | `sapi/v1/mining/hash-transfer/config` | +| [getMiningAccounts()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2531) | :closed_lock_with_key: | GET | `sapi/v1/mining/statistics/user/list` | +| [submitVpNewOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2543) | :closed_lock_with_key: | POST | `sapi/v1/algo/futures/newOrderVp` | +| [submitTwapNewOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2550) | :closed_lock_with_key: | POST | `sapi/v1/algo/futures/newOrderTwap` | +| [cancelAlgoOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2557) | :closed_lock_with_key: | DELETE | `sapi/v1/algo/futures/order` | +| [getAlgoSubOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2563) | :closed_lock_with_key: | GET | `sapi/v1/algo/futures/subOrders` | +| [getAlgoOpenOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2569) | :closed_lock_with_key: | GET | `sapi/v1/algo/futures/openOrders` | +| [getAlgoHistoricalOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2576) | :closed_lock_with_key: | GET | `sapi/v1/algo/futures/historicalOrders` | +| [submitSpotAlgoTwapOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2589) | :closed_lock_with_key: | POST | `sapi/v1/algo/spot/newOrderTwap` | +| [cancelSpotAlgoOrder()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2596) | :closed_lock_with_key: | DELETE | `sapi/v1/algo/spot/order` | +| [getSpotAlgoSubOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2602) | :closed_lock_with_key: | GET | `sapi/v1/algo/spot/subOrders` | +| [getSpotAlgoOpenOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2608) | :closed_lock_with_key: | GET | `sapi/v1/algo/spot/openOrders` | +| [getSpotAlgoHistoricalOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2615) | :closed_lock_with_key: | GET | `sapi/v1/algo/spot/historicalOrders` | +| [getCryptoLoanFlexibleCollateralAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2630) | :closed_lock_with_key: | GET | `sapi/v2/loan/flexible/collateral/data` | +| [getCryptoLoanFlexibleAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2639) | :closed_lock_with_key: | GET | `sapi/v2/loan/flexible/loanable/data` | +| [borrowCryptoLoanFlexible()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2652) | :closed_lock_with_key: | POST | `sapi/v2/loan/flexible/borrow` | +| [repayCryptoLoanFlexible()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2658) | :closed_lock_with_key: | POST | `sapi/v2/loan/flexible/repay` | +| [adjustCryptoLoanFlexibleLTV()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2664) | :closed_lock_with_key: | POST | `sapi/v2/loan/flexible/adjust/ltv` | +| [getCryptoLoanFlexibleLTVAdjustmentHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2676) | :closed_lock_with_key: | GET | `sapi/v2/loan/flexible/ltv/adjustment/history` | +| [getLoanFlexibleBorrowHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2688) | :closed_lock_with_key: | GET | `sapi/v2/loan/flexible/borrow/history` | +| [getCryptoLoanFlexibleOngoingOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2697) | :closed_lock_with_key: | GET | `sapi/v2/loan/flexible/ongoing/orders` | +| [getLoanFlexibleRepaymentHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2706) | :closed_lock_with_key: | GET | `sapi/v2/loan/flexible/repay/history` | +| [getCryptoLoanLoanableAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2721) | :closed_lock_with_key: | GET | `sapi/v1/loan/loanable/data` | +| [getCryptoLoanCollateralRepayRate()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2728) | :closed_lock_with_key: | GET | `sapi/v1/loan/repay/collateral/rate` | +| [getCryptoLoanCollateralAssetsData()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2734) | :closed_lock_with_key: | GET | `sapi/v1/loan/collateral/data` | +| [getCryptoLoansIncomeHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2743) | :closed_lock_with_key: | GET | `sapi/v1/loan/income` | +| [borrowCryptoLoan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2755) | :closed_lock_with_key: | POST | `sapi/v1/loan/borrow` | +| [repayCryptoLoan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2761) | :closed_lock_with_key: | POST | `sapi/v1/loan/repay` | +| [adjustCryptoLoanLTV()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2767) | :closed_lock_with_key: | POST | `sapi/v1/loan/adjust/ltv` | +| [customizeCryptoLoanMarginCall()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2773) | :closed_lock_with_key: | POST | `sapi/v1/loan/customize/margin_call` | +| [getCryptoLoanOngoingOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2786) | :closed_lock_with_key: | GET | `sapi/v1/loan/ongoing/orders` | +| [getCryptoLoanBorrowHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2793) | :closed_lock_with_key: | GET | `sapi/v1/loan/borrow/history` | +| [getCryptoLoanLTVAdjustmentHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2800) | :closed_lock_with_key: | GET | `sapi/v1/loan/ltv/adjustment/history` | +| [getCryptoLoanRepaymentHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2809) | :closed_lock_with_key: | GET | `sapi/v1/loan/repay/history` | +| [getSimpleEarnAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2821) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/account` | +| [getFlexibleSavingProducts()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2825) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/list` | +| [getSimpleEarnLockedProductList()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2832) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/locked/list` | +| [getFlexibleProductPosition()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2841) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/position` | +| [getLockedProductPosition()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2850) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/locked/position` | +| [getFlexiblePersonalLeftQuota()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2859) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/personalLeftQuota` | +| [getLockedPersonalLeftQuota()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2868) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/locked/personalLeftQuota` | +| [purchaseFlexibleProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2883) | :closed_lock_with_key: | POST | `sapi/v1/simple-earn/flexible/subscribe` | +| [subscribeSimpleEarnLockedProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2889) | :closed_lock_with_key: | POST | `sapi/v1/simple-earn/locked/subscribe` | +| [redeemFlexibleProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2895) | :closed_lock_with_key: | POST | `sapi/v1/simple-earn/flexible/redeem` | +| [redeemLockedProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2901) | :closed_lock_with_key: | POST | `sapi/v1/simple-earn/locked/redeem` | +| [setFlexibleAutoSubscribe()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2907) | :closed_lock_with_key: | POST | `sapi/v1/simple-earn/flexible/setAutoSubscribe` | +| [setLockedAutoSubscribe()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2916) | :closed_lock_with_key: | POST | `sapi/v1/simple-earn/locked/setAutoSubscribe` | +| [getFlexibleSubscriptionPreview()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2925) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/subscriptionPreview` | +| [getLockedSubscriptionPreview()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2934) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/locked/subscriptionPreview` | +| [setLockedProductRedeemOption()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2943) | :closed_lock_with_key: | POST | `sapi/v1/simple-earn/locked/setRedeemOption` | +| [getFlexibleSubscriptionRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2961) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/history/subscriptionRecord` | +| [getLockedSubscriptionRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2973) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/locked/history/subscriptionRecord` | +| [getFlexibleRedemptionRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2985) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/history/redemptionRecord` | +| [getLockedRedemptionRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2997) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/locked/history/redemptionRecord` | +| [getFlexibleRewardsHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3007) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/history/rewardsRecord` | +| [getLockedRewardsHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3017) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/locked/history/rewardsRecord` | +| [getCollateralRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3027) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/history/collateralRecord` | +| [getRateHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3037) | :closed_lock_with_key: | GET | `sapi/v1/simple-earn/flexible/history/rateHistory` | +| [getVipBorrowInterestRate()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3053) | :closed_lock_with_key: | GET | `sapi/v1/loan/vip/request/interestRate` | +| [getVipLoanableAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3059) | :closed_lock_with_key: | GET | `sapi/v1/loan/vip/loanable/data` | +| [getVipCollateralAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3066) | :closed_lock_with_key: | GET | `sapi/v1/loan/vip/collateral/data` | +| [getVipLoanOpenOrders()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3079) | :closed_lock_with_key: | GET | `sapi/v1/loan/vip/ongoing/orders` | +| [getVipLoanRepaymentHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3086) | :closed_lock_with_key: | GET | `sapi/v1/loan/vip/repay/history` | +| [checkVipCollateralAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3095) | :closed_lock_with_key: | GET | `sapi/v1/loan/vip/collateral/account` | +| [getVipApplicationStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3102) | :closed_lock_with_key: | GET | `sapi/v1/loan/vip/request/data` | +| [renewVipLoan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3115) | :closed_lock_with_key: | POST | `sapi/v1/loan/vip/renew` | +| [repayVipLoan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3119) | :closed_lock_with_key: | POST | `sapi/v1/loan/vip/repay` | +| [borrowVipLoan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3123) | :closed_lock_with_key: | POST | `sapi/v1/loan/vip/borrow` | +| [getDualInvestmentProducts()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3133) | :closed_lock_with_key: | GET | `sapi/v1/dci/product/list` | +| [subscribeDualInvestmentProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3148) | :closed_lock_with_key: | POST | `sapi/v1/dci/product/subscribe` | +| [getDualInvestmentPositions()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3154) | :closed_lock_with_key: | GET | `sapi/v1/dci/product/positions` | +| [getDualInvestmentAccounts()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3163) | :closed_lock_with_key: | GET | `sapi/v1/dci/product/accounts` | +| [updateAutoCompoundStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3167) | :closed_lock_with_key: | POST | `sapi/v1/dci/product/auto_compound/edit-status` | +| [createGiftCard()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3182) | :closed_lock_with_key: | POST | `sapi/v1/giftcard/createCode` | +| [createDualTokenGiftCard()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3186) | :closed_lock_with_key: | POST | `sapi/v1/giftcard/buyCode` | +| [redeemGiftCard()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3190) | :closed_lock_with_key: | POST | `sapi/v1/giftcard/redeemCode` | +| [verifyGiftCard()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3194) | :closed_lock_with_key: | GET | `sapi/v1/giftcard/verify` | +| [getTokenLimit()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3198) | :closed_lock_with_key: | GET | `sapi/v1/giftcard/buyCode/token-limit` | +| [getRsaPublicKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3202) | :closed_lock_with_key: | GET | `sapi/v1/giftcard/cryptography/rsa-public-key` | +| [getNftTransactionHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3212) | :closed_lock_with_key: | GET | `sapi/v1/nft/history/transactions` | +| [getNftDepositHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3219) | :closed_lock_with_key: | GET | `sapi/v1/nft/history/deposit` | +| [getNftWithdrawHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3226) | :closed_lock_with_key: | GET | `sapi/v1/nft/history/withdraw` | +| [getNftAsset()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3233) | :closed_lock_with_key: | GET | `sapi/v1/nft/user/getAsset` | +| [getC2CTradeHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3246) | :closed_lock_with_key: | GET | `sapi/v1/c2c/orderMatch/listUserOrderHistory` | +| [getFiatOrderHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3261) | :closed_lock_with_key: | GET | `sapi/v1/fiat/orders` | +| [getFiatPaymentsHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3267) | :closed_lock_with_key: | GET | `sapi/v1/fiat/payments` | +| [getSpotRebateHistoryRecords()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3279) | :closed_lock_with_key: | GET | `sapi/v1/rebate/taxQuery` | +| [getPortfolioMarginIndexPrice()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3292) | | GET | `sapi/v1/portfolio/asset-index-price` | +| [getPortfolioMarginAssetLeverage()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3298) | :closed_lock_with_key: | GET | `sapi/v1/portfolio/margin-asset-leverage` | +| [getPortfolioMarginProCollateralRate()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3304) | | GET | `sapi/v1/portfolio/collateralRate` | +| [getPortfolioMarginProTieredCollateralRate()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3310) | | GET | `sapi/v2/portfolio/collateralRate` | +| [getPortfolioMarginProAccountInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3321) | :closed_lock_with_key: | GET | `sapi/v1/portfolio/account` | +| [bnbTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3325) | :closed_lock_with_key: | POST | `sapi/v1/portfolio/bnb-transfer` | +| [submitPortfolioMarginProFullTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3331) | :closed_lock_with_key: | POST | `sapi/v1/portfolio/auto-collection` | +| [submitPortfolioMarginProSpecificTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3337) | :closed_lock_with_key: | POST | `sapi/v1/portfolio/asset-collection` | +| [repayPortfolioMarginProBankruptcyLoan()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3343) | :closed_lock_with_key: | POST | `sapi/v1/portfolio/repay` | +| [getPortfolioMarginProBankruptcyLoanAmount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3351) | :closed_lock_with_key: | GET | `sapi/v1/portfolio/pmLoan` | +| [repayFuturesNegativeBalance()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3355) | :closed_lock_with_key: | POST | `sapi/v1/portfolio/repay-futures-negative-balance` | +| [updateAutoRepayFuturesStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3361) | :closed_lock_with_key: | POST | `sapi/v1/portfolio/repay-futures-switch` | +| [getAutoRepayFuturesStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3367) | :closed_lock_with_key: | GET | `sapi/v1/portfolio/repay-futures-switch` | +| [getPortfolioMarginProInterestHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3373) | :closed_lock_with_key: | GET | `sapi/v1/portfolio/interest-history` | +| [getFuturesTickLevelOrderbookDataLink()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3386) | :closed_lock_with_key: | GET | `sapi/v1/futures/histDataLink` | +| [getBlvtInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3400) | | GET | `sapi/v1/blvt/tokenInfo` | +| [subscribeBlvt()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3404) | :closed_lock_with_key: | POST | `sapi/v1/blvt/subscribe` | +| [getBlvtSubscriptionRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3408) | :closed_lock_with_key: | GET | `sapi/v1/blvt/subscribe/record` | +| [redeemBlvt()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3414) | :closed_lock_with_key: | POST | `sapi/v1/blvt/redeem` | +| [getBlvtRedemptionRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3418) | :closed_lock_with_key: | GET | `sapi/v1/blvt/redeem/record` | +| [getBlvtUserLimitInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3424) | :closed_lock_with_key: | GET | `sapi/v1/blvt/userLimit` | +| [getPayTransactions()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3435) | :closed_lock_with_key: | GET | `sapi/v1/pay/transactions` | +| [createBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3445) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccount` | +| [getBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3451) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccount` | +| [enableMarginBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3457) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccount/futures` | +| [createApiKeyBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3463) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccountApi` | +| [changePermissionApiKeyBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3469) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccountApi/permission` | +| [changeComissionBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3475) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccountApi/permission` | +| [enableUniversalTransferApiKeyBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3481) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccountApi/permission/universalTransfer` | +| [updateIpRestrictionForSubAccountApiKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3490) | :closed_lock_with_key: | POST | `sapi/v2/broker/subAccountApi/ipRestriction` | +| [deleteIPRestrictionForSubAccountApiKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3504) | :closed_lock_with_key: | DELETE | `sapi/v1/broker/subAccountApi/ipRestriction/ipList` | +| [deleteApiKeyBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3520) | :closed_lock_with_key: | DELETE | `sapi/v1/broker/subAccountApi` | +| [getSubAccountBrokerIpRestriction()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3526) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccountApi/ipRestriction` | +| [getApiKeyBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3542) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccountApi` | +| [getBrokerInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3548) | :closed_lock_with_key: | GET | `sapi/v1/broker/info` | +| [updateSubAccountBNBBurn()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3552) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccount/bnbBurn/spot` | +| [updateSubAccountMarginInterestBNBBurn()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3562) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccount/bnbBurn/marginInterest` | +| [getSubAccountBNBBurnStatus()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3575) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccount/bnbBurn/status` | +| [transferBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3589) | :closed_lock_with_key: | POST | `sapi/v1/broker/transfer` | +| [getBrokerSubAccountHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3595) | :closed_lock_with_key: | GET | `sapi/v1/broker/transfer` | +| [submitBrokerSubFuturesTransfer()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3601) | :closed_lock_with_key: | POST | `sapi/v1/broker/transfer/futures` | +| [getSubAccountFuturesTransferHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3616) | :closed_lock_with_key: | GET | `sapi/v1/broker/transfer/futures` | +| [getBrokerSubDepositHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3628) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccount/depositHist` | +| [getBrokerSubAccountSpotAssets()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3634) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccount/spotSummary` | +| [getSubAccountMarginAssetInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3643) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccount/marginSummary` | +| [querySubAccountFuturesAssetInfo()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3652) | :closed_lock_with_key: | GET | `sapi/v3/broker/subAccount/futuresSummary` | +| [universalTransferBroker()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3661) | :closed_lock_with_key: | POST | `sapi/v1/broker/universalTransfer` | +| [getUniversalTransferBroker()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3668) | :closed_lock_with_key: | GET | `sapi/v1/broker/universalTransfer` | +| [updateBrokerSubAccountCommission()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3680) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccountApi/commission` | +| [updateBrokerSubAccountFuturesCommission()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3686) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccountApi/commission/futures` | +| [getBrokerSubAccountFuturesCommission()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3695) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccountApi/commission/futures` | +| [updateBrokerSubAccountCoinFuturesCommission()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3704) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccountApi/commission/coinFutures` | +| [getBrokerSubAccountCoinFuturesCommission()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3713) | :closed_lock_with_key: | GET | `sapi/v1/broker/subAccountApi/commission/coinFutures` | +| [getBrokerSpotCommissionRebate()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3722) | :closed_lock_with_key: | GET | `sapi/v1/broker/rebate/recentRecord` | +| [getBrokerFuturesCommissionRebate()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3728) | :closed_lock_with_key: | GET | `sapi/v1/broker/rebate/futures/recentRecord` | +| [getBrokerIfNewSpotUser()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3765) | :closed_lock_with_key: | GET | `sapi/v1/apiReferral/ifNewUser` | +| [getBrokerSubAccountDepositHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3776) | :closed_lock_with_key: | GET | `sapi/v1/bv1/apiReferral/ifNewUser` | +| [enableFuturesBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3795) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccount` | +| [enableMarginApiKeyBrokerSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3805) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccount/margin` | +| [getSpotUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3842) | | POST | `api/v3/userDataStream` | +| [keepAliveSpotUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3846) | | PUT | `api/v3/userDataStream?listenKey=${listenKey}` | +| [closeSpotUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3850) | | DELETE | `api/v3/userDataStream?listenKey=${listenKey}` | +| [getMarginUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3855) | | POST | `sapi/v1/userDataStream` | +| [keepAliveMarginUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3859) | | PUT | `sapi/v1/userDataStream?listenKey=${listenKey}` | +| [closeMarginUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3863) | | DELETE | `sapi/v1/userDataStream?listenKey=${listenKey}` | +| [getIsolatedMarginUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3868) | | POST | `sapi/v1/userDataStream/isolated?${serialiseParams(params)}` | +| [keepAliveIsolatedMarginUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3876) | | PUT | `sapi/v1/userDataStream/isolated?${serialiseParams(params)}` | +| [closeIsolatedMarginUserDataListenKey()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3885) | | DELETE | `sapi/v1/userDataStream/isolated?${serialiseParams(params)}` | +| [getBSwapLiquidity()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3908) | :closed_lock_with_key: | GET | `sapi/v1/bswap/liquidity` | +| [addBSwapLiquidity()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3915) | :closed_lock_with_key: | POST | `sapi/v1/bswap/liquidityAdd` | +| [removeBSwapLiquidity()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3924) | :closed_lock_with_key: | POST | `sapi/v1/bswap/liquidityRemove` | +| [getBSwapOperations()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3933) | :closed_lock_with_key: | GET | `sapi/v1/bswap/liquidityOps` | +| [getLeftDailyPurchaseQuotaFlexibleProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3948) | :closed_lock_with_key: | GET | `sapi/v1/lending/daily/userLeftQuota` | +| [getLeftDailyRedemptionQuotaFlexibleProduct()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3957) | :closed_lock_with_key: | GET | `sapi/v1/lending/daily/userRedemptionQuota` | +| [purchaseFixedAndActivityProject()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3971) | :closed_lock_with_key: | POST | `sapi/v1/lending/customizedFixed/purchase` | +| [getFixedAndActivityProjects()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3981) | :closed_lock_with_key: | GET | `sapi/v1/lending/project/list` | +| [getFixedAndActivityProductPosition()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3990) | :closed_lock_with_key: | GET | `sapi/v1/lending/project/position/list` | +| [getLendingAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3999) | :closed_lock_with_key: | GET | `sapi/v1/lending/union/account` | +| [getPurchaseRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L4006) | :closed_lock_with_key: | GET | `sapi/v1/lending/union/purchaseRecord` | +| [getRedemptionRecord()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L4013) | :closed_lock_with_key: | GET | `sapi/v1/lending/union/redemptionRecord` | +| [getInterestHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L4020) | :closed_lock_with_key: | GET | `sapi/v1/lending/union/interestHistory` | +| [changeFixedAndActivityPositionToDailyPosition()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L4027) | :closed_lock_with_key: | POST | `sapi/v1/lending/positionChanged` | +| [enableConvertSubAccount()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L4044) | :closed_lock_with_key: | POST | `sapi/v1/broker/subAccount/convert` | +| [convertBUSD()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L4050) | :closed_lock_with_key: | POST | `sapi/v1/asset/convert-transfer` | +| [getConvertBUSDHistory()](https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L4057) | :closed_lock_with_key: | GET | `sapi/v1/asset/convert-transfer/queryByPage` | # usdm-client.ts diff --git a/examples/apidoc/CoinMClient/cancelAllOpenOrders.js b/examples/apidoc/CoinMClient/cancelAllOpenOrders.js index 1f0d898..f88cba3 100644 --- a/examples/apidoc/CoinMClient/cancelAllOpenOrders.js +++ b/examples/apidoc/CoinMClient/cancelAllOpenOrders.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/allOpenOrders // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L364 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/cancelMultipleOrders.js b/examples/apidoc/CoinMClient/cancelMultipleOrders.js index ba71407..5fc6c1f 100644 --- a/examples/apidoc/CoinMClient/cancelMultipleOrders.js +++ b/examples/apidoc/CoinMClient/cancelMultipleOrders.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/batchOrders // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L344 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/cancelOrder.js b/examples/apidoc/CoinMClient/cancelOrder.js index a5864ae..cdea83b 100644 --- a/examples/apidoc/CoinMClient/cancelOrder.js +++ b/examples/apidoc/CoinMClient/cancelOrder.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/order // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L340 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/closeFuturesUserDataListenKey.js b/examples/apidoc/CoinMClient/closeFuturesUserDataListenKey.js index 3c304b9..c718fbc 100644 --- a/examples/apidoc/CoinMClient/closeFuturesUserDataListenKey.js +++ b/examples/apidoc/CoinMClient/closeFuturesUserDataListenKey.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/listenKey // METHOD: DELETE // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L631 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/get24hrChangeStatistics.js b/examples/apidoc/CoinMClient/get24hrChangeStatistics.js index 30eec00..c53ea01 100644 --- a/examples/apidoc/CoinMClient/get24hrChangeStatistics.js +++ b/examples/apidoc/CoinMClient/get24hrChangeStatistics.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/ticker/24hr // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L203 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/get24hrChangeStatististics.js b/examples/apidoc/CoinMClient/get24hrChangeStatististics.js index 986abd8..8643520 100644 --- a/examples/apidoc/CoinMClient/get24hrChangeStatististics.js +++ b/examples/apidoc/CoinMClient/get24hrChangeStatististics.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/ticker/24hr // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L197 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getADLQuantileEstimation.js b/examples/apidoc/CoinMClient/getADLQuantileEstimation.js index fe4b9b3..46b2723 100644 --- a/examples/apidoc/CoinMClient/getADLQuantileEstimation.js +++ b/examples/apidoc/CoinMClient/getADLQuantileEstimation.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/adlQuantile // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L419 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getAccountComissionRate.js b/examples/apidoc/CoinMClient/getAccountComissionRate.js index 7ba3947..965fc8f 100644 --- a/examples/apidoc/CoinMClient/getAccountComissionRate.js +++ b/examples/apidoc/CoinMClient/getAccountComissionRate.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/commissionRate // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L444 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getAccountInformation.js b/examples/apidoc/CoinMClient/getAccountInformation.js index caaaba6..98576ac 100644 --- a/examples/apidoc/CoinMClient/getAccountInformation.js +++ b/examples/apidoc/CoinMClient/getAccountInformation.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L450 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getAccountTrades.js b/examples/apidoc/CoinMClient/getAccountTrades.js index 822b3b1..abb888d 100644 --- a/examples/apidoc/CoinMClient/getAccountTrades.js +++ b/examples/apidoc/CoinMClient/getAccountTrades.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/userTrades // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L397 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getAggregateTrades.js b/examples/apidoc/CoinMClient/getAggregateTrades.js index 23eb60d..37952af 100644 --- a/examples/apidoc/CoinMClient/getAggregateTrades.js +++ b/examples/apidoc/CoinMClient/getAggregateTrades.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/aggTrades // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L147 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getAllOpenOrders.js b/examples/apidoc/CoinMClient/getAllOpenOrders.js index 8f2b11e..a4195b9 100644 --- a/examples/apidoc/CoinMClient/getAllOpenOrders.js +++ b/examples/apidoc/CoinMClient/getAllOpenOrders.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/openOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L385 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getAllOrders.js b/examples/apidoc/CoinMClient/getAllOrders.js index b295759..c0fda0b 100644 --- a/examples/apidoc/CoinMClient/getAllOrders.js +++ b/examples/apidoc/CoinMClient/getAllOrders.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/allOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L381 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getBalance.js b/examples/apidoc/CoinMClient/getBalance.js index afc2209..cc61d4d 100644 --- a/examples/apidoc/CoinMClient/getBalance.js +++ b/examples/apidoc/CoinMClient/getBalance.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/balance // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L440 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getBrokerClientCustomIds.js b/examples/apidoc/CoinMClient/getBrokerClientCustomIds.js index 60c239e..ad033b8 100644 --- a/examples/apidoc/CoinMClient/getBrokerClientCustomIds.js +++ b/examples/apidoc/CoinMClient/getBrokerClientCustomIds.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/apiReferral/customization // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L534 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getBrokerIfNewFuturesUser.js b/examples/apidoc/CoinMClient/getBrokerIfNewFuturesUser.js index 0b07fd9..155a133 100644 --- a/examples/apidoc/CoinMClient/getBrokerIfNewFuturesUser.js +++ b/examples/apidoc/CoinMClient/getBrokerIfNewFuturesUser.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/apiReferral/ifNewUser // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L508 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getBrokerRebateDataOverview.js b/examples/apidoc/CoinMClient/getBrokerRebateDataOverview.js index c5aac5f..bb59b06 100644 --- a/examples/apidoc/CoinMClient/getBrokerRebateDataOverview.js +++ b/examples/apidoc/CoinMClient/getBrokerRebateDataOverview.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/apiReferral/overview // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L560 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getBrokerRebateVolume.js b/examples/apidoc/CoinMClient/getBrokerRebateVolume.js index bff1a69..8f1482e 100644 --- a/examples/apidoc/CoinMClient/getBrokerRebateVolume.js +++ b/examples/apidoc/CoinMClient/getBrokerRebateVolume.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/apiReferral/rebateVol // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L586 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getBrokerTradeDetail.js b/examples/apidoc/CoinMClient/getBrokerTradeDetail.js index d22da92..6a381b2 100644 --- a/examples/apidoc/CoinMClient/getBrokerTradeDetail.js +++ b/examples/apidoc/CoinMClient/getBrokerTradeDetail.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/apiReferral/traderSummary // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L603 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getBrokerUserCustomId.js b/examples/apidoc/CoinMClient/getBrokerUserCustomId.js index f3f5b29..531f3f8 100644 --- a/examples/apidoc/CoinMClient/getBrokerUserCustomId.js +++ b/examples/apidoc/CoinMClient/getBrokerUserCustomId.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/apiReferral/userCustomization // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L551 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getBrokerUserTradeVolume.js b/examples/apidoc/CoinMClient/getBrokerUserTradeVolume.js index 7ff3111..a6fe6c5 100644 --- a/examples/apidoc/CoinMClient/getBrokerUserTradeVolume.js +++ b/examples/apidoc/CoinMClient/getBrokerUserTradeVolume.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/apiReferral/tradeVol // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L569 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getClassicPortfolioMarginAccount.js b/examples/apidoc/CoinMClient/getClassicPortfolioMarginAccount.js index cbdfc0d..eb1ced8 100644 --- a/examples/apidoc/CoinMClient/getClassicPortfolioMarginAccount.js +++ b/examples/apidoc/CoinMClient/getClassicPortfolioMarginAccount.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/pmAccountInfo // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L480 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getClassicPortfolioMarginNotionalLimits.js b/examples/apidoc/CoinMClient/getClassicPortfolioMarginNotionalLimits.js index b6b2df2..970cf35 100644 --- a/examples/apidoc/CoinMClient/getClassicPortfolioMarginNotionalLimits.js +++ b/examples/apidoc/CoinMClient/getClassicPortfolioMarginNotionalLimits.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/pmExchangeInfo // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L489 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getCompositeSymbolIndex.js b/examples/apidoc/CoinMClient/getCompositeSymbolIndex.js index c962bd1..7bf72ae 100644 --- a/examples/apidoc/CoinMClient/getCompositeSymbolIndex.js +++ b/examples/apidoc/CoinMClient/getCompositeSymbolIndex.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: futures/data/basis // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L255 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getContinuousContractKlines.js b/examples/apidoc/CoinMClient/getContinuousContractKlines.js index 0b3f544..76ea56f 100644 --- a/examples/apidoc/CoinMClient/getContinuousContractKlines.js +++ b/examples/apidoc/CoinMClient/getContinuousContractKlines.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/continuousKlines // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L176 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getCurrentOpenOrder.js b/examples/apidoc/CoinMClient/getCurrentOpenOrder.js index 1556b14..e9cbdc2 100644 --- a/examples/apidoc/CoinMClient/getCurrentOpenOrder.js +++ b/examples/apidoc/CoinMClient/getCurrentOpenOrder.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/openOrder // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L389 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getCurrentPositionMode.js b/examples/apidoc/CoinMClient/getCurrentPositionMode.js index 74de09a..fddce11 100644 --- a/examples/apidoc/CoinMClient/getCurrentPositionMode.js +++ b/examples/apidoc/CoinMClient/getCurrentPositionMode.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/positionSide/dual // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L466 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getExchangeInfo.js b/examples/apidoc/CoinMClient/getExchangeInfo.js index 3318078..84f10f8 100644 --- a/examples/apidoc/CoinMClient/getExchangeInfo.js +++ b/examples/apidoc/CoinMClient/getExchangeInfo.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/exchangeInfo // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L129 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getForceOrders.js b/examples/apidoc/CoinMClient/getForceOrders.js index dc8283a..b5ba542 100644 --- a/examples/apidoc/CoinMClient/getForceOrders.js +++ b/examples/apidoc/CoinMClient/getForceOrders.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/forceOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L393 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getFundingRate.js b/examples/apidoc/CoinMClient/getFundingRate.js index 9a0175c..defa62d 100644 --- a/examples/apidoc/CoinMClient/getFundingRate.js +++ b/examples/apidoc/CoinMClient/getFundingRate.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/fundingInfo // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L168 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getFundingRateHistory.js b/examples/apidoc/CoinMClient/getFundingRateHistory.js index e080ac4..00a746c 100644 --- a/examples/apidoc/CoinMClient/getFundingRateHistory.js +++ b/examples/apidoc/CoinMClient/getFundingRateHistory.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/fundingRate // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L162 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getFuturesUserDataListenKey.js b/examples/apidoc/CoinMClient/getFuturesUserDataListenKey.js index 1dda5a4..bb197a1 100644 --- a/examples/apidoc/CoinMClient/getFuturesUserDataListenKey.js +++ b/examples/apidoc/CoinMClient/getFuturesUserDataListenKey.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/listenKey // METHOD: POST // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L623 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getGlobalLongShortAccountRatio.js b/examples/apidoc/CoinMClient/getGlobalLongShortAccountRatio.js index 3e1a3bb..d15522a 100644 --- a/examples/apidoc/CoinMClient/getGlobalLongShortAccountRatio.js +++ b/examples/apidoc/CoinMClient/getGlobalLongShortAccountRatio.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: futures/data/globalLongShortAccountRatio // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L243 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getHistoricalTrades.js b/examples/apidoc/CoinMClient/getHistoricalTrades.js index 3913b13..29b2a35 100644 --- a/examples/apidoc/CoinMClient/getHistoricalTrades.js +++ b/examples/apidoc/CoinMClient/getHistoricalTrades.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/historicalTrades // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L141 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getIncomeHistory.js b/examples/apidoc/CoinMClient/getIncomeHistory.js index 7fb44b5..7550753 100644 --- a/examples/apidoc/CoinMClient/getIncomeHistory.js +++ b/examples/apidoc/CoinMClient/getIncomeHistory.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/income // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L470 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getIndexPriceConstituents.js b/examples/apidoc/CoinMClient/getIndexPriceConstituents.js index 30f7e25..e73eae9 100644 --- a/examples/apidoc/CoinMClient/getIndexPriceConstituents.js +++ b/examples/apidoc/CoinMClient/getIndexPriceConstituents.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/constituents // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L263 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getIndexPriceKlines.js b/examples/apidoc/CoinMClient/getIndexPriceKlines.js index dac01d7..c907a8f 100644 --- a/examples/apidoc/CoinMClient/getIndexPriceKlines.js +++ b/examples/apidoc/CoinMClient/getIndexPriceKlines.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/indexPriceKlines // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L182 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getKlines.js b/examples/apidoc/CoinMClient/getKlines.js index 45a76ce..586ed8e 100644 --- a/examples/apidoc/CoinMClient/getKlines.js +++ b/examples/apidoc/CoinMClient/getKlines.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/klines // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L172 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getMarkPrice.js b/examples/apidoc/CoinMClient/getMarkPrice.js index ad55209..e8bc726 100644 --- a/examples/apidoc/CoinMClient/getMarkPrice.js +++ b/examples/apidoc/CoinMClient/getMarkPrice.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/premiumIndex // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L156 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getMarkPriceKlines.js b/examples/apidoc/CoinMClient/getMarkPriceKlines.js index badef29..cfedc34 100644 --- a/examples/apidoc/CoinMClient/getMarkPriceKlines.js +++ b/examples/apidoc/CoinMClient/getMarkPriceKlines.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/markPriceKlines // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L186 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getNotionalAndLeverageBrackets.js b/examples/apidoc/CoinMClient/getNotionalAndLeverageBrackets.js index dc297e9..af04023 100644 --- a/examples/apidoc/CoinMClient/getNotionalAndLeverageBrackets.js +++ b/examples/apidoc/CoinMClient/getNotionalAndLeverageBrackets.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v2/leverageBracket // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L457 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getOpenInterest.js b/examples/apidoc/CoinMClient/getOpenInterest.js index 9f0d7fd..7f0863c 100644 --- a/examples/apidoc/CoinMClient/getOpenInterest.js +++ b/examples/apidoc/CoinMClient/getOpenInterest.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/openInterest // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L223 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getOpenInterestStatistics.js b/examples/apidoc/CoinMClient/getOpenInterestStatistics.js index c6aeb8b..2257999 100644 --- a/examples/apidoc/CoinMClient/getOpenInterestStatistics.js +++ b/examples/apidoc/CoinMClient/getOpenInterestStatistics.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: futures/data/openInterestHist // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L227 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getOrder.js b/examples/apidoc/CoinMClient/getOrder.js index 9cbc2e6..45bf03b 100644 --- a/examples/apidoc/CoinMClient/getOrder.js +++ b/examples/apidoc/CoinMClient/getOrder.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/order // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L377 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getOrderBook.js b/examples/apidoc/CoinMClient/getOrderBook.js index 696868e..4651d01 100644 --- a/examples/apidoc/CoinMClient/getOrderBook.js +++ b/examples/apidoc/CoinMClient/getOrderBook.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/depth // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L133 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getOrderModifyHistory.js b/examples/apidoc/CoinMClient/getOrderModifyHistory.js index 4933209..713751b 100644 --- a/examples/apidoc/CoinMClient/getOrderModifyHistory.js +++ b/examples/apidoc/CoinMClient/getOrderModifyHistory.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/orderAmendment // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L334 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getPositionMarginChangeHistory.js b/examples/apidoc/CoinMClient/getPositionMarginChangeHistory.js index a774be1..6b27884 100644 --- a/examples/apidoc/CoinMClient/getPositionMarginChangeHistory.js +++ b/examples/apidoc/CoinMClient/getPositionMarginChangeHistory.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/positionMargin/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L429 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getPositions.js b/examples/apidoc/CoinMClient/getPositions.js index e8bbfbd..f5b322b 100644 --- a/examples/apidoc/CoinMClient/getPositions.js +++ b/examples/apidoc/CoinMClient/getPositions.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/positionRisk // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L403 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getPremiumIndexKlines.js b/examples/apidoc/CoinMClient/getPremiumIndexKlines.js index ec02728..849a633 100644 --- a/examples/apidoc/CoinMClient/getPremiumIndexKlines.js +++ b/examples/apidoc/CoinMClient/getPremiumIndexKlines.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/premiumIndexKlines // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L190 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getQuarterlyContractSettlementPrices.js b/examples/apidoc/CoinMClient/getQuarterlyContractSettlementPrices.js index 0b2dd22..41d944e 100644 --- a/examples/apidoc/CoinMClient/getQuarterlyContractSettlementPrices.js +++ b/examples/apidoc/CoinMClient/getQuarterlyContractSettlementPrices.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: futures/data/delivery-price // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L273 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getRecentTrades.js b/examples/apidoc/CoinMClient/getRecentTrades.js index 2c232c5..4bbf50d 100644 --- a/examples/apidoc/CoinMClient/getRecentTrades.js +++ b/examples/apidoc/CoinMClient/getRecentTrades.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/trades // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L137 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getSymbolOrderBookTicker.js b/examples/apidoc/CoinMClient/getSymbolOrderBookTicker.js index 9df759d..401ac90 100644 --- a/examples/apidoc/CoinMClient/getSymbolOrderBookTicker.js +++ b/examples/apidoc/CoinMClient/getSymbolOrderBookTicker.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/ticker/bookTicker // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L215 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getSymbolPriceTicker.js b/examples/apidoc/CoinMClient/getSymbolPriceTicker.js index 9b8e312..959440f 100644 --- a/examples/apidoc/CoinMClient/getSymbolPriceTicker.js +++ b/examples/apidoc/CoinMClient/getSymbolPriceTicker.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/ticker/price // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L209 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getTakerBuySellVolume.js b/examples/apidoc/CoinMClient/getTakerBuySellVolume.js index 2d79299..899d41e 100644 --- a/examples/apidoc/CoinMClient/getTakerBuySellVolume.js +++ b/examples/apidoc/CoinMClient/getTakerBuySellVolume.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: futures/data/takerBuySellVol // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L249 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getTopTradersLongShortAccountRatio.js b/examples/apidoc/CoinMClient/getTopTradersLongShortAccountRatio.js index b869f29..c5b443e 100644 --- a/examples/apidoc/CoinMClient/getTopTradersLongShortAccountRatio.js +++ b/examples/apidoc/CoinMClient/getTopTradersLongShortAccountRatio.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: futures/data/topLongShortAccountRatio // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L231 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/getTopTradersLongShortPositionRatio.js b/examples/apidoc/CoinMClient/getTopTradersLongShortPositionRatio.js index e176fff..28ce8aa 100644 --- a/examples/apidoc/CoinMClient/getTopTradersLongShortPositionRatio.js +++ b/examples/apidoc/CoinMClient/getTopTradersLongShortPositionRatio.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: futures/data/topLongShortPositionRatio // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L237 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/keepAliveFuturesUserDataListenKey.js b/examples/apidoc/CoinMClient/keepAliveFuturesUserDataListenKey.js index 0a015fd..b9b14b6 100644 --- a/examples/apidoc/CoinMClient/keepAliveFuturesUserDataListenKey.js +++ b/examples/apidoc/CoinMClient/keepAliveFuturesUserDataListenKey.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/listenKey // METHOD: PUT // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L627 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/modifyMultipleOrders.js b/examples/apidoc/CoinMClient/modifyMultipleOrders.js index 531d07e..90873ab 100644 --- a/examples/apidoc/CoinMClient/modifyMultipleOrders.js +++ b/examples/apidoc/CoinMClient/modifyMultipleOrders.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/batchOrders // METHOD: PUT // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L321 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/modifyOrder.js b/examples/apidoc/CoinMClient/modifyOrder.js index 5dbe523..e554d5d 100644 --- a/examples/apidoc/CoinMClient/modifyOrder.js +++ b/examples/apidoc/CoinMClient/modifyOrder.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/order // METHOD: PUT // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L312 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/setBrokerCustomIdForClient.js b/examples/apidoc/CoinMClient/setBrokerCustomIdForClient.js index 52332bd..63aa0b2 100644 --- a/examples/apidoc/CoinMClient/setBrokerCustomIdForClient.js +++ b/examples/apidoc/CoinMClient/setBrokerCustomIdForClient.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/apiReferral/customization // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L521 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/setCancelOrdersOnTimeout.js b/examples/apidoc/CoinMClient/setCancelOrdersOnTimeout.js index 6bb4d91..961085e 100644 --- a/examples/apidoc/CoinMClient/setCancelOrdersOnTimeout.js +++ b/examples/apidoc/CoinMClient/setCancelOrdersOnTimeout.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/countdownCancelAll // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L371 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/setIsolatedPositionMargin.js b/examples/apidoc/CoinMClient/setIsolatedPositionMargin.js index 07bbbe2..502589a 100644 --- a/examples/apidoc/CoinMClient/setIsolatedPositionMargin.js +++ b/examples/apidoc/CoinMClient/setIsolatedPositionMargin.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/positionMargin // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L423 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/setLeverage.js b/examples/apidoc/CoinMClient/setLeverage.js index c90a82f..3534231 100644 --- a/examples/apidoc/CoinMClient/setLeverage.js +++ b/examples/apidoc/CoinMClient/setLeverage.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/leverage // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L415 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/setMarginType.js b/examples/apidoc/CoinMClient/setMarginType.js index cac14d2..b78cacc 100644 --- a/examples/apidoc/CoinMClient/setMarginType.js +++ b/examples/apidoc/CoinMClient/setMarginType.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/marginType // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L411 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/setPositionMode.js b/examples/apidoc/CoinMClient/setPositionMode.js index a55e583..2d5dca2 100644 --- a/examples/apidoc/CoinMClient/setPositionMode.js +++ b/examples/apidoc/CoinMClient/setPositionMode.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/positionSide/dual // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L407 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/submitMultipleOrders.js b/examples/apidoc/CoinMClient/submitMultipleOrders.js index 03928f1..cb8e880 100644 --- a/examples/apidoc/CoinMClient/submitMultipleOrders.js +++ b/examples/apidoc/CoinMClient/submitMultipleOrders.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/batchOrders // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L295 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/submitNewOrder.js b/examples/apidoc/CoinMClient/submitNewOrder.js index 91734a0..64a72b8 100644 --- a/examples/apidoc/CoinMClient/submitNewOrder.js +++ b/examples/apidoc/CoinMClient/submitNewOrder.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/order // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L285 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/CoinMClient/testConnectivity.js b/examples/apidoc/CoinMClient/testConnectivity.js index 4b44eb1..663d6d9 100644 --- a/examples/apidoc/CoinMClient/testConnectivity.js +++ b/examples/apidoc/CoinMClient/testConnectivity.js @@ -5,7 +5,6 @@ const { CoinMClient } = require('binance'); // ENDPOINT: dapi/v1/ping // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/coinm-client.ts#L125 const client = new CoinMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/acceptQuoteRequest.js b/examples/apidoc/MainClient/acceptQuoteRequest.js index 932a58d..5e76787 100644 --- a/examples/apidoc/MainClient/acceptQuoteRequest.js +++ b/examples/apidoc/MainClient/acceptQuoteRequest.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/convert/acceptQuote // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2111 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/addBSwapLiquidity.js b/examples/apidoc/MainClient/addBSwapLiquidity.js index 72e46fa..b56324b 100644 --- a/examples/apidoc/MainClient/addBSwapLiquidity.js +++ b/examples/apidoc/MainClient/addBSwapLiquidity.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/bswap/liquidityAdd // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3858 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/adjustCryptoLoanFlexibleLTV.js b/examples/apidoc/MainClient/adjustCryptoLoanFlexibleLTV.js index a7cff6a..eb0193e 100644 --- a/examples/apidoc/MainClient/adjustCryptoLoanFlexibleLTV.js +++ b/examples/apidoc/MainClient/adjustCryptoLoanFlexibleLTV.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/loan/flexible/adjust/ltv // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2607 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/adjustCryptoLoanLTV.js b/examples/apidoc/MainClient/adjustCryptoLoanLTV.js index 8cff55b..697a829 100644 --- a/examples/apidoc/MainClient/adjustCryptoLoanLTV.js +++ b/examples/apidoc/MainClient/adjustCryptoLoanLTV.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/adjust/ltv // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2710 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/bnbTransfer.js b/examples/apidoc/MainClient/bnbTransfer.js index 5769864..bc2d8c0 100644 --- a/examples/apidoc/MainClient/bnbTransfer.js +++ b/examples/apidoc/MainClient/bnbTransfer.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/portfolio/bnb-transfer // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3268 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/borrowCryptoLoan.js b/examples/apidoc/MainClient/borrowCryptoLoan.js index 4a66ae3..f9c3a39 100644 --- a/examples/apidoc/MainClient/borrowCryptoLoan.js +++ b/examples/apidoc/MainClient/borrowCryptoLoan.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/borrow // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2698 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/borrowCryptoLoanFlexible.js b/examples/apidoc/MainClient/borrowCryptoLoanFlexible.js index 64de507..ecfa33d 100644 --- a/examples/apidoc/MainClient/borrowCryptoLoanFlexible.js +++ b/examples/apidoc/MainClient/borrowCryptoLoanFlexible.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/loan/flexible/borrow // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2595 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/borrowVipLoan.js b/examples/apidoc/MainClient/borrowVipLoan.js index c8bf902..176a63b 100644 --- a/examples/apidoc/MainClient/borrowVipLoan.js +++ b/examples/apidoc/MainClient/borrowVipLoan.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/vip/borrow // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3066 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/cancelAlgoOrder.js b/examples/apidoc/MainClient/cancelAlgoOrder.js index bb4f56f..56f791b 100644 --- a/examples/apidoc/MainClient/cancelAlgoOrder.js +++ b/examples/apidoc/MainClient/cancelAlgoOrder.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/algo/futures/order // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2500 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/cancelAllSymbolOrders.js b/examples/apidoc/MainClient/cancelAllSymbolOrders.js index d84ec1f..243a7db 100644 --- a/examples/apidoc/MainClient/cancelAllSymbolOrders.js +++ b/examples/apidoc/MainClient/cancelAllSymbolOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/openOrders // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L704 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/cancelConvertLimitOrder.js b/examples/apidoc/MainClient/cancelConvertLimitOrder.js index 3a3e7dd..80c4db6 100644 --- a/examples/apidoc/MainClient/cancelConvertLimitOrder.js +++ b/examples/apidoc/MainClient/cancelConvertLimitOrder.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/convert/limit/cancelOrder // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2127 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/cancelHashrateResaleConfig.js b/examples/apidoc/MainClient/cancelHashrateResaleConfig.js index 64c3b59..c7b2361 100644 --- a/examples/apidoc/MainClient/cancelHashrateResaleConfig.js +++ b/examples/apidoc/MainClient/cancelHashrateResaleConfig.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/mining/hash-transfer/config/cancel // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2440 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/cancelOCO.js b/examples/apidoc/MainClient/cancelOCO.js index 37ff822..b14f70d 100644 --- a/examples/apidoc/MainClient/cancelOCO.js +++ b/examples/apidoc/MainClient/cancelOCO.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/orderList // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L767 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/cancelOrder.js b/examples/apidoc/MainClient/cancelOrder.js index cc4509b..db12a06 100644 --- a/examples/apidoc/MainClient/cancelOrder.js +++ b/examples/apidoc/MainClient/cancelOrder.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/order // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L700 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/cancelSpotAlgoOrder.js b/examples/apidoc/MainClient/cancelSpotAlgoOrder.js index 98c7edf..d9a0bd3 100644 --- a/examples/apidoc/MainClient/cancelSpotAlgoOrder.js +++ b/examples/apidoc/MainClient/cancelSpotAlgoOrder.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/algo/spot/order // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2539 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/changeComissionBrokerSubAccount.js b/examples/apidoc/MainClient/changeComissionBrokerSubAccount.js index b8559d7..633fc0a 100644 --- a/examples/apidoc/MainClient/changeComissionBrokerSubAccount.js +++ b/examples/apidoc/MainClient/changeComissionBrokerSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccountApi/permission // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3418 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/changeFixedAndActivityPositionToDailyPosition.js b/examples/apidoc/MainClient/changeFixedAndActivityPositionToDailyPosition.js index 9f7794b..6a6f4c8 100644 --- a/examples/apidoc/MainClient/changeFixedAndActivityPositionToDailyPosition.js +++ b/examples/apidoc/MainClient/changeFixedAndActivityPositionToDailyPosition.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/positionChanged // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3970 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/changePermissionApiKeyBrokerSubAccount.js b/examples/apidoc/MainClient/changePermissionApiKeyBrokerSubAccount.js index 6f82a68..6ef1dcd 100644 --- a/examples/apidoc/MainClient/changePermissionApiKeyBrokerSubAccount.js +++ b/examples/apidoc/MainClient/changePermissionApiKeyBrokerSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccountApi/permission // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3412 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/checkVipCollateralAccount.js b/examples/apidoc/MainClient/checkVipCollateralAccount.js index 7663dc5..0849825 100644 --- a/examples/apidoc/MainClient/checkVipCollateralAccount.js +++ b/examples/apidoc/MainClient/checkVipCollateralAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/vip/collateral/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3038 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/closeIsolatedMarginUserDataListenKey.js b/examples/apidoc/MainClient/closeIsolatedMarginUserDataListenKey.js index d2c31ad..7372380 100644 --- a/examples/apidoc/MainClient/closeIsolatedMarginUserDataListenKey.js +++ b/examples/apidoc/MainClient/closeIsolatedMarginUserDataListenKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/userDataStream/isolated?${serialiseParams(params)} // METHOD: DELETE // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3828 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/closeMarginUserDataListenKey.js b/examples/apidoc/MainClient/closeMarginUserDataListenKey.js index 884aade..70ce9c1 100644 --- a/examples/apidoc/MainClient/closeMarginUserDataListenKey.js +++ b/examples/apidoc/MainClient/closeMarginUserDataListenKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/userDataStream?listenKey=${listenKey} // METHOD: DELETE // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3806 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/closeSpotUserDataListenKey.js b/examples/apidoc/MainClient/closeSpotUserDataListenKey.js index 2e800bb..1e0fa30 100644 --- a/examples/apidoc/MainClient/closeSpotUserDataListenKey.js +++ b/examples/apidoc/MainClient/closeSpotUserDataListenKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/userDataStream?listenKey=${listenKey} // METHOD: DELETE // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3793 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/convertBUSD.js b/examples/apidoc/MainClient/convertBUSD.js index a3f8dd7..f849ec4 100644 --- a/examples/apidoc/MainClient/convertBUSD.js +++ b/examples/apidoc/MainClient/convertBUSD.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/asset/convert-transfer // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3993 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/convertDustToBnb.js b/examples/apidoc/MainClient/convertDustToBnb.js index 3e18013..6d23ea8 100644 --- a/examples/apidoc/MainClient/convertDustToBnb.js +++ b/examples/apidoc/MainClient/convertDustToBnb.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/asset/dust // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1345 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/convertQuoteRequest.js b/examples/apidoc/MainClient/convertQuoteRequest.js index 2fde14d..c47703d 100644 --- a/examples/apidoc/MainClient/convertQuoteRequest.js +++ b/examples/apidoc/MainClient/convertQuoteRequest.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/convert/getQuote // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2107 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/createApiKeyBrokerSubAccount.js b/examples/apidoc/MainClient/createApiKeyBrokerSubAccount.js index 45801f6..30d76a9 100644 --- a/examples/apidoc/MainClient/createApiKeyBrokerSubAccount.js +++ b/examples/apidoc/MainClient/createApiKeyBrokerSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccountApi // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3406 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/createBrokerSubAccount.js b/examples/apidoc/MainClient/createBrokerSubAccount.js index ce0943e..34af62c 100644 --- a/examples/apidoc/MainClient/createBrokerSubAccount.js +++ b/examples/apidoc/MainClient/createBrokerSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccount // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3388 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/createDualTokenGiftCard.js b/examples/apidoc/MainClient/createDualTokenGiftCard.js index 179af7a..61cb509 100644 --- a/examples/apidoc/MainClient/createDualTokenGiftCard.js +++ b/examples/apidoc/MainClient/createDualTokenGiftCard.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/giftcard/buyCode // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3129 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/createGiftCard.js b/examples/apidoc/MainClient/createGiftCard.js index 690a0ab..6d9d05a 100644 --- a/examples/apidoc/MainClient/createGiftCard.js +++ b/examples/apidoc/MainClient/createGiftCard.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/giftcard/createCode // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3125 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/createMarginSpecialLowLatencyKey.js b/examples/apidoc/MainClient/createMarginSpecialLowLatencyKey.js index 31a0024..d35b0e3 100644 --- a/examples/apidoc/MainClient/createMarginSpecialLowLatencyKey.js +++ b/examples/apidoc/MainClient/createMarginSpecialLowLatencyKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/apiKey // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1090 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/createVirtualSubAccount.js b/examples/apidoc/MainClient/createVirtualSubAccount.js index 310fed9..6834c89 100644 --- a/examples/apidoc/MainClient/createVirtualSubAccount.js +++ b/examples/apidoc/MainClient/createVirtualSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/virtualSubAccount // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1531 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/customizeCryptoLoanMarginCall.js b/examples/apidoc/MainClient/customizeCryptoLoanMarginCall.js index bb5f7b1..8e60248 100644 --- a/examples/apidoc/MainClient/customizeCryptoLoanMarginCall.js +++ b/examples/apidoc/MainClient/customizeCryptoLoanMarginCall.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/customize/margin_call // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2716 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/deleteApiKeyBrokerSubAccount.js b/examples/apidoc/MainClient/deleteApiKeyBrokerSubAccount.js index c3ea0c5..5e427e3 100644 --- a/examples/apidoc/MainClient/deleteApiKeyBrokerSubAccount.js +++ b/examples/apidoc/MainClient/deleteApiKeyBrokerSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccountApi // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3463 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/deleteIPRestrictionForSubAccountApiKey.js b/examples/apidoc/MainClient/deleteIPRestrictionForSubAccountApiKey.js index a709434..1d7b3b3 100644 --- a/examples/apidoc/MainClient/deleteIPRestrictionForSubAccountApiKey.js +++ b/examples/apidoc/MainClient/deleteIPRestrictionForSubAccountApiKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccountApi/ipRestriction/ipList // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3447 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/deleteMarginSpecialLowLatencyKey.js b/examples/apidoc/MainClient/deleteMarginSpecialLowLatencyKey.js index f0dde94..c140d08 100644 --- a/examples/apidoc/MainClient/deleteMarginSpecialLowLatencyKey.js +++ b/examples/apidoc/MainClient/deleteMarginSpecialLowLatencyKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/apiKey // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1096 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/depositAssetsIntoManagedSubAccount.js b/examples/apidoc/MainClient/depositAssetsIntoManagedSubAccount.js index 1cabc7d..f0f9888 100644 --- a/examples/apidoc/MainClient/depositAssetsIntoManagedSubAccount.js +++ b/examples/apidoc/MainClient/depositAssetsIntoManagedSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/managed-subaccount/deposit // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1797 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/disableFastWithdrawSwitch.js b/examples/apidoc/MainClient/disableFastWithdrawSwitch.js index 44377f0..bebda68 100644 --- a/examples/apidoc/MainClient/disableFastWithdrawSwitch.js +++ b/examples/apidoc/MainClient/disableFastWithdrawSwitch.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/account/disableFastWithdrawSwitch // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1483 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/disableIsolatedMarginAccount.js b/examples/apidoc/MainClient/disableIsolatedMarginAccount.js index 907e218..e7e65c0 100644 --- a/examples/apidoc/MainClient/disableIsolatedMarginAccount.js +++ b/examples/apidoc/MainClient/disableIsolatedMarginAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/isolated/account // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1161 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/enableConvertSubAccount.js b/examples/apidoc/MainClient/enableConvertSubAccount.js index 37b1fdf..da31230 100644 --- a/examples/apidoc/MainClient/enableConvertSubAccount.js +++ b/examples/apidoc/MainClient/enableConvertSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccount/convert // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3987 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/enableFastWithdrawSwitch.js b/examples/apidoc/MainClient/enableFastWithdrawSwitch.js index 7932112..fd91bf9 100644 --- a/examples/apidoc/MainClient/enableFastWithdrawSwitch.js +++ b/examples/apidoc/MainClient/enableFastWithdrawSwitch.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/account/enableFastWithdrawSwitch // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1487 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/enableFuturesBrokerSubAccount.js b/examples/apidoc/MainClient/enableFuturesBrokerSubAccount.js index 08f8872..8680ef2 100644 --- a/examples/apidoc/MainClient/enableFuturesBrokerSubAccount.js +++ b/examples/apidoc/MainClient/enableFuturesBrokerSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccount // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3738 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/enableIsolatedMarginAccount.js b/examples/apidoc/MainClient/enableIsolatedMarginAccount.js index a6b98b8..141543a 100644 --- a/examples/apidoc/MainClient/enableIsolatedMarginAccount.js +++ b/examples/apidoc/MainClient/enableIsolatedMarginAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/isolated/account // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1168 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/enableMarginApiKeyBrokerSubAccount.js b/examples/apidoc/MainClient/enableMarginApiKeyBrokerSubAccount.js index 8814602..f5cb602 100644 --- a/examples/apidoc/MainClient/enableMarginApiKeyBrokerSubAccount.js +++ b/examples/apidoc/MainClient/enableMarginApiKeyBrokerSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccount/margin // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3748 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/enableMarginBrokerSubAccount.js b/examples/apidoc/MainClient/enableMarginBrokerSubAccount.js index 1ceb864..df0af6e 100644 --- a/examples/apidoc/MainClient/enableMarginBrokerSubAccount.js +++ b/examples/apidoc/MainClient/enableMarginBrokerSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccount/futures // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3400 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/enableOptionsForSubAccount.js b/examples/apidoc/MainClient/enableOptionsForSubAccount.js index 234b1e0..99e749e 100644 --- a/examples/apidoc/MainClient/enableOptionsForSubAccount.js +++ b/examples/apidoc/MainClient/enableOptionsForSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/eoptions/enable // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1551 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/enableUniversalTransferApiKeyBrokerSubAccount.js b/examples/apidoc/MainClient/enableUniversalTransferApiKeyBrokerSubAccount.js index c61ddc2..d0a46ec 100644 --- a/examples/apidoc/MainClient/enableUniversalTransferApiKeyBrokerSubAccount.js +++ b/examples/apidoc/MainClient/enableUniversalTransferApiKeyBrokerSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccountApi/permission/universalTransfer // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3424 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/get24hrChangeStatististics.js b/examples/apidoc/MainClient/get24hrChangeStatististics.js index 6b442be..af1ccc9 100644 --- a/examples/apidoc/MainClient/get24hrChangeStatististics.js +++ b/examples/apidoc/MainClient/get24hrChangeStatististics.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/ticker/24hr // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L633 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAccountInfo.js b/examples/apidoc/MainClient/getAccountInfo.js index 5d39ced..5ee1c45 100644 --- a/examples/apidoc/MainClient/getAccountInfo.js +++ b/examples/apidoc/MainClient/getAccountInfo.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/account/info // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1473 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAccountInformation.js b/examples/apidoc/MainClient/getAccountInformation.js index d2c7af8..807af51 100644 --- a/examples/apidoc/MainClient/getAccountInformation.js +++ b/examples/apidoc/MainClient/getAccountInformation.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L817 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAccountStatus.js b/examples/apidoc/MainClient/getAccountStatus.js index c053165..1e436aa 100644 --- a/examples/apidoc/MainClient/getAccountStatus.js +++ b/examples/apidoc/MainClient/getAccountStatus.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/account/status // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1491 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAccountTradeList.js b/examples/apidoc/MainClient/getAccountTradeList.js index d10fbfa..d707f5d 100644 --- a/examples/apidoc/MainClient/getAccountTradeList.js +++ b/examples/apidoc/MainClient/getAccountTradeList.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/myTrades // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L821 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAdjustCrossCollateralLTVHistory.js b/examples/apidoc/MainClient/getAdjustCrossCollateralLTVHistory.js index 56411b2..96470cb 100644 --- a/examples/apidoc/MainClient/getAdjustCrossCollateralLTVHistory.js +++ b/examples/apidoc/MainClient/getAdjustCrossCollateralLTVHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/futures/loan/adjustCollateral/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1442 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAggregateTrades.js b/examples/apidoc/MainClient/getAggregateTrades.js index f971ec1..e21df8f 100644 --- a/examples/apidoc/MainClient/getAggregateTrades.js +++ b/examples/apidoc/MainClient/getAggregateTrades.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/aggTrades // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L607 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAlgoHistoricalOrders.js b/examples/apidoc/MainClient/getAlgoHistoricalOrders.js index c330917..42f2c31 100644 --- a/examples/apidoc/MainClient/getAlgoHistoricalOrders.js +++ b/examples/apidoc/MainClient/getAlgoHistoricalOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/algo/futures/historicalOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2519 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAlgoOpenOrders.js b/examples/apidoc/MainClient/getAlgoOpenOrders.js index f05539a..881f6c0 100644 --- a/examples/apidoc/MainClient/getAlgoOpenOrders.js +++ b/examples/apidoc/MainClient/getAlgoOpenOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/algo/futures/openOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2512 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAlgoSubOrders.js b/examples/apidoc/MainClient/getAlgoSubOrders.js index 6633ade..427f0c8 100644 --- a/examples/apidoc/MainClient/getAlgoSubOrders.js +++ b/examples/apidoc/MainClient/getAlgoSubOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/algo/futures/subOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2506 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAllCrossMarginPairs.js b/examples/apidoc/MainClient/getAllCrossMarginPairs.js index 46699a1..09be836 100644 --- a/examples/apidoc/MainClient/getAllCrossMarginPairs.js +++ b/examples/apidoc/MainClient/getAllCrossMarginPairs.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/allPairs // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L860 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAllMarginAssets.js b/examples/apidoc/MainClient/getAllMarginAssets.js index 7c8670b..a8d8152 100644 --- a/examples/apidoc/MainClient/getAllMarginAssets.js +++ b/examples/apidoc/MainClient/getAllMarginAssets.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/allAssets // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L870 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAllOCO.js b/examples/apidoc/MainClient/getAllOCO.js index d967442..f10b93d 100644 --- a/examples/apidoc/MainClient/getAllOCO.js +++ b/examples/apidoc/MainClient/getAllOCO.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/allOrderList // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L776 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAllOpenOCO.js b/examples/apidoc/MainClient/getAllOpenOCO.js index 2076423..e51b7ac 100644 --- a/examples/apidoc/MainClient/getAllOpenOCO.js +++ b/examples/apidoc/MainClient/getAllOpenOCO.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/openOrderList // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L783 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAllOrders.js b/examples/apidoc/MainClient/getAllOrders.js index 6fb600f..0781f52 100644 --- a/examples/apidoc/MainClient/getAllOrders.js +++ b/examples/apidoc/MainClient/getAllOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/allOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L723 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAllocations.js b/examples/apidoc/MainClient/getAllocations.js index d40e5ed..96b786d 100644 --- a/examples/apidoc/MainClient/getAllocations.js +++ b/examples/apidoc/MainClient/getAllocations.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/myAllocations // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L837 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getApiKeyBrokerSubAccount.js b/examples/apidoc/MainClient/getApiKeyBrokerSubAccount.js index 7a8d839..516caec 100644 --- a/examples/apidoc/MainClient/getApiKeyBrokerSubAccount.js +++ b/examples/apidoc/MainClient/getApiKeyBrokerSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccountApi // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3485 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getApiKeyPermissions.js b/examples/apidoc/MainClient/getApiKeyPermissions.js index a9ca53a..711fd23 100644 --- a/examples/apidoc/MainClient/getApiKeyPermissions.js +++ b/examples/apidoc/MainClient/getApiKeyPermissions.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/account/apiRestrictions // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1499 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getApiTradingStatus.js b/examples/apidoc/MainClient/getApiTradingStatus.js index d7d566f..0a3331a 100644 --- a/examples/apidoc/MainClient/getApiTradingStatus.js +++ b/examples/apidoc/MainClient/getApiTradingStatus.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/account/apiTradingStatus // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1495 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAssetDetail.js b/examples/apidoc/MainClient/getAssetDetail.js index 89522ff..866d9ab 100644 --- a/examples/apidoc/MainClient/getAssetDetail.js +++ b/examples/apidoc/MainClient/getAssetDetail.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/asset/assetDetail // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1315 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAssetDividendRecord.js b/examples/apidoc/MainClient/getAssetDividendRecord.js index 36eacd1..d34488f 100644 --- a/examples/apidoc/MainClient/getAssetDividendRecord.js +++ b/examples/apidoc/MainClient/getAssetDividendRecord.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/asset/assetDividend // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1353 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAutoConvertStablecoins.js b/examples/apidoc/MainClient/getAutoConvertStablecoins.js index b4f17a0..2439a52 100644 --- a/examples/apidoc/MainClient/getAutoConvertStablecoins.js +++ b/examples/apidoc/MainClient/getAutoConvertStablecoins.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/capital/contract/convertible-coins // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1298 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAutoInvestAssets.js b/examples/apidoc/MainClient/getAutoInvestAssets.js index 44b3b54..6d59cec 100644 --- a/examples/apidoc/MainClient/getAutoInvestAssets.js +++ b/examples/apidoc/MainClient/getAutoInvestAssets.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/all/asset // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1897 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAutoInvestIndex.js b/examples/apidoc/MainClient/getAutoInvestIndex.js index fa618ef..6aa1970 100644 --- a/examples/apidoc/MainClient/getAutoInvestIndex.js +++ b/examples/apidoc/MainClient/getAutoInvestIndex.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/index/info // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1931 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAutoInvestPlan.js b/examples/apidoc/MainClient/getAutoInvestPlan.js index 4005bbd..55b1c0e 100644 --- a/examples/apidoc/MainClient/getAutoInvestPlan.js +++ b/examples/apidoc/MainClient/getAutoInvestPlan.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/plan/id // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2065 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAutoInvestPlans.js b/examples/apidoc/MainClient/getAutoInvestPlans.js index b5ef1c0..eb2f05e 100644 --- a/examples/apidoc/MainClient/getAutoInvestPlans.js +++ b/examples/apidoc/MainClient/getAutoInvestPlans.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/plan/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1937 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAutoInvestRebalanceHistory.js b/examples/apidoc/MainClient/getAutoInvestRebalanceHistory.js index 4a78c36..07ad0d6 100644 --- a/examples/apidoc/MainClient/getAutoInvestRebalanceHistory.js +++ b/examples/apidoc/MainClient/getAutoInvestRebalanceHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/rebalance/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2078 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAutoInvestRedemptionHistory.js b/examples/apidoc/MainClient/getAutoInvestRedemptionHistory.js index 1415c6e..58076bd 100644 --- a/examples/apidoc/MainClient/getAutoInvestRedemptionHistory.js +++ b/examples/apidoc/MainClient/getAutoInvestRedemptionHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/redeem/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2056 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAutoInvestSourceAssets.js b/examples/apidoc/MainClient/getAutoInvestSourceAssets.js index f645fd7..458a408 100644 --- a/examples/apidoc/MainClient/getAutoInvestSourceAssets.js +++ b/examples/apidoc/MainClient/getAutoInvestSourceAssets.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/source-asset/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1904 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAutoInvestSubscriptionTransactions.js b/examples/apidoc/MainClient/getAutoInvestSubscriptionTransactions.js index f253386..bd02295 100644 --- a/examples/apidoc/MainClient/getAutoInvestSubscriptionTransactions.js +++ b/examples/apidoc/MainClient/getAutoInvestSubscriptionTransactions.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/history/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2016 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAutoInvestTargetAssets.js b/examples/apidoc/MainClient/getAutoInvestTargetAssets.js index e2bd252..5b530ec 100644 --- a/examples/apidoc/MainClient/getAutoInvestTargetAssets.js +++ b/examples/apidoc/MainClient/getAutoInvestTargetAssets.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/target-asset/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1913 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAutoInvestTargetAssetsROI.js b/examples/apidoc/MainClient/getAutoInvestTargetAssetsROI.js index 7eeb5ea..93127f5 100644 --- a/examples/apidoc/MainClient/getAutoInvestTargetAssetsROI.js +++ b/examples/apidoc/MainClient/getAutoInvestTargetAssetsROI.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/target-asset/roi/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1922 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAutoInvestUserIndex.js b/examples/apidoc/MainClient/getAutoInvestUserIndex.js index 0164219..e8bf1e3 100644 --- a/examples/apidoc/MainClient/getAutoInvestUserIndex.js +++ b/examples/apidoc/MainClient/getAutoInvestUserIndex.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/index/user-summary // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2069 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAutoRepayFuturesStatus.js b/examples/apidoc/MainClient/getAutoRepayFuturesStatus.js index fcb4f6a..3613acb 100644 --- a/examples/apidoc/MainClient/getAutoRepayFuturesStatus.js +++ b/examples/apidoc/MainClient/getAutoRepayFuturesStatus.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/portfolio/repay-futures-switch // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3310 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getAvgPrice.js b/examples/apidoc/MainClient/getAvgPrice.js index 0ae5241..8954a2a 100644 --- a/examples/apidoc/MainClient/getAvgPrice.js +++ b/examples/apidoc/MainClient/getAvgPrice.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/avgPrice // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L621 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBNBBurn.js b/examples/apidoc/MainClient/getBNBBurn.js index c10dede..7450748 100644 --- a/examples/apidoc/MainClient/getBNBBurn.js +++ b/examples/apidoc/MainClient/getBNBBurn.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/bnbBurn // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1175 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBSwapLiquidity.js b/examples/apidoc/MainClient/getBSwapLiquidity.js index a9da9ee..f06c9a2 100644 --- a/examples/apidoc/MainClient/getBSwapLiquidity.js +++ b/examples/apidoc/MainClient/getBSwapLiquidity.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/bswap/liquidity // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3851 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBSwapOperations.js b/examples/apidoc/MainClient/getBSwapOperations.js index 3b4b8c1..1ecebf9 100644 --- a/examples/apidoc/MainClient/getBSwapOperations.js +++ b/examples/apidoc/MainClient/getBSwapOperations.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/bswap/liquidityOps // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3876 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBalances.js b/examples/apidoc/MainClient/getBalances.js index 856f54c..2546b38 100644 --- a/examples/apidoc/MainClient/getBalances.js +++ b/examples/apidoc/MainClient/getBalances.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/capital/config/getall // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1259 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBethRewardsHistory.js b/examples/apidoc/MainClient/getBethRewardsHistory.js index 83aec3c..0dd3e6a 100644 --- a/examples/apidoc/MainClient/getBethRewardsHistory.js +++ b/examples/apidoc/MainClient/getBethRewardsHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/eth-staking/eth/history/rewardsHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2213 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBethUnwrapHistory.js b/examples/apidoc/MainClient/getBethUnwrapHistory.js index c6ba21e..759dc9a 100644 --- a/examples/apidoc/MainClient/getBethUnwrapHistory.js +++ b/examples/apidoc/MainClient/getBethUnwrapHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/eth-staking/wbeth/history/unwrapHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2252 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBethWrapHistory.js b/examples/apidoc/MainClient/getBethWrapHistory.js index b3fe688..cf21b66 100644 --- a/examples/apidoc/MainClient/getBethWrapHistory.js +++ b/examples/apidoc/MainClient/getBethWrapHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/eth-staking/wbeth/history/wrapHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2242 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBlvtInfo.js b/examples/apidoc/MainClient/getBlvtInfo.js index 6a35f28..35f5476 100644 --- a/examples/apidoc/MainClient/getBlvtInfo.js +++ b/examples/apidoc/MainClient/getBlvtInfo.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/blvt/tokenInfo // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3343 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBlvtRedemptionRecord.js b/examples/apidoc/MainClient/getBlvtRedemptionRecord.js index d841446..29806fd 100644 --- a/examples/apidoc/MainClient/getBlvtRedemptionRecord.js +++ b/examples/apidoc/MainClient/getBlvtRedemptionRecord.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/blvt/redeem/record // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3361 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBlvtSubscriptionRecord.js b/examples/apidoc/MainClient/getBlvtSubscriptionRecord.js index aad70ee..a54137d 100644 --- a/examples/apidoc/MainClient/getBlvtSubscriptionRecord.js +++ b/examples/apidoc/MainClient/getBlvtSubscriptionRecord.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/blvt/subscribe/record // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3351 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBlvtUserLimitInfo.js b/examples/apidoc/MainClient/getBlvtUserLimitInfo.js index e86e2fa..6e9a75b 100644 --- a/examples/apidoc/MainClient/getBlvtUserLimitInfo.js +++ b/examples/apidoc/MainClient/getBlvtUserLimitInfo.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/blvt/userLimit // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3367 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBnsolRateHistory.js b/examples/apidoc/MainClient/getBnsolRateHistory.js index 0ffd3f1..fc318f1 100644 --- a/examples/apidoc/MainClient/getBnsolRateHistory.js +++ b/examples/apidoc/MainClient/getBnsolRateHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sol-staking/sol/history/rateHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2369 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBnsolRewardsHistory.js b/examples/apidoc/MainClient/getBnsolRewardsHistory.js index f7c07f3..d9af19b 100644 --- a/examples/apidoc/MainClient/getBnsolRewardsHistory.js +++ b/examples/apidoc/MainClient/getBnsolRewardsHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sol-staking/sol/history/bnsolRewardsHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2358 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBrokerFuturesCommissionRebate.js b/examples/apidoc/MainClient/getBrokerFuturesCommissionRebate.js index 485978e..c2962b9 100644 --- a/examples/apidoc/MainClient/getBrokerFuturesCommissionRebate.js +++ b/examples/apidoc/MainClient/getBrokerFuturesCommissionRebate.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/rebate/futures/recentRecord // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3671 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBrokerIfNewSpotUser.js b/examples/apidoc/MainClient/getBrokerIfNewSpotUser.js index f39a453..1d1ba45 100644 --- a/examples/apidoc/MainClient/getBrokerIfNewSpotUser.js +++ b/examples/apidoc/MainClient/getBrokerIfNewSpotUser.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/apiReferral/ifNewUser // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3708 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBrokerInfo.js b/examples/apidoc/MainClient/getBrokerInfo.js index c488ab4..49c1141 100644 --- a/examples/apidoc/MainClient/getBrokerInfo.js +++ b/examples/apidoc/MainClient/getBrokerInfo.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/info // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3491 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBrokerSpotCommissionRebate.js b/examples/apidoc/MainClient/getBrokerSpotCommissionRebate.js index c3f904d..636b418 100644 --- a/examples/apidoc/MainClient/getBrokerSpotCommissionRebate.js +++ b/examples/apidoc/MainClient/getBrokerSpotCommissionRebate.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/rebate/recentRecord // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3665 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBrokerSubAccount.js b/examples/apidoc/MainClient/getBrokerSubAccount.js index 2a08254..7bc2773 100644 --- a/examples/apidoc/MainClient/getBrokerSubAccount.js +++ b/examples/apidoc/MainClient/getBrokerSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccount // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3394 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBrokerSubAccountCoinFuturesCommission.js b/examples/apidoc/MainClient/getBrokerSubAccountCoinFuturesCommission.js index 74140c0..7437a3a 100644 --- a/examples/apidoc/MainClient/getBrokerSubAccountCoinFuturesCommission.js +++ b/examples/apidoc/MainClient/getBrokerSubAccountCoinFuturesCommission.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccountApi/commission/coinFutures // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3656 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBrokerSubAccountDepositHistory.js b/examples/apidoc/MainClient/getBrokerSubAccountDepositHistory.js index 14915ee..a48574c 100644 --- a/examples/apidoc/MainClient/getBrokerSubAccountDepositHistory.js +++ b/examples/apidoc/MainClient/getBrokerSubAccountDepositHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/bv1/apiReferral/ifNewUser // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3719 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBrokerSubAccountFuturesCommission.js b/examples/apidoc/MainClient/getBrokerSubAccountFuturesCommission.js index bd69302..2f624a7 100644 --- a/examples/apidoc/MainClient/getBrokerSubAccountFuturesCommission.js +++ b/examples/apidoc/MainClient/getBrokerSubAccountFuturesCommission.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccountApi/commission/futures // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3638 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBrokerSubAccountHistory.js b/examples/apidoc/MainClient/getBrokerSubAccountHistory.js index f0bde9c..ed53d37 100644 --- a/examples/apidoc/MainClient/getBrokerSubAccountHistory.js +++ b/examples/apidoc/MainClient/getBrokerSubAccountHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/transfer // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3538 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBrokerSubAccountSpotAssets.js b/examples/apidoc/MainClient/getBrokerSubAccountSpotAssets.js index 94c3013..b60e0b4 100644 --- a/examples/apidoc/MainClient/getBrokerSubAccountSpotAssets.js +++ b/examples/apidoc/MainClient/getBrokerSubAccountSpotAssets.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccount/spotSummary // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3577 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getBrokerSubDepositHistory.js b/examples/apidoc/MainClient/getBrokerSubDepositHistory.js index fa0fed4..e421345 100644 --- a/examples/apidoc/MainClient/getBrokerSubDepositHistory.js +++ b/examples/apidoc/MainClient/getBrokerSubDepositHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccount/depositHist // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3571 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getC2CTradeHistory.js b/examples/apidoc/MainClient/getC2CTradeHistory.js index 3c308eb..7cbfebf 100644 --- a/examples/apidoc/MainClient/getC2CTradeHistory.js +++ b/examples/apidoc/MainClient/getC2CTradeHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/c2c/orderMatch/listUserOrderHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3189 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCloudMiningHistory.js b/examples/apidoc/MainClient/getCloudMiningHistory.js index 655f866..d011efb 100644 --- a/examples/apidoc/MainClient/getCloudMiningHistory.js +++ b/examples/apidoc/MainClient/getCloudMiningHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/asset/ledger-transfer/cloud-mining/queryByPage // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1365 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCollateralRecord.js b/examples/apidoc/MainClient/getCollateralRecord.js index ccec68a..df8c2ca 100644 --- a/examples/apidoc/MainClient/getCollateralRecord.js +++ b/examples/apidoc/MainClient/getCollateralRecord.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/flexible/history/collateralRecord // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2970 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCommissionRates.js b/examples/apidoc/MainClient/getCommissionRates.js index 02f6431..0dc86fc 100644 --- a/examples/apidoc/MainClient/getCommissionRates.js +++ b/examples/apidoc/MainClient/getCommissionRates.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/account/commission // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L841 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getConvertAssetInfo.js b/examples/apidoc/MainClient/getConvertAssetInfo.js index 73e704d..29d80a3 100644 --- a/examples/apidoc/MainClient/getConvertAssetInfo.js +++ b/examples/apidoc/MainClient/getConvertAssetInfo.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/convert/assetInfo // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2097 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getConvertBUSDHistory.js b/examples/apidoc/MainClient/getConvertBUSDHistory.js index a44994f..e8c54d5 100644 --- a/examples/apidoc/MainClient/getConvertBUSDHistory.js +++ b/examples/apidoc/MainClient/getConvertBUSDHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/asset/convert-transfer/queryByPage // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L4000 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getConvertLimitOpenOrders.js b/examples/apidoc/MainClient/getConvertLimitOpenOrders.js index 476624d..8bb876d 100644 --- a/examples/apidoc/MainClient/getConvertLimitOpenOrders.js +++ b/examples/apidoc/MainClient/getConvertLimitOpenOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/convert/limit/queryOpenOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2131 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getConvertPairs.js b/examples/apidoc/MainClient/getConvertPairs.js index 699356f..e4a224e 100644 --- a/examples/apidoc/MainClient/getConvertPairs.js +++ b/examples/apidoc/MainClient/getConvertPairs.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/convert/exchangeInfo // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2093 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getConvertTradeHistory.js b/examples/apidoc/MainClient/getConvertTradeHistory.js index 52e24ec..7de92c3 100644 --- a/examples/apidoc/MainClient/getConvertTradeHistory.js +++ b/examples/apidoc/MainClient/getConvertTradeHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/convert/tradeFlow // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2115 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCrossCollateralBorrowHistory.js b/examples/apidoc/MainClient/getCrossCollateralBorrowHistory.js index d642f16..73160bd 100644 --- a/examples/apidoc/MainClient/getCrossCollateralBorrowHistory.js +++ b/examples/apidoc/MainClient/getCrossCollateralBorrowHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/futures/loan/borrow/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1424 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCrossCollateralInterestHistory.js b/examples/apidoc/MainClient/getCrossCollateralInterestHistory.js index f1377bb..e5797e0 100644 --- a/examples/apidoc/MainClient/getCrossCollateralInterestHistory.js +++ b/examples/apidoc/MainClient/getCrossCollateralInterestHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/futures/loan/interestHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1461 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCrossCollateralLiquidationHistory.js b/examples/apidoc/MainClient/getCrossCollateralLiquidationHistory.js index 64ab22d..51a1d0e 100644 --- a/examples/apidoc/MainClient/getCrossCollateralLiquidationHistory.js +++ b/examples/apidoc/MainClient/getCrossCollateralLiquidationHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/futures/loan/liquidationHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1453 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCrossCollateralRepaymentHistory.js b/examples/apidoc/MainClient/getCrossCollateralRepaymentHistory.js index de3dc99..e52e4b3 100644 --- a/examples/apidoc/MainClient/getCrossCollateralRepaymentHistory.js +++ b/examples/apidoc/MainClient/getCrossCollateralRepaymentHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/futures/loan/repay/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1430 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCrossCollateralWalletV2.js b/examples/apidoc/MainClient/getCrossCollateralWalletV2.js index 0efd2da..1cfd35b 100644 --- a/examples/apidoc/MainClient/getCrossCollateralWalletV2.js +++ b/examples/apidoc/MainClient/getCrossCollateralWalletV2.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/futures/loan/wallet // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1436 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCrossMarginCollateralRatio.js b/examples/apidoc/MainClient/getCrossMarginCollateralRatio.js index 1b6a5b7..a6cd490 100644 --- a/examples/apidoc/MainClient/getCrossMarginCollateralRatio.js +++ b/examples/apidoc/MainClient/getCrossMarginCollateralRatio.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/crossMarginCollateralRatio // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L851 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCrossMarginFeeData.js b/examples/apidoc/MainClient/getCrossMarginFeeData.js index bf9ca26..dceefd8 100644 --- a/examples/apidoc/MainClient/getCrossMarginFeeData.js +++ b/examples/apidoc/MainClient/getCrossMarginFeeData.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/crossMarginData // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1187 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCrossMarginTransferHistory.js b/examples/apidoc/MainClient/getCrossMarginTransferHistory.js index 544d000..4071270 100644 --- a/examples/apidoc/MainClient/getCrossMarginTransferHistory.js +++ b/examples/apidoc/MainClient/getCrossMarginTransferHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/transfer // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1137 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCryptoLoanBorrowHistory.js b/examples/apidoc/MainClient/getCryptoLoanBorrowHistory.js index 82a719c..310e9db 100644 --- a/examples/apidoc/MainClient/getCryptoLoanBorrowHistory.js +++ b/examples/apidoc/MainClient/getCryptoLoanBorrowHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/borrow/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2736 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCryptoLoanCollateralAssetsData.js b/examples/apidoc/MainClient/getCryptoLoanCollateralAssetsData.js index bd1a6dc..814181f 100644 --- a/examples/apidoc/MainClient/getCryptoLoanCollateralAssetsData.js +++ b/examples/apidoc/MainClient/getCryptoLoanCollateralAssetsData.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/collateral/data // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2677 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCryptoLoanCollateralRepayRate.js b/examples/apidoc/MainClient/getCryptoLoanCollateralRepayRate.js index be345c1..0af43b7 100644 --- a/examples/apidoc/MainClient/getCryptoLoanCollateralRepayRate.js +++ b/examples/apidoc/MainClient/getCryptoLoanCollateralRepayRate.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/repay/collateral/rate // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2671 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCryptoLoanFlexibleAssets.js b/examples/apidoc/MainClient/getCryptoLoanFlexibleAssets.js index 8dab769..02a4781 100644 --- a/examples/apidoc/MainClient/getCryptoLoanFlexibleAssets.js +++ b/examples/apidoc/MainClient/getCryptoLoanFlexibleAssets.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/loan/flexible/loanable/data // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2582 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCryptoLoanFlexibleCollateralAssets.js b/examples/apidoc/MainClient/getCryptoLoanFlexibleCollateralAssets.js index 88994e3..fea6e54 100644 --- a/examples/apidoc/MainClient/getCryptoLoanFlexibleCollateralAssets.js +++ b/examples/apidoc/MainClient/getCryptoLoanFlexibleCollateralAssets.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/loan/flexible/collateral/data // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2573 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCryptoLoanFlexibleLTVAdjustmentHistory.js b/examples/apidoc/MainClient/getCryptoLoanFlexibleLTVAdjustmentHistory.js index 723f4f5..d320384 100644 --- a/examples/apidoc/MainClient/getCryptoLoanFlexibleLTVAdjustmentHistory.js +++ b/examples/apidoc/MainClient/getCryptoLoanFlexibleLTVAdjustmentHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/loan/flexible/ltv/adjustment/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2619 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCryptoLoanFlexibleOngoingOrders.js b/examples/apidoc/MainClient/getCryptoLoanFlexibleOngoingOrders.js index 4705cf5..406826f 100644 --- a/examples/apidoc/MainClient/getCryptoLoanFlexibleOngoingOrders.js +++ b/examples/apidoc/MainClient/getCryptoLoanFlexibleOngoingOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/loan/flexible/ongoing/orders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2640 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCryptoLoanLTVAdjustmentHistory.js b/examples/apidoc/MainClient/getCryptoLoanLTVAdjustmentHistory.js index 373f4b3..07eafd1 100644 --- a/examples/apidoc/MainClient/getCryptoLoanLTVAdjustmentHistory.js +++ b/examples/apidoc/MainClient/getCryptoLoanLTVAdjustmentHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/ltv/adjustment/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2743 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCryptoLoanLoanableAssets.js b/examples/apidoc/MainClient/getCryptoLoanLoanableAssets.js index eead0fe..cfd4d07 100644 --- a/examples/apidoc/MainClient/getCryptoLoanLoanableAssets.js +++ b/examples/apidoc/MainClient/getCryptoLoanLoanableAssets.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/loanable/data // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2664 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCryptoLoanOngoingOrders.js b/examples/apidoc/MainClient/getCryptoLoanOngoingOrders.js index f921fc9..627bc80 100644 --- a/examples/apidoc/MainClient/getCryptoLoanOngoingOrders.js +++ b/examples/apidoc/MainClient/getCryptoLoanOngoingOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/ongoing/orders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2729 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCryptoLoanRepaymentHistory.js b/examples/apidoc/MainClient/getCryptoLoanRepaymentHistory.js index 1cb9b3d..ac308dc 100644 --- a/examples/apidoc/MainClient/getCryptoLoanRepaymentHistory.js +++ b/examples/apidoc/MainClient/getCryptoLoanRepaymentHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/repay/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2752 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getCryptoLoansIncomeHistory.js b/examples/apidoc/MainClient/getCryptoLoansIncomeHistory.js index 486cdc8..86565ee 100644 --- a/examples/apidoc/MainClient/getCryptoLoansIncomeHistory.js +++ b/examples/apidoc/MainClient/getCryptoLoansIncomeHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/income // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2686 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getDailyAccountSnapshot.js b/examples/apidoc/MainClient/getDailyAccountSnapshot.js index 3703a55..341f2bc 100644 --- a/examples/apidoc/MainClient/getDailyAccountSnapshot.js +++ b/examples/apidoc/MainClient/getDailyAccountSnapshot.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/accountSnapshot // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1477 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getDelegationHistory.js b/examples/apidoc/MainClient/getDelegationHistory.js index e382d00..54898e9 100644 --- a/examples/apidoc/MainClient/getDelegationHistory.js +++ b/examples/apidoc/MainClient/getDelegationHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/asset/custody/transfer-history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1375 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getDelistSchedule.js b/examples/apidoc/MainClient/getDelistSchedule.js index 802bcfd..166fc63 100644 --- a/examples/apidoc/MainClient/getDelistSchedule.js +++ b/examples/apidoc/MainClient/getDelistSchedule.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/spot/delist-schedule // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1521 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getDepositAddress.js b/examples/apidoc/MainClient/getDepositAddress.js index 3e9227e..f4821a3 100644 --- a/examples/apidoc/MainClient/getDepositAddress.js +++ b/examples/apidoc/MainClient/getDepositAddress.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/capital/deposit/address // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1280 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getDepositAddresses.js b/examples/apidoc/MainClient/getDepositAddresses.js index 72b7143..6d06b80 100644 --- a/examples/apidoc/MainClient/getDepositAddresses.js +++ b/examples/apidoc/MainClient/getDepositAddresses.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/capital/deposit/address/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1286 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getDepositHistory.js b/examples/apidoc/MainClient/getDepositHistory.js index b918c4b..cab8e6d 100644 --- a/examples/apidoc/MainClient/getDepositHistory.js +++ b/examples/apidoc/MainClient/getDepositHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/capital/deposit/hisrec // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1276 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getDualInvestmentAccounts.js b/examples/apidoc/MainClient/getDualInvestmentAccounts.js index 57ea010..934d5f1 100644 --- a/examples/apidoc/MainClient/getDualInvestmentAccounts.js +++ b/examples/apidoc/MainClient/getDualInvestmentAccounts.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/dci/product/accounts // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3106 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getDualInvestmentPositions.js b/examples/apidoc/MainClient/getDualInvestmentPositions.js index dfcc44a..e8d9f35 100644 --- a/examples/apidoc/MainClient/getDualInvestmentPositions.js +++ b/examples/apidoc/MainClient/getDualInvestmentPositions.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/dci/product/positions // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3097 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getDualInvestmentProducts.js b/examples/apidoc/MainClient/getDualInvestmentProducts.js index b257a39..b7a9e36 100644 --- a/examples/apidoc/MainClient/getDualInvestmentProducts.js +++ b/examples/apidoc/MainClient/getDualInvestmentProducts.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/dci/product/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3076 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getDust.js b/examples/apidoc/MainClient/getDust.js index 83139f0..af4088e 100644 --- a/examples/apidoc/MainClient/getDust.js +++ b/examples/apidoc/MainClient/getDust.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/asset/dust-btc // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1341 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getDustLog.js b/examples/apidoc/MainClient/getDustLog.js index 426410d..07b685e 100644 --- a/examples/apidoc/MainClient/getDustLog.js +++ b/examples/apidoc/MainClient/getDustLog.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/asset/dribblet // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1349 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getEthRateHistory.js b/examples/apidoc/MainClient/getEthRateHistory.js index 375eecd..56bc901 100644 --- a/examples/apidoc/MainClient/getEthRateHistory.js +++ b/examples/apidoc/MainClient/getEthRateHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/eth-staking/eth/history/rateHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2232 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getEthRedemptionHistory.js b/examples/apidoc/MainClient/getEthRedemptionHistory.js index 1f99b4c..0badc44 100644 --- a/examples/apidoc/MainClient/getEthRedemptionHistory.js +++ b/examples/apidoc/MainClient/getEthRedemptionHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/eth-staking/eth/history/redemptionHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2203 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getEthStakingAccount.js b/examples/apidoc/MainClient/getEthStakingAccount.js index 8ba31f9..7feb46b 100644 --- a/examples/apidoc/MainClient/getEthStakingAccount.js +++ b/examples/apidoc/MainClient/getEthStakingAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/eth-staking/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2146 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getEthStakingAccountV2.js b/examples/apidoc/MainClient/getEthStakingAccountV2.js index a4bcba1..7cba017 100644 --- a/examples/apidoc/MainClient/getEthStakingAccountV2.js +++ b/examples/apidoc/MainClient/getEthStakingAccountV2.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/eth-staking/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2150 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getEthStakingHistory.js b/examples/apidoc/MainClient/getEthStakingHistory.js index 9416b4f..62ad8ae 100644 --- a/examples/apidoc/MainClient/getEthStakingHistory.js +++ b/examples/apidoc/MainClient/getEthStakingHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/eth-staking/eth/history/stakingHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2193 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getEthStakingQuota.js b/examples/apidoc/MainClient/getEthStakingQuota.js index 81bae97..6bb9ac6 100644 --- a/examples/apidoc/MainClient/getEthStakingQuota.js +++ b/examples/apidoc/MainClient/getEthStakingQuota.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/eth-staking/eth/quota // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2154 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getExchangeInfo.js b/examples/apidoc/MainClient/getExchangeInfo.js index 9158562..58ff513 100644 --- a/examples/apidoc/MainClient/getExchangeInfo.js +++ b/examples/apidoc/MainClient/getExchangeInfo.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/exchangeInfo // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L575 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getExtraBonuses.js b/examples/apidoc/MainClient/getExtraBonuses.js index 3930ebd..50cf2dd 100644 --- a/examples/apidoc/MainClient/getExtraBonuses.js +++ b/examples/apidoc/MainClient/getExtraBonuses.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/mining/payment/other // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2428 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFiatOrderHistory.js b/examples/apidoc/MainClient/getFiatOrderHistory.js index 855c479..837365d 100644 --- a/examples/apidoc/MainClient/getFiatOrderHistory.js +++ b/examples/apidoc/MainClient/getFiatOrderHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/fiat/orders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3204 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFiatPaymentsHistory.js b/examples/apidoc/MainClient/getFiatPaymentsHistory.js index 7906f82..09f41dd 100644 --- a/examples/apidoc/MainClient/getFiatPaymentsHistory.js +++ b/examples/apidoc/MainClient/getFiatPaymentsHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/fiat/payments // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3210 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFixedAndActivityProductPosition.js b/examples/apidoc/MainClient/getFixedAndActivityProductPosition.js index 920d70e..50320c0 100644 --- a/examples/apidoc/MainClient/getFixedAndActivityProductPosition.js +++ b/examples/apidoc/MainClient/getFixedAndActivityProductPosition.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/project/position/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3933 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFixedAndActivityProjects.js b/examples/apidoc/MainClient/getFixedAndActivityProjects.js index a4cd521..0d61d16 100644 --- a/examples/apidoc/MainClient/getFixedAndActivityProjects.js +++ b/examples/apidoc/MainClient/getFixedAndActivityProjects.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/project/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3924 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFlexiblePersonalLeftQuota.js b/examples/apidoc/MainClient/getFlexiblePersonalLeftQuota.js index 66ab8de..c42a119 100644 --- a/examples/apidoc/MainClient/getFlexiblePersonalLeftQuota.js +++ b/examples/apidoc/MainClient/getFlexiblePersonalLeftQuota.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/flexible/personalLeftQuota // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2802 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFlexibleProductPosition.js b/examples/apidoc/MainClient/getFlexibleProductPosition.js index 18d75ce..9e65fa1 100644 --- a/examples/apidoc/MainClient/getFlexibleProductPosition.js +++ b/examples/apidoc/MainClient/getFlexibleProductPosition.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/flexible/position // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2784 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFlexibleRedemptionRecord.js b/examples/apidoc/MainClient/getFlexibleRedemptionRecord.js index 7f8ae25..4e28f3a 100644 --- a/examples/apidoc/MainClient/getFlexibleRedemptionRecord.js +++ b/examples/apidoc/MainClient/getFlexibleRedemptionRecord.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/flexible/history/redemptionRecord // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2928 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFlexibleRewardsHistory.js b/examples/apidoc/MainClient/getFlexibleRewardsHistory.js index c2d9133..042c779 100644 --- a/examples/apidoc/MainClient/getFlexibleRewardsHistory.js +++ b/examples/apidoc/MainClient/getFlexibleRewardsHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/flexible/history/rewardsRecord // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2950 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFlexibleSavingProducts.js b/examples/apidoc/MainClient/getFlexibleSavingProducts.js index b08ec2b..4a59a5f 100644 --- a/examples/apidoc/MainClient/getFlexibleSavingProducts.js +++ b/examples/apidoc/MainClient/getFlexibleSavingProducts.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/flexible/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2768 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFlexibleSubscriptionPreview.js b/examples/apidoc/MainClient/getFlexibleSubscriptionPreview.js index 15b147f..5c0cb93 100644 --- a/examples/apidoc/MainClient/getFlexibleSubscriptionPreview.js +++ b/examples/apidoc/MainClient/getFlexibleSubscriptionPreview.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/flexible/subscriptionPreview // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2868 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFlexibleSubscriptionRecord.js b/examples/apidoc/MainClient/getFlexibleSubscriptionRecord.js index 4a2ef5c..b1d8a4c 100644 --- a/examples/apidoc/MainClient/getFlexibleSubscriptionRecord.js +++ b/examples/apidoc/MainClient/getFlexibleSubscriptionRecord.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/flexible/history/subscriptionRecord // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2904 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFundingAsset.js b/examples/apidoc/MainClient/getFundingAsset.js index d256e5f..44ac1ee 100644 --- a/examples/apidoc/MainClient/getFundingAsset.js +++ b/examples/apidoc/MainClient/getFundingAsset.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/asset/get-funding-asset // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1361 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFutureAccountTransferHistory.js b/examples/apidoc/MainClient/getFutureAccountTransferHistory.js index 343a4da..0b9449d 100644 --- a/examples/apidoc/MainClient/getFutureAccountTransferHistory.js +++ b/examples/apidoc/MainClient/getFutureAccountTransferHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/futures/transfer // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1415 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFuturesLeadTraderStatus.js b/examples/apidoc/MainClient/getFuturesLeadTraderStatus.js index 153560c..3420900 100644 --- a/examples/apidoc/MainClient/getFuturesLeadTraderStatus.js +++ b/examples/apidoc/MainClient/getFuturesLeadTraderStatus.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/copyTrading/futures/userStatus // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2385 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFuturesLeadTradingSymbolWhitelist.js b/examples/apidoc/MainClient/getFuturesLeadTradingSymbolWhitelist.js index bee288d..6513f53 100644 --- a/examples/apidoc/MainClient/getFuturesLeadTradingSymbolWhitelist.js +++ b/examples/apidoc/MainClient/getFuturesLeadTradingSymbolWhitelist.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/copyTrading/futures/leadSymbol // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2389 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getFuturesTickLevelOrderbookDataLink.js b/examples/apidoc/MainClient/getFuturesTickLevelOrderbookDataLink.js index c54ef8b..acee712 100644 --- a/examples/apidoc/MainClient/getFuturesTickLevelOrderbookDataLink.js +++ b/examples/apidoc/MainClient/getFuturesTickLevelOrderbookDataLink.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/futures/histDataLink // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3329 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getHashrateResale.js b/examples/apidoc/MainClient/getHashrateResale.js index 29b1a99..7ef6bed 100644 --- a/examples/apidoc/MainClient/getHashrateResale.js +++ b/examples/apidoc/MainClient/getHashrateResale.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/mining/hash-transfer/profit/details // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2449 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getHashrateResales.js b/examples/apidoc/MainClient/getHashrateResales.js index 8d5026c..90cf8a0 100644 --- a/examples/apidoc/MainClient/getHashrateResales.js +++ b/examples/apidoc/MainClient/getHashrateResales.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/mining/hash-transfer/config/details/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2409 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getHistoricalTrades.js b/examples/apidoc/MainClient/getHistoricalTrades.js index ea9f574..d82bee1 100644 --- a/examples/apidoc/MainClient/getHistoricalTrades.js +++ b/examples/apidoc/MainClient/getHistoricalTrades.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/historicalTrades // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L603 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getInterestHistory.js b/examples/apidoc/MainClient/getInterestHistory.js index 3499634..56c5729 100644 --- a/examples/apidoc/MainClient/getInterestHistory.js +++ b/examples/apidoc/MainClient/getInterestHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/union/interestHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3963 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getIsolatedMarginAccountInfo.js b/examples/apidoc/MainClient/getIsolatedMarginAccountInfo.js index b3645e5..e5abe1d 100644 --- a/examples/apidoc/MainClient/getIsolatedMarginAccountInfo.js +++ b/examples/apidoc/MainClient/getIsolatedMarginAccountInfo.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/isolated/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1200 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getIsolatedMarginAccountLimit.js b/examples/apidoc/MainClient/getIsolatedMarginAccountLimit.js index bb91a3f..3623c5b 100644 --- a/examples/apidoc/MainClient/getIsolatedMarginAccountLimit.js +++ b/examples/apidoc/MainClient/getIsolatedMarginAccountLimit.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/isolated/accountLimit // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1193 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getIsolatedMarginAllSymbols.js b/examples/apidoc/MainClient/getIsolatedMarginAllSymbols.js index 931be77..70c7f3b 100644 --- a/examples/apidoc/MainClient/getIsolatedMarginAllSymbols.js +++ b/examples/apidoc/MainClient/getIsolatedMarginAllSymbols.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/isolated/allPairs // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L864 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getIsolatedMarginFeeData.js b/examples/apidoc/MainClient/getIsolatedMarginFeeData.js index 3133203..690e011 100644 --- a/examples/apidoc/MainClient/getIsolatedMarginFeeData.js +++ b/examples/apidoc/MainClient/getIsolatedMarginFeeData.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/isolatedMarginData // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1206 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getIsolatedMarginTierData.js b/examples/apidoc/MainClient/getIsolatedMarginTierData.js index f2e9215..ab37d9a 100644 --- a/examples/apidoc/MainClient/getIsolatedMarginTierData.js +++ b/examples/apidoc/MainClient/getIsolatedMarginTierData.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/isolatedMarginTier // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L878 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getIsolatedMarginUserDataListenKey.js b/examples/apidoc/MainClient/getIsolatedMarginUserDataListenKey.js index 27d800e..1ee73d5 100644 --- a/examples/apidoc/MainClient/getIsolatedMarginUserDataListenKey.js +++ b/examples/apidoc/MainClient/getIsolatedMarginUserDataListenKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/userDataStream/isolated?${serialiseParams(params)} // METHOD: POST // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3811 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getKlines.js b/examples/apidoc/MainClient/getKlines.js index b510463..d1ce1ec 100644 --- a/examples/apidoc/MainClient/getKlines.js +++ b/examples/apidoc/MainClient/getKlines.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/klines // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L613 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getLeftDailyPurchaseQuotaFlexibleProduct.js b/examples/apidoc/MainClient/getLeftDailyPurchaseQuotaFlexibleProduct.js index dc41a22..14f004d 100644 --- a/examples/apidoc/MainClient/getLeftDailyPurchaseQuotaFlexibleProduct.js +++ b/examples/apidoc/MainClient/getLeftDailyPurchaseQuotaFlexibleProduct.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/daily/userLeftQuota // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3891 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getLeftDailyRedemptionQuotaFlexibleProduct.js b/examples/apidoc/MainClient/getLeftDailyRedemptionQuotaFlexibleProduct.js index 6029df8..bdb8fb8 100644 --- a/examples/apidoc/MainClient/getLeftDailyRedemptionQuotaFlexibleProduct.js +++ b/examples/apidoc/MainClient/getLeftDailyRedemptionQuotaFlexibleProduct.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/daily/userRedemptionQuota // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3900 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getLendingAccount.js b/examples/apidoc/MainClient/getLendingAccount.js index 7261f0f..18dfb67 100644 --- a/examples/apidoc/MainClient/getLendingAccount.js +++ b/examples/apidoc/MainClient/getLendingAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/union/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3942 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getLeverageBracket.js b/examples/apidoc/MainClient/getLeverageBracket.js index a9a4df3..a8df368 100644 --- a/examples/apidoc/MainClient/getLeverageBracket.js +++ b/examples/apidoc/MainClient/getLeverageBracket.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/leverageBracket // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L896 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getLoanFlexibleBorrowHistory.js b/examples/apidoc/MainClient/getLoanFlexibleBorrowHistory.js index d02bf84..a944437 100644 --- a/examples/apidoc/MainClient/getLoanFlexibleBorrowHistory.js +++ b/examples/apidoc/MainClient/getLoanFlexibleBorrowHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/loan/flexible/borrow/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2631 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getLoanFlexibleRepaymentHistory.js b/examples/apidoc/MainClient/getLoanFlexibleRepaymentHistory.js index a3bb0cb..5c77d59 100644 --- a/examples/apidoc/MainClient/getLoanFlexibleRepaymentHistory.js +++ b/examples/apidoc/MainClient/getLoanFlexibleRepaymentHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/loan/flexible/repay/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2649 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getLockedPersonalLeftQuota.js b/examples/apidoc/MainClient/getLockedPersonalLeftQuota.js index 54f2c6a..0eccf6c 100644 --- a/examples/apidoc/MainClient/getLockedPersonalLeftQuota.js +++ b/examples/apidoc/MainClient/getLockedPersonalLeftQuota.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/locked/personalLeftQuota // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2811 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getLockedProductPosition.js b/examples/apidoc/MainClient/getLockedProductPosition.js index 6caf262..1baedae 100644 --- a/examples/apidoc/MainClient/getLockedProductPosition.js +++ b/examples/apidoc/MainClient/getLockedProductPosition.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/locked/position // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2793 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getLockedRedemptionRecord.js b/examples/apidoc/MainClient/getLockedRedemptionRecord.js index 9588bbd..5eb8049 100644 --- a/examples/apidoc/MainClient/getLockedRedemptionRecord.js +++ b/examples/apidoc/MainClient/getLockedRedemptionRecord.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/locked/history/redemptionRecord // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2940 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getLockedRewardsHistory.js b/examples/apidoc/MainClient/getLockedRewardsHistory.js index 941bf8d..f0685fd 100644 --- a/examples/apidoc/MainClient/getLockedRewardsHistory.js +++ b/examples/apidoc/MainClient/getLockedRewardsHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/locked/history/rewardsRecord // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2960 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getLockedSubscriptionPreview.js b/examples/apidoc/MainClient/getLockedSubscriptionPreview.js index b340763..75e1a28 100644 --- a/examples/apidoc/MainClient/getLockedSubscriptionPreview.js +++ b/examples/apidoc/MainClient/getLockedSubscriptionPreview.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/locked/subscriptionPreview // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2877 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getLockedSubscriptionRecord.js b/examples/apidoc/MainClient/getLockedSubscriptionRecord.js index d29a6b1..533bb69 100644 --- a/examples/apidoc/MainClient/getLockedSubscriptionRecord.js +++ b/examples/apidoc/MainClient/getLockedSubscriptionRecord.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/locked/history/subscriptionRecord // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2916 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getManagedSubAccountAssetDetails.js b/examples/apidoc/MainClient/getManagedSubAccountAssetDetails.js index 40e5817..e52f6d1 100644 --- a/examples/apidoc/MainClient/getManagedSubAccountAssetDetails.js +++ b/examples/apidoc/MainClient/getManagedSubAccountAssetDetails.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/managed-subaccount/asset // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1870 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getManagedSubAccountDepositAddress.js b/examples/apidoc/MainClient/getManagedSubAccountDepositAddress.js index a9dcac0..adce5ff 100644 --- a/examples/apidoc/MainClient/getManagedSubAccountDepositAddress.js +++ b/examples/apidoc/MainClient/getManagedSubAccountDepositAddress.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/managed-subaccount/deposit/address // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1803 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getManagedSubAccountFuturesAssets.js b/examples/apidoc/MainClient/getManagedSubAccountFuturesAssets.js index e571504..aabdc02 100644 --- a/examples/apidoc/MainClient/getManagedSubAccountFuturesAssets.js +++ b/examples/apidoc/MainClient/getManagedSubAccountFuturesAssets.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/managed-subaccount/fetch-future-asset // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1882 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getManagedSubAccountMarginAssets.js b/examples/apidoc/MainClient/getManagedSubAccountMarginAssets.js index 719f81a..eb70814 100644 --- a/examples/apidoc/MainClient/getManagedSubAccountMarginAssets.js +++ b/examples/apidoc/MainClient/getManagedSubAccountMarginAssets.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/managed-subaccount/marginAsset // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1876 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getManagedSubAccountSnapshot.js b/examples/apidoc/MainClient/getManagedSubAccountSnapshot.js index 03177a5..a33efd4 100644 --- a/examples/apidoc/MainClient/getManagedSubAccountSnapshot.js +++ b/examples/apidoc/MainClient/getManagedSubAccountSnapshot.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/managed-subaccount/accountSnapshot // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1861 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getManagedSubAccountTransferLog.js b/examples/apidoc/MainClient/getManagedSubAccountTransferLog.js index c88d62f..0785778 100644 --- a/examples/apidoc/MainClient/getManagedSubAccountTransferLog.js +++ b/examples/apidoc/MainClient/getManagedSubAccountTransferLog.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/managed-subaccount/query-trans-log // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1830 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getManagedSubAccountTransfersInvestor.js b/examples/apidoc/MainClient/getManagedSubAccountTransfersInvestor.js index d3bc68a..a359af1 100644 --- a/examples/apidoc/MainClient/getManagedSubAccountTransfersInvestor.js +++ b/examples/apidoc/MainClient/getManagedSubAccountTransfersInvestor.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/managed-subaccount/queryTransLogForInvestor // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1842 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getManagedSubAccountTransfersParent.js b/examples/apidoc/MainClient/getManagedSubAccountTransfersParent.js index a21e7d9..b2d5073 100644 --- a/examples/apidoc/MainClient/getManagedSubAccountTransfersParent.js +++ b/examples/apidoc/MainClient/getManagedSubAccountTransfersParent.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/managed-subaccount/queryTransLogForTradeParent // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1818 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getManagedSubAccounts.js b/examples/apidoc/MainClient/getManagedSubAccounts.js index 671845b..b7d0c0c 100644 --- a/examples/apidoc/MainClient/getManagedSubAccounts.js +++ b/examples/apidoc/MainClient/getManagedSubAccounts.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/managed-subaccount/info // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1854 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMarginAccountBorrowRepayRecords.js b/examples/apidoc/MainClient/getMarginAccountBorrowRepayRecords.js index e92b2f6..2d76a4d 100644 --- a/examples/apidoc/MainClient/getMarginAccountBorrowRepayRecords.js +++ b/examples/apidoc/MainClient/getMarginAccountBorrowRepayRecords.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/borrow-repay // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L925 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMarginAvailableInventory.js b/examples/apidoc/MainClient/getMarginAvailableInventory.js index f0d2e42..79232a0 100644 --- a/examples/apidoc/MainClient/getMarginAvailableInventory.js +++ b/examples/apidoc/MainClient/getMarginAvailableInventory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/available-inventory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L890 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMarginCapitalFlow.js b/examples/apidoc/MainClient/getMarginCapitalFlow.js index d71e076..bba1cc9 100644 --- a/examples/apidoc/MainClient/getMarginCapitalFlow.js +++ b/examples/apidoc/MainClient/getMarginCapitalFlow.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/capital-flow // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1220 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMarginDelistSchedule.js b/examples/apidoc/MainClient/getMarginDelistSchedule.js index 9a0d5cd..f466d13 100644 --- a/examples/apidoc/MainClient/getMarginDelistSchedule.js +++ b/examples/apidoc/MainClient/getMarginDelistSchedule.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/delist-schedule // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L874 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMarginForceLiquidationRecord.js b/examples/apidoc/MainClient/getMarginForceLiquidationRecord.js index 417b50f..9ee2ca2 100644 --- a/examples/apidoc/MainClient/getMarginForceLiquidationRecord.js +++ b/examples/apidoc/MainClient/getMarginForceLiquidationRecord.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/forceLiquidationRec // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L949 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMarginInterestHistory.js b/examples/apidoc/MainClient/getMarginInterestHistory.js index f558e7b..0cc831b 100644 --- a/examples/apidoc/MainClient/getMarginInterestHistory.js +++ b/examples/apidoc/MainClient/getMarginInterestHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/interestHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L912 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMarginInterestRateHistory.js b/examples/apidoc/MainClient/getMarginInterestRateHistory.js index c188aeb..870a6c0 100644 --- a/examples/apidoc/MainClient/getMarginInterestRateHistory.js +++ b/examples/apidoc/MainClient/getMarginInterestRateHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/interestRateHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L931 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMarginOrderCountUsage.js b/examples/apidoc/MainClient/getMarginOrderCountUsage.js index 0a8ad29..7b11837 100644 --- a/examples/apidoc/MainClient/getMarginOrderCountUsage.js +++ b/examples/apidoc/MainClient/getMarginOrderCountUsage.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/rateLimit/order // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1006 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMarginSpecialLowLatencyKey.js b/examples/apidoc/MainClient/getMarginSpecialLowLatencyKey.js index 14184a1..32322a3 100644 --- a/examples/apidoc/MainClient/getMarginSpecialLowLatencyKey.js +++ b/examples/apidoc/MainClient/getMarginSpecialLowLatencyKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/apiKey // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1124 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMarginSpecialLowLatencyKeys.js b/examples/apidoc/MainClient/getMarginSpecialLowLatencyKeys.js index 7ffbd62..11d6cd8 100644 --- a/examples/apidoc/MainClient/getMarginSpecialLowLatencyKeys.js +++ b/examples/apidoc/MainClient/getMarginSpecialLowLatencyKeys.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/api-key-list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1115 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMarginSummary.js b/examples/apidoc/MainClient/getMarginSummary.js index 155685c..402c2f0 100644 --- a/examples/apidoc/MainClient/getMarginSummary.js +++ b/examples/apidoc/MainClient/getMarginSummary.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/tradeCoeff // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1179 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMarginUserDataListenKey.js b/examples/apidoc/MainClient/getMarginUserDataListenKey.js index e8fe3d8..f807fd9 100644 --- a/examples/apidoc/MainClient/getMarginUserDataListenKey.js +++ b/examples/apidoc/MainClient/getMarginUserDataListenKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/userDataStream // METHOD: POST // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3798 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMinerDetails.js b/examples/apidoc/MainClient/getMinerDetails.js index 4e53126..4dc5ba9 100644 --- a/examples/apidoc/MainClient/getMinerDetails.js +++ b/examples/apidoc/MainClient/getMinerDetails.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/mining/worker/detail // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2422 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMiners.js b/examples/apidoc/MainClient/getMiners.js index 37f4621..8e74429 100644 --- a/examples/apidoc/MainClient/getMiners.js +++ b/examples/apidoc/MainClient/getMiners.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/mining/worker/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2418 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMiningAccountEarnings.js b/examples/apidoc/MainClient/getMiningAccountEarnings.js index 7d10269..5ea0682 100644 --- a/examples/apidoc/MainClient/getMiningAccountEarnings.js +++ b/examples/apidoc/MainClient/getMiningAccountEarnings.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/mining/payment/uid // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2458 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMiningAccounts.js b/examples/apidoc/MainClient/getMiningAccounts.js index fc5aca1..25615c1 100644 --- a/examples/apidoc/MainClient/getMiningAccounts.js +++ b/examples/apidoc/MainClient/getMiningAccounts.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/mining/statistics/user/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2474 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMiningAlgos.js b/examples/apidoc/MainClient/getMiningAlgos.js index 0397ce6..1982677 100644 --- a/examples/apidoc/MainClient/getMiningAlgos.js +++ b/examples/apidoc/MainClient/getMiningAlgos.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/mining/pub/algoList // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2401 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMiningCoins.js b/examples/apidoc/MainClient/getMiningCoins.js index 76252af..7267888 100644 --- a/examples/apidoc/MainClient/getMiningCoins.js +++ b/examples/apidoc/MainClient/getMiningCoins.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/mining/pub/coinList // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2405 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMiningEarnings.js b/examples/apidoc/MainClient/getMiningEarnings.js index c8e4b4e..8fcb22b 100644 --- a/examples/apidoc/MainClient/getMiningEarnings.js +++ b/examples/apidoc/MainClient/getMiningEarnings.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/mining/payment/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2434 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getMiningStatistics.js b/examples/apidoc/MainClient/getMiningStatistics.js index 6b3a949..860696c 100644 --- a/examples/apidoc/MainClient/getMiningStatistics.js +++ b/examples/apidoc/MainClient/getMiningStatistics.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/mining/statistics/user/status // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2464 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getNextHourlyInterestRate.js b/examples/apidoc/MainClient/getNextHourlyInterestRate.js index d21efa2..bf41968 100644 --- a/examples/apidoc/MainClient/getNextHourlyInterestRate.js +++ b/examples/apidoc/MainClient/getNextHourlyInterestRate.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/next-hourly-interest-rate // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L906 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getNftAsset.js b/examples/apidoc/MainClient/getNftAsset.js index 5582a8f..f327e9a 100644 --- a/examples/apidoc/MainClient/getNftAsset.js +++ b/examples/apidoc/MainClient/getNftAsset.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/nft/user/getAsset // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3176 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getNftDepositHistory.js b/examples/apidoc/MainClient/getNftDepositHistory.js index a696105..bd980ef 100644 --- a/examples/apidoc/MainClient/getNftDepositHistory.js +++ b/examples/apidoc/MainClient/getNftDepositHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/nft/history/deposit // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3162 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getNftTransactionHistory.js b/examples/apidoc/MainClient/getNftTransactionHistory.js index 50249a7..8c5746b 100644 --- a/examples/apidoc/MainClient/getNftTransactionHistory.js +++ b/examples/apidoc/MainClient/getNftTransactionHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/nft/history/transactions // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3155 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getNftWithdrawHistory.js b/examples/apidoc/MainClient/getNftWithdrawHistory.js index c8dbcaa..414ebc0 100644 --- a/examples/apidoc/MainClient/getNftWithdrawHistory.js +++ b/examples/apidoc/MainClient/getNftWithdrawHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/nft/history/withdraw // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3169 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getOCO.js b/examples/apidoc/MainClient/getOCO.js index df3eea7..79be4a1 100644 --- a/examples/apidoc/MainClient/getOCO.js +++ b/examples/apidoc/MainClient/getOCO.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/orderList // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L772 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getOneTimeTransactionStatus.js b/examples/apidoc/MainClient/getOneTimeTransactionStatus.js index 2c3f709..7b3acd7 100644 --- a/examples/apidoc/MainClient/getOneTimeTransactionStatus.js +++ b/examples/apidoc/MainClient/getOneTimeTransactionStatus.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/one-off/status // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2022 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getOpenOrders.js b/examples/apidoc/MainClient/getOpenOrders.js index a4ced51..e92ffa6 100644 --- a/examples/apidoc/MainClient/getOpenOrders.js +++ b/examples/apidoc/MainClient/getOpenOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/openOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L719 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getOrder.js b/examples/apidoc/MainClient/getOrder.js index 9e30134..4913e72 100644 --- a/examples/apidoc/MainClient/getOrder.js +++ b/examples/apidoc/MainClient/getOrder.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/order // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L696 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getOrderBook.js b/examples/apidoc/MainClient/getOrderBook.js index 33ea89a..c56e303 100644 --- a/examples/apidoc/MainClient/getOrderBook.js +++ b/examples/apidoc/MainClient/getOrderBook.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/depth // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L595 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getOrderRateLimit.js b/examples/apidoc/MainClient/getOrderRateLimit.js index 5e0453e..1047f43 100644 --- a/examples/apidoc/MainClient/getOrderRateLimit.js +++ b/examples/apidoc/MainClient/getOrderRateLimit.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/rateLimit/order // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L827 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getOrderStatus.js b/examples/apidoc/MainClient/getOrderStatus.js index f7b83f3..46b9440 100644 --- a/examples/apidoc/MainClient/getOrderStatus.js +++ b/examples/apidoc/MainClient/getOrderStatus.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/convert/orderStatus // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2119 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getPayTransactions.js b/examples/apidoc/MainClient/getPayTransactions.js index 204fb86..d27e4ca 100644 --- a/examples/apidoc/MainClient/getPayTransactions.js +++ b/examples/apidoc/MainClient/getPayTransactions.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/pay/transactions // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3378 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getPersonalLeftQuotaOfStakingProduct.js b/examples/apidoc/MainClient/getPersonalLeftQuotaOfStakingProduct.js index d659f1b..bf9844b 100644 --- a/examples/apidoc/MainClient/getPersonalLeftQuotaOfStakingProduct.js +++ b/examples/apidoc/MainClient/getPersonalLeftQuotaOfStakingProduct.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/staking/personalLeftQuota // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2295 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getPortfolioMarginAssetLeverage.js b/examples/apidoc/MainClient/getPortfolioMarginAssetLeverage.js index 03d49fe..fa891f6 100644 --- a/examples/apidoc/MainClient/getPortfolioMarginAssetLeverage.js +++ b/examples/apidoc/MainClient/getPortfolioMarginAssetLeverage.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/portfolio/margin-asset-leverage // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3241 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getPortfolioMarginIndexPrice.js b/examples/apidoc/MainClient/getPortfolioMarginIndexPrice.js index ec3ce3d..850ee39 100644 --- a/examples/apidoc/MainClient/getPortfolioMarginIndexPrice.js +++ b/examples/apidoc/MainClient/getPortfolioMarginIndexPrice.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/portfolio/asset-index-price // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3235 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getPortfolioMarginProAccountInfo.js b/examples/apidoc/MainClient/getPortfolioMarginProAccountInfo.js index 1e3d456..52d4d64 100644 --- a/examples/apidoc/MainClient/getPortfolioMarginProAccountInfo.js +++ b/examples/apidoc/MainClient/getPortfolioMarginProAccountInfo.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/portfolio/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3264 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getPortfolioMarginProBankruptcyLoanAmount.js b/examples/apidoc/MainClient/getPortfolioMarginProBankruptcyLoanAmount.js index e1f02aa..299d2d2 100644 --- a/examples/apidoc/MainClient/getPortfolioMarginProBankruptcyLoanAmount.js +++ b/examples/apidoc/MainClient/getPortfolioMarginProBankruptcyLoanAmount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/portfolio/pmLoan // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3294 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getPortfolioMarginProCollateralRate.js b/examples/apidoc/MainClient/getPortfolioMarginProCollateralRate.js index d58a786..30f5c93 100644 --- a/examples/apidoc/MainClient/getPortfolioMarginProCollateralRate.js +++ b/examples/apidoc/MainClient/getPortfolioMarginProCollateralRate.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/portfolio/collateralRate // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3247 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getPortfolioMarginProInterestHistory.js b/examples/apidoc/MainClient/getPortfolioMarginProInterestHistory.js index 5c2f18e..be28009 100644 --- a/examples/apidoc/MainClient/getPortfolioMarginProInterestHistory.js +++ b/examples/apidoc/MainClient/getPortfolioMarginProInterestHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/portfolio/interest-history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3316 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getPortfolioMarginProTieredCollateralRate.js b/examples/apidoc/MainClient/getPortfolioMarginProTieredCollateralRate.js index 57ca2e0..421ce3f 100644 --- a/examples/apidoc/MainClient/getPortfolioMarginProTieredCollateralRate.js +++ b/examples/apidoc/MainClient/getPortfolioMarginProTieredCollateralRate.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/portfolio/collateralRate // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3253 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getPreventedMatches.js b/examples/apidoc/MainClient/getPreventedMatches.js index 017322d..84785d6 100644 --- a/examples/apidoc/MainClient/getPreventedMatches.js +++ b/examples/apidoc/MainClient/getPreventedMatches.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/myPreventedMatches // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L831 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getPurchaseRecord.js b/examples/apidoc/MainClient/getPurchaseRecord.js index d3426c5..b30e0ec 100644 --- a/examples/apidoc/MainClient/getPurchaseRecord.js +++ b/examples/apidoc/MainClient/getPurchaseRecord.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/union/purchaseRecord // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3949 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getRateHistory.js b/examples/apidoc/MainClient/getRateHistory.js index fe87655..578871e 100644 --- a/examples/apidoc/MainClient/getRateHistory.js +++ b/examples/apidoc/MainClient/getRateHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/flexible/history/rateHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2980 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getRecentTrades.js b/examples/apidoc/MainClient/getRecentTrades.js index 9ec66e9..7943d46 100644 --- a/examples/apidoc/MainClient/getRecentTrades.js +++ b/examples/apidoc/MainClient/getRecentTrades.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/trades // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L599 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getRedemptionRecord.js b/examples/apidoc/MainClient/getRedemptionRecord.js index cfb2aa6..019f1c8 100644 --- a/examples/apidoc/MainClient/getRedemptionRecord.js +++ b/examples/apidoc/MainClient/getRedemptionRecord.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/union/redemptionRecord // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3956 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getRollingWindowTicker.js b/examples/apidoc/MainClient/getRollingWindowTicker.js index 1e0424b..1775df2 100644 --- a/examples/apidoc/MainClient/getRollingWindowTicker.js +++ b/examples/apidoc/MainClient/getRollingWindowTicker.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/ticker // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L668 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getRsaPublicKey.js b/examples/apidoc/MainClient/getRsaPublicKey.js index 7878056..92a9273 100644 --- a/examples/apidoc/MainClient/getRsaPublicKey.js +++ b/examples/apidoc/MainClient/getRsaPublicKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/giftcard/cryptography/rsa-public-key // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3145 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSimpleEarnAccount.js b/examples/apidoc/MainClient/getSimpleEarnAccount.js index 2d10ad2..8440f45 100644 --- a/examples/apidoc/MainClient/getSimpleEarnAccount.js +++ b/examples/apidoc/MainClient/getSimpleEarnAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2764 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSimpleEarnLockedProductList.js b/examples/apidoc/MainClient/getSimpleEarnLockedProductList.js index 070ebaf..922a6d7 100644 --- a/examples/apidoc/MainClient/getSimpleEarnLockedProductList.js +++ b/examples/apidoc/MainClient/getSimpleEarnLockedProductList.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/locked/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2775 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSmallLiabilityExchangeCoins.js b/examples/apidoc/MainClient/getSmallLiabilityExchangeCoins.js index 8f05a90..801e973 100644 --- a/examples/apidoc/MainClient/getSmallLiabilityExchangeCoins.js +++ b/examples/apidoc/MainClient/getSmallLiabilityExchangeCoins.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/exchange-small-liability // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L958 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSmallLiabilityExchangeHistory.js b/examples/apidoc/MainClient/getSmallLiabilityExchangeHistory.js index 834547f..6b91c81 100644 --- a/examples/apidoc/MainClient/getSmallLiabilityExchangeHistory.js +++ b/examples/apidoc/MainClient/getSmallLiabilityExchangeHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/exchange-small-liability-history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L962 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSolRedemptionHistory.js b/examples/apidoc/MainClient/getSolRedemptionHistory.js index ec3ebe0..53b63da 100644 --- a/examples/apidoc/MainClient/getSolRedemptionHistory.js +++ b/examples/apidoc/MainClient/getSolRedemptionHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sol-staking/sol/history/redemptionHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2348 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSolStakingAccount.js b/examples/apidoc/MainClient/getSolStakingAccount.js index cb91d6e..b81f6ff 100644 --- a/examples/apidoc/MainClient/getSolStakingAccount.js +++ b/examples/apidoc/MainClient/getSolStakingAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sol-staking/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2308 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSolStakingHistory.js b/examples/apidoc/MainClient/getSolStakingHistory.js index 07d0acf..a017015 100644 --- a/examples/apidoc/MainClient/getSolStakingHistory.js +++ b/examples/apidoc/MainClient/getSolStakingHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sol-staking/sol/history/stakingHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2338 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSolStakingQuota.js b/examples/apidoc/MainClient/getSolStakingQuota.js index b55bce7..da18327 100644 --- a/examples/apidoc/MainClient/getSolStakingQuota.js +++ b/examples/apidoc/MainClient/getSolStakingQuota.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sol-staking/sol/quota // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2312 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSpotAlgoHistoricalOrders.js b/examples/apidoc/MainClient/getSpotAlgoHistoricalOrders.js index b4d77ae..747f22c 100644 --- a/examples/apidoc/MainClient/getSpotAlgoHistoricalOrders.js +++ b/examples/apidoc/MainClient/getSpotAlgoHistoricalOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/algo/spot/historicalOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2558 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSpotAlgoOpenOrders.js b/examples/apidoc/MainClient/getSpotAlgoOpenOrders.js index 8a7f5cb..e91b090 100644 --- a/examples/apidoc/MainClient/getSpotAlgoOpenOrders.js +++ b/examples/apidoc/MainClient/getSpotAlgoOpenOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/algo/spot/openOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2551 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSpotAlgoSubOrders.js b/examples/apidoc/MainClient/getSpotAlgoSubOrders.js index 2b62968..7fe1639 100644 --- a/examples/apidoc/MainClient/getSpotAlgoSubOrders.js +++ b/examples/apidoc/MainClient/getSpotAlgoSubOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/algo/spot/subOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2545 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSpotRebateHistoryRecords.js b/examples/apidoc/MainClient/getSpotRebateHistoryRecords.js index 74ae436..6d193aa 100644 --- a/examples/apidoc/MainClient/getSpotRebateHistoryRecords.js +++ b/examples/apidoc/MainClient/getSpotRebateHistoryRecords.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/rebate/taxQuery // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3222 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSpotUserDataListenKey.js b/examples/apidoc/MainClient/getSpotUserDataListenKey.js index c95b476..e882939 100644 --- a/examples/apidoc/MainClient/getSpotUserDataListenKey.js +++ b/examples/apidoc/MainClient/getSpotUserDataListenKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/userDataStream // METHOD: POST // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3785 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getStakingHistory.js b/examples/apidoc/MainClient/getStakingHistory.js index c1c6811..36b4118 100644 --- a/examples/apidoc/MainClient/getStakingHistory.js +++ b/examples/apidoc/MainClient/getStakingHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/staking/stakingRecord // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2288 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getStakingProductPosition.js b/examples/apidoc/MainClient/getStakingProductPosition.js index ec39073..b9f32ae 100644 --- a/examples/apidoc/MainClient/getStakingProductPosition.js +++ b/examples/apidoc/MainClient/getStakingProductPosition.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/staking/position // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2276 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getStakingProducts.js b/examples/apidoc/MainClient/getStakingProducts.js index 5878dba..0b1af82 100644 --- a/examples/apidoc/MainClient/getStakingProducts.js +++ b/examples/apidoc/MainClient/getStakingProducts.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/staking/productList // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2265 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountAssets.js b/examples/apidoc/MainClient/getSubAccountAssets.js index 9fcad5b..40b2ddc 100644 --- a/examples/apidoc/MainClient/getSubAccountAssets.js +++ b/examples/apidoc/MainClient/getSubAccountAssets.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v3/sub-account/assets // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1716 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountAssetsMaster.js b/examples/apidoc/MainClient/getSubAccountAssetsMaster.js index 757eb32..9a2c7be 100644 --- a/examples/apidoc/MainClient/getSubAccountAssetsMaster.js +++ b/examples/apidoc/MainClient/getSubAccountAssetsMaster.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v4/sub-account/assets // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1722 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountBNBBurnStatus.js b/examples/apidoc/MainClient/getSubAccountBNBBurnStatus.js index 0835d95..360b115 100644 --- a/examples/apidoc/MainClient/getSubAccountBNBBurnStatus.js +++ b/examples/apidoc/MainClient/getSubAccountBNBBurnStatus.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccount/bnbBurn/status // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3518 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountBrokerIpRestriction.js b/examples/apidoc/MainClient/getSubAccountBrokerIpRestriction.js index 8bfacb1..fa53c50 100644 --- a/examples/apidoc/MainClient/getSubAccountBrokerIpRestriction.js +++ b/examples/apidoc/MainClient/getSubAccountBrokerIpRestriction.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccountApi/ipRestriction // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3469 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountDepositAddress.js b/examples/apidoc/MainClient/getSubAccountDepositAddress.js index c613279..58bc8ae 100644 --- a/examples/apidoc/MainClient/getSubAccountDepositAddress.js +++ b/examples/apidoc/MainClient/getSubAccountDepositAddress.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/capital/deposit/subAddress // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1681 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountDepositHistory.js b/examples/apidoc/MainClient/getSubAccountDepositHistory.js index 4f7e209..51dc8a9 100644 --- a/examples/apidoc/MainClient/getSubAccountDepositHistory.js +++ b/examples/apidoc/MainClient/getSubAccountDepositHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/capital/deposit/subHisrec // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1687 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountDetailOnFuturesAccountV2.js b/examples/apidoc/MainClient/getSubAccountDetailOnFuturesAccountV2.js index 3d31696..f4f0c60 100644 --- a/examples/apidoc/MainClient/getSubAccountDetailOnFuturesAccountV2.js +++ b/examples/apidoc/MainClient/getSubAccountDetailOnFuturesAccountV2.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/sub-account/futures/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1669 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountDetailOnMarginAccount.js b/examples/apidoc/MainClient/getSubAccountDetailOnMarginAccount.js index 0cc2cb5..056d233 100644 --- a/examples/apidoc/MainClient/getSubAccountDetailOnMarginAccount.js +++ b/examples/apidoc/MainClient/getSubAccountDetailOnMarginAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/margin/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1675 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountFuturesAccountDetail.js b/examples/apidoc/MainClient/getSubAccountFuturesAccountDetail.js index 87714b7..4bb60ec 100644 --- a/examples/apidoc/MainClient/getSubAccountFuturesAccountDetail.js +++ b/examples/apidoc/MainClient/getSubAccountFuturesAccountDetail.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/futures/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1663 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountFuturesAccountSummary.js b/examples/apidoc/MainClient/getSubAccountFuturesAccountSummary.js index b8f8e01..59057df 100644 --- a/examples/apidoc/MainClient/getSubAccountFuturesAccountSummary.js +++ b/examples/apidoc/MainClient/getSubAccountFuturesAccountSummary.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/futures/accountSummary // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1693 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountFuturesAssetTransferHistory.js b/examples/apidoc/MainClient/getSubAccountFuturesAssetTransferHistory.js index 0f0630c..755dc12 100644 --- a/examples/apidoc/MainClient/getSubAccountFuturesAssetTransferHistory.js +++ b/examples/apidoc/MainClient/getSubAccountFuturesAssetTransferHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/futures/internalTransfer // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1728 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountFuturesPositionRisk.js b/examples/apidoc/MainClient/getSubAccountFuturesPositionRisk.js index 0a1cacf..0430aa7 100644 --- a/examples/apidoc/MainClient/getSubAccountFuturesPositionRisk.js +++ b/examples/apidoc/MainClient/getSubAccountFuturesPositionRisk.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/futures/positionRisk // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1569 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountFuturesPositionRiskV2.js b/examples/apidoc/MainClient/getSubAccountFuturesPositionRiskV2.js index 77e259c..dc942cf 100644 --- a/examples/apidoc/MainClient/getSubAccountFuturesPositionRiskV2.js +++ b/examples/apidoc/MainClient/getSubAccountFuturesPositionRiskV2.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/sub-account/futures/positionRisk // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1577 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountFuturesTransferHistory.js b/examples/apidoc/MainClient/getSubAccountFuturesTransferHistory.js index dedc0e1..c6e3b40 100644 --- a/examples/apidoc/MainClient/getSubAccountFuturesTransferHistory.js +++ b/examples/apidoc/MainClient/getSubAccountFuturesTransferHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/transfer/futures // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3559 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountIPRestriction.js b/examples/apidoc/MainClient/getSubAccountIPRestriction.js index 630f178..f85258d 100644 --- a/examples/apidoc/MainClient/getSubAccountIPRestriction.js +++ b/examples/apidoc/MainClient/getSubAccountIPRestriction.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/subAccountApi/ipRestriction // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1598 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountList.js b/examples/apidoc/MainClient/getSubAccountList.js index 52c74e3..159f030 100644 --- a/examples/apidoc/MainClient/getSubAccountList.js +++ b/examples/apidoc/MainClient/getSubAccountList.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1537 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountMarginAssetInfo.js b/examples/apidoc/MainClient/getSubAccountMarginAssetInfo.js index db8e8e7..4dfaecb 100644 --- a/examples/apidoc/MainClient/getSubAccountMarginAssetInfo.js +++ b/examples/apidoc/MainClient/getSubAccountMarginAssetInfo.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccount/marginSummary // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3586 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountSpotAssetTransferHistory.js b/examples/apidoc/MainClient/getSubAccountSpotAssetTransferHistory.js index 5ac3de4..9608652 100644 --- a/examples/apidoc/MainClient/getSubAccountSpotAssetTransferHistory.js +++ b/examples/apidoc/MainClient/getSubAccountSpotAssetTransferHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/sub/transfer/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1737 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountSpotAssetsSummary.js b/examples/apidoc/MainClient/getSubAccountSpotAssetsSummary.js index 4320217..94a870d 100644 --- a/examples/apidoc/MainClient/getSubAccountSpotAssetsSummary.js +++ b/examples/apidoc/MainClient/getSubAccountSpotAssetsSummary.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/spotSummary // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1743 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountStatusOnMarginOrFutures.js b/examples/apidoc/MainClient/getSubAccountStatusOnMarginOrFutures.js index 8451a81..7c28c04 100644 --- a/examples/apidoc/MainClient/getSubAccountStatusOnMarginOrFutures.js +++ b/examples/apidoc/MainClient/getSubAccountStatusOnMarginOrFutures.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/status // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1563 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountSummaryOnFuturesAccountV2.js b/examples/apidoc/MainClient/getSubAccountSummaryOnFuturesAccountV2.js index 019f7bb..2a5a72d 100644 --- a/examples/apidoc/MainClient/getSubAccountSummaryOnFuturesAccountV2.js +++ b/examples/apidoc/MainClient/getSubAccountSummaryOnFuturesAccountV2.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/sub-account/futures/accountSummary // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1697 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountTransactionStatistics.js b/examples/apidoc/MainClient/getSubAccountTransactionStatistics.js index 4bee047..8ae8d2b 100644 --- a/examples/apidoc/MainClient/getSubAccountTransactionStatistics.js +++ b/examples/apidoc/MainClient/getSubAccountTransactionStatistics.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/transaction-statistics // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1583 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountUniversalTransferHistory.js b/examples/apidoc/MainClient/getSubAccountUniversalTransferHistory.js index 2001bcf..06d8741 100644 --- a/examples/apidoc/MainClient/getSubAccountUniversalTransferHistory.js +++ b/examples/apidoc/MainClient/getSubAccountUniversalTransferHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/universalTransfer // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1749 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSubAccountsSummaryOfMarginAccount.js b/examples/apidoc/MainClient/getSubAccountsSummaryOfMarginAccount.js index 20c2fd5..0003ff2 100644 --- a/examples/apidoc/MainClient/getSubAccountsSummaryOfMarginAccount.js +++ b/examples/apidoc/MainClient/getSubAccountsSummaryOfMarginAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/margin/accountSummary // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1706 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSymbolOrderBookTicker.js b/examples/apidoc/MainClient/getSymbolOrderBookTicker.js index 08582f5..8dbba1c 100644 --- a/examples/apidoc/MainClient/getSymbolOrderBookTicker.js +++ b/examples/apidoc/MainClient/getSymbolOrderBookTicker.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/ticker/bookTicker // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L662 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSymbolPriceTicker.js b/examples/apidoc/MainClient/getSymbolPriceTicker.js index 06e880e..25a781e 100644 --- a/examples/apidoc/MainClient/getSymbolPriceTicker.js +++ b/examples/apidoc/MainClient/getSymbolPriceTicker.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/ticker/price // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L656 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getSystemStatus.js b/examples/apidoc/MainClient/getSystemStatus.js index 33953f5..8d3f4cb 100644 --- a/examples/apidoc/MainClient/getSystemStatus.js +++ b/examples/apidoc/MainClient/getSystemStatus.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/system/status // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1517 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getTokenLimit.js b/examples/apidoc/MainClient/getTokenLimit.js index 9f3bfd5..9598c7d 100644 --- a/examples/apidoc/MainClient/getTokenLimit.js +++ b/examples/apidoc/MainClient/getTokenLimit.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/giftcard/buyCode/token-limit // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3141 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getTradeFee.js b/examples/apidoc/MainClient/getTradeFee.js index cf4a936..037a3c0 100644 --- a/examples/apidoc/MainClient/getTradeFee.js +++ b/examples/apidoc/MainClient/getTradeFee.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/asset/tradeFee // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1357 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getTradingDayTicker.js b/examples/apidoc/MainClient/getTradingDayTicker.js index 1887b6a..0f0d889 100644 --- a/examples/apidoc/MainClient/getTradingDayTicker.js +++ b/examples/apidoc/MainClient/getTradingDayTicker.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/ticker/tradingDay // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L650 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getUIKlines.js b/examples/apidoc/MainClient/getUIKlines.js index 91ef106..cc8b3ee 100644 --- a/examples/apidoc/MainClient/getUIKlines.js +++ b/examples/apidoc/MainClient/getUIKlines.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/uiKlines // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L617 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getUniversalTransferBroker.js b/examples/apidoc/MainClient/getUniversalTransferBroker.js index 39e02d8..bec3687 100644 --- a/examples/apidoc/MainClient/getUniversalTransferBroker.js +++ b/examples/apidoc/MainClient/getUniversalTransferBroker.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/universalTransfer // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3611 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getUniversalTransferHistory.js b/examples/apidoc/MainClient/getUniversalTransferHistory.js index 4d1670c..e89ebd6 100644 --- a/examples/apidoc/MainClient/getUniversalTransferHistory.js +++ b/examples/apidoc/MainClient/getUniversalTransferHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/asset/transfer // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1335 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getUserAsset.js b/examples/apidoc/MainClient/getUserAsset.js index 5a355fd..fdd3a7e 100644 --- a/examples/apidoc/MainClient/getUserAsset.js +++ b/examples/apidoc/MainClient/getUserAsset.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v3/asset/getUserAsset // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1325 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getVipApplicationStatus.js b/examples/apidoc/MainClient/getVipApplicationStatus.js index 81a59b1..ad94268 100644 --- a/examples/apidoc/MainClient/getVipApplicationStatus.js +++ b/examples/apidoc/MainClient/getVipApplicationStatus.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/vip/request/data // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3045 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getVipBorrowInterestRate.js b/examples/apidoc/MainClient/getVipBorrowInterestRate.js index 17cf408..a73eb81 100644 --- a/examples/apidoc/MainClient/getVipBorrowInterestRate.js +++ b/examples/apidoc/MainClient/getVipBorrowInterestRate.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/vip/request/interestRate // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2996 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getVipCollateralAssets.js b/examples/apidoc/MainClient/getVipCollateralAssets.js index 37e74bf..92595e5 100644 --- a/examples/apidoc/MainClient/getVipCollateralAssets.js +++ b/examples/apidoc/MainClient/getVipCollateralAssets.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/vip/collateral/data // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3009 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getVipLoanOpenOrders.js b/examples/apidoc/MainClient/getVipLoanOpenOrders.js index fc62540..488efb8 100644 --- a/examples/apidoc/MainClient/getVipLoanOpenOrders.js +++ b/examples/apidoc/MainClient/getVipLoanOpenOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/vip/ongoing/orders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3022 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getVipLoanRepaymentHistory.js b/examples/apidoc/MainClient/getVipLoanRepaymentHistory.js index 8286371..792e07e 100644 --- a/examples/apidoc/MainClient/getVipLoanRepaymentHistory.js +++ b/examples/apidoc/MainClient/getVipLoanRepaymentHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/vip/repay/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3029 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getVipLoanableAssets.js b/examples/apidoc/MainClient/getVipLoanableAssets.js index aa9901e..df4e2f6 100644 --- a/examples/apidoc/MainClient/getVipLoanableAssets.js +++ b/examples/apidoc/MainClient/getVipLoanableAssets.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/vip/loanable/data // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3002 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getWalletBalances.js b/examples/apidoc/MainClient/getWalletBalances.js index 71122cb..cb53ffd 100644 --- a/examples/apidoc/MainClient/getWalletBalances.js +++ b/examples/apidoc/MainClient/getWalletBalances.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/asset/wallet/balance // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1321 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getWbethRewardsHistory.js b/examples/apidoc/MainClient/getWbethRewardsHistory.js index 9e3771d..9b5abff 100644 --- a/examples/apidoc/MainClient/getWbethRewardsHistory.js +++ b/examples/apidoc/MainClient/getWbethRewardsHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/eth-staking/eth/history/wbethRewardsHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2223 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getWithdrawAddresses.js b/examples/apidoc/MainClient/getWithdrawAddresses.js index 1983a2a..2504b9b 100644 --- a/examples/apidoc/MainClient/getWithdrawAddresses.js +++ b/examples/apidoc/MainClient/getWithdrawAddresses.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/capital/withdraw/address/list // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1272 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/getWithdrawHistory.js b/examples/apidoc/MainClient/getWithdrawHistory.js index e903caa..0070716 100644 --- a/examples/apidoc/MainClient/getWithdrawHistory.js +++ b/examples/apidoc/MainClient/getWithdrawHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/capital/withdraw/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1266 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/isolatedMarginAccountTransfer.js b/examples/apidoc/MainClient/isolatedMarginAccountTransfer.js index 8d468a0..83d7b80 100644 --- a/examples/apidoc/MainClient/isolatedMarginAccountTransfer.js +++ b/examples/apidoc/MainClient/isolatedMarginAccountTransfer.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/isolated/transfer // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1247 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/keepAliveIsolatedMarginUserDataListenKey.js b/examples/apidoc/MainClient/keepAliveIsolatedMarginUserDataListenKey.js index 461b1fb..540bd03 100644 --- a/examples/apidoc/MainClient/keepAliveIsolatedMarginUserDataListenKey.js +++ b/examples/apidoc/MainClient/keepAliveIsolatedMarginUserDataListenKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/userDataStream/isolated?${serialiseParams(params)} // METHOD: PUT // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3819 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/keepAliveMarginUserDataListenKey.js b/examples/apidoc/MainClient/keepAliveMarginUserDataListenKey.js index a15d7a0..4caaf4f 100644 --- a/examples/apidoc/MainClient/keepAliveMarginUserDataListenKey.js +++ b/examples/apidoc/MainClient/keepAliveMarginUserDataListenKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/userDataStream?listenKey=${listenKey} // METHOD: PUT // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3802 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/keepAliveSpotUserDataListenKey.js b/examples/apidoc/MainClient/keepAliveSpotUserDataListenKey.js index ddbbe3d..8b600cb 100644 --- a/examples/apidoc/MainClient/keepAliveSpotUserDataListenKey.js +++ b/examples/apidoc/MainClient/keepAliveSpotUserDataListenKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/userDataStream?listenKey=${listenKey} // METHOD: PUT // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3789 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/marginAccountCancelOCO.js b/examples/apidoc/MainClient/marginAccountCancelOCO.js index 3bc45ca..0d2ffaf 100644 --- a/examples/apidoc/MainClient/marginAccountCancelOCO.js +++ b/examples/apidoc/MainClient/marginAccountCancelOCO.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/orderList // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L980 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/marginAccountCancelOpenOrders.js b/examples/apidoc/MainClient/marginAccountCancelOpenOrders.js index 32c55ad..bc86509 100644 --- a/examples/apidoc/MainClient/marginAccountCancelOpenOrders.js +++ b/examples/apidoc/MainClient/marginAccountCancelOpenOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/openOrders // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L974 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/marginAccountCancelOrder.js b/examples/apidoc/MainClient/marginAccountCancelOrder.js index b952179..b04f668 100644 --- a/examples/apidoc/MainClient/marginAccountCancelOrder.js +++ b/examples/apidoc/MainClient/marginAccountCancelOrder.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/order // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L985 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/marginAccountNewOCO.js b/examples/apidoc/MainClient/marginAccountNewOCO.js index 442e8f7..a07a5d7 100644 --- a/examples/apidoc/MainClient/marginAccountNewOCO.js +++ b/examples/apidoc/MainClient/marginAccountNewOCO.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/order/oco // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L991 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/purchaseFixedAndActivityProject.js b/examples/apidoc/MainClient/purchaseFixedAndActivityProject.js index 1cc61b5..061ba97 100644 --- a/examples/apidoc/MainClient/purchaseFixedAndActivityProject.js +++ b/examples/apidoc/MainClient/purchaseFixedAndActivityProject.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/customizedFixed/purchase // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3914 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/purchaseFlexibleProduct.js b/examples/apidoc/MainClient/purchaseFlexibleProduct.js index 5e1e761..e612eea 100644 --- a/examples/apidoc/MainClient/purchaseFlexibleProduct.js +++ b/examples/apidoc/MainClient/purchaseFlexibleProduct.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/flexible/subscribe // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2826 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/queryCrossMarginAccountDetails.js b/examples/apidoc/MainClient/queryCrossMarginAccountDetails.js index d0b93ec..0f9085f 100644 --- a/examples/apidoc/MainClient/queryCrossMarginAccountDetails.js +++ b/examples/apidoc/MainClient/queryCrossMarginAccountDetails.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1183 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/queryLoanRecord.js b/examples/apidoc/MainClient/queryLoanRecord.js index b6664fe..06ed79a 100644 --- a/examples/apidoc/MainClient/queryLoanRecord.js +++ b/examples/apidoc/MainClient/queryLoanRecord.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/loan // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1229 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/queryMarginAccountAllOCO.js b/examples/apidoc/MainClient/queryMarginAccountAllOCO.js index a297890..91d3ee1 100644 --- a/examples/apidoc/MainClient/queryMarginAccountAllOCO.js +++ b/examples/apidoc/MainClient/queryMarginAccountAllOCO.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/allOrderList // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1012 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/queryMarginAccountAllOrders.js b/examples/apidoc/MainClient/queryMarginAccountAllOrders.js index 15f313b..1a97867 100644 --- a/examples/apidoc/MainClient/queryMarginAccountAllOrders.js +++ b/examples/apidoc/MainClient/queryMarginAccountAllOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/allOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1018 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/queryMarginAccountOCO.js b/examples/apidoc/MainClient/queryMarginAccountOCO.js index 93f46f1..9edc0f3 100644 --- a/examples/apidoc/MainClient/queryMarginAccountOCO.js +++ b/examples/apidoc/MainClient/queryMarginAccountOCO.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/orderList // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1024 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/queryMarginAccountOpenOCO.js b/examples/apidoc/MainClient/queryMarginAccountOpenOCO.js index a16e2fe..4e88abc 100644 --- a/examples/apidoc/MainClient/queryMarginAccountOpenOCO.js +++ b/examples/apidoc/MainClient/queryMarginAccountOpenOCO.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/openOrderList // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1028 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/queryMarginAccountOpenOrders.js b/examples/apidoc/MainClient/queryMarginAccountOpenOrders.js index 2bdf5e4..7fb836d 100644 --- a/examples/apidoc/MainClient/queryMarginAccountOpenOrders.js +++ b/examples/apidoc/MainClient/queryMarginAccountOpenOrders.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/openOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1035 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/queryMarginAccountOrder.js b/examples/apidoc/MainClient/queryMarginAccountOrder.js index 1c47da1..e6e97d6 100644 --- a/examples/apidoc/MainClient/queryMarginAccountOrder.js +++ b/examples/apidoc/MainClient/queryMarginAccountOrder.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/order // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1039 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/queryMarginAccountTradeList.js b/examples/apidoc/MainClient/queryMarginAccountTradeList.js index bda8019..363d5fa 100644 --- a/examples/apidoc/MainClient/queryMarginAccountTradeList.js +++ b/examples/apidoc/MainClient/queryMarginAccountTradeList.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/myTrades // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1043 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/queryMarginPriceIndex.js b/examples/apidoc/MainClient/queryMarginPriceIndex.js index 013b5ad..e6153a3 100644 --- a/examples/apidoc/MainClient/queryMarginPriceIndex.js +++ b/examples/apidoc/MainClient/queryMarginPriceIndex.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/priceIndex // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L884 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/queryMaxBorrow.js b/examples/apidoc/MainClient/queryMaxBorrow.js index 7352fc8..abdf249 100644 --- a/examples/apidoc/MainClient/queryMaxBorrow.js +++ b/examples/apidoc/MainClient/queryMaxBorrow.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/maxBorrowable // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L937 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/queryMaxTransferOutAmount.js b/examples/apidoc/MainClient/queryMaxTransferOutAmount.js index d8530a7..4804de9 100644 --- a/examples/apidoc/MainClient/queryMaxTransferOutAmount.js +++ b/examples/apidoc/MainClient/queryMaxTransferOutAmount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/maxTransferable // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1143 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/queryRepayRecord.js b/examples/apidoc/MainClient/queryRepayRecord.js index c2c1b3f..ac7c5f9 100644 --- a/examples/apidoc/MainClient/queryRepayRecord.js +++ b/examples/apidoc/MainClient/queryRepayRecord.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/repay // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1238 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/querySubAccountFuturesAssetInfo.js b/examples/apidoc/MainClient/querySubAccountFuturesAssetInfo.js index 92b1ff5..e7d26a7 100644 --- a/examples/apidoc/MainClient/querySubAccountFuturesAssetInfo.js +++ b/examples/apidoc/MainClient/querySubAccountFuturesAssetInfo.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v3/broker/subAccount/futuresSummary // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3595 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/redeemBlvt.js b/examples/apidoc/MainClient/redeemBlvt.js index bf9f66b..d36d3fc 100644 --- a/examples/apidoc/MainClient/redeemBlvt.js +++ b/examples/apidoc/MainClient/redeemBlvt.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/blvt/redeem // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3357 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/redeemEth.js b/examples/apidoc/MainClient/redeemEth.js index 556cbc6..8704076 100644 --- a/examples/apidoc/MainClient/redeemEth.js +++ b/examples/apidoc/MainClient/redeemEth.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/eth-staking/eth/redeem // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2179 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/redeemFlexibleProduct.js b/examples/apidoc/MainClient/redeemFlexibleProduct.js index bbb67bf..8f741af 100644 --- a/examples/apidoc/MainClient/redeemFlexibleProduct.js +++ b/examples/apidoc/MainClient/redeemFlexibleProduct.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/flexible/redeem // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2838 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/redeemGiftCard.js b/examples/apidoc/MainClient/redeemGiftCard.js index 53d4215..acc8cc2 100644 --- a/examples/apidoc/MainClient/redeemGiftCard.js +++ b/examples/apidoc/MainClient/redeemGiftCard.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/giftcard/redeemCode // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3133 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/redeemLockedProduct.js b/examples/apidoc/MainClient/redeemLockedProduct.js index e59b6fd..0a7c633 100644 --- a/examples/apidoc/MainClient/redeemLockedProduct.js +++ b/examples/apidoc/MainClient/redeemLockedProduct.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/locked/redeem // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2844 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/redeemSol.js b/examples/apidoc/MainClient/redeemSol.js index c2900f6..bb55537 100644 --- a/examples/apidoc/MainClient/redeemSol.js +++ b/examples/apidoc/MainClient/redeemSol.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sol-staking/sol/redeem // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2328 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/removeBSwapLiquidity.js b/examples/apidoc/MainClient/removeBSwapLiquidity.js index cca5b42..d50ccc3 100644 --- a/examples/apidoc/MainClient/removeBSwapLiquidity.js +++ b/examples/apidoc/MainClient/removeBSwapLiquidity.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/bswap/liquidityRemove // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3867 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/renewVipLoan.js b/examples/apidoc/MainClient/renewVipLoan.js index e68506c..3b11587 100644 --- a/examples/apidoc/MainClient/renewVipLoan.js +++ b/examples/apidoc/MainClient/renewVipLoan.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/vip/renew // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3058 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/repayCryptoLoan.js b/examples/apidoc/MainClient/repayCryptoLoan.js index 6d3569d..4c677f7 100644 --- a/examples/apidoc/MainClient/repayCryptoLoan.js +++ b/examples/apidoc/MainClient/repayCryptoLoan.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/repay // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2704 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/repayCryptoLoanFlexible.js b/examples/apidoc/MainClient/repayCryptoLoanFlexible.js index f68371a..d68241f 100644 --- a/examples/apidoc/MainClient/repayCryptoLoanFlexible.js +++ b/examples/apidoc/MainClient/repayCryptoLoanFlexible.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/loan/flexible/repay // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2601 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/repayFuturesNegativeBalance.js b/examples/apidoc/MainClient/repayFuturesNegativeBalance.js index 6314fed..5655def 100644 --- a/examples/apidoc/MainClient/repayFuturesNegativeBalance.js +++ b/examples/apidoc/MainClient/repayFuturesNegativeBalance.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/portfolio/repay-futures-negative-balance // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3298 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/repayPortfolioMarginProBankruptcyLoan.js b/examples/apidoc/MainClient/repayPortfolioMarginProBankruptcyLoan.js index bd5044e..74dec7e 100644 --- a/examples/apidoc/MainClient/repayPortfolioMarginProBankruptcyLoan.js +++ b/examples/apidoc/MainClient/repayPortfolioMarginProBankruptcyLoan.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/portfolio/repay // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3286 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/repayVipLoan.js b/examples/apidoc/MainClient/repayVipLoan.js index 17d998c..cb6ded6 100644 --- a/examples/apidoc/MainClient/repayVipLoan.js +++ b/examples/apidoc/MainClient/repayVipLoan.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/loan/vip/repay // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3062 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/setConvertibleCoins.js b/examples/apidoc/MainClient/setConvertibleCoins.js index 1b44a6b..0de5f5e 100644 --- a/examples/apidoc/MainClient/setConvertibleCoins.js +++ b/examples/apidoc/MainClient/setConvertibleCoins.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/capital/contract/convertible-coins // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1302 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/setFlexibleAutoSubscribe.js b/examples/apidoc/MainClient/setFlexibleAutoSubscribe.js index a288fac..08cb98b 100644 --- a/examples/apidoc/MainClient/setFlexibleAutoSubscribe.js +++ b/examples/apidoc/MainClient/setFlexibleAutoSubscribe.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/flexible/setAutoSubscribe // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2850 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/setLockedAutoSubscribe.js b/examples/apidoc/MainClient/setLockedAutoSubscribe.js index 244cbac..4829d71 100644 --- a/examples/apidoc/MainClient/setLockedAutoSubscribe.js +++ b/examples/apidoc/MainClient/setLockedAutoSubscribe.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/locked/setAutoSubscribe // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2859 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/setLockedProductRedeemOption.js b/examples/apidoc/MainClient/setLockedProductRedeemOption.js index a144c57..73f40d6 100644 --- a/examples/apidoc/MainClient/setLockedProductRedeemOption.js +++ b/examples/apidoc/MainClient/setLockedProductRedeemOption.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/locked/setRedeemOption // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2886 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subAccountAddIPList.js b/examples/apidoc/MainClient/subAccountAddIPList.js index 5895699..3a84440 100644 --- a/examples/apidoc/MainClient/subAccountAddIPList.js +++ b/examples/apidoc/MainClient/subAccountAddIPList.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/subAccountApi/ipRestriction/ipList // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1629 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subAccountAddIPRestriction.js b/examples/apidoc/MainClient/subAccountAddIPRestriction.js index ce95e9e..6f65556 100644 --- a/examples/apidoc/MainClient/subAccountAddIPRestriction.js +++ b/examples/apidoc/MainClient/subAccountAddIPRestriction.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/sub-account/subAccountApi/ipRestriction // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1616 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subAccountDeleteIPList.js b/examples/apidoc/MainClient/subAccountDeleteIPList.js index 1f06975..dc5e66e 100644 --- a/examples/apidoc/MainClient/subAccountDeleteIPList.js +++ b/examples/apidoc/MainClient/subAccountDeleteIPList.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/subAccountApi/ipRestriction/ipList // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1607 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subAccountEnableFutures.js b/examples/apidoc/MainClient/subAccountEnableFutures.js index bac3529..0ccb5dd 100644 --- a/examples/apidoc/MainClient/subAccountEnableFutures.js +++ b/examples/apidoc/MainClient/subAccountEnableFutures.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/futures/enable // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1543 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subAccountEnableLeverageToken.js b/examples/apidoc/MainClient/subAccountEnableLeverageToken.js index 7c1d39d..cea5077 100644 --- a/examples/apidoc/MainClient/subAccountEnableLeverageToken.js +++ b/examples/apidoc/MainClient/subAccountEnableLeverageToken.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/blvt/enable // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1557 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subAccountEnableMargin.js b/examples/apidoc/MainClient/subAccountEnableMargin.js index 181fbd5..af18bc2 100644 --- a/examples/apidoc/MainClient/subAccountEnableMargin.js +++ b/examples/apidoc/MainClient/subAccountEnableMargin.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/margin/enable // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1547 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subAccountEnableOrDisableIPRestriction.js b/examples/apidoc/MainClient/subAccountEnableOrDisableIPRestriction.js index e97986a..ba003f2 100644 --- a/examples/apidoc/MainClient/subAccountEnableOrDisableIPRestriction.js +++ b/examples/apidoc/MainClient/subAccountEnableOrDisableIPRestriction.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/subAccountApi/ipRestriction // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1642 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subAccountFuturesAssetTransfer.js b/examples/apidoc/MainClient/subAccountFuturesAssetTransfer.js index 08079c0..a13a9f5 100644 --- a/examples/apidoc/MainClient/subAccountFuturesAssetTransfer.js +++ b/examples/apidoc/MainClient/subAccountFuturesAssetTransfer.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/futures/internalTransfer // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1755 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subAccountFuturesTransfer.js b/examples/apidoc/MainClient/subAccountFuturesTransfer.js index 93379b5..b89306c 100644 --- a/examples/apidoc/MainClient/subAccountFuturesTransfer.js +++ b/examples/apidoc/MainClient/subAccountFuturesTransfer.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/futures/transfer // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1657 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subAccountMarginTransfer.js b/examples/apidoc/MainClient/subAccountMarginTransfer.js index 0d98f05..01aabb3 100644 --- a/examples/apidoc/MainClient/subAccountMarginTransfer.js +++ b/examples/apidoc/MainClient/subAccountMarginTransfer.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/margin/transfer // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1710 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subAccountTransferHistory.js b/examples/apidoc/MainClient/subAccountTransferHistory.js index af65962..e1f70c9 100644 --- a/examples/apidoc/MainClient/subAccountTransferHistory.js +++ b/examples/apidoc/MainClient/subAccountTransferHistory.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/transfer/subUserHistory // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1764 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subAccountTransferToMaster.js b/examples/apidoc/MainClient/subAccountTransferToMaster.js index f04019a..629e63a 100644 --- a/examples/apidoc/MainClient/subAccountTransferToMaster.js +++ b/examples/apidoc/MainClient/subAccountTransferToMaster.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/transfer/subToMaster // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1773 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subAccountTransferToSameMaster.js b/examples/apidoc/MainClient/subAccountTransferToSameMaster.js index ba2b0ad..7137b99 100644 --- a/examples/apidoc/MainClient/subAccountTransferToSameMaster.js +++ b/examples/apidoc/MainClient/subAccountTransferToSameMaster.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/transfer/subToSub // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1779 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subAccountUniversalTransfer.js b/examples/apidoc/MainClient/subAccountUniversalTransfer.js index ddabef5..33ce1e7 100644 --- a/examples/apidoc/MainClient/subAccountUniversalTransfer.js +++ b/examples/apidoc/MainClient/subAccountUniversalTransfer.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sub-account/universalTransfer // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1785 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitAutoInvestOneTimeTransaction.js b/examples/apidoc/MainClient/submitAutoInvestOneTimeTransaction.js index df059fb..11674d4 100644 --- a/examples/apidoc/MainClient/submitAutoInvestOneTimeTransaction.js +++ b/examples/apidoc/MainClient/submitAutoInvestOneTimeTransaction.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/one-off // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1955 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitAutoInvestRedemption.js b/examples/apidoc/MainClient/submitAutoInvestRedemption.js index 989d82d..291ef89 100644 --- a/examples/apidoc/MainClient/submitAutoInvestRedemption.js +++ b/examples/apidoc/MainClient/submitAutoInvestRedemption.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/redeem // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2008 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitAutoInvestmentPlan.js b/examples/apidoc/MainClient/submitAutoInvestmentPlan.js index 9a24e70..7e00626 100644 --- a/examples/apidoc/MainClient/submitAutoInvestmentPlan.js +++ b/examples/apidoc/MainClient/submitAutoInvestmentPlan.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/plan/add // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2041 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitAutoInvestmentPlanOld.js b/examples/apidoc/MainClient/submitAutoInvestmentPlanOld.js index 1cce921..507dfa0 100644 --- a/examples/apidoc/MainClient/submitAutoInvestmentPlanOld.js +++ b/examples/apidoc/MainClient/submitAutoInvestmentPlanOld.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/plan/add // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2035 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitBrokerSubFuturesTransfer.js b/examples/apidoc/MainClient/submitBrokerSubFuturesTransfer.js index 2bde370..c5cef9f 100644 --- a/examples/apidoc/MainClient/submitBrokerSubFuturesTransfer.js +++ b/examples/apidoc/MainClient/submitBrokerSubFuturesTransfer.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/transfer/futures // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3544 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitConvertLimitOrder.js b/examples/apidoc/MainClient/submitConvertLimitOrder.js index 762de53..92c6140 100644 --- a/examples/apidoc/MainClient/submitConvertLimitOrder.js +++ b/examples/apidoc/MainClient/submitConvertLimitOrder.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/convert/limit/placeOrder // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2123 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitDepositCredit.js b/examples/apidoc/MainClient/submitDepositCredit.js index a9072f8..61df171 100644 --- a/examples/apidoc/MainClient/submitDepositCredit.js +++ b/examples/apidoc/MainClient/submitDepositCredit.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/capital/deposit/credit-apply // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1292 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitHashrateResale.js b/examples/apidoc/MainClient/submitHashrateResale.js index 7db795c..b451996 100644 --- a/examples/apidoc/MainClient/submitHashrateResale.js +++ b/examples/apidoc/MainClient/submitHashrateResale.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/mining/hash-transfer/config // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2470 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitManualLiquidation.js b/examples/apidoc/MainClient/submitManualLiquidation.js index f6dae21..a0753eb 100644 --- a/examples/apidoc/MainClient/submitManualLiquidation.js +++ b/examples/apidoc/MainClient/submitManualLiquidation.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/manual-liquidation // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1056 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitMarginAccountBorrowRepay.js b/examples/apidoc/MainClient/submitMarginAccountBorrowRepay.js index c17454d..5c3f7a6 100644 --- a/examples/apidoc/MainClient/submitMarginAccountBorrowRepay.js +++ b/examples/apidoc/MainClient/submitMarginAccountBorrowRepay.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/borrow-repay // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L919 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitMarginOTOCOOrder.js b/examples/apidoc/MainClient/submitMarginOTOCOOrder.js index f65c224..c89c6d1 100644 --- a/examples/apidoc/MainClient/submitMarginOTOCOOrder.js +++ b/examples/apidoc/MainClient/submitMarginOTOCOOrder.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/order/otoco // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1077 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitMarginOTOOrder.js b/examples/apidoc/MainClient/submitMarginOTOOrder.js index 69835dd..854a15d 100644 --- a/examples/apidoc/MainClient/submitMarginOTOOrder.js +++ b/examples/apidoc/MainClient/submitMarginOTOOrder.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/order/oto // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1065 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitNewFutureAccountTransfer.js b/examples/apidoc/MainClient/submitNewFutureAccountTransfer.js index 25e375a..e25d969 100644 --- a/examples/apidoc/MainClient/submitNewFutureAccountTransfer.js +++ b/examples/apidoc/MainClient/submitNewFutureAccountTransfer.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/futures/transfer // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1405 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitNewOCO.js b/examples/apidoc/MainClient/submitNewOCO.js index 32536f4..80d714c 100644 --- a/examples/apidoc/MainClient/submitNewOCO.js +++ b/examples/apidoc/MainClient/submitNewOCO.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/order/oco // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L730 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitNewOrderListOTO.js b/examples/apidoc/MainClient/submitNewOrderListOTO.js index 36711fe..ce6c476 100644 --- a/examples/apidoc/MainClient/submitNewOrderListOTO.js +++ b/examples/apidoc/MainClient/submitNewOrderListOTO.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/orderList/oto // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L747 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitNewOrderListOTOCO.js b/examples/apidoc/MainClient/submitNewOrderListOTOCO.js index c01e5a2..a2ac111 100644 --- a/examples/apidoc/MainClient/submitNewOrderListOTOCO.js +++ b/examples/apidoc/MainClient/submitNewOrderListOTOCO.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/orderList/otoco // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L757 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitNewSOROrder.js b/examples/apidoc/MainClient/submitNewSOROrder.js index 41f79e7..8d383e5 100644 --- a/examples/apidoc/MainClient/submitNewSOROrder.js +++ b/examples/apidoc/MainClient/submitNewSOROrder.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/sor/order // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L790 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitPortfolioMarginProFullTransfer.js b/examples/apidoc/MainClient/submitPortfolioMarginProFullTransfer.js index aa4220c..c39dfc7 100644 --- a/examples/apidoc/MainClient/submitPortfolioMarginProFullTransfer.js +++ b/examples/apidoc/MainClient/submitPortfolioMarginProFullTransfer.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/portfolio/auto-collection // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3274 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitPortfolioMarginProSpecificTransfer.js b/examples/apidoc/MainClient/submitPortfolioMarginProSpecificTransfer.js index 6bf3aa0..6560b73 100644 --- a/examples/apidoc/MainClient/submitPortfolioMarginProSpecificTransfer.js +++ b/examples/apidoc/MainClient/submitPortfolioMarginProSpecificTransfer.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/portfolio/asset-collection // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3280 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitSmallLiabilityExchange.js b/examples/apidoc/MainClient/submitSmallLiabilityExchange.js index d9c6a4b..7f93db8 100644 --- a/examples/apidoc/MainClient/submitSmallLiabilityExchange.js +++ b/examples/apidoc/MainClient/submitSmallLiabilityExchange.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/exchange-small-liability // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1049 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitSpotAlgoTwapOrder.js b/examples/apidoc/MainClient/submitSpotAlgoTwapOrder.js index 3d16409..2cb20c1 100644 --- a/examples/apidoc/MainClient/submitSpotAlgoTwapOrder.js +++ b/examples/apidoc/MainClient/submitSpotAlgoTwapOrder.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/algo/spot/newOrderTwap // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2532 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitTwapNewOrder.js b/examples/apidoc/MainClient/submitTwapNewOrder.js index ea86c9a..34b1a73 100644 --- a/examples/apidoc/MainClient/submitTwapNewOrder.js +++ b/examples/apidoc/MainClient/submitTwapNewOrder.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/algo/futures/newOrderTwap // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2493 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitUniversalTransfer.js b/examples/apidoc/MainClient/submitUniversalTransfer.js index a8e47ae..565b71b 100644 --- a/examples/apidoc/MainClient/submitUniversalTransfer.js +++ b/examples/apidoc/MainClient/submitUniversalTransfer.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/asset/transfer // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1329 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/submitVpNewOrder.js b/examples/apidoc/MainClient/submitVpNewOrder.js index 23cadd9..dd00bce 100644 --- a/examples/apidoc/MainClient/submitVpNewOrder.js +++ b/examples/apidoc/MainClient/submitVpNewOrder.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/algo/futures/newOrderVp // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2486 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subscribeBlvt.js b/examples/apidoc/MainClient/subscribeBlvt.js index 3854186..f15b59b 100644 --- a/examples/apidoc/MainClient/subscribeBlvt.js +++ b/examples/apidoc/MainClient/subscribeBlvt.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/blvt/subscribe // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3347 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subscribeDualInvestmentProduct.js b/examples/apidoc/MainClient/subscribeDualInvestmentProduct.js index 25afc20..05cd279 100644 --- a/examples/apidoc/MainClient/subscribeDualInvestmentProduct.js +++ b/examples/apidoc/MainClient/subscribeDualInvestmentProduct.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/dci/product/subscribe // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3091 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subscribeEthStakingV1.js b/examples/apidoc/MainClient/subscribeEthStakingV1.js index 1e32d73..79188ed 100644 --- a/examples/apidoc/MainClient/subscribeEthStakingV1.js +++ b/examples/apidoc/MainClient/subscribeEthStakingV1.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/eth-staking/eth/stake // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2167 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subscribeEthStakingV2.js b/examples/apidoc/MainClient/subscribeEthStakingV2.js index ccf4d7a..8b325e6 100644 --- a/examples/apidoc/MainClient/subscribeEthStakingV2.js +++ b/examples/apidoc/MainClient/subscribeEthStakingV2.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/eth-staking/eth/stake // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2173 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subscribeSimpleEarnLockedProduct.js b/examples/apidoc/MainClient/subscribeSimpleEarnLockedProduct.js index 1688d0e..87cf277 100644 --- a/examples/apidoc/MainClient/subscribeSimpleEarnLockedProduct.js +++ b/examples/apidoc/MainClient/subscribeSimpleEarnLockedProduct.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/simple-earn/locked/subscribe // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2832 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/subscribeSolStaking.js b/examples/apidoc/MainClient/subscribeSolStaking.js index 52318f0..21b1d9d 100644 --- a/examples/apidoc/MainClient/subscribeSolStaking.js +++ b/examples/apidoc/MainClient/subscribeSolStaking.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/sol-staking/sol/stake // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2322 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/testConnectivity.js b/examples/apidoc/MainClient/testConnectivity.js index c1766c6..da36495 100644 --- a/examples/apidoc/MainClient/testConnectivity.js +++ b/examples/apidoc/MainClient/testConnectivity.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/ping // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L571 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/testNewSOROrder.js b/examples/apidoc/MainClient/testNewSOROrder.js index 133b47a..9584865 100644 --- a/examples/apidoc/MainClient/testNewSOROrder.js +++ b/examples/apidoc/MainClient/testNewSOROrder.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: api/v3/sor/order/test // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L801 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/toggleBNBBurn.js b/examples/apidoc/MainClient/toggleBNBBurn.js index 3aece60..748da90 100644 --- a/examples/apidoc/MainClient/toggleBNBBurn.js +++ b/examples/apidoc/MainClient/toggleBNBBurn.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/bnbBurn // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1212 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/transferBrokerSubAccount.js b/examples/apidoc/MainClient/transferBrokerSubAccount.js index 4ed4d2f..adc7530 100644 --- a/examples/apidoc/MainClient/transferBrokerSubAccount.js +++ b/examples/apidoc/MainClient/transferBrokerSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/transfer // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3532 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/universalTransferBroker.js b/examples/apidoc/MainClient/universalTransferBroker.js index ec5e1fc..cac2226 100644 --- a/examples/apidoc/MainClient/universalTransferBroker.js +++ b/examples/apidoc/MainClient/universalTransferBroker.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/universalTransfer // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3604 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/updateAutoCompoundStatus.js b/examples/apidoc/MainClient/updateAutoCompoundStatus.js index 88f653b..f4838b4 100644 --- a/examples/apidoc/MainClient/updateAutoCompoundStatus.js +++ b/examples/apidoc/MainClient/updateAutoCompoundStatus.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/dci/product/auto_compound/edit-status // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3110 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/updateAutoInvestPlanStatus.js b/examples/apidoc/MainClient/updateAutoInvestPlanStatus.js index 45b4016..b9b67dc 100644 --- a/examples/apidoc/MainClient/updateAutoInvestPlanStatus.js +++ b/examples/apidoc/MainClient/updateAutoInvestPlanStatus.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/plan/edit-status // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1971 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/updateAutoInvestmentPlan.js b/examples/apidoc/MainClient/updateAutoInvestmentPlan.js index c629555..f10fd0b 100644 --- a/examples/apidoc/MainClient/updateAutoInvestmentPlan.js +++ b/examples/apidoc/MainClient/updateAutoInvestmentPlan.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/plan/edit // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1991 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/updateAutoInvestmentPlanOld.js b/examples/apidoc/MainClient/updateAutoInvestmentPlanOld.js index 8b86cc1..355830a 100644 --- a/examples/apidoc/MainClient/updateAutoInvestmentPlanOld.js +++ b/examples/apidoc/MainClient/updateAutoInvestmentPlanOld.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/lending/auto-invest/plan/edit // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1985 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/updateAutoRepayFuturesStatus.js b/examples/apidoc/MainClient/updateAutoRepayFuturesStatus.js index ce77df4..934dd05 100644 --- a/examples/apidoc/MainClient/updateAutoRepayFuturesStatus.js +++ b/examples/apidoc/MainClient/updateAutoRepayFuturesStatus.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/portfolio/repay-futures-switch // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3304 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/updateBrokerSubAccountCoinFuturesCommission.js b/examples/apidoc/MainClient/updateBrokerSubAccountCoinFuturesCommission.js index 0069753..bf72a7b 100644 --- a/examples/apidoc/MainClient/updateBrokerSubAccountCoinFuturesCommission.js +++ b/examples/apidoc/MainClient/updateBrokerSubAccountCoinFuturesCommission.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccountApi/commission/coinFutures // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3647 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/updateBrokerSubAccountCommission.js b/examples/apidoc/MainClient/updateBrokerSubAccountCommission.js index 8c85318..c4fd0df 100644 --- a/examples/apidoc/MainClient/updateBrokerSubAccountCommission.js +++ b/examples/apidoc/MainClient/updateBrokerSubAccountCommission.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccountApi/commission // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3623 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/updateBrokerSubAccountFuturesCommission.js b/examples/apidoc/MainClient/updateBrokerSubAccountFuturesCommission.js index 9097303..8ec3790 100644 --- a/examples/apidoc/MainClient/updateBrokerSubAccountFuturesCommission.js +++ b/examples/apidoc/MainClient/updateBrokerSubAccountFuturesCommission.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccountApi/commission/futures // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3629 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/updateCrossMarginMaxLeverage.js b/examples/apidoc/MainClient/updateCrossMarginMaxLeverage.js index 38185fc..7da2565 100644 --- a/examples/apidoc/MainClient/updateCrossMarginMaxLeverage.js +++ b/examples/apidoc/MainClient/updateCrossMarginMaxLeverage.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/max-leverage // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1155 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/updateIpRestrictionForSubAccountApiKey.js b/examples/apidoc/MainClient/updateIpRestrictionForSubAccountApiKey.js index f538bd7..bd40d55 100644 --- a/examples/apidoc/MainClient/updateIpRestrictionForSubAccountApiKey.js +++ b/examples/apidoc/MainClient/updateIpRestrictionForSubAccountApiKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v2/broker/subAccountApi/ipRestriction // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3433 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/updateMarginIPForSpecialLowLatencyKey.js b/examples/apidoc/MainClient/updateMarginIPForSpecialLowLatencyKey.js index a51ea04..4f9b5b2 100644 --- a/examples/apidoc/MainClient/updateMarginIPForSpecialLowLatencyKey.js +++ b/examples/apidoc/MainClient/updateMarginIPForSpecialLowLatencyKey.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/margin/apiKey/ip // METHOD: PUT // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1104 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/updateSubAccountBNBBurn.js b/examples/apidoc/MainClient/updateSubAccountBNBBurn.js index 5daff49..72566dc 100644 --- a/examples/apidoc/MainClient/updateSubAccountBNBBurn.js +++ b/examples/apidoc/MainClient/updateSubAccountBNBBurn.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccount/bnbBurn/spot // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3495 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/updateSubAccountMarginInterestBNBBurn.js b/examples/apidoc/MainClient/updateSubAccountMarginInterestBNBBurn.js index e676aa0..fb9a551 100644 --- a/examples/apidoc/MainClient/updateSubAccountMarginInterestBNBBurn.js +++ b/examples/apidoc/MainClient/updateSubAccountMarginInterestBNBBurn.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/broker/subAccount/bnbBurn/marginInterest // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3505 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/verifyGiftCard.js b/examples/apidoc/MainClient/verifyGiftCard.js index 241a767..ad7c9a9 100644 --- a/examples/apidoc/MainClient/verifyGiftCard.js +++ b/examples/apidoc/MainClient/verifyGiftCard.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/giftcard/verify // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L3137 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/withdraw.js b/examples/apidoc/MainClient/withdraw.js index 3857424..33703ef 100644 --- a/examples/apidoc/MainClient/withdraw.js +++ b/examples/apidoc/MainClient/withdraw.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/capital/withdraw/apply // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1262 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/withdrawAssetsFromManagedSubAccount.js b/examples/apidoc/MainClient/withdrawAssetsFromManagedSubAccount.js index 71b4b07..aacecab 100644 --- a/examples/apidoc/MainClient/withdrawAssetsFromManagedSubAccount.js +++ b/examples/apidoc/MainClient/withdrawAssetsFromManagedSubAccount.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/managed-subaccount/withdraw // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L1812 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/MainClient/wrapBeth.js b/examples/apidoc/MainClient/wrapBeth.js index 6d85f49..1419123 100644 --- a/examples/apidoc/MainClient/wrapBeth.js +++ b/examples/apidoc/MainClient/wrapBeth.js @@ -5,7 +5,6 @@ const { MainClient } = require('binance'); // ENDPOINT: sapi/v1/eth-staking/wbeth/wrap // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/main-client.ts#L2183 const client = new MainClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/acceptConvertQuote.js b/examples/apidoc/USDMClient/acceptConvertQuote.js index db98214..4003c8e 100644 --- a/examples/apidoc/USDMClient/acceptConvertQuote.js +++ b/examples/apidoc/USDMClient/acceptConvertQuote.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/convert/acceptQuote // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L620 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/cancelAllOpenOrders.js b/examples/apidoc/USDMClient/cancelAllOpenOrders.js index e5b20f8..8c0760c 100644 --- a/examples/apidoc/USDMClient/cancelAllOpenOrders.js +++ b/examples/apidoc/USDMClient/cancelAllOpenOrders.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/allOpenOrders // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L385 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/cancelMultipleOrders.js b/examples/apidoc/USDMClient/cancelMultipleOrders.js index 99df413..b226cc1 100644 --- a/examples/apidoc/USDMClient/cancelMultipleOrders.js +++ b/examples/apidoc/USDMClient/cancelMultipleOrders.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/batchOrders // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L365 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/cancelOrder.js b/examples/apidoc/USDMClient/cancelOrder.js index 444ec3f..d71c194 100644 --- a/examples/apidoc/USDMClient/cancelOrder.js +++ b/examples/apidoc/USDMClient/cancelOrder.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/order // METHOD: DELETE // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L361 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/closeFuturesUserDataListenKey.js b/examples/apidoc/USDMClient/closeFuturesUserDataListenKey.js index 99cf3cb..a5853ea 100644 --- a/examples/apidoc/USDMClient/closeFuturesUserDataListenKey.js +++ b/examples/apidoc/USDMClient/closeFuturesUserDataListenKey.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/listenKey // METHOD: DELETE // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L776 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/get24hrChangeStatistics.js b/examples/apidoc/USDMClient/get24hrChangeStatistics.js index 5fda9b1..9ae0df9 100644 --- a/examples/apidoc/USDMClient/get24hrChangeStatistics.js +++ b/examples/apidoc/USDMClient/get24hrChangeStatistics.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/ticker/24hr // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L218 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/get24hrChangeStatististics.js b/examples/apidoc/USDMClient/get24hrChangeStatististics.js index d02c3e4..c6a89b4 100644 --- a/examples/apidoc/USDMClient/get24hrChangeStatististics.js +++ b/examples/apidoc/USDMClient/get24hrChangeStatististics.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/ticker/24hr // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L202 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getADLQuantileEstimation.js b/examples/apidoc/USDMClient/getADLQuantileEstimation.js index 3844f12..d418616 100644 --- a/examples/apidoc/USDMClient/getADLQuantileEstimation.js +++ b/examples/apidoc/USDMClient/getADLQuantileEstimation.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/adlQuantile // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L460 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getAccountComissionRate.js b/examples/apidoc/USDMClient/getAccountComissionRate.js index a05b080..d87a111 100644 --- a/examples/apidoc/USDMClient/getAccountComissionRate.js +++ b/examples/apidoc/USDMClient/getAccountComissionRate.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/commissionRate // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L500 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getAccountInformation.js b/examples/apidoc/USDMClient/getAccountInformation.js index b6c944a..4788aeb 100644 --- a/examples/apidoc/USDMClient/getAccountInformation.js +++ b/examples/apidoc/USDMClient/getAccountInformation.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v2/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L496 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getAccountInformationV3.js b/examples/apidoc/USDMClient/getAccountInformationV3.js index 55835de..01c3d24 100644 --- a/examples/apidoc/USDMClient/getAccountInformationV3.js +++ b/examples/apidoc/USDMClient/getAccountInformationV3.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v3/account // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L488 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getAccountTrades.js b/examples/apidoc/USDMClient/getAccountTrades.js index ee6bdd0..2c6d64e 100644 --- a/examples/apidoc/USDMClient/getAccountTrades.js +++ b/examples/apidoc/USDMClient/getAccountTrades.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/userTrades // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L418 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getAggregateTrades.js b/examples/apidoc/USDMClient/getAggregateTrades.js index a8e1ded..bf98382 100644 --- a/examples/apidoc/USDMClient/getAggregateTrades.js +++ b/examples/apidoc/USDMClient/getAggregateTrades.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/aggTrades // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L152 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getAllConvertPairs.js b/examples/apidoc/USDMClient/getAllConvertPairs.js index ed146e1..5a4555d 100644 --- a/examples/apidoc/USDMClient/getAllConvertPairs.js +++ b/examples/apidoc/USDMClient/getAllConvertPairs.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/convert/exchangeInfo // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L607 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getAllOpenOrders.js b/examples/apidoc/USDMClient/getAllOpenOrders.js index f8af095..dbb6097 100644 --- a/examples/apidoc/USDMClient/getAllOpenOrders.js +++ b/examples/apidoc/USDMClient/getAllOpenOrders.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/openOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L406 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getAllOrders.js b/examples/apidoc/USDMClient/getAllOrders.js index 8fff29d..863a67b 100644 --- a/examples/apidoc/USDMClient/getAllOrders.js +++ b/examples/apidoc/USDMClient/getAllOrders.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/allOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L402 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getApiQuantitativeRulesIndicators.js b/examples/apidoc/USDMClient/getApiQuantitativeRulesIndicators.js index f958d9b..31679b9 100644 --- a/examples/apidoc/USDMClient/getApiQuantitativeRulesIndicators.js +++ b/examples/apidoc/USDMClient/getApiQuantitativeRulesIndicators.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/apiTradingStatus // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L539 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getBNBBurnStatus.js b/examples/apidoc/USDMClient/getBNBBurnStatus.js index ac92a54..30d602b 100644 --- a/examples/apidoc/USDMClient/getBNBBurnStatus.js +++ b/examples/apidoc/USDMClient/getBNBBurnStatus.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/feeBurn // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L590 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getBalance.js b/examples/apidoc/USDMClient/getBalance.js index 5a41f00..2ddb0aa 100644 --- a/examples/apidoc/USDMClient/getBalance.js +++ b/examples/apidoc/USDMClient/getBalance.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v2/balance // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L484 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getBalanceV3.js b/examples/apidoc/USDMClient/getBalanceV3.js index a79c46e..0d91855 100644 --- a/examples/apidoc/USDMClient/getBalanceV3.js +++ b/examples/apidoc/USDMClient/getBalanceV3.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v3/balance // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L476 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getBasis.js b/examples/apidoc/USDMClient/getBasis.js index 8a71fec..fa9d179 100644 --- a/examples/apidoc/USDMClient/getBasis.js +++ b/examples/apidoc/USDMClient/getBasis.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: futures/data/basis // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L295 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getBrokerClientCustomIds.js b/examples/apidoc/USDMClient/getBrokerClientCustomIds.js index 1bea230..3e19679 100644 --- a/examples/apidoc/USDMClient/getBrokerClientCustomIds.js +++ b/examples/apidoc/USDMClient/getBrokerClientCustomIds.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/apiReferral/customization // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L682 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getBrokerIfNewFuturesUser.js b/examples/apidoc/USDMClient/getBrokerIfNewFuturesUser.js index e17f019..5a4bd87 100644 --- a/examples/apidoc/USDMClient/getBrokerIfNewFuturesUser.js +++ b/examples/apidoc/USDMClient/getBrokerIfNewFuturesUser.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/apiReferral/ifNewUser // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L658 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getBrokerRebateDataOverview.js b/examples/apidoc/USDMClient/getBrokerRebateDataOverview.js index c7c07d7..9923d58 100644 --- a/examples/apidoc/USDMClient/getBrokerRebateDataOverview.js +++ b/examples/apidoc/USDMClient/getBrokerRebateDataOverview.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/apiReferral/overview // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L706 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getBrokerRebateVolume.js b/examples/apidoc/USDMClient/getBrokerRebateVolume.js index 379fa7d..db9f672 100644 --- a/examples/apidoc/USDMClient/getBrokerRebateVolume.js +++ b/examples/apidoc/USDMClient/getBrokerRebateVolume.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/apiReferral/rebateVol // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L730 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getBrokerTradeDetail.js b/examples/apidoc/USDMClient/getBrokerTradeDetail.js index a3d854c..924e940 100644 --- a/examples/apidoc/USDMClient/getBrokerTradeDetail.js +++ b/examples/apidoc/USDMClient/getBrokerTradeDetail.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/apiReferral/traderSummary // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L746 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getBrokerUserCustomId.js b/examples/apidoc/USDMClient/getBrokerUserCustomId.js index 59e9996..9ef0b2c 100644 --- a/examples/apidoc/USDMClient/getBrokerUserCustomId.js +++ b/examples/apidoc/USDMClient/getBrokerUserCustomId.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/apiReferral/userCustomization // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L698 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getBrokerUserTradeVolume.js b/examples/apidoc/USDMClient/getBrokerUserTradeVolume.js index 5e75a48..ede90b1 100644 --- a/examples/apidoc/USDMClient/getBrokerUserTradeVolume.js +++ b/examples/apidoc/USDMClient/getBrokerUserTradeVolume.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/apiReferral/tradeVol // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L714 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getCompositeSymbolIndex.js b/examples/apidoc/USDMClient/getCompositeSymbolIndex.js index c99537a..f45b942 100644 --- a/examples/apidoc/USDMClient/getCompositeSymbolIndex.js +++ b/examples/apidoc/USDMClient/getCompositeSymbolIndex.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/indexInfo // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L284 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getContinuousContractKlines.js b/examples/apidoc/USDMClient/getContinuousContractKlines.js index a633c86..23ca5b8 100644 --- a/examples/apidoc/USDMClient/getContinuousContractKlines.js +++ b/examples/apidoc/USDMClient/getContinuousContractKlines.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/continuousKlines // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L162 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getConvertOrderStatus.js b/examples/apidoc/USDMClient/getConvertOrderStatus.js index 112eb30..40d0b69 100644 --- a/examples/apidoc/USDMClient/getConvertOrderStatus.js +++ b/examples/apidoc/USDMClient/getConvertOrderStatus.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/convert/orderStatus // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L628 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getCurrentOpenOrder.js b/examples/apidoc/USDMClient/getCurrentOpenOrder.js index 7229902..9aa8aa7 100644 --- a/examples/apidoc/USDMClient/getCurrentOpenOrder.js +++ b/examples/apidoc/USDMClient/getCurrentOpenOrder.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/openOrder // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L410 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getCurrentPositionMode.js b/examples/apidoc/USDMClient/getCurrentPositionMode.js index e766315..f1ee8ff 100644 --- a/examples/apidoc/USDMClient/getCurrentPositionMode.js +++ b/examples/apidoc/USDMClient/getCurrentPositionMode.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/positionSide/dual // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L531 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getExchangeInfo.js b/examples/apidoc/USDMClient/getExchangeInfo.js index c0993e0..74ab10f 100644 --- a/examples/apidoc/USDMClient/getExchangeInfo.js +++ b/examples/apidoc/USDMClient/getExchangeInfo.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/exchangeInfo // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L134 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getForceOrders.js b/examples/apidoc/USDMClient/getForceOrders.js index 5916a1d..f392a93 100644 --- a/examples/apidoc/USDMClient/getForceOrders.js +++ b/examples/apidoc/USDMClient/getForceOrders.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/forceOrders // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L414 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getFundingRateHistory.js b/examples/apidoc/USDMClient/getFundingRateHistory.js index df2f163..c2e2233 100644 --- a/examples/apidoc/USDMClient/getFundingRateHistory.js +++ b/examples/apidoc/USDMClient/getFundingRateHistory.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/fundingRate // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L189 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getFundingRates.js b/examples/apidoc/USDMClient/getFundingRates.js index d64ee52..8e8aa9e 100644 --- a/examples/apidoc/USDMClient/getFundingRates.js +++ b/examples/apidoc/USDMClient/getFundingRates.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/fundingInfo // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L195 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getFuturesAccountConfig.js b/examples/apidoc/USDMClient/getFuturesAccountConfig.js index 5bc3862..570b0b8 100644 --- a/examples/apidoc/USDMClient/getFuturesAccountConfig.js +++ b/examples/apidoc/USDMClient/getFuturesAccountConfig.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/accountConfig // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L506 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getFuturesOrderHistoryDownloadId.js b/examples/apidoc/USDMClient/getFuturesOrderHistoryDownloadId.js index 43d6736..6c8293b 100644 --- a/examples/apidoc/USDMClient/getFuturesOrderHistoryDownloadId.js +++ b/examples/apidoc/USDMClient/getFuturesOrderHistoryDownloadId.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/order/asyn // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L558 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getFuturesOrderHistoryDownloadLink.js b/examples/apidoc/USDMClient/getFuturesOrderHistoryDownloadLink.js index bf19702..b6ac402 100644 --- a/examples/apidoc/USDMClient/getFuturesOrderHistoryDownloadLink.js +++ b/examples/apidoc/USDMClient/getFuturesOrderHistoryDownloadLink.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/order/asyn/id // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L565 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getFuturesSymbolConfig.js b/examples/apidoc/USDMClient/getFuturesSymbolConfig.js index 1a63001..eb8344a 100644 --- a/examples/apidoc/USDMClient/getFuturesSymbolConfig.js +++ b/examples/apidoc/USDMClient/getFuturesSymbolConfig.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/symbolConfig // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L510 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getFuturesTradeDownloadLink.js b/examples/apidoc/USDMClient/getFuturesTradeDownloadLink.js index a50c539..e9be027 100644 --- a/examples/apidoc/USDMClient/getFuturesTradeDownloadLink.js +++ b/examples/apidoc/USDMClient/getFuturesTradeDownloadLink.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/trade/asyn/id // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L578 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getFuturesTradeHistoryDownloadId.js b/examples/apidoc/USDMClient/getFuturesTradeHistoryDownloadId.js index 0aba75a..a218857 100644 --- a/examples/apidoc/USDMClient/getFuturesTradeHistoryDownloadId.js +++ b/examples/apidoc/USDMClient/getFuturesTradeHistoryDownloadId.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/trade/asyn // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L571 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getFuturesTransactionHistoryDownloadId.js b/examples/apidoc/USDMClient/getFuturesTransactionHistoryDownloadId.js index e92d3cb..5b908d4 100644 --- a/examples/apidoc/USDMClient/getFuturesTransactionHistoryDownloadId.js +++ b/examples/apidoc/USDMClient/getFuturesTransactionHistoryDownloadId.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/income/asyn // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L545 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getFuturesTransactionHistoryDownloadLink.js b/examples/apidoc/USDMClient/getFuturesTransactionHistoryDownloadLink.js index 7399111..e6d1dbd 100644 --- a/examples/apidoc/USDMClient/getFuturesTransactionHistoryDownloadLink.js +++ b/examples/apidoc/USDMClient/getFuturesTransactionHistoryDownloadLink.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/income/asyn/id // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L552 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getFuturesUserDataListenKey.js b/examples/apidoc/USDMClient/getFuturesUserDataListenKey.js index 40384c2..d047f48 100644 --- a/examples/apidoc/USDMClient/getFuturesUserDataListenKey.js +++ b/examples/apidoc/USDMClient/getFuturesUserDataListenKey.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/listenKey // METHOD: POST // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L768 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getGlobalLongShortAccountRatio.js b/examples/apidoc/USDMClient/getGlobalLongShortAccountRatio.js index c13890a..44dbbc2 100644 --- a/examples/apidoc/USDMClient/getGlobalLongShortAccountRatio.js +++ b/examples/apidoc/USDMClient/getGlobalLongShortAccountRatio.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: futures/data/globalLongShortAccountRatio // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L270 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getHistoricalBlvtNavKlines.js b/examples/apidoc/USDMClient/getHistoricalBlvtNavKlines.js index cf78df0..2ea5621 100644 --- a/examples/apidoc/USDMClient/getHistoricalBlvtNavKlines.js +++ b/examples/apidoc/USDMClient/getHistoricalBlvtNavKlines.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/lvtKlines // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L280 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getHistoricalTrades.js b/examples/apidoc/USDMClient/getHistoricalTrades.js index a2a7240..d24e5a7 100644 --- a/examples/apidoc/USDMClient/getHistoricalTrades.js +++ b/examples/apidoc/USDMClient/getHistoricalTrades.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/historicalTrades // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L146 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getIncomeHistory.js b/examples/apidoc/USDMClient/getIncomeHistory.js index 0f1aa61..2dc09e7 100644 --- a/examples/apidoc/USDMClient/getIncomeHistory.js +++ b/examples/apidoc/USDMClient/getIncomeHistory.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/income // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L535 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getIndexPriceConstituents.js b/examples/apidoc/USDMClient/getIndexPriceConstituents.js index 3c3128e..d264cd7 100644 --- a/examples/apidoc/USDMClient/getIndexPriceConstituents.js +++ b/examples/apidoc/USDMClient/getIndexPriceConstituents.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/constituents // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L302 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getIndexPriceKlines.js b/examples/apidoc/USDMClient/getIndexPriceKlines.js index 723c75b..541b2a0 100644 --- a/examples/apidoc/USDMClient/getIndexPriceKlines.js +++ b/examples/apidoc/USDMClient/getIndexPriceKlines.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/indexPriceKlines // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L168 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getKlines.js b/examples/apidoc/USDMClient/getKlines.js index dcb695f..bc4b23c 100644 --- a/examples/apidoc/USDMClient/getKlines.js +++ b/examples/apidoc/USDMClient/getKlines.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/klines // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L158 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getMarkPrice.js b/examples/apidoc/USDMClient/getMarkPrice.js index 37fa3f1..ac49050 100644 --- a/examples/apidoc/USDMClient/getMarkPrice.js +++ b/examples/apidoc/USDMClient/getMarkPrice.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/premiumIndex // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L183 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getMarkPriceKlines.js b/examples/apidoc/USDMClient/getMarkPriceKlines.js index d2a1a4b..886b56e 100644 --- a/examples/apidoc/USDMClient/getMarkPriceKlines.js +++ b/examples/apidoc/USDMClient/getMarkPriceKlines.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/markPriceKlines // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L172 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getMultiAssetsMode.js b/examples/apidoc/USDMClient/getMultiAssetsMode.js index 5666186..f39d79e 100644 --- a/examples/apidoc/USDMClient/getMultiAssetsMode.js +++ b/examples/apidoc/USDMClient/getMultiAssetsMode.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/multiAssetsMargin // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L527 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getMultiAssetsModeAssetIndex.js b/examples/apidoc/USDMClient/getMultiAssetsModeAssetIndex.js index 7d1d2c2..d4e0092 100644 --- a/examples/apidoc/USDMClient/getMultiAssetsModeAssetIndex.js +++ b/examples/apidoc/USDMClient/getMultiAssetsModeAssetIndex.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/assetIndex // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L288 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getNotionalAndLeverageBrackets.js b/examples/apidoc/USDMClient/getNotionalAndLeverageBrackets.js index 2b3a18c..c2289d7 100644 --- a/examples/apidoc/USDMClient/getNotionalAndLeverageBrackets.js +++ b/examples/apidoc/USDMClient/getNotionalAndLeverageBrackets.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/leverageBracket // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L521 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getOpenInterest.js b/examples/apidoc/USDMClient/getOpenInterest.js index 458e990..303bb2a 100644 --- a/examples/apidoc/USDMClient/getOpenInterest.js +++ b/examples/apidoc/USDMClient/getOpenInterest.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/openInterest // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L248 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getOpenInterestStatistics.js b/examples/apidoc/USDMClient/getOpenInterestStatistics.js index 2d8ebfc..17404ce 100644 --- a/examples/apidoc/USDMClient/getOpenInterestStatistics.js +++ b/examples/apidoc/USDMClient/getOpenInterestStatistics.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: futures/data/openInterestHist // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L252 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getOrder.js b/examples/apidoc/USDMClient/getOrder.js index a32d835..eaeb43b 100644 --- a/examples/apidoc/USDMClient/getOrder.js +++ b/examples/apidoc/USDMClient/getOrder.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/order // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L398 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getOrderBook.js b/examples/apidoc/USDMClient/getOrderBook.js index 71e9716..6e4e77a 100644 --- a/examples/apidoc/USDMClient/getOrderBook.js +++ b/examples/apidoc/USDMClient/getOrderBook.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/depth // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L138 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getOrderModifyHistory.js b/examples/apidoc/USDMClient/getOrderModifyHistory.js index ed07de1..b8ff859 100644 --- a/examples/apidoc/USDMClient/getOrderModifyHistory.js +++ b/examples/apidoc/USDMClient/getOrderModifyHistory.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/orderAmendment // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L355 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getPortfolioMarginProAccountInfo.js b/examples/apidoc/USDMClient/getPortfolioMarginProAccountInfo.js index fec53d0..ed9f058 100644 --- a/examples/apidoc/USDMClient/getPortfolioMarginProAccountInfo.js +++ b/examples/apidoc/USDMClient/getPortfolioMarginProAccountInfo.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/pmAccountInfo // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L641 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getPositionMarginChangeHistory.js b/examples/apidoc/USDMClient/getPositionMarginChangeHistory.js index adb5b44..63ff26a 100644 --- a/examples/apidoc/USDMClient/getPositionMarginChangeHistory.js +++ b/examples/apidoc/USDMClient/getPositionMarginChangeHistory.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/positionMargin/history // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L464 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getPositions.js b/examples/apidoc/USDMClient/getPositions.js index cd8173c..f159b44 100644 --- a/examples/apidoc/USDMClient/getPositions.js +++ b/examples/apidoc/USDMClient/getPositions.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v2/positionRisk // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L452 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getPositionsV3.js b/examples/apidoc/USDMClient/getPositionsV3.js index ee33107..d21d8d9 100644 --- a/examples/apidoc/USDMClient/getPositionsV3.js +++ b/examples/apidoc/USDMClient/getPositionsV3.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v3/positionRisk // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L456 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getPremiumIndexKlines.js b/examples/apidoc/USDMClient/getPremiumIndexKlines.js index 2c482b5..c2808c9 100644 --- a/examples/apidoc/USDMClient/getPremiumIndexKlines.js +++ b/examples/apidoc/USDMClient/getPremiumIndexKlines.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/premiumIndexKlines // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L176 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getQuarterlyContractSettlementPrices.js b/examples/apidoc/USDMClient/getQuarterlyContractSettlementPrices.js index 8123658..9ce846e 100644 --- a/examples/apidoc/USDMClient/getQuarterlyContractSettlementPrices.js +++ b/examples/apidoc/USDMClient/getQuarterlyContractSettlementPrices.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: futures/data/delivery-price // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L242 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getRecentTrades.js b/examples/apidoc/USDMClient/getRecentTrades.js index f650c68..06d9f36 100644 --- a/examples/apidoc/USDMClient/getRecentTrades.js +++ b/examples/apidoc/USDMClient/getRecentTrades.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/trades // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L142 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getSymbolOrderBookTicker.js b/examples/apidoc/USDMClient/getSymbolOrderBookTicker.js index 25f4843..59bb0c3 100644 --- a/examples/apidoc/USDMClient/getSymbolOrderBookTicker.js +++ b/examples/apidoc/USDMClient/getSymbolOrderBookTicker.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/ticker/bookTicker // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L236 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getSymbolPriceTicker.js b/examples/apidoc/USDMClient/getSymbolPriceTicker.js index 157d20f..bda33f0 100644 --- a/examples/apidoc/USDMClient/getSymbolPriceTicker.js +++ b/examples/apidoc/USDMClient/getSymbolPriceTicker.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/ticker/price // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L224 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getSymbolPriceTickerV2.js b/examples/apidoc/USDMClient/getSymbolPriceTickerV2.js index 7db218c..f521af8 100644 --- a/examples/apidoc/USDMClient/getSymbolPriceTickerV2.js +++ b/examples/apidoc/USDMClient/getSymbolPriceTickerV2.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v2/ticker/price // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L230 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getTakerBuySellVolume.js b/examples/apidoc/USDMClient/getTakerBuySellVolume.js index 5be4ab2..b2673b3 100644 --- a/examples/apidoc/USDMClient/getTakerBuySellVolume.js +++ b/examples/apidoc/USDMClient/getTakerBuySellVolume.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: futures/data/takerlongshortRatio // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L276 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getTopTradersLongShortAccountRatio.js b/examples/apidoc/USDMClient/getTopTradersLongShortAccountRatio.js index 240f0f4..065ed5b 100644 --- a/examples/apidoc/USDMClient/getTopTradersLongShortAccountRatio.js +++ b/examples/apidoc/USDMClient/getTopTradersLongShortAccountRatio.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: futures/data/topLongShortAccountRatio // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L264 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getTopTradersLongShortPositionRatio.js b/examples/apidoc/USDMClient/getTopTradersLongShortPositionRatio.js index 3b09dcf..58b42bc 100644 --- a/examples/apidoc/USDMClient/getTopTradersLongShortPositionRatio.js +++ b/examples/apidoc/USDMClient/getTopTradersLongShortPositionRatio.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: futures/data/topLongShortPositionRatio // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L258 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/getUserForceOrders.js b/examples/apidoc/USDMClient/getUserForceOrders.js index 095f273..2f5c904 100644 --- a/examples/apidoc/USDMClient/getUserForceOrders.js +++ b/examples/apidoc/USDMClient/getUserForceOrders.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/rateLimit/order // METHOD: GET // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L514 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/keepAliveFuturesUserDataListenKey.js b/examples/apidoc/USDMClient/keepAliveFuturesUserDataListenKey.js index 07bc402..02a0c47 100644 --- a/examples/apidoc/USDMClient/keepAliveFuturesUserDataListenKey.js +++ b/examples/apidoc/USDMClient/keepAliveFuturesUserDataListenKey.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/listenKey // METHOD: PUT // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L772 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/modifyMultipleOrders.js b/examples/apidoc/USDMClient/modifyMultipleOrders.js index f1e6993..2f31003 100644 --- a/examples/apidoc/USDMClient/modifyMultipleOrders.js +++ b/examples/apidoc/USDMClient/modifyMultipleOrders.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/batchOrders // METHOD: PUT // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L347 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/modifyOrder.js b/examples/apidoc/USDMClient/modifyOrder.js index 692ebee..49bf68a 100644 --- a/examples/apidoc/USDMClient/modifyOrder.js +++ b/examples/apidoc/USDMClient/modifyOrder.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/order // METHOD: PUT // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L341 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/setBNBBurnEnabled.js b/examples/apidoc/USDMClient/setBNBBurnEnabled.js index 2ccae4c..e063405 100644 --- a/examples/apidoc/USDMClient/setBNBBurnEnabled.js +++ b/examples/apidoc/USDMClient/setBNBBurnEnabled.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/feeBurn // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L584 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/setBrokerCustomIdForClient.js b/examples/apidoc/USDMClient/setBrokerCustomIdForClient.js index 46c3fd6..d24463a 100644 --- a/examples/apidoc/USDMClient/setBrokerCustomIdForClient.js +++ b/examples/apidoc/USDMClient/setBrokerCustomIdForClient.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/apiReferral/customization // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L670 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/setCancelOrdersOnTimeout.js b/examples/apidoc/USDMClient/setCancelOrdersOnTimeout.js index a622c37..79fcb59 100644 --- a/examples/apidoc/USDMClient/setCancelOrdersOnTimeout.js +++ b/examples/apidoc/USDMClient/setCancelOrdersOnTimeout.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/countdownCancelAll // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L392 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/setIsolatedPositionMargin.js b/examples/apidoc/USDMClient/setIsolatedPositionMargin.js index f515df8..955763f 100644 --- a/examples/apidoc/USDMClient/setIsolatedPositionMargin.js +++ b/examples/apidoc/USDMClient/setIsolatedPositionMargin.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/positionMargin // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L442 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/setLeverage.js b/examples/apidoc/USDMClient/setLeverage.js index 884df32..279fda8 100644 --- a/examples/apidoc/USDMClient/setLeverage.js +++ b/examples/apidoc/USDMClient/setLeverage.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/leverage // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L432 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/setMarginType.js b/examples/apidoc/USDMClient/setMarginType.js index 39ea4df..058b1cb 100644 --- a/examples/apidoc/USDMClient/setMarginType.js +++ b/examples/apidoc/USDMClient/setMarginType.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/marginType // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L424 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/setMultiAssetsMode.js b/examples/apidoc/USDMClient/setMultiAssetsMode.js index a74b239..372b0c2 100644 --- a/examples/apidoc/USDMClient/setMultiAssetsMode.js +++ b/examples/apidoc/USDMClient/setMultiAssetsMode.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/multiAssetsMargin // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L436 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/setPositionMode.js b/examples/apidoc/USDMClient/setPositionMode.js index 855315f..ef5c8e0 100644 --- a/examples/apidoc/USDMClient/setPositionMode.js +++ b/examples/apidoc/USDMClient/setPositionMode.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/positionSide/dual // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L428 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/submitConvertQuoteRequest.js b/examples/apidoc/USDMClient/submitConvertQuoteRequest.js index fc3c6c0..306dd0f 100644 --- a/examples/apidoc/USDMClient/submitConvertQuoteRequest.js +++ b/examples/apidoc/USDMClient/submitConvertQuoteRequest.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/convert/getQuote // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L614 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/submitMultipleOrders.js b/examples/apidoc/USDMClient/submitMultipleOrders.js index 1d236d8..a750011 100644 --- a/examples/apidoc/USDMClient/submitMultipleOrders.js +++ b/examples/apidoc/USDMClient/submitMultipleOrders.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/batchOrders // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L324 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/submitNewOrder.js b/examples/apidoc/USDMClient/submitNewOrder.js index 3d3fd2f..9e81481 100644 --- a/examples/apidoc/USDMClient/submitNewOrder.js +++ b/examples/apidoc/USDMClient/submitNewOrder.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/order // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L314 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/testConnectivity.js b/examples/apidoc/USDMClient/testConnectivity.js index 222946d..2499cd4 100644 --- a/examples/apidoc/USDMClient/testConnectivity.js +++ b/examples/apidoc/USDMClient/testConnectivity.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/ping // METHOD: GET // PUBLIC: YES - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L130 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/examples/apidoc/USDMClient/testOrder.js b/examples/apidoc/USDMClient/testOrder.js index 302ffa2..6094bb8 100644 --- a/examples/apidoc/USDMClient/testOrder.js +++ b/examples/apidoc/USDMClient/testOrder.js @@ -5,7 +5,6 @@ const { USDMClient } = require('binance'); // ENDPOINT: fapi/v1/order/test // METHOD: POST // PUBLIC: NO - // Link to function: https://github.com/tiagosiebler/binance/blob/master/src/usdm-client.ts#L596 const client = new USDMClient({ apiKey: 'insert_api_key_here', diff --git a/package-lock.json b/package-lock.json index b8bd5a7..51904a2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "binance", - "version": "2.13.9", + "version": "2.13.10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "binance", - "version": "2.13.9", + "version": "2.13.10", "license": "MIT", "dependencies": { "axios": "^1.6.2", diff --git a/package.json b/package.json index 3317b29..0ea7170 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "binance", - "version": "2.13.9", + "version": "2.13.10", "description": "Node.js & JavaScript SDK for Binance REST APIs & WebSockets, with TypeScript & end-to-end tests.", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/src/main-client.ts b/src/main-client.ts index f3cf70d..9113515 100644 --- a/src/main-client.ts +++ b/src/main-client.ts @@ -552,6 +552,63 @@ export class MainClient extends BaseRestClient { return this; } + /** + * This method is used to get the latency and time sync between the client and the server. + * This is not official API endpoint and is only used for internal testing purposes. + * Use this method to check the latency and time sync between the client and the server. + * Final values might vary slightly, but it should be within few ms difference. + * If you have any suggestions or improvements to this measurement, please create an issue or pull request on GitHub. + */ +async fetchLatencySummary(): Promise { + const clientTimeReqStart = Date.now(); + const serverTime = await this.getServerTime(); + const clientTimeReqEnd = Date.now(); + console.log('serverTime', serverTime); + + const serverTimeMs = serverTime; + const roundTripTime = clientTimeReqEnd - clientTimeReqStart; + const estimatedOneWayLatency = Math.floor(roundTripTime / 2); + + // Adjust server time by adding estimated one-way latency + const adjustedServerTime = serverTimeMs + estimatedOneWayLatency; + + // Calculate time difference between adjusted server time and local time + const timeDifference = adjustedServerTime - clientTimeReqEnd; + + const result = { + localTime: clientTimeReqEnd, + serverTime: serverTimeMs, + roundTripTime, + estimatedOneWayLatency, + adjustedServerTime, + timeDifference, + }; + + console.log('Time synchronization results:'); + console.log(result); + + console.log( + `Your approximate latency to exchange server: + One way: ${estimatedOneWayLatency}ms. + Round trip: ${roundTripTime}ms. + `, + ); + + if (timeDifference > 500) { + console.warn( + `WARNING! Time difference between server and client clock is greater than 500ms. It is currently ${timeDifference}ms. + Consider adjusting your system clock to avoid unwanted clock sync errors! + Visit https://github.com/tiagosiebler/awesome-crypto-examples/wiki/Timestamp-for-this-request-is-outside-of-the-recvWindow for more information`, + ); + } else { + console.log( + `Time difference between server and client clock is within acceptable range of 500ms. It is currently ${timeDifference}ms.`, + ); + } + + return result; +} + /** * Abstraction required by each client to aid with time sync / drift handling */