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

# Liquidations

> GMX perpetual position liquidations on Arbitrum.

`arbitrum.perpetuals.liquidations` contains GMX perpetual position liquidations on Arbitrum, exposed with the same schema as [Trades](/historical-data/supported-blockchains/evm/arbitrum/perpetuals/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

```sql theme={null}
SELECT *
FROM arbitrum.perpetuals.liquidations
WHERE block_date = '2026-07-23'
LIMIT 100;
```
