Skip to main content

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.

Stellar NFT trades, covering both Classic NFTs (traded on the SDEX orderbook via manage_sell_offer / manage_buy_offer) and Soroban NFTs (traded through smart-contract atomic swaps). Hydrated with NFT metadata (name, image URL parsed from the issuer’s stellar.toml) and USD pricing using the Stellar hourly prices model.

Coverage

Token StandardProtocolDetection
classicstellar_orderbookNFT-classified assets traded on the SDEX (Litemint, locked-issuer NFTs, supply ≤ 10M stroops)
sorobansorobanContracts emitting token_transfers rows with token_id IS NOT NULL (SEP-50)
Classic NFT trades also appear in stellar.dex.trades. stellar.nfts.trades is the NFT-classified subset. marketplace is currently populated for known Classic marketplaces (e.g. litemint) and is null for Soroban trades until specific contracts are added.

Table Columns

Unique Key: unique_id
Column NameDescription
marketplaceNFT marketplace attributed via the asset’s TOML / issuer mapping (e.g. litemint). Null when the asset isn’t attributable to a known marketplace, including all Soroban trades until specific contracts are added.
protocolTrading-venue protocol. stellar_orderbook for SDEX (Classic); soroban for Soroban atomic-swap trades.
token_standardclassic for Classic Stellar NFTs; soroban for Soroban-contract NFTs.
contract_idSoroban contract address (C-prefixed StrKey). Null for Classic NFTs.
order_match_typeBUY or SELL from the perspective of the recorded effect (Classic) or BUY (Soroban atomic swap).
trade_typeSINGLE_TRADE (bundle support deferred to Phase 2).
buyer_addressStellar G-address of the NFT recipient.
seller_addressStellar G-address of the NFT sender.
asset_idCanonical asset identifier. For Classic NFTs, <asset_code>:<asset_issuer>. For Soroban NFTs, the contract_id.
asset_codeAsset code (Classic) or null (pure Soroban NFTs).
asset_issuerIssuer G-address (Classic) or null (pure Soroban NFTs).
token_idSoroban NFT token_id within the contract. Null for Classic NFTs.
token_nameNFT name parsed from the issuer’s stellar.toml (Classic) or contract metadata (Soroban). Best-effort.
image_urlNFT image URL parsed from the issuer’s stellar.toml. Best-effort.
item_quantityQuantity of the NFT moved, in raw stroops. For 1-stroop-supply NFTs, item_quantity = '1' means the whole NFT. For older 1-whole-unit NFTs, item_quantity = '10000000' means the whole NFT.
currency_asset_idCounter-asset identifier. XLM for native, <code>:<issuer> for Classic, contract_id for Soroban tokens.
currency_codeCounter-asset code.
currency_decimalsCounter-asset decimal precision used to normalize raw_price.
raw_priceCounter-asset amount paid for the NFT, in raw units (stroops for Classic / native, contract-defined for Soroban).
priceCounter-asset amount normalized to human units.
usd_priceUSD value of the trade based on the hourly counter-asset price. Null if it exceeds the upper sanity limit.
extra_fieldsVariant JSON with protocol-specific debug fields (offer_id, sold/bought asset breakdown, Soroban event indices).
ledger_sequenceStellar ledger sequence number.
ledger_close_timeTimestamp at which the ledger containing the trade closed.
ledger_hashHash of the ledger.
transaction_hash64-character hex Stellar transaction hash.
transaction_indexIndex of the transaction within the ledger.
transaction_resultStellar transaction result code.
operation_idStellar TOID (Total Order ID) of the operation.
effect_indexIndex of the effect (Classic) or token_transfer event (Soroban) within the transaction.
unique_idUnique identifier for the trade row.
_created_atRow creation timestamp.
_updated_atRow last-update timestamp.