> ## Documentation Index
> Fetch the complete documentation index at: https://tokenterminal.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# hyperbridge_v1_unichain

> Tables in tt-contracts.hyperbridge_v1_unichain

## Tables

### TokenGateway\_AssetReceived\_event

Cross-chain asset receipt events emitted by TokenGateway contracts when assets are delivered to beneficiaries. Contains origin address, asset identifier, transferred amount, beneficiary address, and cryptographic commitment hash for cross-chain transaction verification.

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                          |
  | ------------------ | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_amount`        | `STRING`    | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.                      |
  | `in_commitment`    | `STRING`    | Cryptographic commitment hash for the cross-chain request or response. Hex-encoded, 0x-prefixed, 66-character string.                                |
  | `in_from`          | `STRING`    | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                        |
  | `in_beneficiary`   | `STRING`    | Address that receives the tokens, assets, or benefits from the operation. Hex-encoded, 0x-prefixed, 42-character string.                             |
  | `in_assetId`       | `STRING`    | Unique identifier for the asset or token involved in the operation. Hex-encoded, 0x-prefixed, 66-character string.                                   |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.hyperbridge_v1_unichain.TokenGateway_AssetReceived_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### TokenGateway\_AssetRegistered\_event

Token registration events emitted by the TokenGateway contract when assets are registered for cross-chain bridging. Records asset identifiers, token metadata (name, symbol), ERC-20 and ERC-6160 (Multi-Token Standard) contract addresses, initial supply, and beneficiary information for tracking registered assets across chains.

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                          |
  | ------------------ | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_erc20`         | `STRING`    | Contract address of the ERC20 token being redeemed or registered. Hex-encoded, 0x-prefixed, 42-character string or zero address for native tokens.   |
  | `in_erc6160`       | `STRING`    | Contract address of the ERC6160 multi-token implementation associated with the registered asset. Hex-encoded, 0x-prefixed, 42-character string.      |
  | `in_name`          | `STRING`    | Name or label identifier for the entity being created, registered, or updated in the event.                                                          |
  | `in_symbol`        | `STRING`    | Symbol of the token involved in the transaction or event.                                                                                            |
  | `in_assetId`       | `STRING`    | Unique identifier for the asset or token involved in the operation. Hex-encoded, 0x-prefixed, 66-character string.                                   |
  | `in_initialSupply` | `STRING`    | Initial token supply amount for the registered asset. String-encoded numeric value.                                                                  |
  | `in_beneficiary`   | `STRING`    | Address that receives the tokens, assets, or benefits from the operation. Hex-encoded, 0x-prefixed, 42-character string.                             |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.hyperbridge_v1_unichain.TokenGateway_AssetRegistered_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### TokenGateway\_AssetTeleported\_event

Cross-chain asset teleportation events emitted by Hyperbridge TokenGateway contracts. Records source address, destination chain identifier, asset ID, transfer amount, recipient address, and cryptographic commitment hash for tracking interoperability bridge operations.

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                                                          |
  | ------------------ | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain.                                 |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                                                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                                                         |
  | `in_to`            | `STRING`    | Destination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.                                                                      |
  | `in_dest`          | `STRING`    | Destination chain identifier for cross-chain operations. String format following the pattern "CHAINTYPE-CHAINID" (e.g., "EVM-56" for BSC, "POLKADOT-2030" for a Polkadot parachain). |
  | `in_amount`        | `STRING`    | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.                                                      |
  | `in_commitment`    | `STRING`    | Cryptographic commitment hash for the cross-chain request or response. Hex-encoded, 0x-prefixed, 66-character string.                                                                |
  | `in_from`          | `STRING`    | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                                                        |
  | `in_assetId`       | `STRING`    | Unique identifier for the asset or token involved in the operation. Hex-encoded, 0x-prefixed, 66-character string.                                                                   |
  | `in_redeem`        | `BOOL`      | Boolean flag indicating whether the cross-chain transfer is a redemption operation.                                                                                                  |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.hyperbridge_v1_unichain.TokenGateway_AssetTeleported_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### UnichainHost\_GetRequestEvent\_event

