Skip to main content
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 canonical action values to the actual event names as they appear in each supported protocol: Notes:
  • The action column in the table is a normalized value for cross-protocol analysis.
  • The event name is the actual event or instruction name as emitted by the protocol.
  • Not all protocols support all actions; only supported event mappings are shown.
Example mapping logic:
  • For meteora-dlmm, when event_name = 'AddLiquidity' then action = 'add_liquidity'
  • For meteora-ammv2, when event_name = 'EvtAddLiquidity' then action = 'add_liquidity'
  • And so on for each mapping above.

Table Columns