Skip to content

Commit fd440a8

Browse files
authored
Merge pull request #185 from fireflyprotocol/kevin/BFP-3077-introduce-get-country
[BFP-3077] Introduce GET /v1/exchange/country
2 parents 646bf90 + b3ea5d7 commit fd440a8

File tree

26 files changed

+833
-1
lines changed

26 files changed

+833
-1
lines changed

python/example/main.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,9 @@ async def main():
126126
stats = await exchange_data_api.get_exchange_stats()
127127
log.info(f"{stats=}")
128128

129+
country = await exchange_data_api.get_country()
130+
log.info(f"{country=}")
131+
129132
# ========= Account Data API =========
130133
account_data_api = client.account_data_api
131134
when = ((t := now()) - 60 * 60 * 1000, t) # The past hour.

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

Lines changed: 2 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/__init__.py

Lines changed: 1 addition & 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: 249 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/docs/CountryResponse.md

Lines changed: 30 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)