*No description available.*

<Accordion title="Columns">
  | Column                | Type            | Description                                                                                                                                                                                        |
  | --------------------- | --------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`     | `TIMESTAMP`     | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                                                                        |
  | `block_number`        | `INT64`         | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain.                                               |
  | `transaction_hash`    | `STRING`        | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                                                                |
  | `log_index`           | `INT64`         | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                                                                 |
  | `address`             | `STRING`        | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                            |
  | `removed`             | `BOOL`          | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                                                                       |
  | `in_source`           | `STRING`        | Source chain identifier for the cross-chain operation. String format following the pattern "CHAINTYPE-CHAINID" (e.g., "EVM-1" for Ethereum, "EVM-56" for BSC).                                     |
  | `in_dest`             | `STRING`        | Destination chain identifier for cross-chain operations. String format following the pattern "CHAINTYPE-CHAINID" (e.g., "EVM-56" for BSC, "POLKADOT-2030" for a Polkadot parachain).               |
  | `in_from`             | `STRING`        | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                      |
  | `in_keys`             | `ARRAY<STRING>` | Array of cryptographic keys or identifiers associated with the cross-chain request. Hex-encoded strings with 0x prefix.                                                                            |
  | `in_height`           | `STRING`        | Block height on the source chain at which the cross-chain request was initiated. Numeric string representation without leading zeros.                                                              |
  | `in_nonce`            | `STRING`        | Unique numeric identifier for an order, transaction, or operation used to prevent replay attacks. Numeric string representation without leading zeros.                                             |
  | `in_timeoutTimestamp` | `STRING`        | Timestamp after which a cross-chain request or operation expires. Unix timestamp in seconds represented as a numeric string, or '0' indicating no timeout.                                         |
  | `in_context`          | `STRING`        | Contextual data or metadata associated with the cross-chain request. Hex-encoded string with 0x prefix containing protocol-specific information about the request origin or execution environment. |
  | `in_fee`              | `STRING`        | Fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency.                                     |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.hyperbridge_v1_unichain.UnichainHost_GetRequestEvent_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### UnichainHost\_GetRequestHandled\_event

*No description available.*

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                          |
  | ------------------ | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_commitment`    | `STRING`    | Cryptographic commitment hash for the cross-chain request or response. Hex-encoded, 0x-prefixed, 66-character string.                                |
  | `in_relayer`       | `STRING`    | Address of the relayer executing the cross-chain transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                               |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.hyperbridge_v1_unichain.UnichainHost_GetRequestHandled_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### UnichainHost\_GetRequestTimeoutHandled\_event

*No description available.*

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                                                          |
  | ------------------ | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain.                                 |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                                                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                                                         |
  | `in_commitment`    | `STRING`    | Cryptographic commitment hash for the cross-chain request or response. Hex-encoded, 0x-prefixed, 66-character string.                                                                |
  | `in_dest`          | `STRING`    | Destination chain identifier for cross-chain operations. String format following the pattern "CHAINTYPE-CHAINID" (e.g., "EVM-56" for BSC, "POLKADOT-2030" for a Polkadot parachain). |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.hyperbridge_v1_unichain.UnichainHost_GetRequestTimeoutHandled_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### UnichainHost\_PostRequestEvent\_event

*No description available.*

