Event Tab
Last updated
Last updated
The Events Tab provides a detailed list of all blockchain events triggered by the smart contract. Events are crucial for understanding contract behavior, analyzing on-chain activity, and debugging issues. This tab helps users track and explore all emitted events in an organized table format.
FR 11.006a: Txn Hash A unique identifier for the transaction that triggered the event (e.g., 0x6b5...4c85). Clicking on the hash opens detailed information about the transaction, including its logs and execution details.
FR 11.006b: Block Displays the block number where the event was recorded (e.g., 187564434). This helps users trace the timeline of the event.
FR 11.006c: Age Shows the time that has passed since the block containing the event was mined (e.g., 1 min ago). This provides real-time context for event timing.
FR 11.006d: Method Indicates the specific function or method in the contract that generated the event (e.g., Approval). This helps users identify the purpose of the event.
FR 11.006e: Logs Offers detailed information about the event, broken into:
Topics: Indexed parameters of the event, such as the sender and recipient addresses or token amounts, which are used for quick filtering and identification.
Data: Additional non-indexed data associated with the event, providing deeper insights into its details.
Hex View: A raw hexadecimal representation of the log data, useful for developers conducting low-level debugging or technical analysis.