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

# Transfers

Stellar NFT transfers, covering both Classic NFTs (assets in the NFT-classified set) and Soroban NFTs (`token_transfers` events with `token_id` not null). Includes trade-driven transfers as well as gifts, mint payouts, and any other movement. Hydrated with best-effort NFT name and image URL.

<Note>
  Mints (no `from_address`) and burns (no `to_address`) are excluded for now.
</Note>

### Table Columns

Unique Key: `unique_id`

| Column Name         | Description                                                                                                       |
| ------------------- | ----------------------------------------------------------------------------------------------------------------- |
| token\_standard     | `classic` for Classic Stellar NFTs; `soroban` for Soroban-contract NFTs.                                          |
| from\_address       | Sender Stellar G-address.                                                                                         |
| to\_address         | Recipient Stellar G-address.                                                                                      |
| contract\_id        | Soroban contract address (C-prefixed StrKey). Null for Classic NFTs.                                              |
| asset\_id           | Canonical asset identifier. For Classic NFTs, `<asset_code>:<asset_issuer>`. For Soroban NFTs, the `contract_id`. |
| asset\_code         | Asset code (Classic). Null for pure Soroban NFTs.                                                                 |
| asset\_issuer       | Issuer G-address (Classic). Null for pure Soroban NFTs.                                                           |
| token\_id           | Soroban NFT `token_id` within the contract. Null for Classic NFTs.                                                |
| token\_name         | NFT name parsed from the issuer's `stellar.toml` (Classic) or contract metadata (Soroban). Best-effort.           |
| image\_url          | NFT image URL parsed from the issuer's `stellar.toml`. Best-effort.                                               |
| item\_quantity      | Quantity transferred, in raw stroops. For 1-stroop-supply NFTs, `item_quantity = '1'` means the whole NFT.        |
| ledger\_sequence    | Stellar ledger sequence number.                                                                                   |
| ledger\_close\_time | Timestamp at which the ledger closed.                                                                             |
| ledger\_hash        | Hash of the ledger.                                                                                               |
| transaction\_hash   | Stellar transaction hash.                                                                                         |
| transaction\_index  | Index of the transaction within the ledger.                                                                       |
| transaction\_result | Stellar transaction result code.                                                                                  |
| operation\_index    | Operation index within the transaction.                                                                           |
| event\_index        | Event index for Soroban transfers / Classic effects.                                                              |
| event\_stage        | `token_transfers` event\_stage (e.g. `during_tx`, `after_tx`).                                                    |
| unique\_id          | Unique identifier for the transfer row.                                                                           |
| \_created\_at       | Row creation timestamp.                                                                                           |
| \_updated\_at       | Row last-update timestamp.                                                                                        |
