From c3e56278f490110350ecaa7d8720f126fd5644f4 Mon Sep 17 00:00:00 2001 From: yasir_ejaz Date: Tue, 12 Sep 2023 23:11:58 +0400 Subject: [PATCH 1/2] RequiredOrderFields requires a symbol instead of market field --- src/bluefin_v2_client/interfaces.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/bluefin_v2_client/interfaces.py b/src/bluefin_v2_client/interfaces.py index 4dc4d90..22fabd8 100644 --- a/src/bluefin_v2_client/interfaces.py +++ b/src/bluefin_v2_client/interfaces.py @@ -22,8 +22,7 @@ class SignedOrder(Order): class RequiredOrderFields(TypedDict): - # symbol: MARKET_SYMBOLS # market for which to create order - market: str + symbol: MARKET_SYMBOLS # market for which to create order price: int # price at which to place order. Will be zero for a market order quantity: int # quantity/size of order side: ORDER_SIDE # BUY/SELL From ac7fd2284c3c496826ce278758af3bba4e5ad9b8 Mon Sep 17 00:00:00 2001 From: yasir_ejaz Date: Tue, 12 Sep 2023 23:12:15 +0400 Subject: [PATCH 2/2] Bump up version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 92a8d49..2a2de62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "bluefin_v2_client" -version = "2.4.0" +version = "2.5.0" description = "Library to interact with Bluefin exchange protocol including its off-chain api-gateway and on-chain contracts" readme = "README.md" requires-python = ">=3.8"