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

# Token Transfers

> Comprehensive token and asset tracking across multiple blockchain networks

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.

<Info>
  **Maintained by:** Dune · **Refresh:** \~1 hour · **Chains:** All EVM chains, Solana, Aptos, Stellar, Sui, XRPL
</Info>

<Card title="Get This Data" icon="database" href="https://dune.com/enterprise?dataset=tokens.transfers">
  Access token transfer data via API, Datashare, or the Dune App.
</Card>

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

<CardGroup cols={2}>
  <Card title="EVM Token Transfers" icon="arrow-right" href="/data-catalog/curated/token-transfers/evm/token-transfers">
    Transfer events for ERC20 tokens and native currencies on EVM networks
  </Card>

  <Card title="Solana Token Transfers" icon="arrow-right" href="/data-catalog/curated/token-transfers/solana/solana-token-transfers">
    Transfer events for SPL tokens and native SOL on Solana
  </Card>

  <Card title="Aptos Token Transfers" icon="arrow-right" href="/data-catalog/curated/token-transfers/aptos/aptos-token-transfers">
    Curated fungible token transfers across Aptos Coin and Fungible Asset standards
  </Card>

  <Card title="Stellar Token Transfers" icon="arrow-right" href="/data-catalog/curated/token-transfers/stellar/stellar-token-transfers">
    Unified token movement across Stellar payments, issued assets, and contract token events
  </Card>

  <Card title="Sui Token Transfers" icon="arrow-right" href="/data-catalog/curated/token-transfers/sui/sui-token-transfers">
    Curated fungible token transfers across Sui Coin object activity and supply events
  </Card>

  <Card title="XRPL Token Transfers" icon="arrow-right" href="/data-catalog/curated/token-transfers/xrpl/xrpl-token-transfers">
    Unified token movement for native XRP, issued currencies, checks, escrows, payment channels, and AMM activity
  </Card>
</CardGroup>

### Unified View

<CardGroup cols={2}>
  <Card title="Multichain Transfers" icon="arrow-right-arrow-left" href="/data-catalog/curated/token-transfers/multichain/multichain-token-transfers">
    Unified fungible token transfers across EVM, Solana, Aptos, Sui, Stellar, and XRPL
  </Card>
</CardGroup>

<Note>
  Looking for token balances or metadata? See the [Balances](/data-catalog/curated/balances/overview) and [Token Metadata](/data-catalog/curated/token-metadata/overview) sections.
</Note>

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

```sql theme={null}
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.

```sql theme={null}
-- ✅ 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):**

```sql theme={null}
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:**

```sql theme={null}
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
```

<CardGroup cols={2}>
  <Card title="Enterprise Data Solutions" icon="building" href="https://dune.com/enterprise">
    Need custom transfer datasets or dedicated support? Talk to our enterprise team.
  </Card>

  <Card title="Build Custom Models" icon="code" href="/api-reference/connectors/overview">
    Build private token flow analytics with the dbt Connector.
  </Card>
</CardGroup>
