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

# backed_v1_gnosis

> Tables in tt-contracts.backed_v1_gnosis

## Tables

### BackedFactory\_NewToken\_event

Token deployment events from the Backed Factory contract recording the creation of new tokenized real-world assets. Emitted when the factory deploys a new token contract with its name, symbol, and address for tracking tokenized securities, bonds, and equity instruments.

<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_newToken`      | `STRING`    | Contract address of the newly created token. Hex-encoded, 0x-prefixed, 42-character string.                                                          |
  | `in_name`          | `STRING`    | Name or label identifier for the entity being created, registered, or updated in the event.                                                          |
  | `in_symbol`        | `STRING`    | Symbol of the token involved in the transaction or event.                                                                                            |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_name                                               | removed | in\_symbol | log\_index | in\_newToken                               | block\_number | block\_timestamp         | transaction\_hash                                                  |
  | ------------------------------------------ | ------------------------------------------------------ | ------- | ---------- | ---------- | ------------------------------------------ | ------------- | ------------------------ | ------------------------------------------------------------------ |
  | 0x66287339fb0dd3f3a89d41cdf103ee8f1f90cbe7 | Backed Alphabet Inc                                    | false   | bGOOGL     | 9          | 0xebee37aaf2905b7bda7e3b928043862e982e8f32 | 36061555      | 2024-09-18T08:51:15.000Z | 0xde892b9eaf53cebcb8e52d88cab4a44f6795094acb6dcd4905fe443ce9a846d9 |
  | 0x66287339fb0dd3f3a89d41cdf103ee8f1f90cbe7 | Backed GameStop Corp                                   | false   | bGME       | 14         | 0x7212088a11b4d8f6fc90fbb3dfe793b45dd72323 | 36061619      | 2024-09-18T08:56:50.000Z | 0x00a2910989f4c1398949eb13f066378e8fc4a0e433794d33cbb9618195aad9f4 |
  | 0x66287339fb0dd3f3a89d41cdf103ee8f1f90cbe7 | Backed CSBGC3 CHF Swiss Domestic Government Bond 0-3yr | false   | bCSBGC3    | 14         | 0xd8b95b1987741849ca7e71e976aeb535fd2e55a2 | 36061610      | 2024-09-18T08:56:05.000Z | 0x8fd0fd7a31c936250ac9d40b35faec606dfed8721acfa9ffce1d143c92444a4b |
</Accordion>

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

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

***
