> ## 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.

# axelar_v1_celo

> Tables in tt-contracts.axelar_v1_celo

## Tables

### GasService\_NativeGasPaidForContractCallWithToken\_event

Native gas payment events for cross-chain contract calls with token transfers on the Axelar network. Records gas fee amounts paid in native currency, along with source address, destination chain, token symbol, and payload hash for tracking cross-chain transaction costs.

<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_sourceAddress`      | `STRING`    | Address of the contract or account that initiated the cross-chain transaction on the source blockchain. Hex-encoded, 0x-prefixed, 42-character string.                                        |
  | `in_destinationChain`   | `STRING`    | Identifier of the blockchain network where the cross-chain transaction or message will be executed. String value representing the destination chain name in Axelar network naming convention. |
  | `in_destinationAddress` | `STRING`    | Address of the recipient contract or account on the destination blockchain. String format varies by blockchain type: hex-encoded for EVM chains, bech32 for Cosmos chains.                    |
  | `in_payloadHash`        | `STRING`    | Cryptographic hash of the payload data for a cross-chain message or contract call. 66-character hex string including 0x prefix.                                                               |
  | `in_symbol`             | `STRING`    | Symbol of the token involved in the transaction or event.                                                                                                                                     |
  | `in_amount`             | `STRING`    | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.                                                               |
  | `in_gasFeeAmount`       | `STRING`    | Amount of native gas token paid to cover cross-chain execution costs on the destination chain. Numeric string representation in smallest denomination.                                        |
  | `in_refundAddress`      | `STRING`    | Address that will receive any excess gas payment refunds from the cross-chain transaction. Hex-encoded, 0x-prefixed, 42-character string.                                                     |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_amount | in\_symbol | log\_index | block\_number | in\_payloadHash                                                    | block\_timestamp         | in\_gasFeeAmount   | in\_refundAddress                          | in\_sourceAddress                          | transaction\_hash                                                  | in\_destinationChain | in\_destinationAddress                                          |
  | ------------------------------------------ | ------- | ---------- | ---------- | ---------- | ------------- | ------------------------------------------------------------------ | ------------------------ | ------------------ | ------------------------------------------ | ------------------------------------------ | ------------------------------------------------------------------ | -------------------- | --------------------------------------------------------------- |
  | 0x2d5d7d31f671f86c782533cc367f14109a082712 | false   | 117000000  | axlUSDC    | 258        | 28510868      | 0x630bb4f2196eb828631b15989d6223842c0121f224e2b82b032905cad2d445f2 | 2024-10-29T18:31:40.000Z | 395345264287794912 | 0xd5a36e1575e0893b034448633699ce653932c1c6 | 0xce16f69375520ab01377ce7b88f5ba8c48f8d666 | 0x5a9787281d76205439912c86dece545d00fc5b0a113fac653f1d5e03aadbecc8 | base                 | 0xce16F69375520ab01377ce7B88f5BA8C48F8D666                      |
  | 0x2d5d7d31f671f86c782533cc367f14109a082712 | false   | 498949999  | axlUSDC    | 197        | 28506793      | 0x8de53054bfd9c2accfca2b09a2b012ffa7df5fe4ea4affe0cacc3a5198a4ca24 | 2024-10-29T12:51:56.000Z | 437686339054618088 | 0x6298511cbca6be3715f153adf5a3ee22b6766fe7 | 0xce16f69375520ab01377ce7b88f5ba8c48f8d666 | 0xa312ea091f5b2b4232818b8ec36c0453219dc97c2a5e0941cfd45ba7c9657054 | osmosis              | osmo17euyujmpe6ftwxcp2x50pn3yjdz7d3zh6u0ke5                     |
  | 0x2d5d7d31f671f86c782533cc367f14109a082712 | false   | 11650686   | axlUSDC    | 24         | 28507369      | 0x75eb581d78b67dc8587895decae5bccf13ee780089fcad46e6a66993c340efc2 | 2024-10-29T13:39:56.000Z | 428876152288422908 | 0x83b41d5af8ce4a3a5c43ab9a7b1f740d56cbccb5 | 0xce16f69375520ab01377ce7b88f5ba8c48f8d666 | 0x2c0893a0ebcf3398195ff8f0e0e0393538dde0d95a56ca864d85806c2ddb15a0 | osmosis              | osmo1n6ney9tsf55etz9nrmzyd8wa7e64qd3s06a74fqs30ka8pps6cvqtsycr6 |
</Accordion>

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

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

***

### Gateway\_ContractCall\_event

Cross-chain message initiation events emitted by Axelar Gateway contracts containing sender address, destination chain identifier, destination contract address, and encoded payload with cryptographic hash. Used for tracking interchain communication requests across Axelar-connected blockchains.

<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_sender`                     | `STRING`    | Address that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                      |
  | `in_destinationChain`           | `STRING`    | Identifier of the blockchain network where the cross-chain transaction or message will be executed. String value representing the destination chain name in Axelar network naming convention.            |
  | `in_destinationContractAddress` | `STRING`    | Contract address on the destination blockchain where the cross-chain message or token transfer will be executed. Hex-encoded, 0x-prefixed string.                                                        |
  | `in_payloadHash`                | `STRING`    | Cryptographic hash of the payload data for a cross-chain message or contract call. 66-character hex string including 0x prefix.                                                                          |
  | `in_payload`                    | `STRING`    | Encoded data transmitted in a cross-chain message or contract call. Hex-encoded, 0x-prefixed string containing function parameters, transaction instructions, or other application-specific information. |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_sender                                 | log\_index | in\_payload                                                                                                                                                                                                                                                                                                                                                                                        | block\_number | in\_payloadHash                                                    | block\_timestamp         | transaction\_hash                                                  | in\_destinationChain | in\_destinationContractAddress             |
  | ------------------------------------------ | ------- | ------------------------------------------ | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- | ------------------------------------------------------------------ | ------------------------ | ------------------------------------------------------------------ | -------------------- | ------------------------------------------ |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 0xdf3e980a175904a26a7ba627048a789ae6a141cd | 4          | 0x0f                                                                                                                                                                                                                                                                                                                                                                                               | 17514035      | 0x3d725c5ee53025f027da36bea8d3af3b6a3e9d2d1542d47c162631de48e66c1c | 2023-02-01T07:57:18.000Z | 0x45f8f6e3a5b900363f6501d06e68f9511c0485010b00c763ee0a2438ce0ea1e6 | polygon              | 0x6f015F16De9fC8791b234eF68D486d2bF203FBA8 |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 0x51c7cb6267a8c9b98053506360f43ea51f878579 | 5          | 0x567a198b0300663e67c9000079358880570886d4197e3702746c78c85578b8555ae62c9300000000000000000000000000000000000000000000000000000000000000000000000000000000aabd24aeb217e872f8a58968b550e2dc945388f20000000000000000000000000000000000000000000000055de6a779bbac0000000000000000000000000000ddc6df52f9749ed80966fb6a9d4c87264cc1e6c1                                                                 | 25538980      | 0x87169b9ce085a2653c229bab441f9668d8156fd629982df2a907941a71245749 | 2024-05-10T18:30:33.000Z | 0xd3cbd7f49cb038dba67e1517451dd168824c8b7813da8384cfce1fbce3cc4b32 | Moonbeam             | 0x11c4f2f7f64a7def84ff5841c14fb6863dfef7f9 |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 0x51c7cb6267a8c9b98053506360f43ea51f878579 | 5          | 0xec8d29f8040065bb258e0000ddc6df52f9749ed80966fb6a9d4c87264cc1e6c1655c433600000000000000000000000000000000000000000000000000000000000000000000000000000000d43799af9ff8397f89501c987f8b0754ed9fbaa2000000000000000000000000ddc6df52f9749ed80966fb6a9d4c87264cc1e6c10000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000008cc26dc425626000 | 23818745      | 0xf005c09f3e6476e8075fc843ce30f956d0eb8b36d385f67c539caa6411ab9111 | 2024-02-01T05:01:02.000Z | 0x5910c27b5411342ee680544de28e023448b3e3bf7d18b62a1c0803a6f06c1ae7 | Moonbeam             | 0x11c4f2f7f64a7def84ff5841c14fb6863dfef7f9 |
