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

# Stablecoin Transfers

> Stablecoin transfers on Hyperliquid from misc_events and spot trades

The `hyperliquid.stablecoins.transfers` table contains stablecoin transfers on Hyperliquid derived from misc\_events and spot trades. This table is filtered to stablecoins only (USDC, etc.) and includes activity type classification.

<Note>
  Data starts from 2025-05-16. For comprehensive token transfers including non-stablecoins, use [fungible\_token\_transfers](/historical-data/supported-blockchains/hyperliquid/assets/fungible-token-transfers).
</Note>

## Table Columns

| Column                  | Description                                                                                 |
| ----------------------- | ------------------------------------------------------------------------------------------- |
| from\_address           | Sender address. Null for deposits, rewards, and mints                                       |
| to\_address             | Recipient address. Null for withdrawals and burns                                           |
| token\_address          | Stablecoin token index on Hyperliquid                                                       |
| token\_name             | Full name of the stablecoin                                                                 |
| token\_symbol           | Stablecoin symbol (e.g., USDC)                                                              |
| amount\_str             | Transfer amount as string                                                                   |
| amount                  | Transfer amount as float                                                                    |
| usd\_amount             | Approximate USD value                                                                       |
| hash                    | L1 transaction hash                                                                         |
| timestamp               | Event timestamp on Hyperliquid L1                                                           |
| transfer\_index         | Index to disambiguate multiple transfers in one transaction                                 |
| event\_type             | Raw misc\_events event type                                                                 |
| unique\_id              | Deterministic unique identifier                                                             |
| trade\_details          | JSON with trade pair info for spot\_trade events. Null otherwise                            |
| activity\_type          | Classified activity label (bridge\_deposit, bridge\_withdrawal, mint, burn, swap, transfer) |
| currency                | Stablecoin currency (e.g., USD)                                                             |
| base\_asset             | Base asset of the stablecoin                                                                |
| is\_bridge              | Whether this stablecoin is a bridged asset                                                  |
| \_metadata\_updated\_at | When the stablecoin metadata was last updated                                               |
| block\_height           | Hyperliquid L1 block height                                                                 |
| block\_hash             | Hyperliquid L1 block hash                                                                   |

## Sample Query

```sql theme={null}
SELECT 
  timestamp,
  from_address,
  to_address,
  token_symbol,
  amount,
  activity_type
FROM hyperliquid.stablecoins.transfers
WHERE timestamp >= CURRENT_DATE - INTERVAL '7 days'
ORDER BY timestamp DESC
LIMIT 100;
```
