avantis-trader-sdk 0.3.1__py3-none-any.whl → 0.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- avantis_trader_sdk/__init__.py +22 -1
- avantis_trader_sdk/abis/PairStorage.sol/PairStorage.json +1 -1
- avantis_trader_sdk/client.py +6 -0
- avantis_trader_sdk/config.py +2 -2
- avantis_trader_sdk/rpc/fee_parameters.py +38 -20
- avantis_trader_sdk/rpc/pairs_cache.py +22 -6
- avantis_trader_sdk/rpc/trade.py +60 -2
- avantis_trader_sdk/types.py +71 -9
- {avantis_trader_sdk-0.3.1.dist-info → avantis_trader_sdk-0.6.0.dist-info}/METADATA +2 -2
- {avantis_trader_sdk-0.3.1.dist-info → avantis_trader_sdk-0.6.0.dist-info}/RECORD +12 -12
- {avantis_trader_sdk-0.3.1.dist-info → avantis_trader_sdk-0.6.0.dist-info}/WHEEL +0 -0
- {avantis_trader_sdk-0.3.1.dist-info → avantis_trader_sdk-0.6.0.dist-info}/top_level.txt +0 -0
avantis_trader_sdk/__init__.py
CHANGED
|
@@ -2,4 +2,25 @@ from .client import TraderClient
|
|
|
2
2
|
from .feed.feed_client import FeedClient
|
|
3
3
|
from .signers.base import BaseSigner
|
|
4
4
|
|
|
5
|
-
__version__ = "0.
|
|
5
|
+
__version__ = "0.6.0"
|
|
6
|
+
|
|
7
|
+
# print(
|
|
8
|
+
# f"""
|
|
9
|
+
# ---------------------------------------------------------------------------------
|
|
10
|
+
# ⚠️ IMPORTANT: Avantis Contracts v1.5 Upgrade
|
|
11
|
+
|
|
12
|
+
# Breaking changes are being introduced as part of the v1.5 Contracts Upgrade.
|
|
13
|
+
# If you're using this SDK, please review the details to ensure compatibility.
|
|
14
|
+
|
|
15
|
+
# Details: https://avantisfi.notion.site/avantis-contracts-v1-5-upgrade
|
|
16
|
+
|
|
17
|
+
# Milestone 1: Scheduled for 24th January 2025
|
|
18
|
+
# - Updates to PairStorage, PairInfos, and Multicall contracts.
|
|
19
|
+
|
|
20
|
+
# Milestone 2: Date TBD
|
|
21
|
+
# - Updates to Trading, Referral, TradingStorage, TradingCallbacks, and more.
|
|
22
|
+
|
|
23
|
+
# Ensure your integration is updated to avoid disruptions.
|
|
24
|
+
# ---------------------------------------------------------------------------------
|
|
25
|
+
# """
|
|
26
|
+
# )
|