</Accordion>

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

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

***

### Gateway\_ContractCallApproved\_event

Axelar Gateway cross-chain contract call approval events emitted when a cross-chain message has been validated and authorized for execution on the destination blockchain. Contains command identifier, source chain metadata, destination contract address, and payload hash for tracking message flow across blockchain networks.

<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_commandId`        | `STRING`    | Unique identifier for the cross-chain command being executed or approved. 66-character hex string including 0x prefix.                                  |
  | `in_sourceChain`      | `STRING`    | Identifier of the blockchain network where the cross-chain transaction originated.                                                                      |
  | `in_sourceAddress`    | `STRING`    | Address of the contract or account that initiated the cross-chain transaction on the source blockchain. Hex-encoded, 0x-prefixed, 42-character string.  |
  | `in_contractAddress`  | `STRING`    | Contract address on the destination blockchain that is the target of the cross-chain call or deployment. Hex-encoded, 0x-prefixed, 42-character string. |
  | `in_payloadHash`      | `STRING`    | Cryptographic hash of the payload data for a cross-chain message or contract call. 66-character hex string including 0x prefix.                         |
  | `in_sourceTxHash`     | `STRING`    | Transaction hash of the cross-chain message on the source blockchain. 66-character hex string including 0x prefix.                                      |
  | `in_sourceEventIndex` | `STRING`    | Index of the event within the source blockchain transaction that initiated the cross-chain operation.                                                   |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_commandId                                                      | in\_payloadHash                                                    | in\_sourceChain | block\_timestamp         | in\_sourceTxHash                                                   | in\_sourceAddress                          | transaction\_hash                                                  | in\_contractAddress                        | in\_sourceEventIndex |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------------------------------------------------ | ------------------------------------------------------------------ | --------------- | ------------------------ | ------------------------------------------------------------------ | ------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------ | -------------------- |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 3          | 27246716      | 0xf660694abb4334a8a23c308b33f2f2bb60d3e35043b1fc4053a0bb5eb59af692 | 0x5f8219e095db2dac9877cad5bb1f071d746cd80ebb2865b9e346bd78255d00a9 | Moonbeam        | 2024-08-17T14:41:27.000Z | 0xbd642c53b7c2b9dc20dec314dfd3d7b5b90d0509d98ff5d44be9b2c5b73f7a14 | 0x11C4F2F7f64a7Def84FF5841C14FB6863dFeF7F9 | 0xb567a62574b92715a680a8fceafec9059503e17979e8f9e00cc596f1b00e0f19 | 0x51c7cb6267a8c9b98053506360f43ea51f878579 | 10                   |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 0          | 27247940      | 0x14c4c9abcf008d5cfec27dce1f3fc779b0799d45319b8046f8f5f8a69be48612 | 0x2e99f3d5b6490315e361485f00f6929a9c0982990f7d0a3695f2cbfe9a10fa25 | Moonbeam        | 2024-08-17T16:23:27.000Z | 0x8ac0ca1961f797d01fa88dfd5dee88c1bd4a7072242fe16b12dea537d6791404 | 0x11C4F2F7f64a7Def84FF5841C14FB6863dFeF7F9 | 0xc1dabb8e8768d1ea6b5f8c6459fae45a4d017c8844916e1d8c1d4ea15d6d8a92 | 0x51c7cb6267a8c9b98053506360f43ea51f878579 | 10                   |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 4          | 27247254      | 0xe481d399305ca040d87f13618d57e985f682d673b3bcfbae6bb7ee1d97dae691 | 0x515a4d27a2cfc97e6dfdc17498079807e42423a9139bd0175a3989df4ad2660f | Moonbeam        | 2024-08-17T15:26:17.000Z | 0x3c26ed0e133b828c3fb0eba868a24e68b79b285edf9fe224c9d5329e7cb6cfe7 | 0x11C4F2F7f64a7Def84FF5841C14FB6863dFeF7F9 | 0x93796db5ad92df28de48328d6a06c229bac1f4d2b5cdcca0d26de3e4eefdc5a3 | 0x51c7cb6267a8c9b98053506360f43ea51f878579 | 10                   |
</Accordion>

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

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

***

### Gateway\_ContractCallApprovedWithMint\_event

Axelar Gateway event recording approval of cross-chain contract calls with token minting. Contains command identifier, source chain details, destination contract address, token amount and symbol, and payload hash for cross-chain message execution tracking.

<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_commandId`        | `STRING`    | Unique identifier for the cross-chain command being executed or approved. 66-character hex string including 0x prefix.                                  |
  | `in_sourceChain`      | `STRING`    | Identifier of the blockchain network where the cross-chain transaction originated.                                                                      |
  | `in_sourceAddress`    | `STRING`    | Address of the contract or account that initiated the cross-chain transaction on the source blockchain. Hex-encoded, 0x-prefixed, 42-character string.  |
  | `in_contractAddress`  | `STRING`    | Contract address on the destination blockchain that is the target of the cross-chain call or deployment. Hex-encoded, 0x-prefixed, 42-character string. |
  | `in_payloadHash`      | `STRING`    | Cryptographic hash of the payload data for a cross-chain message or contract call. 66-character hex string including 0x prefix.                         |
  | `in_symbol`           | `STRING`    | Symbol of the token involved in the transaction or event.                                                                                               |
  | `in_amount`           | `STRING`    | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.                         |
  | `in_sourceTxHash`     | `STRING`    | Transaction hash of the cross-chain message on the source blockchain. 66-character hex string including 0x prefix.                                      |
  | `in_sourceEventIndex` | `STRING`    | Index of the event within the source blockchain transaction that initiated the cross-chain operation.                                                   |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_amount | in\_symbol | log\_index | block\_number | in\_commandId                                                      | in\_payloadHash                                                    | in\_sourceChain | block\_timestamp         | in\_sourceTxHash                                                   | in\_sourceAddress                          | transaction\_hash                                                  | in\_contractAddress                        | in\_sourceEventIndex |
  | ------------------------------------------ | ------- | ---------- | ---------- | ---------- | ------------- | ------------------------------------------------------------------ | ------------------------------------------------------------------ | --------------- | ------------------------ | ------------------------------------------------------------------ | ------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------ | -------------------- |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 2000080    | axlUSDC    | 18         | 22152611      | 0xa5bfb1bc5aa996261475492f1f0e01f4a96462941ae34b3d9519720dff4a0b57 | 0x6493f8a93b0bff590d5535bbe16ad7475a58af7847581ab80ad1dad510cbe928 | binance         | 2023-10-27T18:34:12.000Z | 0x2938f0af58aef2648aa985d594cc0407518dcee29cde6b11fba77f2a9cdee667 | 0xce16F69375520ab01377ce7B88f5BA8C48F8D666 | 0x618f5ec64927f0e3256b7bd37682c4dbf799c143ef0a8005cf721091aaf3f7b5 | 0xce16f69375520ab01377ce7b88f5ba8c48f8d666 | 10                   |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 35899184   | axlUSDC    | 54         | 22144006      | 0x6811d644526a8a268efb33db541b504082c0aad38be9d870b8ce2de0fde92cce | 0xde634d0fd84784a488e154543cd78c228ae0ba5e4a4679da9517eb36d2f926ee | arbitrum        | 2023-10-27T06:37:07.000Z | 0xe888c351b56ff37e2f7d926da6f630827a7b0cf59c1d7a23160dd4b4d2a38505 | 0xce16F69375520ab01377ce7B88f5BA8C48F8D666 | 0xfc442ed5bf9abd4f223217d07b813688351d0b225a09c6e3b9da31c001ab44e5 | 0xce16f69375520ab01377ce7b88f5ba8c48f8d666 | 11                   |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 44065465   | axlUSDC    | 10         | 22152142      | 0x479c440f6c029b3199ebc5830c58a2c9cc091ac03cb1702d58f6c4ee85da736a | 0xa6fb47c79c38c80fec28fb3f9acba9e24e05935acc482d2f4f044dc957ed336f | arbitrum        | 2023-10-27T17:55:07.000Z | 0x189ce3d0b729426d0be40b08b48a0fde4536165429dc871aafd465f96accadfd | 0xce16F69375520ab01377ce7B88f5BA8C48F8D666 | 0x2ec043e60184118d6dfce80c0e93bb43266eba47ba834575c98cb70cf6431ace | 0xce16f69375520ab01377ce7b88f5ba8c48f8d666 | 11                   |
