You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: unified event discovery across all exchanges
- Removed mandatory query/eventId/slug requirement for fetchEvents() in BaseExchange
- Implemented discovery path for Polymarket via Gamma /events endpoint
- Implemented discovery path for Kalshi with client-side sorting (volume, liquidity, newest)
- Implemented discovery path for Limitless via group market filtering
- Updated unit tests to align with unrestricted parameter requirements
- Bumped version to 2.17.0
Copy file name to clipboardExpand all lines: changelog.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,20 @@
2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+
## [2.17.0] - 2026-02-24
6
+
7
+
### Improved
8
+
9
+
-**Unified Discovery: Unrestricted Event Fetching**: Removed the mandatory requirement for a query, event identification, or slug in `fetchEvents`. Users can now call `fetchEvents()` without parameters to retrieve the "front page" of an exchange (typically top events by volume).
10
+
-**Polymarket: High-Performance Discovery**: Redirects no-query `fetchEvents` calls to the specific Gamma `/events` list endpoint, providing a cleaner and faster experience than the fuzzy search path.
11
+
-**Kalshi: Client-Side Event Ranking**: Implemented robust client-side sorting for Kalshi events. Since the Kalshi API lacks server-side sorting for the event list, `fetchEvents` now aggregates volume, liquidity, and recency from nested markets to provide consistent `sort` support (`volume`, `liquidity`, `newest`).
12
+
-**Limitless: Semantic Event Mapping**: Mapped Limitless "Group Markets" to the unified `fetchEvents` interface. Discovery calls now automatically filter for group markets, aligning Limitless with event-centric discovery patterns.
13
+
-**Developer Experience**: Synchronized `fetchEvents` behavior with `fetchMarkets` across all exchanges (Baozi, Myriad, Probable, Kalshi, Polymarket, Limitless).
14
+
15
+
### Fixed
16
+
17
+
-**Unit Tests**: Updated core validation suite to reflect the relaxed requirements for event fetching.
0 commit comments