This page covers all Tokenization events that can trigger webhook notifications, and their associated data objects for the Webhooks v2 service.
To receive a specific event, include its eventType in the webhook's notification object.
| Parameter | Type | Description |
|---|
| baseAssetId | string | The AssetId of the blockchain's gas token. |
| blockHash | string | Hash of the block that contains the transaction emitting the log. |
| blockNumber | number | Height of the block that contains the transaction. |
| blockTimestamp | number | The time the block was mined, as indicated in the block header. |
| chainId | number | EVM chain identifier (as per EIP-155). |
| contractAddress | string | The address that emitted the log. |
| cumulativeGasUsed | string | Total gas used in the block up to and including this transaction. |
| decodedLogs | object | DecodedLog |
| effectiveGasPrice | string | Actual price paid per gas unit for this transaction. |
| from | string | Sender of the transaction. |
| gasUsed | integer | Gas consumed by this transaction. |
| logsBloom | string | Bloom filter summarizing addresses and topics for the transaction logs. |
| status | string | The status of the transaction (0x0 = failure, 0x1 = success). |
| to | string | The recipient of the transaction. |
| transactionHash | string | Hash that identifies the transaction. |
| transactionIndex | string | Zero-based index of the transaction within the block. |
| type | string | Transaction type tag (as per EIP-2718). |
| Parameter | Type | Description |
|---|
| address | string | The contract address emitting the event. |
| blockHash | string | Hash of the block that contains the transaction emitting the log. |
| blockNumber | string | Height of the block that contains the transaction. |
| transactionHash | string | Hash that identifies the transaction. |
| logIndex | string | The index of the log within the transaction. |
| key | string | The decoded name of the log parameter. |
| value | string | The value associated with the key. |