@@ -98,6 +98,36 @@ export class NewPeriod__Params {
98
98
}
99
99
}
100
100
101
+ export class Draw extends ethereum . Event {
102
+ get params ( ) : Draw__Params {
103
+ return new Draw__Params ( this ) ;
104
+ }
105
+ }
106
+
107
+ export class Draw__Params {
108
+ _event : Draw ;
109
+
110
+ constructor ( event : Draw ) {
111
+ this . _event = event ;
112
+ }
113
+
114
+ get _address ( ) : Address {
115
+ return this . _event . parameters [ 0 ] . value . toAddress ( ) ;
116
+ }
117
+
118
+ get _disputeID ( ) : BigInt {
119
+ return this . _event . parameters [ 1 ] . value . toBigInt ( ) ;
120
+ }
121
+
122
+ get _appeal ( ) : i32 {
123
+ return this . _event . parameters [ 2 ] . value . toI32 ( ) ;
124
+ }
125
+
126
+ get _voteID ( ) : i32 {
127
+ return this . _event . parameters [ 3 ] . value . toI32 ( ) ;
128
+ }
129
+ }
130
+
101
131
export class Kleros__appealPeriodResult {
102
132
value0 : BigInt ;
103
133
value1 : BigInt ;
@@ -123,6 +153,85 @@ export class Kleros__appealPeriodResult {
123
153
}
124
154
}
125
155
156
+ export class Kleros__disputesResult {
157
+ value0 : BigInt ;
158
+ value1 : Address ;
159
+ value2 : BigInt ;
160
+ value3 : i32 ;
161
+ value4 : BigInt ;
162
+ value5 : BigInt ;
163
+ value6 : BigInt ;
164
+ value7 : boolean ;
165
+
166
+ constructor (
167
+ value0 : BigInt ,
168
+ value1 : Address ,
169
+ value2 : BigInt ,
170
+ value3 : i32 ,
171
+ value4 : BigInt ,
172
+ value5 : BigInt ,
173
+ value6 : BigInt ,
174
+ value7 : boolean
175
+ ) {
176
+ this . value0 = value0 ;
177
+ this . value1 = value1 ;
178
+ this . value2 = value2 ;
179
+ this . value3 = value3 ;
180
+ this . value4 = value4 ;
181
+ this . value5 = value5 ;
182
+ this . value6 = value6 ;
183
+ this . value7 = value7 ;
184
+ }
185
+
186
+ toMap ( ) : TypedMap < string , ethereum . Value > {
187
+ let map = new TypedMap < string , ethereum . Value > ( ) ;
188
+ map . set ( "value0" , ethereum . Value . fromUnsignedBigInt ( this . value0 ) ) ;
189
+ map . set ( "value1" , ethereum . Value . fromAddress ( this . value1 ) ) ;
190
+ map . set ( "value2" , ethereum . Value . fromUnsignedBigInt ( this . value2 ) ) ;
191
+ map . set (
192
+ "value3" ,
193
+ ethereum . Value . fromUnsignedBigInt ( BigInt . fromI32 ( this . value3 ) )
194
+ ) ;
195
+ map . set ( "value4" , ethereum . Value . fromUnsignedBigInt ( this . value4 ) ) ;
196
+ map . set ( "value5" , ethereum . Value . fromUnsignedBigInt ( this . value5 ) ) ;
197
+ map . set ( "value6" , ethereum . Value . fromUnsignedBigInt ( this . value6 ) ) ;
198
+ map . set ( "value7" , ethereum . Value . fromBoolean ( this . value7 ) ) ;
199
+ return map ;
200
+ }
201
+
202
+ getSubcourtID ( ) : BigInt {
203
+ return this . value0 ;
204
+ }
205
+
206
+ getArbitrated ( ) : Address {
207
+ return this . value1 ;
208
+ }
209
+
210
+ getNumberOfChoices ( ) : BigInt {
211
+ return this . value2 ;
212
+ }
213
+
214
+ getPeriod ( ) : i32 {
215
+ return this . value3 ;
216
+ }
217
+
218
+ getLastPeriodChange ( ) : BigInt {
219
+ return this . value4 ;
220
+ }
221
+
222
+ getDrawsInRound ( ) : BigInt {
223
+ return this . value5 ;
224
+ }
225
+
226
+ getCommitsInRound ( ) : BigInt {
227
+ return this . value6 ;
228
+ }
229
+
230
+ getRuled ( ) : boolean {
231
+ return this . value7 ;
232
+ }
233
+ }
234
+
126
235
export class Kleros extends ethereum . SmartContract {
127
236
static bind ( address : Address ) : Kleros {
128
237
return new Kleros ( "Kleros" , address ) ;
@@ -256,6 +365,49 @@ export class Kleros extends ethereum.SmartContract {
256
365
let value = result . value ;
257
366
return ethereum . CallResult . fromValue ( value [ 0 ] . toBigInt ( ) ) ;
258
367
}
368
+
369
+ disputes ( param0 : BigInt ) : Kleros__disputesResult {
370
+ let result = super . call (
371
+ "disputes" ,
372
+ "disputes(uint256):(uint96,address,uint256,uint8,uint256,uint256,uint256,bool)" ,
373
+ [ ethereum . Value . fromUnsignedBigInt ( param0 ) ]
374
+ ) ;
375
+
376
+ return new Kleros__disputesResult (
377
+ result [ 0 ] . toBigInt ( ) ,
378
+ result [ 1 ] . toAddress ( ) ,
379
+ result [ 2 ] . toBigInt ( ) ,
380
+ result [ 3 ] . toI32 ( ) ,
381
+ result [ 4 ] . toBigInt ( ) ,
382
+ result [ 5 ] . toBigInt ( ) ,
383
+ result [ 6 ] . toBigInt ( ) ,
384
+ result [ 7 ] . toBoolean ( )
385
+ ) ;
386
+ }
387
+
388
+ try_disputes ( param0 : BigInt ) : ethereum . CallResult < Kleros__disputesResult > {
389
+ let result = super . tryCall (
390
+ "disputes" ,
391
+ "disputes(uint256):(uint96,address,uint256,uint8,uint256,uint256,uint256,bool)" ,
392
+ [ ethereum . Value . fromUnsignedBigInt ( param0 ) ]
393
+ ) ;
394
+ if ( result . reverted ) {
395
+ return new ethereum . CallResult ( ) ;
396
+ }
397
+ let value = result . value ;
398
+ return ethereum . CallResult . fromValue (
399
+ new Kleros__disputesResult (
400
+ value [ 0 ] . toBigInt ( ) ,
401
+ value [ 1 ] . toAddress ( ) ,
402
+ value [ 2 ] . toBigInt ( ) ,
403
+ value [ 3 ] . toI32 ( ) ,
404
+ value [ 4 ] . toBigInt ( ) ,
405
+ value [ 5 ] . toBigInt ( ) ,
406
+ value [ 6 ] . toBigInt ( ) ,
407
+ value [ 7 ] . toBoolean ( )
408
+ )
409
+ ) ;
410
+ }
259
411
}
260
412
261
413
export class AppealCall extends ethereum . Call {
0 commit comments