arbitrum.perpetuals.liquidations contains GMX perpetual position liquidations on Arbitrum, exposed with the same schema as Trades. Every row has action = 'liquidation'.
Current coverage includes GMX v1 and v2.
Table Columns
| Column Name | Description | Type | Example |
|---|---|---|---|
| project | The perpetuals project. | varchar | gmx |
| protocol | The specific protocol within the project. | varchar | gmx |
| version | Protocol version. | varchar | v1 |
| chain | Blockchain network. | varchar | arbitrum |
| block_timestamp | Block timestamp of the event. | timestamp_ntz | 2022-09-18 21:12:17 |
| block_date | Calendar date of the event (UTC). | date | 2022-09-18 |
| block_number | Block number containing the event. | number | 25,174,694 |
| transaction_hash | Transaction hash. | varchar | 0x7df7d3a8cc6ef20f383a72714673eadc10309135c98729fb5c0db87bd67de714 |
| log_index | Position of the event log within the block. | number | 4 |
| unique_id | Unique identifier for the row. | varchar | txn-0x7df7d3a8β¦_log_index-4 |
| trader | Wallet address of the liquidated position. | varchar | 0x34e809e36f37c4be3f0b8448ac0447f0c3173789 |
| market_address | GMX market address. | varchar | 0x82af49447d8a07e3bd95bd0d56f35241523fbab1 |
| market_symbol | Symbol of the marketβs index token. | varchar | WETH |
| asset_address | Address of the index (traded) token. | varchar | 0x82af49447d8a07e3bd95bd0d56f35241523fbab1 |
| side | Position side: long or short. | varchar | long |
| action | Always liquidation for this table. | varchar | liquidation |
| size_usd | Notional size of the liquidated position in USD. | number | 260882.878410 |
| price_usd | Index token price in USD at the event. | number | 1338.000000 |
| collateral_usd | Collateral of the position in USD. | number | 16114.322677 |
| pnl_usd | Realized profit or loss in USD. | number | 0.000000 |
| fee_usd | Total liquidation fee for the event, in USD. | number | 317.755346 |
| extra_fields | VARIANT column with protocol-specific detail. | variant |
Sample Query
SELECT *
FROM arbitrum.perpetuals.liquidations
WHERE block_date = '2026-07-23'
LIMIT 100;