mech-client 0.4.0__py3-none-any.whl → 0.7.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.
- mech_client/__init__.py +1 -1
- mech_client/abis/AgentMech.json +718 -0
- mech_client/abis/AgentRegistry.json +1037 -0
- mech_client/abis/AgreementStoreManager.base.json +766 -0
- mech_client/abis/AgreementStoreManager.gnosis.json +766 -0
- mech_client/abis/DIDRegistry.base.json +2476 -0
- mech_client/abis/DIDRegistry.gnosis.json +2476 -0
- mech_client/abis/EscrowPaymentCondition.base.json +717 -0
- mech_client/abis/EscrowPaymentCondition.gnosis.json +717 -0
- mech_client/abis/LockPaymentCondition.base.json +874 -0
- mech_client/abis/LockPaymentCondition.gnosis.json +874 -0
- mech_client/abis/NFTSalesTemplate.base.json +698 -0
- mech_client/abis/NFTSalesTemplate.gnosis.json +698 -0
- mech_client/abis/NeverminedConfig.base.json +587 -0
- mech_client/abis/NeverminedConfig.gnosis.json +587 -0
- mech_client/abis/SubscriptionNFT.base.json +300 -0
- mech_client/abis/SubscriptionNFT.gnosis.json +300 -0
- mech_client/abis/SubscriptionProvider.base.json +294 -0
- mech_client/abis/SubscriptionProvider.gnosis.json +294 -0
- mech_client/abis/SubscriptionToken.base.json +1393 -0
- mech_client/abis/TransferNFTCondition.base.json +1062 -0
- mech_client/abis/TransferNFTCondition.gnosis.json +1062 -0
- mech_client/cli.py +99 -10
- mech_client/configs/mechs.json +1 -7
- mech_client/interact.py +14 -39
- mech_client/marketplace_interact.py +130 -90
- mech_client/mech_tool_management.py +11 -5
- mech_client/subgraph.py +21 -35
- mech_client/wss.py +7 -6
- {mech_client-0.4.0.dist-info → mech_client-0.7.0.dist-info}/METADATA +53 -19
- {mech_client-0.4.0.dist-info → mech_client-0.7.0.dist-info}/RECORD +34 -13
- {mech_client-0.4.0.dist-info → mech_client-0.7.0.dist-info}/LICENSE +0 -0
- {mech_client-0.4.0.dist-info → mech_client-0.7.0.dist-info}/WHEEL +0 -0
- {mech_client-0.4.0.dist-info → mech_client-0.7.0.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,2476 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "DIDRegistry",
|
|
3
|
+
"abi": [
|
|
4
|
+
{
|
|
5
|
+
"anonymous": false,
|
|
6
|
+
"inputs": [
|
|
7
|
+
{
|
|
8
|
+
"indexed": true,
|
|
9
|
+
"internalType": "bytes32",
|
|
10
|
+
"name": "_entityDid",
|
|
11
|
+
"type": "bytes32"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"indexed": true,
|
|
15
|
+
"internalType": "address",
|
|
16
|
+
"name": "_delegateAgentId",
|
|
17
|
+
"type": "address"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"indexed": true,
|
|
21
|
+
"internalType": "address",
|
|
22
|
+
"name": "_responsibleAgentId",
|
|
23
|
+
"type": "address"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"indexed": false,
|
|
27
|
+
"internalType": "bytes32",
|
|
28
|
+
"name": "_activityId",
|
|
29
|
+
"type": "bytes32"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"indexed": false,
|
|
33
|
+
"internalType": "bytes32",
|
|
34
|
+
"name": "provId",
|
|
35
|
+
"type": "bytes32"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"indexed": false,
|
|
39
|
+
"internalType": "string",
|
|
40
|
+
"name": "_attributes",
|
|
41
|
+
"type": "string"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"indexed": false,
|
|
45
|
+
"internalType": "uint256",
|
|
46
|
+
"name": "_blockNumberUpdated",
|
|
47
|
+
"type": "uint256"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"name": "ActedOnBehalf",
|
|
51
|
+
"type": "event"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"anonymous": false,
|
|
55
|
+
"inputs": [
|
|
56
|
+
{
|
|
57
|
+
"indexed": true,
|
|
58
|
+
"internalType": "bytes32",
|
|
59
|
+
"name": "_did",
|
|
60
|
+
"type": "bytes32"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"indexed": true,
|
|
64
|
+
"internalType": "address",
|
|
65
|
+
"name": "_owner",
|
|
66
|
+
"type": "address"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"indexed": true,
|
|
70
|
+
"internalType": "bytes32",
|
|
71
|
+
"name": "_checksum",
|
|
72
|
+
"type": "bytes32"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"indexed": false,
|
|
76
|
+
"internalType": "string",
|
|
77
|
+
"name": "_value",
|
|
78
|
+
"type": "string"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"indexed": false,
|
|
82
|
+
"internalType": "address",
|
|
83
|
+
"name": "_lastUpdatedBy",
|
|
84
|
+
"type": "address"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"indexed": false,
|
|
88
|
+
"internalType": "uint256",
|
|
89
|
+
"name": "_blockNumberUpdated",
|
|
90
|
+
"type": "uint256"
|
|
91
|
+
}
|
|
92
|
+
],
|
|
93
|
+
"name": "DIDAttributeRegistered",
|
|
94
|
+
"type": "event"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"anonymous": false,
|
|
98
|
+
"inputs": [
|
|
99
|
+
{
|
|
100
|
+
"indexed": true,
|
|
101
|
+
"internalType": "bytes32",
|
|
102
|
+
"name": "_did",
|
|
103
|
+
"type": "bytes32"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"indexed": true,
|
|
107
|
+
"internalType": "address",
|
|
108
|
+
"name": "_owner",
|
|
109
|
+
"type": "address"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"indexed": false,
|
|
113
|
+
"internalType": "bytes32",
|
|
114
|
+
"name": "_checksum",
|
|
115
|
+
"type": "bytes32"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"indexed": false,
|
|
119
|
+
"internalType": "string",
|
|
120
|
+
"name": "_url",
|
|
121
|
+
"type": "string"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"indexed": false,
|
|
125
|
+
"internalType": "string",
|
|
126
|
+
"name": "_immutableUrl",
|
|
127
|
+
"type": "string"
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"name": "DIDMetadataUpdated",
|
|
131
|
+
"type": "event"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"anonymous": false,
|
|
135
|
+
"inputs": [
|
|
136
|
+
{
|
|
137
|
+
"indexed": false,
|
|
138
|
+
"internalType": "bytes32",
|
|
139
|
+
"name": "_did",
|
|
140
|
+
"type": "bytes32"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"indexed": false,
|
|
144
|
+
"internalType": "address",
|
|
145
|
+
"name": "_previousOwner",
|
|
146
|
+
"type": "address"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"indexed": false,
|
|
150
|
+
"internalType": "address",
|
|
151
|
+
"name": "_newOwner",
|
|
152
|
+
"type": "address"
|
|
153
|
+
}
|
|
154
|
+
],
|
|
155
|
+
"name": "DIDOwnershipTransferred",
|
|
156
|
+
"type": "event"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"anonymous": false,
|
|
160
|
+
"inputs": [
|
|
161
|
+
{
|
|
162
|
+
"indexed": true,
|
|
163
|
+
"internalType": "bytes32",
|
|
164
|
+
"name": "_did",
|
|
165
|
+
"type": "bytes32"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"indexed": true,
|
|
169
|
+
"internalType": "address",
|
|
170
|
+
"name": "_owner",
|
|
171
|
+
"type": "address"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"indexed": true,
|
|
175
|
+
"internalType": "address",
|
|
176
|
+
"name": "_grantee",
|
|
177
|
+
"type": "address"
|
|
178
|
+
}
|
|
179
|
+
],
|
|
180
|
+
"name": "DIDPermissionGranted",
|
|
181
|
+
"type": "event"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"anonymous": false,
|
|
185
|
+
"inputs": [
|
|
186
|
+
{
|
|
187
|
+
"indexed": true,
|
|
188
|
+
"internalType": "bytes32",
|
|
189
|
+
"name": "_did",
|
|
190
|
+
"type": "bytes32"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"indexed": true,
|
|
194
|
+
"internalType": "address",
|
|
195
|
+
"name": "_owner",
|
|
196
|
+
"type": "address"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"indexed": true,
|
|
200
|
+
"internalType": "address",
|
|
201
|
+
"name": "_grantee",
|
|
202
|
+
"type": "address"
|
|
203
|
+
}
|
|
204
|
+
],
|
|
205
|
+
"name": "DIDPermissionRevoked",
|
|
206
|
+
"type": "event"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"anonymous": false,
|
|
210
|
+
"inputs": [
|
|
211
|
+
{
|
|
212
|
+
"indexed": false,
|
|
213
|
+
"internalType": "bytes32",
|
|
214
|
+
"name": "_did",
|
|
215
|
+
"type": "bytes32"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"indexed": false,
|
|
219
|
+
"internalType": "address",
|
|
220
|
+
"name": "_delegate",
|
|
221
|
+
"type": "address"
|
|
222
|
+
}
|
|
223
|
+
],
|
|
224
|
+
"name": "DIDProvenanceDelegateAdded",
|
|
225
|
+
"type": "event"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"anonymous": false,
|
|
229
|
+
"inputs": [
|
|
230
|
+
{
|
|
231
|
+
"indexed": false,
|
|
232
|
+
"internalType": "bytes32",
|
|
233
|
+
"name": "_did",
|
|
234
|
+
"type": "bytes32"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"indexed": false,
|
|
238
|
+
"internalType": "address",
|
|
239
|
+
"name": "_delegate",
|
|
240
|
+
"type": "address"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"indexed": false,
|
|
244
|
+
"internalType": "bool",
|
|
245
|
+
"name": "state",
|
|
246
|
+
"type": "bool"
|
|
247
|
+
}
|
|
248
|
+
],
|
|
249
|
+
"name": "DIDProvenanceDelegateRemoved",
|
|
250
|
+
"type": "event"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"anonymous": false,
|
|
254
|
+
"inputs": [
|
|
255
|
+
{
|
|
256
|
+
"indexed": false,
|
|
257
|
+
"internalType": "bytes32",
|
|
258
|
+
"name": "_did",
|
|
259
|
+
"type": "bytes32"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"indexed": false,
|
|
263
|
+
"internalType": "address",
|
|
264
|
+
"name": "_provider",
|
|
265
|
+
"type": "address"
|
|
266
|
+
}
|
|
267
|
+
],
|
|
268
|
+
"name": "DIDProviderAdded",
|
|
269
|
+
"type": "event"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"anonymous": false,
|
|
273
|
+
"inputs": [
|
|
274
|
+
{
|
|
275
|
+
"indexed": false,
|
|
276
|
+
"internalType": "bytes32",
|
|
277
|
+
"name": "_did",
|
|
278
|
+
"type": "bytes32"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"indexed": false,
|
|
282
|
+
"internalType": "address",
|
|
283
|
+
"name": "_provider",
|
|
284
|
+
"type": "address"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"indexed": false,
|
|
288
|
+
"internalType": "bool",
|
|
289
|
+
"name": "state",
|
|
290
|
+
"type": "bool"
|
|
291
|
+
}
|
|
292
|
+
],
|
|
293
|
+
"name": "DIDProviderRemoved",
|
|
294
|
+
"type": "event"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"anonymous": false,
|
|
298
|
+
"inputs": [
|
|
299
|
+
{
|
|
300
|
+
"indexed": true,
|
|
301
|
+
"internalType": "bytes32",
|
|
302
|
+
"name": "did",
|
|
303
|
+
"type": "bytes32"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"indexed": true,
|
|
307
|
+
"internalType": "address",
|
|
308
|
+
"name": "addr",
|
|
309
|
+
"type": "address"
|
|
310
|
+
}
|
|
311
|
+
],
|
|
312
|
+
"name": "DIDRoyaltiesAdded",
|
|
313
|
+
"type": "event"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"anonymous": false,
|
|
317
|
+
"inputs": [
|
|
318
|
+
{
|
|
319
|
+
"indexed": true,
|
|
320
|
+
"internalType": "bytes32",
|
|
321
|
+
"name": "did",
|
|
322
|
+
"type": "bytes32"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"indexed": true,
|
|
326
|
+
"internalType": "address",
|
|
327
|
+
"name": "addr",
|
|
328
|
+
"type": "address"
|
|
329
|
+
}
|
|
330
|
+
],
|
|
331
|
+
"name": "DIDRoyaltyRecipientChanged",
|
|
332
|
+
"type": "event"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"anonymous": false,
|
|
336
|
+
"inputs": [
|
|
337
|
+
{
|
|
338
|
+
"indexed": false,
|
|
339
|
+
"internalType": "uint8",
|
|
340
|
+
"name": "version",
|
|
341
|
+
"type": "uint8"
|
|
342
|
+
}
|
|
343
|
+
],
|
|
344
|
+
"name": "Initialized",
|
|
345
|
+
"type": "event"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"anonymous": false,
|
|
349
|
+
"inputs": [
|
|
350
|
+
{
|
|
351
|
+
"indexed": true,
|
|
352
|
+
"internalType": "address",
|
|
353
|
+
"name": "previousOwner",
|
|
354
|
+
"type": "address"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"indexed": true,
|
|
358
|
+
"internalType": "address",
|
|
359
|
+
"name": "newOwner",
|
|
360
|
+
"type": "address"
|
|
361
|
+
}
|
|
362
|
+
],
|
|
363
|
+
"name": "OwnershipTransferred",
|
|
364
|
+
"type": "event"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"anonymous": false,
|
|
368
|
+
"inputs": [
|
|
369
|
+
{
|
|
370
|
+
"indexed": true,
|
|
371
|
+
"internalType": "bytes32",
|
|
372
|
+
"name": "provId",
|
|
373
|
+
"type": "bytes32"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"indexed": true,
|
|
377
|
+
"internalType": "bytes32",
|
|
378
|
+
"name": "_did",
|
|
379
|
+
"type": "bytes32"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"indexed": true,
|
|
383
|
+
"internalType": "address",
|
|
384
|
+
"name": "_agentId",
|
|
385
|
+
"type": "address"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"indexed": false,
|
|
389
|
+
"internalType": "bytes32",
|
|
390
|
+
"name": "_activityId",
|
|
391
|
+
"type": "bytes32"
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"indexed": false,
|
|
395
|
+
"internalType": "bytes32",
|
|
396
|
+
"name": "_relatedDid",
|
|
397
|
+
"type": "bytes32"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"indexed": false,
|
|
401
|
+
"internalType": "address",
|
|
402
|
+
"name": "_agentInvolvedId",
|
|
403
|
+
"type": "address"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"indexed": false,
|
|
407
|
+
"internalType": "enum ProvenanceRegistry.ProvenanceMethod",
|
|
408
|
+
"name": "_method",
|
|
409
|
+
"type": "uint8"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"indexed": false,
|
|
413
|
+
"internalType": "string",
|
|
414
|
+
"name": "_attributes",
|
|
415
|
+
"type": "string"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"indexed": false,
|
|
419
|
+
"internalType": "uint256",
|
|
420
|
+
"name": "_blockNumberUpdated",
|
|
421
|
+
"type": "uint256"
|
|
422
|
+
}
|
|
423
|
+
],
|
|
424
|
+
"name": "ProvenanceAttributeRegistered",
|
|
425
|
+
"type": "event"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"anonymous": false,
|
|
429
|
+
"inputs": [
|
|
430
|
+
{
|
|
431
|
+
"indexed": true,
|
|
432
|
+
"internalType": "bytes32",
|
|
433
|
+
"name": "role",
|
|
434
|
+
"type": "bytes32"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"indexed": true,
|
|
438
|
+
"internalType": "bytes32",
|
|
439
|
+
"name": "previousAdminRole",
|
|
440
|
+
"type": "bytes32"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"indexed": true,
|
|
444
|
+
"internalType": "bytes32",
|
|
445
|
+
"name": "newAdminRole",
|
|
446
|
+
"type": "bytes32"
|
|
447
|
+
}
|
|
448
|
+
],
|
|
449
|
+
"name": "RoleAdminChanged",
|
|
450
|
+
"type": "event"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"anonymous": false,
|
|
454
|
+
"inputs": [
|
|
455
|
+
{
|
|
456
|
+
"indexed": true,
|
|
457
|
+
"internalType": "bytes32",
|
|
458
|
+
"name": "role",
|
|
459
|
+
"type": "bytes32"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"indexed": true,
|
|
463
|
+
"internalType": "address",
|
|
464
|
+
"name": "account",
|
|
465
|
+
"type": "address"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"indexed": true,
|
|
469
|
+
"internalType": "address",
|
|
470
|
+
"name": "sender",
|
|
471
|
+
"type": "address"
|
|
472
|
+
}
|
|
473
|
+
],
|
|
474
|
+
"name": "RoleGranted",
|
|
475
|
+
"type": "event"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"anonymous": false,
|
|
479
|
+
"inputs": [
|
|
480
|
+
{
|
|
481
|
+
"indexed": true,
|
|
482
|
+
"internalType": "bytes32",
|
|
483
|
+
"name": "role",
|
|
484
|
+
"type": "bytes32"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"indexed": true,
|
|
488
|
+
"internalType": "address",
|
|
489
|
+
"name": "account",
|
|
490
|
+
"type": "address"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"indexed": true,
|
|
494
|
+
"internalType": "address",
|
|
495
|
+
"name": "sender",
|
|
496
|
+
"type": "address"
|
|
497
|
+
}
|
|
498
|
+
],
|
|
499
|
+
"name": "RoleRevoked",
|
|
500
|
+
"type": "event"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"anonymous": false,
|
|
504
|
+
"inputs": [
|
|
505
|
+
{
|
|
506
|
+
"indexed": true,
|
|
507
|
+
"internalType": "bytes32",
|
|
508
|
+
"name": "_did",
|
|
509
|
+
"type": "bytes32"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"indexed": true,
|
|
513
|
+
"internalType": "address",
|
|
514
|
+
"name": "_agentId",
|
|
515
|
+
"type": "address"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"indexed": true,
|
|
519
|
+
"internalType": "bytes32",
|
|
520
|
+
"name": "_activityId",
|
|
521
|
+
"type": "bytes32"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"indexed": false,
|
|
525
|
+
"internalType": "bytes32",
|
|
526
|
+
"name": "provId",
|
|
527
|
+
"type": "bytes32"
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"indexed": false,
|
|
531
|
+
"internalType": "string",
|
|
532
|
+
"name": "_attributes",
|
|
533
|
+
"type": "string"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"indexed": false,
|
|
537
|
+
"internalType": "uint256",
|
|
538
|
+
"name": "_blockNumberUpdated",
|
|
539
|
+
"type": "uint256"
|
|
540
|
+
}
|
|
541
|
+
],
|
|
542
|
+
"name": "Used",
|
|
543
|
+
"type": "event"
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"anonymous": false,
|
|
547
|
+
"inputs": [
|
|
548
|
+
{
|
|
549
|
+
"indexed": true,
|
|
550
|
+
"internalType": "bytes32",
|
|
551
|
+
"name": "_entityDid",
|
|
552
|
+
"type": "bytes32"
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"indexed": true,
|
|
556
|
+
"internalType": "address",
|
|
557
|
+
"name": "_agentId",
|
|
558
|
+
"type": "address"
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"indexed": true,
|
|
562
|
+
"internalType": "bytes32",
|
|
563
|
+
"name": "_activityId",
|
|
564
|
+
"type": "bytes32"
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"indexed": false,
|
|
568
|
+
"internalType": "bytes32",
|
|
569
|
+
"name": "provId",
|
|
570
|
+
"type": "bytes32"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"indexed": false,
|
|
574
|
+
"internalType": "string",
|
|
575
|
+
"name": "_attributes",
|
|
576
|
+
"type": "string"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"indexed": false,
|
|
580
|
+
"internalType": "uint256",
|
|
581
|
+
"name": "_blockNumberUpdated",
|
|
582
|
+
"type": "uint256"
|
|
583
|
+
}
|
|
584
|
+
],
|
|
585
|
+
"name": "WasAssociatedWith",
|
|
586
|
+
"type": "event"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"anonymous": false,
|
|
590
|
+
"inputs": [
|
|
591
|
+
{
|
|
592
|
+
"indexed": true,
|
|
593
|
+
"internalType": "bytes32",
|
|
594
|
+
"name": "_newEntityDid",
|
|
595
|
+
"type": "bytes32"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"indexed": true,
|
|
599
|
+
"internalType": "bytes32",
|
|
600
|
+
"name": "_usedEntityDid",
|
|
601
|
+
"type": "bytes32"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"indexed": true,
|
|
605
|
+
"internalType": "address",
|
|
606
|
+
"name": "_agentId",
|
|
607
|
+
"type": "address"
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"indexed": false,
|
|
611
|
+
"internalType": "bytes32",
|
|
612
|
+
"name": "_activityId",
|
|
613
|
+
"type": "bytes32"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"indexed": false,
|
|
617
|
+
"internalType": "bytes32",
|
|
618
|
+
"name": "provId",
|
|
619
|
+
"type": "bytes32"
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"indexed": false,
|
|
623
|
+
"internalType": "string",
|
|
624
|
+
"name": "_attributes",
|
|
625
|
+
"type": "string"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"indexed": false,
|
|
629
|
+
"internalType": "uint256",
|
|
630
|
+
"name": "_blockNumberUpdated",
|
|
631
|
+
"type": "uint256"
|
|
632
|
+
}
|
|
633
|
+
],
|
|
634
|
+
"name": "WasDerivedFrom",
|
|
635
|
+
"type": "event"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"anonymous": false,
|
|
639
|
+
"inputs": [
|
|
640
|
+
{
|
|
641
|
+
"indexed": true,
|
|
642
|
+
"internalType": "bytes32",
|
|
643
|
+
"name": "_did",
|
|
644
|
+
"type": "bytes32"
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"indexed": true,
|
|
648
|
+
"internalType": "address",
|
|
649
|
+
"name": "_agentId",
|
|
650
|
+
"type": "address"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"indexed": true,
|
|
654
|
+
"internalType": "bytes32",
|
|
655
|
+
"name": "_activityId",
|
|
656
|
+
"type": "bytes32"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"indexed": false,
|
|
660
|
+
"internalType": "bytes32",
|
|
661
|
+
"name": "provId",
|
|
662
|
+
"type": "bytes32"
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"indexed": false,
|
|
666
|
+
"internalType": "string",
|
|
667
|
+
"name": "_attributes",
|
|
668
|
+
"type": "string"
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"indexed": false,
|
|
672
|
+
"internalType": "uint256",
|
|
673
|
+
"name": "_blockNumberUpdated",
|
|
674
|
+
"type": "uint256"
|
|
675
|
+
}
|
|
676
|
+
],
|
|
677
|
+
"name": "WasGeneratedBy",
|
|
678
|
+
"type": "event"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"inputs": [],
|
|
682
|
+
"name": "DEFAULT_ADMIN_ROLE",
|
|
683
|
+
"outputs": [
|
|
684
|
+
{
|
|
685
|
+
"internalType": "bytes32",
|
|
686
|
+
"name": "",
|
|
687
|
+
"type": "bytes32"
|
|
688
|
+
}
|
|
689
|
+
],
|
|
690
|
+
"stateMutability": "view",
|
|
691
|
+
"type": "function",
|
|
692
|
+
"signature": "0xa217fddf"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"inputs": [],
|
|
696
|
+
"name": "REGISTRY_OPERATOR_ROLE",
|
|
697
|
+
"outputs": [
|
|
698
|
+
{
|
|
699
|
+
"internalType": "bytes32",
|
|
700
|
+
"name": "",
|
|
701
|
+
"type": "bytes32"
|
|
702
|
+
}
|
|
703
|
+
],
|
|
704
|
+
"stateMutability": "view",
|
|
705
|
+
"type": "function",
|
|
706
|
+
"signature": "0x34364de1"
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"inputs": [
|
|
710
|
+
{
|
|
711
|
+
"internalType": "bytes32",
|
|
712
|
+
"name": "_provId",
|
|
713
|
+
"type": "bytes32"
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"internalType": "bytes32",
|
|
717
|
+
"name": "_did",
|
|
718
|
+
"type": "bytes32"
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"internalType": "address",
|
|
722
|
+
"name": "_delegateAgentId",
|
|
723
|
+
"type": "address"
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
"internalType": "address",
|
|
727
|
+
"name": "_responsibleAgentId",
|
|
728
|
+
"type": "address"
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"internalType": "bytes32",
|
|
732
|
+
"name": "_activityId",
|
|
733
|
+
"type": "bytes32"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"internalType": "bytes",
|
|
737
|
+
"name": "_signatureDelegate",
|
|
738
|
+
"type": "bytes"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"internalType": "string",
|
|
742
|
+
"name": "_attributes",
|
|
743
|
+
"type": "string"
|
|
744
|
+
}
|
|
745
|
+
],
|
|
746
|
+
"name": "actedOnBehalf",
|
|
747
|
+
"outputs": [
|
|
748
|
+
{
|
|
749
|
+
"internalType": "bool",
|
|
750
|
+
"name": "success",
|
|
751
|
+
"type": "bool"
|
|
752
|
+
}
|
|
753
|
+
],
|
|
754
|
+
"stateMutability": "nonpayable",
|
|
755
|
+
"type": "function",
|
|
756
|
+
"signature": "0x994e0345"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"inputs": [
|
|
760
|
+
{
|
|
761
|
+
"internalType": "bytes32",
|
|
762
|
+
"name": "_did",
|
|
763
|
+
"type": "bytes32"
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"internalType": "address",
|
|
767
|
+
"name": "_delegate",
|
|
768
|
+
"type": "address"
|
|
769
|
+
}
|
|
770
|
+
],
|
|
771
|
+
"name": "addDIDProvenanceDelegate",
|
|
772
|
+
"outputs": [],
|
|
773
|
+
"stateMutability": "nonpayable",
|
|
774
|
+
"type": "function",
|
|
775
|
+
"signature": "0x39c67470"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"inputs": [
|
|
779
|
+
{
|
|
780
|
+
"internalType": "bytes32",
|
|
781
|
+
"name": "_did",
|
|
782
|
+
"type": "bytes32"
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"internalType": "address",
|
|
786
|
+
"name": "_provider",
|
|
787
|
+
"type": "address"
|
|
788
|
+
}
|
|
789
|
+
],
|
|
790
|
+
"name": "addDIDProvider",
|
|
791
|
+
"outputs": [],
|
|
792
|
+
"stateMutability": "nonpayable",
|
|
793
|
+
"type": "function",
|
|
794
|
+
"signature": "0xa2d28d46"
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"inputs": [
|
|
798
|
+
{
|
|
799
|
+
"internalType": "address",
|
|
800
|
+
"name": "_addr",
|
|
801
|
+
"type": "address"
|
|
802
|
+
}
|
|
803
|
+
],
|
|
804
|
+
"name": "addressToBytes32",
|
|
805
|
+
"outputs": [
|
|
806
|
+
{
|
|
807
|
+
"internalType": "bytes32",
|
|
808
|
+
"name": "",
|
|
809
|
+
"type": "bytes32"
|
|
810
|
+
}
|
|
811
|
+
],
|
|
812
|
+
"stateMutability": "pure",
|
|
813
|
+
"type": "function",
|
|
814
|
+
"signature": "0x82c947b7"
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"inputs": [
|
|
818
|
+
{
|
|
819
|
+
"internalType": "bytes32",
|
|
820
|
+
"name": "_did",
|
|
821
|
+
"type": "bytes32"
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"internalType": "uint256[]",
|
|
825
|
+
"name": "_amounts",
|
|
826
|
+
"type": "uint256[]"
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"internalType": "address[]",
|
|
830
|
+
"name": "_receivers",
|
|
831
|
+
"type": "address[]"
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
"internalType": "address",
|
|
835
|
+
"name": "_tokenAddress",
|
|
836
|
+
"type": "address"
|
|
837
|
+
}
|
|
838
|
+
],
|
|
839
|
+
"name": "areRoyaltiesValid",
|
|
840
|
+
"outputs": [
|
|
841
|
+
{
|
|
842
|
+
"internalType": "bool",
|
|
843
|
+
"name": "",
|
|
844
|
+
"type": "bool"
|
|
845
|
+
}
|
|
846
|
+
],
|
|
847
|
+
"stateMutability": "view",
|
|
848
|
+
"type": "function",
|
|
849
|
+
"signature": "0x61d74472"
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"inputs": [
|
|
853
|
+
{
|
|
854
|
+
"internalType": "bytes32",
|
|
855
|
+
"name": "_b32",
|
|
856
|
+
"type": "bytes32"
|
|
857
|
+
}
|
|
858
|
+
],
|
|
859
|
+
"name": "bytes32ToAddress",
|
|
860
|
+
"outputs": [
|
|
861
|
+
{
|
|
862
|
+
"internalType": "address",
|
|
863
|
+
"name": "",
|
|
864
|
+
"type": "address"
|
|
865
|
+
}
|
|
866
|
+
],
|
|
867
|
+
"stateMutability": "pure",
|
|
868
|
+
"type": "function",
|
|
869
|
+
"signature": "0x5ced058e"
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"inputs": [
|
|
873
|
+
{
|
|
874
|
+
"internalType": "uint256[]",
|
|
875
|
+
"name": "_amounts",
|
|
876
|
+
"type": "uint256[]"
|
|
877
|
+
}
|
|
878
|
+
],
|
|
879
|
+
"name": "calculateTotalAmount",
|
|
880
|
+
"outputs": [
|
|
881
|
+
{
|
|
882
|
+
"internalType": "uint256",
|
|
883
|
+
"name": "",
|
|
884
|
+
"type": "uint256"
|
|
885
|
+
}
|
|
886
|
+
],
|
|
887
|
+
"stateMutability": "pure",
|
|
888
|
+
"type": "function",
|
|
889
|
+
"signature": "0x5ea3ab85"
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
"inputs": [],
|
|
893
|
+
"name": "defaultRoyalties",
|
|
894
|
+
"outputs": [
|
|
895
|
+
{
|
|
896
|
+
"internalType": "contract StandardRoyalties",
|
|
897
|
+
"name": "",
|
|
898
|
+
"type": "address"
|
|
899
|
+
}
|
|
900
|
+
],
|
|
901
|
+
"stateMutability": "view",
|
|
902
|
+
"type": "function",
|
|
903
|
+
"signature": "0xf951735a"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"inputs": [
|
|
907
|
+
{
|
|
908
|
+
"internalType": "bytes32",
|
|
909
|
+
"name": "_did",
|
|
910
|
+
"type": "bytes32"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"internalType": "address",
|
|
914
|
+
"name": "_nftAddress",
|
|
915
|
+
"type": "address"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"internalType": "uint256",
|
|
919
|
+
"name": "_cap",
|
|
920
|
+
"type": "uint256"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"internalType": "uint256",
|
|
924
|
+
"name": "_royalties",
|
|
925
|
+
"type": "uint256"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"internalType": "bool",
|
|
929
|
+
"name": "_mint",
|
|
930
|
+
"type": "bool"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"internalType": "string",
|
|
934
|
+
"name": "_nftMetadata",
|
|
935
|
+
"type": "string"
|
|
936
|
+
}
|
|
937
|
+
],
|
|
938
|
+
"name": "enableAndMintDidNft",
|
|
939
|
+
"outputs": [
|
|
940
|
+
{
|
|
941
|
+
"internalType": "bool",
|
|
942
|
+
"name": "success",
|
|
943
|
+
"type": "bool"
|
|
944
|
+
}
|
|
945
|
+
],
|
|
946
|
+
"stateMutability": "nonpayable",
|
|
947
|
+
"type": "function",
|
|
948
|
+
"signature": "0x3a1895a7"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"inputs": [
|
|
952
|
+
{
|
|
953
|
+
"internalType": "bytes32",
|
|
954
|
+
"name": "_did",
|
|
955
|
+
"type": "bytes32"
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"internalType": "address",
|
|
959
|
+
"name": "_nftContractAddress",
|
|
960
|
+
"type": "address"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"internalType": "uint256",
|
|
964
|
+
"name": "_royalties",
|
|
965
|
+
"type": "uint256"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"internalType": "bool",
|
|
969
|
+
"name": "_mint",
|
|
970
|
+
"type": "bool"
|
|
971
|
+
}
|
|
972
|
+
],
|
|
973
|
+
"name": "enableAndMintDidNft721",
|
|
974
|
+
"outputs": [
|
|
975
|
+
{
|
|
976
|
+
"internalType": "bool",
|
|
977
|
+
"name": "success",
|
|
978
|
+
"type": "bool"
|
|
979
|
+
}
|
|
980
|
+
],
|
|
981
|
+
"stateMutability": "nonpayable",
|
|
982
|
+
"type": "function",
|
|
983
|
+
"signature": "0xe84400ca"
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
"inputs": [],
|
|
987
|
+
"name": "erc1155",
|
|
988
|
+
"outputs": [
|
|
989
|
+
{
|
|
990
|
+
"internalType": "contract NFT1155Upgradeable",
|
|
991
|
+
"name": "",
|
|
992
|
+
"type": "address"
|
|
993
|
+
}
|
|
994
|
+
],
|
|
995
|
+
"stateMutability": "view",
|
|
996
|
+
"type": "function",
|
|
997
|
+
"signature": "0xd56022d7"
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"inputs": [],
|
|
1001
|
+
"name": "erc721",
|
|
1002
|
+
"outputs": [
|
|
1003
|
+
{
|
|
1004
|
+
"internalType": "contract NFT721Upgradeable",
|
|
1005
|
+
"name": "",
|
|
1006
|
+
"type": "address"
|
|
1007
|
+
}
|
|
1008
|
+
],
|
|
1009
|
+
"stateMutability": "view",
|
|
1010
|
+
"type": "function",
|
|
1011
|
+
"signature": "0xbca6ce64"
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"inputs": [
|
|
1015
|
+
{
|
|
1016
|
+
"internalType": "bytes32",
|
|
1017
|
+
"name": "_did",
|
|
1018
|
+
"type": "bytes32"
|
|
1019
|
+
}
|
|
1020
|
+
],
|
|
1021
|
+
"name": "getBlockNumberUpdated",
|
|
1022
|
+
"outputs": [
|
|
1023
|
+
{
|
|
1024
|
+
"internalType": "uint256",
|
|
1025
|
+
"name": "blockNumberUpdated",
|
|
1026
|
+
"type": "uint256"
|
|
1027
|
+
}
|
|
1028
|
+
],
|
|
1029
|
+
"stateMutability": "view",
|
|
1030
|
+
"type": "function",
|
|
1031
|
+
"signature": "0xbbc1dede"
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
"inputs": [],
|
|
1035
|
+
"name": "getCurrentBlockNumber",
|
|
1036
|
+
"outputs": [
|
|
1037
|
+
{
|
|
1038
|
+
"internalType": "uint256",
|
|
1039
|
+
"name": "",
|
|
1040
|
+
"type": "uint256"
|
|
1041
|
+
}
|
|
1042
|
+
],
|
|
1043
|
+
"stateMutability": "view",
|
|
1044
|
+
"type": "function",
|
|
1045
|
+
"signature": "0x6fd902e1"
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"inputs": [
|
|
1049
|
+
{
|
|
1050
|
+
"internalType": "bytes32",
|
|
1051
|
+
"name": "_did",
|
|
1052
|
+
"type": "bytes32"
|
|
1053
|
+
}
|
|
1054
|
+
],
|
|
1055
|
+
"name": "getDIDCreator",
|
|
1056
|
+
"outputs": [
|
|
1057
|
+
{
|
|
1058
|
+
"internalType": "address",
|
|
1059
|
+
"name": "",
|
|
1060
|
+
"type": "address"
|
|
1061
|
+
}
|
|
1062
|
+
],
|
|
1063
|
+
"stateMutability": "view",
|
|
1064
|
+
"type": "function",
|
|
1065
|
+
"signature": "0x234f04cd"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"inputs": [
|
|
1069
|
+
{
|
|
1070
|
+
"internalType": "bytes32",
|
|
1071
|
+
"name": "_did",
|
|
1072
|
+
"type": "bytes32"
|
|
1073
|
+
}
|
|
1074
|
+
],
|
|
1075
|
+
"name": "getDIDOwner",
|
|
1076
|
+
"outputs": [
|
|
1077
|
+
{
|
|
1078
|
+
"internalType": "address",
|
|
1079
|
+
"name": "didOwner",
|
|
1080
|
+
"type": "address"
|
|
1081
|
+
}
|
|
1082
|
+
],
|
|
1083
|
+
"stateMutability": "view",
|
|
1084
|
+
"type": "function",
|
|
1085
|
+
"signature": "0x6c2ef524"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"inputs": [
|
|
1089
|
+
{
|
|
1090
|
+
"internalType": "bytes32",
|
|
1091
|
+
"name": "_did",
|
|
1092
|
+
"type": "bytes32"
|
|
1093
|
+
}
|
|
1094
|
+
],
|
|
1095
|
+
"name": "getDIDRegister",
|
|
1096
|
+
"outputs": [
|
|
1097
|
+
{
|
|
1098
|
+
"internalType": "address",
|
|
1099
|
+
"name": "owner",
|
|
1100
|
+
"type": "address"
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
"internalType": "bytes32",
|
|
1104
|
+
"name": "lastChecksum",
|
|
1105
|
+
"type": "bytes32"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"internalType": "string",
|
|
1109
|
+
"name": "url",
|
|
1110
|
+
"type": "string"
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"internalType": "address",
|
|
1114
|
+
"name": "lastUpdatedBy",
|
|
1115
|
+
"type": "address"
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"internalType": "uint256",
|
|
1119
|
+
"name": "blockNumberUpdated",
|
|
1120
|
+
"type": "uint256"
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"internalType": "address[]",
|
|
1124
|
+
"name": "providers",
|
|
1125
|
+
"type": "address[]"
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
"internalType": "uint256",
|
|
1129
|
+
"name": "royalties",
|
|
1130
|
+
"type": "uint256"
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"internalType": "string",
|
|
1134
|
+
"name": "immutableUrl",
|
|
1135
|
+
"type": "string"
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"internalType": "bool",
|
|
1139
|
+
"name": "nftInitialized",
|
|
1140
|
+
"type": "bool"
|
|
1141
|
+
}
|
|
1142
|
+
],
|
|
1143
|
+
"stateMutability": "view",
|
|
1144
|
+
"type": "function",
|
|
1145
|
+
"signature": "0x22c6b519"
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"inputs": [
|
|
1149
|
+
{
|
|
1150
|
+
"internalType": "bytes32",
|
|
1151
|
+
"name": "_did",
|
|
1152
|
+
"type": "bytes32"
|
|
1153
|
+
}
|
|
1154
|
+
],
|
|
1155
|
+
"name": "getDIDRoyaltyRecipient",
|
|
1156
|
+
"outputs": [
|
|
1157
|
+
{
|
|
1158
|
+
"internalType": "address",
|
|
1159
|
+
"name": "",
|
|
1160
|
+
"type": "address"
|
|
1161
|
+
}
|
|
1162
|
+
],
|
|
1163
|
+
"stateMutability": "view",
|
|
1164
|
+
"type": "function",
|
|
1165
|
+
"signature": "0x3b21f84f"
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"inputs": [
|
|
1169
|
+
{
|
|
1170
|
+
"internalType": "bytes32",
|
|
1171
|
+
"name": "_did",
|
|
1172
|
+
"type": "bytes32"
|
|
1173
|
+
}
|
|
1174
|
+
],
|
|
1175
|
+
"name": "getDIDRoyaltyScheme",
|
|
1176
|
+
"outputs": [
|
|
1177
|
+
{
|
|
1178
|
+
"internalType": "address",
|
|
1179
|
+
"name": "",
|
|
1180
|
+
"type": "address"
|
|
1181
|
+
}
|
|
1182
|
+
],
|
|
1183
|
+
"stateMutability": "view",
|
|
1184
|
+
"type": "function",
|
|
1185
|
+
"signature": "0xf9faeace"
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
"inputs": [
|
|
1189
|
+
{
|
|
1190
|
+
"internalType": "bytes32",
|
|
1191
|
+
"name": "_did",
|
|
1192
|
+
"type": "bytes32"
|
|
1193
|
+
}
|
|
1194
|
+
],
|
|
1195
|
+
"name": "getNFTInfo",
|
|
1196
|
+
"outputs": [
|
|
1197
|
+
{
|
|
1198
|
+
"internalType": "address",
|
|
1199
|
+
"name": "nftContractAddress",
|
|
1200
|
+
"type": "address"
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"internalType": "bool",
|
|
1204
|
+
"name": "nftInitialized",
|
|
1205
|
+
"type": "bool"
|
|
1206
|
+
}
|
|
1207
|
+
],
|
|
1208
|
+
"stateMutability": "view",
|
|
1209
|
+
"type": "function",
|
|
1210
|
+
"signature": "0x490ca71b"
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
"inputs": [],
|
|
1214
|
+
"name": "getNvmConfigAddress",
|
|
1215
|
+
"outputs": [
|
|
1216
|
+
{
|
|
1217
|
+
"internalType": "address",
|
|
1218
|
+
"name": "",
|
|
1219
|
+
"type": "address"
|
|
1220
|
+
}
|
|
1221
|
+
],
|
|
1222
|
+
"stateMutability": "view",
|
|
1223
|
+
"type": "function",
|
|
1224
|
+
"signature": "0xab9de230"
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
"inputs": [
|
|
1228
|
+
{
|
|
1229
|
+
"internalType": "bytes32",
|
|
1230
|
+
"name": "_did",
|
|
1231
|
+
"type": "bytes32"
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
"internalType": "address",
|
|
1235
|
+
"name": "_grantee",
|
|
1236
|
+
"type": "address"
|
|
1237
|
+
}
|
|
1238
|
+
],
|
|
1239
|
+
"name": "getPermission",
|
|
1240
|
+
"outputs": [
|
|
1241
|
+
{
|
|
1242
|
+
"internalType": "bool",
|
|
1243
|
+
"name": "",
|
|
1244
|
+
"type": "bool"
|
|
1245
|
+
}
|
|
1246
|
+
],
|
|
1247
|
+
"stateMutability": "view",
|
|
1248
|
+
"type": "function",
|
|
1249
|
+
"signature": "0x60d6c7cf"
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
"inputs": [
|
|
1253
|
+
{
|
|
1254
|
+
"internalType": "bytes32",
|
|
1255
|
+
"name": "_provId",
|
|
1256
|
+
"type": "bytes32"
|
|
1257
|
+
}
|
|
1258
|
+
],
|
|
1259
|
+
"name": "getProvenanceEntry",
|
|
1260
|
+
"outputs": [
|
|
1261
|
+
{
|
|
1262
|
+
"internalType": "bytes32",
|
|
1263
|
+
"name": "did",
|
|
1264
|
+
"type": "bytes32"
|
|
1265
|
+
},
|
|
1266
|
+
{
|
|
1267
|
+
"internalType": "bytes32",
|
|
1268
|
+
"name": "relatedDid",
|
|
1269
|
+
"type": "bytes32"
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
"internalType": "address",
|
|
1273
|
+
"name": "agentId",
|
|
1274
|
+
"type": "address"
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
"internalType": "bytes32",
|
|
1278
|
+
"name": "activityId",
|
|
1279
|
+
"type": "bytes32"
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
"internalType": "address",
|
|
1283
|
+
"name": "agentInvolvedId",
|
|
1284
|
+
"type": "address"
|
|
1285
|
+
},
|
|
1286
|
+
{
|
|
1287
|
+
"internalType": "uint8",
|
|
1288
|
+
"name": "method",
|
|
1289
|
+
"type": "uint8"
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
"internalType": "address",
|
|
1293
|
+
"name": "createdBy",
|
|
1294
|
+
"type": "address"
|
|
1295
|
+
},
|
|
1296
|
+
{
|
|
1297
|
+
"internalType": "uint256",
|
|
1298
|
+
"name": "blockNumberUpdated",
|
|
1299
|
+
"type": "uint256"
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
"internalType": "bytes",
|
|
1303
|
+
"name": "signature",
|
|
1304
|
+
"type": "bytes"
|
|
1305
|
+
}
|
|
1306
|
+
],
|
|
1307
|
+
"stateMutability": "view",
|
|
1308
|
+
"type": "function",
|
|
1309
|
+
"signature": "0x5457a5c8"
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
"inputs": [
|
|
1313
|
+
{
|
|
1314
|
+
"internalType": "bytes32",
|
|
1315
|
+
"name": "_did",
|
|
1316
|
+
"type": "bytes32"
|
|
1317
|
+
}
|
|
1318
|
+
],
|
|
1319
|
+
"name": "getProvenanceOwner",
|
|
1320
|
+
"outputs": [
|
|
1321
|
+
{
|
|
1322
|
+
"internalType": "address",
|
|
1323
|
+
"name": "provenanceOwner",
|
|
1324
|
+
"type": "address"
|
|
1325
|
+
}
|
|
1326
|
+
],
|
|
1327
|
+
"stateMutability": "view",
|
|
1328
|
+
"type": "function",
|
|
1329
|
+
"signature": "0x2105ab65"
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"inputs": [
|
|
1333
|
+
{
|
|
1334
|
+
"internalType": "bytes32",
|
|
1335
|
+
"name": "role",
|
|
1336
|
+
"type": "bytes32"
|
|
1337
|
+
}
|
|
1338
|
+
],
|
|
1339
|
+
"name": "getRoleAdmin",
|
|
1340
|
+
"outputs": [
|
|
1341
|
+
{
|
|
1342
|
+
"internalType": "bytes32",
|
|
1343
|
+
"name": "",
|
|
1344
|
+
"type": "bytes32"
|
|
1345
|
+
}
|
|
1346
|
+
],
|
|
1347
|
+
"stateMutability": "view",
|
|
1348
|
+
"type": "function",
|
|
1349
|
+
"signature": "0x248a9ca3"
|
|
1350
|
+
},
|
|
1351
|
+
{
|
|
1352
|
+
"inputs": [],
|
|
1353
|
+
"name": "getTrustedForwarder",
|
|
1354
|
+
"outputs": [
|
|
1355
|
+
{
|
|
1356
|
+
"internalType": "address",
|
|
1357
|
+
"name": "",
|
|
1358
|
+
"type": "address"
|
|
1359
|
+
}
|
|
1360
|
+
],
|
|
1361
|
+
"stateMutability": "view",
|
|
1362
|
+
"type": "function",
|
|
1363
|
+
"signature": "0xce1b815f"
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
"inputs": [
|
|
1367
|
+
{
|
|
1368
|
+
"internalType": "bytes32",
|
|
1369
|
+
"name": "_did",
|
|
1370
|
+
"type": "bytes32"
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
"internalType": "address",
|
|
1374
|
+
"name": "_grantee",
|
|
1375
|
+
"type": "address"
|
|
1376
|
+
}
|
|
1377
|
+
],
|
|
1378
|
+
"name": "grantPermission",
|
|
1379
|
+
"outputs": [],
|
|
1380
|
+
"stateMutability": "nonpayable",
|
|
1381
|
+
"type": "function",
|
|
1382
|
+
"signature": "0xbc586456"
|
|
1383
|
+
},
|
|
1384
|
+
{
|
|
1385
|
+
"inputs": [
|
|
1386
|
+
{
|
|
1387
|
+
"internalType": "address",
|
|
1388
|
+
"name": "account",
|
|
1389
|
+
"type": "address"
|
|
1390
|
+
}
|
|
1391
|
+
],
|
|
1392
|
+
"name": "grantRegistryOperatorRole",
|
|
1393
|
+
"outputs": [],
|
|
1394
|
+
"stateMutability": "nonpayable",
|
|
1395
|
+
"type": "function",
|
|
1396
|
+
"signature": "0xe6af0b6c"
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
"inputs": [
|
|
1400
|
+
{
|
|
1401
|
+
"internalType": "bytes32",
|
|
1402
|
+
"name": "role",
|
|
1403
|
+
"type": "bytes32"
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"internalType": "address",
|
|
1407
|
+
"name": "account",
|
|
1408
|
+
"type": "address"
|
|
1409
|
+
}
|
|
1410
|
+
],
|
|
1411
|
+
"name": "grantRole",
|
|
1412
|
+
"outputs": [],
|
|
1413
|
+
"stateMutability": "nonpayable",
|
|
1414
|
+
"type": "function",
|
|
1415
|
+
"signature": "0x2f2ff15d"
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
"inputs": [
|
|
1419
|
+
{
|
|
1420
|
+
"internalType": "address",
|
|
1421
|
+
"name": "a",
|
|
1422
|
+
"type": "address"
|
|
1423
|
+
}
|
|
1424
|
+
],
|
|
1425
|
+
"name": "hasNVMOperatorRole",
|
|
1426
|
+
"outputs": [
|
|
1427
|
+
{
|
|
1428
|
+
"internalType": "bool",
|
|
1429
|
+
"name": "",
|
|
1430
|
+
"type": "bool"
|
|
1431
|
+
}
|
|
1432
|
+
],
|
|
1433
|
+
"stateMutability": "view",
|
|
1434
|
+
"type": "function",
|
|
1435
|
+
"signature": "0x108762d0"
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
"inputs": [
|
|
1439
|
+
{
|
|
1440
|
+
"internalType": "bytes32",
|
|
1441
|
+
"name": "role",
|
|
1442
|
+
"type": "bytes32"
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"internalType": "address",
|
|
1446
|
+
"name": "account",
|
|
1447
|
+
"type": "address"
|
|
1448
|
+
}
|
|
1449
|
+
],
|
|
1450
|
+
"name": "hasRole",
|
|
1451
|
+
"outputs": [
|
|
1452
|
+
{
|
|
1453
|
+
"internalType": "bool",
|
|
1454
|
+
"name": "",
|
|
1455
|
+
"type": "bool"
|
|
1456
|
+
}
|
|
1457
|
+
],
|
|
1458
|
+
"stateMutability": "view",
|
|
1459
|
+
"type": "function",
|
|
1460
|
+
"signature": "0x91d14854"
|
|
1461
|
+
},
|
|
1462
|
+
{
|
|
1463
|
+
"inputs": [
|
|
1464
|
+
{
|
|
1465
|
+
"internalType": "bytes32",
|
|
1466
|
+
"name": "_didSeed",
|
|
1467
|
+
"type": "bytes32"
|
|
1468
|
+
},
|
|
1469
|
+
{
|
|
1470
|
+
"internalType": "address",
|
|
1471
|
+
"name": "_creator",
|
|
1472
|
+
"type": "address"
|
|
1473
|
+
}
|
|
1474
|
+
],
|
|
1475
|
+
"name": "hashDID",
|
|
1476
|
+
"outputs": [
|
|
1477
|
+
{
|
|
1478
|
+
"internalType": "bytes32",
|
|
1479
|
+
"name": "",
|
|
1480
|
+
"type": "bytes32"
|
|
1481
|
+
}
|
|
1482
|
+
],
|
|
1483
|
+
"stateMutability": "pure",
|
|
1484
|
+
"type": "function",
|
|
1485
|
+
"signature": "0x3fc62a80"
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
"inputs": [
|
|
1489
|
+
{
|
|
1490
|
+
"internalType": "address",
|
|
1491
|
+
"name": "_owner",
|
|
1492
|
+
"type": "address"
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
"internalType": "address",
|
|
1496
|
+
"name": "_erc1155",
|
|
1497
|
+
"type": "address"
|
|
1498
|
+
},
|
|
1499
|
+
{
|
|
1500
|
+
"internalType": "address",
|
|
1501
|
+
"name": "_erc721",
|
|
1502
|
+
"type": "address"
|
|
1503
|
+
},
|
|
1504
|
+
{
|
|
1505
|
+
"internalType": "address",
|
|
1506
|
+
"name": "_config",
|
|
1507
|
+
"type": "address"
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
"internalType": "address",
|
|
1511
|
+
"name": "_royalties",
|
|
1512
|
+
"type": "address"
|
|
1513
|
+
}
|
|
1514
|
+
],
|
|
1515
|
+
"name": "initialize",
|
|
1516
|
+
"outputs": [],
|
|
1517
|
+
"stateMutability": "nonpayable",
|
|
1518
|
+
"type": "function",
|
|
1519
|
+
"signature": "0x1459457a"
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
"inputs": [
|
|
1523
|
+
{
|
|
1524
|
+
"internalType": "address",
|
|
1525
|
+
"name": "addr",
|
|
1526
|
+
"type": "address"
|
|
1527
|
+
}
|
|
1528
|
+
],
|
|
1529
|
+
"name": "isContract",
|
|
1530
|
+
"outputs": [
|
|
1531
|
+
{
|
|
1532
|
+
"internalType": "bool",
|
|
1533
|
+
"name": "",
|
|
1534
|
+
"type": "bool"
|
|
1535
|
+
}
|
|
1536
|
+
],
|
|
1537
|
+
"stateMutability": "view",
|
|
1538
|
+
"type": "function",
|
|
1539
|
+
"signature": "0x16279055"
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
"inputs": [
|
|
1543
|
+
{
|
|
1544
|
+
"internalType": "address",
|
|
1545
|
+
"name": "_address",
|
|
1546
|
+
"type": "address"
|
|
1547
|
+
},
|
|
1548
|
+
{
|
|
1549
|
+
"internalType": "bytes32",
|
|
1550
|
+
"name": "_did",
|
|
1551
|
+
"type": "bytes32"
|
|
1552
|
+
}
|
|
1553
|
+
],
|
|
1554
|
+
"name": "isDIDOwner",
|
|
1555
|
+
"outputs": [
|
|
1556
|
+
{
|
|
1557
|
+
"internalType": "bool",
|
|
1558
|
+
"name": "",
|
|
1559
|
+
"type": "bool"
|
|
1560
|
+
}
|
|
1561
|
+
],
|
|
1562
|
+
"stateMutability": "view",
|
|
1563
|
+
"type": "function",
|
|
1564
|
+
"signature": "0xc714700c"
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
"inputs": [
|
|
1568
|
+
{
|
|
1569
|
+
"internalType": "bytes32",
|
|
1570
|
+
"name": "_did",
|
|
1571
|
+
"type": "bytes32"
|
|
1572
|
+
},
|
|
1573
|
+
{
|
|
1574
|
+
"internalType": "address",
|
|
1575
|
+
"name": "_provider",
|
|
1576
|
+
"type": "address"
|
|
1577
|
+
}
|
|
1578
|
+
],
|
|
1579
|
+
"name": "isDIDProvider",
|
|
1580
|
+
"outputs": [
|
|
1581
|
+
{
|
|
1582
|
+
"internalType": "bool",
|
|
1583
|
+
"name": "",
|
|
1584
|
+
"type": "bool"
|
|
1585
|
+
}
|
|
1586
|
+
],
|
|
1587
|
+
"stateMutability": "view",
|
|
1588
|
+
"type": "function",
|
|
1589
|
+
"signature": "0x3c6aa7b7"
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
"inputs": [
|
|
1593
|
+
{
|
|
1594
|
+
"internalType": "bytes32",
|
|
1595
|
+
"name": "_did",
|
|
1596
|
+
"type": "bytes32"
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
"internalType": "address",
|
|
1600
|
+
"name": "_provider",
|
|
1601
|
+
"type": "address"
|
|
1602
|
+
}
|
|
1603
|
+
],
|
|
1604
|
+
"name": "isDIDProviderOrOwner",
|
|
1605
|
+
"outputs": [
|
|
1606
|
+
{
|
|
1607
|
+
"internalType": "bool",
|
|
1608
|
+
"name": "",
|
|
1609
|
+
"type": "bool"
|
|
1610
|
+
}
|
|
1611
|
+
],
|
|
1612
|
+
"stateMutability": "view",
|
|
1613
|
+
"type": "function",
|
|
1614
|
+
"signature": "0x49791a91"
|
|
1615
|
+
},
|
|
1616
|
+
{
|
|
1617
|
+
"inputs": [
|
|
1618
|
+
{
|
|
1619
|
+
"internalType": "bytes32",
|
|
1620
|
+
"name": "_did",
|
|
1621
|
+
"type": "bytes32"
|
|
1622
|
+
}
|
|
1623
|
+
],
|
|
1624
|
+
"name": "isOwnerProviderOrDelegate",
|
|
1625
|
+
"outputs": [
|
|
1626
|
+
{
|
|
1627
|
+
"internalType": "bool",
|
|
1628
|
+
"name": "",
|
|
1629
|
+
"type": "bool"
|
|
1630
|
+
}
|
|
1631
|
+
],
|
|
1632
|
+
"stateMutability": "view",
|
|
1633
|
+
"type": "function",
|
|
1634
|
+
"signature": "0x7c81b9a6"
|
|
1635
|
+
},
|
|
1636
|
+
{
|
|
1637
|
+
"inputs": [
|
|
1638
|
+
{
|
|
1639
|
+
"internalType": "bytes32",
|
|
1640
|
+
"name": "_did",
|
|
1641
|
+
"type": "bytes32"
|
|
1642
|
+
},
|
|
1643
|
+
{
|
|
1644
|
+
"internalType": "address",
|
|
1645
|
+
"name": "_delegate",
|
|
1646
|
+
"type": "address"
|
|
1647
|
+
}
|
|
1648
|
+
],
|
|
1649
|
+
"name": "isProvenanceDelegate",
|
|
1650
|
+
"outputs": [
|
|
1651
|
+
{
|
|
1652
|
+
"internalType": "bool",
|
|
1653
|
+
"name": "",
|
|
1654
|
+
"type": "bool"
|
|
1655
|
+
}
|
|
1656
|
+
],
|
|
1657
|
+
"stateMutability": "view",
|
|
1658
|
+
"type": "function",
|
|
1659
|
+
"signature": "0x26442c64"
|
|
1660
|
+
},
|
|
1661
|
+
{
|
|
1662
|
+
"inputs": [
|
|
1663
|
+
{
|
|
1664
|
+
"internalType": "address",
|
|
1665
|
+
"name": "operator",
|
|
1666
|
+
"type": "address"
|
|
1667
|
+
}
|
|
1668
|
+
],
|
|
1669
|
+
"name": "isRegistryOperator",
|
|
1670
|
+
"outputs": [
|
|
1671
|
+
{
|
|
1672
|
+
"internalType": "bool",
|
|
1673
|
+
"name": "",
|
|
1674
|
+
"type": "bool"
|
|
1675
|
+
}
|
|
1676
|
+
],
|
|
1677
|
+
"stateMutability": "view",
|
|
1678
|
+
"type": "function",
|
|
1679
|
+
"signature": "0xa4b19343"
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
"inputs": [
|
|
1683
|
+
{
|
|
1684
|
+
"internalType": "address",
|
|
1685
|
+
"name": "forwarder",
|
|
1686
|
+
"type": "address"
|
|
1687
|
+
}
|
|
1688
|
+
],
|
|
1689
|
+
"name": "isTrustedForwarder",
|
|
1690
|
+
"outputs": [
|
|
1691
|
+
{
|
|
1692
|
+
"internalType": "bool",
|
|
1693
|
+
"name": "",
|
|
1694
|
+
"type": "bool"
|
|
1695
|
+
}
|
|
1696
|
+
],
|
|
1697
|
+
"stateMutability": "view",
|
|
1698
|
+
"type": "function",
|
|
1699
|
+
"signature": "0x572b6c05"
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
"inputs": [],
|
|
1703
|
+
"name": "manager",
|
|
1704
|
+
"outputs": [
|
|
1705
|
+
{
|
|
1706
|
+
"internalType": "address",
|
|
1707
|
+
"name": "",
|
|
1708
|
+
"type": "address"
|
|
1709
|
+
}
|
|
1710
|
+
],
|
|
1711
|
+
"stateMutability": "view",
|
|
1712
|
+
"type": "function",
|
|
1713
|
+
"signature": "0x481c6a75"
|
|
1714
|
+
},
|
|
1715
|
+
{
|
|
1716
|
+
"inputs": [],
|
|
1717
|
+
"name": "nvmConfig",
|
|
1718
|
+
"outputs": [
|
|
1719
|
+
{
|
|
1720
|
+
"internalType": "contract INVMConfig",
|
|
1721
|
+
"name": "",
|
|
1722
|
+
"type": "address"
|
|
1723
|
+
}
|
|
1724
|
+
],
|
|
1725
|
+
"stateMutability": "view",
|
|
1726
|
+
"type": "function",
|
|
1727
|
+
"signature": "0xe9c1e045"
|
|
1728
|
+
},
|
|
1729
|
+
{
|
|
1730
|
+
"inputs": [],
|
|
1731
|
+
"name": "owner",
|
|
1732
|
+
"outputs": [
|
|
1733
|
+
{
|
|
1734
|
+
"internalType": "address",
|
|
1735
|
+
"name": "",
|
|
1736
|
+
"type": "address"
|
|
1737
|
+
}
|
|
1738
|
+
],
|
|
1739
|
+
"stateMutability": "view",
|
|
1740
|
+
"type": "function",
|
|
1741
|
+
"signature": "0x8da5cb5b"
|
|
1742
|
+
},
|
|
1743
|
+
{
|
|
1744
|
+
"inputs": [
|
|
1745
|
+
{
|
|
1746
|
+
"internalType": "bytes32",
|
|
1747
|
+
"name": "_didSeed",
|
|
1748
|
+
"type": "bytes32"
|
|
1749
|
+
},
|
|
1750
|
+
{
|
|
1751
|
+
"internalType": "bytes32",
|
|
1752
|
+
"name": "_checksum",
|
|
1753
|
+
"type": "bytes32"
|
|
1754
|
+
},
|
|
1755
|
+
{
|
|
1756
|
+
"internalType": "address[]",
|
|
1757
|
+
"name": "_providers",
|
|
1758
|
+
"type": "address[]"
|
|
1759
|
+
},
|
|
1760
|
+
{
|
|
1761
|
+
"internalType": "string",
|
|
1762
|
+
"name": "_url",
|
|
1763
|
+
"type": "string"
|
|
1764
|
+
}
|
|
1765
|
+
],
|
|
1766
|
+
"name": "registerAttribute",
|
|
1767
|
+
"outputs": [],
|
|
1768
|
+
"stateMutability": "nonpayable",
|
|
1769
|
+
"type": "function",
|
|
1770
|
+
"signature": "0x534eb706"
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
"inputs": [
|
|
1774
|
+
{
|
|
1775
|
+
"internalType": "bytes32",
|
|
1776
|
+
"name": "_didSeed",
|
|
1777
|
+
"type": "bytes32"
|
|
1778
|
+
},
|
|
1779
|
+
{
|
|
1780
|
+
"internalType": "bytes32",
|
|
1781
|
+
"name": "_checksum",
|
|
1782
|
+
"type": "bytes32"
|
|
1783
|
+
},
|
|
1784
|
+
{
|
|
1785
|
+
"internalType": "address[]",
|
|
1786
|
+
"name": "_providers",
|
|
1787
|
+
"type": "address[]"
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
"internalType": "string",
|
|
1791
|
+
"name": "_url",
|
|
1792
|
+
"type": "string"
|
|
1793
|
+
},
|
|
1794
|
+
{
|
|
1795
|
+
"internalType": "bytes32",
|
|
1796
|
+
"name": "_activityId",
|
|
1797
|
+
"type": "bytes32"
|
|
1798
|
+
},
|
|
1799
|
+
{
|
|
1800
|
+
"internalType": "string",
|
|
1801
|
+
"name": "_immutableUrl",
|
|
1802
|
+
"type": "string"
|
|
1803
|
+
}
|
|
1804
|
+
],
|
|
1805
|
+
"name": "registerDID",
|
|
1806
|
+
"outputs": [],
|
|
1807
|
+
"stateMutability": "nonpayable",
|
|
1808
|
+
"type": "function",
|
|
1809
|
+
"signature": "0x110a9d6a"
|
|
1810
|
+
},
|
|
1811
|
+
{
|
|
1812
|
+
"inputs": [
|
|
1813
|
+
{
|
|
1814
|
+
"internalType": "bytes32",
|
|
1815
|
+
"name": "_didSeed",
|
|
1816
|
+
"type": "bytes32"
|
|
1817
|
+
},
|
|
1818
|
+
{
|
|
1819
|
+
"internalType": "address",
|
|
1820
|
+
"name": "_nftContractAddress",
|
|
1821
|
+
"type": "address"
|
|
1822
|
+
},
|
|
1823
|
+
{
|
|
1824
|
+
"internalType": "bytes32",
|
|
1825
|
+
"name": "_checksum",
|
|
1826
|
+
"type": "bytes32"
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
"internalType": "address[]",
|
|
1830
|
+
"name": "_providers",
|
|
1831
|
+
"type": "address[]"
|
|
1832
|
+
},
|
|
1833
|
+
{
|
|
1834
|
+
"internalType": "string",
|
|
1835
|
+
"name": "_url",
|
|
1836
|
+
"type": "string"
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
"internalType": "uint256",
|
|
1840
|
+
"name": "_cap",
|
|
1841
|
+
"type": "uint256"
|
|
1842
|
+
},
|
|
1843
|
+
{
|
|
1844
|
+
"internalType": "uint256",
|
|
1845
|
+
"name": "_royalties",
|
|
1846
|
+
"type": "uint256"
|
|
1847
|
+
},
|
|
1848
|
+
{
|
|
1849
|
+
"internalType": "bytes32",
|
|
1850
|
+
"name": "_activityId",
|
|
1851
|
+
"type": "bytes32"
|
|
1852
|
+
},
|
|
1853
|
+
{
|
|
1854
|
+
"internalType": "string",
|
|
1855
|
+
"name": "_nftMetadata",
|
|
1856
|
+
"type": "string"
|
|
1857
|
+
},
|
|
1858
|
+
{
|
|
1859
|
+
"internalType": "string",
|
|
1860
|
+
"name": "_immutableUrl",
|
|
1861
|
+
"type": "string"
|
|
1862
|
+
}
|
|
1863
|
+
],
|
|
1864
|
+
"name": "registerMintableDID",
|
|
1865
|
+
"outputs": [],
|
|
1866
|
+
"stateMutability": "nonpayable",
|
|
1867
|
+
"type": "function",
|
|
1868
|
+
"signature": "0x3bd02c41"
|
|
1869
|
+
},
|
|
1870
|
+
{
|
|
1871
|
+
"inputs": [
|
|
1872
|
+
{
|
|
1873
|
+
"internalType": "bytes32",
|
|
1874
|
+
"name": "_didSeed",
|
|
1875
|
+
"type": "bytes32"
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
"internalType": "address",
|
|
1879
|
+
"name": "_nftContractAddress",
|
|
1880
|
+
"type": "address"
|
|
1881
|
+
},
|
|
1882
|
+
{
|
|
1883
|
+
"internalType": "bytes32",
|
|
1884
|
+
"name": "_checksum",
|
|
1885
|
+
"type": "bytes32"
|
|
1886
|
+
},
|
|
1887
|
+
{
|
|
1888
|
+
"internalType": "address[]",
|
|
1889
|
+
"name": "_providers",
|
|
1890
|
+
"type": "address[]"
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
"internalType": "string",
|
|
1894
|
+
"name": "_url",
|
|
1895
|
+
"type": "string"
|
|
1896
|
+
},
|
|
1897
|
+
{
|
|
1898
|
+
"internalType": "uint256",
|
|
1899
|
+
"name": "_cap",
|
|
1900
|
+
"type": "uint256"
|
|
1901
|
+
},
|
|
1902
|
+
{
|
|
1903
|
+
"internalType": "uint256",
|
|
1904
|
+
"name": "_royalties",
|
|
1905
|
+
"type": "uint256"
|
|
1906
|
+
},
|
|
1907
|
+
{
|
|
1908
|
+
"internalType": "bool",
|
|
1909
|
+
"name": "_mint",
|
|
1910
|
+
"type": "bool"
|
|
1911
|
+
},
|
|
1912
|
+
{
|
|
1913
|
+
"internalType": "bytes32",
|
|
1914
|
+
"name": "_activityId",
|
|
1915
|
+
"type": "bytes32"
|
|
1916
|
+
},
|
|
1917
|
+
{
|
|
1918
|
+
"internalType": "string",
|
|
1919
|
+
"name": "_nftMetadata",
|
|
1920
|
+
"type": "string"
|
|
1921
|
+
},
|
|
1922
|
+
{
|
|
1923
|
+
"internalType": "string",
|
|
1924
|
+
"name": "_immutableUrl",
|
|
1925
|
+
"type": "string"
|
|
1926
|
+
}
|
|
1927
|
+
],
|
|
1928
|
+
"name": "registerMintableDID",
|
|
1929
|
+
"outputs": [],
|
|
1930
|
+
"stateMutability": "nonpayable",
|
|
1931
|
+
"type": "function",
|
|
1932
|
+
"signature": "0xcffe1eb3"
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
"inputs": [
|
|
1936
|
+
{
|
|
1937
|
+
"internalType": "bytes32",
|
|
1938
|
+
"name": "_didSeed",
|
|
1939
|
+
"type": "bytes32"
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
"internalType": "address",
|
|
1943
|
+
"name": "_nftContractAddress",
|
|
1944
|
+
"type": "address"
|
|
1945
|
+
},
|
|
1946
|
+
{
|
|
1947
|
+
"internalType": "bytes32",
|
|
1948
|
+
"name": "_checksum",
|
|
1949
|
+
"type": "bytes32"
|
|
1950
|
+
},
|
|
1951
|
+
{
|
|
1952
|
+
"internalType": "address[]",
|
|
1953
|
+
"name": "_providers",
|
|
1954
|
+
"type": "address[]"
|
|
1955
|
+
},
|
|
1956
|
+
{
|
|
1957
|
+
"internalType": "string",
|
|
1958
|
+
"name": "_url",
|
|
1959
|
+
"type": "string"
|
|
1960
|
+
},
|
|
1961
|
+
{
|
|
1962
|
+
"internalType": "uint256",
|
|
1963
|
+
"name": "_royalties",
|
|
1964
|
+
"type": "uint256"
|
|
1965
|
+
},
|
|
1966
|
+
{
|
|
1967
|
+
"internalType": "bool",
|
|
1968
|
+
"name": "_mint",
|
|
1969
|
+
"type": "bool"
|
|
1970
|
+
},
|
|
1971
|
+
{
|
|
1972
|
+
"internalType": "bytes32",
|
|
1973
|
+
"name": "_activityId",
|
|
1974
|
+
"type": "bytes32"
|
|
1975
|
+
},
|
|
1976
|
+
{
|
|
1977
|
+
"internalType": "string",
|
|
1978
|
+
"name": "_immutableUrl",
|
|
1979
|
+
"type": "string"
|
|
1980
|
+
}
|
|
1981
|
+
],
|
|
1982
|
+
"name": "registerMintableDID721",
|
|
1983
|
+
"outputs": [],
|
|
1984
|
+
"stateMutability": "nonpayable",
|
|
1985
|
+
"type": "function",
|
|
1986
|
+
"signature": "0x09b8d7d1"
|
|
1987
|
+
},
|
|
1988
|
+
{
|
|
1989
|
+
"inputs": [
|
|
1990
|
+
{
|
|
1991
|
+
"internalType": "address",
|
|
1992
|
+
"name": "_addr",
|
|
1993
|
+
"type": "address"
|
|
1994
|
+
}
|
|
1995
|
+
],
|
|
1996
|
+
"name": "registerRoyaltiesChecker",
|
|
1997
|
+
"outputs": [],
|
|
1998
|
+
"stateMutability": "nonpayable",
|
|
1999
|
+
"type": "function",
|
|
2000
|
+
"signature": "0x280f546c"
|
|
2001
|
+
},
|
|
2002
|
+
{
|
|
2003
|
+
"inputs": [
|
|
2004
|
+
{
|
|
2005
|
+
"internalType": "bytes32",
|
|
2006
|
+
"name": "_did",
|
|
2007
|
+
"type": "bytes32"
|
|
2008
|
+
},
|
|
2009
|
+
{
|
|
2010
|
+
"internalType": "bytes32",
|
|
2011
|
+
"name": "_cond",
|
|
2012
|
+
"type": "bytes32"
|
|
2013
|
+
},
|
|
2014
|
+
{
|
|
2015
|
+
"internalType": "string",
|
|
2016
|
+
"name": "name",
|
|
2017
|
+
"type": "string"
|
|
2018
|
+
},
|
|
2019
|
+
{
|
|
2020
|
+
"internalType": "address",
|
|
2021
|
+
"name": "user",
|
|
2022
|
+
"type": "address"
|
|
2023
|
+
}
|
|
2024
|
+
],
|
|
2025
|
+
"name": "registerUsedProvenance",
|
|
2026
|
+
"outputs": [],
|
|
2027
|
+
"stateMutability": "nonpayable",
|
|
2028
|
+
"type": "function",
|
|
2029
|
+
"signature": "0xa159969c"
|
|
2030
|
+
},
|
|
2031
|
+
{
|
|
2032
|
+
"inputs": [
|
|
2033
|
+
{
|
|
2034
|
+
"internalType": "bytes32",
|
|
2035
|
+
"name": "_did",
|
|
2036
|
+
"type": "bytes32"
|
|
2037
|
+
},
|
|
2038
|
+
{
|
|
2039
|
+
"internalType": "address",
|
|
2040
|
+
"name": "_delegate",
|
|
2041
|
+
"type": "address"
|
|
2042
|
+
}
|
|
2043
|
+
],
|
|
2044
|
+
"name": "removeDIDProvenanceDelegate",
|
|
2045
|
+
"outputs": [],
|
|
2046
|
+
"stateMutability": "nonpayable",
|
|
2047
|
+
"type": "function",
|
|
2048
|
+
"signature": "0x6c3e6036"
|
|
2049
|
+
},
|
|
2050
|
+
{
|
|
2051
|
+
"inputs": [
|
|
2052
|
+
{
|
|
2053
|
+
"internalType": "bytes32",
|
|
2054
|
+
"name": "_did",
|
|
2055
|
+
"type": "bytes32"
|
|
2056
|
+
},
|
|
2057
|
+
{
|
|
2058
|
+
"internalType": "address",
|
|
2059
|
+
"name": "_provider",
|
|
2060
|
+
"type": "address"
|
|
2061
|
+
}
|
|
2062
|
+
],
|
|
2063
|
+
"name": "removeDIDProvider",
|
|
2064
|
+
"outputs": [],
|
|
2065
|
+
"stateMutability": "nonpayable",
|
|
2066
|
+
"type": "function",
|
|
2067
|
+
"signature": "0x7ac5f7c8"
|
|
2068
|
+
},
|
|
2069
|
+
{
|
|
2070
|
+
"inputs": [],
|
|
2071
|
+
"name": "renounceOwnership",
|
|
2072
|
+
"outputs": [],
|
|
2073
|
+
"stateMutability": "nonpayable",
|
|
2074
|
+
"type": "function",
|
|
2075
|
+
"signature": "0x715018a6"
|
|
2076
|
+
},
|
|
2077
|
+
{
|
|
2078
|
+
"inputs": [
|
|
2079
|
+
{
|
|
2080
|
+
"internalType": "bytes32",
|
|
2081
|
+
"name": "role",
|
|
2082
|
+
"type": "bytes32"
|
|
2083
|
+
},
|
|
2084
|
+
{
|
|
2085
|
+
"internalType": "address",
|
|
2086
|
+
"name": "account",
|
|
2087
|
+
"type": "address"
|
|
2088
|
+
}
|
|
2089
|
+
],
|
|
2090
|
+
"name": "renounceRole",
|
|
2091
|
+
"outputs": [],
|
|
2092
|
+
"stateMutability": "nonpayable",
|
|
2093
|
+
"type": "function",
|
|
2094
|
+
"signature": "0x36568abe"
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
"inputs": [
|
|
2098
|
+
{
|
|
2099
|
+
"internalType": "bytes32",
|
|
2100
|
+
"name": "_did",
|
|
2101
|
+
"type": "bytes32"
|
|
2102
|
+
},
|
|
2103
|
+
{
|
|
2104
|
+
"internalType": "address",
|
|
2105
|
+
"name": "_grantee",
|
|
2106
|
+
"type": "address"
|
|
2107
|
+
}
|
|
2108
|
+
],
|
|
2109
|
+
"name": "revokePermission",
|
|
2110
|
+
"outputs": [],
|
|
2111
|
+
"stateMutability": "nonpayable",
|
|
2112
|
+
"type": "function",
|
|
2113
|
+
"signature": "0xa6a8f17b"
|
|
2114
|
+
},
|
|
2115
|
+
{
|
|
2116
|
+
"inputs": [
|
|
2117
|
+
{
|
|
2118
|
+
"internalType": "address",
|
|
2119
|
+
"name": "account",
|
|
2120
|
+
"type": "address"
|
|
2121
|
+
}
|
|
2122
|
+
],
|
|
2123
|
+
"name": "revokeRegistryOperatorRole",
|
|
2124
|
+
"outputs": [],
|
|
2125
|
+
"stateMutability": "nonpayable",
|
|
2126
|
+
"type": "function",
|
|
2127
|
+
"signature": "0xf6595a8f"
|
|
2128
|
+
},
|
|
2129
|
+
{
|
|
2130
|
+
"inputs": [
|
|
2131
|
+
{
|
|
2132
|
+
"internalType": "bytes32",
|
|
2133
|
+
"name": "role",
|
|
2134
|
+
"type": "bytes32"
|
|
2135
|
+
},
|
|
2136
|
+
{
|
|
2137
|
+
"internalType": "address",
|
|
2138
|
+
"name": "account",
|
|
2139
|
+
"type": "address"
|
|
2140
|
+
}
|
|
2141
|
+
],
|
|
2142
|
+
"name": "revokeRole",
|
|
2143
|
+
"outputs": [],
|
|
2144
|
+
"stateMutability": "nonpayable",
|
|
2145
|
+
"type": "function",
|
|
2146
|
+
"signature": "0xd547741f"
|
|
2147
|
+
},
|
|
2148
|
+
{
|
|
2149
|
+
"inputs": [
|
|
2150
|
+
{
|
|
2151
|
+
"internalType": "address",
|
|
2152
|
+
"name": "",
|
|
2153
|
+
"type": "address"
|
|
2154
|
+
}
|
|
2155
|
+
],
|
|
2156
|
+
"name": "royaltiesCheckers",
|
|
2157
|
+
"outputs": [
|
|
2158
|
+
{
|
|
2159
|
+
"internalType": "bool",
|
|
2160
|
+
"name": "",
|
|
2161
|
+
"type": "bool"
|
|
2162
|
+
}
|
|
2163
|
+
],
|
|
2164
|
+
"stateMutability": "view",
|
|
2165
|
+
"type": "function",
|
|
2166
|
+
"signature": "0xbfb967d0"
|
|
2167
|
+
},
|
|
2168
|
+
{
|
|
2169
|
+
"inputs": [
|
|
2170
|
+
{
|
|
2171
|
+
"internalType": "bytes32",
|
|
2172
|
+
"name": "_did",
|
|
2173
|
+
"type": "bytes32"
|
|
2174
|
+
},
|
|
2175
|
+
{
|
|
2176
|
+
"internalType": "address",
|
|
2177
|
+
"name": "_royalties",
|
|
2178
|
+
"type": "address"
|
|
2179
|
+
}
|
|
2180
|
+
],
|
|
2181
|
+
"name": "setDIDRoyalties",
|
|
2182
|
+
"outputs": [],
|
|
2183
|
+
"stateMutability": "nonpayable",
|
|
2184
|
+
"type": "function",
|
|
2185
|
+
"signature": "0x9463e25d"
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
"inputs": [
|
|
2189
|
+
{
|
|
2190
|
+
"internalType": "bytes32",
|
|
2191
|
+
"name": "_did",
|
|
2192
|
+
"type": "bytes32"
|
|
2193
|
+
},
|
|
2194
|
+
{
|
|
2195
|
+
"internalType": "address",
|
|
2196
|
+
"name": "_recipient",
|
|
2197
|
+
"type": "address"
|
|
2198
|
+
}
|
|
2199
|
+
],
|
|
2200
|
+
"name": "setDIDRoyaltyRecipient",
|
|
2201
|
+
"outputs": [],
|
|
2202
|
+
"stateMutability": "nonpayable",
|
|
2203
|
+
"type": "function",
|
|
2204
|
+
"signature": "0xb14d888a"
|
|
2205
|
+
},
|
|
2206
|
+
{
|
|
2207
|
+
"inputs": [
|
|
2208
|
+
{
|
|
2209
|
+
"internalType": "address",
|
|
2210
|
+
"name": "_royalties",
|
|
2211
|
+
"type": "address"
|
|
2212
|
+
}
|
|
2213
|
+
],
|
|
2214
|
+
"name": "setDefaultRoyalties",
|
|
2215
|
+
"outputs": [],
|
|
2216
|
+
"stateMutability": "nonpayable",
|
|
2217
|
+
"type": "function",
|
|
2218
|
+
"signature": "0x0dc22f3a"
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
"inputs": [
|
|
2222
|
+
{
|
|
2223
|
+
"internalType": "address",
|
|
2224
|
+
"name": "_erc1155",
|
|
2225
|
+
"type": "address"
|
|
2226
|
+
}
|
|
2227
|
+
],
|
|
2228
|
+
"name": "setNFT1155",
|
|
2229
|
+
"outputs": [],
|
|
2230
|
+
"stateMutability": "nonpayable",
|
|
2231
|
+
"type": "function",
|
|
2232
|
+
"signature": "0xbcd3f9fc"
|
|
2233
|
+
},
|
|
2234
|
+
{
|
|
2235
|
+
"inputs": [
|
|
2236
|
+
{
|
|
2237
|
+
"internalType": "bytes4",
|
|
2238
|
+
"name": "interfaceId",
|
|
2239
|
+
"type": "bytes4"
|
|
2240
|
+
}
|
|
2241
|
+
],
|
|
2242
|
+
"name": "supportsInterface",
|
|
2243
|
+
"outputs": [
|
|
2244
|
+
{
|
|
2245
|
+
"internalType": "bool",
|
|
2246
|
+
"name": "",
|
|
2247
|
+
"type": "bool"
|
|
2248
|
+
}
|
|
2249
|
+
],
|
|
2250
|
+
"stateMutability": "view",
|
|
2251
|
+
"type": "function",
|
|
2252
|
+
"signature": "0x01ffc9a7"
|
|
2253
|
+
},
|
|
2254
|
+
{
|
|
2255
|
+
"inputs": [
|
|
2256
|
+
{
|
|
2257
|
+
"internalType": "bytes32",
|
|
2258
|
+
"name": "_did",
|
|
2259
|
+
"type": "bytes32"
|
|
2260
|
+
},
|
|
2261
|
+
{
|
|
2262
|
+
"internalType": "address",
|
|
2263
|
+
"name": "_newOwner",
|
|
2264
|
+
"type": "address"
|
|
2265
|
+
}
|
|
2266
|
+
],
|
|
2267
|
+
"name": "transferDIDOwnership",
|
|
2268
|
+
"outputs": [],
|
|
2269
|
+
"stateMutability": "nonpayable",
|
|
2270
|
+
"type": "function",
|
|
2271
|
+
"signature": "0xd6f9d5eb"
|
|
2272
|
+
},
|
|
2273
|
+
{
|
|
2274
|
+
"inputs": [
|
|
2275
|
+
{
|
|
2276
|
+
"internalType": "address",
|
|
2277
|
+
"name": "_sender",
|
|
2278
|
+
"type": "address"
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
"internalType": "bytes32",
|
|
2282
|
+
"name": "_did",
|
|
2283
|
+
"type": "bytes32"
|
|
2284
|
+
},
|
|
2285
|
+
{
|
|
2286
|
+
"internalType": "address",
|
|
2287
|
+
"name": "_newOwner",
|
|
2288
|
+
"type": "address"
|
|
2289
|
+
}
|
|
2290
|
+
],
|
|
2291
|
+
"name": "transferDIDOwnershipManaged",
|
|
2292
|
+
"outputs": [],
|
|
2293
|
+
"stateMutability": "nonpayable",
|
|
2294
|
+
"type": "function",
|
|
2295
|
+
"signature": "0xa22b1b8c"
|
|
2296
|
+
},
|
|
2297
|
+
{
|
|
2298
|
+
"inputs": [
|
|
2299
|
+
{
|
|
2300
|
+
"internalType": "address",
|
|
2301
|
+
"name": "newOwner",
|
|
2302
|
+
"type": "address"
|
|
2303
|
+
}
|
|
2304
|
+
],
|
|
2305
|
+
"name": "transferOwnership",
|
|
2306
|
+
"outputs": [],
|
|
2307
|
+
"stateMutability": "nonpayable",
|
|
2308
|
+
"type": "function",
|
|
2309
|
+
"signature": "0xf2fde38b"
|
|
2310
|
+
},
|
|
2311
|
+
{
|
|
2312
|
+
"inputs": [
|
|
2313
|
+
{
|
|
2314
|
+
"internalType": "bytes32",
|
|
2315
|
+
"name": "_did",
|
|
2316
|
+
"type": "bytes32"
|
|
2317
|
+
},
|
|
2318
|
+
{
|
|
2319
|
+
"internalType": "bytes32",
|
|
2320
|
+
"name": "_checksum",
|
|
2321
|
+
"type": "bytes32"
|
|
2322
|
+
},
|
|
2323
|
+
{
|
|
2324
|
+
"internalType": "string",
|
|
2325
|
+
"name": "_url",
|
|
2326
|
+
"type": "string"
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
"internalType": "string",
|
|
2330
|
+
"name": "_immutableUrl",
|
|
2331
|
+
"type": "string"
|
|
2332
|
+
}
|
|
2333
|
+
],
|
|
2334
|
+
"name": "updateMetadataUrl",
|
|
2335
|
+
"outputs": [],
|
|
2336
|
+
"stateMutability": "nonpayable",
|
|
2337
|
+
"type": "function",
|
|
2338
|
+
"signature": "0xc3cd788a"
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
"inputs": [
|
|
2342
|
+
{
|
|
2343
|
+
"internalType": "bytes32",
|
|
2344
|
+
"name": "_provId",
|
|
2345
|
+
"type": "bytes32"
|
|
2346
|
+
},
|
|
2347
|
+
{
|
|
2348
|
+
"internalType": "bytes32",
|
|
2349
|
+
"name": "_did",
|
|
2350
|
+
"type": "bytes32"
|
|
2351
|
+
},
|
|
2352
|
+
{
|
|
2353
|
+
"internalType": "address",
|
|
2354
|
+
"name": "_agentId",
|
|
2355
|
+
"type": "address"
|
|
2356
|
+
},
|
|
2357
|
+
{
|
|
2358
|
+
"internalType": "bytes32",
|
|
2359
|
+
"name": "_activityId",
|
|
2360
|
+
"type": "bytes32"
|
|
2361
|
+
},
|
|
2362
|
+
{
|
|
2363
|
+
"internalType": "bytes",
|
|
2364
|
+
"name": "_signatureUsing",
|
|
2365
|
+
"type": "bytes"
|
|
2366
|
+
},
|
|
2367
|
+
{
|
|
2368
|
+
"internalType": "string",
|
|
2369
|
+
"name": "_attributes",
|
|
2370
|
+
"type": "string"
|
|
2371
|
+
}
|
|
2372
|
+
],
|
|
2373
|
+
"name": "used",
|
|
2374
|
+
"outputs": [
|
|
2375
|
+
{
|
|
2376
|
+
"internalType": "bool",
|
|
2377
|
+
"name": "success",
|
|
2378
|
+
"type": "bool"
|
|
2379
|
+
}
|
|
2380
|
+
],
|
|
2381
|
+
"stateMutability": "nonpayable",
|
|
2382
|
+
"type": "function",
|
|
2383
|
+
"signature": "0xbb794d92"
|
|
2384
|
+
},
|
|
2385
|
+
{
|
|
2386
|
+
"inputs": [
|
|
2387
|
+
{
|
|
2388
|
+
"internalType": "bytes32",
|
|
2389
|
+
"name": "_provId",
|
|
2390
|
+
"type": "bytes32"
|
|
2391
|
+
},
|
|
2392
|
+
{
|
|
2393
|
+
"internalType": "bytes32",
|
|
2394
|
+
"name": "_did",
|
|
2395
|
+
"type": "bytes32"
|
|
2396
|
+
},
|
|
2397
|
+
{
|
|
2398
|
+
"internalType": "address",
|
|
2399
|
+
"name": "_agentId",
|
|
2400
|
+
"type": "address"
|
|
2401
|
+
},
|
|
2402
|
+
{
|
|
2403
|
+
"internalType": "bytes32",
|
|
2404
|
+
"name": "_activityId",
|
|
2405
|
+
"type": "bytes32"
|
|
2406
|
+
},
|
|
2407
|
+
{
|
|
2408
|
+
"internalType": "string",
|
|
2409
|
+
"name": "_attributes",
|
|
2410
|
+
"type": "string"
|
|
2411
|
+
}
|
|
2412
|
+
],
|
|
2413
|
+
"name": "wasAssociatedWith",
|
|
2414
|
+
"outputs": [
|
|
2415
|
+
{
|
|
2416
|
+
"internalType": "bool",
|
|
2417
|
+
"name": "success",
|
|
2418
|
+
"type": "bool"
|
|
2419
|
+
}
|
|
2420
|
+
],
|
|
2421
|
+
"stateMutability": "nonpayable",
|
|
2422
|
+
"type": "function",
|
|
2423
|
+
"signature": "0x953ae6ce"
|
|
2424
|
+
},
|
|
2425
|
+
{
|
|
2426
|
+
"inputs": [
|
|
2427
|
+
{
|
|
2428
|
+
"internalType": "bytes32",
|
|
2429
|
+
"name": "_provId",
|
|
2430
|
+
"type": "bytes32"
|
|
2431
|
+
},
|
|
2432
|
+
{
|
|
2433
|
+
"internalType": "bytes32",
|
|
2434
|
+
"name": "_newEntityDid",
|
|
2435
|
+
"type": "bytes32"
|
|
2436
|
+
},
|
|
2437
|
+
{
|
|
2438
|
+
"internalType": "bytes32",
|
|
2439
|
+
"name": "_usedEntityDid",
|
|
2440
|
+
"type": "bytes32"
|
|
2441
|
+
},
|
|
2442
|
+
{
|
|
2443
|
+
"internalType": "address",
|
|
2444
|
+
"name": "_agentId",
|
|
2445
|
+
"type": "address"
|
|
2446
|
+
},
|
|
2447
|
+
{
|
|
2448
|
+
"internalType": "bytes32",
|
|
2449
|
+
"name": "_activityId",
|
|
2450
|
+
"type": "bytes32"
|
|
2451
|
+
},
|
|
2452
|
+
{
|
|
2453
|
+
"internalType": "string",
|
|
2454
|
+
"name": "_attributes",
|
|
2455
|
+
"type": "string"
|
|
2456
|
+
}
|
|
2457
|
+
],
|
|
2458
|
+
"name": "wasDerivedFrom",
|
|
2459
|
+
"outputs": [
|
|
2460
|
+
{
|
|
2461
|
+
"internalType": "bool",
|
|
2462
|
+
"name": "success",
|
|
2463
|
+
"type": "bool"
|
|
2464
|
+
}
|
|
2465
|
+
],
|
|
2466
|
+
"stateMutability": "nonpayable",
|
|
2467
|
+
"type": "function",
|
|
2468
|
+
"signature": "0xb00b2e1e"
|
|
2469
|
+
}
|
|
2470
|
+
],
|
|
2471
|
+
"bytecode": "0x608060405234801561001057600080fd5b50614a07806100206000396000f3fe608060405234801561001057600080fd5b50600436106103535760003560e01c80637ac5f7c8116101c65780637ac5f7c8146106c45780637c81b9a6146106d757806382c947b7146106ea5780638da5cb5b1461070457806391d148541461070c5780639463e25d1461071f578063953ae6ce14610732578063994e034514610745578063a159969c14610758578063a217fddf1461076b578063a22b1b8c14610773578063a2d28d4614610786578063a4b1934314610799578063a6a8f17b146107ac578063ab9de230146107bf578063b00b2e1e146107c7578063b14d888a146107da578063bb794d92146107ed578063bbc1dede14610800578063bc58645614610823578063bca6ce6414610836578063bcd3f9fc14610849578063bfb967d01461085c578063c3cd788a1461087f578063c714700c14610892578063ce1b815f146108a5578063cffe1eb3146108ad578063d547741f146108c0578063d56022d7146108d3578063d6f9d5eb146108e6578063e6af0b6c146108f9578063e84400ca1461090c578063e9c1e0451461091f578063f2fde38b14610932578063f6595a8f14610945578063f951735a14610958578063f9faeace1461096b57600080fd5b806301ffc9a71461035857806309b8d7d1146103805780630dc22f3a14610395578063108762d0146103a8578063110a9d6a146103bb5780631459457a146103ce57806316279055146103e15780632105ab65146103f557806322c6b5191461042e578063234f04cd14610456578063248a9ca31461048257806326442c64146104a3578063280f546c146104b65780632f2ff15d146104c957806334364de1146104dc57806336568abe146104f157806339c67470146105045780633a1895a7146105175780633b21f84f1461052a5780633bd02c411461053d5780633c6aa7b7146105505780633fc62a8014610563578063481c6a7514610576578063490ca71b1461058957806349791a91146105e5578063534eb706146105f85780635457a5c81461060b578063572b6c05146106335780635ced058e146106465780635ea3ab851461065757806360d6c7cf1461066a57806361d744721461067d5780636c2ef524146106905780636c3e6036146106a35780636fd902e1146106b6578063715018a6146106bc575b600080fd5b61036b61036636600461367e565b610997565b60405190151581526020015b60405180910390f35b61039361038e366004613832565b6109ce565b005b6103936103a3366004613902565b6109ff565b61036b6103b6366004613902565b610a29565b6103936103c936600461391f565b610ac1565b6103936103dc3660046139c2565b610c18565b61036b6103ef366004613902565b3b151590565b610421610403366004613a33565b600090815260c960205260409020600501546001600160a01b031690565b6040516103779190613a4c565b61044161043c366004613a33565b610dc4565b60405161037799989796959493929190613af4565b610421610464366004613a33565b600090815260ca60205260409020600201546001600160a01b031690565b610495610490366004613a33565b610fea565b604051908152602001610377565b61036b6104b1366004613b78565b610fff565b6103936104c4366004613902565b61100d565b6103936104d7366004613b78565b611039565b6104956000805160206149b283398151915281565b6103936104ff366004613b78565b61105a565b610393610512366004613b78565b6110e8565b61036b610525366004613ba8565b611158565b610421610538366004613a33565b61147e565b61039361054b366004613c18565b6114be565b61036b61055e366004613b78565b611503565b610495610571366004613b78565b611511565b60cc54610421906001600160a01b031681565b6105c6610597366004613a33565b600090815260ca60205260409020600181015490546001600160a01b0390911691600160a81b90910460ff1690565b604080516001600160a01b039093168352901515602083015201610377565b61036b6105f3366004613b78565b611544565b610393610606366004613d07565b61157d565b61061e610619366004613a33565b6115a1565b60405161037799989796959493929190613d7d565b61036b610641366004613902565b611695565b610421610654366004613a33565b90565b610495610665366004613e42565b6116ba565b61036b610678366004613b78565b611709565b61036b61068b366004613e7e565b611734565b61042161069e366004613a33565b61174d565b6103936106b1366004613b78565b611768565b43610495565b6103936117df565b6103936106d2366004613b78565b6117f3565b61036b6106e5366004613a33565b61185e565b6104956106f8366004613902565b6001600160a01b031690565b6104216118ac565b61036b61071a366004613b78565b6118bb565b61039361072d366004613b78565b6118e6565b61036b610740366004613efd565b6119e8565b61036b610753366004613f69565b611a28565b61039361076636600461400e565b611a79565b610495600081565b610393610781366004614054565b611adc565b610393610794366004613b78565b611b1f565b61036b6107a7366004613902565b611b84565b6103936107ba366004613b78565b611b9e565b610421611bd0565b61036b6107d5366004614096565b611bdf565b6103936107e8366004613b78565b611c21565b61036b6107fb3660046140f1565b611cc1565b61049561080e366004613a33565b600090815260ca602052604090206006015490565b610393610831366004613b78565b611cd1565b60ce54610421906001600160a01b031681565b610393610857366004613902565b611d03565b61036b61086a366004613902565b60cf6020526000908152604090205460ff1681565b61039361088d366004614168565b611d2d565b61036b6108a03660046141af565b611e33565b610421611e53565b6103936108bb3660046141db565b611ede565b6103936108ce366004613b78565b611f38565b60cd54610421906001600160a01b031681565b6103936108f4366004613b78565b611f54565b610393610907366004613902565b611f66565b61036b61091a3660046142e3565b611f89565b60d154610421906001600160a01b031681565b610393610940366004613902565b61220e565b610393610953366004613902565b612284565b60d054610421906001600160a01b031681565b610421610979366004613a33565b600090815260ca60205260409020600a01546001600160a01b031690565b60006001600160e01b03198216637965db0b60e01b14806109c857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6109dc898888888686610ac1565b6109f36109eb8a6105716122a4565b898686611f89565b50505050505050505050565b610a076122b3565b60d080546001600160a01b0319166001600160a01b0392909216919091179055565b600080610a34611bd0565b90506001600160a01b038116610a4d5750600092915050565b604051630108762d60e41b81526001600160a01b0382169063108762d090610a79908690600401613a4c565b602060405180830381865afa158015610a96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aba9190614322565b9392505050565b6000610acf876105716122a4565b600081815260ca60205260409020549091506001600160a01b031615610b355760405162461bcd60e51b815260206004820152601660248201527511125108185b1c9958591e481c9959da5cdd195c995960521b60448201526064015b60405180910390fd5b610b4f818786610b436122a4565b60ca9392919087612322565b60005b8551811015610b9c57610b8a82878381518110610b7157610b7161433f565b602002602001015160ca6123f69092919063ffffffff16565b80610b948161436b565b915050610b52565b50600081815260ca602052604090205486906001600160a01b0316827f8f8b755e50eb4efaa1a82e62cbfe4c58d83374b2f20db5960764ba69e062ae4387610be26122a4565b43604051610bf293929190614384565b60405180910390a4610c0e8182610c076122a4565b8686612481565b5050505050505050565b600054610100900460ff1615808015610c385750600054600160ff909116105b80610c525750303b158015610c52575060005460ff166001145b610cb55760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610b2c565b6000805460ff191660011790558015610cd8576000805461ff0019166101001790555b610ce0612507565b610ce8612536565b610d006000805160206149b28339815191528761255d565b60cd80546001600160a01b038088166001600160a01b03199283161790925560ce805492871692909116919091179055610d398661220e565b60cc80546001600160a01b038089166001600160a01b03199283161790925560d0805485841690831617905560d18054928616929091169190911790558015610dbc576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050565b600081815260ca6020526040812080546003820154600490920180546001600160a01b0390921693606092909182918491839183918391610e04906143b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e30906143b2565b8015610e7d5780601f10610e5257610100808354040283529160200191610e7d565b820191906000526020600020905b815481529060010190602001808311610e6057829003601f168201915b50505060008d815260ca60209081526040918290206005810154600682015460079092018054855181860281018601909652808652979e506001600160a01b039091169c50909a509194919350909150830182828015610f0657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610ee8575b50505060008d815260ca602052604090208054600b9091018054949850600160a01b90910460ff16965092610f3d925090506143b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f69906143b2565b8015610fb65780601f10610f8b57610100808354040283529160200191610fb6565b820191906000526020600020905b815481529060010190602001808311610f9957829003601f168201915b50505060009c8d52505060ca6020526040909a2054989a979996989597949693959294600160a81b90930460ff1692915050565b60009081526097602052604090206001015490565b6000610aba60ca8484612567565b6110156122b3565b6001600160a01b0316600090815260cf60205260409020805460ff19166001179055565b61104282610fea565b61104b8161258b565b611055838361259c565b505050565b6110626122a4565b6001600160a01b0316816001600160a01b0316146110da5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610b2c565b6110e48282612623565b5050565b816110f28161185e565b61110e5760405162461bcd60e51b8152600401610b2c906143ec565b61111a60ca84846126a8565b7f315bd384dfce4eb95196e1884338b3ad10ee2565861c1f5ad2798c66f2fc7c6b838360405161114b92919061442d565b60405180910390a1505050565b60008661116c6111666122a4565b82611e33565b6111885760405162461bcd60e51b8152600401610b2c90614444565b6111b388886000881161119c5760006111a9565b60d0546001600160a01b03165b60ca929190612720565b60006001600160a01b0388166111d5575060cd546001600160a01b03166111d8565b50865b6040516397cfb1a960e01b81526001600160a01b038216906397cfb1a99061120b908c906000908c908a90600401614468565b600060405180830381600087803b15801561122557600080fd5b505af1158015611239573d6000803e3d6000fd5b505050506000861115611328576001600160a01b038116639713c8078a61125e6122a4565b896040518463ffffffff1660e01b815260040161127d93929190614497565b600060405180830381600087803b15801561129757600080fd5b505af11580156112ab573d6000803e3d6000fd5b505060d0546001600160a01b031615915061132890505760d054604051636158c12560e11b8152600481018b9052602481018890526001600160a01b039091169063c2b1824a90604401600060405180830381600087803b15801561130f57600080fd5b505af1158015611323573d6000803e3d6000fd5b505050505b84156113bb57806001600160a01b031663731133e96113456122a4565b60405160e083901b6001600160e01b03191681526001600160a01b039091166004820152602481018c9052604481018a9052608060648201526000608482015260a401600060405180830381600087803b1580156113a257600080fd5b505af11580156113b6573d6000803e3d6000fd5b505050505b6114718988886113c96122a4565b60408051602081019590955284019290925260608301526001600160a01b0316608082015260a001604051602081830303815290604052805190602001208a6114106122a4565b7f11f2cb161849de74d9c95aaaf28e1580067be4b742f84661ee62eea34e9fdc3c604051806020016040528060008152506040518060400160405280601281526020017137333a1034b734ba34b0b634bd30ba34b7b760711b815250611cc1565b9998505050505050505050565b600081815260ca60205260408120600901546001600160a01b0316806109c8575050600090815260ca60205260409020600201546001600160a01b031690565b81610800815111156114e25760405162461bcd60e51b8152600401610b2c906144b6565b6114f68b8b8b8b8b8b8b60008c8c8c611ede565b5050505050505050505050565b6000610aba60ca848461282b565b6000828260405160200161152692919061442d565b60405160208183030381529060405280519060200120905092915050565b600061155260ca848461282b565b80610aba57506115618361174d565b6001600160a01b0316826001600160a01b031614905092915050565b61159b84848484600060405180602001604052806000815250610ac1565b50505050565b600081815260c960205260409020805460018201546002830154600384015460048501546005860154600687015460079097018054969795966001600160a01b0395861696949580851695600160a01b90950460ff169493169291606091611608906143b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611634906143b2565b80156116815780601f1061165657610100808354040283529160200191611681565b820191906000526020600020905b81548152906001019060200180831161166457829003601f168201915b505050505090509193959799909294969850565b600061169f611e53565b6001600160a01b0316826001600160a01b0316149050919050565b60008060005b8351811015611702578381815181106116db576116db61433f565b6020026020010151826116ee91906144e7565b9150806116fa8161436b565b9150506116c0565b5092915050565b600082815260cb602090815260408083206001600160a01b038516845290915281205460ff16610aba565b600061174460ca86868686612838565b95945050505050565b600090815260ca60205260409020546001600160a01b031690565b816117728161185e565b61178e5760405162461bcd60e51b8152600401610b2c906143ec565b600061179c60ca8585612a79565b90507f1a5169eb55ab83808f4a72ecb896508028978b6f36fa6e6da854a426d1beb1148484836040516117d1939291906144fa565b60405180910390a150505050565b6117e76122b3565b6117f16000612af4565b565b816117ff6111666122a4565b61181b5760405162461bcd60e51b8152600401610b2c90614444565b600061182960ca8585612b46565b90507fa34c94e3893406b9fa302e5fbe4335b0cc46ca311d7ea24545426ec223a94f418484836040516117d1939291906144fa565b600081815260ca60205260408120546001600160a01b031661187e6122a4565b6001600160a01b0316148061189a575061189a826104b16122a4565b806109c857506109c88261055e6122a4565b6033546001600160a01b031690565b60009182526097602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6118ee6122a4565b600083815260ca60205260409020600201546001600160a01b0390811691161461192a5760405162461bcd60e51b8152600401610b2c9061451b565b600082815260ca60205260409020600a01546001600160a01b03161561198c5760405162461bcd60e51b815260206004820152601760248201527643616e6e6f74206368616e676520726f79616c7469657360481b6044820152606401610b2c565b600082815260ca6020526040808220600a0180546001600160a01b0319166001600160a01b0385169081179091559051909184917f618a277d9a094202463dfb71fb039b4d370b18918367d09f613fd2dd72c230c39190a35050565b6000846119f48161185e565b611a105760405162461bcd60e51b8152600401610b2c906143ec565b611a1d8787878787612bb0565b979650505050505050565b600086611a348161185e565b611a505760405162461bcd60e51b8152600401610b2c906143ec565b611a5f89898989898989612c06565b50611a6a88886110e8565b50600198975050505050505050565b611a846107a76122a4565b80611a955750611a956103b66122a4565b611ab15760405162461bcd60e51b8152600401610b2c90614552565b611ad583858385805190602001206040518060200160405280600081525087612c83565b5050505050565b611ae76107a76122a4565b80611af85750611af86103b66122a4565b611b145760405162461bcd60e51b8152600401610b2c90614552565b611055838383612cee565b81611b2b6111666122a4565b611b475760405162461bcd60e51b8152600401610b2c90614444565b611b5360ca84846123f6565b7f0c22bba9f36f0f2a7884650bedf42ce7b026851b573c93e4d8cd51f73eceda0f838360405161114b92919061442d565b60006109c86000805160206149b2833981519152836118bb565b81611baa6111666122a4565b611bc65760405162461bcd60e51b8152600401610b2c90614444565b6110558383612e2a565b60d1546001600160a01b031690565b600084611beb8161185e565b611c075760405162461bcd60e51b8152600401610b2c906143ec565b611c15888888888888612f03565b98975050505050505050565b611c296122a4565b600083815260ca60205260409020600201546001600160a01b03908116911614611c655760405162461bcd60e51b8152600401610b2c9061451b565b600082815260ca602052604080822060090180546001600160a01b0319166001600160a01b0385169081179091559051909184917fdfc2ab7036806b444e2fe602216acfcd7c3f9d65140396bddf87ef98ae71133f9190a35050565b6000611a1d878787878787612c83565b81611cdd6111666122a4565b611cf95760405162461bcd60e51b8152600401610b2c90614444565b6110558383612f5a565b611d0b6122b3565b60cd80546001600160a01b0319166001600160a01b0392909216919091179055565b83611d396111666122a4565b611d555760405162461bcd60e51b8152600401610b2c90614444565b611d63858585610b436122a4565b611dde8585858543611d736122a4565b604051602001611d8896959493929190614582565b6040516020818303038152906040528051906020012086611da76122a4565b7f46a72e85683b87db5aa1d3610f79c58d84ccb34362dd9f101f52954ab739ef606040518060200160405280600081525087611cc1565b50611de76122a4565b6001600160a01b0316857f5e7f5dd5d9bd5be03554b55cc041e6b09b2a3822dad0ab94b98e6fc939f1e415868686604051611e24939291906145d7565b60405180910390a35050505050565b600090815260ca60205260409020546001600160a01b0390811691161490565b600080611e5e611bd0565b90506001600160a01b038116611e7657600091505090565b806001600160a01b031663ce1b815f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ed89190614602565b91505090565b8161080081511115611f025760405162461bcd60e51b8152600401610b2c906144b6565b611f108c8b8b8b8887610ac1565b611f29611f1f8d6105716122a4565b8c89898988611158565b50505050505050505050505050565b611f4182610fea565b611f4a8161258b565b6110558383612623565b6110e4611f5f6122a4565b8383612cee565b611f6e6122b3565b611f866000805160206149b28339815191528261255d565b50565b600084611f976111666122a4565b611fb35760405162461bcd60e51b8152600401610b2c90614444565b611fc786866000871161119c5760006111a9565b60006001600160a01b038616611fe9575060ce546001600160a01b0316611fec565b50845b84156120d35760d0546001600160a01b0316156120695760d054604051636158c12560e11b815260048101899052602481018790526001600160a01b039091169063c2b1824a90604401600060405180830381600087803b15801561205057600080fd5b505af1158015612064573d6000803e3d6000fd5b505050505b6001600160a01b038116639713c807886120816122a4565b886040518463ffffffff1660e01b81526004016120a093929190614497565b600060405180830381600087803b1580156120ba57600080fd5b505af11580156120ce573d6000803e3d6000fd5b505050505b831561215157806001600160a01b03166340c10f196120f06122a4565b60405160e083901b6001600160e01b03191681526001600160a01b039091166004820152602481018a9052604401600060405180830381600087803b15801561213857600080fd5b505af115801561214c573d6000803e3d6000fd5b505050505b611a1d876001876121606122a4565b60408051602081019590955260ff9093169284019290925260608301526001600160a01b0316608082015260a00160405160208183030381529060405280519060200120886121ad6122a4565b7fc5ad7128f27e0a2f56fe7865eb53e2f8663fce3e9c0fe04b5f8694448246a88d604051806020016040528060008152506040518060400160405280601281526020017137333a1034b734ba34b0b634bd30ba34b7b760711b815250611cc1565b6122166122b3565b6001600160a01b03811661227b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b2c565b611f8681612af4565b61228c6122b3565b611f866000805160206149b283398151915282612623565b60006122ae613012565b905090565b6122bb6122a4565b6001600160a01b03166122cc6118ac565b6001600160a01b0316146117f15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b2c565b600085815260208790526040902080546002909101546001600160a01b039182169116816123505750829050805b600087815260208990526040902080546001600160a01b038085166001600160a01b0319928316178355600283018054918516919092161790556003810187905560040161239e8682614665565b5060008781526020899052604090206005810180546001600160a01b038088166001600160a01b03199283161790925582549185169116178155436006820155600b016123eb8482614665565b505050505050505050565b6001600160a01b0381161580159061241757506001600160a01b0381163014155b6124335760405162461bcd60e51b8152600401610b2c90614724565b61243e83838361282b565b611055576000828152602084815260408220600701805460018101825590835291200180546001600160a01b0383166001600160a01b0319909116179055505050565b60006124ad868660008787600060026124986122a4565b6040805160008152602081019091528b613040565b826124b66122a4565b6001600160a01b0316867f33085b0f42639b8dd24c5629ed968da4743f8e42f67bab011a23e357e21f2b2a8986436040516124f39392919061474e565b60405180910390a450600195945050505050565b600054610100900460ff1661252e5760405162461bcd60e51b8152600401610b2c90614777565b6117f1613277565b600054610100900460ff166117f15760405162461bcd60e51b8152600401610b2c90614777565b6110e4828261259c565b60006125748484846132ae565b1961258157506000610aba565b5060019392505050565b611f86816125976122a4565b613332565b6125a682826118bb565b6110e45760008281526097602090815260408083206001600160a01b03851684529091529020805460ff191660011790556125df6122a4565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b61262d82826118bb565b156110e45760008281526097602090815260408083206001600160a01b03851684529091529020805460ff191690556126646122a4565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6001600160a01b038116158015906126c957506001600160a01b0381163014155b6126d257600080fd5b6126dd838383612567565b611055576000828152602084815260408220600801805460018101825590835291200180546001600160a01b0383166001600160a01b0319909116179055505050565b6000838152602085905260409020546001600160a01b03166127755760405162461bcd60e51b815260206004820152600e60248201526d111251081b9bdd081cdd1bdc995960921b6044820152606401610b2c565b600083815260208590526040902054600160a81b900460ff16156127d55760405162461bcd60e51b815260206004820152601760248201527613919508185b1c9958591e481a5b9a5d1a585b1a5e9959604a1b6044820152606401610b2c565b600092835260209390935260409091206001810180546001600160a01b039384166001600160a01b031991821617909155600a82018054949093169316929092179055805460ff60a81b1916600160a81b179055565b600061257484848461338b565b6000848152602086905260408120600a01546001600160a01b0316156128e65760008581526020879052604090819020600a01549051638c41304b60e01b81526001600160a01b0390911690638c41304b9061289e9088908890889088906004016147c2565b602060405180830381865afa1580156128bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128df9190614322565b9050611744565b600085815260208790526040812054600160a01b900460ff16900361290d57506001611744565b6000805b85518110156129535785818151811061292c5761292c61433f565b60200260200101518261293f91906144e7565b91508061294b8161436b565b915050612911565b5080600003612966576001915050611744565b600086815260208890526040902060028101546009909101546001600160a01b039182169116156129ae57506000868152602088905260409020600901546001600160a01b03165b6000805b8651811015612a08578681815181106129cd576129cd61433f565b60200260200101516001600160a01b0316836001600160a01b0316036129f65760019150612a08565b80612a008161436b565b9150506129b2565b81612a1a576000945050505050611744565b600089815260208b90526040812054606490612a4090600160a01b900460ff1687614833565b612a4a919061484a565b905080898381518110612a5f57612a5f61433f565b602002602001015110159550505050505095945050505050565b60006001600160a01b038216612a8e57600080fd5b6000612a9b8585856132ae565b90508019612aad576000915050610aba565b6000848152602086905260409020600801805482908110612ad057612ad061433f565b600091825260209091200180546001600160a01b0319169055506001949350505050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b038216612b6e5760405162461bcd60e51b8152600401610b2c90614724565b6000612b7b85858561338b565b90508019612b8d576000915050610aba565b6000848152602086905260409020600701805482908110612ad057612ad061433f565b6000612bc78686600087876000600b6124986122a4565b82846001600160a01b0316867f799c5b7d59b63eaf5a3c6735864c70700cbeca3d483715104367746fac56cfb08986436040516124f39392919061474e565b6000612c238888600089888a600c612c1c6122a4565b8b8b613040565b846001600160a01b0316866001600160a01b0316887f9868587213cf52cc7b5890c38f8f0c76cf768f1292bc71a9eea82ed53f708875878c8743604051612c6d949392919061486c565b60405180910390a4506001979650505050505050565b6000612c9a87876000888860006003612c1c6122a4565b83856001600160a01b0316877fa8b6546a312a68b2a6ba255756e303dfedbeba14be0100099c93816062e4576d8a8643604051612cd99392919061474e565b60405180910390a45060019695505050505050565b612cf88383611e33565b612d145760405162461bcd60e51b8152600401610b2c90614444565b612d2060ca8383613403565b612ddf82848343604051602001612d7d94939291909384526001600160a01b03928316602085015260a060408501819052600b908501526a1d1c985b9cd9995c91125160aa1b60c085015291166060830152608082015260e00190565b6040516020818303038152906040528051906020012083837f9fd301e7f445ab0cb66aa80900d24fe827b4307e7d9070657e5804689f4f49ff6040518060400160405280600b81526020016a1d1c985b9cd9995c91125160aa1b815250612bb0565b50604080518381526001600160a01b0380861660208301528316918101919091527fe36e06a31618f1e5c2057e2d659c72bb4d1e19526236dc13052a483978b55ea29060600161114b565b600082815260cb602090815260408083206001600160a01b038516845290915290205460ff16612e965760405162461bcd60e51b815260206004820152601760248201527611dc985b9d195948185b1c9958591e481c995d9bdad959604a1b6044820152606401610b2c565b600082815260cb602090815260408083206001600160a01b0385168085529252909120805460ff19169055612ec96122a4565b6001600160a01b0316837ff511018c667fb6eda32b85f42e7888d1cd1d5ec5b2b1147e6d26e946fde22d0d60405160405180910390a45050565b6000612f198787878787600060086124986122a4565b836001600160a01b031685877fbee2f0f0465d7a4e3a07b7f0a9fab23e64b44b475894650718e25bf6b7d90759868b8743604051612cd9949392919061486c565b6001600160a01b038116612fa25760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206772616e74656560881b6044820152606401610b2c565b600082815260cb602090815260408083206001600160a01b0385168085529252909120805460ff19166001179055612fd86122a4565b6001600160a01b0316837faf464968a4f66dada6a1a5a33bd6c431a5dde662dd7d6aa715462130ec86d84560405160405180910390a45050565b600060143610801590613029575061302933611695565b1561303b575060131936013560601c90565b503390565b613048613444565b156109f35760008a815260c960205260409020600501546001600160a01b0316156130af5760405162461bcd60e51b8152602060048201526017602482015276105b1c9958591e48195e1a5cdd1a5b99c81c1c9bdd9259604a1b6044820152606401610b2c565b6040518061012001604052808a8152602001898152602001886001600160a01b03168152602001878152602001866001600160a01b0316815260200185600c8111156130fd576130fd61489c565b60ff168152602001846001600160a01b031681526020014381526020018381525060c960000160008c8152602001908152602001600020600082015181600001556020820151816001015560408201518160020160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506060820151816003015560808201518160040160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060a08201518160040160146101000a81548160ff021916908360ff16021790555060c08201518160050160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060e0820151816006015561010082015181600701908161321a9190614665565b50905050866001600160a01b0316898b7f41004c706431777d9b4cc7e4d32eea01c064ad907dbb2768a7ec29c1cf3351f3898c8a8a8843604051613263969594939291906148b2565b60405180910390a450505050505050505050565b600054610100900460ff1661329e5760405162461bcd60e51b8152600401610b2c90614777565b6117f16132a96122a4565b612af4565b6000805b6000848152602086905260409020600801548110156133265760008481526020869052604090206008018054829081106132ee576132ee61433f565b6000918252602090912001546001600160a01b0390811690841603613314579050610aba565b8061331e8161436b565b9150506132b2565b50600019949350505050565b61333c82826118bb565b6110e457613349816134d1565b6133548360206134e3565b604051602001613365929190614918565b60408051601f198184030181529082905262461bcd60e51b8252610b2c91600401614987565b6000805b6000848152602086905260409020600701548110156133265760008481526020869052604090206007018054829081106133cb576133cb61433f565b6000918252602090912001546001600160a01b03908116908416036133f1579050610aba565b806133fb8161436b565b91505061338f565b6001600160a01b03811661341657600080fd5b60009182526020929092526040902080546001600160a01b0319166001600160a01b03909216919091179055565b60d1546000906001600160a01b031615806122ae575060d160009054906101000a90046001600160a01b03166001600160a01b0316633b7f89236040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ae9190614322565b60606109c86001600160a01b03831660145b606060006134f2836002614833565b6134fd9060026144e7565b6001600160401b03811115613514576135146136cd565b6040519080825280601f01601f19166020018201604052801561353e576020820181803683370190505b509050600360fc1b816000815181106135595761355961433f565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106135885761358861433f565b60200101906001600160f81b031916908160001a90535060006135ac846002614833565b6135b79060016144e7565b90505b600181111561362f576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106135eb576135eb61433f565b1a60f81b8282815181106136015761360161433f565b60200101906001600160f81b031916908160001a90535060049490941c936136288161499a565b90506135ba565b508315610aba5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610b2c565b60006020828403121561369057600080fd5b81356001600160e01b031981168114610aba57600080fd5b6001600160a01b0381168114611f8657600080fd5b80356136c8816136a8565b919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561370b5761370b6136cd565b604052919050565b60006001600160401b0382111561372c5761372c6136cd565b5060051b60200190565b600082601f83011261374757600080fd5b8135602061375c61375783613713565b6136e3565b82815260059290921b8401810191818101908684111561377b57600080fd5b8286015b8481101561379f578035613792816136a8565b835291830191830161377f565b509695505050505050565b600082601f8301126137bb57600080fd5b81356001600160401b038111156137d4576137d46136cd565b6137e7601f8201601f19166020016136e3565b8181528460208386010111156137fc57600080fd5b816020850160208301376000918101602001919091529392505050565b8015158114611f8657600080fd5b80356136c881613819565b60008060008060008060008060006101208a8c03121561385157600080fd5b8935985061386160208b016136bd565b975060408a0135965060608a01356001600160401b038082111561388457600080fd5b6138908d838e01613736565b975060808c01359150808211156138a657600080fd5b6138b28d838e016137aa565b965060a08c013595506138c760c08d01613827565b945060e08c013593506101008c01359150808211156138e557600080fd5b506138f28c828d016137aa565b9150509295985092959850929598565b60006020828403121561391457600080fd5b8135610aba816136a8565b60008060008060008060c0878903121561393857600080fd5b863595506020870135945060408701356001600160401b038082111561395d57600080fd5b6139698a838b01613736565b9550606089013591508082111561397f57600080fd5b61398b8a838b016137aa565b94506080890135935060a08901359150808211156139a857600080fd5b506139b589828a016137aa565b9150509295509295509295565b600080600080600060a086880312156139da57600080fd5b85356139e5816136a8565b945060208601356139f5816136a8565b93506040860135613a05816136a8565b92506060860135613a15816136a8565b91506080860135613a25816136a8565b809150509295509295909350565b600060208284031215613a4557600080fd5b5035919050565b6001600160a01b0391909116815260200190565b60005b83811015613a7b578181015183820152602001613a63565b50506000910152565b60008151808452613a9c816020860160208601613a60565b601f01601f19169290920160200192915050565b600081518084526020808501945080840160005b83811015613ae95781516001600160a01b031687529582019590820190600101613ac4565b509495945050505050565b6001600160a01b038a81168252602082018a905261012060408301819052600091613b218483018c613a84565b9150808a1660608501525087608084015282810360a0840152613b448188613ab0565b90508560c084015282810360e0840152613b5e8186613a84565b9150508215156101008301529a9950505050505050505050565b60008060408385031215613b8b57600080fd5b823591506020830135613b9d816136a8565b809150509250929050565b60008060008060008060c08789031215613bc157600080fd5b863595506020870135613bd3816136a8565b945060408701359350606087013592506080870135613bf181613819565b915060a08701356001600160401b03811115613c0c57600080fd5b6139b589828a016137aa565b6000806000806000806000806000806101408b8d031215613c3857600080fd5b8a359950613c4860208c016136bd565b985060408b0135975060608b01356001600160401b0380821115613c6b57600080fd5b613c778e838f01613736565b985060808d0135915080821115613c8d57600080fd5b613c998e838f016137aa565b975060a08d0135965060c08d0135955060e08d013594506101008d0135915080821115613cc557600080fd5b613cd18e838f016137aa565b93506101208d0135915080821115613ce857600080fd5b50613cf58d828e016137aa565b9150509295989b9194979a5092959850565b60008060008060808587031215613d1d57600080fd5b843593506020850135925060408501356001600160401b0380821115613d4257600080fd5b613d4e88838901613736565b93506060870135915080821115613d6457600080fd5b50613d71878288016137aa565b91505092959194509250565b898152602081018990526001600160a01b03888116604083015260608201889052868116608083015260ff861660a0830152841660c082015260e081018390526101206101008201819052600090613dd783820185613a84565b9c9b505050505050505050505050565b600082601f830112613df857600080fd5b81356020613e0861375783613713565b82815260059290921b84018101918181019086841115613e2757600080fd5b8286015b8481101561379f5780358352918301918301613e2b565b600060208284031215613e5457600080fd5b81356001600160401b03811115613e6a57600080fd5b613e7684828501613de7565b949350505050565b60008060008060808587031215613e9457600080fd5b8435935060208501356001600160401b0380821115613eb257600080fd5b613ebe88838901613de7565b94506040870135915080821115613ed457600080fd5b50613ee187828801613736565b9250506060850135613ef2816136a8565b939692955090935050565b600080600080600060a08688031215613f1557600080fd5b85359450602086013593506040860135613f2e816136a8565b92506060860135915060808601356001600160401b03811115613f5057600080fd5b613f5c888289016137aa565b9150509295509295909350565b600080600080600080600060e0888a031215613f8457600080fd5b87359650602088013595506040880135613f9d816136a8565b94506060880135613fad816136a8565b93506080880135925060a08801356001600160401b0380821115613fd057600080fd5b613fdc8b838c016137aa565b935060c08a0135915080821115613ff257600080fd5b50613fff8a828b016137aa565b91505092959891949750929550565b6000806000806080858703121561402457600080fd5b843593506020850135925060408501356001600160401b0381111561404857600080fd5b613ee1878288016137aa565b60008060006060848603121561406957600080fd5b8335614074816136a8565b925060208401359150604084013561408b816136a8565b809150509250925092565b60008060008060008060c087890312156140af57600080fd5b86359550602087013594506040870135935060608701356140cf816136a8565b92506080870135915060a08701356001600160401b03811115613c0c57600080fd5b60008060008060008060c0878903121561410a57600080fd5b86359550602087013594506040870135614123816136a8565b93506060870135925060808701356001600160401b038082111561414657600080fd5b6141528a838b016137aa565b935060a08901359150808211156139a857600080fd5b6000806000806080858703121561417e57600080fd5b843593506020850135925060408501356001600160401b03808211156141a357600080fd5b613d4e888389016137aa565b600080604083850312156141c257600080fd5b82356141cd816136a8565b946020939093013593505050565b60008060008060008060008060008060006101608c8e0312156141fd57600080fd5b8b359a5061420d60208d016136bd565b995060408c013598506001600160401b0360608d013581101561422f57600080fd5b61423f8e60608f01358f01613736565b98508060808e0135111561425257600080fd5b6142628e60808f01358f016137aa565b975060a08d0135965060c08d0135955061427e60e08e01613827565b94506101008d01359350806101208e0135111561429a57600080fd5b6142ab8e6101208f01358f016137aa565b9250806101408e013511156142bf57600080fd5b506142d18d6101408e01358e016137aa565b90509295989b509295989b9093969950565b600080600080608085870312156142f957600080fd5b84359350602085013561430b816136a8565b9250604085013591506060850135613ef281613819565b60006020828403121561433457600080fd5b8151610aba81613819565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161437d5761437d614355565b5060010190565b6060815260006143976060830186613a84565b6001600160a01b039490941660208301525060400152919050565b600181811c908216806143c657607f821691505b6020821081036143e657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526021908201527f4f6e6c79206f776e65722c2070726f7669646572206f722064656c65676174656040820152601960fa1b606082015260800190565b9182526001600160a01b0316602082015260400190565b6020808252600a908201526927b7363c9037bbb732b960b11b604082015260600190565b84815283602082015282604082015260806060820152600061448d6080830184613a84565b9695505050505050565b9283526001600160a01b03919091166020830152604082015260600190565b602080825260179082015276496e76616c696420617474726962757465732073697a6560481b604082015260600190565b808201808211156109c8576109c8614355565b9283526001600160a01b039190911660208301521515604082015260600190565b6020808252601e908201527f4f6e6c792063726561746f722063616e2073657420726f79616c746965730000604082015260600190565b60208082526016908201527527b7363c903932b3b4b9ba393c9037b832b930ba37b960511b604082015260600190565b86815285602082015260c0604082015260006145a160c0830187613a84565b82810360608401526145b38187613a84565b608084019590955250506001600160a01b039190911660a090910152949350505050565b8381526060602082015260006145f06060830185613a84565b828103604084015261448d8185613a84565b60006020828403121561461457600080fd5b8151610aba816136a8565b601f82111561105557600081815260208120601f850160051c810160208610156146465750805b601f850160051c820191505b81811015610dbc57828155600101614652565b81516001600160401b0381111561467e5761467e6136cd565b6146928161468c84546143b2565b8461461f565b602080601f8311600181146146c757600084156146af5750858301515b600019600386901b1c1916600185901b178555610dbc565b600085815260208120601f198616915b828110156146f6578886015182559484019460019091019084016146d7565b50858210156147145787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526010908201526f24b73b30b634b210383937bb34b232b960811b604082015260600190565b8381526060602082015260006147676060830185613a84565b9050826040830152949350505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b600060808201868352602060808185015281875180845260a086019150828901935060005b81811015614803578451835293830193918301916001016147e7565b505084810360408601526148178188613ab0565b935050505060018060a01b038316606083015295945050505050565b80820281158282048414176109c8576109c8614355565b60008261486757634e487b7160e01b600052601260045260246000fd5b500490565b84815283602082015260806040820152600061488b6080830185613a84565b905082606083015295945050505050565b634e487b7160e01b600052602160045260246000fd5b868152602081018690526001600160a01b03851660408201526000600d85106148eb57634e487b7160e01b600052602160045260246000fd5b84606083015260c0608083015261490560c0830185613a84565b90508260a0830152979650505050505050565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b81526000835161494a816017850160208801613a60565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161497b816028840160208801613a60565b01602801949350505050565b602081526000610aba6020830184613a84565b6000816149a9576149a9614355565b50600019019056feea695b8992af7d71dabb291973dc379a345aa03c2210a6d8ca05e5059f65687ca2646970667358221220470f5bfe6d921240c90a9aeeb68daccd00346ae1f9aa4a3c0be642bb9c7dbd3f64736f6c63430008110033",
|
|
2472
|
+
"address": "0xCB0A331cB1F57E01FF0FA2d664f2F100081cbc3b",
|
|
2473
|
+
"implementation": "0x64F63f7D6A0Fba059DceF99d1E313C90BdE22505",
|
|
2474
|
+
"version": "v3.5.8",
|
|
2475
|
+
"libraries": {}
|
|
2476
|
+
}
|