Query chain events
query_eventsFetch Thru program events by event ID, account transaction history, or recent chain-wide activity. Supports pagination, limits, and optional raw payload inclusion.
Instructions
Query events emitted by Thru programs. Fetch one event by id, list an account's recent transaction history with its emitted events, or page through the most recent events chain-wide.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of events (or transactions) to return. | |
| account | No | Return recent transactions touching this account, with the events each one emitted. | |
| eventId | No | Fetch a single event by its id (format `<signature>:<slot>:<...>`). Takes precedence over listing. | |
| pageToken | No | Continuation token returned by a previous call. | |
| includePayload | No | Include each event's raw payload bytes as hex. |