Get events emitted by Sui DEX protocols.
dex.events
table contains pool creation, add/remove liquidity events of liquidity pools. This table is used to track key events such as liquidity addition and removal events.
Currently, we support 7 DEX protocols on Sui.
_str
are in string format and will retain precision.
unique_id
Column Name | Description |
---|---|
event | Type of event (e.g., pool_created, add_liquidity, remove_liquidity) |
project | Name of the project (e.g., cetus, bluemove, bluefin) |
package_id | The package ID that contains the DEX protocol implementation |
liquidity_pool_address | The liquidity pool address which emitted the event |
sender | Address of the sender of the event |
coin0_type | Coin0 address |
coin0_name | Coin0 name |
coin0_symbol | Coin0 symbol |
coin0_decimals | Coin0 decimals |
coin0_amount_raw_str | Coin0 amount unnormalized, in string format for precision |
coin0_amount_raw | Coin0 amount unnormalized |
coin0_amount_str | Coin0 amount normalized, in string format for precision |
coin0_amount | Coin0 amount normalized |
coin0_amount_usd | Coin0 USD amount |
coin0_price_usd | Coin0 hourly USD price at the time of the event |
coin1_type | Coin1 address |
coin1_name | Coin1 name |
coin1_symbol | Coin1 symbol |
coin1_decimals | Coin1 decimals |
coin1_amount_raw_str | Coin1 amount unnormalized, in string format for precision |
coin1_amount_raw | Coin1 amount unnormalized |
coin1_amount_str | Coin1 amount normalized, in string format for precision |
coin1_amount | Coin1 amount normalized |
coin1_amount_usd | Coin1 USD amount |
coin1_price_usd | Coin1 hourly USD price at the time of the event |
usd_amount | USD value of the event |
position_id | Unique identifier for the liquidity position |
liquidity | Liquidity amount in the position |
tick_lower | Lower tick boundary for concentrated liquidity |
tick_upper | Upper tick boundary for concentrated liquidity |
tick_spacing | Tick spacing for the pool |
gas_fees_mist | Gas fees paid in MIST (Sui’s native token) |
gas_fees_sui_amount | Gas fees in SUI amount |
gas_fees_amount_usd | Gas fees in USD |
transaction_block_digest | Transaction block digest |
event_seq | Event sequence number |
checkpoint_timestamp | Checkpoint timestamp of this event |
checkpoint_sequence | Checkpoint sequence number |
checkpoint_digest | Checkpoint digest |
unique_id | Unique ID of each event |
_created_at | Timestamp of the entry creation |
_updated_at | Timestamp of the entry update |
_changed_since_full_refresh | Boolean indicator on whether this table was full-refreshed |