Skip to content

Commit ca45112

Browse files
Merge pull request #65 from fireflyprotocol/nikita/BFP-1549
BFP-1549: /tickers endpoint support
2 parents e9dd81d + d07cdcb commit ca45112

65 files changed

Lines changed: 1193 additions & 1160 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

python/example/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,13 +116,13 @@ async def main():
116116
# sample script; for example:
117117
#
118118
# ../example/main.py |& cut -b -160
119-
depth, ticker, recent_trades, funding_rate_history = await asyncio.gather(
119+
depth, tickers, recent_trades, funding_rate_history = await asyncio.gather(
120120
exchange_data_api.get_orderbook_depth(market.symbol),
121-
exchange_data_api.get_market_ticker(market.symbol),
121+
exchange_data_api.get_all_market_ticker(),
122122
exchange_data_api.get_recent_trades(market.symbol),
123123
exchange_data_api.get_funding_rate_history(market.symbol),
124124
)
125-
log.info(f"{depth=} {ticker=} {recent_trades=} {funding_rate_history=}")
125+
log.info(f"{depth=} {tickers=} {recent_trades=} {funding_rate_history=}")
126126

127127
# ========= Account Data API =========
128128
account_data_api = client.account_data_api

python/sdk/src/.openapi-generator/FILES

Lines changed: 86 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/sdk/src/openapi_client/api/exchange_api.py

Lines changed: 242 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)