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

# ondo_v1_bsc

> Tables in tt-contracts.ondo_v1_bsc

## Tables

### GMTokenFactory\_NewGMTokenDeployed\_event

Token deployment events from Ondo Finance's GMTokenFactory on BNB Smart Chain (BSC), capturing the creation of tokenized real-world assets including stocks and ETFs. Records proxy contract addresses, compliance managers, and token metadata for tracking Ondo's tokenized securities issuance.

<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_proxy`             | `STRING`    | Contract address of the newly created proxy contract. Hex-encoded, 0x-prefixed, 42-character string.                                                                                                                                   |
  | `in_beacon`            | `STRING`    | Contract address of the beacon proxy implementation contract. 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_ticker`            | `STRING`    | Ticker symbol for the newly deployed tokenized asset on Ondo's platform. Typically appends "on" suffix to traditional stock tickers (e.g., "BAon" for Boeing, "TSMon" for TSMC).                                                       |
  | `in_compliance`        | `STRING`    | Contract address of the compliance module that enforces regulatory requirements for the newly deployed tokenized asset. This address manages transfer restrictions, KYC/AML checks, and investor eligibility rules for the Ondo token. |
  | `in_tokenPauseManager` | `STRING`    | Contract address of the token pause manager with authority to halt token transfers in emergency situations. All sample deployments use the same pause manager contract across different tokenized securities.                          |
</Accordion>

<Accordion title="Sample Data">
  | address                                    | in\_name                  | removed | in\_proxy                                  | in\_beacon                                 | in\_ticker | log\_index | block\_number | in\_compliance                             | block\_timestamp         | transaction\_hash                                                  | in\_tokenPauseManager                      |
  | ------------------------------------------ | ------------------------- | ------- | ------------------------------------------ | ------------------------------------------ | ---------- | ---------- | ------------- | ------------------------------------------ | ------------------------ | ------------------------------------------------------------------ | ------------------------------------------ |
  | 0x01bb8620c0aef4390c983a5a792d178af2733e82 | Lockheed (Ondo Tokenized) | false   | 0xd09f7b75b9659b864c6f82bb00ff096f9d277998 | 0xc046b05a920e4b412815934dd8e58904dda73315 | LMTon      | 203        | 64042379      | 0x76be569c94c39a2e2492de2f4d1c253f348250d0 | 2025-10-09T17:33:38.000Z | 0x4dee3df19560d87646d887d975c52ca46b105e5f94a358bd93533a2743b03645 | 0x6334924c787ebd21c881740ef6237ef51962638f |
  | 0x01bb8620c0aef4390c983a5a792d178af2733e82 | Boeing (Ondo Tokenized)   | false   | 0xf21132a811ad1a878e21af60f64d4e690c9daa42 | 0xc046b05a920e4b412815934dd8e58904dda73315 | BAon       | 423        | 64042259      | 0x76be569c94c39a2e2492de2f4d1c253f348250d0 | 2025-10-09T17:32:08.000Z | 0x1aeae9930d8d62b05153af2a4e0ac33699d6ef7f670adf827e41b4ae057def44 | 0x6334924c787ebd21c881740ef6237ef51962638f |
  | 0x01bb8620c0aef4390c983a5a792d178af2733e82 | Disney (Ondo Tokenized)   | false   | 0xeee9eee593cb8f7946260b4066cba7907f40acfa | 0xc046b05a920e4b412815934dd8e58904dda73315 | DISon      | 426        | 64042292      | 0x76be569c94c39a2e2492de2f4d1c253f348250d0 | 2025-10-09T17:32:33.000Z | 0x77a0942a2b2633f2be7c5873abfb918a625ecf89fd2132c7a77aa21dd4cc37dc | 0x6334924c787ebd21c881740ef6237ef51962638f |
</Accordion>

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

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

***
