Track Swap Events
Near real-time monitoring of swap events.
Below are the common methods to monitor swap events:
Subscription using eth_subscribe (coming later - HIP-694)
Polling Swap Events for All Pairs
⛽ No gas cost
Every time a user executes a swap, the contract emits a 'Swap' event with the updated reserve values for the token pair. The following code demonstrates how to listen to these 'Swap' events for all pairs using either the REST API or JSON RPC.
Listening to 'Swap' events without specifying an address in the filter data will return logs for all pairs on SaucerSwap, as well as other DEXs on Hedera that share the same 'topic0' hash signature for the 'Swap' event. To identify and filter specific pairs, extract the pair's EVM address from the log.
Last updated