ddx-python 0.2.0__tar.gz → 0.2.5__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 (108) hide show
  1. {ddx_python-0.2.0 → ddx_python-0.2.5}/Cargo.lock +1661 -1214
  2. {ddx_python-0.2.0 → ddx_python-0.2.5}/Cargo.toml +1 -1
  3. {ddx_python-0.2.0 → ddx_python-0.2.5}/PKG-INFO +2 -2
  4. ddx_python-0.2.5/ddx-common/Cargo.toml +174 -0
  5. ddx_python-0.2.5/ddx-common/macros/Cargo.toml +20 -0
  6. ddx_python-0.2.5/ddx-common/macros/src/lib.rs +625 -0
  7. ddx_python-0.2.5/ddx-common/pkg/ddx_common.d.ts +64 -0
  8. ddx_python-0.2.5/ddx-common/src/attestation.rs +225 -0
  9. ddx_python-0.2.5/ddx-common/src/constants.rs +359 -0
  10. ddx_python-0.2.5/ddx-common/src/core/runner.rs +323 -0
  11. ddx_python-0.2.5/ddx-common/src/core/services.rs +223 -0
  12. ddx_python-0.2.5/ddx-common/src/core.rs +9 -0
  13. ddx_python-0.2.5/ddx-common/src/crypto/encryption.rs +88 -0
  14. ddx_python-0.2.5/ddx-common/src/crypto/signing.rs +64 -0
  15. ddx_python-0.2.5/ddx-common/src/crypto.rs +533 -0
  16. ddx_python-0.2.5/ddx-common/src/db/admin.rs +68 -0
  17. ddx_python-0.2.5/ddx-common/src/db/mod.rs +24 -0
  18. ddx_python-0.2.5/ddx-common/src/db/txn_like.rs +140 -0
  19. ddx_python-0.2.5/ddx-common/src/ecall.rs +46 -0
  20. ddx_python-0.2.5/ddx-common/src/enclave/ocall.rs +31 -0
  21. ddx_python-0.2.5/ddx-common/src/enclave/runtime.rs +10 -0
  22. ddx_python-0.2.5/ddx-common/src/enclave.rs +544 -0
  23. ddx_python-0.2.5/ddx-common/src/error.rs +114 -0
  24. ddx_python-0.2.5/ddx-common/src/execution/accounting.rs +290 -0
  25. ddx_python-0.2.5/ddx-common/src/execution/error.rs +122 -0
  26. ddx_python-0.2.5/ddx-common/src/execution/mod.rs +9 -0
  27. ddx_python-0.2.5/ddx-common/src/execution/test_accounts.rs +34 -0
  28. ddx_python-0.2.5/ddx-common/src/execution/test_utils.rs +763 -0
  29. ddx_python-0.2.5/ddx-common/src/execution/validation.rs +3146 -0
  30. ddx_python-0.2.5/ddx-common/src/global.rs +130 -0
  31. ddx_python-0.2.5/ddx-common/src/lib.rs +47 -0
  32. ddx_python-0.2.5/ddx-common/src/node/api.rs +87 -0
  33. ddx_python-0.2.5/ddx-common/src/node/db.rs +28 -0
  34. ddx_python-0.2.5/ddx-common/src/node/errors.rs +94 -0
  35. ddx_python-0.2.5/ddx-common/src/node/mod.rs +3 -0
  36. ddx_python-0.2.5/ddx-common/src/ocall.rs +11 -0
  37. ddx_python-0.2.5/ddx-common/src/specs/constants.rs +13 -0
  38. ddx_python-0.2.5/ddx-common/src/specs/eval.rs +999 -0
  39. ddx_python-0.2.5/ddx-common/src/specs/float_parser.rs +46 -0
  40. ddx_python-0.2.5/ddx-common/src/specs/index_fund.rs +109 -0
  41. ddx_python-0.2.5/ddx-common/src/specs/quarterly_expiry_future.rs +324 -0
  42. ddx_python-0.2.5/ddx-common/src/specs/str_parser.rs +155 -0
  43. ddx_python-0.2.5/ddx-common/src/specs/types.rs +455 -0
  44. ddx_python-0.2.5/ddx-common/src/specs.rs +844 -0
  45. ddx_python-0.2.5/ddx-common/src/tree/README.md +179 -0
  46. ddx_python-0.2.5/ddx-common/src/tree/mod.rs +59 -0
  47. ddx_python-0.2.5/ddx-common/src/tree/shared_smt.rs +896 -0
  48. ddx_python-0.2.5/ddx-common/src/tree/shared_store.rs +102 -0
  49. ddx_python-0.2.5/ddx-common/src/trusted_settings.rs +26 -0
  50. ddx_python-0.2.5/ddx-common/src/types/accounting/balance.rs +206 -0
  51. ddx_python-0.2.5/ddx-common/src/types/accounting.rs +942 -0
  52. ddx_python-0.2.5/ddx-common/src/types/checkpoint.rs +143 -0
  53. ddx_python-0.2.5/ddx-common/src/types/clock.rs +6 -0
  54. ddx_python-0.2.5/ddx-common/src/types/contract.rs +23 -0
  55. ddx_python-0.2.5/ddx-common/src/types/contract_events.rs +614 -0
  56. ddx_python-0.2.5/ddx-common/src/types/ethereum.rs +796 -0
  57. ddx_python-0.2.5/ddx-common/src/types/execution.rs +48 -0
  58. ddx_python-0.2.5/ddx-common/src/types/identifiers.rs +1215 -0
  59. ddx_python-0.2.5/ddx-common/src/types/mod.rs +138 -0
  60. ddx_python-0.2.5/ddx-common/src/types/primitives/numbers.rs +762 -0
  61. ddx_python-0.2.5/ddx-common/src/types/primitives.rs +2048 -0
  62. ddx_python-0.2.5/ddx-common/src/types/request.rs +1475 -0
  63. ddx_python-0.2.5/ddx-common/src/types/state/exported.rs +2164 -0
  64. ddx_python-0.2.5/ddx-common/src/types/state/tradable_product.rs +224 -0
  65. ddx_python-0.2.5/ddx-common/src/types/state/trader.rs +647 -0
  66. ddx_python-0.2.5/ddx-common/src/types/state.rs +1654 -0
  67. ddx_python-0.2.5/ddx-common/src/types/transaction.rs +2040 -0
  68. ddx_python-0.2.5/ddx-common/src/util/backoff.rs +13 -0
  69. ddx_python-0.2.5/ddx-common/src/util/convert.rs +6 -0
  70. ddx_python-0.2.5/ddx-common/src/util/eip712.rs +405 -0
  71. ddx_python-0.2.5/ddx-common/src/util/enclave.rs +43 -0
  72. ddx_python-0.2.5/ddx-common/src/util/env.rs +131 -0
  73. ddx_python-0.2.5/ddx-common/src/util/mem.rs +83 -0
  74. ddx_python-0.2.5/ddx-common/src/util/mod.rs +50 -0
  75. ddx_python-0.2.5/ddx-common/src/util/serde.rs +419 -0
  76. ddx_python-0.2.5/ddx-common/src/util/tokenize.rs +666 -0
  77. ddx_python-0.2.5/ddx-common/src/util/tracing.rs +83 -0
  78. ddx_python-0.2.5/ddx-python/Cargo.toml +18 -0
  79. ddx_python-0.2.5/ddx-python/src/ddx_common.rs +177 -0
  80. ddx_python-0.2.5/ddx-python/src/decimal.rs +30 -0
  81. ddx_python-0.2.5/ddx-python/src/h256.rs +30 -0
  82. ddx_python-0.2.5/ddx-python/src/lib.rs +31 -0
  83. {ddx_python-0.2.0 → ddx_python-0.2.5}/pyproject.toml +0 -1
  84. ddx_python-0.2.0/ddx-python/Cargo.toml +0 -12
  85. ddx_python-0.2.0/ddx-python/src/decimal.rs +0 -262
  86. ddx_python-0.2.0/ddx-python/src/lib.rs +0 -19
  87. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/README.md +0 -0
  88. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/__init__.py +0 -0
  89. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Add_000_001.csv +0 -0
  90. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Add_100_100.csv +0 -0
  91. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Add_111_111.csv +0 -0
  92. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Div_100_100.csv +0 -0
  93. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Div_101_010.csv +0 -0
  94. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Div_110_000.csv +0 -0
  95. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Div_111_110.csv +0 -0
  96. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Div_111_111.csv +0 -0
  97. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Mul_001_000.csv +0 -0
  98. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Mul_010_111.csv +0 -0
  99. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Mul_100_101.csv +0 -0
  100. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Mul_110_001.csv +0 -0
  101. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Mul_111_111.csv +0 -0
  102. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Rem_101_101.csv +0 -0
  103. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Rem_111_000.csv +0 -0
  104. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Rem_111_110.csv +0 -0
  105. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Sub_101_110.csv +0 -0
  106. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Sub_110_011.csv +0 -0
  107. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal/Sub_111_111.csv +0 -0
  108. {ddx_python-0.2.0 → ddx_python-0.2.5}/ddx-python/tests/decimal_test.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.