Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .apigen-state
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"version": "1",
"algorithm": "sha256",
"generated_at": "2026-02-23T19:51:11.960440Z",
"generated_at": "2026-02-23T21:15:02.935039Z",
"spec_files": {
"resources/account-data-api.yaml": "006077b90f4300d364279d96d307f1274d44425c26d04f841e0fbcb21ca1b385",
"resources/account-data-api.yaml": "880923d021343a11da512c32154d8f220c308e97a6c0bf6ce1857774acc62fe4",
"resources/auth-api.yaml": "d323937afd8fd9431a1075bb7ae06a28181848afd6e5278675b9a2945b9257c1",
"resources/bluefin-api.yaml": "78944468df304dc33cffbc2b63635ee8227a414bb6ec1c04cbd56d0f55524352",
"resources/common.yaml": "987eff2a0278455a20d99428d4fd79f242c80b6a2fc77ee6201fd46c993bd61e",
"resources/bluefin-api.yaml": "aa5ac52d740db0bfedb48ff771e06503a81fe80fb99b78229ca8b8b1d6b38b3f",
"resources/common.yaml": "f0140950057e524457e5197c5b20bf8d74342e596378043ff8b4c75b5a3fc036",
"resources/exchange-api.yaml": "01fdc7056531ec2e71a16c3c982a0776cbe3f5af1444bd264a536457a2b023b0",
"resources/rewards-data-api.yaml": "2c715683d080ad11aa7667d81e36b1f36839da5d2af1bd3ce0d164db6f19cb0c",
"resources/trade-api.yaml": "229ac3d9a7a30b640db928cc5d99cddc4e185e70b76e7c0d7273f94225cd1d37",
"resources/websocket-api.yaml": "eefb5b151d020ca372577927bb740b3bf1206cc2d31f8c0d8763bf6e56590330"
},
"combined_hash": "d3f4fe2bda4a48646eb70f674a5df17e0cb8df0e7917a89f832f437e61044895"
"combined_hash": "11b92543a2761210a11c1a3d643f86a9c5882c5c3fd8ad4a779e95179f3626ee"
}
3 changes: 3 additions & 0 deletions python/example/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ async def main():
country = await exchange_data_api.get_country()
log.info(f"{country=}")

leaderboard = await exchange_data_api.get_leaderboard()
log.info(f"{leaderboard=}")

# ========= Account Data API =========
account_data_api = client.account_data_api
when = ((t := now()) - 60 * 60 * 1000, t) # The past hour.
Expand Down
2 changes: 1 addition & 1 deletion python/sdk/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ additionalProperties:
library: asyncio
generateSourceCodeOnly: true
useOneOfDiscriminatorLookup: true
packageVersion: 1.9.0
packageVersion: 1.10.0
2 changes: 1 addition & 1 deletion python/sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ description = "Python Boilerplate contains all the boilerplate you need to creat
name = "bluefin_pro_sdk"
readme = "README.rst"
requires-python = ">=3.9.2,<3.13.0"
version = "1.9.0"
version = "1.10.0"

[[project.authors]]
email = "audreyr@example.com"
Expand Down
12 changes: 12 additions & 0 deletions python/sdk/src/.openapi-generator/FILES

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion python/sdk/src/openapi_client/__init__.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading