prediction-market-agent-tooling 0.69.4.dev1070__py3-none-any.whl → 0.69.4.dev1072__py3-none-any.whl

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.
@@ -481,6 +481,7 @@ class OmenMarket(BaseModel):
481
481
  outcomes=model.question_event.parsed_question.outcomes,
482
482
  isPendingArbitration=False, # Can not be, it's a fresh market.
483
483
  openingTimestamp=model.question_event.opening_ts,
484
+ timeout=model.question_event.timeout,
484
485
  answerFinalizedTimestamp=None, # It's a new one, can not be.
485
486
  currentAnswer=None, # It's a new one, no answer yet.
486
487
  ),
@@ -91,7 +91,6 @@ from prediction_market_agent_tooling.tools.utils import (
91
91
  )
92
92
  from prediction_market_agent_tooling.tools.web3_utils import get_receipt_block_timestamp
93
93
 
94
- OMEN_DEFAULT_REALITIO_BOND_VALUE = xDai(0.01)
95
94
  # Too low value would work with the Omen contract, but causes CoW orders (when buying the specific market's tokens) to fail.
96
95
  OMEN_TINY_BET_AMOUNT = USD(0.01)
97
96
 
@@ -190,6 +190,7 @@ class OmenSubgraphHandler(BaseSubgraphHandler):
190
190
  questions_field.templateId,
191
191
  questions_field.isPendingArbitration,
192
192
  questions_field.openingTimestamp,
193
+ questions_field.timeout,
193
194
  ]
194
195
 
195
196
  def _get_fields_for_markets(self, markets_field: FieldPath) -> list[FieldPath]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: prediction-market-agent-tooling
3
- Version: 0.69.4.dev1070
3
+ Version: 0.69.4.dev1072
4
4
  Summary: Tools to benchmark, deploy and monitor prediction market agents.
5
5
  Author: Gnosis
6
6
  Requires-Python: >=3.10,<3.13
@@ -58,12 +58,12 @@ prediction_market_agent_tooling/markets/metaculus/data_models.py,sha256=WjPt0MKe
58
58
  prediction_market_agent_tooling/markets/metaculus/metaculus.py,sha256=kM0U0k90YfLE82ra53JAoCR9uIc9wm4B8l32hLw5imU,5312
59
59
  prediction_market_agent_tooling/markets/omen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
60
  prediction_market_agent_tooling/markets/omen/cow_contracts.py,sha256=sFaW82u_haL4nze8fjTmnQsOuV0OecunQlAhh1OAw0w,1091
61
- prediction_market_agent_tooling/markets/omen/data_models.py,sha256=UszdvdCUeYEL5Wh5avIPeEiYEtbYHNkNohf6B2r2X8A,31277
62
- prediction_market_agent_tooling/markets/omen/omen.py,sha256=zs0VSUmJh3ZxwD4IA781TWVDYjNdHOODaKjGRXXokjQ,52819
61
+ prediction_market_agent_tooling/markets/omen/data_models.py,sha256=UcvwAMMlQSDkEoWQd73Rn0aAKswb9szWfNZVFaxpagM,31331
62
+ prediction_market_agent_tooling/markets/omen/omen.py,sha256=1Plw_eJcCvATEdHot-ANbLYAdSgdx8o-S6oVFzkz2eY,52773
63
63
  prediction_market_agent_tooling/markets/omen/omen_constants.py,sha256=XtRk4vpxwUYkTndfjlcmghA-NOIneV8zdHFdyI7tHhM,487
64
64
  prediction_market_agent_tooling/markets/omen/omen_contracts.py,sha256=0tzaL9P9T7whcTdgK1q_XsEKK3kzCAHs-eZEh-nTZEY,24105
65
65
  prediction_market_agent_tooling/markets/omen/omen_resolving.py,sha256=vVYdrL-9txufByYf3E7ApkrbVZlAGD-70STrqnhQWhg,11047
66
- prediction_market_agent_tooling/markets/omen/omen_subgraph_handler.py,sha256=bT8A1Hl-pOOIe4qz0vx_prO_5unMSG_kHIXE32txedg,40097
66
+ prediction_market_agent_tooling/markets/omen/omen_subgraph_handler.py,sha256=he3_xRLKaJQeEdP-VXuotAPM7rHRIJ4OE2mVWaixl7U,40134
67
67
  prediction_market_agent_tooling/markets/polymarket/api.py,sha256=62PtOJyiXywRCvW4vnj5aq8XgQXqGP04GBW7o6XNQ8Y,5755
68
68
  prediction_market_agent_tooling/markets/polymarket/clob_manager.py,sha256=sCCQw5GePrfike0A4EgQRtxaqp91RDjGaVWNx_5QzH4,5367
69
69
  prediction_market_agent_tooling/markets/polymarket/constants.py,sha256=-sEFwEsMSJEgLAIaeJnWFoTBsnjSW_m5iKFiFkfw2NE,457
@@ -132,8 +132,8 @@ prediction_market_agent_tooling/tools/tokens/usd.py,sha256=DPO-4HBTy1-TZHKL_9CnH
132
132
  prediction_market_agent_tooling/tools/transaction_cache.py,sha256=K5YKNL2_tR10Iw2TD9fuP-CTGpBbZtNdgbd0B_R7pjg,1814
133
133
  prediction_market_agent_tooling/tools/utils.py,sha256=ruq6P5TFs8CBHxeBLj1Plpx7kuNFPpDgMsJGQgDiRNs,8785
134
134
  prediction_market_agent_tooling/tools/web3_utils.py,sha256=CDbaidlLeQ4VHzSg150L7QNfHfGveljSePGuDVFEYqc,13963
135
- prediction_market_agent_tooling-0.69.4.dev1070.dist-info/LICENSE,sha256=6or154nLLU6bELzjh0mCreFjt0m2v72zLi3yHE0QbeE,7650
136
- prediction_market_agent_tooling-0.69.4.dev1070.dist-info/METADATA,sha256=DmUQo7C-NlawUyxQ05Rw8f_MfmaNS2qiZpgoPLSEJuM,8813
137
- prediction_market_agent_tooling-0.69.4.dev1070.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
138
- prediction_market_agent_tooling-0.69.4.dev1070.dist-info/entry_points.txt,sha256=m8PukHbeH5g0IAAmOf_1Ahm-sGAMdhSSRQmwtpmi2s8,81
139
- prediction_market_agent_tooling-0.69.4.dev1070.dist-info/RECORD,,
135
+ prediction_market_agent_tooling-0.69.4.dev1072.dist-info/LICENSE,sha256=6or154nLLU6bELzjh0mCreFjt0m2v72zLi3yHE0QbeE,7650
136
+ prediction_market_agent_tooling-0.69.4.dev1072.dist-info/METADATA,sha256=WzwC0O9_CJf22VVwHY20fP_QA26TFt1ICzmevaVYLUw,8813
137
+ prediction_market_agent_tooling-0.69.4.dev1072.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
138
+ prediction_market_agent_tooling-0.69.4.dev1072.dist-info/entry_points.txt,sha256=m8PukHbeH5g0IAAmOf_1Ahm-sGAMdhSSRQmwtpmi2s8,81
139
+ prediction_market_agent_tooling-0.69.4.dev1072.dist-info/RECORD,,