mech-client 0.3.0__py3-none-any.whl → 0.6.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/BalanceTrackerNvmSubscriptionToken.json +660 -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/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 +3 -9
- mech_client/interact.py +14 -39
- mech_client/marketplace_interact.py +199 -156
- mech_client/mech_tool_management.py +11 -5
- mech_client/subgraph.py +21 -35
- mech_client/wss.py +7 -6
- {mech_client-0.3.0.dist-info → mech_client-0.6.0.dist-info}/METADATA +45 -13
- {mech_client-0.3.0.dist-info → mech_client-0.6.0.dist-info}/RECORD +33 -13
- {mech_client-0.3.0.dist-info → mech_client-0.6.0.dist-info}/LICENSE +0 -0
- {mech_client-0.3.0.dist-info → mech_client-0.6.0.dist-info}/WHEEL +0 -0
- {mech_client-0.3.0.dist-info → mech_client-0.6.0.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,587 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "NeverminedConfig",
|
|
3
|
+
"abi": [
|
|
4
|
+
{
|
|
5
|
+
"anonymous": false,
|
|
6
|
+
"inputs": [
|
|
7
|
+
{
|
|
8
|
+
"indexed": false,
|
|
9
|
+
"internalType": "uint8",
|
|
10
|
+
"name": "version",
|
|
11
|
+
"type": "uint8"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"name": "Initialized",
|
|
15
|
+
"type": "event"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"anonymous": false,
|
|
19
|
+
"inputs": [
|
|
20
|
+
{
|
|
21
|
+
"indexed": true,
|
|
22
|
+
"internalType": "address",
|
|
23
|
+
"name": "_whoChanged",
|
|
24
|
+
"type": "address"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"indexed": true,
|
|
28
|
+
"internalType": "bytes32",
|
|
29
|
+
"name": "_parameter",
|
|
30
|
+
"type": "bytes32"
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"name": "NeverminedConfigChange",
|
|
34
|
+
"type": "event"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"anonymous": false,
|
|
38
|
+
"inputs": [
|
|
39
|
+
{
|
|
40
|
+
"indexed": true,
|
|
41
|
+
"internalType": "address",
|
|
42
|
+
"name": "previousOwner",
|
|
43
|
+
"type": "address"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"indexed": true,
|
|
47
|
+
"internalType": "address",
|
|
48
|
+
"name": "newOwner",
|
|
49
|
+
"type": "address"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"name": "OwnershipTransferred",
|
|
53
|
+
"type": "event"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"anonymous": false,
|
|
57
|
+
"inputs": [
|
|
58
|
+
{
|
|
59
|
+
"indexed": true,
|
|
60
|
+
"internalType": "bytes32",
|
|
61
|
+
"name": "role",
|
|
62
|
+
"type": "bytes32"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"indexed": true,
|
|
66
|
+
"internalType": "bytes32",
|
|
67
|
+
"name": "previousAdminRole",
|
|
68
|
+
"type": "bytes32"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"indexed": true,
|
|
72
|
+
"internalType": "bytes32",
|
|
73
|
+
"name": "newAdminRole",
|
|
74
|
+
"type": "bytes32"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"name": "RoleAdminChanged",
|
|
78
|
+
"type": "event"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"anonymous": false,
|
|
82
|
+
"inputs": [
|
|
83
|
+
{
|
|
84
|
+
"indexed": true,
|
|
85
|
+
"internalType": "bytes32",
|
|
86
|
+
"name": "role",
|
|
87
|
+
"type": "bytes32"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"indexed": true,
|
|
91
|
+
"internalType": "address",
|
|
92
|
+
"name": "account",
|
|
93
|
+
"type": "address"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"indexed": true,
|
|
97
|
+
"internalType": "address",
|
|
98
|
+
"name": "sender",
|
|
99
|
+
"type": "address"
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"name": "RoleGranted",
|
|
103
|
+
"type": "event"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"anonymous": false,
|
|
107
|
+
"inputs": [
|
|
108
|
+
{
|
|
109
|
+
"indexed": true,
|
|
110
|
+
"internalType": "bytes32",
|
|
111
|
+
"name": "role",
|
|
112
|
+
"type": "bytes32"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"indexed": true,
|
|
116
|
+
"internalType": "address",
|
|
117
|
+
"name": "account",
|
|
118
|
+
"type": "address"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"indexed": true,
|
|
122
|
+
"internalType": "address",
|
|
123
|
+
"name": "sender",
|
|
124
|
+
"type": "address"
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
"name": "RoleRevoked",
|
|
128
|
+
"type": "event"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"inputs": [],
|
|
132
|
+
"name": "DEFAULT_ADMIN_ROLE",
|
|
133
|
+
"outputs": [
|
|
134
|
+
{
|
|
135
|
+
"internalType": "bytes32",
|
|
136
|
+
"name": "",
|
|
137
|
+
"type": "bytes32"
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"stateMutability": "view",
|
|
141
|
+
"type": "function",
|
|
142
|
+
"signature": "0xa217fddf"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"inputs": [],
|
|
146
|
+
"name": "GOVERNOR_ROLE",
|
|
147
|
+
"outputs": [
|
|
148
|
+
{
|
|
149
|
+
"internalType": "bytes32",
|
|
150
|
+
"name": "",
|
|
151
|
+
"type": "bytes32"
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
"stateMutability": "view",
|
|
155
|
+
"type": "function",
|
|
156
|
+
"signature": "0xccc57490"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"inputs": [],
|
|
160
|
+
"name": "NVM_OPERATOR_ROLE",
|
|
161
|
+
"outputs": [
|
|
162
|
+
{
|
|
163
|
+
"internalType": "bytes32",
|
|
164
|
+
"name": "",
|
|
165
|
+
"type": "bytes32"
|
|
166
|
+
}
|
|
167
|
+
],
|
|
168
|
+
"stateMutability": "view",
|
|
169
|
+
"type": "function",
|
|
170
|
+
"signature": "0x85be5724"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"inputs": [],
|
|
174
|
+
"name": "feeReceiver",
|
|
175
|
+
"outputs": [
|
|
176
|
+
{
|
|
177
|
+
"internalType": "address",
|
|
178
|
+
"name": "",
|
|
179
|
+
"type": "address"
|
|
180
|
+
}
|
|
181
|
+
],
|
|
182
|
+
"stateMutability": "view",
|
|
183
|
+
"type": "function",
|
|
184
|
+
"signature": "0xb3f00674"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"inputs": [],
|
|
188
|
+
"name": "getFeeReceiver",
|
|
189
|
+
"outputs": [
|
|
190
|
+
{
|
|
191
|
+
"internalType": "address",
|
|
192
|
+
"name": "",
|
|
193
|
+
"type": "address"
|
|
194
|
+
}
|
|
195
|
+
],
|
|
196
|
+
"stateMutability": "view",
|
|
197
|
+
"type": "function",
|
|
198
|
+
"signature": "0xe8a35392"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"inputs": [],
|
|
202
|
+
"name": "getMarketplaceFee",
|
|
203
|
+
"outputs": [
|
|
204
|
+
{
|
|
205
|
+
"internalType": "uint256",
|
|
206
|
+
"name": "",
|
|
207
|
+
"type": "uint256"
|
|
208
|
+
}
|
|
209
|
+
],
|
|
210
|
+
"stateMutability": "view",
|
|
211
|
+
"type": "function",
|
|
212
|
+
"signature": "0x26a7b37b"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"inputs": [],
|
|
216
|
+
"name": "getProvenanceStorage",
|
|
217
|
+
"outputs": [
|
|
218
|
+
{
|
|
219
|
+
"internalType": "bool",
|
|
220
|
+
"name": "",
|
|
221
|
+
"type": "bool"
|
|
222
|
+
}
|
|
223
|
+
],
|
|
224
|
+
"stateMutability": "view",
|
|
225
|
+
"type": "function",
|
|
226
|
+
"signature": "0x3b7f8923"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"inputs": [
|
|
230
|
+
{
|
|
231
|
+
"internalType": "bytes32",
|
|
232
|
+
"name": "role",
|
|
233
|
+
"type": "bytes32"
|
|
234
|
+
}
|
|
235
|
+
],
|
|
236
|
+
"name": "getRoleAdmin",
|
|
237
|
+
"outputs": [
|
|
238
|
+
{
|
|
239
|
+
"internalType": "bytes32",
|
|
240
|
+
"name": "",
|
|
241
|
+
"type": "bytes32"
|
|
242
|
+
}
|
|
243
|
+
],
|
|
244
|
+
"stateMutability": "view",
|
|
245
|
+
"type": "function",
|
|
246
|
+
"signature": "0x248a9ca3"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"inputs": [],
|
|
250
|
+
"name": "getTrustedForwarder",
|
|
251
|
+
"outputs": [
|
|
252
|
+
{
|
|
253
|
+
"internalType": "address",
|
|
254
|
+
"name": "",
|
|
255
|
+
"type": "address"
|
|
256
|
+
}
|
|
257
|
+
],
|
|
258
|
+
"stateMutability": "view",
|
|
259
|
+
"type": "function",
|
|
260
|
+
"signature": "0xce1b815f"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"inputs": [
|
|
264
|
+
{
|
|
265
|
+
"internalType": "address",
|
|
266
|
+
"name": "_address",
|
|
267
|
+
"type": "address"
|
|
268
|
+
}
|
|
269
|
+
],
|
|
270
|
+
"name": "grantNVMOperatorRole",
|
|
271
|
+
"outputs": [],
|
|
272
|
+
"stateMutability": "nonpayable",
|
|
273
|
+
"type": "function",
|
|
274
|
+
"signature": "0x23463136"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"inputs": [
|
|
278
|
+
{
|
|
279
|
+
"internalType": "bytes32",
|
|
280
|
+
"name": "role",
|
|
281
|
+
"type": "bytes32"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"internalType": "address",
|
|
285
|
+
"name": "account",
|
|
286
|
+
"type": "address"
|
|
287
|
+
}
|
|
288
|
+
],
|
|
289
|
+
"name": "grantRole",
|
|
290
|
+
"outputs": [],
|
|
291
|
+
"stateMutability": "nonpayable",
|
|
292
|
+
"type": "function",
|
|
293
|
+
"signature": "0x2f2ff15d"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"inputs": [
|
|
297
|
+
{
|
|
298
|
+
"internalType": "address",
|
|
299
|
+
"name": "_address",
|
|
300
|
+
"type": "address"
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
"name": "hasNVMOperatorRole",
|
|
304
|
+
"outputs": [
|
|
305
|
+
{
|
|
306
|
+
"internalType": "bool",
|
|
307
|
+
"name": "",
|
|
308
|
+
"type": "bool"
|
|
309
|
+
}
|
|
310
|
+
],
|
|
311
|
+
"stateMutability": "view",
|
|
312
|
+
"type": "function",
|
|
313
|
+
"signature": "0x108762d0"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"inputs": [
|
|
317
|
+
{
|
|
318
|
+
"internalType": "bytes32",
|
|
319
|
+
"name": "role",
|
|
320
|
+
"type": "bytes32"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"internalType": "address",
|
|
324
|
+
"name": "account",
|
|
325
|
+
"type": "address"
|
|
326
|
+
}
|
|
327
|
+
],
|
|
328
|
+
"name": "hasRole",
|
|
329
|
+
"outputs": [
|
|
330
|
+
{
|
|
331
|
+
"internalType": "bool",
|
|
332
|
+
"name": "",
|
|
333
|
+
"type": "bool"
|
|
334
|
+
}
|
|
335
|
+
],
|
|
336
|
+
"stateMutability": "view",
|
|
337
|
+
"type": "function",
|
|
338
|
+
"signature": "0x91d14854"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"inputs": [
|
|
342
|
+
{
|
|
343
|
+
"internalType": "address",
|
|
344
|
+
"name": "_owner",
|
|
345
|
+
"type": "address"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"internalType": "address",
|
|
349
|
+
"name": "_governor",
|
|
350
|
+
"type": "address"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"internalType": "bool",
|
|
354
|
+
"name": "_provenanceOff",
|
|
355
|
+
"type": "bool"
|
|
356
|
+
}
|
|
357
|
+
],
|
|
358
|
+
"name": "initialize",
|
|
359
|
+
"outputs": [],
|
|
360
|
+
"stateMutability": "nonpayable",
|
|
361
|
+
"type": "function",
|
|
362
|
+
"signature": "0xe4bbb5a8"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"inputs": [
|
|
366
|
+
{
|
|
367
|
+
"internalType": "address",
|
|
368
|
+
"name": "_address",
|
|
369
|
+
"type": "address"
|
|
370
|
+
}
|
|
371
|
+
],
|
|
372
|
+
"name": "isGovernor",
|
|
373
|
+
"outputs": [
|
|
374
|
+
{
|
|
375
|
+
"internalType": "bool",
|
|
376
|
+
"name": "",
|
|
377
|
+
"type": "bool"
|
|
378
|
+
}
|
|
379
|
+
],
|
|
380
|
+
"stateMutability": "view",
|
|
381
|
+
"type": "function",
|
|
382
|
+
"signature": "0xe43581b8"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"inputs": [],
|
|
386
|
+
"name": "marketplaceFee",
|
|
387
|
+
"outputs": [
|
|
388
|
+
{
|
|
389
|
+
"internalType": "uint256",
|
|
390
|
+
"name": "",
|
|
391
|
+
"type": "uint256"
|
|
392
|
+
}
|
|
393
|
+
],
|
|
394
|
+
"stateMutability": "view",
|
|
395
|
+
"type": "function",
|
|
396
|
+
"signature": "0x6a166964"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"inputs": [],
|
|
400
|
+
"name": "owner",
|
|
401
|
+
"outputs": [
|
|
402
|
+
{
|
|
403
|
+
"internalType": "address",
|
|
404
|
+
"name": "",
|
|
405
|
+
"type": "address"
|
|
406
|
+
}
|
|
407
|
+
],
|
|
408
|
+
"stateMutability": "view",
|
|
409
|
+
"type": "function",
|
|
410
|
+
"signature": "0x8da5cb5b"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"inputs": [],
|
|
414
|
+
"name": "provenanceOff",
|
|
415
|
+
"outputs": [
|
|
416
|
+
{
|
|
417
|
+
"internalType": "bool",
|
|
418
|
+
"name": "",
|
|
419
|
+
"type": "bool"
|
|
420
|
+
}
|
|
421
|
+
],
|
|
422
|
+
"stateMutability": "view",
|
|
423
|
+
"type": "function",
|
|
424
|
+
"signature": "0x83859d57"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"inputs": [],
|
|
428
|
+
"name": "renounceOwnership",
|
|
429
|
+
"outputs": [],
|
|
430
|
+
"stateMutability": "nonpayable",
|
|
431
|
+
"type": "function",
|
|
432
|
+
"signature": "0x715018a6"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"inputs": [
|
|
436
|
+
{
|
|
437
|
+
"internalType": "bytes32",
|
|
438
|
+
"name": "role",
|
|
439
|
+
"type": "bytes32"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"internalType": "address",
|
|
443
|
+
"name": "account",
|
|
444
|
+
"type": "address"
|
|
445
|
+
}
|
|
446
|
+
],
|
|
447
|
+
"name": "renounceRole",
|
|
448
|
+
"outputs": [],
|
|
449
|
+
"stateMutability": "nonpayable",
|
|
450
|
+
"type": "function",
|
|
451
|
+
"signature": "0x36568abe"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"inputs": [
|
|
455
|
+
{
|
|
456
|
+
"internalType": "address",
|
|
457
|
+
"name": "_address",
|
|
458
|
+
"type": "address"
|
|
459
|
+
}
|
|
460
|
+
],
|
|
461
|
+
"name": "revokeNVMOperatorRole",
|
|
462
|
+
"outputs": [],
|
|
463
|
+
"stateMutability": "nonpayable",
|
|
464
|
+
"type": "function",
|
|
465
|
+
"signature": "0x306d7316"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"inputs": [
|
|
469
|
+
{
|
|
470
|
+
"internalType": "bytes32",
|
|
471
|
+
"name": "role",
|
|
472
|
+
"type": "bytes32"
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"internalType": "address",
|
|
476
|
+
"name": "account",
|
|
477
|
+
"type": "address"
|
|
478
|
+
}
|
|
479
|
+
],
|
|
480
|
+
"name": "revokeRole",
|
|
481
|
+
"outputs": [],
|
|
482
|
+
"stateMutability": "nonpayable",
|
|
483
|
+
"type": "function",
|
|
484
|
+
"signature": "0xd547741f"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"inputs": [
|
|
488
|
+
{
|
|
489
|
+
"internalType": "address",
|
|
490
|
+
"name": "_address",
|
|
491
|
+
"type": "address"
|
|
492
|
+
}
|
|
493
|
+
],
|
|
494
|
+
"name": "setGovernor",
|
|
495
|
+
"outputs": [],
|
|
496
|
+
"stateMutability": "nonpayable",
|
|
497
|
+
"type": "function",
|
|
498
|
+
"signature": "0xc42cf535"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"inputs": [
|
|
502
|
+
{
|
|
503
|
+
"internalType": "uint256",
|
|
504
|
+
"name": "_marketplaceFee",
|
|
505
|
+
"type": "uint256"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"internalType": "address",
|
|
509
|
+
"name": "_feeReceiver",
|
|
510
|
+
"type": "address"
|
|
511
|
+
}
|
|
512
|
+
],
|
|
513
|
+
"name": "setMarketplaceFees",
|
|
514
|
+
"outputs": [],
|
|
515
|
+
"stateMutability": "nonpayable",
|
|
516
|
+
"type": "function",
|
|
517
|
+
"signature": "0xaa32ed60"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"inputs": [
|
|
521
|
+
{
|
|
522
|
+
"internalType": "address",
|
|
523
|
+
"name": "forwarder",
|
|
524
|
+
"type": "address"
|
|
525
|
+
}
|
|
526
|
+
],
|
|
527
|
+
"name": "setTrustedForwarder",
|
|
528
|
+
"outputs": [],
|
|
529
|
+
"stateMutability": "nonpayable",
|
|
530
|
+
"type": "function",
|
|
531
|
+
"signature": "0xda742228"
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"inputs": [
|
|
535
|
+
{
|
|
536
|
+
"internalType": "bytes4",
|
|
537
|
+
"name": "interfaceId",
|
|
538
|
+
"type": "bytes4"
|
|
539
|
+
}
|
|
540
|
+
],
|
|
541
|
+
"name": "supportsInterface",
|
|
542
|
+
"outputs": [
|
|
543
|
+
{
|
|
544
|
+
"internalType": "bool",
|
|
545
|
+
"name": "",
|
|
546
|
+
"type": "bool"
|
|
547
|
+
}
|
|
548
|
+
],
|
|
549
|
+
"stateMutability": "view",
|
|
550
|
+
"type": "function",
|
|
551
|
+
"signature": "0x01ffc9a7"
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"inputs": [
|
|
555
|
+
{
|
|
556
|
+
"internalType": "address",
|
|
557
|
+
"name": "newOwner",
|
|
558
|
+
"type": "address"
|
|
559
|
+
}
|
|
560
|
+
],
|
|
561
|
+
"name": "transferOwnership",
|
|
562
|
+
"outputs": [],
|
|
563
|
+
"stateMutability": "nonpayable",
|
|
564
|
+
"type": "function",
|
|
565
|
+
"signature": "0xf2fde38b"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"inputs": [],
|
|
569
|
+
"name": "trustedForwarder",
|
|
570
|
+
"outputs": [
|
|
571
|
+
{
|
|
572
|
+
"internalType": "address",
|
|
573
|
+
"name": "",
|
|
574
|
+
"type": "address"
|
|
575
|
+
}
|
|
576
|
+
],
|
|
577
|
+
"stateMutability": "view",
|
|
578
|
+
"type": "function",
|
|
579
|
+
"signature": "0x7da0a877"
|
|
580
|
+
}
|
|
581
|
+
],
|
|
582
|
+
"bytecode": "0x608060405234801561001057600080fd5b506110dc806100206000396000f3fe608060405234801561001057600080fd5b50600436106101545760003560e01c806301ffc9a714610159578063108762d0146101815780632346313614610194578063248a9ca3146101a957806326a7b37b146101ca5780632f2ff15d146101d2578063306d7316146101e557806336568abe146101f85780633b7f89231461020b5780636a1669641461021e578063715018a6146102275780637da0a8771461022f57806383859d571461025a57806385be57241461026e5780638da5cb5b1461028357806391d148541461028b578063a217fddf1461029e578063aa32ed60146102a6578063b3f00674146102b9578063c42cf535146102cc578063ccc57490146102df578063ce1b815f146102f4578063d547741f14610305578063da74222814610318578063e43581b81461032b578063e4bbb5a81461033e578063e8a3539214610351578063f2fde38b14610362575b600080fd5b61016c610167366004610d89565b610375565b60405190151581526020015b60405180910390f35b61016c61018f366004610dcf565b6103ac565b6101a76101a2366004610dcf565b6103c6565b005b6101bc6101b7366004610dea565b6103e9565b604051908152602001610178565b60c9546101bc565b6101a76101e0366004610e03565b6103fe565b6101a76101f3366004610dcf565b61041f565b6101a7610206366004610e03565b61043f565b60ca54600160a01b900460ff161561016c565b6101bc60c95481565b6101a76104c2565b60cb54610242906001600160a01b031681565b6040516001600160a01b039091168152602001610178565b60ca5461016c90600160a01b900460ff1681565b6101bc60008051602061104783398151915281565b6102426104d6565b61016c610299366004610e03565b6104e5565b6101bc600081565b6101a76102b4366004610e03565b610510565b60ca54610242906001600160a01b031681565b6101a76102da366004610dcf565b6106c1565b6101bc60008051602061106783398151915281565b60cb546001600160a01b0316610242565b6101a7610313366004610e03565b6106e1565b6101a7610326366004610dcf565b6106fd565b61016c610339366004610dcf565b610755565b6101a761034c366004610e2f565b61076f565b60ca546001600160a01b0316610242565b6101a7610370366004610dcf565b6108ce565b60006001600160e01b03198216637965db0b60e01b14806103a657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60006103a6600080516020611047833981519152836104e5565b6103ce610944565b6103e6600080516020611047833981519152826109a3565b50565b60009081526097602052604090206001015490565b610407826103e9565b61041081610a29565b61041a83836109a3565b505050565b610427610944565b6103e660008051602061104783398151915282610a33565b6001600160a01b03811633146104b45760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6104be8282610a33565b5050565b6104ca610944565b6104d46000610a9a565b565b6033546001600160a01b031690565b60009182526097602090815260408084206001600160a01b0393909316845291905290205460ff1690565b33610529600080516020611067833981519152826104e5565b6105455760405162461bcd60e51b81526004016104ab90610e7b565b620f42408311156105b85760405162461bcd60e51b815260206004820152603760248201527f4e657665726d696e6564436f6e6669673a20466565206d7573742062652062656044820152761d1dd9595b880c08185b99080c4c0c081c195c98d95b9d604a1b60648201526084016104ab565b8215610626576001600160a01b0382166106265760405162461bcd60e51b815260206004820152602960248201527f4e657665726d696e6564436f6e6669673a2052656365697665722063616e206e60448201526806f74206265203078360bc1b60648201526084016104ab565b60c983905560ca80546001600160a01b0319166001600160a01b0384161790556040517fee265260b6f7400b6f80ca3c64267ab53846ce48af5bef74bf25f5cae0d58edb90339060008051602061108783398151915290600090a36040517f389e7cbf003e878980985f1a72c90dbe5b79c41a44fb160ac26b4fef395d091690339060008051602061108783398151915290600090a3505050565b6106c9610944565b6103e6600080516020611067833981519152826109a3565b6106ea826103e9565b6106f381610a29565b61041a8383610a33565b33610716600080516020611067833981519152826104e5565b6107325760405162461bcd60e51b81526004016104ab90610e7b565b5060cb80546001600160a01b0319166001600160a01b0392909216919091179055565b60006103a6600080516020611067833981519152836104e5565b600054610100900460ff161580801561078f5750600054600160ff909116105b806107a95750303b1580156107a9575060005460ff166001145b61080c5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016104ab565b6000805460ff19166001179055801561082f576000805461ff0019166101001790555b610837610aec565b610840846108ce565b610848610b1b565b610853600085610b42565b61086b60008051602061106783398151915284610b42565b60ca805460ff60a01b1916600160a01b8415150217905580156108c8576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50505050565b6108d6610944565b6001600160a01b03811661093b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ab565b6103e681610a9a565b3361094d6104d6565b6001600160a01b0316146104d45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104ab565b6109ad82826104e5565b6104be5760008281526097602090815260408083206001600160a01b03851684529091529020805460ff191660011790556109e53390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6103e68133610b4c565b610a3d82826104e5565b156104be5760008281526097602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16610b135760405162461bcd60e51b81526004016104ab90610eb2565b6104d4610ba5565b600054610100900460ff166104d45760405162461bcd60e51b81526004016104ab90610eb2565b6104be82826109a3565b610b5682826104e5565b6104be57610b6381610bd5565b610b6e836020610be7565b604051602001610b7f929190610f21565b60408051601f198184030181529082905262461bcd60e51b82526104ab91600401610f90565b600054610100900460ff16610bcc5760405162461bcd60e51b81526004016104ab90610eb2565b6104d433610a9a565b60606103a66001600160a01b03831660145b60606000610bf6836002610fd9565b610c01906002610ff0565b6001600160401b03811115610c1857610c18611003565b6040519080825280601f01601f191660200182016040528015610c42576020820181803683370190505b509050600360fc1b81600081518110610c5d57610c5d611019565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610c8c57610c8c611019565b60200101906001600160f81b031916908160001a9053506000610cb0846002610fd9565b610cbb906001610ff0565b90505b6001811115610d33576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610cef57610cef611019565b1a60f81b828281518110610d0557610d05611019565b60200101906001600160f81b031916908160001a90535060049490941c93610d2c8161102f565b9050610cbe565b508315610d825760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016104ab565b9392505050565b600060208284031215610d9b57600080fd5b81356001600160e01b031981168114610d8257600080fd5b80356001600160a01b0381168114610dca57600080fd5b919050565b600060208284031215610de157600080fd5b610d8282610db3565b600060208284031215610dfc57600080fd5b5035919050565b60008060408385031215610e1657600080fd5b82359150610e2660208401610db3565b90509250929050565b600080600060608486031215610e4457600080fd5b610e4d84610db3565b9250610e5b60208501610db3565b915060408401358015158114610e7057600080fd5b809150509250925092565b6020808252601f908201527f4e657665726d696e6564436f6e6669673a204f6e6c7920676f7665726e6f7200604082015260600190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60005b83811015610f18578181015183820152602001610f00565b50506000910152565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260008351610f53816017850160208801610efd565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351610f84816028840160208801610efd565b01602801949350505050565b6020815260008251806020840152610faf816040850160208701610efd565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176103a6576103a6610fc3565b808201808211156103a6576103a6610fc3565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008161103e5761103e610fc3565b50600019019056fef7a17991623d7e30ebf9bd089b2f4dcf33b0aa34727454bfa3dbc351ed7d683584dc795734050671741a791b768e85599401a837fc8df342a6e85d5dd29f8dad3b507973096b005f8c3169023d77692d542071db559c003da6fe0ef6c679c47da2646970667358221220052815d0642f125a7a8654b55c294da0ac7a152d12525d5756d1bf0d0e35f3cc64736f6c63430008110033",
|
|
583
|
+
"address": "0x384E332B6F2b66EC66dFC01D362f6fc62D3D0fE1",
|
|
584
|
+
"implementation": "0x08e5917ca065D74BB5d989B4861ca25897738bbF",
|
|
585
|
+
"version": "v3.5.7",
|
|
586
|
+
"libraries": {}
|
|
587
|
+
}
|