@nucypher/shared 0.1.0-rc.3 → 0.1.0-rc.4

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.
Files changed (41) hide show
  1. package/dist/cjs/contracts/ethers-typechain/Coordinator.d.ts +212 -212
  2. package/dist/cjs/contracts/ethers-typechain/GlobalAllowList.d.ts +98 -98
  3. package/dist/cjs/contracts/ethers-typechain/SubscriptionManager.d.ts +71 -71
  4. package/dist/cjs/contracts/ethers-typechain/common.d.ts +3 -3
  5. package/dist/cjs/contracts/ethers-typechain/factories/Coordinator__factory.d.ts +3 -3
  6. package/dist/cjs/contracts/ethers-typechain/factories/Coordinator__factory.js +683 -683
  7. package/dist/cjs/contracts/ethers-typechain/factories/Coordinator__factory.js.map +1 -1
  8. package/dist/cjs/contracts/ethers-typechain/factories/GlobalAllowList__factory.d.ts +3 -3
  9. package/dist/cjs/contracts/ethers-typechain/factories/GlobalAllowList__factory.js +244 -244
  10. package/dist/cjs/contracts/ethers-typechain/factories/GlobalAllowList__factory.js.map +1 -1
  11. package/dist/cjs/contracts/ethers-typechain/factories/SubscriptionManager__factory.d.ts +3 -3
  12. package/dist/cjs/contracts/ethers-typechain/factories/SubscriptionManager__factory.js +229 -229
  13. package/dist/cjs/contracts/ethers-typechain/factories/SubscriptionManager__factory.js.map +1 -1
  14. package/dist/cjs/contracts/ethers-typechain/factories/index.d.ts +3 -3
  15. package/dist/cjs/contracts/ethers-typechain/index.d.ts +7 -7
  16. package/dist/cjs/utils.d.ts +1 -1
  17. package/dist/cjs/utils.js +9 -9
  18. package/dist/cjs/utils.js.map +1 -1
  19. package/dist/es/contracts/ethers-typechain/Coordinator.d.ts +212 -212
  20. package/dist/es/contracts/ethers-typechain/GlobalAllowList.d.ts +98 -98
  21. package/dist/es/contracts/ethers-typechain/SubscriptionManager.d.ts +71 -71
  22. package/dist/es/contracts/ethers-typechain/common.d.ts +3 -3
  23. package/dist/es/contracts/ethers-typechain/factories/Coordinator__factory.d.ts +3 -3
  24. package/dist/es/contracts/ethers-typechain/factories/Coordinator__factory.js +684 -684
  25. package/dist/es/contracts/ethers-typechain/factories/Coordinator__factory.js.map +1 -1
  26. package/dist/es/contracts/ethers-typechain/factories/GlobalAllowList__factory.d.ts +3 -3
  27. package/dist/es/contracts/ethers-typechain/factories/GlobalAllowList__factory.js +245 -245
  28. package/dist/es/contracts/ethers-typechain/factories/GlobalAllowList__factory.js.map +1 -1
  29. package/dist/es/contracts/ethers-typechain/factories/SubscriptionManager__factory.d.ts +3 -3
  30. package/dist/es/contracts/ethers-typechain/factories/SubscriptionManager__factory.js +230 -230
  31. package/dist/es/contracts/ethers-typechain/factories/SubscriptionManager__factory.js.map +1 -1
  32. package/dist/es/contracts/ethers-typechain/factories/index.d.ts +3 -3
  33. package/dist/es/contracts/ethers-typechain/factories/index.js +3 -3
  34. package/dist/es/contracts/ethers-typechain/index.d.ts +7 -7
  35. package/dist/es/contracts/ethers-typechain/index.js +4 -4
  36. package/dist/es/utils.d.ts +1 -1
  37. package/dist/es/utils.js +7 -7
  38. package/dist/es/utils.js.map +1 -1
  39. package/dist/tsconfig.cjs.tsbuildinfo +1 -1
  40. package/dist/tsconfig.es.tsbuildinfo +1 -1
  41. package/package.json +3 -3
@@ -7,522 +7,522 @@ exports.GlobalAllowList__factory = void 0;
7
7
  const ethers_1 = require("ethers");
