refactor: remove get_all_products method from market API wrappers and update documentation

This commit is contained in:
2025-10-01 21:14:09 +02:00
parent 9c471948ff
commit ebd4275017
10 changed files with 21 additions and 56 deletions

View File

@@ -26,14 +26,6 @@ class BaseWrapper:
"""
raise NotImplementedError
def get_all_products(self) -> list['ProductInfo']:
"""
Get product information for all available assets.
Returns:
list[ProductInfo]: A list of objects containing product information.
"""
raise NotImplementedError
def get_historical_prices(self, asset_id: str = "BTC", limit: int = 100) -> list['Price']:
"""
Get historical price data for a specific asset ID.