aptos_get_events
Fetch emitted events from an Aptos module by specifying account address, event handle, and field name. Ideal for tracking on-chain activity like coin transfers or contract events.
Instructions
Get events emitted by a module
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max events to return | |
| address | Yes | The account address | |
| fieldName | Yes | The field name of the event handle | |
| eventHandle | Yes | The event handle struct (e.g., 0x1::coin::CoinStore<0x1::aptos_coin::AptosCoin>) |