Polygon Events Emitted
Polygon events emitted table contains the information for the Polygon events, it is extracted from the Polygon blockchain and there are some notable features:
- All event inputs are decoded and stored in a fully queryable JSON column called
event_inputs
- Flipside's labels have been merged in.
- Every contract has an associated name that corresponds 1:1 with the solidity contract code.
polygon.events_emitted
Field | Type | Description |
block_id | number | The block height this event was recorded at. |
block_timestamp | timestamp | UTC block timestamp for parent block |
tx_id | string | Transaction hash |
event_index | string | The index/order of the event in the transaction |
event_inputs | json | Decoded event inputs (specifically topics/data are decoded) |
event_name | string | English decoded name for the event name. This could be a transfer, or any decoded log method or log event name |
event_removed | boolean | Whether the event get removed or not |
tx_from_address | address | The initiator of the transaction. |
tx_from_address_name | string | |
tx_from_label | string | |
tx_from_label_subtype | string | |
tx_from_label_type | string | |
tx_to_address | address | The receiver of the transaction or initial contract being called |
tx_to_address_name | string | |
tx_to_label | string | |
tx_to_label_subtype | string | |
tx_to_label_type | string | |
contract_address | address | The parent contract that is responsible for kicking off this event. |
contract_name | string | The name of this contract. |
tx_succeeded | boolean | Was this transaction successful? |
Last modified 8mo ago