Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dune.com/llms.txt

Use this file to discover all available pages before exploring further.

Blockchain networks have become popular platforms for creating, managing, and trading digital assets. These assets are often represented as tokens, which can be transferred between addresses and owned by users. Dune provides comprehensive token transfer tracking capabilities across multiple blockchain networks through curated tables that simplify the process of monitoring and analyzing token transfers across EVM, Solana, Aptos, Stellar, Sui, and XRPL ecosystems.
Maintained by: Dune · Refresh: ~1 hour · Chains: All EVM chains, Solana, Aptos, Stellar, Sui, XRPL

Get This Data

Access token transfer data via API, Datashare, or the Dune App.

Cross-Chain Token Transfer Coverage

Our token transfer data covers multiple blockchain ecosystems:
  • EVM Networks: Ethereum, Arbitrum, Polygon, Base, Optimism, and 40+ other EVM chains
  • Solana: Comprehensive coverage of SPL tokens and native SOL transfers
  • Aptos: Curated fungible asset transfers across Coin and Fungible Asset standards
  • Stellar: Unified token movement across classic Stellar operations and contract token events
  • Sui: Curated fungible token transfers reconstructed from Coin object activity and supply events
  • XRPL: Unified token movement for native XRP, issued currencies, and AMM-related activity

Available Datasets

Use the chain-specific tables when you need source-level details, or the multichain view when you want one normalized schema across ecosystems.

EVM Token Transfers

Transfer events for ERC20 tokens and native currencies on EVM networks

Solana Token Transfers

Transfer events for SPL tokens and native SOL on Solana

Aptos Token Transfers

Curated fungible token transfers across Aptos Coin and Fungible Asset standards

Stellar Token Transfers

Unified token movement across Stellar payments, issued assets, and contract token events

Sui Token Transfers

Curated fungible token transfers across Sui Coin object activity and supply events

XRPL Token Transfers

Unified token movement for native XRP, issued currencies, checks, escrows, payment channels, and AMM activity

Unified View

Multichain Transfers

Unified fungible token transfers across EVM, Solana, Aptos, Sui, Stellar, and XRPL
Looking for token balances or metadata? See the Balances and Token Metadata sections.

Key Features

  • Multi-Chain Coverage: Track token transfers across EVM, Solana, Aptos, Stellar, Sui, and XRPL ecosystems
  • Standardized Schema: Consistent data structure for cross-chain analysis
  • Transfer Analytics: Detailed transfer events with sender, receiver, and amounts
  • Real-time Updates: Data is updated continuously as new blocks are processed

Sample Cross-Chain Analysis

Compare token transfer activity across different blockchain networks:
SELECT
    blockchain,
    DATE_TRUNC('day', block_time) AS date,
    COUNT(*) AS num_transfers,
    COUNT(DISTINCT from_address) AS unique_senders,
    SUM(amount_usd) AS transfer_volume_usd
FROM tokens_multichain.transfers
WHERE block_date >= CURRENT_DATE - INTERVAL '30' day
GROUP BY 1, 2
ORDER BY date DESC, num_transfers DESC
These datasets enable users to perform a wide range of analyses across multiple blockchain networks, providing valuable insights into the dynamics of digital assets across various blockchain ecosystems.

When to Use These Tables

  • Track token flows between wallets, contracts, and exchanges
  • Build wallet activity feeds and transaction history views
  • Monitor large transfers (“whale alerts”) for market intelligence
  • Analyze token distribution and holder concentration over time
  • Power compliance workflows — identify counterparties and trace fund flows

Query Performance

Partition keys for tokens.transfers: blockchain, block_date Always include blockchain and block_date (or a block_time range) in your WHERE clause. For cross-ecosystem queries against tokens_multichain.transfers, include blockchain and a date filter whenever possible so filters can be pushed down to the source models.
-- ✅ Good: chain + date filter
SELECT * FROM tokens.transfers
WHERE blockchain = 'ethereum'
  AND block_date = CURRENT_DATE
  AND contract_address = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 -- USDC

-- ❌ Slow: no partition filters
SELECT * FROM tokens.transfers
WHERE "from" = 0x...

Methodology

Token transfer tables are maintained by Dune. Each ecosystem has its own source table and normalization logic:
  • EVM: Decodes ERC-20 Transfer events and native token transfers into tokens.transfers.
  • Solana: Handles SPL token and native SOL transfers in tokens_solana.transfers.
  • Aptos: Reconstructs transfers from Coin and Fungible Asset deposit/withdraw activity in tokens_aptos.transfers.
  • Stellar: Exposes a unified event stream for transfers, mints, burns, clawbacks, and fees across classic and contract-based activity in tokens_stellar.transfers.
  • Sui: Reconstructs fungible token movement from Coin object activity and treasury supply events in tokens_sui.transfers.
  • XRPL: Normalizes native XRP, issued currency, and AMM-related token movement in tokens_xrpl.transfers.
The tokens_multichain.transfers view combines EVM, Solana, Aptos, Sui, Stellar, and XRPL transfers into one cross-ecosystem schema for broad analysis.

Example Queries

Top tokens by transfer volume on Ethereum (today):
SELECT
  contract_address,
  symbol,
  SUM(amount_usd) AS total_volume_usd,
  COUNT(*) AS num_transfers
FROM tokens.transfers
WHERE blockchain = 'ethereum'
  AND block_date = CURRENT_DATE
GROUP BY 1, 2
ORDER BY 3 DESC
LIMIT 20
Large USDC transfers (>$1M) in the last 24 hours:
SELECT
  block_time,
  "from",
  "to",
  amount,
  amount_usd
FROM tokens.transfers
WHERE blockchain = 'ethereum'
  AND block_date >= CURRENT_DATE - INTERVAL '1' DAY
  AND contract_address = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
  AND amount_usd > 1000000
ORDER BY amount_usd DESC

Enterprise Data Solutions

Need custom transfer datasets or dedicated support? Talk to our enterprise team.

Build Custom Models

Build private token flow analytics with the dbt Connector.