Merge and split activity?

#6
by liusiyang1999 - opened

Hi,
I have a question regarding merger and split activities. From what I can tell, the current dataset does not seem to include information on these events. Do you know if there are any sources that track merger and split activities in polymarket? Any suggestions or guidance would be greatly appreciated.
Thank you!

Hi,

Our current dataset only covers trade-level data (OrderFilled events from the CTF Exchange contract), so merger and split activities are not included.
However, these events are recorded on-chain in the ConditionalTokens contract:
Contract address: 0x4D97DCd97eC945f40cF65F87097ACe5EA0476045 (Polygon)
Split: splitPosition() → emits PositionSplit event
Merge: mergePositions() → emits PositionsMerge event
You can index these events directly from PolygonScan or via any Polygon RPC node. The Polymarket CTF documentation has more details on the contract interface.

Let me know if you need any help!

Sign up or log in to comment