solana_getswapsbywalletaddress
Retrieve all swap transactions (buy, sell) for a specific Solana wallet address using network, date range, token address, and pagination filters.
Instructions
Get all swap related transactions (buy, sell) for a specific wallet address.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | The address to query | |
| cursor | No | The cursor to the next page | |
| fromDate | No | The starting date (format in seconds or datestring accepted by momentjs) | |
| limit | No | The limit per page | |
| network | Yes | The network to query | |
| order | No | The order of items | DESC |
| toDate | No | The ending date (format in seconds or datestring accepted by momentjs) | |
| tokenAddress | No | Token address to get transactions for | |
| transactionTypes | No | Transaction types to fetch. Possible values: 'buy','sell' or both separated by comma | buy,sell |