feat: add dex parameter to user_fills and user_fills_by_time for HIP-3#288
Open
claygeo wants to merge 1 commit intohyperliquid-dex:masterfrom
Open
feat: add dex parameter to user_fills and user_fills_by_time for HIP-3#288claygeo wants to merge 1 commit intohyperliquid-dex:masterfrom
claygeo wants to merge 1 commit intohyperliquid-dex:masterfrom
Conversation
…3 support Also adds missing dex parameter documentation to user_state, open_orders, frontend_open_orders, all_mids, and meta docstrings. Fixes hyperliquid-dex#287, fixes hyperliquid-dex#286
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #287, fixes #286
Adds the
dexparameter touser_fillsanduser_fills_by_timeinInfo, matching the pattern already established byuser_state,open_orders,frontend_open_orders,all_mids, andmeta. This enables HIP-3 builder-deployed perpetual market operators to filter fill history by DEX.Also adds missing
dexparameter documentation to the docstrings of the 5 methods that already support it (user_state,open_orders,frontend_open_orders,all_mids,meta).Changes
hyperliquid/info.py: Adddex: str = ""parameter touser_fillsanduser_fills_by_time, pass it through in the POST payloadhyperliquid/info.py: Adddexto Args docstrings for all 7 methods that accept itBackwards Compatibility
The
dexparameter defaults to""(the original dex), so existing callers are unaffected.