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

# Jit Liquidity Events

### Table Details

| Property     | Value                               |
| ------------ | ----------------------------------- |
| Table Name   | `ethereum.dex.jit_liquidity_events` |
| Table Status | Production-Ready                    |
| Unique Key   | `transaction_hash_mint`             |

### Table Columns

| Column Name              | Data Type         | Description                                                   |
| ------------------------ | ----------------- | ------------------------------------------------------------- |
| chain                    | VARCHAR(8)        | Slug identifying the blockchain this record belongs to.       |
| block\_number            | NUMBER(38,0)      | Sequential number of the block that contains this JIT event.  |
| block\_timestamp         | TIMESTAMP\_NTZ(9) | Timestamp (UTC) of the block that contains this JIT event.    |
| signer                   | VARCHAR(42)       | Address that signed the JIT liquidity transactions.           |
| project                  | VARCHAR(16777216) | DEX project of the pool the JIT liquidity was provided to.    |
| liquidity\_pool\_address | VARCHAR(42)       | Contract address of the liquidity pool.                       |
| pool\_name               | VARCHAR(16777216) | Human-readable name of the pool.                              |
| jit\_action              | VARCHAR(16777216) | JIT action classification for this event.                     |
| token0\_address          | VARCHAR(42)       | Contract address of the pool's first token.                   |
| token0\_symbol           | VARCHAR(16777216) | Symbol of the pool's first token.                             |
| token0\_amount\_mint     | FLOAT             | Amount of token0 added in the mint leg.                       |
| token0\_amount\_burn     | FLOAT             | Amount of token0 removed in the burn leg.                     |
| token0\_delta            | FLOAT             | Net change in token0 across the mint/burn pair.               |
| token0\_delta\_usd       | FLOAT             | USD value of the net token0 change.                           |
| token1\_address          | VARCHAR(42)       | Contract address of the pool's second token.                  |
| token1\_symbol           | VARCHAR(16777216) | Symbol of the pool's second token.                            |
| token1\_amount\_mint     | FLOAT             | Amount of token1 added in the mint leg.                       |
| token1\_amount\_burn     | FLOAT             | Amount of token1 removed in the burn leg.                     |
| token1\_delta            | FLOAT             | Net change in token1 across the mint/burn pair.               |
| token1\_price\_usd       | FLOAT             | USD price of token1 at the event.                             |
| token1\_delta\_usd       | FLOAT             | USD value of the net token1 change.                           |
| jit\_swaps               | VARIANT           | Details of the swaps sandwiched by the JIT mint/burn pair.    |
| jit\_swap\_volume\_usd   | FLOAT             | USD volume of the sandwiched swaps.                           |
| jit\_swap\_count         | NUMBER(18,0)      | Number of sandwiched swaps.                                   |
| liquidity\_mint          | VARCHAR(16777216) | Liquidity amount added in the mint leg.                       |
| tick\_lower\_mint        | FLOAT             | Lower tick bound of the minted position.                      |
| tick\_upper\_mint        | FLOAT             | Upper tick bound of the minted position.                      |
| liquidity\_burn          | VARCHAR(16777216) | Liquidity amount removed in the burn leg.                     |
| tick\_lower\_burn        | FLOAT             | Lower tick bound of the burned position.                      |
| tick\_upper\_burn        | FLOAT             | Upper tick bound of the burned position.                      |
| transaction\_hash\_mint  | VARCHAR(66)       | Hash of the mint-leg transaction.                             |
| transaction\_index\_mint | NUMBER(38,0)      | Position of the mint-leg transaction within its block.        |
| log\_index\_mint         | NUMBER(38,0)      | Log index of the mint event.                                  |
| txn\_fees\_mint          | FLOAT             | Transaction fees paid for the mint leg, in the native token.  |
| txn\_fees\_usd\_mint     | FLOAT             | USD value of the mint-leg transaction fees.                   |
| transaction\_hash\_burn  | VARCHAR(66)       | Hash of the burn-leg transaction.                             |
| transaction\_index\_burn | NUMBER(38,0)      | Position of the burn-leg transaction within its block.        |
| log\_index\_burn         | NUMBER(38,0)      | Log index of the burn event.                                  |
| txn\_fees\_burn          | FLOAT             | Transaction fees paid for the burn leg, in the native token.  |
| txn\_fees\_usd\_burn     | FLOAT             | USD value of the burn-leg transaction fees.                   |
| \_created\_at            | TIMESTAMP\_NTZ(9) | Timestamp of when the entry was created in the database.      |
| \_updated\_at            | TIMESTAMP\_NTZ(9) | Timestamp of when the entry was last updated in the database. |

### Related Docs

* [EVM DEX Jit Liquidity Events](/historical-data/supported-blockchains/evm/core-schemas/dex/jit-liquidity-events)