<Accordion title="Columns">
  | Column                | Type        | Description                                                                                                                                                                          |
  | --------------------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | `block_timestamp`     | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                                                          |
  | `block_number`        | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain.                                 |
  | `transaction_hash`    | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                                                  |
  | `log_index`           | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                                                   |
  | `address`             | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `removed`             | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                                                         |
  | `in_source`           | `STRING`    | Source chain identifier for the cross-chain operation. String format following the pattern "CHAINTYPE-CHAINID" (e.g., "EVM-1" for Ethereum, "EVM-56" for BSC).                       |
  | `in_dest`             | `STRING`    | Destination chain identifier for cross-chain operations. String format following the pattern "CHAINTYPE-CHAINID" (e.g., "EVM-56" for BSC, "POLKADOT-2030" for a Polkadot parachain). |
  | `in_from`             | `STRING`    | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                                                        |
  | `in_to`               | `STRING`    | Destination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.                                                                      |
  | `in_nonce`            | `STRING`    | Unique numeric identifier for an order, transaction, or operation used to prevent replay attacks. Numeric string representation without leading zeros.                               |
  | `in_timeoutTimestamp` | `STRING`    | Timestamp after which a cross-chain request or operation expires. Unix timestamp in seconds represented as a numeric string, or '0' indicating no timeout.                           |
  | `in_body`             | `STRING`    | Payload data for the cross-chain request or response. Hex-encoded byte array with 0x prefix, may be empty (0x) when no payload is included.                                          |
  | `in_fee`              | `STRING`    | Fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency.                       |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.hyperbridge_v1_unichain.UnichainHost_PostRequestEvent_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### UnichainHost\_PostRequestHandled\_event

