- MarketAPIs to include BinanceWrapper
- update RedditWrapper & tests
This commit is contained in:
2025-10-01 14:53:00 +02:00
parent 2aa97e264a
commit 6ebd58bdb7
4 changed files with 21 additions and 7 deletions

View File

@@ -18,7 +18,7 @@ class MarketAPIs(BaseWrapper):
def __init__(self, currency: str = "USD"):
self.currency = currency
wrappers = [ CoinBaseWrapper, CryptoCompareWrapper ]
wrappers = [ BinanceWrapper, CoinBaseWrapper, CryptoCompareWrapper ]
self.wrappers: WrapperHandler[BaseWrapper] = WrapperHandler.build_wrappers(wrappers)
def get_product(self, asset_id):