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