solana.dex.liquidity_events tracks transaction-level events that modify liquidity positions and covers the following actions:
- add - Adding liquidity to a position
- remove - Removing liquidity from a position
- rebalance - Rebalancing a liquidity position
- claim_fee - Claiming fees from a liquidity position
- create_position - Creating a new liquidity position
- close_position - Closing an existing liquidity position
Supported Protocols
The table currently includes the following DEX protocols:Actions
Below is a mapping of the canonicalaction values to the actual event names as they appear in each supported protocol:
Notes:
- The
actioncolumn in the table is a normalized value for cross-protocol analysis. - The
event nameis the actual event or instruction name as emitted by the protocol. - Not all protocols support all actions; only supported event mappings are shown.
- For
meteora-dlmm, whenevent_name = 'AddLiquidity'thenaction = 'add_liquidity' - For
meteora-ammv2, whenevent_name = 'EvtAddLiquidity'thenaction = 'add_liquidity' - And so on for each mapping above.