prediction-market-agent-tooling 0.69.1__py3-none-any.whl → 0.69.2__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.
@@ -73,6 +73,10 @@ class APIKeys(BaseSettings):
73
73
 
74
74
  PERPLEXITY_API_KEY: t.Optional[SecretStr] = None
75
75
 
76
+ DUNE_API_KEY: t.Optional[SecretStr] = None
77
+
78
+ SLACK_WEBHOOK_URL: t.Optional[SecretStr] = None
79
+
76
80
  ENABLE_CACHE: bool = False
77
81
  CACHE_DIR: str = "./.cache"
78
82
 
@@ -254,6 +258,18 @@ class APIKeys(BaseSettings):
254
258
  self.SQLALCHEMY_DB_URL, "SQLALCHEMY_DB_URL missing in the environment."
255
259
  )
256
260
 
261
+ @property
262
+ def dune_api_key(self) -> SecretStr:
263
+ return check_not_none(
264
+ self.DUNE_API_KEY, "DUNE_API_KEY missing in the environment."
265
+ )
266
+
267
+ @property
268
+ def slack_webhook_url(self) -> SecretStr:
269
+ return check_not_none(
270
+ self.SLACK_WEBHOOK_URL, "SLACK_WEBHOOK_URL missing in the environment."
271
+ )
272
+
257
273
  def get_account(self) -> LocalAccount:
258
274
  acc: LocalAccount = Account.from_key(
259
275
  self.bet_from_private_key.get_secret_value()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: prediction-market-agent-tooling
3
- Version: 0.69.1
3
+ Version: 0.69.2
4
4
  Summary: Tools to benchmark, deploy and monitor prediction market agents.
5
5
  Author: Gnosis
6
6
  Requires-Python: >=3.10,<3.13
@@ -25,7 +25,7 @@ prediction_market_agent_tooling/benchmark/agents.py,sha256=zC5tUM6pPTWtqSddOOSYV
25
25
  prediction_market_agent_tooling/benchmark/benchmark.py,sha256=hpIpjjePDFTLhK841sGftFbhu8bDDZr28KO4VTneewM,17837
26
26
  prediction_market_agent_tooling/benchmark/utils.py,sha256=vmVTQLER8I7MM_bHFiavrNM9aQe28PL6WihM6J-E65k,3327
27
27
  prediction_market_agent_tooling/chains.py,sha256=MF600uUR_I0Mf7-Pz5InS6RWMkdrZI2sohP6Vfh0YRw,148
28
- prediction_market_agent_tooling/config.py,sha256=juGITh2OxpH_dVe-63W4vcrRYtzldSUTT7UIjcDvAT4,13006
28
+ prediction_market_agent_tooling/config.py,sha256=h9rsVMCDhDLMmH657CKEDZ4ZCWvC9RmX5p5kPI5rP58,13464
29
29
  prediction_market_agent_tooling/data_download/langfuse_data_downloader.py,sha256=VY23h324VKIVkevj1B1O-zL1eEp9AElmcfn6SwYDUSc,14246
30
30
  prediction_market_agent_tooling/deploy/agent.py,sha256=xtufEkxHkR54TSAqRqiBRcISf05MwrV-WlG4PcOo7xM,30582
31
31
  prediction_market_agent_tooling/deploy/agent_example.py,sha256=yS1fWkHynr9MYGNOM2WsCnRWLPaffY4bOc6bIudrdd4,1377
@@ -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=mbOGoWKalNIm7M2K51TEPGwU9oVp1Z6SPsFaBgbn6ws,7397
134
134
  prediction_market_agent_tooling/tools/web3_utils.py,sha256=ajHZIBM_PNNNUp0ZxJ-AvpSzyVATm7LnZtb2hi6NcOw,12614
135
- prediction_market_agent_tooling-0.69.1.dist-info/LICENSE,sha256=6or154nLLU6bELzjh0mCreFjt0m2v72zLi3yHE0QbeE,7650
136
- prediction_market_agent_tooling-0.69.1.dist-info/METADATA,sha256=rc8jY4PRLmMIkHD7xJdKYEf9QB2Y8Rs2B5XLFI7LGXM,8805
137
- prediction_market_agent_tooling-0.69.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
138
- prediction_market_agent_tooling-0.69.1.dist-info/entry_points.txt,sha256=m8PukHbeH5g0IAAmOf_1Ahm-sGAMdhSSRQmwtpmi2s8,81
139
- prediction_market_agent_tooling-0.69.1.dist-info/RECORD,,
135
+ prediction_market_agent_tooling-0.69.2.dist-info/LICENSE,sha256=6or154nLLU6bELzjh0mCreFjt0m2v72zLi3yHE0QbeE,7650
136
+ prediction_market_agent_tooling-0.69.2.dist-info/METADATA,sha256=TYc4P5Qr0fFmz0yQYHXi7lw8hMw_YE92VOtcr-6B7HY,8805
137
+ prediction_market_agent_tooling-0.69.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
138
+ prediction_market_agent_tooling-0.69.2.dist-info/entry_points.txt,sha256=m8PukHbeH5g0IAAmOf_1Ahm-sGAMdhSSRQmwtpmi2s8,81
139
+ prediction_market_agent_tooling-0.69.2.dist-info/RECORD,,