ddx-python 0.0.0__tar.gz → 0.0.8__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-0.0.0 → ddx_python-0.0.8}/Cargo.lock +4556 -1938
- {ddx_python-0.0.0 → ddx_python-0.0.8}/Cargo.toml +0 -2
- {ddx_python-0.0.0 → ddx_python-0.0.8}/PKG-INFO +3 -3
- ddx_python-0.0.8/core/common/Cargo.toml +67 -0
- ddx_python-0.0.8/core/common/src/constants.rs +47 -0
- ddx_python-0.0.8/core/common/src/error.rs +115 -0
- ddx_python-0.0.8/core/common/src/global.rs +121 -0
- ddx_python-0.0.8/core/common/src/lib.rs +21 -0
- ddx_python-0.0.8/core/common/src/types/accounting.rs +222 -0
- ddx_python-0.0.8/core/common/src/types/contract.rs +84 -0
- ddx_python-0.0.8/core/common/src/types/exported.rs +39 -0
- ddx_python-0.0.8/core/common/src/types/global.rs +144 -0
- ddx_python-0.0.8/core/common/src/types/identifiers.rs +156 -0
- ddx_python-0.0.8/core/common/src/types/mod.rs +121 -0
- ddx_python-0.0.8/core/common/src/types/node.rs +358 -0
- ddx_python-0.0.8/core/common/src/types/primitives/numbers.rs +754 -0
- ddx_python-0.0.8/core/common/src/types/primitives.rs +1108 -0
- ddx_python-0.0.8/core/common/src/types/state.rs +239 -0
- ddx_python-0.0.8/core/common/src/types/transaction.rs +54 -0
- ddx_python-0.0.8/core/common/src/util/backoff.rs +13 -0
- ddx_python-0.0.8/core/common/src/util/mem.rs +22 -0
- ddx_python-0.0.8/core/common/src/util/mod.rs +14 -0
- ddx_python-0.0.8/core/common/src/util/tokenize.rs +466 -0
- ddx_python-0.0.8/core/common/src/util/tracing.rs +91 -0
- ddx_python-0.0.8/core/crypto/Cargo.toml +39 -0
- ddx_python-0.0.8/core/crypto/src/eip712.rs +149 -0
- ddx_python-0.0.8/core/crypto/src/encryption.rs +83 -0
- ddx_python-0.0.8/core/crypto/src/lib.rs +554 -0
- ddx_python-0.0.8/core/crypto/src/signing.rs +64 -0
- ddx_python-0.0.8/core/crypto/src/test_accounts.rs +35 -0
- ddx_python-0.0.8/core/macros/Cargo.toml +21 -0
- ddx_python-0.0.8/core/macros/src/lib.rs +653 -0
- ddx_python-0.0.8/core/specs/Cargo.toml +21 -0
- ddx_python-0.0.8/core/specs/src/eval.rs +982 -0
- ddx_python-0.0.8/core/specs/src/float_parser.rs +46 -0
- ddx_python-0.0.8/core/specs/src/lib.rs +69 -0
- ddx_python-0.0.8/core/specs/src/str_parser.rs +155 -0
- ddx_python-0.0.8/ddx-operator/core/Cargo.toml +110 -0
- ddx_python-0.0.8/ddx-operator/core/src/constants.rs +302 -0
- ddx_python-0.0.8/ddx-operator/core/src/execution/accounting.rs +290 -0
- ddx_python-0.0.8/ddx-operator/core/src/execution/error.rs +198 -0
- ddx_python-0.0.8/ddx-operator/core/src/execution/mod.rs +7 -0
- ddx_python-0.0.8/ddx-operator/core/src/execution/test_utils.rs +780 -0
- ddx_python-0.0.8/ddx-operator/core/src/execution/validation.rs +3131 -0
- ddx_python-0.0.8/ddx-operator/core/src/lib.rs +26 -0
- ddx_python-0.0.8/ddx-operator/core/src/specs/index_fund.rs +109 -0
- ddx_python-0.0.8/ddx-operator/core/src/specs/quarterly_expiry_future.rs +309 -0
- ddx_python-0.0.8/ddx-operator/core/src/specs/types.rs +405 -0
- ddx_python-0.0.8/ddx-operator/core/src/specs.rs +677 -0
- ddx_python-0.0.8/ddx-operator/core/src/tree/README.md +179 -0
- ddx_python-0.0.8/ddx-operator/core/src/tree/mod.rs +57 -0
- ddx_python-0.0.8/ddx-operator/core/src/tree/shared_smt.rs +900 -0
- ddx_python-0.0.8/ddx-operator/core/src/tree/shared_store.rs +102 -0
- ddx_python-0.0.8/ddx-operator/core/src/trusted_settings.rs +26 -0
- ddx_python-0.0.8/ddx-operator/core/src/types/accounting/balance.rs +260 -0
- ddx_python-0.0.8/ddx-operator/core/src/types/accounting.rs +811 -0
- ddx_python-0.0.8/ddx-operator/core/src/types/checkpoint.rs +130 -0
- ddx_python-0.0.8/ddx-operator/core/src/types/clock.rs +35 -0
- ddx_python-0.0.8/ddx-operator/core/src/types/contract_events.rs +308 -0
- ddx_python-0.0.8/ddx-operator/core/src/types/ethereum.rs +615 -0
- ddx_python-0.0.8/ddx-operator/core/src/types/identifiers.rs +1085 -0
- ddx_python-0.0.8/ddx-operator/core/src/types/mod.rs +24 -0
- ddx_python-0.0.8/ddx-operator/core/src/types/primitives.rs +834 -0
- ddx_python-0.0.8/ddx-operator/core/src/types/request.rs +1752 -0
- ddx_python-0.0.8/ddx-operator/core/src/types/state/exported.rs +2168 -0
- ddx_python-0.0.8/ddx-operator/core/src/types/state/tradable_product.rs +274 -0
- ddx_python-0.0.8/ddx-operator/core/src/types/state/trader.rs +639 -0
- ddx_python-0.0.8/ddx-operator/core/src/types/state.rs +1152 -0
- ddx_python-0.0.8/ddx-operator/core/src/types/transaction.rs +1976 -0
- ddx_python-0.0.8/ddx-operator/core/src/util/convert.rs +6 -0
- ddx_python-0.0.8/ddx-operator/core/src/util/eip712.rs +313 -0
- ddx_python-0.0.8/ddx-operator/core/src/util/env.rs +127 -0
- ddx_python-0.0.8/ddx-operator/core/src/util/mod.rs +268 -0
- ddx_python-0.0.8/ddx-operator/core/src/util/serde.rs +127 -0
- ddx_python-0.0.8/ddx-python/Cargo.toml +27 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/__init__.py +16 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/certs/Intel_ITA_MAA_public.pem +11 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/certs/copytrading/testnet/binance/binance_m1fCDJhzjYXzHWGDmAGaivgrnXT9vfAwRpELCF3vwSJNKyaxdIArgJXPaumuMVWT_private.pem +3 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/certs/copytrading/testnet/binance/binance_m1fCDJhzjYXzHWGDmAGaivgrnXT9vfAwRpELCF3vwSJNKyaxdIArgJXPaumuMVWT_public.pem +3 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/certs/pricefeedfuzzer.crt +19 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/certs/test_kyc.crt +19 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/copytrading/copy-trading-addresses.json +14 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/ethereum/addresses.json +497 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/copy-trading-node-devnet.bash +19 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/copy-trading-proposer.bash +24 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/cypress.bash +24 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/ddx-proposer.bash +24 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/entry-profiler.bash +13 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/entry-ts.bash +9 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/jupyter.bash +14 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/kyc-node-devnet.bash +17 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/kyc-proposer.bash +24 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/maturin.bash +7 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/operator-build.bash +172 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/operator-eth-bridge.bash +7 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/operator-init.bash +86 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/operator-node-devnet.bash +30 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/operator-run.bash +30 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/operator-setup-build.bash +42 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/rust-sgx-sdk.bash +22 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/scripts/tokio-console.bash +5 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/sql/copy-trading.sql +33 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/sql/kyc.sql +75 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/sql/migrations.sql +869 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/app_config/test-accounts.json +128 -0
- ddx_python-0.0.8/ddx-python/python/ddx_python/config.py +15 -0
- ddx_python-0.0.8/ddx-python/python/tests/test_ddx_common.py +19 -0
- ddx_python-0.0.0/ddx-python/tests/decimal_test.py → ddx_python-0.0.8/ddx-python/python/tests/test_decimal.py +5 -3
- ddx_python-0.0.8/ddx-python/src/ddx.rs +187 -0
- ddx_python-0.0.8/ddx-python/src/decimal.rs +30 -0
- ddx_python-0.0.8/ddx-python/src/h256.rs +30 -0
- ddx_python-0.0.8/ddx-python/src/lib.rs +32 -0
- {ddx_python-0.0.0 → ddx_python-0.0.8}/pyproject.toml +8 -4
- ddx_python-0.0.8/python/ddx_python/__init__.py +16 -0
- ddx_python-0.0.8/python/ddx_python/app_config/certs/Intel_ITA_MAA_public.pem +11 -0
- ddx_python-0.0.8/python/ddx_python/app_config/certs/copytrading/testnet/binance/binance_m1fCDJhzjYXzHWGDmAGaivgrnXT9vfAwRpELCF3vwSJNKyaxdIArgJXPaumuMVWT_private.pem +3 -0
- ddx_python-0.0.8/python/ddx_python/app_config/certs/copytrading/testnet/binance/binance_m1fCDJhzjYXzHWGDmAGaivgrnXT9vfAwRpELCF3vwSJNKyaxdIArgJXPaumuMVWT_public.pem +3 -0
- ddx_python-0.0.8/python/ddx_python/app_config/certs/pricefeedfuzzer.crt +19 -0
- ddx_python-0.0.8/python/ddx_python/app_config/certs/test_kyc.crt +19 -0
- ddx_python-0.0.8/python/ddx_python/app_config/copytrading/copy-trading-addresses.json +14 -0
- ddx_python-0.0.8/python/ddx_python/app_config/ethereum/addresses.json +497 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/copy-trading-node-devnet.bash +19 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/copy-trading-proposer.bash +24 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/cypress.bash +24 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/ddx-proposer.bash +24 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/entry-profiler.bash +13 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/entry-ts.bash +9 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/jupyter.bash +14 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/kyc-node-devnet.bash +17 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/kyc-proposer.bash +24 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/maturin.bash +7 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/operator-build.bash +172 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/operator-eth-bridge.bash +7 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/operator-init.bash +86 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/operator-node-devnet.bash +30 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/operator-run.bash +30 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/operator-setup-build.bash +42 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/rust-sgx-sdk.bash +22 -0
- ddx_python-0.0.8/python/ddx_python/app_config/scripts/tokio-console.bash +5 -0
- ddx_python-0.0.8/python/ddx_python/app_config/sql/copy-trading.sql +33 -0
- ddx_python-0.0.8/python/ddx_python/app_config/sql/kyc.sql +75 -0
- ddx_python-0.0.8/python/ddx_python/app_config/sql/migrations.sql +869 -0
- ddx_python-0.0.8/python/ddx_python/app_config/test-accounts.json +128 -0
- ddx_python-0.0.8/python/ddx_python/config.py +15 -0
- ddx_python-0.0.0/ddx-python/Cargo.toml +0 -12
- ddx_python-0.0.0/ddx-python/src/decimal.rs +0 -262
- ddx_python-0.0.0/ddx-python/src/lib.rs +0 -19
- {ddx_python-0.0.0 → ddx_python-0.0.8}/ddx-python/README.md +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/__init__.py +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Add_000_001.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Add_100_100.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Add_111_111.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Div_100_100.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Div_101_010.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Div_110_000.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Div_111_110.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Div_111_111.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Mul_001_000.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Mul_010_111.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Mul_100_101.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Mul_110_001.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Mul_111_111.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Rem_101_101.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Rem_111_000.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Rem_111_110.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Sub_101_110.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Sub_110_011.csv +0 -0
- {ddx_python-0.0.0/ddx-python → ddx_python-0.0.8/ddx-python/python}/tests/decimal/Sub_111_111.csv +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.