dkg 0.1.0b1__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.
- dkg/__init__.py +3 -0
- dkg/asset.py +781 -0
- dkg/constants.py +39 -0
- dkg/data/interfaces/Assertion.json +131 -0
- dkg/data/interfaces/AssertionStorage.json +229 -0
- dkg/data/interfaces/CommitManagerV1.json +534 -0
- dkg/data/interfaces/CommitManagerV1U1.json +720 -0
- dkg/data/interfaces/ContentAsset.json +671 -0
- dkg/data/interfaces/ContentAssetStorage.json +706 -0
- dkg/data/interfaces/HashingProxy.json +227 -0
- dkg/data/interfaces/Hub.json +356 -0
- dkg/data/interfaces/Identity.json +193 -0
- dkg/data/interfaces/IdentityStorage.json +342 -0
- dkg/data/interfaces/ParametersStorage.json +468 -0
- dkg/data/interfaces/Profile.json +292 -0
- dkg/data/interfaces/ProfileStorage.json +596 -0
- dkg/data/interfaces/ProofManagerV1.json +525 -0
- dkg/data/interfaces/ProofManagerV1U1.json +546 -0
- dkg/data/interfaces/ScoringProxy.json +242 -0
- dkg/data/interfaces/ServiceAgreementStorageProxy.json +1299 -0
- dkg/data/interfaces/ServiceAgreementStorageV1.json +901 -0
- dkg/data/interfaces/ServiceAgreementStorageV1U1.json +1097 -0
- dkg/data/interfaces/ServiceAgreementV1.json +741 -0
- dkg/data/interfaces/ShardingTable.json +268 -0
- dkg/data/interfaces/ShardingTableStorage.json +317 -0
- dkg/data/interfaces/Staking.json +456 -0
- dkg/data/interfaces/StakingStorage.json +407 -0
- dkg/data/interfaces/Token.json +544 -0
- dkg/data/interfaces/UnfinalizedStateStorage.json +171 -0
- dkg/data/interfaces/WhitelistStorage.json +124 -0
- dkg/dataclasses.py +45 -0
- dkg/exceptions.py +161 -0
- dkg/graph.py +63 -0
- dkg/main.py +74 -0
- dkg/manager.py +64 -0
- dkg/method.py +131 -0
- dkg/module.py +63 -0
- dkg/node.py +54 -0
- dkg/providers/__init__.py +2 -0
- dkg/providers/blockchain.py +181 -0
- dkg/providers/node_http.py +62 -0
- dkg/types/__init__.py +8 -0
- dkg/types/blockchain.py +58 -0
- dkg/types/dkg_node.py +20 -0
- dkg/types/encoding.py +22 -0
- dkg/types/evm.py +25 -0
- dkg/types/generics.py +21 -0
- dkg/types/network.py +20 -0
- dkg/types/rdf.py +21 -0
- dkg/utils/__init__.py +0 -0
- dkg/utils/blockchain_request.py +159 -0
- dkg/utils/decorators.py +46 -0
- dkg/utils/merkle.py +173 -0
- dkg/utils/metadata.py +50 -0
- dkg/utils/node_request.py +197 -0
- dkg/utils/rdf.py +51 -0
- dkg/utils/string_transformations.py +22 -0
- dkg/utils/ual.py +41 -0
- dkg-0.1.0b1.dist-info/LICENSE +202 -0
- dkg-0.1.0b1.dist-info/METADATA +453 -0
- dkg-0.1.0b1.dist-info/RECORD +62 -0
- dkg-0.1.0b1.dist-info/WHEEL +4 -0
@@ -0,0 +1,1299 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"inputs": [
|
4
|
+
{
|
5
|
+
"internalType": "address",
|
6
|
+
"name": "hubAddress",
|
7
|
+
"type": "address"
|
8
|
+
}
|
9
|
+
],
|
10
|
+
"stateMutability": "nonpayable",
|
11
|
+
"type": "constructor"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"inputs": [
|
15
|
+
{
|
16
|
+
"internalType": "address",
|
17
|
+
"name": "caller",
|
18
|
+
"type": "address"
|
19
|
+
}
|
20
|
+
],
|
21
|
+
"name": "OnlyHubOwnerFunction",
|
22
|
+
"type": "error"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"inputs": [
|
26
|
+
{
|
27
|
+
"internalType": "bytes32",
|
28
|
+
"name": "agreementId",
|
29
|
+
"type": "bytes32"
|
30
|
+
}
|
31
|
+
],
|
32
|
+
"name": "agreementV1Exists",
|
33
|
+
"outputs": [
|
34
|
+
{
|
35
|
+
"internalType": "bool",
|
36
|
+
"name": "",
|
37
|
+
"type": "bool"
|
38
|
+
}
|
39
|
+
],
|
40
|
+
"stateMutability": "view",
|
41
|
+
"type": "function"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"inputs": [],
|
45
|
+
"name": "agreementV1StorageAddress",
|
46
|
+
"outputs": [
|
47
|
+
{
|
48
|
+
"internalType": "address",
|
49
|
+
"name": "",
|
50
|
+
"type": "address"
|
51
|
+
}
|
52
|
+
],
|
53
|
+
"stateMutability": "view",
|
54
|
+
"type": "function"
|
55
|
+
},
|
56
|
+
{
|
57
|
+
"inputs": [
|
58
|
+
{
|
59
|
+
"internalType": "bytes32",
|
60
|
+
"name": "agreementId",
|
61
|
+
"type": "bytes32"
|
62
|
+
}
|
63
|
+
],
|
64
|
+
"name": "agreementV1U1Exists",
|
65
|
+
"outputs": [
|
66
|
+
{
|
67
|
+
"internalType": "bool",
|
68
|
+
"name": "",
|
69
|
+
"type": "bool"
|
70
|
+
}
|
71
|
+
],
|
72
|
+
"stateMutability": "view",
|
73
|
+
"type": "function"
|
74
|
+
},
|
75
|
+
{
|
76
|
+
"inputs": [],
|
77
|
+
"name": "agreementV1U1StorageAddress",
|
78
|
+
"outputs": [
|
79
|
+
{
|
80
|
+
"internalType": "address",
|
81
|
+
"name": "",
|
82
|
+
"type": "address"
|
83
|
+
}
|
84
|
+
],
|
85
|
+
"stateMutability": "view",
|
86
|
+
"type": "function"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"inputs": [
|
90
|
+
{
|
91
|
+
"internalType": "bytes32",
|
92
|
+
"name": "commitId",
|
93
|
+
"type": "bytes32"
|
94
|
+
}
|
95
|
+
],
|
96
|
+
"name": "commitSubmissionExists",
|
97
|
+
"outputs": [
|
98
|
+
{
|
99
|
+
"internalType": "bool",
|
100
|
+
"name": "",
|
101
|
+
"type": "bool"
|
102
|
+
}
|
103
|
+
],
|
104
|
+
"stateMutability": "view",
|
105
|
+
"type": "function"
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"inputs": [
|
109
|
+
{
|
110
|
+
"internalType": "bytes32",
|
111
|
+
"name": "commitId",
|
112
|
+
"type": "bytes32"
|
113
|
+
}
|
114
|
+
],
|
115
|
+
"name": "commitV1Exists",
|
116
|
+
"outputs": [
|
117
|
+
{
|
118
|
+
"internalType": "bool",
|
119
|
+
"name": "",
|
120
|
+
"type": "bool"
|
121
|
+
}
|
122
|
+
],
|
123
|
+
"stateMutability": "view",
|
124
|
+
"type": "function"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"inputs": [
|
128
|
+
{
|
129
|
+
"internalType": "bytes32",
|
130
|
+
"name": "commitId",
|
131
|
+
"type": "bytes32"
|
132
|
+
}
|
133
|
+
],
|
134
|
+
"name": "commitV1U1Exists",
|
135
|
+
"outputs": [
|
136
|
+
{
|
137
|
+
"internalType": "bool",
|
138
|
+
"name": "",
|
139
|
+
"type": "bool"
|
140
|
+
}
|
141
|
+
],
|
142
|
+
"stateMutability": "view",
|
143
|
+
"type": "function"
|
144
|
+
},
|
145
|
+
{
|
146
|
+
"inputs": [
|
147
|
+
{
|
148
|
+
"internalType": "bytes32",
|
149
|
+
"name": "commitId",
|
150
|
+
"type": "bytes32"
|
151
|
+
},
|
152
|
+
{
|
153
|
+
"internalType": "uint72",
|
154
|
+
"name": "identityId",
|
155
|
+
"type": "uint72"
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"internalType": "uint72",
|
159
|
+
"name": "prevIdentityId",
|
160
|
+
"type": "uint72"
|
161
|
+
},
|
162
|
+
{
|
163
|
+
"internalType": "uint72",
|
164
|
+
"name": "nextIdentityId",
|
165
|
+
"type": "uint72"
|
166
|
+
},
|
167
|
+
{
|
168
|
+
"internalType": "uint40",
|
169
|
+
"name": "score",
|
170
|
+
"type": "uint40"
|
171
|
+
}
|
172
|
+
],
|
173
|
+
"name": "createV1CommitSubmissionObject",
|
174
|
+
"outputs": [],
|
175
|
+
"stateMutability": "nonpayable",
|
176
|
+
"type": "function"
|
177
|
+
},
|
178
|
+
{
|
179
|
+
"inputs": [
|
180
|
+
{
|
181
|
+
"internalType": "bytes32",
|
182
|
+
"name": "agreementId",
|
183
|
+
"type": "bytes32"
|
184
|
+
},
|
185
|
+
{
|
186
|
+
"internalType": "uint16",
|
187
|
+
"name": "epochsNumber",
|
188
|
+
"type": "uint16"
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"internalType": "uint128",
|
192
|
+
"name": "epochLength",
|
193
|
+
"type": "uint128"
|
194
|
+
},
|
195
|
+
{
|
196
|
+
"internalType": "uint96",
|
197
|
+
"name": "tokenAmount",
|
198
|
+
"type": "uint96"
|
199
|
+
},
|
200
|
+
{
|
201
|
+
"internalType": "uint8",
|
202
|
+
"name": "scoreFunctionId",
|
203
|
+
"type": "uint8"
|
204
|
+
},
|
205
|
+
{
|
206
|
+
"internalType": "uint8",
|
207
|
+
"name": "proofWindowOffsetPerc",
|
208
|
+
"type": "uint8"
|
209
|
+
}
|
210
|
+
],
|
211
|
+
"name": "createV1ServiceAgreementObject",
|
212
|
+
"outputs": [],
|
213
|
+
"stateMutability": "nonpayable",
|
214
|
+
"type": "function"
|
215
|
+
},
|
216
|
+
{
|
217
|
+
"inputs": [
|
218
|
+
{
|
219
|
+
"internalType": "bytes32",
|
220
|
+
"name": "commitId",
|
221
|
+
"type": "bytes32"
|
222
|
+
},
|
223
|
+
{
|
224
|
+
"internalType": "uint72",
|
225
|
+
"name": "identityId",
|
226
|
+
"type": "uint72"
|
227
|
+
},
|
228
|
+
{
|
229
|
+
"internalType": "uint72",
|
230
|
+
"name": "prevIdentityId",
|
231
|
+
"type": "uint72"
|
232
|
+
},
|
233
|
+
{
|
234
|
+
"internalType": "uint72",
|
235
|
+
"name": "nextIdentityId",
|
236
|
+
"type": "uint72"
|
237
|
+
},
|
238
|
+
{
|
239
|
+
"internalType": "uint40",
|
240
|
+
"name": "score",
|
241
|
+
"type": "uint40"
|
242
|
+
}
|
243
|
+
],
|
244
|
+
"name": "createV1U1CommitSubmissionObject",
|
245
|
+
"outputs": [],
|
246
|
+
"stateMutability": "nonpayable",
|
247
|
+
"type": "function"
|
248
|
+
},
|
249
|
+
{
|
250
|
+
"inputs": [
|
251
|
+
{
|
252
|
+
"internalType": "bytes32",
|
253
|
+
"name": "agreementId",
|
254
|
+
"type": "bytes32"
|
255
|
+
},
|
256
|
+
{
|
257
|
+
"internalType": "uint256",
|
258
|
+
"name": "startTime",
|
259
|
+
"type": "uint256"
|
260
|
+
},
|
261
|
+
{
|
262
|
+
"internalType": "uint16",
|
263
|
+
"name": "epochsNumber",
|
264
|
+
"type": "uint16"
|
265
|
+
},
|
266
|
+
{
|
267
|
+
"internalType": "uint128",
|
268
|
+
"name": "epochLength",
|
269
|
+
"type": "uint128"
|
270
|
+
},
|
271
|
+
{
|
272
|
+
"internalType": "uint96",
|
273
|
+
"name": "tokenAmount",
|
274
|
+
"type": "uint96"
|
275
|
+
},
|
276
|
+
{
|
277
|
+
"internalType": "uint8",
|
278
|
+
"name": "scoreFunctionId",
|
279
|
+
"type": "uint8"
|
280
|
+
},
|
281
|
+
{
|
282
|
+
"internalType": "uint8",
|
283
|
+
"name": "proofWindowOffsetPerc",
|
284
|
+
"type": "uint8"
|
285
|
+
}
|
286
|
+
],
|
287
|
+
"name": "createV1U1ServiceAgreementObject",
|
288
|
+
"outputs": [],
|
289
|
+
"stateMutability": "nonpayable",
|
290
|
+
"type": "function"
|
291
|
+
},
|
292
|
+
{
|
293
|
+
"inputs": [
|
294
|
+
{
|
295
|
+
"internalType": "bytes32",
|
296
|
+
"name": "agreementId",
|
297
|
+
"type": "bytes32"
|
298
|
+
},
|
299
|
+
{
|
300
|
+
"internalType": "uint16",
|
301
|
+
"name": "epoch",
|
302
|
+
"type": "uint16"
|
303
|
+
}
|
304
|
+
],
|
305
|
+
"name": "decrementAgreementRewardedNodesNumber",
|
306
|
+
"outputs": [],
|
307
|
+
"stateMutability": "nonpayable",
|
308
|
+
"type": "function"
|
309
|
+
},
|
310
|
+
{
|
311
|
+
"inputs": [
|
312
|
+
{
|
313
|
+
"internalType": "bytes32",
|
314
|
+
"name": "epochStateId",
|
315
|
+
"type": "bytes32"
|
316
|
+
}
|
317
|
+
],
|
318
|
+
"name": "decrementCommitsCount",
|
319
|
+
"outputs": [],
|
320
|
+
"stateMutability": "nonpayable",
|
321
|
+
"type": "function"
|
322
|
+
},
|
323
|
+
{
|
324
|
+
"inputs": [
|
325
|
+
{
|
326
|
+
"internalType": "bytes32",
|
327
|
+
"name": "agreementId",
|
328
|
+
"type": "bytes32"
|
329
|
+
},
|
330
|
+
{
|
331
|
+
"internalType": "uint16",
|
332
|
+
"name": "epoch",
|
333
|
+
"type": "uint16"
|
334
|
+
}
|
335
|
+
],
|
336
|
+
"name": "deleteAgreementRewardedNodesNumber",
|
337
|
+
"outputs": [],
|
338
|
+
"stateMutability": "nonpayable",
|
339
|
+
"type": "function"
|
340
|
+
},
|
341
|
+
{
|
342
|
+
"inputs": [
|
343
|
+
{
|
344
|
+
"internalType": "bytes32",
|
345
|
+
"name": "commitId",
|
346
|
+
"type": "bytes32"
|
347
|
+
}
|
348
|
+
],
|
349
|
+
"name": "deleteCommitSubmissionsObject",
|
350
|
+
"outputs": [],
|
351
|
+
"stateMutability": "nonpayable",
|
352
|
+
"type": "function"
|
353
|
+
},
|
354
|
+
{
|
355
|
+
"inputs": [
|
356
|
+
{
|
357
|
+
"internalType": "bytes32",
|
358
|
+
"name": "epochStateId",
|
359
|
+
"type": "bytes32"
|
360
|
+
}
|
361
|
+
],
|
362
|
+
"name": "deleteCommitsCount",
|
363
|
+
"outputs": [],
|
364
|
+
"stateMutability": "nonpayable",
|
365
|
+
"type": "function"
|
366
|
+
},
|
367
|
+
{
|
368
|
+
"inputs": [
|
369
|
+
{
|
370
|
+
"internalType": "bytes32",
|
371
|
+
"name": "agreementId",
|
372
|
+
"type": "bytes32"
|
373
|
+
}
|
374
|
+
],
|
375
|
+
"name": "deleteServiceAgreementObject",
|
376
|
+
"outputs": [],
|
377
|
+
"stateMutability": "nonpayable",
|
378
|
+
"type": "function"
|
379
|
+
},
|
380
|
+
{
|
381
|
+
"inputs": [
|
382
|
+
{
|
383
|
+
"internalType": "bytes32",
|
384
|
+
"name": "stateId",
|
385
|
+
"type": "bytes32"
|
386
|
+
}
|
387
|
+
],
|
388
|
+
"name": "deleteUpdateCommitsDeadline",
|
389
|
+
"outputs": [],
|
390
|
+
"stateMutability": "nonpayable",
|
391
|
+
"type": "function"
|
392
|
+
},
|
393
|
+
{
|
394
|
+
"inputs": [
|
395
|
+
{
|
396
|
+
"internalType": "bytes32",
|
397
|
+
"name": "agreementId",
|
398
|
+
"type": "bytes32"
|
399
|
+
}
|
400
|
+
],
|
401
|
+
"name": "getAgreementData",
|
402
|
+
"outputs": [
|
403
|
+
{
|
404
|
+
"internalType": "uint256",
|
405
|
+
"name": "startTime",
|
406
|
+
"type": "uint256"
|
407
|
+
},
|
408
|
+
{
|
409
|
+
"internalType": "uint16",
|
410
|
+
"name": "epochsNumber",
|
411
|
+
"type": "uint16"
|
412
|
+
},
|
413
|
+
{
|
414
|
+
"internalType": "uint128",
|
415
|
+
"name": "epochLength",
|
416
|
+
"type": "uint128"
|
417
|
+
},
|
418
|
+
{
|
419
|
+
"internalType": "uint96[2]",
|
420
|
+
"name": "tokensInfo",
|
421
|
+
"type": "uint96[2]"
|
422
|
+
},
|
423
|
+
{
|
424
|
+
"internalType": "uint8[2]",
|
425
|
+
"name": "scoreFunctionIdAndProofWindowOffsetPerc",
|
426
|
+
"type": "uint8[2]"
|
427
|
+
}
|
428
|
+
],
|
429
|
+
"stateMutability": "view",
|
430
|
+
"type": "function"
|
431
|
+
},
|
432
|
+
{
|
433
|
+
"inputs": [
|
434
|
+
{
|
435
|
+
"internalType": "bytes32",
|
436
|
+
"name": "agreementId",
|
437
|
+
"type": "bytes32"
|
438
|
+
}
|
439
|
+
],
|
440
|
+
"name": "getAgreementEpochLength",
|
441
|
+
"outputs": [
|
442
|
+
{
|
443
|
+
"internalType": "uint128",
|
444
|
+
"name": "",
|
445
|
+
"type": "uint128"
|
446
|
+
}
|
447
|
+
],
|
448
|
+
"stateMutability": "view",
|
449
|
+
"type": "function"
|
450
|
+
},
|
451
|
+
{
|
452
|
+
"inputs": [
|
453
|
+
{
|
454
|
+
"internalType": "bytes32",
|
455
|
+
"name": "agreementId",
|
456
|
+
"type": "bytes32"
|
457
|
+
}
|
458
|
+
],
|
459
|
+
"name": "getAgreementEpochsNumber",
|
460
|
+
"outputs": [
|
461
|
+
{
|
462
|
+
"internalType": "uint16",
|
463
|
+
"name": "",
|
464
|
+
"type": "uint16"
|
465
|
+
}
|
466
|
+
],
|
467
|
+
"stateMutability": "view",
|
468
|
+
"type": "function"
|
469
|
+
},
|
470
|
+
{
|
471
|
+
"inputs": [
|
472
|
+
{
|
473
|
+
"internalType": "bytes32",
|
474
|
+
"name": "agreementId",
|
475
|
+
"type": "bytes32"
|
476
|
+
}
|
477
|
+
],
|
478
|
+
"name": "getAgreementProofWindowOffsetPerc",
|
479
|
+
"outputs": [
|
480
|
+
{
|
481
|
+
"internalType": "uint8",
|
482
|
+
"name": "",
|
483
|
+
"type": "uint8"
|
484
|
+
}
|
485
|
+
],
|
486
|
+
"stateMutability": "view",
|
487
|
+
"type": "function"
|
488
|
+
},
|
489
|
+
{
|
490
|
+
"inputs": [
|
491
|
+
{
|
492
|
+
"internalType": "bytes32",
|
493
|
+
"name": "agreementId",
|
494
|
+
"type": "bytes32"
|
495
|
+
},
|
496
|
+
{
|
497
|
+
"internalType": "uint16",
|
498
|
+
"name": "epoch",
|
499
|
+
"type": "uint16"
|
500
|
+
}
|
501
|
+
],
|
502
|
+
"name": "getAgreementRewardedNodesNumber",
|
503
|
+
"outputs": [
|
504
|
+
{
|
505
|
+
"internalType": "uint32",
|
506
|
+
"name": "",
|
507
|
+
"type": "uint32"
|
508
|
+
}
|
509
|
+
],
|
510
|
+
"stateMutability": "view",
|
511
|
+
"type": "function"
|
512
|
+
},
|
513
|
+
{
|
514
|
+
"inputs": [
|
515
|
+
{
|
516
|
+
"internalType": "bytes32",
|
517
|
+
"name": "agreementId",
|
518
|
+
"type": "bytes32"
|
519
|
+
}
|
520
|
+
],
|
521
|
+
"name": "getAgreementScoreFunctionId",
|
522
|
+
"outputs": [
|
523
|
+
{
|
524
|
+
"internalType": "uint8",
|
525
|
+
"name": "",
|
526
|
+
"type": "uint8"
|
527
|
+
}
|
528
|
+
],
|
529
|
+
"stateMutability": "view",
|
530
|
+
"type": "function"
|
531
|
+
},
|
532
|
+
{
|
533
|
+
"inputs": [
|
534
|
+
{
|
535
|
+
"internalType": "bytes32",
|
536
|
+
"name": "agreementId",
|
537
|
+
"type": "bytes32"
|
538
|
+
}
|
539
|
+
],
|
540
|
+
"name": "getAgreementStartTime",
|
541
|
+
"outputs": [
|
542
|
+
{
|
543
|
+
"internalType": "uint256",
|
544
|
+
"name": "",
|
545
|
+
"type": "uint256"
|
546
|
+
}
|
547
|
+
],
|
548
|
+
"stateMutability": "view",
|
549
|
+
"type": "function"
|
550
|
+
},
|
551
|
+
{
|
552
|
+
"inputs": [
|
553
|
+
{
|
554
|
+
"internalType": "bytes32",
|
555
|
+
"name": "agreementId",
|
556
|
+
"type": "bytes32"
|
557
|
+
}
|
558
|
+
],
|
559
|
+
"name": "getAgreementTokenAmount",
|
560
|
+
"outputs": [
|
561
|
+
{
|
562
|
+
"internalType": "uint96",
|
563
|
+
"name": "",
|
564
|
+
"type": "uint96"
|
565
|
+
}
|
566
|
+
],
|
567
|
+
"stateMutability": "view",
|
568
|
+
"type": "function"
|
569
|
+
},
|
570
|
+
{
|
571
|
+
"inputs": [
|
572
|
+
{
|
573
|
+
"internalType": "bytes32",
|
574
|
+
"name": "agreementId",
|
575
|
+
"type": "bytes32"
|
576
|
+
}
|
577
|
+
],
|
578
|
+
"name": "getAgreementUpdateTokenAmount",
|
579
|
+
"outputs": [
|
580
|
+
{
|
581
|
+
"internalType": "uint96",
|
582
|
+
"name": "",
|
583
|
+
"type": "uint96"
|
584
|
+
}
|
585
|
+
],
|
586
|
+
"stateMutability": "view",
|
587
|
+
"type": "function"
|
588
|
+
},
|
589
|
+
{
|
590
|
+
"inputs": [
|
591
|
+
{
|
592
|
+
"internalType": "bytes32",
|
593
|
+
"name": "commitId",
|
594
|
+
"type": "bytes32"
|
595
|
+
}
|
596
|
+
],
|
597
|
+
"name": "getCommitSubmission",
|
598
|
+
"outputs": [
|
599
|
+
{
|
600
|
+
"components": [
|
601
|
+
{
|
602
|
+
"internalType": "uint72",
|
603
|
+
"name": "identityId",
|
604
|
+
"type": "uint72"
|
605
|
+
},
|
606
|
+
{
|
607
|
+
"internalType": "uint72",
|
608
|
+
"name": "prevIdentityId",
|
609
|
+
"type": "uint72"
|
610
|
+
},
|
611
|
+
{
|
612
|
+
"internalType": "uint72",
|
613
|
+
"name": "nextIdentityId",
|
614
|
+
"type": "uint72"
|
615
|
+
},
|
616
|
+
{
|
617
|
+
"internalType": "uint40",
|
618
|
+
"name": "score",
|
619
|
+
"type": "uint40"
|
620
|
+
}
|
621
|
+
],
|
622
|
+
"internalType": "struct ServiceAgreementStructsV1.CommitSubmission",
|
623
|
+
"name": "",
|
624
|
+
"type": "tuple"
|
625
|
+
}
|
626
|
+
],
|
627
|
+
"stateMutability": "view",
|
628
|
+
"type": "function"
|
629
|
+
},
|
630
|
+
{
|
631
|
+
"inputs": [
|
632
|
+
{
|
633
|
+
"internalType": "bytes32",
|
634
|
+
"name": "commitId",
|
635
|
+
"type": "bytes32"
|
636
|
+
}
|
637
|
+
],
|
638
|
+
"name": "getCommitSubmissionIdentityId",
|
639
|
+
"outputs": [
|
640
|
+
{
|
641
|
+
"internalType": "uint72",
|
642
|
+
"name": "",
|
643
|
+
"type": "uint72"
|
644
|
+
}
|
645
|
+
],
|
646
|
+
"stateMutability": "view",
|
647
|
+
"type": "function"
|
648
|
+
},
|
649
|
+
{
|
650
|
+
"inputs": [
|
651
|
+
{
|
652
|
+
"internalType": "bytes32",
|
653
|
+
"name": "commitId",
|
654
|
+
"type": "bytes32"
|
655
|
+
}
|
656
|
+
],
|
657
|
+
"name": "getCommitSubmissionNextIdentityId",
|
658
|
+
"outputs": [
|
659
|
+
{
|
660
|
+
"internalType": "uint72",
|
661
|
+
"name": "",
|
662
|
+
"type": "uint72"
|
663
|
+
}
|
664
|
+
],
|
665
|
+
"stateMutability": "view",
|
666
|
+
"type": "function"
|
667
|
+
},
|
668
|
+
{
|
669
|
+
"inputs": [
|
670
|
+
{
|
671
|
+
"internalType": "bytes32",
|
672
|
+
"name": "commitId",
|
673
|
+
"type": "bytes32"
|
674
|
+
}
|
675
|
+
],
|
676
|
+
"name": "getCommitSubmissionPrevIdentityId",
|
677
|
+
"outputs": [
|
678
|
+
{
|
679
|
+
"internalType": "uint72",
|
680
|
+
"name": "",
|
681
|
+
"type": "uint72"
|
682
|
+
}
|
683
|
+
],
|
684
|
+
"stateMutability": "view",
|
685
|
+
"type": "function"
|
686
|
+
},
|
687
|
+
{
|
688
|
+
"inputs": [
|
689
|
+
{
|
690
|
+
"internalType": "bytes32",
|
691
|
+
"name": "commitId",
|
692
|
+
"type": "bytes32"
|
693
|
+
}
|
694
|
+
],
|
695
|
+
"name": "getCommitSubmissionScore",
|
696
|
+
"outputs": [
|
697
|
+
{
|
698
|
+
"internalType": "uint40",
|
699
|
+
"name": "",
|
700
|
+
"type": "uint40"
|
701
|
+
}
|
702
|
+
],
|
703
|
+
"stateMutability": "view",
|
704
|
+
"type": "function"
|
705
|
+
},
|
706
|
+
{
|
707
|
+
"inputs": [
|
708
|
+
{
|
709
|
+
"internalType": "bytes32",
|
710
|
+
"name": "epochStateId",
|
711
|
+
"type": "bytes32"
|
712
|
+
}
|
713
|
+
],
|
714
|
+
"name": "getCommitsCount",
|
715
|
+
"outputs": [
|
716
|
+
{
|
717
|
+
"internalType": "uint8",
|
718
|
+
"name": "",
|
719
|
+
"type": "uint8"
|
720
|
+
}
|
721
|
+
],
|
722
|
+
"stateMutability": "view",
|
723
|
+
"type": "function"
|
724
|
+
},
|
725
|
+
{
|
726
|
+
"inputs": [
|
727
|
+
{
|
728
|
+
"internalType": "bytes32",
|
729
|
+
"name": "stateId",
|
730
|
+
"type": "bytes32"
|
731
|
+
}
|
732
|
+
],
|
733
|
+
"name": "getUpdateCommitsDeadline",
|
734
|
+
"outputs": [
|
735
|
+
{
|
736
|
+
"internalType": "uint256",
|
737
|
+
"name": "",
|
738
|
+
"type": "uint256"
|
739
|
+
}
|
740
|
+
],
|
741
|
+
"stateMutability": "view",
|
742
|
+
"type": "function"
|
743
|
+
},
|
744
|
+
{
|
745
|
+
"inputs": [
|
746
|
+
{
|
747
|
+
"internalType": "bytes32",
|
748
|
+
"name": "agreementId",
|
749
|
+
"type": "bytes32"
|
750
|
+
},
|
751
|
+
{
|
752
|
+
"internalType": "uint16",
|
753
|
+
"name": "epoch",
|
754
|
+
"type": "uint16"
|
755
|
+
}
|
756
|
+
],
|
757
|
+
"name": "getV1AgreementEpochSubmissionHead",
|
758
|
+
"outputs": [
|
759
|
+
{
|
760
|
+
"internalType": "bytes32",
|
761
|
+
"name": "",
|
762
|
+
"type": "bytes32"
|
763
|
+
}
|
764
|
+
],
|
765
|
+
"stateMutability": "view",
|
766
|
+
"type": "function"
|
767
|
+
},
|
768
|
+
{
|
769
|
+
"inputs": [
|
770
|
+
{
|
771
|
+
"internalType": "bytes32",
|
772
|
+
"name": "agreementId",
|
773
|
+
"type": "bytes32"
|
774
|
+
},
|
775
|
+
{
|
776
|
+
"internalType": "uint16",
|
777
|
+
"name": "epoch",
|
778
|
+
"type": "uint16"
|
779
|
+
},
|
780
|
+
{
|
781
|
+
"internalType": "uint256",
|
782
|
+
"name": "stateIndex",
|
783
|
+
"type": "uint256"
|
784
|
+
}
|
785
|
+
],
|
786
|
+
"name": "getV1U1AgreementEpochSubmissionHead",
|
787
|
+
"outputs": [
|
788
|
+
{
|
789
|
+
"internalType": "bytes32",
|
790
|
+
"name": "",
|
791
|
+
"type": "bytes32"
|
792
|
+
}
|
793
|
+
],
|
794
|
+
"stateMutability": "view",
|
795
|
+
"type": "function"
|
796
|
+
},
|
797
|
+
{
|
798
|
+
"inputs": [],
|
799
|
+
"name": "hub",
|
800
|
+
"outputs": [
|
801
|
+
{
|
802
|
+
"internalType": "contract Hub",
|
803
|
+
"name": "",
|
804
|
+
"type": "address"
|
805
|
+
}
|
806
|
+
],
|
807
|
+
"stateMutability": "view",
|
808
|
+
"type": "function"
|
809
|
+
},
|
810
|
+
{
|
811
|
+
"inputs": [
|
812
|
+
{
|
813
|
+
"internalType": "bytes32",
|
814
|
+
"name": "agreementId",
|
815
|
+
"type": "bytes32"
|
816
|
+
},
|
817
|
+
{
|
818
|
+
"internalType": "uint16",
|
819
|
+
"name": "epoch",
|
820
|
+
"type": "uint16"
|
821
|
+
}
|
822
|
+
],
|
823
|
+
"name": "incrementAgreementRewardedNodesNumber",
|
824
|
+
"outputs": [],
|
825
|
+
"stateMutability": "nonpayable",
|
826
|
+
"type": "function"
|
827
|
+
},
|
828
|
+
{
|
829
|
+
"inputs": [
|
830
|
+
{
|
831
|
+
"internalType": "bytes32",
|
832
|
+
"name": "epochStateId",
|
833
|
+
"type": "bytes32"
|
834
|
+
}
|
835
|
+
],
|
836
|
+
"name": "incrementCommitsCount",
|
837
|
+
"outputs": [],
|
838
|
+
"stateMutability": "nonpayable",
|
839
|
+
"type": "function"
|
840
|
+
},
|
841
|
+
{
|
842
|
+
"inputs": [],
|
843
|
+
"name": "initialize",
|
844
|
+
"outputs": [],
|
845
|
+
"stateMutability": "nonpayable",
|
846
|
+
"type": "function"
|
847
|
+
},
|
848
|
+
{
|
849
|
+
"inputs": [
|
850
|
+
{
|
851
|
+
"internalType": "bytes32",
|
852
|
+
"name": "agreementId",
|
853
|
+
"type": "bytes32"
|
854
|
+
}
|
855
|
+
],
|
856
|
+
"name": "migrateV1ServiceAgreement",
|
857
|
+
"outputs": [],
|
858
|
+
"stateMutability": "nonpayable",
|
859
|
+
"type": "function"
|
860
|
+
},
|
861
|
+
{
|
862
|
+
"inputs": [],
|
863
|
+
"name": "name",
|
864
|
+
"outputs": [
|
865
|
+
{
|
866
|
+
"internalType": "string",
|
867
|
+
"name": "",
|
868
|
+
"type": "string"
|
869
|
+
}
|
870
|
+
],
|
871
|
+
"stateMutability": "pure",
|
872
|
+
"type": "function"
|
873
|
+
},
|
874
|
+
{
|
875
|
+
"inputs": [
|
876
|
+
{
|
877
|
+
"internalType": "bytes32",
|
878
|
+
"name": "agreementId",
|
879
|
+
"type": "bytes32"
|
880
|
+
}
|
881
|
+
],
|
882
|
+
"name": "serviceAgreementExists",
|
883
|
+
"outputs": [
|
884
|
+
{
|
885
|
+
"internalType": "bool",
|
886
|
+
"name": "",
|
887
|
+
"type": "bool"
|
888
|
+
}
|
889
|
+
],
|
890
|
+
"stateMutability": "view",
|
891
|
+
"type": "function"
|
892
|
+
},
|
893
|
+
{
|
894
|
+
"inputs": [
|
895
|
+
{
|
896
|
+
"internalType": "bytes32",
|
897
|
+
"name": "agreementId",
|
898
|
+
"type": "bytes32"
|
899
|
+
},
|
900
|
+
{
|
901
|
+
"internalType": "uint128",
|
902
|
+
"name": "epochLength",
|
903
|
+
"type": "uint128"
|
904
|
+
}
|
905
|
+
],
|
906
|
+
"name": "setAgreementEpochLength",
|
907
|
+
"outputs": [],
|
908
|
+
"stateMutability": "nonpayable",
|
909
|
+
"type": "function"
|
910
|
+
},
|
911
|
+
{
|
912
|
+
"inputs": [
|
913
|
+
{
|
914
|
+
"internalType": "bytes32",
|
915
|
+
"name": "agreementId",
|
916
|
+
"type": "bytes32"
|
917
|
+
},
|
918
|
+
{
|
919
|
+
"internalType": "uint16",
|
920
|
+
"name": "epochsNumber",
|
921
|
+
"type": "uint16"
|
922
|
+
}
|
923
|
+
],
|
924
|
+
"name": "setAgreementEpochsNumber",
|
925
|
+
"outputs": [],
|
926
|
+
"stateMutability": "nonpayable",
|
927
|
+
"type": "function"
|
928
|
+
},
|
929
|
+
{
|
930
|
+
"inputs": [
|
931
|
+
{
|
932
|
+
"internalType": "bytes32",
|
933
|
+
"name": "agreementId",
|
934
|
+
"type": "bytes32"
|
935
|
+
},
|
936
|
+
{
|
937
|
+
"internalType": "uint8",
|
938
|
+
"name": "proofWindowOffsetPerc",
|
939
|
+
"type": "uint8"
|
940
|
+
}
|
941
|
+
],
|
942
|
+
"name": "setAgreementProofWindowOffsetPerc",
|
943
|
+
"outputs": [],
|
944
|
+
"stateMutability": "nonpayable",
|
945
|
+
"type": "function"
|
946
|
+
},
|
947
|
+
{
|
948
|
+
"inputs": [
|
949
|
+
{
|
950
|
+
"internalType": "bytes32",
|
951
|
+
"name": "agreementId",
|
952
|
+
"type": "bytes32"
|
953
|
+
},
|
954
|
+
{
|
955
|
+
"internalType": "uint16",
|
956
|
+
"name": "epoch",
|
957
|
+
"type": "uint16"
|
958
|
+
},
|
959
|
+
{
|
960
|
+
"internalType": "uint32",
|
961
|
+
"name": "rewardedNodesNumber",
|
962
|
+
"type": "uint32"
|
963
|
+
}
|
964
|
+
],
|
965
|
+
"name": "setAgreementRewardedNodesNumber",
|
966
|
+
"outputs": [],
|
967
|
+
"stateMutability": "nonpayable",
|
968
|
+
"type": "function"
|
969
|
+
},
|
970
|
+
{
|
971
|
+
"inputs": [
|
972
|
+
{
|
973
|
+
"internalType": "bytes32",
|
974
|
+
"name": "agreementId",
|
975
|
+
"type": "bytes32"
|
976
|
+
},
|
977
|
+
{
|
978
|
+
"internalType": "uint8",
|
979
|
+
"name": "newScoreFunctionId",
|
980
|
+
"type": "uint8"
|
981
|
+
}
|
982
|
+
],
|
983
|
+
"name": "setAgreementScoreFunctionId",
|
984
|
+
"outputs": [],
|
985
|
+
"stateMutability": "nonpayable",
|
986
|
+
"type": "function"
|
987
|
+
},
|
988
|
+
{
|
989
|
+
"inputs": [
|
990
|
+
{
|
991
|
+
"internalType": "bytes32",
|
992
|
+
"name": "agreementId",
|
993
|
+
"type": "bytes32"
|
994
|
+
},
|
995
|
+
{
|
996
|
+
"internalType": "uint256",
|
997
|
+
"name": "startTime",
|
998
|
+
"type": "uint256"
|
999
|
+
}
|
1000
|
+
],
|
1001
|
+
"name": "setAgreementStartTime",
|
1002
|
+
"outputs": [],
|
1003
|
+
"stateMutability": "nonpayable",
|
1004
|
+
"type": "function"
|
1005
|
+
},
|
1006
|
+
{
|
1007
|
+
"inputs": [
|
1008
|
+
{
|
1009
|
+
"internalType": "bytes32",
|
1010
|
+
"name": "agreementId",
|
1011
|
+
"type": "bytes32"
|
1012
|
+
},
|
1013
|
+
{
|
1014
|
+
"internalType": "uint96",
|
1015
|
+
"name": "tokenAmount",
|
1016
|
+
"type": "uint96"
|
1017
|
+
}
|
1018
|
+
],
|
1019
|
+
"name": "setAgreementTokenAmount",
|
1020
|
+
"outputs": [],
|
1021
|
+
"stateMutability": "nonpayable",
|
1022
|
+
"type": "function"
|
1023
|
+
},
|
1024
|
+
{
|
1025
|
+
"inputs": [
|
1026
|
+
{
|
1027
|
+
"internalType": "bytes32",
|
1028
|
+
"name": "agreementId",
|
1029
|
+
"type": "bytes32"
|
1030
|
+
},
|
1031
|
+
{
|
1032
|
+
"internalType": "uint96",
|
1033
|
+
"name": "updateTokenAmount",
|
1034
|
+
"type": "uint96"
|
1035
|
+
}
|
1036
|
+
],
|
1037
|
+
"name": "setAgreementUpdateTokenAmount",
|
1038
|
+
"outputs": [],
|
1039
|
+
"stateMutability": "nonpayable",
|
1040
|
+
"type": "function"
|
1041
|
+
},
|
1042
|
+
{
|
1043
|
+
"inputs": [
|
1044
|
+
{
|
1045
|
+
"internalType": "bytes32",
|
1046
|
+
"name": "commitId",
|
1047
|
+
"type": "bytes32"
|
1048
|
+
},
|
1049
|
+
{
|
1050
|
+
"internalType": "uint72",
|
1051
|
+
"name": "identityId",
|
1052
|
+
"type": "uint72"
|
1053
|
+
}
|
1054
|
+
],
|
1055
|
+
"name": "setCommitSubmissionIdentityId",
|
1056
|
+
"outputs": [],
|
1057
|
+
"stateMutability": "nonpayable",
|
1058
|
+
"type": "function"
|
1059
|
+
},
|
1060
|
+
{
|
1061
|
+
"inputs": [
|
1062
|
+
{
|
1063
|
+
"internalType": "bytes32",
|
1064
|
+
"name": "commitId",
|
1065
|
+
"type": "bytes32"
|
1066
|
+
},
|
1067
|
+
{
|
1068
|
+
"internalType": "uint72",
|
1069
|
+
"name": "nextIdentityId",
|
1070
|
+
"type": "uint72"
|
1071
|
+
}
|
1072
|
+
],
|
1073
|
+
"name": "setCommitSubmissionNextIdentityId",
|
1074
|
+
"outputs": [],
|
1075
|
+
"stateMutability": "nonpayable",
|
1076
|
+
"type": "function"
|
1077
|
+
},
|
1078
|
+
{
|
1079
|
+
"inputs": [
|
1080
|
+
{
|
1081
|
+
"internalType": "bytes32",
|
1082
|
+
"name": "commitId",
|
1083
|
+
"type": "bytes32"
|
1084
|
+
},
|
1085
|
+
{
|
1086
|
+
"internalType": "uint72",
|
1087
|
+
"name": "prevIdentityId",
|
1088
|
+
"type": "uint72"
|
1089
|
+
}
|
1090
|
+
],
|
1091
|
+
"name": "setCommitSubmissionPrevIdentityId",
|
1092
|
+
"outputs": [],
|
1093
|
+
"stateMutability": "nonpayable",
|
1094
|
+
"type": "function"
|
1095
|
+
},
|
1096
|
+
{
|
1097
|
+
"inputs": [
|
1098
|
+
{
|
1099
|
+
"internalType": "bytes32",
|
1100
|
+
"name": "commitId",
|
1101
|
+
"type": "bytes32"
|
1102
|
+
},
|
1103
|
+
{
|
1104
|
+
"internalType": "uint40",
|
1105
|
+
"name": "score",
|
1106
|
+
"type": "uint40"
|
1107
|
+
}
|
1108
|
+
],
|
1109
|
+
"name": "setCommitSubmissionScore",
|
1110
|
+
"outputs": [],
|
1111
|
+
"stateMutability": "nonpayable",
|
1112
|
+
"type": "function"
|
1113
|
+
},
|
1114
|
+
{
|
1115
|
+
"inputs": [
|
1116
|
+
{
|
1117
|
+
"internalType": "bytes32",
|
1118
|
+
"name": "epochStateId",
|
1119
|
+
"type": "bytes32"
|
1120
|
+
},
|
1121
|
+
{
|
1122
|
+
"internalType": "uint8",
|
1123
|
+
"name": "epochStateCommitsCount",
|
1124
|
+
"type": "uint8"
|
1125
|
+
}
|
1126
|
+
],
|
1127
|
+
"name": "setCommitsCount",
|
1128
|
+
"outputs": [],
|
1129
|
+
"stateMutability": "nonpayable",
|
1130
|
+
"type": "function"
|
1131
|
+
},
|
1132
|
+
{
|
1133
|
+
"inputs": [
|
1134
|
+
{
|
1135
|
+
"internalType": "bytes32",
|
1136
|
+
"name": "stateId",
|
1137
|
+
"type": "bytes32"
|
1138
|
+
},
|
1139
|
+
{
|
1140
|
+
"internalType": "uint256",
|
1141
|
+
"name": "deadline",
|
1142
|
+
"type": "uint256"
|
1143
|
+
}
|
1144
|
+
],
|
1145
|
+
"name": "setUpdateCommitsDeadline",
|
1146
|
+
"outputs": [],
|
1147
|
+
"stateMutability": "nonpayable",
|
1148
|
+
"type": "function"
|
1149
|
+
},
|
1150
|
+
{
|
1151
|
+
"inputs": [
|
1152
|
+
{
|
1153
|
+
"internalType": "bytes32",
|
1154
|
+
"name": "agreementId",
|
1155
|
+
"type": "bytes32"
|
1156
|
+
},
|
1157
|
+
{
|
1158
|
+
"internalType": "uint16",
|
1159
|
+
"name": "epoch",
|
1160
|
+
"type": "uint16"
|
1161
|
+
},
|
1162
|
+
{
|
1163
|
+
"internalType": "bytes32",
|
1164
|
+
"name": "headCommitId",
|
1165
|
+
"type": "bytes32"
|
1166
|
+
}
|
1167
|
+
],
|
1168
|
+
"name": "setV1AgreementEpochSubmissionHead",
|
1169
|
+
"outputs": [],
|
1170
|
+
"stateMutability": "nonpayable",
|
1171
|
+
"type": "function"
|
1172
|
+
},
|
1173
|
+
{
|
1174
|
+
"inputs": [
|
1175
|
+
{
|
1176
|
+
"internalType": "bytes32",
|
1177
|
+
"name": "agreementId",
|
1178
|
+
"type": "bytes32"
|
1179
|
+
},
|
1180
|
+
{
|
1181
|
+
"internalType": "uint16",
|
1182
|
+
"name": "epoch",
|
1183
|
+
"type": "uint16"
|
1184
|
+
},
|
1185
|
+
{
|
1186
|
+
"internalType": "uint256",
|
1187
|
+
"name": "stateIndex",
|
1188
|
+
"type": "uint256"
|
1189
|
+
},
|
1190
|
+
{
|
1191
|
+
"internalType": "bytes32",
|
1192
|
+
"name": "headCommitId",
|
1193
|
+
"type": "bytes32"
|
1194
|
+
}
|
1195
|
+
],
|
1196
|
+
"name": "setV1U1AgreementEpochSubmissionHead",
|
1197
|
+
"outputs": [],
|
1198
|
+
"stateMutability": "nonpayable",
|
1199
|
+
"type": "function"
|
1200
|
+
},
|
1201
|
+
{
|
1202
|
+
"inputs": [],
|
1203
|
+
"name": "storageV1",
|
1204
|
+
"outputs": [
|
1205
|
+
{
|
1206
|
+
"internalType": "contract ServiceAgreementStorageV1",
|
1207
|
+
"name": "",
|
1208
|
+
"type": "address"
|
1209
|
+
}
|
1210
|
+
],
|
1211
|
+
"stateMutability": "view",
|
1212
|
+
"type": "function"
|
1213
|
+
},
|
1214
|
+
{
|
1215
|
+
"inputs": [],
|
1216
|
+
"name": "storageV1U1",
|
1217
|
+
"outputs": [
|
1218
|
+
{
|
1219
|
+
"internalType": "contract ServiceAgreementStorageV1U1",
|
1220
|
+
"name": "",
|
1221
|
+
"type": "address"
|
1222
|
+
}
|
1223
|
+
],
|
1224
|
+
"stateMutability": "view",
|
1225
|
+
"type": "function"
|
1226
|
+
},
|
1227
|
+
{
|
1228
|
+
"inputs": [
|
1229
|
+
{
|
1230
|
+
"internalType": "bytes32",
|
1231
|
+
"name": "agreementId",
|
1232
|
+
"type": "bytes32"
|
1233
|
+
},
|
1234
|
+
{
|
1235
|
+
"internalType": "address",
|
1236
|
+
"name": "receiver",
|
1237
|
+
"type": "address"
|
1238
|
+
},
|
1239
|
+
{
|
1240
|
+
"internalType": "uint96",
|
1241
|
+
"name": "tokenAmount",
|
1242
|
+
"type": "uint96"
|
1243
|
+
}
|
1244
|
+
],
|
1245
|
+
"name": "transferAgreementTokens",
|
1246
|
+
"outputs": [],
|
1247
|
+
"stateMutability": "nonpayable",
|
1248
|
+
"type": "function"
|
1249
|
+
},
|
1250
|
+
{
|
1251
|
+
"inputs": [
|
1252
|
+
{
|
1253
|
+
"internalType": "address",
|
1254
|
+
"name": "receiver",
|
1255
|
+
"type": "address"
|
1256
|
+
},
|
1257
|
+
{
|
1258
|
+
"internalType": "uint96",
|
1259
|
+
"name": "tokenAmount",
|
1260
|
+
"type": "uint96"
|
1261
|
+
}
|
1262
|
+
],
|
1263
|
+
"name": "transferV1AgreementTokens",
|
1264
|
+
"outputs": [],
|
1265
|
+
"stateMutability": "nonpayable",
|
1266
|
+
"type": "function"
|
1267
|
+
},
|
1268
|
+
{
|
1269
|
+
"inputs": [
|
1270
|
+
{
|
1271
|
+
"internalType": "address",
|
1272
|
+
"name": "receiver",
|
1273
|
+
"type": "address"
|
1274
|
+
},
|
1275
|
+
{
|
1276
|
+
"internalType": "uint96",
|
1277
|
+
"name": "tokenAmount",
|
1278
|
+
"type": "uint96"
|
1279
|
+
}
|
1280
|
+
],
|
1281
|
+
"name": "transferV1U1AgreementTokens",
|
1282
|
+
"outputs": [],
|
1283
|
+
"stateMutability": "nonpayable",
|
1284
|
+
"type": "function"
|
1285
|
+
},
|
1286
|
+
{
|
1287
|
+
"inputs": [],
|
1288
|
+
"name": "version",
|
1289
|
+
"outputs": [
|
1290
|
+
{
|
1291
|
+
"internalType": "string",
|
1292
|
+
"name": "",
|
1293
|
+
"type": "string"
|
1294
|
+
}
|
1295
|
+
],
|
1296
|
+
"stateMutability": "pure",
|
1297
|
+
"type": "function"
|
1298
|
+
}
|
1299
|
+
]
|