prediction-market-agent-tooling 0.43.2__py3-none-any.whl → 0.44.0__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.
Files changed (20) hide show
  1. prediction_market_agent_tooling/abis/depositablewrapper_erc20.abi.json +279 -0
  2. prediction_market_agent_tooling/abis/erc20.abi.json +221 -314
  3. prediction_market_agent_tooling/abis/erc4626.abi.json +623 -0
  4. prediction_market_agent_tooling/abis/proxy.abi.json +24 -0
  5. prediction_market_agent_tooling/gtypes.py +1 -1
  6. prediction_market_agent_tooling/markets/agent_market.py +2 -1
  7. prediction_market_agent_tooling/markets/manifold/manifold.py +3 -2
  8. prediction_market_agent_tooling/markets/omen/data_models.py +2 -1
  9. prediction_market_agent_tooling/markets/omen/omen.py +81 -62
  10. prediction_market_agent_tooling/markets/omen/omen_contracts.py +37 -12
  11. prediction_market_agent_tooling/markets/omen/omen_resolving.py +15 -5
  12. prediction_market_agent_tooling/markets/omen/omen_subgraph_handler.py +15 -0
  13. prediction_market_agent_tooling/markets/polymarket/polymarket.py +2 -1
  14. prediction_market_agent_tooling/tools/contract.py +360 -10
  15. {prediction_market_agent_tooling-0.43.2.dist-info → prediction_market_agent_tooling-0.44.0.dist-info}/METADATA +1 -1
  16. {prediction_market_agent_tooling-0.43.2.dist-info → prediction_market_agent_tooling-0.44.0.dist-info}/RECORD +19 -17
  17. prediction_market_agent_tooling/abis/wxdai.abi.json +0 -279
  18. {prediction_market_agent_tooling-0.43.2.dist-info → prediction_market_agent_tooling-0.44.0.dist-info}/LICENSE +0 -0
  19. {prediction_market_agent_tooling-0.43.2.dist-info → prediction_market_agent_tooling-0.44.0.dist-info}/WHEEL +0 -0
  20. {prediction_market_agent_tooling-0.43.2.dist-info → prediction_market_agent_tooling-0.44.0.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,279 @@
1
+ [
2
+ {
3
+ "constant": true,
4
+ "inputs": [],
5
+ "name": "name",
6
+ "outputs": [
7
+ {
8
+ "name": "",
9
+ "type": "string"
10
+ }
11
+ ],
12
+ "payable": false,
13
+ "stateMutability": "view",
14
+ "type": "function"
15
+ },
16
+ {
17
+ "constant": false,
18
+ "inputs": [
19
+ {
20
+ "name": "guy",
21
+ "type": "address"
22
+ },
23
+ {
24
+ "name": "wad",
25
+ "type": "uint256"
26
+ }
27
+ ],
28
+ "name": "approve",
29
+ "outputs": [
30
+ {
31
+ "name": "",
32
+ "type": "bool"
33
+ }
34
+ ],
35
+ "payable": false,
36
+ "stateMutability": "nonpayable",
37
+ "type": "function"
38
+ },
39
+ {
40
+ "constant": true,
41
+ "inputs": [],
42
+ "name": "totalSupply",
43
+ "outputs": [
44
+ {
45
+ "name": "",
46
+ "type": "uint256"
47
+ }
48
+ ],
49
+ "payable": false,
50
+ "stateMutability": "view",
51
+ "type": "function"
52
+ },
53
+ {
54
+ "constant": false,
55
+ "inputs": [
56
+ {
57
+ "name": "src",
58
+ "type": "address"
59
+ },
60
+ {
61
+ "name": "dst",
62
+ "type": "address"
63
+ },
64
+ {
65
+ "name": "wad",
66
+ "type": "uint256"
67
+ }
68
+ ],
69
+ "name": "transferFrom",
70
+ "outputs": [
71
+ {
72
+ "name": "",
73
+ "type": "bool"
74
+ }
75
+ ],
76
+ "payable": false,
77
+ "stateMutability": "nonpayable",
78
+ "type": "function"
79
+ },
80
+ {
81
+ "constant": false,
82
+ "inputs": [
83
+ {
84
+ "name": "wad",
85
+ "type": "uint256"
86
+ }
87
+ ],
88
+ "name": "withdraw",
89
+ "outputs": [],
90
+ "payable": false,
91
+ "stateMutability": "nonpayable",
92
+ "type": "function"
93
+ },
94
+ {
95
+ "constant": true,
96
+ "inputs": [],
97
+ "name": "decimals",
98
+ "outputs": [
99
+ {
100
+ "name": "",
101
+ "type": "uint8"
102
+ }
103
+ ],
104
+ "payable": false,
105
+ "stateMutability": "view",
106
+ "type": "function"
107
+ },
108
+ {
109
+ "constant": true,
110
+ "inputs": [
111
+ {
112
+ "name": "",
113
+ "type": "address"
114
+ }
115
+ ],
116
+ "name": "balanceOf",
117
+ "outputs": [
118
+ {
119
+ "name": "",
120
+ "type": "uint256"
121
+ }
122
+ ],
123
+ "payable": false,
124
+ "stateMutability": "view",
125
+ "type": "function"
126
+ },
127
+ {
128
+ "constant": true,
129
+ "inputs": [],
130
+ "name": "symbol",
131
+ "outputs": [
132
+ {
133
+ "name": "",
134
+ "type": "string"
135
+ }
136
+ ],
137
+ "payable": false,
138
+ "stateMutability": "view",
139
+ "type": "function"
140
+ },
141
+ {
142
+ "constant": false,
143
+ "inputs": [
144
+ {
145
+ "name": "dst",
146
+ "type": "address"
147
+ },
148
+ {
149
+ "name": "wad",
150
+ "type": "uint256"
151
+ }
152
+ ],
153
+ "name": "transfer",
154
+ "outputs": [
155
+ {
156
+ "name": "",
157
+ "type": "bool"
158
+ }
159
+ ],
160
+ "payable": false,
161
+ "stateMutability": "nonpayable",
162
+ "type": "function"
163
+ },
164
+ {
165
+ "constant": false,
166
+ "inputs": [],
167
+ "name": "deposit",
168
+ "outputs": [],
169
+ "payable": true,
170
+ "stateMutability": "payable",
171
+ "type": "function"
172
+ },
173
+ {
174
+ "constant": true,
175
+ "inputs": [
176
+ {
177
+ "name": "",
178
+ "type": "address"
179
+ },
180
+ {
181
+ "name": "",
182
+ "type": "address"
183
+ }
184
+ ],
185
+ "name": "allowance",
186
+ "outputs": [
187
+ {
188
+ "name": "",
189
+ "type": "uint256"
190
+ }
191
+ ],
192
+ "payable": false,
193
+ "stateMutability": "view",
194
+ "type": "function"
195
+ },
196
+ {
197
+ "payable": true,
198
+ "stateMutability": "payable",
199
+ "type": "fallback"
200
+ },
201
+ {
202
+ "anonymous": false,
203
+ "inputs": [
204
+ {
205
+ "indexed": true,
206
+ "name": "src",
207
+ "type": "address"
208
+ },
209
+ {
210
+ "indexed": true,
211
+ "name": "guy",
212
+ "type": "address"
213
+ },
214
+ {
215
+ "indexed": false,
216
+ "name": "wad",
217
+ "type": "uint256"
218
+ }
219
+ ],
220
+ "name": "Approval",
221
+ "type": "event"
222
+ },
223
+ {
224
+ "anonymous": false,
225
+ "inputs": [
226
+ {
227
+ "indexed": true,
228
+ "name": "src",
229
+ "type": "address"
230
+ },
231
+ {
232
+ "indexed": true,
233
+ "name": "dst",
234
+ "type": "address"
235
+ },
236
+ {
237
+ "indexed": false,
238
+ "name": "wad",
239
+ "type": "uint256"
240
+ }
241
+ ],
242
+ "name": "Transfer",
243
+ "type": "event"
244
+ },
245
+ {
246
+ "anonymous": false,
247
+ "inputs": [
248
+ {
249
+ "indexed": true,
250
+ "name": "dst",
251
+ "type": "address"
252
+ },
253
+ {
254
+ "indexed": false,
255
+ "name": "wad",
256
+ "type": "uint256"
257
+ }
258
+ ],
259
+ "name": "Deposit",
260
+ "type": "event"
261
+ },
262
+ {
263
+ "anonymous": false,
264
+ "inputs": [
265
+ {
266
+ "indexed": true,
267
+ "name": "src",
268
+ "type": "address"
269
+ },
270
+ {
271
+ "indexed": false,
272
+ "name": "wad",
273
+ "type": "uint256"
274
+ }
275
+ ],
276
+ "name": "Withdrawal",
277
+ "type": "event"
278
+ }
279
+ ]