polynode 0.9.2__tar.gz → 0.9.3__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.
- {polynode-0.9.2 → polynode-0.9.3}/.gitignore +3 -0
- {polynode-0.9.2 → polynode-0.9.3}/PKG-INFO +1 -1
- {polynode-0.9.2 → polynode-0.9.3}/polynode/trading/constants.py +1 -1
- {polynode-0.9.2 → polynode-0.9.3}/pyproject.toml +1 -1
- {polynode-0.9.2 → polynode-0.9.3}/tests/test_trading.py +1 -1
- {polynode-0.9.2 → polynode-0.9.3}/README.md +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/__init__.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/_version.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/cache/__init__.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/client.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/engine.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/errors.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/orderbook.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/orderbook_state.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/redemption_watcher.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/short_form.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/subscription.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/testing.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/trading/V2_ORDER_FLOW.md +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/trading/__init__.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/trading/clob_api.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/trading/cosigner.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/trading/eip712.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/trading/escrow.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/trading/onboarding.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/trading/position_management.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/trading/privy.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/trading/relayer.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/trading/signer.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/trading/sqlite_backend.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/trading/trader.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/trading/types.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/types/__init__.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/types/enums.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/types/events.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/types/orderbook.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/types/rest.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/types/short_form.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/types/ws.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/polynode/ws.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/tests/__init__.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/tests/conftest.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/tests/test_client.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/tests/test_orderbook.py +0 -0
- {polynode-0.9.2 → polynode-0.9.3}/tests/test_types.py +0 -0
|
@@ -12,7 +12,7 @@ NEG_RISK_CTF_EXCHANGE = "0xC5d563A36AE78145C45a50134d48A1215220f80a"
|
|
|
12
12
|
NEG_RISK_ADAPTER = "0xd91E80cF2E7be2e162c6513ceD06f1dD0dA35296"
|
|
13
13
|
|
|
14
14
|
# ── V2 ──
|
|
15
|
-
CLOB_HOST_V2 = "https://clob
|
|
15
|
+
CLOB_HOST_V2 = "https://clob.polymarket.com"
|
|
16
16
|
CTF_EXCHANGE_V2 = "0xe111180000d2663c0091e4f400237545b87b996b"
|
|
17
17
|
NEG_RISK_CTF_EXCHANGE_V2_A = "0xe2222d279d744050d28e00520010520000310f59"
|
|
18
18
|
NEG_RISK_CTF_EXCHANGE_V2_B = "0xe2222d002000ba0053cef3375333610f64600036"
|
|
@@ -81,7 +81,7 @@ def test_safe_address_derivation():
|
|
|
81
81
|
|
|
82
82
|
def test_v2_constants():
|
|
83
83
|
"""V2 CLOB host and exchange addresses are correct."""
|
|
84
|
-
assert CLOB_HOST_V2 == "https://clob
|
|
84
|
+
assert CLOB_HOST_V2 == "https://clob.polymarket.com"
|
|
85
85
|
assert CTF_EXCHANGE_V2 == "0xe111180000d2663c0091e4f400237545b87b996b"
|
|
86
86
|
assert NEG_RISK_CTF_EXCHANGE_V2_A == "0xe2222d279d744050d28e00520010520000310f59"
|
|
87
87
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|