Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.superbots.finance/llms.txt

Use this file to discover all available pages before exploring further.

The Tracker page gives you a complete record of every deposit and withdrawal your wallet has made across all vaults. Each transaction is sorted by date so the most recent activity appears first, and each row links directly to the on-chain transaction on BscScan so you can verify it independently.

Deposit and withdrawal history

The Deposit / Withdrawals table is the primary view on the Tracker page. It loads automatically when you open the page and shows every transaction your connected account has recorded. Each row in the table includes the following columns:
ColumnDescription
Tx IDThe on-chain transaction hash, linked to BscScan
TypeEither deposit or withdraw
FromYour wallet address (account)
ToThe vault ID the funds were sent to or retrieved from
AmountThe token amount and currency (e.g. 1.50 USDT)
DateThe timestamp the transaction was recorded
Rows are sorted newest-first based on the createdAt field.
The Tracker page fetches your deposit and withdrawal records separately via GET /vaults/deposit and GET /vaults/withdraw, then merges and sorts them into a single view.

Finding a specific transaction

1

Connect your wallet

Make sure your Web3 wallet is connected. The Tracker only shows records associated with your current account address.
2

Navigate to the Tracker page

Open the Tracker section from the main navigation. The table loads automatically once your account is detected.
3

Browse or verify a transaction

Click the truncated Tx ID in any row to open that transaction directly on BscScan and confirm the on-chain details.

Last Trades table (developer mode)

A second table, Last Trades, is available on the Tracker page but is only visible when developer mode is enabled. It shows trade-level history for all vaults and includes the following columns:
ColumnDescription
TradeA generated label combining the trade signal, index, and chain
Entry PriceThe price at which the position was opened
Close PriceThe price at which the position was closed (or N/A if still open)
Profit %Calculated profit percentage based on entry and close prices
Open DateThe date the position was opened, linked to the opening transaction on BscScan
Close DateThe date the position was closed, or “Open” if the trade is still active
The Last Trades table fetches data from GET /vaults/trades-history-all. It is hidden for standard users and only rendered when developerMode is active.