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

# Transfers (To Be Deprecated)

> Hyperliquid bridge deposits and withdrawals via Arbitrum

<Warning>
  **Deprecation Notice**: This table will be deprecated. Please use [fungible\_token\_transfers](/historical-data/supported-blockchains/hyperliquid/assets/fungible-token-transfers) instead, which includes all transfer types with full bridge history from 2023-12.
</Warning>

The `hyperliquid.assets.transfers` table contains bridge deposits and withdrawals between Arbitrum and Hyperliquid. This table only covers USDC bridging through the Arbitrum bridge contract.

## Table Columns

| Column                     | Description                                                                        |
| -------------------------- | ---------------------------------------------------------------------------------- |
| transfer\_type             | Either 'deposit' (Arbitrum → Hyperliquid) or 'withdrawal' (Hyperliquid → Arbitrum) |
| sender\_address            | Address that initiated the transfer on Arbitrum                                    |
| recipient\_address         | Address receiving the transfer on Arbitrum                                         |
| token\_address             | ERC-20 token address on Arbitrum (USDC)                                            |
| raw\_amount\_str           | Raw token amount before decimal normalization                                      |
| amount\_str                | Decimal-normalized amount as string                                                |
| amount                     | Decimal-normalized amount as float                                                 |
| usd\_amount                | USD value of the transfer using hourly prices                                      |
| usd\_exchange\_rate        | USD price of the token at time of transfer                                         |
| transaction\_from\_address | Arbitrum transaction sender                                                        |
| transaction\_to\_address   | Arbitrum transaction recipient                                                     |
| transaction\_hash          | Arbitrum transaction hash                                                          |
| transaction\_index         | Transaction index within the Arbitrum block                                        |
| log\_index                 | Log index within the Arbitrum transaction                                          |
| block\_number              | Arbitrum block number                                                              |
| block\_timestamp           | Arbitrum block timestamp                                                           |
| block\_hash                | Arbitrum block hash                                                                |
| unique\_id                 | Deterministic unique identifier                                                    |
| \_created\_at              | Row creation timestamp                                                             |
| \_updated\_at              | Row last update timestamp                                                          |

## Sample Query

```sql theme={null}
SELECT 
  transfer_type,
  sender_address,
  recipient_address,
  amount,
  usd_amount,
  block_timestamp
FROM hyperliquid.assets.transfers
WHERE block_timestamp >= CURRENT_DATE - INTERVAL '7 days'
ORDER BY block_timestamp DESC
LIMIT 100;
```