</Accordion>

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

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

***

### Gateway\_ContractCallWithToken\_event

Cross-chain contract call events with token transfers initiated through Axelar Gateway contracts. Contains sender address, destination chain identifier, destination contract address, token symbol, transfer amount, and encoded payload data with its cryptographic hash for 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_sender`                     | `STRING`    | Address that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                      |
  | `in_destinationChain`           | `STRING`    | Identifier of the blockchain network where the cross-chain transaction or message will be executed. String value representing the destination chain name in Axelar network naming convention.            |
  | `in_destinationContractAddress` | `STRING`    | Contract address on the destination blockchain where the cross-chain message or token transfer will be executed. Hex-encoded, 0x-prefixed string.                                                        |
  | `in_payloadHash`                | `STRING`    | Cryptographic hash of the payload data for a cross-chain message or contract call. 66-character hex string including 0x prefix.                                                                          |
  | `in_payload`                    | `STRING`    | Encoded data transmitted in a cross-chain message or contract call. Hex-encoded, 0x-prefixed string containing function parameters, transaction instructions, or other application-specific information. |
  | `in_symbol`                     | `STRING`    | Symbol of the token involved in the transaction or event.                                                                                                                                                |
  | `in_amount`                     | `STRING`    | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.                                                                          |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_amount | in\_sender                                 | in\_symbol | log\_index | in\_payload                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | block\_number | in\_payloadHash                                                    | block\_timestamp         | transaction\_hash                                                  | in\_destinationChain | in\_destinationContractAddress             |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ---------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- | ------------------------------------------------------------------ | ------------------------ | ------------------------------------------------------------------ | -------------------- | ------------------------------------------ |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 952640715  | 0xce16f69375520ab01377ce7b88f5ba8c48f8d666 | axlUSDC    | 11         | 0x00000000000000000000000000000000000000000000000000000000000000400000000000000000000000003e7f0af67025337a1cb7680fd2d4dd4ebad85698000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000056000000000000000000000000000000000000000000000000000000000000006e000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f4052150000000000000000000000000000000000000000000000000000000000000001000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f405215000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000044095ea7b3000000000000000000000000f9c2b5746c946ef883ab2660bbbb1f10a5bdeab40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f40521500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f9c2b5746c946ef883ab2660bbbb1f10a5bdeab4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000104a8c9ed67000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f405215000000000000000000000000ff970a61a04b1ca14834a43f5de4533ebddb5cc800000000000000000000000000000000000000000000000000000000000000080000000000000000000000004fd39c9e151e50580779bd04b1f7ecc310079fd30000000000000000000000000000000000000000000000000000018af7ee6efc0000000000000000000000000000000000000000000000000000000038c824cb00000000000000000000000000000000000000000000000000000000388c0fc50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f40521500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ff970a61a04b1ca14834a43f5de4533ebddb5cc8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000044095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ff970a61a04b1ca14834a43f5de4533ebddb5cc80000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000ff970a61a04b1ca14834a43f5de4533ebddb5cc8000000000000000000000000fd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb900000000000000000000000000000000000000000000000000000000000000640000000000000000000000003e7f0af67025337a1cb7680fd2d4dd4ebad856980000000000000000000000000000000000000000000000000000000038c632ca00000000000000000000000000000000000000000000000000000000386becab0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ff970a61a04b1ca14834a43f5de4533ebddb5cc80000000000000000000000000000000000000000000000000000000000000004 | 21741430      | 0xe5ec67577d10ff3ac7a05c2b90b09c03a11ceed4f7f9553e16625747404fa669 | 2023-10-03T23:28:55.000Z | 0xde3488c2d6ce9f26694165eb49df73e7a8b9736d22dcfd41c5a601bbe3078ee4 | Arbitrum             | 0xce16F69375520ab01377ce7B88f5BA8C48F8D666 |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 6500000    | 0xce16f69375520ab01377ce7b88f5ba8c48f8d666 | axlUSDC    | 224        | 0x00000000000000000000000000000000000000000000000000000000000000400000000000000000000000003ee93ae774639be2e454b2c4f44d50f74dd0ac4200000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f4052150000000000000000000000000000000000000000000000000000000000000001000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f405215000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000044095ea7b300000000000000000000000074c764d41b77dbbb4fe771dab1939b00b146894a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f40521500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d9988b4b5bbc53a794240496cfa9bf5b1f8e0523000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000001449fa7449100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000632ea0000000000000000000000000000000000000000000000000000000000062f8c7000000000000000000000000863eed6056918258626b653065588105c54ff2ac000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f40521500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000060000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f4052150000000000000000000000003ee93ae774639be2e454b2c4f44d50f74dd0ac420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f4052150000000000000000000000000000000000000000000000000000000000000001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 | 21735659      | 0xbd82d39a33be3d6259274c077689024fb4b3f220efe97caf9feb0e6b9c6c1413 | 2023-10-03T15:28:00.000Z | 0x8ac31e652303108f20dd761abb58ba754c14a513b8b1f68a9f466e6205266a6a | Arbitrum             | 0xce16F69375520ab01377ce7B88f5BA8C48F8D666 |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 28137659   | 0xce16f69375520ab01377ce7b88f5ba8c48f8d666 | axlUSDC    | 32         | 0x00000000000000000000000000000000000000000000000000000000000000400000000000000000000000003ee93ae774639be2e454b2c4f44d50f74dd0ac4200000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f4052150000000000000000000000000000000000000000000000000000000000000001000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f405215000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000044095ea7b300000000000000000000000074c764d41b77dbbb4fe771dab1939b00b146894a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f40521500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d9988b4b5bbc53a794240496cfa9bf5b1f8e0523000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000001449fa7449100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000001ad58bb0000000000000000000000000000000000000000000000000000000001a6d5da000000000000000000000000863eed6056918258626b653065588105c54ff2ac000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f40521500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000060000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f4052150000000000000000000000003ee93ae774639be2e454b2c4f44d50f74dd0ac420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f4052150000000000000000000000000000000000000000000000000000000000000001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 | 21735678      | 0xf6be54458a5f26d330696489314ef95e2c091b165538fb9f2f1999345f399804 | 2023-10-03T15:29:35.000Z | 0x1e4f5714c28bba75c472ee44d450fc4cb1e4439aaa70d5872619cdeac4842ca5 | Arbitrum             | 0xce16F69375520ab01377ce7B88f5BA8C48F8D666 |
</Accordion>

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

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

***

### Gateway\_Executed\_event

Cross-chain gateway command execution events from Axelar Network. Records the successful execution of bridging commands with unique command identifiers used for tracking cross-chain message and asset transfers.

<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_commandId`     | `STRING`    | Unique identifier for the cross-chain command being executed or approved. 66-character hex string including 0x prefix.                               |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | log\_index | block\_number | in\_commandId                                                      | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ---------- | ------------- | ------------------------------------------------------------------ | ------------------------ | ------------------------------------------------------------------ |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 1          | 38704183      | 0x604a62647506ff84976e006c988128f70e35cfcda248034d0b5988c2ef1e0e2f | 2025-06-22T15:09:01.000Z | 0xd929a1e701dd75d0dd9e50f27e0bafb03aea614af65c51ef53a3637daf73499f |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 1          | 38712699      | 0x359f96e0d0aaed03bb0a53ffa1c99e8f4801ba7428ac3542adb55e2cb9d7e28d | 2025-06-22T17:30:57.000Z | 0x271c0f041ce7c40e817f505461178120eb721c0a38fadbcdfb922c70e8cfde56 |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 1          | 38705077      | 0x603cbdaaf601fb824305499461007568638c98f25ce30756300441ea24947a14 | 2025-06-22T15:23:55.000Z | 0x2127adfaf52a1f1105a6c981fb81db9d49fad9cc8840e9150429bbfd41e2d42d |
</Accordion>

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

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

