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

# viction_v1_viction

> Tables in tt-contracts.viction_v1_viction

## Tables

### TRC21Issuer\_Apply\_event

TRC21 token application events on Viction blockchain recording token issuer registration requests with standardized 10 VIC application fees. Tracks TRC21 token standard implementations including issuer addresses and token contract deployments for analyzing token ecosystem growth.

<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_issuer`        | `STRING`    | Address of the entity or contract that initiated the issuance or application event. Hex-encoded, 0x-prefixed, 42-character string.                   |
  | `in_token`         | `STRING`    | Token address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.                                               |
  | `in_value`         | `STRING`    | Amount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values.       |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | removed | in\_token                                  | in\_value            | in\_issuer                                 | log\_index | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------- | ------------------------------------------ | -------------------- | ------------------------------------------ | ---------- | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x8c0faeb5c6bed2129b8674f262fd45c4e9468bee | false   | 0xa3a4d9c02dce113d465558e0d5128cf7fb7d86b7 | 10000000000000000000 | 0xe963af8b8f11351278fda86780f85c3611692857 | 1          | 72150510      | 2023-11-11T09:37:31.000Z | 0x7bdbcfdb79a719fea912bec212a15655833ce6ec0f3a77e92fb6524acf1ff888 |
  | 0x8c0faeb5c6bed2129b8674f262fd45c4e9468bee | false   | 0xaec9777b95e094abe5cc071242dd62199be2dbf1 | 10000000000000000000 | 0x9526240d4ffb6479b6e05e403ae658c7ed4f8eff | 1          | 10387272      | 2019-09-13T10:03:21.000Z | 0x3744dc30f17c0ecbe2f3f54a4bd4155401d90be91408becf63a39e355f81bdbe |
  | 0x8c0faeb5c6bed2129b8674f262fd45c4e9468bee | false   | 0x357dde188fe7b6abb0b8b6a4afe917cdf4b7080b | 10000000000000000000 | 0xc65feda62458a8d58ffed67d47f8088aab9265c6 | 1          | 10380097      | 2019-09-13T05:58:57.000Z | 0x8a11a4e9bb8a6c943dd8310d3bb27a856987db9587974bc12ca7a655780d5a00 |
</Accordion>

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

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

***
