Skip to content

Commit 47b833f

Browse files
committed
update
1 parent 1766c30 commit 47b833f

16 files changed

+598
-88
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
node_modules
2-
build
2+
build
3+
4+
mappings/const.ts
5+
subgraph.yaml

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
subgraph.template.yaml

config/mainnet.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"chain": "mainnet",
3+
"address": "0x988b3a538b618c7a603e1c11ab82cd16dbe28069",
4+
"startBlock": "7303699"
5+
}

config/xdai.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"chain": "xdai",
3+
"address": "0x9c1da9a04925bdfdedf0f6421bc7eea8305f9002",
4+
"startBlock": "16895601"
5+
}

const.ts

Whitespace-only changes.

contracts/kleros.json

+72
Original file line numberDiff line numberDiff line change
@@ -209,5 +209,77 @@
209209
],
210210
"name": "NewPeriod",
211211
"type": "event"
212+
},
213+
{
214+
"anonymous": false,
215+
"inputs": [
216+
{
217+
"indexed": true,
218+
"name": "_address",
219+
"type": "address"
220+
},
221+
{
222+
"indexed": true,
223+
"name": "_disputeID",
224+
"type": "uint256"
225+
},
226+
{
227+
"name": "_appeal",
228+
"type": "uint8"
229+
},
230+
{
231+
"name": "_voteID",
232+
"type": "uint8"
233+
}
234+
],
235+
"name": "Draw",
236+
"type": "event"
237+
},
238+
{
239+
"constant": true,
240+
"inputs": [
241+
{
242+
"name": "",
243+
"type": "uint256"
244+
}
245+
],
246+
"name": "disputes",
247+
"outputs": [
248+
{
249+
"name": "subcourtID",
250+
"type": "uint96"
251+
},
252+
{
253+
"name": "arbitrated",
254+
"type": "address"
255+
},
256+
{
257+
"name": "numberOfChoices",
258+
"type": "uint256"
259+
},
260+
{
261+
"name": "period",
262+
"type": "uint8"
263+
},
264+
{
265+
"name": "lastPeriodChange",
266+
"type": "uint256"
267+
},
268+
{
269+
"name": "drawsInRound",
270+
"type": "uint256"
271+
},
272+
{
273+
"name": "commitsInRound",
274+
"type": "uint256"
275+
},
276+
{
277+
"name": "ruled",
278+
"type": "bool"
279+
}
280+
],
281+
"payable": false,
282+
"stateMutability": "view",
283+
"type": "function"
212284
}
213285
]

generated/Kleros/Kleros.ts

+152
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,36 @@ export class NewPeriod__Params {
9898
}
9999
}
100100

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+
101131
export class Kleros__appealPeriodResult {
102132
value0: BigInt;
103133
value1: BigInt;
@@ -123,6 +153,85 @@ export class Kleros__appealPeriodResult {
123153
}
124154
}
125155

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+
126235
export class Kleros extends ethereum.SmartContract {
127236
static bind(address: Address): Kleros {
128237
return new Kleros("Kleros", address);
@@ -256,6 +365,49 @@ export class Kleros extends ethereum.SmartContract {
256365
let value = result.value;
257366
return ethereum.CallResult.fromValue(value[0].toBigInt());
258367
}
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+
}
259411
}
260412

261413
export class AppealCall extends ethereum.Call {

0 commit comments

Comments
 (0)