***

### Gateway\_TokenDeployed\_event

Axelar Gateway event logs recording cross-chain token deployments with token symbol and contract address. Emitted when new token contracts are registered on the Axelar Gateway for cross-chain transfers.

<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_symbol`         | `STRING`    | Symbol of the token involved in the transaction or event.                                                                                            |
  | `in_tokenAddresses` | `STRING`    | Contract address of the deployed token. Hex-encoded, 0x-prefixed, 42-character string.                                                               |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_symbol | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_tokenAddresses                         |
  | ------------------------------------------ | ------- | ---------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | ------------------------------------------ |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | axlSAGA    | 2          | 26232044      | 2024-06-19T21:09:59.000Z | 0xe0e3c2f33eebc236156f505704dec29bade39c2afaa7df4b05e07aa227274b79 | 0x86e650048a20e0646d14e974d76109e16a0605d7 |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | axlREGEN   | 144        | 30377081      | 2025-02-14T18:51:39.000Z | 0x9750eaf7f52af3cccc33598715b4d510a624b7394ee9ac4f1ff132138a5b2194 | 0x2e6c05f1f7d1f4eb9a088bf12257f1647682b754 |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | wUSDM      | 12         | 22446655      | 2023-11-13T18:58:00.000Z | 0x09a4aaa1a7e4a3b5cbfeda2bf5f2de731ad6bc64d19be8cafbf65061402562b5 | 0xa2b9e3a4c575aa54224dd202f2739f596ea1ce7e |
</Accordion>

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

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

***

### Gateway\_TokenSent\_event

Cross-chain token transfer events emitted by Axelar Gateway contracts when tokens are sent from a source chain to a destination chain. Records sender address, token symbol, transfer amount, destination chain identifier, and recipient address for tracking asset flows across blockchain networks via the Axelar protocol.

<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_sender`             | `STRING`    | Address that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                                                           |
  | `in_destinationChain`   | `STRING`    | Identifier of the blockchain network where the cross-chain transaction or message will be executed. String value representing the destination chain name in Axelar network naming convention. |
  | `in_destinationAddress` | `STRING`    | Address of the recipient contract or account on the destination blockchain. String format varies by blockchain type: hex-encoded for EVM chains, bech32 for Cosmos chains.                    |
  | `in_symbol`             | `STRING`    | Symbol of the token involved in the transaction or event.                                                                                                                                     |
  | `in_amount`             | `STRING`    | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.                                                               |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_amount | in\_sender                                 | in\_symbol | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  | in\_destinationChain | in\_destinationAddress                      |
  | ------------------------------------------ | ------- | ---------- | ------------------------------------------ | ---------- | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ | -------------------- | ------------------------------------------- |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 44908202   | 0xce16f69375520ab01377ce7b88f5ba8c48f8d666 | axlUSDC    | 71         | 20886429      | 2023-08-15T11:56:51.000Z | 0x3ee26e3ab94d1e35e550ab47eb4ea5f1cbf790161a170b2273ea4336a12b769e | osmosis              | osmo12kg9uwug8g7v6ag00vynwdls5xa7f9x567yhwq |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 19508660   | 0xce16f69375520ab01377ce7b88f5ba8c48f8d666 | axlUSDC    | 11         | 19684042      | 2023-06-06T21:54:19.000Z | 0xdf910f1d659f5e98f15152c28c30ab9a24faf72dda0fdce9a06b1fca2ea8d388 | osmosis              | osmo1dmmxz23x3l2y72w8hsa9j8s8ws64rhz272n0gp |
  | 0xe432150cce91c13a887f7d836923d5597add8e31 | false   | 442601186  | 0xce16f69375520ab01377ce7b88f5ba8c48f8d666 | axlUSDC    | 70         | 20658162      | 2023-08-02T06:54:12.000Z | 0x6d106505b5020379d6a70b400cd5ce514b834380c44a3ec62b44b581eb95176e | osmosis              | osmo1lv7rgnk3znzrn5ckc5gs33sxzw44rch9ul8svf |
</Accordion>

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

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

***
