ostium-python-sdk 0.1.41__tar.gz → 0.1.42__tar.gz

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.
Files changed (33) hide show
  1. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/PKG-INFO +3 -1
  2. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/README.md +2 -0
  3. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk.egg-info/PKG-INFO +3 -1
  4. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/setup.py +1 -1
  5. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/MANIFEST.in +0 -0
  6. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/__init__.py +0 -0
  7. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/abi/__init__.py +0 -0
  8. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/abi/abi.py +0 -0
  9. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/abi/faucet_abi.py +0 -0
  10. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/balance.py +0 -0
  11. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/config.py +0 -0
  12. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/constants.py +0 -0
  13. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/exceptions.py +0 -0
  14. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/faucet.py +0 -0
  15. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/formulae.py +0 -0
  16. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/formulae_wrapper.py +0 -0
  17. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/ostium.py +0 -0
  18. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/price.py +0 -0
  19. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/sdk.py +0 -0
  20. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/subgraph.py +0 -0
  21. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk/utils.py +0 -0
  22. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk.egg-info/SOURCES.txt +0 -0
  23. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk.egg-info/dependency_links.txt +0 -0
  24. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk.egg-info/requires.txt +0 -0
  25. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/ostium_python_sdk.egg-info/top_level.txt +0 -0
  26. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/pyproject.toml +0 -0
  27. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/requirements-dev.txt +0 -0
  28. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/requirements.txt +0 -0
  29. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/setup.cfg +0 -0
  30. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/tests/__init__.py +0 -0
  31. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/tests/test_slippage.py +0 -0
  32. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/tests/test_trade_get_tp_price.py +0 -0
  33. {ostium_python_sdk-0.1.41 → ostium_python_sdk-0.1.42}/tests/test_trade_liquidation_price.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: ostium-python-sdk
3
- Version: 0.1.41
3
+ Version: 0.1.42
4
4
  Summary: A python based SDK developed for interacting with Ostium, a leveraged trading application for trading currencies, commodities, indices, crypto and more.
5
5
  Home-page: https://github.com/0xOstium/ostium-python-sdk
6
6
  Author: ami@ostium.io
@@ -183,6 +183,8 @@ else:
183
183
 
184
184
  - `Ostium`: The class for interacting with the Ostium Smart contracts, opening trades, updating take profit and stop loss, closing trades, opening orders, etc. available via `sdk.ostium`.
185
185
 
186
+ - `Faucet`: The class for interacting with the Faucet for getting testnet USDC tokens. available via `sdk.faucet`.
187
+
186
188
  ## Basic Usage
187
189
 
188
190
  The intraction with Ostium platform is denoted with pair_id and trade_index.
@@ -144,6 +144,8 @@ else:
144
144
 
145
145
  - `Ostium`: The class for interacting with the Ostium Smart contracts, opening trades, updating take profit and stop loss, closing trades, opening orders, etc. available via `sdk.ostium`.
146
146
 
147
+ - `Faucet`: The class for interacting with the Faucet for getting testnet USDC tokens. available via `sdk.faucet`.
148
+
147
149
  ## Basic Usage
148
150
 
149
151
  The intraction with Ostium platform is denoted with pair_id and trade_index.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: ostium-python-sdk
3
- Version: 0.1.41
3
+ Version: 0.1.42
4
4
  Summary: A python based SDK developed for interacting with Ostium, a leveraged trading application for trading currencies, commodities, indices, crypto and more.
5
5
  Home-page: https://github.com/0xOstium/ostium-python-sdk
6
6
  Author: ami@ostium.io
@@ -183,6 +183,8 @@ else:
183
183
 
184
184
  - `Ostium`: The class for interacting with the Ostium Smart contracts, opening trades, updating take profit and stop loss, closing trades, opening orders, etc. available via `sdk.ostium`.
185
185
 
186
+ - `Faucet`: The class for interacting with the Faucet for getting testnet USDC tokens. available via `sdk.faucet`.
187
+
186
188
  ## Basic Usage
187
189
 
188
190
  The intraction with Ostium platform is denoted with pair_id and trade_index.
@@ -19,7 +19,7 @@ if changelog_path.exists():
19
19
 
20
20
  setup(
21
21
  name="ostium-python-sdk",
22
- version="0.1.41",
22
+ version="0.1.42",
23
23
  packages=find_packages(),
24
24
  install_requires=read_requirements('requirements.txt'),
25
25
  extras_require={