Skip to main content

Overview

solana.rwa_transfers is a Turbo-only curated dataset that emits one row per SPL token transfer involving a tracked real-world asset (RWA) mint. It follows the same shape as solana.token_transfers, pre-filtered to RWA mints and enriched with the token symbol and asset category (treasury, stock, metal, or etf).
This dataset is exclusive to Turbo and is not available in Mirror.
Use it when you want to:
  • Track tokenized treasury, stock, ETF, or metal flows without maintaining your own registry of RWA mint addresses.
  • Group activity by asset category or by ticker symbol (for example, AAPL, TBILL, PAXG) instead of raw mint addresses.
  • Stream RWA transfers with far less volume than the full solana.token_transfers firehose.

Quick start

See Solana Sources for general Solana source configuration (start_block, block_ranges, filters, checkpoints).

Schema

Tracked assets

The dataset covers tokenized real-world assets across four categories. Mints are grouped by category and identified by symbol.

Treasury

Tokenized US Treasury and short-duration government bond funds.

Metal

Tokenized precious metals.

ETF

Tokenized broad-market and thematic ETFs. 25 mints tracked, including:

Stock

Tokenized equities. 478 mints across 396 unique equities, including tokenized variants (xStocks, Ondo, Backpack, PreStocks). A single equity may have multiple mints. Representative examples:
The full stock registry contains 478 mints. Filter by category = 'stock' and join on symbol or token_mint_address to work with the complete set.

Guide: Stream RWA transfers to Postgres

To track a single asset class, filter on category in a SQL transform (for example, WHERE category = 'treasury'). To track a specific asset, filter on symbol or token_mint_address.