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

# circle_v1_starknet

> Tables in tt-contracts.circle_v1_starknet

## Tables

### USDC\_Burn\_event

USDC token burn events emitted when tokens are permanently destroyed from circulation. Records the burner address and amount removed from total supply for Circle's USDC stablecoin across multiple 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.                   |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `signature`        | `STRING`    | Function selector identifying which contract function was called. 10-character hex string including 0x prefix.                                       |
  | `event_name`       | `STRING`    | Name of the blockchain event emitted by the contract. Human-readable string identifier indicating the specific action or state change that occurred. |
  | `in_burner`        | `STRING`    | Account address that burned the tokens. Hex-encoded string with 0x prefix.                                                                           |
  | `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\_burner                                                        | log\_index | signature                                                         | event\_name | block\_number | block\_timestamp         | transaction\_hash                                                 |
  | ----------------------------------------------------------------- | ------- | ---------- | ----------------------------------------------------------------- | ---------- | ----------------------------------------------------------------- | ----------- | ------------- | ------------------------ | ----------------------------------------------------------------- |
  | 0x33068f6539f8e6e6b131e6b2b814e6c34a5224bc66947c47dab9dfee93b35fb | false   | 99990      | 0x7d421b9ca8aa32df259965cda8acb93f7599f69209a41872ae84638b2a20f2a | 1          | 0x243e1de00e8a6bc1dfa3e950e6ade24c52e4a25de4dee7fb5affe918ad1e744 | Burn        | 3683086       | 2025-11-18T10:04:27.000Z | 0x16ad5fc7b588f283d003a6bc3dd4f956c600e89940bf1a4c74cd64d60901e1c |
  | 0x33068f6539f8e6e6b131e6b2b814e6c34a5224bc66947c47dab9dfee93b35fb | false   | 1000       | 0x7d421b9ca8aa32df259965cda8acb93f7599f69209a41872ae84638b2a20f2a | 2          | 0x243e1de00e8a6bc1dfa3e950e6ade24c52e4a25de4dee7fb5affe918ad1e744 | Burn        | 3957054       | 2025-11-30T13:54:07.000Z | 0x30d25c3e4957b85d8904fbbb1b90e84f3eaaef39280209a4520a1ffe65e7c48 |
  | 0x33068f6539f8e6e6b131e6b2b814e6c34a5224bc66947c47dab9dfee93b35fb | false   | 10000      | 0x7d421b9ca8aa32df259965cda8acb93f7599f69209a41872ae84638b2a20f2a | 2          | 0x243e1de00e8a6bc1dfa3e950e6ade24c52e4a25de4dee7fb5affe918ad1e744 | Burn        | 3973594       | 2025-12-01T12:22:48.000Z | 0x5cd485bdf143cbac6945c53e1a50e280c9a757bef7c24598150ce0361b7b3f8 |
</Accordion>

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

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

***

### USDC\_Mint\_event

USDC token minting events emitted by Circle's smart contracts when new USDC tokens are created. Contains minter address, recipient address, and minted amount for tracking stablecoin supply expansion across supported 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.                   |
  | `removed`          | `BOOL`      | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.                                         |
  | `address`          | `STRING`    | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.                                                              |
  | `signature`        | `STRING`    | Function selector identifying which contract function was called. 10-character hex string including 0x prefix.                                       |
  | `event_name`       | `STRING`    | Name of the blockchain event emitted by the contract. Human-readable string identifier indicating the specific action or state change that occurred. |
  | `in_minter`        | `STRING`    | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
  | `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\_minter                                                        | log\_index | signature                                                         | event\_name | block\_number | block\_timestamp         | transaction\_hash                                                 |
  | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ------- | ---------- | ----------------------------------------------------------------- | ---------- | ----------------------------------------------------------------- | ----------- | ------------- | ------------------------ | ----------------------------------------------------------------- |
  | 0x32d208ec40ae124ea6691db156005552c08ff9929249241fcd88355c7a55e4a | 0x33068f6539f8e6e6b131e6b2b814e6c34a5224bc66947c47dab9dfee93b35fb | false   | 100        | 0x7d421b9ca8aa32df259965cda8acb93f7599f69209a41872ae84638b2a20f2a | 0          | 0x34e55c1cd55f1338241b50d352f0e91c7e4ffad0e4271d64eb347589ebdfd16 | Mint        | 3671457       | 2025-11-17T23:54:45.000Z | 0x64e60a20c650c1591b1e17e44a997eecea97ffc29a05ee4c307a07e91416341 |
  | 0x32d208ec40ae124ea6691db156005552c08ff9929249241fcd88355c7a55e4a | 0x33068f6539f8e6e6b131e6b2b814e6c34a5224bc66947c47dab9dfee93b35fb | false   | 100        | 0x7d421b9ca8aa32df259965cda8acb93f7599f69209a41872ae84638b2a20f2a | 0          | 0x34e55c1cd55f1338241b50d352f0e91c7e4ffad0e4271d64eb347589ebdfd16 | Mint        | 3671511       | 2025-11-17T23:58:46.000Z | 0x31a3c5c4edd744c4f4e8d0c1fce9819aeffcc778c1efde110236aa4196fe951 |
  | 0x32d208ec40ae124ea6691db156005552c08ff9929249241fcd88355c7a55e4a | 0x33068f6539f8e6e6b131e6b2b814e6c34a5224bc66947c47dab9dfee93b35fb | false   | 100        | 0x7d421b9ca8aa32df259965cda8acb93f7599f69209a41872ae84638b2a20f2a | 0          | 0x34e55c1cd55f1338241b50d352f0e91c7e4ffad0e4271d64eb347589ebdfd16 | Mint        | 3669499       | 2025-11-17T21:53:27.000Z | 0x67676ea85d3f1dfc8a3335c5439f15612d7dd9fa2c500bf00ba03b0ac62ed15 |
</Accordion>

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

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

***