8
8
  const _abi = [
9
9
  {
10
- type: "constructor",
11
- stateMutability: "nonpayable",
10
+ type: 'constructor',
11
+ stateMutability: 'nonpayable',
12
12
  inputs: [
13
13
  {
14
- name: "_coordinator",
15
- type: "address",
16
- internalType: "contract Coordinator",
14
+ name: '_coordinator',
15
+ type: 'address',
16
+ internalType: 'contract Coordinator',
17
17
  },
18
18
  {
19
- name: "_admin",
20
- type: "address",
21
- internalType: "address",
19
+ name: '_admin',
20
+ type: 'address',
21
+ internalType: 'address',
22
22
  },
23
23
  ],
24
24
  },
25
25
  {
26
- type: "event",
27
- name: "DefaultAdminDelayChangeCanceled",
26
+ type: 'event',
27
+ name: 'DefaultAdminDelayChangeCanceled',
28
28
  inputs: [],
29
29
  anonymous: false,
30
30
  },
31
31
  {
32
- type: "event",
33
- name: "DefaultAdminDelayChangeScheduled",
32
+ type: 'event',
33
+ name: 'DefaultAdminDelayChangeScheduled',
34
34
  inputs: [
35
35
  {
36
- name: "newDelay",
37
- type: "uint48",
38
- internalType: "uint48",
36
+ name: 'newDelay',
37
+ type: 'uint48',
38
+ internalType: 'uint48',
39
39
  indexed: false,
40
40
  },
41
41
  {
42
- name: "effectSchedule",
43
- type: "uint48",
44
- internalType: "uint48",
42
+ name: 'effectSchedule',
43
+ type: 'uint48',
44
+ internalType: 'uint48',
45
45
  indexed: false,
46
46
  },
47
47
  ],
48
48
  anonymous: false,
49
49
  },
50
50
  {
51
- type: "event",
52
- name: "DefaultAdminTransferCanceled",
51
+ type: 'event',
52
+ name: 'DefaultAdminTransferCanceled',
53
53
  inputs: [],
54
54
  anonymous: false,
55
55
  },
56
56
  {
57
- type: "event",
58
- name: "DefaultAdminTransferScheduled",
57
+ type: 'event',
58
+ name: 'DefaultAdminTransferScheduled',
59
59
  inputs: [
60
60
  {
61
- name: "newAdmin",
62
- type: "address",
63
- internalType: "address",
61
+ name: 'newAdmin',
62
+ type: 'address',
63
+ internalType: 'address',
64
64
  indexed: true,
65
65
  },
66
66
  {
67
- name: "acceptSchedule",
68
- type: "uint48",
69
- internalType: "uint48",
67
+ name: 'acceptSchedule',
68
+ type: 'uint48',
69
+ internalType: 'uint48',
70
70
  indexed: false,
71
71
  },
72
72
  ],
73
73
  anonymous: false,
74
74
  },
75
75
  {
76
- type: "event",
77
- name: "RoleAdminChanged",
76
+ type: 'event',
77
+ name: 'RoleAdminChanged',
78
78
  inputs: [
79
79
  {
80
- name: "role",
81
- type: "bytes32",
82
- internalType: "bytes32",
80
+ name: 'role',
81
+ type: 'bytes32',
82
+ internalType: 'bytes32',
83
83
  indexed: true,
84
84
  },
85
85
  {
86
- name: "previousAdminRole",
87
- type: "bytes32",
88
- internalType: "bytes32",
86
+ name: 'previousAdminRole',
87
+ type: 'bytes32',
88
+ internalType: 'bytes32',
89
89
  indexed: true,
90
90
  },
91
91
  {
92
- name: "newAdminRole",
93
- type: "bytes32",
94
- internalType: "bytes32",
92
+ name: 'newAdminRole',
93
+ type: 'bytes32',
94
+ internalType: 'bytes32',
95
95
  indexed: true,
96
96
  },
97
97
  ],
98
98
  anonymous: false,
99
99
  },
100
100
  {
101
- type: "event",
102
- name: "RoleGranted",
101
+ type: 'event',
102
+ name: 'RoleGranted',
103
103
  inputs: [
104
104
  {
105
- name: "role",
106
- type: "bytes32",
107
- internalType: "bytes32",
105
+ name: 'role',
106
+ type: 'bytes32',
107
+ internalType: 'bytes32',
108
108
  indexed: true,
109
109
  },
110
110
  {
111
- name: "account",
112
- type: "address",
113
- internalType: "address",
111
+ name: 'account',
112
+ type: 'address',
113
+ internalType: 'address',
114
114
  indexed: true,
115
115
  },
116
116
  {
117
- name: "sender",
118
- type: "address",
119
- internalType: "address",
117
+ name: 'sender',
118
+ type: 'address',
119
+ internalType: 'address',
120
120
  indexed: true,
121
121
  },
122
122
  ],
123
123
  anonymous: false,
124
124
  },
125
125
  {
126
- type: "event",
127
- name: "RoleRevoked",
126
+ type: 'event',
127
+ name: 'RoleRevoked',
128
128
  inputs: [
129
129
  {
130
- name: "role",
131
- type: "bytes32",
132
- internalType: "bytes32",
130
+ name: 'role',
131
+ type: 'bytes32',
132
+ internalType: 'bytes32',
133
133
  indexed: true,
134
134
  },
135
135
  {
136
- name: "account",
137
- type: "address",
138
- internalType: "address",
136
+ name: 'account',
137
+ type: 'address',
138
+ internalType: 'address',
139
139
  indexed: true,
140
140
  },
141
141
  {
142
- name: "sender",
143
- type: "address",
144
- internalType: "address",
142
+ name: 'sender',
143
+ type: 'address',
144
+ internalType: 'address',
145
145
  indexed: true,
146
146
  },
147
147
  ],
148
148
  anonymous: false,
149
149
  },
150
150
  {
151
- type: "function",
152
- name: "DEFAULT_ADMIN_ROLE",
153
- stateMutability: "view",
151
+ type: 'function',
152
+ name: 'DEFAULT_ADMIN_ROLE',
153
+ stateMutability: 'view',
154
154
  inputs: [],
155
155
  outputs: [
156
156
  {
157
- name: "",
158
- type: "bytes32",
159
- internalType: "bytes32",
157
+ name: '',
158
+ type: 'bytes32',
159
+ internalType: 'bytes32',
160
160
  },
161
161
  ],
162
162
  },
163
163
  {
164
- type: "function",
165
- name: "acceptDefaultAdminTransfer",
166
- stateMutability: "nonpayable",
164
+ type: 'function',
165
+ name: 'acceptDefaultAdminTransfer',
166
+ stateMutability: 'nonpayable',
167
167
  inputs: [],
168
168
  outputs: [],
169
169
  },
170
170
  {
171
- type: "function",
172
- name: "authorize",
173
- stateMutability: "nonpayable",
171
+ type: 'function',
172
+ name: 'authorize',
173
+ stateMutability: 'nonpayable',
174
174
  inputs: [
175
175
  {
176
- name: "ritualId",
177
- type: "uint32",
178
- internalType: "uint32",
176
+ name: 'ritualId',
177
+ type: 'uint32',
178
+ internalType: 'uint32',
179
179
  },
180
180
  {
181
- name: "addresses",
182
- type: "address[]",
183
- internalType: "address[]",
181
+ name: 'addresses',
182
+ type: 'address[]',
183
+ internalType: 'address[]',
184
184
  },
185
185
  ],
186
186
  outputs: [],
187
187
  },
188
188
  {
189
- type: "function",
190
- name: "beginDefaultAdminTransfer",
191
- stateMutability: "nonpayable",
189
+ type: 'function',
190
+ name: 'beginDefaultAdminTransfer',
191
+ stateMutability: 'nonpayable',
192
192
  inputs: [
193
193
  {
194
- name: "newAdmin",
195
- type: "address",
196
- internalType: "address",
194
+ name: 'newAdmin',
195
+ type: 'address',
196
+ internalType: 'address',
197
197
  },
198
198
  ],
199
199
  outputs: [],
200
200
  },
201
201
  {
202
- type: "function",
203
- name: "cancelDefaultAdminTransfer",
204
- stateMutability: "nonpayable",
202
+ type: 'function',
203
+ name: 'cancelDefaultAdminTransfer',
204
+ stateMutability: 'nonpayable',
205
205
  inputs: [],
206
206
  outputs: [],
207
207
  },
208
208
  {
209
- type: "function",
210
- name: "changeDefaultAdminDelay",
211
- stateMutability: "nonpayable",
209
+ type: 'function',
210
+ name: 'changeDefaultAdminDelay',
211
+ stateMutability: 'nonpayable',
212
212
  inputs: [
213
213
  {
214
- name: "newDelay",
215
- type: "uint48",
216
- internalType: "uint48",
214
+ name: 'newDelay',
215
+ type: 'uint48',
216
+ internalType: 'uint48',
217
217
  },
218
218
  ],
219
219
  outputs: [],
220
220
  },
221
221
  {
222
- type: "function",
223
- name: "coordinator",
224
- stateMutability: "view",
222
+ type: 'function',
223
+ name: 'coordinator',
224
+ stateMutability: 'view',
225
225
  inputs: [],
226
226
  outputs: [
227
227
  {
228
- name: "",
229
- type: "address",
230
- internalType: "contract Coordinator",
228
+ name: '',
229
+ type: 'address',
230
+ internalType: 'contract Coordinator',
231
231
  },
232
232
  ],
233
233
  },
234
234
  {
235
- type: "function",
236
- name: "deauthorize",
237
- stateMutability: "nonpayable",
235
+ type: 'function',
236
+ name: 'deauthorize',
237
+ stateMutability: 'nonpayable',
238
238
  inputs: [
239
239
  {
240
- name: "ritualId",
241
- type: "uint32",
242
- internalType: "uint32",
240
+ name: 'ritualId',
241
+ type: 'uint32',
242
+ internalType: 'uint32',
243
243
  },
244
244
  {
245
- name: "addresses",
246
- type: "address[]",
247
- internalType: "address[]",
245
+ name: 'addresses',
246
+ type: 'address[]',
247
+ internalType: 'address[]',
248
248
  },
249
249
  ],
250
250
  outputs: [],
251
251
  },
252
252
  {
253
- type: "function",
254
- name: "defaultAdmin",
255
- stateMutability: "view",
253
+ type: 'function',
254
+ name: 'defaultAdmin',
255
+ stateMutability: 'view',
256
256
  inputs: [],
257
257
  outputs: [
258
258
  {
259
- name: "",
260
- type: "address",
261
- internalType: "address",
259
+ name: '',
260
+ type: 'address',
261
+ internalType: 'address',
262
262
  },
263
263
  ],
264
264
  },
265
265
  {
266
- type: "function",
267
- name: "defaultAdminDelay",
268
- stateMutability: "view",
266
+ type: 'function',
267
+ name: 'defaultAdminDelay',
268
+ stateMutability: 'view',
269
269
  inputs: [],
270
270
  outputs: [
271
271
  {
272
- name: "",
273
- type: "uint48",
274
- internalType: "uint48",
272
+ name: '',
273
+ type: 'uint48',
274
+ internalType: 'uint48',
275
275
  },
276
276
  ],
277
277
  },
278
278
  {
279
- type: "function",
280
- name: "defaultAdminDelayIncreaseWait",
281
- stateMutability: "view",
279
+ type: 'function',
280
+ name: 'defaultAdminDelayIncreaseWait',
281
+ stateMutability: 'view',
282
282
  inputs: [],
283
283
  outputs: [
284
284
  {
285
- name: "",
286
- type: "uint48",
287
- internalType: "uint48",
285
+ name: '',
286
+ type: 'uint48',
287
+ internalType: 'uint48',
288
288
  },
289
289
  ],
290
290
  },
291
291
  {
292
- type: "function",
293
- name: "getRoleAdmin",
294
- stateMutability: "view",
292
+ type: 'function',
293
+ name: 'getRoleAdmin',
294
+ stateMutability: 'view',
295
295
  inputs: [
296
296
  {
297
- name: "role",
298
- type: "bytes32",
299
- internalType: "bytes32",
297
+ name: 'role',
298
+ type: 'bytes32',
299
+ internalType: 'bytes32',
300
300
  },
301
301
  ],
302
302
  outputs: [
303
303
  {
304
- name: "",
305
- type: "bytes32",
306
- internalType: "bytes32",
304
+ name: '',
305
+ type: 'bytes32',
306
+ internalType: 'bytes32',
307
307
  },
308
308
  ],
309
309
  },
310
310
  {
311
- type: "function",
312
- name: "grantRole",
313
- stateMutability: "nonpayable",
311
+ type: 'function',
312
+ name: 'grantRole',
313
+ stateMutability: 'nonpayable',
314
314
  inputs: [
315
315
  {
316
- name: "role",
317
- type: "bytes32",
318
- internalType: "bytes32",
316
+ name: 'role',
317
+ type: 'bytes32',
318
+ internalType: 'bytes32',
319
319
  },
320
320
  {
321
- name: "account",
322
- type: "address",
323
- internalType: "address",
321
+ name: 'account',
322
+ type: 'address',
323
+ internalType: 'address',
324
324
  },
325
325
  ],
326
326
  outputs: [],
327
327
  },
328
328
  {
329
- type: "function",
330
- name: "hasRole",
331
- stateMutability: "view",
329
+ type: 'function',
330
+ name: 'hasRole',
331
+ stateMutability: 'view',
332
332
  inputs: [
333
333
  {
334
- name: "role",
335
- type: "bytes32",
336
- internalType: "bytes32",
334
+ name: 'role',
335
+ type: 'bytes32',
336
+ internalType: 'bytes32',
337
337
  },
338
338
  {
339
- name: "account",
340
- type: "address",
341
- internalType: "address",
339
+ name: 'account',
340
+ type: 'address',
341
+ internalType: 'address',
342
342
  },
343
343
  ],
344
344
  outputs: [
345
345
  {
346
- name: "",
347
- type: "bool",
348
- internalType: "bool",
346
+ name: '',
347
+ type: 'bool',
348
+ internalType: 'bool',
349
349
  },
350
350
  ],
351
351
  },
352
352
  {
353
- type: "function",
354
- name: "isAddressAuthorized",
355
- stateMutability: "view",
353
+ type: 'function',
354
+ name: 'isAddressAuthorized',
355
+ stateMutability: 'view',
356
356
  inputs: [
357
357
  {
358
- name: "ritualId",
359
- type: "uint32",
360
- internalType: "uint32",
358
+ name: 'ritualId',
359
+ type: 'uint32',
360
+ internalType: 'uint32',
361
361
  },
362
362
  {
363
- name: "encryptor",
364
- type: "address",
365
- internalType: "address",
363
+ name: 'encryptor',
364
+ type: 'address',
365
+ internalType: 'address',
366
366
  },
367
367
  ],
368
368
  outputs: [
369
369
  {
370
- name: "",
371
- type: "bool",
372
- internalType: "bool",
370
+ name: '',
371
+ type: 'bool',
372
+ internalType: 'bool',
373
373
  },
374
374
  ],
375
375
  },
376
376
  {
377
- type: "function",
378
- name: "isAuthorized",
379
- stateMutability: "view",
377
+ type: 'function',
378
+ name: 'isAuthorized',
379
+ stateMutability: 'view',
380
380
  inputs: [
381
381
  {
382
- name: "ritualId",
383
- type: "uint32",
384
- internalType: "uint32",
382
+ name: 'ritualId',
383
+ type: 'uint32',
384
+ internalType: 'uint32',
385
385
  },
386
386
  {
387
- name: "evidence",
388
- type: "bytes",
389
- internalType: "bytes",
387
+ name: 'evidence',
388
+ type: 'bytes',
389
+ internalType: 'bytes',
390
390
  },
391
391
  {
392
- name: "ciphertextHeader",
393
- type: "bytes",
394
- internalType: "bytes",
392
+ name: 'ciphertextHeader',
393
+ type: 'bytes',
394
+ internalType: 'bytes',
395
395
  },
396
396
  ],
397
397
  outputs: [
398
398
  {
399
- name: "",
400
- type: "bool",
401
- internalType: "bool",
399
+ name: '',
400
+ type: 'bool',
401
+ internalType: 'bool',
402
402
  },
403
403
  ],
404
404
  },
405
405
  {
406
- type: "function",
407
- name: "owner",
408
- stateMutability: "view",
406
+ type: 'function',
407
+ name: 'owner',
408
+ stateMutability: 'view',
409
409
  inputs: [],
410
410
  outputs: [
411
411
  {
412
- name: "",
413
- type: "address",
414
- internalType: "address",
412
+ name: '',
413
+ type: 'address',
414
+ internalType: 'address',
415
415
  },
416
416
  ],
417
417
  },
418
418
  {
419
- type: "function",
420
- name: "pendingDefaultAdmin",
421
- stateMutability: "view",
419
+ type: 'function',
420
+ name: 'pendingDefaultAdmin',
421
+ stateMutability: 'view',
422
422
  inputs: [],
423
423
  outputs: [
424
424
  {
425
- name: "newAdmin",
426
- type: "address",
427
- internalType: "address",
425
+ name: 'newAdmin',
426
+ type: 'address',
427
+ internalType: 'address',
428
428
  },
429
429
  {
430
- name: "schedule",
431
- type: "uint48",
432
- internalType: "uint48",
430
+ name: 'schedule',
431
+ type: 'uint48',
432
+ internalType: 'uint48',
433
433
  },
434
434
  ],
435
435
  },
436
436
  {
437
- type: "function",
438
- name: "pendingDefaultAdminDelay",
439
- stateMutability: "view",
437
+ type: 'function',
438
+ name: 'pendingDefaultAdminDelay',
439
+ stateMutability: 'view',
440
440
  inputs: [],
441
441
  outputs: [
442
442
  {
443
- name: "newDelay",
444
- type: "uint48",
445
- internalType: "uint48",
443
+ name: 'newDelay',
444
+ type: 'uint48',
445
+ internalType: 'uint48',
446
446
  },
447
447
  {
448
- name: "schedule",
449
- type: "uint48",
450
- internalType: "uint48",
448
+ name: 'schedule',
449
+ type: 'uint48',
450
+ internalType: 'uint48',
451
451
  },
452
452
  ],
453
453
  },
454
454
  {
455
- type: "function",
456
- name: "renounceRole",
457
- stateMutability: "nonpayable",
455
+ type: 'function',
456
+ name: 'renounceRole',
457
+ stateMutability: 'nonpayable',
458
458
  inputs: [
459
459
  {
460
- name: "role",
461
- type: "bytes32",
462
- internalType: "bytes32",
460
+ name: 'role',
461
+ type: 'bytes32',
462
+ internalType: 'bytes32',
463
463
  },
464
464
  {
465
- name: "account",
466
- type: "address",
467
- internalType: "address",
465
+ name: 'account',
466
+ type: 'address',
467
+ internalType: 'address',
468
468
  },
469
469
  ],
470
470
  outputs: [],
471
471
  },
472
472
  {
473
- type: "function",
474
- name: "revokeRole",
475
- stateMutability: "nonpayable",
473
+ type: 'function',
474
+ name: 'revokeRole',
475
+ stateMutability: 'nonpayable',
476
476
  inputs: [
477
477
  {
478
- name: "role",
479
- type: "bytes32",
480
- internalType: "bytes32",
478
+ name: 'role',
479
+ type: 'bytes32',
480
+ internalType: 'bytes32',
481
481
  },
482
482
  {
483
- name: "account",
484
- type: "address",
485
- internalType: "address",
483
+ name: 'account',
484
+ type: 'address',
485
+ internalType: 'address',
486
486
  },
487
487
  ],
488
488
  outputs: [],
489
489
  },
490
490
  {
491
- type: "function",
492
- name: "rollbackDefaultAdminDelay",
493
- stateMutability: "nonpayable",
491
+ type: 'function',
492
+ name: 'rollbackDefaultAdminDelay',
493
+ stateMutability: 'nonpayable',
494
494
  inputs: [],
495
495
  outputs: [],
496
496
  },
497
497
  {
498
- type: "function",
499
- name: "setCoordinator",
500
- stateMutability: "nonpayable",
498
+ type: 'function',
499
+ name: 'setCoordinator',
500
+ stateMutability: 'nonpayable',
501
501
  inputs: [
502
502
  {
503
- name: "_coordinator",
504
- type: "address",
505
- internalType: "contract Coordinator",
503
+ name: '_coordinator',
504
+ type: 'address',
505
+ internalType: 'contract Coordinator',
506
506
  },
507
507
  ],
508
508
  outputs: [],
509
509
  },
510
510
  {
511
- type: "function",
512
- name: "supportsInterface",
513
- stateMutability: "view",
511
+ type: 'function',
512
+ name: 'supportsInterface',
513
+ stateMutability: 'view',
514
514
  inputs: [
515
515
  {
516
- name: "interfaceId",
517
- type: "bytes4",
518
- internalType: "bytes4",
516
+ name: 'interfaceId',
517
+ type: 'bytes4',
518
+ internalType: 'bytes4',
519
519
  },
520
520
  ],
521
521
  outputs: [
522
522
  {
523
- name: "",
524
- type: "bool",
525
- internalType: "bool",
523
+ name: '',
524
+ type: 'bool',
525
+ internalType: 'bool',
526
526
  },
527
527
  ],
528
528
  },