@1delta/abis 0.0.15 → 0.0.16

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.
@@ -0,0 +1,1363 @@
1
+ // Full Moolah Vault ABI — Lista DAO's Morpho-fork. Diverges from standard
2
+ // MetaMorpho on governance: roles via OpenZeppelin AccessControlEnumerable,
3
+ // no `owner()` / `curator()` / `guardian()` / `timelock()` getters. The
4
+ // on-chain Lista vault fetcher reads `name / symbol / decimals /
5
+ // totalAssets / totalSupply / fee / feeRecipient / CURATOR` then resolves
6
+ // the curator address through `getRoleMember(CURATOR_ROLE, 0)`.
7
+ export const MoolahVaultAbi = [
8
+ {
9
+ inputs: [
10
+ { internalType: 'address', name: 'moolah', type: 'address' },
11
+ { internalType: 'address', name: '_asset', type: 'address' },
12
+ ],
13
+ stateMutability: 'nonpayable',
14
+ type: 'constructor',
15
+ },
16
+ { inputs: [], name: 'AccessControlBadConfirmation', type: 'error' },
17
+ {
18
+ inputs: [
19
+ { internalType: 'address', name: 'account', type: 'address' },
20
+ { internalType: 'bytes32', name: 'neededRole', type: 'bytes32' },
21
+ ],
22
+ name: 'AccessControlUnauthorizedAccount',
23
+ type: 'error',
24
+ },
25
+ {
26
+ inputs: [{ internalType: 'address', name: 'target', type: 'address' }],
27
+ name: 'AddressEmptyCode',
28
+ type: 'error',
29
+ },
30
+ { inputs: [], name: 'AllCapsReached', type: 'error' },
31
+ { inputs: [], name: 'AlreadyPending', type: 'error' },
32
+ { inputs: [], name: 'AlreadySet', type: 'error' },
33
+ {
34
+ inputs: [{ internalType: 'Id', name: 'id', type: 'bytes32' }],
35
+ name: 'DuplicateMarket',
36
+ type: 'error',
37
+ },
38
+ { inputs: [], name: 'ECDSAInvalidSignature', type: 'error' },
39
+ {
40
+ inputs: [{ internalType: 'uint256', name: 'length', type: 'uint256' }],
41
+ name: 'ECDSAInvalidSignatureLength',
42
+ type: 'error',
43
+ },
44
+ {
45
+ inputs: [{ internalType: 'bytes32', name: 's', type: 'bytes32' }],
46
+ name: 'ECDSAInvalidSignatureS',
47
+ type: 'error',
48
+ },
49
+ {
50
+ inputs: [
51
+ { internalType: 'address', name: 'implementation', type: 'address' },
52
+ ],
53
+ name: 'ERC1967InvalidImplementation',
54
+ type: 'error',
55
+ },
56
+ { inputs: [], name: 'ERC1967NonPayable', type: 'error' },
57
+ {
58
+ inputs: [
59
+ { internalType: 'address', name: 'spender', type: 'address' },
60
+ { internalType: 'uint256', name: 'allowance', type: 'uint256' },
61
+ { internalType: 'uint256', name: 'needed', type: 'uint256' },
62
+ ],
63
+ name: 'ERC20InsufficientAllowance',
64
+ type: 'error',
65
+ },
66
+ {
67
+ inputs: [
68
+ { internalType: 'address', name: 'sender', type: 'address' },
69
+ { internalType: 'uint256', name: 'balance', type: 'uint256' },
70
+ { internalType: 'uint256', name: 'needed', type: 'uint256' },
71
+ ],
72
+ name: 'ERC20InsufficientBalance',
73
+ type: 'error',
74
+ },
75
+ {
76
+ inputs: [{ internalType: 'address', name: 'approver', type: 'address' }],
77
+ name: 'ERC20InvalidApprover',
78
+ type: 'error',
79
+ },
80
+ {
81
+ inputs: [{ internalType: 'address', name: 'receiver', type: 'address' }],
82
+ name: 'ERC20InvalidReceiver',
83
+ type: 'error',
84
+ },
85
+ {
86
+ inputs: [{ internalType: 'address', name: 'sender', type: 'address' }],
87
+ name: 'ERC20InvalidSender',
88
+ type: 'error',
89
+ },
90
+ {
91
+ inputs: [{ internalType: 'address', name: 'spender', type: 'address' }],
92
+ name: 'ERC20InvalidSpender',
93
+ type: 'error',
94
+ },
95
+ {
96
+ inputs: [{ internalType: 'uint256', name: 'deadline', type: 'uint256' }],
97
+ name: 'ERC2612ExpiredSignature',
98
+ type: 'error',
99
+ },
100
+ {
101
+ inputs: [
102
+ { internalType: 'address', name: 'signer', type: 'address' },
103
+ { internalType: 'address', name: 'owner', type: 'address' },
104
+ ],
105
+ name: 'ERC2612InvalidSigner',
106
+ type: 'error',
107
+ },
108
+ {
109
+ inputs: [
110
+ { internalType: 'address', name: 'receiver', type: 'address' },
111
+ { internalType: 'uint256', name: 'assets', type: 'uint256' },
112
+ { internalType: 'uint256', name: 'max', type: 'uint256' },
113
+ ],
114
+ name: 'ERC4626ExceededMaxDeposit',
115
+ type: 'error',
116
+ },
117
+ {
118
+ inputs: [
119
+ { internalType: 'address', name: 'receiver', type: 'address' },
120
+ { internalType: 'uint256', name: 'shares', type: 'uint256' },
121
+ { internalType: 'uint256', name: 'max', type: 'uint256' },
122
+ ],
123
+ name: 'ERC4626ExceededMaxMint',
124
+ type: 'error',
125
+ },
126
+ {
127
+ inputs: [
128
+ { internalType: 'address', name: 'owner', type: 'address' },
129
+ { internalType: 'uint256', name: 'shares', type: 'uint256' },
130
+ { internalType: 'uint256', name: 'max', type: 'uint256' },
131
+ ],
132
+ name: 'ERC4626ExceededMaxRedeem',
133
+ type: 'error',
134
+ },
135
+ {
136
+ inputs: [
137
+ { internalType: 'address', name: 'owner', type: 'address' },
138
+ { internalType: 'uint256', name: 'assets', type: 'uint256' },
139
+ { internalType: 'uint256', name: 'max', type: 'uint256' },
140
+ ],
141
+ name: 'ERC4626ExceededMaxWithdraw',
142
+ type: 'error',
143
+ },
144
+ { inputs: [], name: 'FailedCall', type: 'error' },
145
+ {
146
+ inputs: [{ internalType: 'Id', name: 'id', type: 'bytes32' }],
147
+ name: 'InconsistentAsset',
148
+ type: 'error',
149
+ },
150
+ { inputs: [], name: 'InconsistentReallocation', type: 'error' },
151
+ {
152
+ inputs: [
153
+ { internalType: 'address', name: 'account', type: 'address' },
154
+ { internalType: 'uint256', name: 'currentNonce', type: 'uint256' },
155
+ ],
156
+ name: 'InvalidAccountNonce',
157
+ type: 'error',
158
+ },
159
+ { inputs: [], name: 'InvalidInitialization', type: 'error' },
160
+ {
161
+ inputs: [{ internalType: 'Id', name: 'id', type: 'bytes32' }],
162
+ name: 'InvalidMarketRemovalNonZeroCap',
163
+ type: 'error',
164
+ },
165
+ {
166
+ inputs: [{ internalType: 'Id', name: 'id', type: 'bytes32' }],
167
+ name: 'InvalidMarketRemovalNonZeroSupply',
168
+ type: 'error',
169
+ },
170
+ {
171
+ inputs: [{ internalType: 'Id', name: 'id', type: 'bytes32' }],
172
+ name: 'InvalidMarketRemovalTimelockNotElapsed',
173
+ type: 'error',
174
+ },
175
+ { inputs: [], name: 'MarketNotCreated', type: 'error' },
176
+ {
177
+ inputs: [{ internalType: 'Id', name: 'id', type: 'bytes32' }],
178
+ name: 'MarketNotEnabled',
179
+ type: 'error',
180
+ },
181
+ { inputs: [], name: 'MaxFeeExceeded', type: 'error' },
182
+ { inputs: [], name: 'MaxQueueLengthExceeded', type: 'error' },
183
+ { inputs: [], name: 'NonZeroCap', type: 'error' },
184
+ { inputs: [], name: 'NotEnoughLiquidity', type: 'error' },
185
+ { inputs: [], name: 'NotInitializing', type: 'error' },
186
+ { inputs: [], name: 'NotProvider', type: 'error' },
187
+ { inputs: [], name: 'NotSet', type: 'error' },
188
+ { inputs: [], name: 'NotWhiteList', type: 'error' },
189
+ { inputs: [], name: 'PendingRemoval', type: 'error' },
190
+ { inputs: [], name: 'RevokeBotFailed', type: 'error' },
191
+ {
192
+ inputs: [
193
+ { internalType: 'uint8', name: 'bits', type: 'uint8' },
194
+ { internalType: 'uint256', name: 'value', type: 'uint256' },
195
+ ],
196
+ name: 'SafeCastOverflowedUintDowncast',
197
+ type: 'error',
198
+ },
199
+ {
200
+ inputs: [{ internalType: 'address', name: 'token', type: 'address' }],
201
+ name: 'SafeERC20FailedOperation',
202
+ type: 'error',
203
+ },
204
+ { inputs: [], name: 'SetBotFailed', type: 'error' },
205
+ {
206
+ inputs: [{ internalType: 'Id', name: 'id', type: 'bytes32' }],
207
+ name: 'SupplyCapExceeded',
208
+ type: 'error',
209
+ },
210
+ { inputs: [], name: 'TokenMismatch', type: 'error' },
211
+ { inputs: [], name: 'UUPSUnauthorizedCallContext', type: 'error' },
212
+ {
213
+ inputs: [{ internalType: 'bytes32', name: 'slot', type: 'bytes32' }],
214
+ name: 'UUPSUnsupportedProxiableUUID',
215
+ type: 'error',
216
+ },
217
+ {
218
+ inputs: [{ internalType: 'Id', name: 'id', type: 'bytes32' }],
219
+ name: 'UnauthorizedMarket',
220
+ type: 'error',
221
+ },
222
+ { inputs: [], name: 'ZeroAddress', type: 'error' },
223
+ { inputs: [], name: 'ZeroFeeRecipient', type: 'error' },
224
+ {
225
+ anonymous: false,
226
+ inputs: [
227
+ {
228
+ indexed: false,
229
+ internalType: 'uint256',
230
+ name: 'newTotalAssets',
231
+ type: 'uint256',
232
+ },
233
+ {
234
+ indexed: false,
235
+ internalType: 'uint256',
236
+ name: 'feeShares',
237
+ type: 'uint256',
238
+ },
239
+ ],
240
+ name: 'AccrueInterest',
241
+ type: 'event',
242
+ },
243
+ {
244
+ anonymous: false,
245
+ inputs: [
246
+ { indexed: true, internalType: 'address', name: 'owner', type: 'address' },
247
+ {
248
+ indexed: true,
249
+ internalType: 'address',
250
+ name: 'spender',
251
+ type: 'address',
252
+ },
253
+ {
254
+ indexed: false,
255
+ internalType: 'uint256',
256
+ name: 'value',
257
+ type: 'uint256',
258
+ },
259
+ ],
260
+ name: 'Approval',
261
+ type: 'event',
262
+ },
263
+ {
264
+ anonymous: false,
265
+ inputs: [
266
+ {
267
+ indexed: true,
268
+ internalType: 'address',
269
+ name: 'sender',
270
+ type: 'address',
271
+ },
272
+ { indexed: true, internalType: 'address', name: 'owner', type: 'address' },
273
+ {
274
+ indexed: false,
275
+ internalType: 'uint256',
276
+ name: 'assets',
277
+ type: 'uint256',
278
+ },
279
+ {
280
+ indexed: false,
281
+ internalType: 'uint256',
282
+ name: 'shares',
283
+ type: 'uint256',
284
+ },
285
+ ],
286
+ name: 'Deposit',
287
+ type: 'event',
288
+ },
289
+ {
290
+ anonymous: false,
291
+ inputs: [],
292
+ name: 'EIP712DomainChanged',
293
+ type: 'event',
294
+ },
295
+ {
296
+ anonymous: false,
297
+ inputs: [
298
+ {
299
+ indexed: true,
300
+ internalType: 'address',
301
+ name: 'provider',
302
+ type: 'address',
303
+ },
304
+ ],
305
+ name: 'InitProvider',
306
+ type: 'event',
307
+ },
308
+ {
309
+ anonymous: false,
310
+ inputs: [
311
+ {
312
+ indexed: false,
313
+ internalType: 'uint64',
314
+ name: 'version',
315
+ type: 'uint64',
316
+ },
317
+ ],
318
+ name: 'Initialized',
319
+ type: 'event',
320
+ },
321
+ {
322
+ anonymous: false,
323
+ inputs: [
324
+ {
325
+ indexed: true,
326
+ internalType: 'address',
327
+ name: 'caller',
328
+ type: 'address',
329
+ },
330
+ { indexed: true, internalType: 'Id', name: 'id', type: 'bytes32' },
331
+ {
332
+ indexed: false,
333
+ internalType: 'uint256',
334
+ name: 'suppliedAssets',
335
+ type: 'uint256',
336
+ },
337
+ {
338
+ indexed: false,
339
+ internalType: 'uint256',
340
+ name: 'suppliedShares',
341
+ type: 'uint256',
342
+ },
343
+ ],
344
+ name: 'ReallocateSupply',
345
+ type: 'event',
346
+ },
347
+ {
348
+ anonymous: false,
349
+ inputs: [
350
+ {
351
+ indexed: true,
352
+ internalType: 'address',
353
+ name: 'caller',
354
+ type: 'address',
355
+ },
356
+ { indexed: true, internalType: 'Id', name: 'id', type: 'bytes32' },
357
+ {
358
+ indexed: false,
359
+ internalType: 'uint256',
360
+ name: 'withdrawnAssets',
361
+ type: 'uint256',
362
+ },
363
+ {
364
+ indexed: false,
365
+ internalType: 'uint256',
366
+ name: 'withdrawnShares',
367
+ type: 'uint256',
368
+ },
369
+ ],
370
+ name: 'ReallocateWithdraw',
371
+ type: 'event',
372
+ },
373
+ {
374
+ anonymous: false,
375
+ inputs: [
376
+ { indexed: true, internalType: 'bytes32', name: 'role', type: 'bytes32' },
377
+ {
378
+ indexed: true,
379
+ internalType: 'bytes32',
380
+ name: 'previousAdminRole',
381
+ type: 'bytes32',
382
+ },
383
+ {
384
+ indexed: true,
385
+ internalType: 'bytes32',
386
+ name: 'newAdminRole',
387
+ type: 'bytes32',
388
+ },
389
+ ],
390
+ name: 'RoleAdminChanged',
391
+ type: 'event',
392
+ },
393
+ {
394
+ anonymous: false,
395
+ inputs: [
396
+ { indexed: true, internalType: 'bytes32', name: 'role', type: 'bytes32' },
397
+ {
398
+ indexed: true,
399
+ internalType: 'address',
400
+ name: 'account',
401
+ type: 'address',
402
+ },
403
+ {
404
+ indexed: true,
405
+ internalType: 'address',
406
+ name: 'sender',
407
+ type: 'address',
408
+ },
409
+ ],
410
+ name: 'RoleGranted',
411
+ type: 'event',
412
+ },
413
+ {
414
+ anonymous: false,
415
+ inputs: [
416
+ { indexed: true, internalType: 'bytes32', name: 'role', type: 'bytes32' },
417
+ {
418
+ indexed: true,
419
+ internalType: 'address',
420
+ name: 'account',
421
+ type: 'address',
422
+ },
423
+ {
424
+ indexed: true,
425
+ internalType: 'address',
426
+ name: 'sender',
427
+ type: 'address',
428
+ },
429
+ ],
430
+ name: 'RoleRevoked',
431
+ type: 'event',
432
+ },
433
+ {
434
+ anonymous: false,
435
+ inputs: [
436
+ {
437
+ indexed: true,
438
+ internalType: 'address',
439
+ name: 'caller',
440
+ type: 'address',
441
+ },
442
+ { indexed: true, internalType: 'Id', name: 'id', type: 'bytes32' },
443
+ { indexed: false, internalType: 'uint256', name: 'cap', type: 'uint256' },
444
+ ],
445
+ name: 'SetCap',
446
+ type: 'event',
447
+ },
448
+ {
449
+ anonymous: false,
450
+ inputs: [
451
+ {
452
+ indexed: true,
453
+ internalType: 'address',
454
+ name: 'caller',
455
+ type: 'address',
456
+ },
457
+ {
458
+ indexed: false,
459
+ internalType: 'uint256',
460
+ name: 'newFee',
461
+ type: 'uint256',
462
+ },
463
+ ],
464
+ name: 'SetFee',
465
+ type: 'event',
466
+ },
467
+ {
468
+ anonymous: false,
469
+ inputs: [
470
+ {
471
+ indexed: true,
472
+ internalType: 'address',
473
+ name: 'newFeeRecipient',
474
+ type: 'address',
475
+ },
476
+ ],
477
+ name: 'SetFeeRecipient',
478
+ type: 'event',
479
+ },
480
+ {
481
+ anonymous: false,
482
+ inputs: [
483
+ {
484
+ indexed: true,
485
+ internalType: 'address',
486
+ name: 'newSkimRecipient',
487
+ type: 'address',
488
+ },
489
+ ],
490
+ name: 'SetSkimRecipient',
491
+ type: 'event',
492
+ },
493
+ {
494
+ anonymous: false,
495
+ inputs: [
496
+ {
497
+ indexed: true,
498
+ internalType: 'address',
499
+ name: 'caller',
500
+ type: 'address',
501
+ },
502
+ {
503
+ indexed: false,
504
+ internalType: 'Id[]',
505
+ name: 'newSupplyQueue',
506
+ type: 'bytes32[]',
507
+ },
508
+ ],
509
+ name: 'SetSupplyQueue',
510
+ type: 'event',
511
+ },
512
+ {
513
+ anonymous: false,
514
+ inputs: [
515
+ {
516
+ indexed: true,
517
+ internalType: 'address',
518
+ name: 'account',
519
+ type: 'address',
520
+ },
521
+ { indexed: false, internalType: 'bool', name: 'enabled', type: 'bool' },
522
+ ],
523
+ name: 'SetWhiteList',
524
+ type: 'event',
525
+ },
526
+ {
527
+ anonymous: false,
528
+ inputs: [
529
+ {
530
+ indexed: true,
531
+ internalType: 'address',
532
+ name: 'caller',
533
+ type: 'address',
534
+ },
535
+ {
536
+ indexed: false,
537
+ internalType: 'Id[]',
538
+ name: 'newWithdrawQueue',
539
+ type: 'bytes32[]',
540
+ },
541
+ ],
542
+ name: 'SetWithdrawQueue',
543
+ type: 'event',
544
+ },
545
+ {
546
+ anonymous: false,
547
+ inputs: [
548
+ {
549
+ indexed: true,
550
+ internalType: 'address',
551
+ name: 'caller',
552
+ type: 'address',
553
+ },
554
+ { indexed: true, internalType: 'address', name: 'token', type: 'address' },
555
+ {
556
+ indexed: false,
557
+ internalType: 'uint256',
558
+ name: 'amount',
559
+ type: 'uint256',
560
+ },
561
+ ],
562
+ name: 'Skim',
563
+ type: 'event',
564
+ },
565
+ {
566
+ anonymous: false,
567
+ inputs: [
568
+ { indexed: true, internalType: 'address', name: 'from', type: 'address' },
569
+ { indexed: true, internalType: 'address', name: 'to', type: 'address' },
570
+ {
571
+ indexed: false,
572
+ internalType: 'uint256',
573
+ name: 'value',
574
+ type: 'uint256',
575
+ },
576
+ ],
577
+ name: 'Transfer',
578
+ type: 'event',
579
+ },
580
+ {
581
+ anonymous: false,
582
+ inputs: [
583
+ {
584
+ indexed: false,
585
+ internalType: 'uint256',
586
+ name: 'updatedTotalAssets',
587
+ type: 'uint256',
588
+ },
589
+ ],
590
+ name: 'UpdateLastTotalAssets',
591
+ type: 'event',
592
+ },
593
+ {
594
+ anonymous: false,
595
+ inputs: [
596
+ {
597
+ indexed: true,
598
+ internalType: 'address',
599
+ name: 'implementation',
600
+ type: 'address',
601
+ },
602
+ ],
603
+ name: 'Upgraded',
604
+ type: 'event',
605
+ },
606
+ {
607
+ anonymous: false,
608
+ inputs: [
609
+ {
610
+ indexed: true,
611
+ internalType: 'address',
612
+ name: 'sender',
613
+ type: 'address',
614
+ },
615
+ {
616
+ indexed: true,
617
+ internalType: 'address',
618
+ name: 'receiver',
619
+ type: 'address',
620
+ },
621
+ { indexed: true, internalType: 'address', name: 'owner', type: 'address' },
622
+ {
623
+ indexed: false,
624
+ internalType: 'uint256',
625
+ name: 'assets',
626
+ type: 'uint256',
627
+ },
628
+ {
629
+ indexed: false,
630
+ internalType: 'uint256',
631
+ name: 'shares',
632
+ type: 'uint256',
633
+ },
634
+ ],
635
+ name: 'Withdraw',
636
+ type: 'event',
637
+ },
638
+ {
639
+ inputs: [],
640
+ name: 'ALLOCATOR',
641
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
642
+ stateMutability: 'view',
643
+ type: 'function',
644
+ },
645
+ {
646
+ inputs: [],
647
+ name: 'BOT',
648
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
649
+ stateMutability: 'view',
650
+ type: 'function',
651
+ },
652
+ {
653
+ inputs: [],
654
+ name: 'CURATOR',
655
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
656
+ stateMutability: 'view',
657
+ type: 'function',
658
+ },
659
+ {
660
+ inputs: [],
661
+ name: 'DECIMALS_OFFSET',
662
+ outputs: [{ internalType: 'uint8', name: '', type: 'uint8' }],
663
+ stateMutability: 'view',
664
+ type: 'function',
665
+ },
666
+ {
667
+ inputs: [],
668
+ name: 'DEFAULT_ADMIN_ROLE',
669
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
670
+ stateMutability: 'view',
671
+ type: 'function',
672
+ },
673
+ {
674
+ inputs: [],
675
+ name: 'DOMAIN_SEPARATOR',
676
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
677
+ stateMutability: 'view',
678
+ type: 'function',
679
+ },
680
+ {
681
+ inputs: [],
682
+ name: 'MANAGER',
683
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
684
+ stateMutability: 'view',
685
+ type: 'function',
686
+ },
687
+ {
688
+ inputs: [],
689
+ name: 'MOOLAH',
690
+ outputs: [
691
+ { internalType: 'contract IMoolah', name: '', type: 'address' },
692
+ ],
693
+ stateMutability: 'view',
694
+ type: 'function',
695
+ },
696
+ {
697
+ inputs: [],
698
+ name: 'UPGRADE_INTERFACE_VERSION',
699
+ outputs: [{ internalType: 'string', name: '', type: 'string' }],
700
+ stateMutability: 'view',
701
+ type: 'function',
702
+ },
703
+ {
704
+ inputs: [
705
+ { internalType: 'address', name: 'owner', type: 'address' },
706
+ { internalType: 'address', name: 'spender', type: 'address' },
707
+ ],
708
+ name: 'allowance',
709
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
710
+ stateMutability: 'view',
711
+ type: 'function',
712
+ },
713
+ {
714
+ inputs: [
715
+ { internalType: 'address', name: 'spender', type: 'address' },
716
+ { internalType: 'uint256', name: 'value', type: 'uint256' },
717
+ ],
718
+ name: 'approve',
719
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
720
+ stateMutability: 'nonpayable',
721
+ type: 'function',
722
+ },
723
+ {
724
+ inputs: [],
725
+ name: 'asset',
726
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
727
+ stateMutability: 'view',
728
+ type: 'function',
729
+ },
730
+ {
731
+ inputs: [{ internalType: 'address', name: 'account', type: 'address' }],
732
+ name: 'balanceOf',
733
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
734
+ stateMutability: 'view',
735
+ type: 'function',
736
+ },
737
+ {
738
+ inputs: [{ internalType: 'Id', name: '', type: 'bytes32' }],
739
+ name: 'config',
740
+ outputs: [
741
+ { internalType: 'uint184', name: 'cap', type: 'uint184' },
742
+ { internalType: 'bool', name: 'enabled', type: 'bool' },
743
+ { internalType: 'uint64', name: 'removableAt', type: 'uint64' },
744
+ ],
745
+ stateMutability: 'view',
746
+ type: 'function',
747
+ },
748
+ {
749
+ inputs: [{ internalType: 'uint256', name: 'shares', type: 'uint256' }],
750
+ name: 'convertToAssets',
751
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
752
+ stateMutability: 'view',
753
+ type: 'function',
754
+ },
755
+ {
756
+ inputs: [{ internalType: 'uint256', name: 'assets', type: 'uint256' }],
757
+ name: 'convertToShares',
758
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
759
+ stateMutability: 'view',
760
+ type: 'function',
761
+ },
762
+ {
763
+ inputs: [],
764
+ name: 'decimals',
765
+ outputs: [{ internalType: 'uint8', name: '', type: 'uint8' }],
766
+ stateMutability: 'view',
767
+ type: 'function',
768
+ },
769
+ {
770
+ inputs: [
771
+ { internalType: 'uint256', name: 'assets', type: 'uint256' },
772
+ { internalType: 'address', name: 'receiver', type: 'address' },
773
+ ],
774
+ name: 'deposit',
775
+ outputs: [{ internalType: 'uint256', name: 'shares', type: 'uint256' }],
776
+ stateMutability: 'nonpayable',
777
+ type: 'function',
778
+ },
779
+ {
780
+ inputs: [],
781
+ name: 'eip712Domain',
782
+ outputs: [
783
+ { internalType: 'bytes1', name: 'fields', type: 'bytes1' },
784
+ { internalType: 'string', name: 'name', type: 'string' },
785
+ { internalType: 'string', name: 'version', type: 'string' },
786
+ { internalType: 'uint256', name: 'chainId', type: 'uint256' },
787
+ {
788
+ internalType: 'address',
789
+ name: 'verifyingContract',
790
+ type: 'address',
791
+ },
792
+ { internalType: 'bytes32', name: 'salt', type: 'bytes32' },
793
+ { internalType: 'uint256[]', name: 'extensions', type: 'uint256[]' },
794
+ ],
795
+ stateMutability: 'view',
796
+ type: 'function',
797
+ },
798
+ {
799
+ inputs: [],
800
+ name: 'fee',
801
+ outputs: [{ internalType: 'uint96', name: '', type: 'uint96' }],
802
+ stateMutability: 'view',
803
+ type: 'function',
804
+ },
805
+ {
806
+ inputs: [],
807
+ name: 'feeRecipient',
808
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
809
+ stateMutability: 'view',
810
+ type: 'function',
811
+ },
812
+ {
813
+ inputs: [{ internalType: 'bytes32', name: 'role', type: 'bytes32' }],
814
+ name: 'getRoleAdmin',
815
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
816
+ stateMutability: 'view',
817
+ type: 'function',
818
+ },
819
+ {
820
+ inputs: [
821
+ { internalType: 'bytes32', name: 'role', type: 'bytes32' },
822
+ { internalType: 'uint256', name: 'index', type: 'uint256' },
823
+ ],
824
+ name: 'getRoleMember',
825
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
826
+ stateMutability: 'view',
827
+ type: 'function',
828
+ },
829
+ {
830
+ inputs: [{ internalType: 'bytes32', name: 'role', type: 'bytes32' }],
831
+ name: 'getRoleMemberCount',
832
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
833
+ stateMutability: 'view',
834
+ type: 'function',
835
+ },
836
+ {
837
+ inputs: [{ internalType: 'bytes32', name: 'role', type: 'bytes32' }],
838
+ name: 'getRoleMembers',
839
+ outputs: [{ internalType: 'address[]', name: '', type: 'address[]' }],
840
+ stateMutability: 'view',
841
+ type: 'function',
842
+ },
843
+ {
844
+ inputs: [],
845
+ name: 'getWhiteList',
846
+ outputs: [{ internalType: 'address[]', name: '', type: 'address[]' }],
847
+ stateMutability: 'view',
848
+ type: 'function',
849
+ },
850
+ {
851
+ inputs: [
852
+ { internalType: 'bytes32', name: 'role', type: 'bytes32' },
853
+ { internalType: 'address', name: 'account', type: 'address' },
854
+ ],
855
+ name: 'grantRole',
856
+ outputs: [],
857
+ stateMutability: 'nonpayable',
858
+ type: 'function',
859
+ },
860
+ {
861
+ inputs: [
862
+ { internalType: 'bytes32', name: 'role', type: 'bytes32' },
863
+ { internalType: 'address', name: 'account', type: 'address' },
864
+ ],
865
+ name: 'hasRole',
866
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
867
+ stateMutability: 'view',
868
+ type: 'function',
869
+ },
870
+ {
871
+ inputs: [
872
+ { internalType: 'address', name: 'admin', type: 'address' },
873
+ { internalType: 'address', name: 'manager', type: 'address' },
874
+ { internalType: 'address', name: '_asset', type: 'address' },
875
+ { internalType: 'string', name: '_name', type: 'string' },
876
+ { internalType: 'string', name: '_symbol', type: 'string' },
877
+ ],
878
+ name: 'initialize',
879
+ outputs: [],
880
+ stateMutability: 'nonpayable',
881
+ type: 'function',
882
+ },
883
+ {
884
+ inputs: [{ internalType: 'address', name: 'account', type: 'address' }],
885
+ name: 'isWhiteList',
886
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
887
+ stateMutability: 'view',
888
+ type: 'function',
889
+ },
890
+ {
891
+ inputs: [],
892
+ name: 'lastTotalAssets',
893
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
894
+ stateMutability: 'view',
895
+ type: 'function',
896
+ },
897
+ {
898
+ inputs: [{ internalType: 'address', name: '', type: 'address' }],
899
+ name: 'maxDeposit',
900
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
901
+ stateMutability: 'view',
902
+ type: 'function',
903
+ },
904
+ {
905
+ inputs: [{ internalType: 'address', name: '', type: 'address' }],
906
+ name: 'maxMint',
907
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
908
+ stateMutability: 'view',
909
+ type: 'function',
910
+ },
911
+ {
912
+ inputs: [{ internalType: 'address', name: 'owner', type: 'address' }],
913
+ name: 'maxRedeem',
914
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
915
+ stateMutability: 'view',
916
+ type: 'function',
917
+ },
918
+ {
919
+ inputs: [{ internalType: 'address', name: 'owner', type: 'address' }],
920
+ name: 'maxWithdraw',
921
+ outputs: [{ internalType: 'uint256', name: 'assets', type: 'uint256' }],
922
+ stateMutability: 'view',
923
+ type: 'function',
924
+ },
925
+ {
926
+ inputs: [
927
+ { internalType: 'uint256', name: 'shares', type: 'uint256' },
928
+ { internalType: 'address', name: 'receiver', type: 'address' },
929
+ ],
930
+ name: 'mint',
931
+ outputs: [{ internalType: 'uint256', name: 'assets', type: 'uint256' }],
932
+ stateMutability: 'nonpayable',
933
+ type: 'function',
934
+ },
935
+ {
936
+ inputs: [],
937
+ name: 'name',
938
+ outputs: [{ internalType: 'string', name: '', type: 'string' }],
939
+ stateMutability: 'view',
940
+ type: 'function',
941
+ },
942
+ {
943
+ inputs: [{ internalType: 'address', name: 'owner', type: 'address' }],
944
+ name: 'nonces',
945
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
946
+ stateMutability: 'view',
947
+ type: 'function',
948
+ },
949
+ {
950
+ inputs: [
951
+ { internalType: 'address', name: 'owner', type: 'address' },
952
+ { internalType: 'address', name: 'spender', type: 'address' },
953
+ { internalType: 'uint256', name: 'value', type: 'uint256' },
954
+ { internalType: 'uint256', name: 'deadline', type: 'uint256' },
955
+ { internalType: 'uint8', name: 'v', type: 'uint8' },
956
+ { internalType: 'bytes32', name: 'r', type: 'bytes32' },
957
+ { internalType: 'bytes32', name: 's', type: 'bytes32' },
958
+ ],
959
+ name: 'permit',
960
+ outputs: [],
961
+ stateMutability: 'nonpayable',
962
+ type: 'function',
963
+ },
964
+ {
965
+ inputs: [{ internalType: 'uint256', name: 'assets', type: 'uint256' }],
966
+ name: 'previewDeposit',
967
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
968
+ stateMutability: 'view',
969
+ type: 'function',
970
+ },
971
+ {
972
+ inputs: [{ internalType: 'uint256', name: 'shares', type: 'uint256' }],
973
+ name: 'previewMint',
974
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
975
+ stateMutability: 'view',
976
+ type: 'function',
977
+ },
978
+ {
979
+ inputs: [{ internalType: 'uint256', name: 'shares', type: 'uint256' }],
980
+ name: 'previewRedeem',
981
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
982
+ stateMutability: 'view',
983
+ type: 'function',
984
+ },
985
+ {
986
+ inputs: [{ internalType: 'uint256', name: 'assets', type: 'uint256' }],
987
+ name: 'previewWithdraw',
988
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
989
+ stateMutability: 'view',
990
+ type: 'function',
991
+ },
992
+ {
993
+ inputs: [],
994
+ name: 'provider',
995
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
996
+ stateMutability: 'view',
997
+ type: 'function',
998
+ },
999
+ {
1000
+ inputs: [],
1001
+ name: 'proxiableUUID',
1002
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
1003
+ stateMutability: 'view',
1004
+ type: 'function',
1005
+ },
1006
+ {
1007
+ inputs: [
1008
+ {
1009
+ components: [
1010
+ {
1011
+ components: [
1012
+ {
1013
+ internalType: 'address',
1014
+ name: 'loanToken',
1015
+ type: 'address',
1016
+ },
1017
+ {
1018
+ internalType: 'address',
1019
+ name: 'collateralToken',
1020
+ type: 'address',
1021
+ },
1022
+ { internalType: 'address', name: 'oracle', type: 'address' },
1023
+ { internalType: 'address', name: 'irm', type: 'address' },
1024
+ { internalType: 'uint256', name: 'lltv', type: 'uint256' },
1025
+ ],
1026
+ internalType: 'struct MarketParams',
1027
+ name: 'marketParams',
1028
+ type: 'tuple',
1029
+ },
1030
+ { internalType: 'uint256', name: 'assets', type: 'uint256' },
1031
+ ],
1032
+ internalType: 'struct MarketAllocation[]',
1033
+ name: 'allocations',
1034
+ type: 'tuple[]',
1035
+ },
1036
+ ],
1037
+ name: 'reallocate',
1038
+ outputs: [],
1039
+ stateMutability: 'nonpayable',
1040
+ type: 'function',
1041
+ },
1042
+ {
1043
+ inputs: [
1044
+ { internalType: 'uint256', name: 'shares', type: 'uint256' },
1045
+ { internalType: 'address', name: 'receiver', type: 'address' },
1046
+ { internalType: 'address', name: 'owner', type: 'address' },
1047
+ ],
1048
+ name: 'redeem',
1049
+ outputs: [{ internalType: 'uint256', name: 'assets', type: 'uint256' }],
1050
+ stateMutability: 'nonpayable',
1051
+ type: 'function',
1052
+ },
1053
+ {
1054
+ inputs: [
1055
+ { internalType: 'uint256', name: 'shares', type: 'uint256' },
1056
+ { internalType: 'address', name: 'owner', type: 'address' },
1057
+ { internalType: 'address', name: 'sender', type: 'address' },
1058
+ ],
1059
+ name: 'redeemFor',
1060
+ outputs: [{ internalType: 'uint256', name: 'assets', type: 'uint256' }],
1061
+ stateMutability: 'nonpayable',
1062
+ type: 'function',
1063
+ },
1064
+ {
1065
+ inputs: [
1066
+ { internalType: 'bytes32', name: 'role', type: 'bytes32' },
1067
+ {
1068
+ internalType: 'address',
1069
+ name: 'callerConfirmation',
1070
+ type: 'address',
1071
+ },
1072
+ ],
1073
+ name: 'renounceRole',
1074
+ outputs: [],
1075
+ stateMutability: 'nonpayable',
1076
+ type: 'function',
1077
+ },
1078
+ {
1079
+ inputs: [{ internalType: 'address', name: '_address', type: 'address' }],
1080
+ name: 'revokeBotRole',
1081
+ outputs: [],
1082
+ stateMutability: 'nonpayable',
1083
+ type: 'function',
1084
+ },
1085
+ {
1086
+ inputs: [
1087
+ { internalType: 'bytes32', name: 'role', type: 'bytes32' },
1088
+ { internalType: 'address', name: 'account', type: 'address' },
1089
+ ],
1090
+ name: 'revokeRole',
1091
+ outputs: [],
1092
+ stateMutability: 'nonpayable',
1093
+ type: 'function',
1094
+ },
1095
+ {
1096
+ inputs: [{ internalType: 'address', name: '_address', type: 'address' }],
1097
+ name: 'setBotRole',
1098
+ outputs: [],
1099
+ stateMutability: 'nonpayable',
1100
+ type: 'function',
1101
+ },
1102
+ {
1103
+ inputs: [
1104
+ {
1105
+ components: [
1106
+ { internalType: 'address', name: 'loanToken', type: 'address' },
1107
+ {
1108
+ internalType: 'address',
1109
+ name: 'collateralToken',
1110
+ type: 'address',
1111
+ },
1112
+ { internalType: 'address', name: 'oracle', type: 'address' },
1113
+ { internalType: 'address', name: 'irm', type: 'address' },
1114
+ { internalType: 'uint256', name: 'lltv', type: 'uint256' },
1115
+ ],
1116
+ internalType: 'struct MarketParams',
1117
+ name: 'marketParams',
1118
+ type: 'tuple',
1119
+ },
1120
+ { internalType: 'uint256', name: 'newSupplyCap', type: 'uint256' },
1121
+ ],
1122
+ name: 'setCap',
1123
+ outputs: [],
1124
+ stateMutability: 'nonpayable',
1125
+ type: 'function',
1126
+ },
1127
+ {
1128
+ inputs: [{ internalType: 'uint256', name: 'newFee', type: 'uint256' }],
1129
+ name: 'setFee',
1130
+ outputs: [],
1131
+ stateMutability: 'nonpayable',
1132
+ type: 'function',
1133
+ },
1134
+ {
1135
+ inputs: [
1136
+ { internalType: 'address', name: 'newFeeRecipient', type: 'address' },
1137
+ ],
1138
+ name: 'setFeeRecipient',
1139
+ outputs: [],
1140
+ stateMutability: 'nonpayable',
1141
+ type: 'function',
1142
+ },
1143
+ {
1144
+ inputs: [
1145
+ {
1146
+ components: [
1147
+ { internalType: 'address', name: 'loanToken', type: 'address' },
1148
+ {
1149
+ internalType: 'address',
1150
+ name: 'collateralToken',
1151
+ type: 'address',
1152
+ },
1153
+ { internalType: 'address', name: 'oracle', type: 'address' },
1154
+ { internalType: 'address', name: 'irm', type: 'address' },
1155
+ { internalType: 'uint256', name: 'lltv', type: 'uint256' },
1156
+ ],
1157
+ internalType: 'struct MarketParams',
1158
+ name: 'marketParams',
1159
+ type: 'tuple',
1160
+ },
1161
+ ],
1162
+ name: 'setMarketRemoval',
1163
+ outputs: [],
1164
+ stateMutability: 'nonpayable',
1165
+ type: 'function',
1166
+ },
1167
+ {
1168
+ inputs: [{ internalType: 'string', name: 'newName', type: 'string' }],
1169
+ name: 'setName',
1170
+ outputs: [],
1171
+ stateMutability: 'nonpayable',
1172
+ type: 'function',
1173
+ },
1174
+ {
1175
+ inputs: [{ internalType: 'address', name: '_provider', type: 'address' }],
1176
+ name: 'setProvider',
1177
+ outputs: [],
1178
+ stateMutability: 'nonpayable',
1179
+ type: 'function',
1180
+ },
1181
+ {
1182
+ inputs: [{ internalType: 'bytes32', name: 'role', type: 'bytes32' }],
1183
+ name: 'setRoleAdmin',
1184
+ outputs: [],
1185
+ stateMutability: 'nonpayable',
1186
+ type: 'function',
1187
+ },
1188
+ {
1189
+ inputs: [
1190
+ { internalType: 'address', name: 'newSkimRecipient', type: 'address' },
1191
+ ],
1192
+ name: 'setSkimRecipient',
1193
+ outputs: [],
1194
+ stateMutability: 'nonpayable',
1195
+ type: 'function',
1196
+ },
1197
+ {
1198
+ inputs: [
1199
+ {
1200
+ internalType: 'Id[]',
1201
+ name: 'newSupplyQueue',
1202
+ type: 'bytes32[]',
1203
+ },
1204
+ ],
1205
+ name: 'setSupplyQueue',
1206
+ outputs: [],
1207
+ stateMutability: 'nonpayable',
1208
+ type: 'function',
1209
+ },
1210
+ {
1211
+ inputs: [{ internalType: 'string', name: 'newSymbol', type: 'string' }],
1212
+ name: 'setSymbol',
1213
+ outputs: [],
1214
+ stateMutability: 'nonpayable',
1215
+ type: 'function',
1216
+ },
1217
+ {
1218
+ inputs: [
1219
+ { internalType: 'address', name: 'account', type: 'address' },
1220
+ { internalType: 'bool', name: 'enabled', type: 'bool' },
1221
+ ],
1222
+ name: 'setWhiteList',
1223
+ outputs: [],
1224
+ stateMutability: 'nonpayable',
1225
+ type: 'function',
1226
+ },
1227
+ {
1228
+ inputs: [{ internalType: 'address', name: 'token', type: 'address' }],
1229
+ name: 'skim',
1230
+ outputs: [],
1231
+ stateMutability: 'nonpayable',
1232
+ type: 'function',
1233
+ },
1234
+ {
1235
+ inputs: [],
1236
+ name: 'skimRecipient',
1237
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
1238
+ stateMutability: 'view',
1239
+ type: 'function',
1240
+ },
1241
+ {
1242
+ inputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
1243
+ name: 'supplyQueue',
1244
+ outputs: [{ internalType: 'Id', name: '', type: 'bytes32' }],
1245
+ stateMutability: 'view',
1246
+ type: 'function',
1247
+ },
1248
+ {
1249
+ inputs: [],
1250
+ name: 'supplyQueueLength',
1251
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
1252
+ stateMutability: 'view',
1253
+ type: 'function',
1254
+ },
1255
+ {
1256
+ inputs: [{ internalType: 'bytes4', name: 'interfaceId', type: 'bytes4' }],
1257
+ name: 'supportsInterface',
1258
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
1259
+ stateMutability: 'view',
1260
+ type: 'function',
1261
+ },
1262
+ {
1263
+ inputs: [],
1264
+ name: 'symbol',
1265
+ outputs: [{ internalType: 'string', name: '', type: 'string' }],
1266
+ stateMutability: 'view',
1267
+ type: 'function',
1268
+ },
1269
+ {
1270
+ inputs: [],
1271
+ name: 'totalAssets',
1272
+ outputs: [{ internalType: 'uint256', name: 'assets', type: 'uint256' }],
1273
+ stateMutability: 'view',
1274
+ type: 'function',
1275
+ },
1276
+ {
1277
+ inputs: [],
1278
+ name: 'totalSupply',
1279
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
1280
+ stateMutability: 'view',
1281
+ type: 'function',
1282
+ },
1283
+ {
1284
+ inputs: [
1285
+ { internalType: 'address', name: 'to', type: 'address' },
1286
+ { internalType: 'uint256', name: 'value', type: 'uint256' },
1287
+ ],
1288
+ name: 'transfer',
1289
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
1290
+ stateMutability: 'nonpayable',
1291
+ type: 'function',
1292
+ },
1293
+ {
1294
+ inputs: [
1295
+ { internalType: 'address', name: 'from', type: 'address' },
1296
+ { internalType: 'address', name: 'to', type: 'address' },
1297
+ { internalType: 'uint256', name: 'value', type: 'uint256' },
1298
+ ],
1299
+ name: 'transferFrom',
1300
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
1301
+ stateMutability: 'nonpayable',
1302
+ type: 'function',
1303
+ },
1304
+ {
1305
+ inputs: [
1306
+ { internalType: 'uint256[]', name: 'indexes', type: 'uint256[]' },
1307
+ ],
1308
+ name: 'updateWithdrawQueue',
1309
+ outputs: [],
1310
+ stateMutability: 'nonpayable',
1311
+ type: 'function',
1312
+ },
1313
+ {
1314
+ inputs: [
1315
+ {
1316
+ internalType: 'address',
1317
+ name: 'newImplementation',
1318
+ type: 'address',
1319
+ },
1320
+ { internalType: 'bytes', name: 'data', type: 'bytes' },
1321
+ ],
1322
+ name: 'upgradeToAndCall',
1323
+ outputs: [],
1324
+ stateMutability: 'payable',
1325
+ type: 'function',
1326
+ },
1327
+ {
1328
+ inputs: [
1329
+ { internalType: 'uint256', name: 'assets', type: 'uint256' },
1330
+ { internalType: 'address', name: 'receiver', type: 'address' },
1331
+ { internalType: 'address', name: 'owner', type: 'address' },
1332
+ ],
1333
+ name: 'withdraw',
1334
+ outputs: [{ internalType: 'uint256', name: 'shares', type: 'uint256' }],
1335
+ stateMutability: 'nonpayable',
1336
+ type: 'function',
1337
+ },
1338
+ {
1339
+ inputs: [
1340
+ { internalType: 'uint256', name: 'assets', type: 'uint256' },
1341
+ { internalType: 'address', name: 'owner', type: 'address' },
1342
+ { internalType: 'address', name: 'sender', type: 'address' },
1343
+ ],
1344
+ name: 'withdrawFor',
1345
+ outputs: [{ internalType: 'uint256', name: 'shares', type: 'uint256' }],
1346
+ stateMutability: 'nonpayable',
1347
+ type: 'function',
1348
+ },
1349
+ {
1350
+ inputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
1351
+ name: 'withdrawQueue',
1352
+ outputs: [{ internalType: 'Id', name: '', type: 'bytes32' }],
1353
+ stateMutability: 'view',
1354
+ type: 'function',
1355
+ },
1356
+ {
1357
+ inputs: [],
1358
+ name: 'withdrawQueueLength',
1359
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
1360
+ stateMutability: 'view',
1361
+ type: 'function',
1362
+ },
1363
+ ];