ddx-python 1.0.3__tar.gz → 1.0.6__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.
- {ddx_python-1.0.3 → ddx_python-1.0.6}/Cargo.lock +2261 -1567
- ddx_python-1.0.6/Cargo.toml +4 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/PKG-INFO +30 -13
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/Cargo.toml +16 -10
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/constants.rs +3 -4
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/error.rs +4 -4
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/types/accounting.rs +4 -2
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/types/auth.rs +28 -40
- ddx_python-1.0.6/core/common/src/types/contract/events.rs +24 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/types/contract.rs +2 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/types/global.rs +22 -8
- ddx_python-1.0.6/core/common/src/types/identifiers.rs +389 -0
- ddx_python-1.0.6/core/common/src/types/kyc.rs +131 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/types/mod.rs +7 -8
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/types/node.rs +18 -10
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/types/primitives/numbers.rs +24 -20
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/types/primitives.rs +398 -19
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/types/state.rs +27 -76
- ddx_python-1.0.6/core/common/src/util/backoff.rs +19 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/util/mod.rs +5 -1
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/util/tokenize.rs +3 -3
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/util/tracing.rs +25 -31
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/crypto/Cargo.toml +6 -4
- ddx_python-1.0.6/core/crypto/src/eip712.rs +445 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/crypto/src/lib.rs +3 -7
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/crypto/src/test_accounts.rs +1 -1
- ddx_python-1.0.6/core/ethereum/Cargo.toml +46 -0
- ddx_python-1.0.6/core/ethereum/src/event.rs +45 -0
- ddx_python-1.0.3/ddx-operator/core/src/types/ethereum.rs → ddx_python-1.0.6/core/ethereum/src/lib.rs +61 -90
- ddx_python-1.0.6/core/ethereum/src/log.rs +120 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/macros/Cargo.toml +1 -2
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/macros/src/lib.rs +2 -2
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/specs/Cargo.toml +2 -2
- ddx_python-1.0.6/core/specs/src/eval.rs +1446 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/specs/src/lib.rs +0 -2
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/Cargo.toml +39 -14
- ddx_python-1.0.6/ddx-operator/core/src/adapter.rs +196 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/constants.rs +30 -36
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/execution/accounting.rs +1 -2
- ddx_python-1.0.6/ddx-operator/core/src/execution/error.rs +497 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/execution/mod.rs +1 -1
- ddx_python-1.0.6/ddx-operator/core/src/execution/test_utils.rs +901 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/execution/validation.rs +25 -29
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/lib.rs +2 -2
- ddx_python-1.0.6/ddx-operator/core/src/specs/constants.rs +222 -0
- ddx_python-1.0.6/ddx-operator/core/src/specs/pred_market_future.rs +684 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/specs/quarterly_expiry_future.rs +4 -49
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/specs/types.rs +232 -35
- ddx_python-1.0.6/ddx-operator/core/src/specs.rs +880 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/tree/README.md +4 -2
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/tree/shared_smt.rs +24 -22
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/types/accounting/balance.rs +3 -4
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/types/accounting.rs +80 -25
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/types/clock.rs +3 -3
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/types/contract_events.rs +22 -76
- ddx_python-1.0.6/ddx-operator/core/src/types/data_source.rs +71 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/types/identifiers.rs +27 -178
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/types/mod.rs +5 -3
- ddx_python-1.0.6/ddx-operator/core/src/types/order.rs +2 -0
- ddx_python-1.0.6/ddx-operator/core/src/types/primitives/product_symbol.rs +965 -0
- ddx_python-1.0.6/ddx-operator/core/src/types/primitives.rs +377 -0
- ddx_python-1.0.6/ddx-operator/core/src/types/request/submitted_json.rs +571 -0
- ddx_python-1.0.6/ddx-operator/core/src/types/request.rs +2775 -0
- ddx_python-1.0.6/ddx-operator/core/src/types/settlement.rs +52 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/types/state/exported.rs +206 -78
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/types/state/tradable_product.rs +108 -60
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/types/state/trader.rs +250 -28
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/types/state.rs +268 -104
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/types/transaction.rs +107 -86
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/util/convert.rs +1 -1
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/util/eip712.rs +94 -56
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/util/env.rs +9 -25
- ddx_python-1.0.6/ddx-operator/core/src/util/ethereum.rs +34 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/util/mod.rs +18 -17
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/util/serde.rs +12 -43
- ddx_python-1.0.6/ddx-operator/core/tests/fixtures/signed-request-identity-vectors.json +41 -0
- ddx_python-1.0.6/ddx-python/AGENTS.md +39 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/Cargo.toml +6 -5
- ddx_python-1.0.6/ddx-python/build.rs +25 -0
- ddx_python-1.0.6/ddx-python/devtools/AGENTS.md +97 -0
- ddx_python-1.0.6/ddx-python/devtools/Dockerfile +9 -0
- ddx_python-1.0.6/ddx-python/devtools/admin_cli/README.md +333 -0
- ddx_python-1.0.6/ddx-python/devtools/admin_cli/RUNBOOK.comprehension.md +211 -0
- ddx_python-1.0.6/ddx-python/devtools/admin_cli/RUNBOOK.planning.md +128 -0
- ddx_python-1.0.6/ddx-python/devtools/admin_cli/cli.py +19 -0
- ddx_python-1.0.6/ddx-python/devtools/admin_cli/codex_runner.py +482 -0
- ddx_python-1.0.6/ddx-python/devtools/admin_cli/comprehension/__init__.py +1 -0
- ddx_python-1.0.6/ddx-python/devtools/admin_cli/comprehension/cli.py +172 -0
- ddx_python-1.0.6/ddx-python/devtools/admin_cli/comprehension/heartbeat.py +1036 -0
- ddx_python-1.0.6/ddx-python/devtools/admin_cli/comprehension/inbound.py +441 -0
- ddx_python-1.0.6/ddx-python/devtools/admin_cli/comprehension/note_edits.py +255 -0
- ddx_python-1.0.6/ddx-python/devtools/admin_cli/project.py +21 -0
- ddx_python-1.0.6/ddx-python/devtools/compose.yml +60 -0
- ddx_python-1.0.6/ddx-python/devtools/experiments/4443-improve-and-cleanup-unit-tests/1_matching_vs_risk_decoupling.md +467 -0
- ddx_python-1.0.6/ddx-python/devtools/experiments/4443-improve-and-cleanup-unit-tests/2_logic_and_sgx_cryptography_conflation.md +184 -0
- ddx_python-1.0.6/ddx-python/devtools/experiments/4443-improve-and-cleanup-unit-tests/3_test_semantics.md +1495 -0
- ddx_python-1.0.6/ddx-python/devtools/experiments/4443-improve-and-cleanup-unit-tests/engine_test_audit.md +510 -0
- ddx_python-1.0.6/ddx-python/devtools/experiments/4443-improve-and-cleanup-unit-tests/issues/4727.md +182 -0
- ddx_python-1.0.6/ddx-python/devtools/experiments/4443-improve-and-cleanup-unit-tests/issues/4728.md +24 -0
- ddx_python-1.0.6/ddx-python/devtools/experiments/4443-improve-and-cleanup-unit-tests/issues/4729.md +22 -0
- ddx_python-1.0.6/ddx-python/devtools/experiments/4443-improve-and-cleanup-unit-tests/specs.md +132 -0
- ddx_python-1.0.6/ddx-python/devtools/experiments/blueprint.md +304 -0
- ddx_python-1.0.6/ddx-python/devtools/experiments/ddx-whitepaper.md +306 -0
- ddx_python-1.0.6/ddx-python/devtools/pyproject.toml +91 -0
- ddx_python-1.0.6/ddx-python/devtools/sdlc/calendar.py +311 -0
- ddx_python-1.0.6/ddx-python/devtools/sdlc/common.py +72 -0
- ddx_python-1.0.6/ddx-python/devtools/sdlc/journal.py +1174 -0
- ddx_python-1.0.6/ddx-python/devtools/sdlc/mentions.py +542 -0
- ddx_python-1.0.6/ddx-python/devtools/sdlc/pm-charter.md +134 -0
- ddx_python-1.0.6/ddx-python/devtools/sdlc/sync.py +617 -0
- ddx_python-1.0.6/ddx-python/devtools/sdlc/team.yml +81 -0
- ddx_python-1.0.6/ddx-python/devtools/sdlc/time_spent.py +373 -0
- ddx_python-1.0.6/ddx-python/devtools/tests/sdlc/conftest.py +14 -0
- ddx_python-1.0.6/ddx-python/devtools/tests/test_comprehension_protocol.py +70 -0
- ddx_python-1.0.6/ddx-python/devtools/uv.lock +911 -0
- ddx_python-1.0.6/ddx-python/exchange-kpis/README.md +100 -0
- ddx_python-1.0.6/ddx-python/exchange-kpis/exchange_kpis/__init__.py +1 -0
- ddx_python-1.0.6/ddx-python/exchange-kpis/exchange_kpis/cli.py +519 -0
- ddx_python-1.0.6/ddx-python/exchange-kpis/exchange_kpis/models.py +45 -0
- ddx_python-1.0.6/ddx-python/exchange-kpis/exchange_kpis/webhooks.py +64 -0
- ddx_python-1.0.6/ddx-python/exchange-kpis/pyproject.toml +24 -0
- ddx_python-1.0.6/ddx-python/exchange-kpis/uv.lock +291 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/fuzzing/pyproject.toml +3 -3
- ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/config/marketmaker.conf.json.template +47 -0
- ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/event.py +28 -0
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy}/chaos_bot.py +15 -3
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy}/chaos_strategies/full_suite.py +90 -51
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy}/chaos_strategies/helpers.py +36 -95
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy}/chaos_strategies/large_deposit.py +24 -17
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy}/chaos_strategies/spawner.py +9 -2
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy}/chaos_strategies/trader_bot.py +48 -6
- ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy/chaos_strategies/trader_bot_tests.py +18 -0
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy}/market_taker.py +32 -28
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy}/sample_chaos_bot.py +4 -2
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy}/sample_mm_auditor_bot.py +4 -2
- ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/market_maker.py +1141 -0
- ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/whitebox_derivadex_client.py +1755 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/mocks/README.md +1 -1
- ddx_python-1.0.6/ddx-python/mocks/price_feed_fuzzer.conf.json.template +92 -0
- ddx_python-1.0.6/ddx-python/mocks/price_feed_fuzzer.py +278 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/mocks/pyproject.toml +4 -4
- ddx_python-1.0.6/ddx-python/notebooks/README.md +88 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/notebooks/monitoring_dashboard.py +0 -5
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/notebooks/pyproject.toml +2 -2
- ddx_python-1.0.6/ddx-python/notebooks/state_root_mismatch.ipynb +443 -0
- ddx_python-1.0.6/ddx-python/python/AGENTS.md +32 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/README.md +2 -3
- ddx_python-1.0.6/ddx-python/python/examples/auditor.py +127 -0
- ddx_python-1.0.6/ddx-python/python/examples/delegated_session_deny_list.py +310 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/examples/deposit_usdc.py +4 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/examples/rest_quickstart.py +31 -5
- ddx_python-1.0.6/ddx-python/python/examples/session_config.json +19 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/examples/ws_quickstart.py +14 -5
- ddx_python-1.0.6/ddx-python/python/tests/affiliate_tests.py +135 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/common_tests/liquidation.py +112 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/common_tests/matching.py +123 -3
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/common_tests/pnl_realization.py +9 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/common_tests/trade_mining.py +139 -15
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/futures_tests.py +2 -2
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/general_tests.py +14 -7
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/account.py +150 -34
- ddx_python-1.0.6/ddx-python/python/tests/harness/diagnostics.py +162 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/execution/block.py +18 -8
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/execution/liquidation.py +47 -27
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/execution/listing.py +10 -1
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/execution/matching.py +218 -32
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/execution/settlement.py +29 -10
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/execution/state.py +129 -30
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/execution/trade_mining.py +25 -16
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/execution/trader.py +75 -8
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/execution/utils.py +6 -2
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/market_data_driver/market_data_driver.py +8 -2
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/matchers/account.py +106 -47
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/store.py +233 -52
- ddx_python-1.0.6/ddx-python/python/tests/session_tests.py +139 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/test_decimal.py +1 -1
- ddx_python-1.0.6/ddx-python/python/tests/test_fuzz_bot_signed_request_contract.py +109 -0
- ddx_python-1.0.6/ddx-python/python/tests/unit/auditor_driver_tests.py +448 -0
- ddx_python-1.0.6/ddx-python/python/tests/unit/liquidation_tests.py +189 -0
- ddx_python-1.0.6/ddx-python/python/tests/unit/package_import_tests.py +287 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/utils/utils.py +17 -16
- ddx_python-1.0.6/ddx-python/scripts/check-release-wheel.bash +160 -0
- ddx_python-1.0.6/ddx-python/src/bin/stub_gen.rs +458 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/src/ddx.rs +121 -2
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/src/decimal.rs +2 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/src/h256.rs +2 -0
- ddx_python-1.0.6/ddx-python/src/lib.rs +84 -0
- ddx_python-1.0.6/ddx-python/uv.lock +3776 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/pyproject.toml +40 -17
- ddx_python-1.0.6/python/ddx/__init__.py +264 -0
- ddx_python-1.0.6/python/ddx/__init__.pyi +17 -0
- ddx_python-1.0.6/python/ddx/_rust/__init__.pyi +17 -0
- ddx_python-1.0.6/python/ddx/_rust/common/__init__.pyi +169 -0
- ddx_python-1.0.6/python/ddx/_rust/common/accounting.pyi +74 -0
- ddx_python-1.0.6/python/ddx/_rust/common/enums.pyi +76 -0
- ddx_python-1.0.6/python/ddx/_rust/common/requests/__init__.pyi +220 -0
- ddx_python-1.0.6/python/ddx/_rust/common/requests/intents.pyi +637 -0
- ddx_python-1.0.6/python/ddx/_rust/common/specs.pyi +180 -0
- ddx_python-1.0.6/python/ddx/_rust/common/state/__init__.pyi +1154 -0
- ddx_python-1.0.6/python/ddx/_rust/common/state/keys.pyi +358 -0
- ddx_python-1.0.6/python/ddx/_rust/common/transactions.pyi +107 -0
- ddx_python-1.0.6/python/ddx/_rust/decimal.pyi +97 -0
- ddx_python-1.0.6/python/ddx/_rust/h256.pyi +75 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/python/ddx/app_config/ethereum/addresses.json +11 -11
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/auditor/README.md +3 -3
- {ddx_python-1.0.3 → ddx_python-1.0.6}/python/ddx/auditor/auditor_driver.py +142 -50
- {ddx_python-1.0.3 → ddx_python-1.0.6}/python/ddx/common/fill_context.py +2 -5
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/item_utils.py +4 -16
- {ddx_python-1.0.3/ddx-python/python/tests/harness → ddx_python-1.0.6/python/ddx/common}/market_aware_account.py +11 -8
- {ddx_python-1.0.3 → ddx_python-1.0.6}/python/ddx/common/market_specs.py +2 -2
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/funding.py +1 -3
- {ddx_python-1.0.3 → ddx_python-1.0.6}/python/ddx/common/transactions/genesis.py +16 -16
- {ddx_python-1.0.3 → ddx_python-1.0.6}/python/ddx/common/transactions/inner/fill.py +18 -17
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/inner/liquidation_fill.py +0 -2
- ddx_python-1.0.6/python/ddx/common/transactions/inner/trade_fill.py +296 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/python/ddx/common/transactions/insurance_fund_update.py +3 -7
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/insurance_fund_withdraw.py +6 -5
- {ddx_python-1.0.3 → ddx_python-1.0.6}/python/ddx/common/transactions/liquidation.py +44 -10
- {ddx_python-1.0.3 → ddx_python-1.0.6}/python/ddx/common/transactions/pnl_realization.py +1 -3
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/price_checkpoint.py +3 -2
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/strategy_update.py +9 -7
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/tradable_product_update.py +5 -5
- ddx_python-1.0.6/python/ddx/common/transactions/trader_update.py +204 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/withdraw.py +4 -5
- {ddx_python-1.0.3 → ddx_python-1.0.6}/python/ddx/derivadex_client.py +22 -6
- ddx_python-1.0.6/python/ddx/models/base.py +132 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/realtime_client/models/__init__.py +64 -136
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/realtime_client/realtime_client.py +138 -59
- {ddx_python-1.0.3 → ddx_python-1.0.6}/python/ddx/realtime_client/tests/realtime_client_tests.py +56 -47
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/rest_client/clients/base_client.py +8 -3
- {ddx_python-1.0.3 → ddx_python-1.0.6}/python/ddx/rest_client/clients/market_client.py +4 -2
- {ddx_python-1.0.3 → ddx_python-1.0.6}/python/ddx/rest_client/clients/on_chain_client.py +12 -0
- ddx_python-1.0.6/python/ddx/rest_client/clients/signed_client.py +601 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/rest_client/clients/system_client.py +6 -6
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/rest_client/clients/trade_client.py +31 -9
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/rest_client/constants/endpoints.py +3 -3
- {ddx_python-1.0.3 → ddx_python-1.0.6}/python/ddx/rest_client/contracts/i_stake/__init__.py +90 -48
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/rest_client/exceptions/exceptions.py +16 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/rest_client/http/http_client.py +99 -46
- ddx_python-1.0.6/python/ddx/rest_client/models/market.py +696 -0
- ddx_python-1.0.6/python/ddx/rest_client/models/signed.py +146 -0
- ddx_python-1.0.6/python/ddx/rest_client/models/system.py +311 -0
- ddx_python-1.0.6/python/ddx/rest_client/models/trade.py +185 -0
- ddx_python-1.0.6/python/ddx/rest_client/tests/signed_client_tests.py +1143 -0
- ddx_python-1.0.6/python/ddx/rest_client/tests/ticker_tests.py +99 -0
- ddx_python-1.0.3/Cargo.toml +0 -4
- ddx_python-1.0.3/core/common/src/types/identifiers.rs +0 -154
- ddx_python-1.0.3/core/common/src/util/backoff.rs +0 -13
- ddx_python-1.0.3/core/crypto/src/eip712.rs +0 -149
- ddx_python-1.0.3/core/specs/src/eval.rs +0 -982
- ddx_python-1.0.3/ddx-operator/core/src/execution/error.rs +0 -200
- ddx_python-1.0.3/ddx-operator/core/src/execution/test_utils.rs +0 -766
- ddx_python-1.0.3/ddx-operator/core/src/specs.rs +0 -694
- ddx_python-1.0.3/ddx-operator/core/src/types/primitives.rs +0 -870
- ddx_python-1.0.3/ddx-operator/core/src/types/request.rs +0 -1817
- ddx_python-1.0.3/ddx-python/fuzzing/ddx_python_fuzzing.egg-info/PKG-INFO +0 -66
- ddx_python-1.0.3/ddx-python/fuzzing/ddx_python_fuzzing.egg-info/SOURCES.txt +0 -13
- ddx_python-1.0.3/ddx-python/fuzzing/ddx_python_fuzzing.egg-info/dependency_links.txt +0 -1
- ddx_python-1.0.3/ddx-python/fuzzing/ddx_python_fuzzing.egg-info/requires.txt +0 -32
- ddx_python-1.0.3/ddx-python/fuzzing/ddx_python_fuzzing.egg-info/top_level.txt +0 -1
- ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/auditor/auditor.py +0 -47
- ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/auditor.conf.json.template +0 -17
- ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies/market_maker.py +0 -703
- ddx_python-1.0.3/ddx-python/mocks/ddx_python_mocks.egg-info/PKG-INFO +0 -107
- ddx_python-1.0.3/ddx-python/mocks/ddx_python_mocks.egg-info/SOURCES.txt +0 -11
- ddx_python-1.0.3/ddx-python/mocks/ddx_python_mocks.egg-info/dependency_links.txt +0 -1
- ddx_python-1.0.3/ddx-python/mocks/ddx_python_mocks.egg-info/requires.txt +0 -34
- ddx_python-1.0.3/ddx-python/mocks/ddx_python_mocks.egg-info/top_level.txt +0 -2
- ddx_python-1.0.3/ddx-python/mocks/price_feed_fuzzer.conf.json.template +0 -41
- ddx_python-1.0.3/ddx-python/mocks/price_feed_fuzzer.py +0 -157
- ddx_python-1.0.3/ddx-python/notebooks/README.md +0 -56
- ddx_python-1.0.3/ddx-python/notebooks/ddx_python_notebooks.egg-info/PKG-INFO +0 -105
- ddx_python-1.0.3/ddx-python/notebooks/ddx_python_notebooks.egg-info/SOURCES.txt +0 -8
- ddx_python-1.0.3/ddx-python/notebooks/ddx_python_notebooks.egg-info/dependency_links.txt +0 -1
- ddx_python-1.0.3/ddx-python/notebooks/ddx_python_notebooks.egg-info/requires.txt +0 -37
- ddx_python-1.0.3/ddx-python/notebooks/ddx_python_notebooks.egg-info/top_level.txt +0 -1
- ddx_python-1.0.3/ddx-python/notebooks/state_root_mismatch.ipynb +0 -473
- ddx_python-1.0.3/ddx-python/python/ddx/__init__.py +0 -58
- ddx_python-1.0.3/ddx-python/python/ddx/_rust/__init__.pyi +0 -2009
- ddx_python-1.0.3/ddx-python/python/ddx/_rust/common/__init__.pyi +0 -17
- ddx_python-1.0.3/ddx-python/python/ddx/_rust/common/accounting.pyi +0 -6
- ddx_python-1.0.3/ddx-python/python/ddx/_rust/common/enums.pyi +0 -3
- ddx_python-1.0.3/ddx-python/python/ddx/_rust/common/requests/__init__.pyi +0 -21
- ddx_python-1.0.3/ddx-python/python/ddx/_rust/common/requests/intents.pyi +0 -19
- ddx_python-1.0.3/ddx-python/python/ddx/_rust/common/specs.pyi +0 -17
- ddx_python-1.0.3/ddx-python/python/ddx/_rust/common/state/__init__.pyi +0 -41
- ddx_python-1.0.3/ddx-python/python/ddx/_rust/common/state/keys.pyi +0 -29
- ddx_python-1.0.3/ddx-python/python/ddx/_rust/common/transactions.pyi +0 -7
- ddx_python-1.0.3/ddx-python/python/ddx/_rust/decimal.pyi +0 -3
- ddx_python-1.0.3/ddx-python/python/ddx/_rust/h256.pyi +0 -3
- ddx_python-1.0.3/ddx-python/python/ddx/app_config/ethereum/addresses.json +0 -541
- ddx_python-1.0.3/ddx-python/python/ddx/auditor/auditor_driver.py +0 -1034
- ddx_python-1.0.3/ddx-python/python/ddx/common/fill_context.py +0 -144
- ddx_python-1.0.3/ddx-python/python/ddx/common/market_specs.py +0 -64
- ddx_python-1.0.3/ddx-python/python/ddx/common/transactions/disaster_recovery.py +0 -97
- ddx_python-1.0.3/ddx-python/python/ddx/common/transactions/genesis.py +0 -108
- ddx_python-1.0.3/ddx-python/python/ddx/common/transactions/inner/fill.py +0 -227
- ddx_python-1.0.3/ddx-python/python/ddx/common/transactions/inner/trade_fill.py +0 -125
- ddx_python-1.0.3/ddx-python/python/ddx/common/transactions/insurance_fund_update.py +0 -142
- ddx_python-1.0.3/ddx-python/python/ddx/common/transactions/liquidation.py +0 -357
- ddx_python-1.0.3/ddx-python/python/ddx/common/transactions/pnl_realization.py +0 -122
- ddx_python-1.0.3/ddx-python/python/ddx/common/transactions/trader_update.py +0 -105
- ddx_python-1.0.3/ddx-python/python/ddx/derivadex_client.py +0 -254
- ddx_python-1.0.3/ddx-python/python/ddx/realtime_client/logs/pytest.log +0 -0
- ddx_python-1.0.3/ddx-python/python/ddx/realtime_client/tests/realtime_client_tests.py +0 -420
- ddx_python-1.0.3/ddx-python/python/ddx/rest_client/clients/market_client.py +0 -1241
- ddx_python-1.0.3/ddx-python/python/ddx/rest_client/clients/on_chain_client.py +0 -432
- ddx_python-1.0.3/ddx-python/python/ddx/rest_client/clients/signed_client.py +0 -301
- ddx_python-1.0.3/ddx-python/python/ddx/rest_client/contracts/i_stake/__init__.py +0 -696
- ddx_python-1.0.3/ddx-python/python/ddx/rest_client/models/market.py +0 -683
- ddx_python-1.0.3/ddx-python/python/ddx/rest_client/models/signed.py +0 -60
- ddx_python-1.0.3/ddx-python/python/ddx/rest_client/models/system.py +0 -390
- ddx_python-1.0.3/ddx-python/python/ddx/rest_client/models/trade.py +0 -140
- ddx_python-1.0.3/ddx-python/python/tests/logs/pytest.log +0 -0
- ddx_python-1.0.3/ddx-python/src/bin/stub_gen.rs +0 -7
- ddx_python-1.0.3/ddx-python/src/lib.rs +0 -37
- ddx_python-1.0.3/python/ddx/__init__.py +0 -58
- ddx_python-1.0.3/python/ddx/_rust/__init__.pyi +0 -2009
- ddx_python-1.0.3/python/ddx/_rust/common/__init__.pyi +0 -17
- ddx_python-1.0.3/python/ddx/_rust/common/accounting.pyi +0 -6
- ddx_python-1.0.3/python/ddx/_rust/common/enums.pyi +0 -3
- ddx_python-1.0.3/python/ddx/_rust/common/requests/__init__.pyi +0 -21
- ddx_python-1.0.3/python/ddx/_rust/common/requests/intents.pyi +0 -19
- ddx_python-1.0.3/python/ddx/_rust/common/specs.pyi +0 -17
- ddx_python-1.0.3/python/ddx/_rust/common/state/__init__.pyi +0 -41
- ddx_python-1.0.3/python/ddx/_rust/common/state/keys.pyi +0 -29
- ddx_python-1.0.3/python/ddx/_rust/common/transactions.pyi +0 -7
- ddx_python-1.0.3/python/ddx/_rust/decimal.pyi +0 -3
- ddx_python-1.0.3/python/ddx/_rust/h256.pyi +0 -3
- ddx_python-1.0.3/python/ddx/auditor/README.md +0 -32
- ddx_python-1.0.3/python/ddx/auditor/websocket_message.py +0 -54
- ddx_python-1.0.3/python/ddx/common/epoch_params.py +0 -28
- ddx_python-1.0.3/python/ddx/common/item_utils.py +0 -38
- ddx_python-1.0.3/python/ddx/common/logging.py +0 -184
- ddx_python-1.0.3/python/ddx/common/trade_mining_params.py +0 -19
- ddx_python-1.0.3/python/ddx/common/transaction_utils.py +0 -85
- ddx_python-1.0.3/python/ddx/common/transactions/advance_epoch.py +0 -91
- ddx_python-1.0.3/python/ddx/common/transactions/advance_settlement_epoch.py +0 -63
- ddx_python-1.0.3/python/ddx/common/transactions/all_price_checkpoints.py +0 -84
- ddx_python-1.0.3/python/ddx/common/transactions/cancel.py +0 -76
- ddx_python-1.0.3/python/ddx/common/transactions/cancel_all.py +0 -88
- ddx_python-1.0.3/python/ddx/common/transactions/complete_fill.py +0 -103
- ddx_python-1.0.3/python/ddx/common/transactions/disaster_recovery.py +0 -97
- ddx_python-1.0.3/python/ddx/common/transactions/event.py +0 -48
- ddx_python-1.0.3/python/ddx/common/transactions/fee_distribution.py +0 -119
- ddx_python-1.0.3/python/ddx/common/transactions/funding.py +0 -294
- ddx_python-1.0.3/python/ddx/common/transactions/futures_expiry.py +0 -123
- ddx_python-1.0.3/python/ddx/common/transactions/inner/__init__.py +0 -0
- ddx_python-1.0.3/python/ddx/common/transactions/inner/adl_outcome.py +0 -25
- ddx_python-1.0.3/python/ddx/common/transactions/inner/liquidated_position.py +0 -41
- ddx_python-1.0.3/python/ddx/common/transactions/inner/liquidation_entry.py +0 -41
- ddx_python-1.0.3/python/ddx/common/transactions/inner/liquidation_fill.py +0 -118
- ddx_python-1.0.3/python/ddx/common/transactions/inner/outcome.py +0 -32
- ddx_python-1.0.3/python/ddx/common/transactions/inner/trade_fill.py +0 -125
- ddx_python-1.0.3/python/ddx/common/transactions/insurance_fund_withdraw.py +0 -99
- ddx_python-1.0.3/python/ddx/common/transactions/partial_fill.py +0 -125
- ddx_python-1.0.3/python/ddx/common/transactions/post.py +0 -72
- ddx_python-1.0.3/python/ddx/common/transactions/post_order.py +0 -95
- ddx_python-1.0.3/python/ddx/common/transactions/price_checkpoint.py +0 -96
- ddx_python-1.0.3/python/ddx/common/transactions/signer_registered.py +0 -62
- ddx_python-1.0.3/python/ddx/common/transactions/specs_update.py +0 -61
- ddx_python-1.0.3/python/ddx/common/transactions/strategy_update.py +0 -156
- ddx_python-1.0.3/python/ddx/common/transactions/tradable_product_update.py +0 -98
- ddx_python-1.0.3/python/ddx/common/transactions/trade_mining.py +0 -147
- ddx_python-1.0.3/python/ddx/common/transactions/trader_update.py +0 -105
- ddx_python-1.0.3/python/ddx/common/transactions/withdraw.py +0 -91
- ddx_python-1.0.3/python/ddx/common/transactions/withdraw_ddx.py +0 -74
- ddx_python-1.0.3/python/ddx/common/utils.py +0 -176
- ddx_python-1.0.3/python/ddx/config.py +0 -17
- ddx_python-1.0.3/python/ddx/py.typed +0 -0
- ddx_python-1.0.3/python/ddx/realtime_client/__init__.py +0 -2
- ddx_python-1.0.3/python/ddx/realtime_client/config.py +0 -2
- ddx_python-1.0.3/python/ddx/realtime_client/logs/pytest.log +0 -0
- ddx_python-1.0.3/python/ddx/realtime_client/models/__init__.py +0 -683
- ddx_python-1.0.3/python/ddx/realtime_client/realtime_client.py +0 -567
- ddx_python-1.0.3/python/ddx/rest_client/__init__.py +0 -0
- ddx_python-1.0.3/python/ddx/rest_client/clients/__init__.py +0 -0
- ddx_python-1.0.3/python/ddx/rest_client/clients/base_client.py +0 -60
- ddx_python-1.0.3/python/ddx/rest_client/clients/signed_client.py +0 -301
- ddx_python-1.0.3/python/ddx/rest_client/clients/system_client.py +0 -843
- ddx_python-1.0.3/python/ddx/rest_client/clients/trade_client.py +0 -335
- ddx_python-1.0.3/python/ddx/rest_client/constants/__init__.py +0 -0
- ddx_python-1.0.3/python/ddx/rest_client/constants/endpoints.py +0 -67
- ddx_python-1.0.3/python/ddx/rest_client/contracts/__init__.py +0 -0
- ddx_python-1.0.3/python/ddx/rest_client/contracts/checkpoint/__init__.py +0 -560
- ddx_python-1.0.3/python/ddx/rest_client/contracts/ddx/__init__.py +0 -1949
- ddx_python-1.0.3/python/ddx/rest_client/contracts/dummy_token/__init__.py +0 -1014
- ddx_python-1.0.3/python/ddx/rest_client/contracts/i_collateral/__init__.py +0 -1414
- ddx_python-1.0.3/python/ddx/rest_client/exceptions/__init__.py +0 -0
- ddx_python-1.0.3/python/ddx/rest_client/exceptions/exceptions.py +0 -32
- ddx_python-1.0.3/python/ddx/rest_client/http/__init__.py +0 -0
- ddx_python-1.0.3/python/ddx/rest_client/http/http_client.py +0 -305
- ddx_python-1.0.3/python/ddx/rest_client/models/__init__.py +0 -0
- ddx_python-1.0.3/python/ddx/rest_client/models/market.py +0 -683
- ddx_python-1.0.3/python/ddx/rest_client/models/signed.py +0 -60
- ddx_python-1.0.3/python/ddx/rest_client/models/system.py +0 -390
- ddx_python-1.0.3/python/ddx/rest_client/models/trade.py +0 -140
- ddx_python-1.0.3/python/ddx/rest_client/utils/__init__.py +0 -0
- ddx_python-1.0.3/python/ddx/rest_client/utils/encryption_utils.py +0 -26
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/global.rs +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/lib.rs +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/types/exported.rs +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/types/transaction.rs +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/common/src/util/mem.rs +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/crypto/src/encryption.rs +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/crypto/src/signing.rs +0 -0
- {ddx_python-1.0.3/ddx-operator/core/src/types → ddx_python-1.0.6/core/ethereum/src}/checkpoint.rs +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/specs/src/float_parser.rs +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/core/specs/src/str_parser.rs +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/specs/index_fund.rs +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/tree/mod.rs +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/tree/shared_store.rs +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-operator/core/src/trusted_settings.rs +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/fuzzing/README.md +0 -0
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy}/README.md +0 -0
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies/chaos_strategies → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing/test_utils → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy/chaos_strategies}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy/config}/chaos.conf.json.template +0 -0
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy/config}/marketmaker.conf.json.template +0 -0
- {ddx_python-1.0.3/ddx-python/fuzzing/whitebox_fuzzing → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/legacy/config}/markettaker.conf.json.template +0 -0
- {ddx_python-1.0.3/ddx-python/python/ddx/auditor → ddx_python-1.0.6/ddx-python/fuzzing/whitebox_fuzzing/test_utils}/__init__.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/fuzzing/whitebox_fuzzing/test_utils/test_derivadex_client.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/fuzzing/whitebox_fuzzing/test_utils/test_kyc_client.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/fuzzing/whitebox_fuzzing/test_utils/test_on_chain_client.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/mocks/MANIFEST.in +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/mocks/mock_kyc.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/notebooks/auditor_replay.ipynb +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/notebooks/exchange_dashboard.ipynb +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/notebooks/frontend_dashboard.ipynb +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/notebooks/multi_node_diverge.ipynb +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/notebooks/performance_dashboard.ipynb +0 -0
- {ddx_python-1.0.3/ddx-python/python/ddx/common → ddx_python-1.0.6/ddx-python/python/examples}/__init__.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/fuzz-compose.template.ini +0 -0
- {ddx_python-1.0.3/ddx-python/python/ddx/common/transactions → ddx_python-1.0.6/ddx-python/python/tests}/__init__.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/common_tests/__init__.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/conftest.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Add_000_001.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Add_100_100.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Add_111_111.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Div_100_100.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Div_101_010.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Div_110_000.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Div_111_110.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Div_111_111.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Mul_001_000.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Mul_010_111.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Mul_100_101.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Mul_110_001.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Mul_111_111.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Rem_101_101.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Rem_111_000.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Rem_111_110.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Sub_101_110.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Sub_110_011.csv +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/decimal/Sub_111_111.csv +0 -0
- {ddx_python-1.0.3/ddx-python/python/ddx/common/transactions/inner → ddx_python-1.0.6/ddx-python/python/tests/harness}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python/python/ddx/rest_client → ddx_python-1.0.6/ddx-python/python/tests/harness/execution}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python/python/ddx/rest_client/clients → ddx_python-1.0.6/ddx-python/python/tests/harness/market_data_driver}/__init__.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/market_data_driver/custom_market_data_driver.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/market_data_driver/exchange_market_data_driver.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/market_data_driver/tick.py +0 -0
- {ddx_python-1.0.3/ddx-python/python/ddx/rest_client/constants → ddx_python-1.0.6/ddx-python/python/tests/harness/matchers}/__init__.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/matchers/fuzzed_account.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/matchers/tick.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/matchers/utils.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/order_book.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/harness/wallet.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/mock_transactions.json +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/perps_tests.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/python_only.py +0 -0
- {ddx_python-1.0.3 → ddx_python-1.0.6}/ddx-python/python/tests/test_ddx_common.py +0 -0
- {ddx_python-1.0.3/ddx-python/python/ddx/rest_client/contracts → ddx_python-1.0.6/ddx-python/python/utils}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python/python/ddx/rest_client/exceptions → ddx_python-1.0.6/python/ddx/auditor}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/auditor/websocket_message.py +0 -0
- {ddx_python-1.0.3/ddx-python/python/ddx/rest_client/http → ddx_python-1.0.6/python/ddx/common}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/epoch_params.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/logging.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/trade_mining_params.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transaction_utils.py +0 -0
- {ddx_python-1.0.3/ddx-python/python/ddx/rest_client/models → ddx_python-1.0.6/python/ddx/common/transactions}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/advance_epoch.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/advance_settlement_epoch.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/all_price_checkpoints.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/cancel.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/cancel_all.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/complete_fill.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/event.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/fee_distribution.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/futures_expiry.py +0 -0
- {ddx_python-1.0.3/ddx-python/python/ddx/rest_client/utils → ddx_python-1.0.6/python/ddx/common/transactions/inner}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/inner/adl_outcome.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/inner/liquidated_position.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/inner/liquidation_entry.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/inner/outcome.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/partial_fill.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/post.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/post_order.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/signer_registered.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/specs_update.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/trade_mining.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/transactions/withdraw_ddx.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/common/utils.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/config.py +0 -0
- {ddx_python-1.0.3/ddx-python/python/examples → ddx_python-1.0.6/python/ddx/models}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/py.typed +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/realtime_client/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/realtime_client/config.py +0 -0
- {ddx_python-1.0.3/ddx-python/python/tests → ddx_python-1.0.6/python/ddx/rest_client}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python/python/tests/harness → ddx_python-1.0.6/python/ddx/rest_client/clients}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python/python/tests/harness/execution → ddx_python-1.0.6/python/ddx/rest_client/constants}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python/python/tests/harness/market_data_driver → ddx_python-1.0.6/python/ddx/rest_client/contracts}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/rest_client/contracts/checkpoint/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/rest_client/contracts/ddx/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/rest_client/contracts/dummy_token/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/rest_client/contracts/i_collateral/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python/python/tests/harness/matchers → ddx_python-1.0.6/python/ddx/rest_client/exceptions}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python/python/utils → ddx_python-1.0.6/python/ddx/rest_client/http}/__init__.py +0 -0
- {ddx_python-1.0.3/python/ddx/auditor → ddx_python-1.0.6/python/ddx/rest_client/models}/__init__.py +0 -0
- {ddx_python-1.0.3/python/ddx/common → ddx_python-1.0.6/python/ddx/rest_client/utils}/__init__.py +0 -0
- {ddx_python-1.0.3/ddx-python → ddx_python-1.0.6}/python/ddx/rest_client/utils/encryption_utils.py +0 -0
- {ddx_python-1.0.3/python/ddx/common/transactions → ddx_python-1.0.6/python/ddx/utils}/__init__.py +0 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.