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:
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: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.