Event logs tracking cross-chain post request completions processed by Hyperbridge's UnichainHost contract on Unichain. Records relayer addresses and cryptographic commitments for each handled request, useful for analyzing cross-chain message delivery and relayer activity.

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                          |
  | ------------------ | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_commitment`    | `STRING`    | Cryptographic commitment hash for the cross-chain request or response. Hex-encoded, 0x-prefixed, 66-character string.                                |
  | `in_relayer`       | `STRING`    | Address of the relayer executing the cross-chain transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                               |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | in\_relayer                                | block\_number | in\_commitment                                                     | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ------------- | ------------------------------------------------------------------ | ------------------------ | ------------------------------------------------------------------ |
  | 0x2a17c1c3616bbc33fce5af5b965f166ba76cedaf | false   | 1          | 0xdb6d474a7e6ec8345bd99994eed6b6e766c3310b | 30229546      | 0x864100d0b6745477a9aba55c8d5475ebf0dcdd90ca90c92200b2a17ce3767cbe | 2025-10-20T16:31:45.000Z | 0x877b45c4e65b6576bffcb67b32efc5bef43e8987e64520dd25c7291c8be5535e |
  | 0x2a17c1c3616bbc33fce5af5b965f166ba76cedaf | false   | 5          | 0xdb6d474a7e6ec8345bd99994eed6b6e766c3310b | 30226144      | 0x327f97bb684ad8ee2fd91e319c93159cf7dc57a799135f1e953c31ac6c4876b1 | 2025-10-20T15:35:03.000Z | 0x6c5ddcc3676b43e3df33fc9e5a9c6d2e72597515d4f9b856ace7cc4c6de18c85 |
  | 0x2a17c1c3616bbc33fce5af5b965f166ba76cedaf | false   | 4          | 0xdb6d474a7e6ec8345bd99994eed6b6e766c3310b | 28613553      | 0xffd40643fe889f25071e3372735b574dc283ecfe209062e3d84b56ee565cd2aa | 2025-10-01T23:38:32.000Z | 0x639b6e6284df465c4a138951d5a27aa3b618bbcacd5823437942337679a6562e |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.hyperbridge_v1_unichain.UnichainHost_PostRequestHandled_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### UnichainHost\_PostRequestTimeoutHandled\_event

*No description available.*

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                                                          |
  | ------------------ | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain.                                 |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                                                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                                                         |
  | `in_commitment`    | `STRING`    | Cryptographic commitment hash for the cross-chain request or response. Hex-encoded, 0x-prefixed, 66-character string.                                                                |
  | `in_dest`          | `STRING`    | Destination chain identifier for cross-chain operations. String format following the pattern "CHAINTYPE-CHAINID" (e.g., "EVM-56" for BSC, "POLKADOT-2030" for a Polkadot parachain). |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.hyperbridge_v1_unichain.UnichainHost_PostRequestTimeoutHandled_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### UnichainHost\_PostResponseEvent\_event

*No description available.*

<Accordion title="Columns">
  | Column                        | Type        | Description                                                                                                                                                                          |
  | ----------------------------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | `block_timestamp`             | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                                                          |
  | `block_number`                | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain.                                 |
  | `transaction_hash`            | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                                                  |
  | `log_index`                   | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                                                   |
  | `address`                     | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `removed`                     | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                                                         |
  | `in_source`                   | `STRING`    | Source chain identifier for the cross-chain operation. String format following the pattern "CHAINTYPE-CHAINID" (e.g., "EVM-1" for Ethereum, "EVM-56" for BSC).                       |
  | `in_dest`                     | `STRING`    | Destination chain identifier for cross-chain operations. String format following the pattern "CHAINTYPE-CHAINID" (e.g., "EVM-56" for BSC, "POLKADOT-2030" for a Polkadot parachain). |
  | `in_from`                     | `STRING`    | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                                                        |
  | `in_to`                       | `STRING`    | Destination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.                                                                      |
  | `in_nonce`                    | `STRING`    | Unique numeric identifier for an order, transaction, or operation used to prevent replay attacks. Numeric string representation without leading zeros.                               |
  | `in_timeoutTimestamp`         | `STRING`    | Timestamp after which a cross-chain request or operation expires. Unix timestamp in seconds represented as a numeric string, or '0' indicating no timeout.                           |
  | `in_body`                     | `STRING`    | Payload data for the cross-chain request or response. Hex-encoded byte array with 0x prefix, may be empty (0x) when no payload is included.                                          |
  | `in_response`                 | `STRING`    | -                                                                                                                                                                                    |
  | `in_responseTimeoutTimestamp` | `STRING`    | -                                                                                                                                                                                    |
  | `in_fee`                      | `STRING`    | Fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency.                       |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.hyperbridge_v1_unichain.UnichainHost_PostResponseEvent_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### UnichainHost\_PostResponseHandled\_event

*No description available.*

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                          |
  | ------------------ | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain. |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `in_commitment`    | `STRING`    | Cryptographic commitment hash for the cross-chain request or response. Hex-encoded, 0x-prefixed, 66-character string.                                |
  | `in_relayer`       | `STRING`    | Address of the relayer executing the cross-chain transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                               |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.hyperbridge_v1_unichain.UnichainHost_PostResponseHandled_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### UnichainHost\_PostResponseTimeoutHandled\_event

*No description available.*

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                                                          |
  | ------------------ | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | `block_timestamp`  | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, millisecond precision.                                                                                                          |
  | `block_number`     | `INT64`     | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block's position in the blockchain.                                 |
  | `transaction_hash` | `STRING`    | Unique identifier for the transaction. 66-character hex string including 0x prefix.                                                                                                  |
  | `log_index`        | `INT64`     | Position of the event within the block's transaction logs. Zero-indexed integer representing the sequential order of log emission.                                                   |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                                                              |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                                                         |
  | `in_commitment`    | `STRING`    | Cryptographic commitment hash for the cross-chain request or response. Hex-encoded, 0x-prefixed, 66-character string.                                                                |
  | `in_dest`          | `STRING`    | Destination chain identifier for cross-chain operations. String format following the pattern "CHAINTYPE-CHAINID" (e.g., "EVM-56" for BSC, "POLKADOT-2030" for a Polkadot parachain). |
</Accordion>

<Accordion title="Sample Data">
  *No sample data available.*
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-contracts.hyperbridge_v1_unichain.UnichainHost_PostResponseTimeoutHandled_event`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***
