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

# worldlibertyfinancial_v1_ethereum

> Tables in tt-contracts.worldlibertyfinancial_v1_ethereum

## Tables

### USD1\_Burn\_event

USD1 token burn events from World Liberty Financial on Ethereum, recording when tokens are destroyed with caller address, source account, and burn amount in wei (18 decimals). Used for tracking token supply reduction and analyzing redemption or liquidation activity in the 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_caller`        | `STRING`    | Address that initiated or requested the contract function call. Hex-encoded, 0x-prefixed, 42-character string.                                       |
  | `in_from`          | `STRING`    | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.                                                        |
  | `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                                    | in\_from                                   | removed | in\_amount           | in\_caller                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | -------------------- | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d | 0xee9b1a09aedaced9dcda74964ea447feb93861c2 | false   | 3500000000000000000  | 0xee9b1a09aedaced9dcda74964ea447feb93861c2 | 264        | 22588022      | 2025-05-29T11:10:23.000Z | 0x46403de2f14baca639cfdc7343bb732cf2ecbc20c4d3cad5aff7904f8e14d861 |
  | 0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d | 0xee9b1a09aedaced9dcda74964ea447feb93861c2 | false   | 1000000000000000000  | 0xee9b1a09aedaced9dcda74964ea447feb93861c2 | 226        | 22590458      | 2025-05-29T19:22:35.000Z | 0x3cd46fa104a72734d92fef3a158fd271d4dceb78ef17c2e3b0a7fa7acbe59a88 |
  | 0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d | 0x295a858f0938bc8127fe24f8116722cf253b618e | false   | 10000000000000000000 | 0x295a858f0938bc8127fe24f8116722cf253b618e | 122        | 22022080      | 2025-03-11T07:16:35.000Z | 0xd75ad24947f45b9f9e1eb488c337fd37148b148bdf41c1e8e15d61ef4a19f6fb |
</Accordion>

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

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

***

### USD1\_Mint\_event

USD1 stablecoin minting events from World Liberty Financial on Ethereum, capturing token issuance with caller address, recipient, and minted amounts. Useful for tracking USD1 token supply creation and analyzing minting activity patterns.

<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_caller`        | `STRING`    | Address that initiated or requested the contract function call. 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_amount`        | `STRING`    | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.                      |
</Accordion>

<Accordion title="Sample Data">
  | in\_to                                     | address                                    | removed | in\_amount               | in\_caller                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------ | ------- | ------------------------ | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x295a858f0938bc8127fe24f8116722cf253b618e | 0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d | false   | 10000000000000000000     | 0x295a858f0938bc8127fe24f8116722cf253b618e | 71         | 22006734      | 2025-03-09T03:50:11.000Z | 0x0a49aa4b2855cf9432c02715d44cae0ab9edf93ca2a952b90c2dfb1cea5f7cb2 |
  | 0xee9b1a09aedaced9dcda74964ea447feb93861c2 | 0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d | false   | 20000000000000000        | 0xee9b1a09aedaced9dcda74964ea447feb93861c2 | 380        | 22501536      | 2025-05-17T08:21:59.000Z | 0xcbc6b1e1e14966421e9e55bb0b07bda03a17132466eb9e19784033587efcbd17 |
  | 0xee9b1a09aedaced9dcda74964ea447feb93861c2 | 0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d | false   | 129592610347576414305926 | 0xee9b1a09aedaced9dcda74964ea447feb93861c2 | 83         | 22500919      | 2025-05-17T06:17:23.000Z | 0x51aacd90c7700f795cd6e492cb4518b2381f5a3c03fd5c2765356eb1c9820596 |
</Accordion>

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

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

***
