> ## Documentation Index
> Fetch the complete documentation index at: https://docs.allium.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Stablecoin Transfers

### Table Details

| Property            | Value                                                             |
| ------------------- | ----------------------------------------------------------------- |
| Table Name          | `sei.assets.stablecoin_transfers`                                 |
| Table Status        | Production-Ready                                                  |
| Unique Key          | `block_timestamp`, `unique_id`                                    |
| Clustering Key(s)   | `block_timestamp::date, token_address`                            |
| Search Optimization | `from_address`, `to_address`, `transaction_hash`, `token_address` |

### Table Columns

| Column Name                | Data Type         | Description                                                                                                                                        |
| -------------------------- | ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- |
| from\_address              | VARCHAR(42)       | Address that sent the stablecoin. The account whose balance decreased.                                                                             |
| to\_address                | VARCHAR(42)       | Address that received the stablecoin. The account whose balance increased.                                                                         |
| token\_address             | VARCHAR(42)       | Contract address of the stablecoin token.                                                                                                          |
| token\_name                | VARCHAR(16777216) | Full name of the token (e.g. "USD Coin").                                                                                                          |
| token\_symbol              | VARCHAR(16777216) | Ticker symbol of the token (e.g. "USDC").                                                                                                          |
| raw\_amount\_str           | VARCHAR(16777216) | Token amount in the smallest unit as a string, to preserve full precision.                                                                         |
| raw\_amount                | FLOAT             | Token amount in the smallest indivisible unit (not decimal-adjusted).                                                                              |
| amount\_str                | VARCHAR(16777216) | Normalized token amount stored as a string to preserve full precision.                                                                             |
| amount                     | FLOAT             | Token amount normalized by the token's decimal precision.                                                                                          |
| usd\_amount                | FLOAT             | USD value of the token amount at the time of the event.                                                                                            |
| transaction\_from\_address | VARCHAR(42)       | Address of the account that signed and submitted the transaction. May differ from `from_address` when a contract routes tokens on a user's behalf. |
| transaction\_to\_address   | VARCHAR(42)       | Address the transaction was sent to (the top-level `to` field). May be a router or contract rather than the token recipient.                       |
| transaction\_hash          | VARCHAR(66)       | Hash of the transaction that produced this record.                                                                                                 |
| transaction\_index         | NUMBER(38,0)      | Zero-based position of the transaction within its block.                                                                                           |
| log\_index                 | NUMBER(38,0)      | Zero-based position of this event log within its transaction.                                                                                      |
| block\_timestamp           | TIMESTAMP\_NTZ(9) | Timestamp (UTC) of the block that contains this record.                                                                                            |
| block\_number              | NUMBER(38,0)      | Sequential number of the block that contains this record.                                                                                          |
| block\_hash                | VARCHAR(66)       | Cryptographic hash of the block header that contains this record.                                                                                  |
| unique\_id                 | VARCHAR(16777216) | Allium's deterministic unique identifier for this row. Generated from the fields that uniquely identify the record. Stable across full refreshes.  |
| currency                   | VARCHAR(16777216) | Fiat currency this stablecoin is pegged to, as an ISO 4217 code in lowercase (e.g. `usd`, `eur`).                                                  |
| base\_asset                | VARCHAR(16777216) | Canonical name of the stablecoin (e.g. `USDC`, `USDT`, `DAI`).                                                                                     |
| is\_bridge                 | BOOLEAN           | True if this token is a bridged representation. False if it is the canonical deployment by the issuer.                                             |
| \_created\_at              | TIMESTAMP\_NTZ(9) | Timestamp of when the entry was created in the database.                                                                                           |
| \_updated\_at              | TIMESTAMP\_NTZ(9) | Timestamp of when the entry was last updated in the database.                                                                                      |
| \_metadata\_updated\_at    | TIMESTAMP\_LTZ(9) | Timestamp when token metadata (name, symbol, etc.) was last updated.                                                                               |

### Related Docs

* [EVM Assets Stablecoin Transfers](/historical-data/supported-blockchains/evm/core-schemas/assets/stablecoin-transfers)
