morpho-contracts-helper 0.0.6 → 0.0.7

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 (38) hide show
  1. package/contracts/external/morpho/interfaces/IERC2612.sol +10 -0
  2. package/contracts/external/morpho/interfaces/IVaultV2.sol +106 -0
  3. package/contracts/external/morpho/interfaces/IVaultV2Factory.sol +15 -0
  4. package/dist/typechain-types/contracts/external/morpho/interfaces/IERC2612.d.ts +62 -0
  5. package/dist/typechain-types/contracts/external/morpho/interfaces/IERC2612.d.ts.map +1 -0
  6. package/dist/typechain-types/contracts/external/morpho/interfaces/IERC2612.js +3 -0
  7. package/dist/typechain-types/contracts/external/morpho/interfaces/IERC2612.js.map +1 -0
  8. package/dist/typechain-types/contracts/external/morpho/interfaces/IVaultV2.d.ts +598 -0
  9. package/dist/typechain-types/contracts/external/morpho/interfaces/IVaultV2.d.ts.map +1 -0
  10. package/dist/typechain-types/contracts/external/morpho/interfaces/IVaultV2.js +3 -0
  11. package/dist/typechain-types/contracts/external/morpho/interfaces/IVaultV2.js.map +1 -0
  12. package/dist/typechain-types/contracts/external/morpho/interfaces/IVaultV2Factory.d.ts +87 -0
  13. package/dist/typechain-types/contracts/external/morpho/interfaces/IVaultV2Factory.d.ts.map +1 -0
  14. package/dist/typechain-types/contracts/external/morpho/interfaces/IVaultV2Factory.js +3 -0
  15. package/dist/typechain-types/contracts/external/morpho/interfaces/IVaultV2Factory.js.map +1 -0
  16. package/dist/typechain-types/contracts/external/morpho/interfaces/index.d.ts +3 -0
  17. package/dist/typechain-types/contracts/external/morpho/interfaces/index.d.ts.map +1 -1
  18. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/IERC2612__factory.d.ts +66 -0
  19. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/IERC2612__factory.d.ts.map +1 -0
  20. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/IERC2612__factory.js +96 -0
  21. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/IERC2612__factory.js.map +1 -0
  22. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/IVaultV2Factory__factory.d.ts +91 -0
  23. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/IVaultV2Factory__factory.d.ts.map +1 -0
  24. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/IVaultV2Factory__factory.js +129 -0
  25. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/IVaultV2Factory__factory.js.map +1 -0
  26. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/IVaultV2__factory.d.ts +906 -0
  27. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/IVaultV2__factory.d.ts.map +1 -0
  28. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/IVaultV2__factory.js +1197 -0
  29. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/IVaultV2__factory.js.map +1 -0
  30. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/index.d.ts +3 -0
  31. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/index.d.ts.map +1 -1
  32. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/index.js +7 -1
  33. package/dist/typechain-types/factories/contracts/external/morpho/interfaces/index.js.map +1 -1
  34. package/dist/typechain-types/index.d.ts +6 -0
  35. package/dist/typechain-types/index.d.ts.map +1 -1
  36. package/dist/typechain-types/index.js +7 -1
  37. package/dist/typechain-types/index.js.map +1 -1
  38. package/package.json +1 -1
@@ -0,0 +1,1197 @@
1
+ "use strict";
2
+ /* Autogenerated file. Do not edit manually. */
3
+ // @ts-nocheck
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.IVaultV2__factory = void 0;
8
+ const ethers_1 = require("ethers");
9
+ const _abi = [
10
+ {
11
+ inputs: [],
12
+ name: "DOMAIN_SEPARATOR",
13
+ outputs: [
14
+ {
15
+ internalType: "bytes32",
16
+ name: "",
17
+ type: "bytes32",
18
+ },
19
+ ],
20
+ stateMutability: "view",
21
+ type: "function",
22
+ },
23
+ {
24
+ inputs: [],
25
+ name: "_totalAssets",
26
+ outputs: [
27
+ {
28
+ internalType: "uint128",
29
+ name: "",
30
+ type: "uint128",
31
+ },
32
+ ],
33
+ stateMutability: "view",
34
+ type: "function",
35
+ },
36
+ {
37
+ inputs: [
38
+ {
39
+ internalType: "bytes4",
40
+ name: "selector",
41
+ type: "bytes4",
42
+ },
43
+ ],
44
+ name: "abdicate",
45
+ outputs: [],
46
+ stateMutability: "nonpayable",
47
+ type: "function",
48
+ },
49
+ {
50
+ inputs: [
51
+ {
52
+ internalType: "bytes4",
53
+ name: "selector",
54
+ type: "bytes4",
55
+ },
56
+ ],
57
+ name: "abdicated",
58
+ outputs: [
59
+ {
60
+ internalType: "bool",
61
+ name: "",
62
+ type: "bool",
63
+ },
64
+ ],
65
+ stateMutability: "view",
66
+ type: "function",
67
+ },
68
+ {
69
+ inputs: [
70
+ {
71
+ internalType: "bytes32",
72
+ name: "id",
73
+ type: "bytes32",
74
+ },
75
+ ],
76
+ name: "absoluteCap",
77
+ outputs: [
78
+ {
79
+ internalType: "uint256",
80
+ name: "",
81
+ type: "uint256",
82
+ },
83
+ ],
84
+ stateMutability: "view",
85
+ type: "function",
86
+ },
87
+ {
88
+ inputs: [],
89
+ name: "accrueInterest",
90
+ outputs: [],
91
+ stateMutability: "nonpayable",
92
+ type: "function",
93
+ },
94
+ {
95
+ inputs: [],
96
+ name: "accrueInterestView",
97
+ outputs: [
98
+ {
99
+ internalType: "uint256",
100
+ name: "newTotalAssets",
101
+ type: "uint256",
102
+ },
103
+ {
104
+ internalType: "uint256",
105
+ name: "performanceFeeShares",
106
+ type: "uint256",
107
+ },
108
+ {
109
+ internalType: "uint256",
110
+ name: "managementFeeShares",
111
+ type: "uint256",
112
+ },
113
+ ],
114
+ stateMutability: "view",
115
+ type: "function",
116
+ },
117
+ {
118
+ inputs: [],
119
+ name: "adapterRegistry",
120
+ outputs: [
121
+ {
122
+ internalType: "address",
123
+ name: "",
124
+ type: "address",
125
+ },
126
+ ],
127
+ stateMutability: "view",
128
+ type: "function",
129
+ },
130
+ {
131
+ inputs: [
132
+ {
133
+ internalType: "uint256",
134
+ name: "index",
135
+ type: "uint256",
136
+ },
137
+ ],
138
+ name: "adapters",
139
+ outputs: [
140
+ {
141
+ internalType: "address",
142
+ name: "",
143
+ type: "address",
144
+ },
145
+ ],
146
+ stateMutability: "view",
147
+ type: "function",
148
+ },
149
+ {
150
+ inputs: [],
151
+ name: "adaptersLength",
152
+ outputs: [
153
+ {
154
+ internalType: "uint256",
155
+ name: "",
156
+ type: "uint256",
157
+ },
158
+ ],
159
+ stateMutability: "view",
160
+ type: "function",
161
+ },
162
+ {
163
+ inputs: [
164
+ {
165
+ internalType: "address",
166
+ name: "account",
167
+ type: "address",
168
+ },
169
+ ],
170
+ name: "addAdapter",
171
+ outputs: [],
172
+ stateMutability: "nonpayable",
173
+ type: "function",
174
+ },
175
+ {
176
+ inputs: [
177
+ {
178
+ internalType: "address",
179
+ name: "adapter",
180
+ type: "address",
181
+ },
182
+ {
183
+ internalType: "bytes",
184
+ name: "data",
185
+ type: "bytes",
186
+ },
187
+ {
188
+ internalType: "uint256",
189
+ name: "assets",
190
+ type: "uint256",
191
+ },
192
+ ],
193
+ name: "allocate",
194
+ outputs: [],
195
+ stateMutability: "nonpayable",
196
+ type: "function",
197
+ },
198
+ {
199
+ inputs: [
200
+ {
201
+ internalType: "bytes32",
202
+ name: "id",
203
+ type: "bytes32",
204
+ },
205
+ ],
206
+ name: "allocation",
207
+ outputs: [
208
+ {
209
+ internalType: "uint256",
210
+ name: "",
211
+ type: "uint256",
212
+ },
213
+ ],
214
+ stateMutability: "view",
215
+ type: "function",
216
+ },
217
+ {
218
+ inputs: [
219
+ {
220
+ internalType: "address",
221
+ name: "account",
222
+ type: "address",
223
+ },
224
+ ],
225
+ name: "canReceiveAssets",
226
+ outputs: [
227
+ {
228
+ internalType: "bool",
229
+ name: "",
230
+ type: "bool",
231
+ },
232
+ ],
233
+ stateMutability: "view",
234
+ type: "function",
235
+ },
236
+ {
237
+ inputs: [
238
+ {
239
+ internalType: "address",
240
+ name: "account",
241
+ type: "address",
242
+ },
243
+ ],
244
+ name: "canReceiveShares",
245
+ outputs: [
246
+ {
247
+ internalType: "bool",
248
+ name: "",
249
+ type: "bool",
250
+ },
251
+ ],
252
+ stateMutability: "view",
253
+ type: "function",
254
+ },
255
+ {
256
+ inputs: [
257
+ {
258
+ internalType: "address",
259
+ name: "account",
260
+ type: "address",
261
+ },
262
+ ],
263
+ name: "canSendAssets",
264
+ outputs: [
265
+ {
266
+ internalType: "bool",
267
+ name: "",
268
+ type: "bool",
269
+ },
270
+ ],
271
+ stateMutability: "view",
272
+ type: "function",
273
+ },
274
+ {
275
+ inputs: [
276
+ {
277
+ internalType: "address",
278
+ name: "account",
279
+ type: "address",
280
+ },
281
+ ],
282
+ name: "canSendShares",
283
+ outputs: [
284
+ {
285
+ internalType: "bool",
286
+ name: "",
287
+ type: "bool",
288
+ },
289
+ ],
290
+ stateMutability: "view",
291
+ type: "function",
292
+ },
293
+ {
294
+ inputs: [
295
+ {
296
+ internalType: "uint256",
297
+ name: "",
298
+ type: "uint256",
299
+ },
300
+ ],
301
+ name: "convertToAssets",
302
+ outputs: [
303
+ {
304
+ internalType: "uint256",
305
+ name: "",
306
+ type: "uint256",
307
+ },
308
+ ],
309
+ stateMutability: "view",
310
+ type: "function",
311
+ },
312
+ {
313
+ inputs: [],
314
+ name: "curator",
315
+ outputs: [
316
+ {
317
+ internalType: "address",
318
+ name: "",
319
+ type: "address",
320
+ },
321
+ ],
322
+ stateMutability: "view",
323
+ type: "function",
324
+ },
325
+ {
326
+ inputs: [
327
+ {
328
+ internalType: "address",
329
+ name: "adapter",
330
+ type: "address",
331
+ },
332
+ {
333
+ internalType: "bytes",
334
+ name: "data",
335
+ type: "bytes",
336
+ },
337
+ {
338
+ internalType: "uint256",
339
+ name: "assets",
340
+ type: "uint256",
341
+ },
342
+ ],
343
+ name: "deallocate",
344
+ outputs: [],
345
+ stateMutability: "nonpayable",
346
+ type: "function",
347
+ },
348
+ {
349
+ inputs: [
350
+ {
351
+ internalType: "bytes",
352
+ name: "idData",
353
+ type: "bytes",
354
+ },
355
+ {
356
+ internalType: "uint256",
357
+ name: "newAbsoluteCap",
358
+ type: "uint256",
359
+ },
360
+ ],
361
+ name: "decreaseAbsoluteCap",
362
+ outputs: [],
363
+ stateMutability: "nonpayable",
364
+ type: "function",
365
+ },
366
+ {
367
+ inputs: [
368
+ {
369
+ internalType: "bytes",
370
+ name: "idData",
371
+ type: "bytes",
372
+ },
373
+ {
374
+ internalType: "uint256",
375
+ name: "newRelativeCap",
376
+ type: "uint256",
377
+ },
378
+ ],
379
+ name: "decreaseRelativeCap",
380
+ outputs: [],
381
+ stateMutability: "nonpayable",
382
+ type: "function",
383
+ },
384
+ {
385
+ inputs: [
386
+ {
387
+ internalType: "bytes4",
388
+ name: "selector",
389
+ type: "bytes4",
390
+ },
391
+ {
392
+ internalType: "uint256",
393
+ name: "newDuration",
394
+ type: "uint256",
395
+ },
396
+ ],
397
+ name: "decreaseTimelock",
398
+ outputs: [],
399
+ stateMutability: "nonpayable",
400
+ type: "function",
401
+ },
402
+ {
403
+ inputs: [
404
+ {
405
+ internalType: "bytes",
406
+ name: "data",
407
+ type: "bytes",
408
+ },
409
+ ],
410
+ name: "executableAt",
411
+ outputs: [
412
+ {
413
+ internalType: "uint256",
414
+ name: "",
415
+ type: "uint256",
416
+ },
417
+ ],
418
+ stateMutability: "view",
419
+ type: "function",
420
+ },
421
+ {
422
+ inputs: [],
423
+ name: "firstTotalAssets",
424
+ outputs: [
425
+ {
426
+ internalType: "uint256",
427
+ name: "",
428
+ type: "uint256",
429
+ },
430
+ ],
431
+ stateMutability: "view",
432
+ type: "function",
433
+ },
434
+ {
435
+ inputs: [
436
+ {
437
+ internalType: "address",
438
+ name: "adapter",
439
+ type: "address",
440
+ },
441
+ {
442
+ internalType: "bytes",
443
+ name: "data",
444
+ type: "bytes",
445
+ },
446
+ {
447
+ internalType: "uint256",
448
+ name: "assets",
449
+ type: "uint256",
450
+ },
451
+ {
452
+ internalType: "address",
453
+ name: "onBehalf",
454
+ type: "address",
455
+ },
456
+ ],
457
+ name: "forceDeallocate",
458
+ outputs: [
459
+ {
460
+ internalType: "uint256",
461
+ name: "penaltyShares",
462
+ type: "uint256",
463
+ },
464
+ ],
465
+ stateMutability: "nonpayable",
466
+ type: "function",
467
+ },
468
+ {
469
+ inputs: [
470
+ {
471
+ internalType: "address",
472
+ name: "adapter",
473
+ type: "address",
474
+ },
475
+ ],
476
+ name: "forceDeallocatePenalty",
477
+ outputs: [
478
+ {
479
+ internalType: "uint256",
480
+ name: "",
481
+ type: "uint256",
482
+ },
483
+ ],
484
+ stateMutability: "view",
485
+ type: "function",
486
+ },
487
+ {
488
+ inputs: [
489
+ {
490
+ internalType: "bytes",
491
+ name: "idData",
492
+ type: "bytes",
493
+ },
494
+ {
495
+ internalType: "uint256",
496
+ name: "newAbsoluteCap",
497
+ type: "uint256",
498
+ },
499
+ ],
500
+ name: "increaseAbsoluteCap",
501
+ outputs: [],
502
+ stateMutability: "nonpayable",
503
+ type: "function",
504
+ },
505
+ {
506
+ inputs: [
507
+ {
508
+ internalType: "bytes",
509
+ name: "idData",
510
+ type: "bytes",
511
+ },
512
+ {
513
+ internalType: "uint256",
514
+ name: "newRelativeCap",
515
+ type: "uint256",
516
+ },
517
+ ],
518
+ name: "increaseRelativeCap",
519
+ outputs: [],
520
+ stateMutability: "nonpayable",
521
+ type: "function",
522
+ },
523
+ {
524
+ inputs: [
525
+ {
526
+ internalType: "bytes4",
527
+ name: "selector",
528
+ type: "bytes4",
529
+ },
530
+ {
531
+ internalType: "uint256",
532
+ name: "newDuration",
533
+ type: "uint256",
534
+ },
535
+ ],
536
+ name: "increaseTimelock",
537
+ outputs: [],
538
+ stateMutability: "nonpayable",
539
+ type: "function",
540
+ },
541
+ {
542
+ inputs: [
543
+ {
544
+ internalType: "address",
545
+ name: "account",
546
+ type: "address",
547
+ },
548
+ ],
549
+ name: "isAdapter",
550
+ outputs: [
551
+ {
552
+ internalType: "bool",
553
+ name: "",
554
+ type: "bool",
555
+ },
556
+ ],
557
+ stateMutability: "view",
558
+ type: "function",
559
+ },
560
+ {
561
+ inputs: [
562
+ {
563
+ internalType: "address",
564
+ name: "account",
565
+ type: "address",
566
+ },
567
+ ],
568
+ name: "isAllocator",
569
+ outputs: [
570
+ {
571
+ internalType: "bool",
572
+ name: "",
573
+ type: "bool",
574
+ },
575
+ ],
576
+ stateMutability: "view",
577
+ type: "function",
578
+ },
579
+ {
580
+ inputs: [
581
+ {
582
+ internalType: "address",
583
+ name: "account",
584
+ type: "address",
585
+ },
586
+ ],
587
+ name: "isSentinel",
588
+ outputs: [
589
+ {
590
+ internalType: "bool",
591
+ name: "",
592
+ type: "bool",
593
+ },
594
+ ],
595
+ stateMutability: "view",
596
+ type: "function",
597
+ },
598
+ {
599
+ inputs: [],
600
+ name: "lastUpdate",
601
+ outputs: [
602
+ {
603
+ internalType: "uint64",
604
+ name: "",
605
+ type: "uint64",
606
+ },
607
+ ],
608
+ stateMutability: "view",
609
+ type: "function",
610
+ },
611
+ {
612
+ inputs: [],
613
+ name: "liquidityAdapter",
614
+ outputs: [
615
+ {
616
+ internalType: "address",
617
+ name: "",
618
+ type: "address",
619
+ },
620
+ ],
621
+ stateMutability: "view",
622
+ type: "function",
623
+ },
624
+ {
625
+ inputs: [],
626
+ name: "liquidityData",
627
+ outputs: [
628
+ {
629
+ internalType: "bytes",
630
+ name: "",
631
+ type: "bytes",
632
+ },
633
+ ],
634
+ stateMutability: "view",
635
+ type: "function",
636
+ },
637
+ {
638
+ inputs: [],
639
+ name: "managementFee",
640
+ outputs: [
641
+ {
642
+ internalType: "uint96",
643
+ name: "",
644
+ type: "uint96",
645
+ },
646
+ ],
647
+ stateMutability: "view",
648
+ type: "function",
649
+ },
650
+ {
651
+ inputs: [],
652
+ name: "managementFeeRecipient",
653
+ outputs: [
654
+ {
655
+ internalType: "address",
656
+ name: "",
657
+ type: "address",
658
+ },
659
+ ],
660
+ stateMutability: "view",
661
+ type: "function",
662
+ },
663
+ {
664
+ inputs: [],
665
+ name: "maxRate",
666
+ outputs: [
667
+ {
668
+ internalType: "uint64",
669
+ name: "",
670
+ type: "uint64",
671
+ },
672
+ ],
673
+ stateMutability: "view",
674
+ type: "function",
675
+ },
676
+ {
677
+ inputs: [
678
+ {
679
+ internalType: "bytes[]",
680
+ name: "data",
681
+ type: "bytes[]",
682
+ },
683
+ ],
684
+ name: "multicall",
685
+ outputs: [],
686
+ stateMutability: "nonpayable",
687
+ type: "function",
688
+ },
689
+ {
690
+ inputs: [
691
+ {
692
+ internalType: "address",
693
+ name: "owner",
694
+ type: "address",
695
+ },
696
+ ],
697
+ name: "nonces",
698
+ outputs: [
699
+ {
700
+ internalType: "uint256",
701
+ name: "",
702
+ type: "uint256",
703
+ },
704
+ ],
705
+ stateMutability: "view",
706
+ type: "function",
707
+ },
708
+ {
709
+ inputs: [],
710
+ name: "owner",
711
+ outputs: [
712
+ {
713
+ internalType: "address",
714
+ name: "",
715
+ type: "address",
716
+ },
717
+ ],
718
+ stateMutability: "view",
719
+ type: "function",
720
+ },
721
+ {
722
+ inputs: [],
723
+ name: "performanceFee",
724
+ outputs: [
725
+ {
726
+ internalType: "uint96",
727
+ name: "",
728
+ type: "uint96",
729
+ },
730
+ ],
731
+ stateMutability: "view",
732
+ type: "function",
733
+ },
734
+ {
735
+ inputs: [],
736
+ name: "performanceFeeRecipient",
737
+ outputs: [
738
+ {
739
+ internalType: "address",
740
+ name: "",
741
+ type: "address",
742
+ },
743
+ ],
744
+ stateMutability: "view",
745
+ type: "function",
746
+ },
747
+ {
748
+ inputs: [
749
+ {
750
+ internalType: "address",
751
+ name: "owner",
752
+ type: "address",
753
+ },
754
+ {
755
+ internalType: "address",
756
+ name: "spender",
757
+ type: "address",
758
+ },
759
+ {
760
+ internalType: "uint256",
761
+ name: "shares",
762
+ type: "uint256",
763
+ },
764
+ {
765
+ internalType: "uint256",
766
+ name: "deadline",
767
+ type: "uint256",
768
+ },
769
+ {
770
+ internalType: "uint8",
771
+ name: "v",
772
+ type: "uint8",
773
+ },
774
+ {
775
+ internalType: "bytes32",
776
+ name: "r",
777
+ type: "bytes32",
778
+ },
779
+ {
780
+ internalType: "bytes32",
781
+ name: "s",
782
+ type: "bytes32",
783
+ },
784
+ ],
785
+ name: "permit",
786
+ outputs: [],
787
+ stateMutability: "nonpayable",
788
+ type: "function",
789
+ },
790
+ {
791
+ inputs: [],
792
+ name: "receiveAssetsGate",
793
+ outputs: [
794
+ {
795
+ internalType: "address",
796
+ name: "",
797
+ type: "address",
798
+ },
799
+ ],
800
+ stateMutability: "view",
801
+ type: "function",
802
+ },
803
+ {
804
+ inputs: [],
805
+ name: "receiveSharesGate",
806
+ outputs: [
807
+ {
808
+ internalType: "address",
809
+ name: "",
810
+ type: "address",
811
+ },
812
+ ],
813
+ stateMutability: "view",
814
+ type: "function",
815
+ },
816
+ {
817
+ inputs: [
818
+ {
819
+ internalType: "bytes32",
820
+ name: "id",
821
+ type: "bytes32",
822
+ },
823
+ ],
824
+ name: "relativeCap",
825
+ outputs: [
826
+ {
827
+ internalType: "uint256",
828
+ name: "",
829
+ type: "uint256",
830
+ },
831
+ ],
832
+ stateMutability: "view",
833
+ type: "function",
834
+ },
835
+ {
836
+ inputs: [
837
+ {
838
+ internalType: "address",
839
+ name: "account",
840
+ type: "address",
841
+ },
842
+ ],
843
+ name: "removeAdapter",
844
+ outputs: [],
845
+ stateMutability: "nonpayable",
846
+ type: "function",
847
+ },
848
+ {
849
+ inputs: [
850
+ {
851
+ internalType: "bytes",
852
+ name: "data",
853
+ type: "bytes",
854
+ },
855
+ ],
856
+ name: "revoke",
857
+ outputs: [],
858
+ stateMutability: "nonpayable",
859
+ type: "function",
860
+ },
861
+ {
862
+ inputs: [],
863
+ name: "sendAssetsGate",
864
+ outputs: [
865
+ {
866
+ internalType: "address",
867
+ name: "",
868
+ type: "address",
869
+ },
870
+ ],
871
+ stateMutability: "view",
872
+ type: "function",
873
+ },
874
+ {
875
+ inputs: [],
876
+ name: "sendSharesGate",
877
+ outputs: [
878
+ {
879
+ internalType: "address",
880
+ name: "",
881
+ type: "address",
882
+ },
883
+ ],
884
+ stateMutability: "view",
885
+ type: "function",
886
+ },
887
+ {
888
+ inputs: [
889
+ {
890
+ internalType: "address",
891
+ name: "newAdapterRegistry",
892
+ type: "address",
893
+ },
894
+ ],
895
+ name: "setAdapterRegistry",
896
+ outputs: [],
897
+ stateMutability: "nonpayable",
898
+ type: "function",
899
+ },
900
+ {
901
+ inputs: [
902
+ {
903
+ internalType: "address",
904
+ name: "newCurator",
905
+ type: "address",
906
+ },
907
+ ],
908
+ name: "setCurator",
909
+ outputs: [],
910
+ stateMutability: "nonpayable",
911
+ type: "function",
912
+ },
913
+ {
914
+ inputs: [
915
+ {
916
+ internalType: "address",
917
+ name: "adapter",
918
+ type: "address",
919
+ },
920
+ {
921
+ internalType: "uint256",
922
+ name: "newForceDeallocatePenalty",
923
+ type: "uint256",
924
+ },
925
+ ],
926
+ name: "setForceDeallocatePenalty",
927
+ outputs: [],
928
+ stateMutability: "nonpayable",
929
+ type: "function",
930
+ },
931
+ {
932
+ inputs: [
933
+ {
934
+ internalType: "address",
935
+ name: "account",
936
+ type: "address",
937
+ },
938
+ {
939
+ internalType: "bool",
940
+ name: "newIsAllocator",
941
+ type: "bool",
942
+ },
943
+ ],
944
+ name: "setIsAllocator",
945
+ outputs: [],
946
+ stateMutability: "nonpayable",
947
+ type: "function",
948
+ },
949
+ {
950
+ inputs: [
951
+ {
952
+ internalType: "address",
953
+ name: "account",
954
+ type: "address",
955
+ },
956
+ {
957
+ internalType: "bool",
958
+ name: "isSentinel",
959
+ type: "bool",
960
+ },
961
+ ],
962
+ name: "setIsSentinel",
963
+ outputs: [],
964
+ stateMutability: "nonpayable",
965
+ type: "function",
966
+ },
967
+ {
968
+ inputs: [
969
+ {
970
+ internalType: "address",
971
+ name: "newLiquidityAdapter",
972
+ type: "address",
973
+ },
974
+ {
975
+ internalType: "bytes",
976
+ name: "newLiquidityData",
977
+ type: "bytes",
978
+ },
979
+ ],
980
+ name: "setLiquidityAdapterAndData",
981
+ outputs: [],
982
+ stateMutability: "nonpayable",
983
+ type: "function",
984
+ },
985
+ {
986
+ inputs: [
987
+ {
988
+ internalType: "uint256",
989
+ name: "newManagementFee",
990
+ type: "uint256",
991
+ },
992
+ ],
993
+ name: "setManagementFee",
994
+ outputs: [],
995
+ stateMutability: "nonpayable",
996
+ type: "function",
997
+ },
998
+ {
999
+ inputs: [
1000
+ {
1001
+ internalType: "address",
1002
+ name: "newManagementFeeRecipient",
1003
+ type: "address",
1004
+ },
1005
+ ],
1006
+ name: "setManagementFeeRecipient",
1007
+ outputs: [],
1008
+ stateMutability: "nonpayable",
1009
+ type: "function",
1010
+ },
1011
+ {
1012
+ inputs: [
1013
+ {
1014
+ internalType: "uint256",
1015
+ name: "newMaxRate",
1016
+ type: "uint256",
1017
+ },
1018
+ ],
1019
+ name: "setMaxRate",
1020
+ outputs: [],
1021
+ stateMutability: "nonpayable",
1022
+ type: "function",
1023
+ },
1024
+ {
1025
+ inputs: [
1026
+ {
1027
+ internalType: "string",
1028
+ name: "newName",
1029
+ type: "string",
1030
+ },
1031
+ ],
1032
+ name: "setName",
1033
+ outputs: [],
1034
+ stateMutability: "nonpayable",
1035
+ type: "function",
1036
+ },
1037
+ {
1038
+ inputs: [
1039
+ {
1040
+ internalType: "address",
1041
+ name: "newOwner",
1042
+ type: "address",
1043
+ },
1044
+ ],
1045
+ name: "setOwner",
1046
+ outputs: [],
1047
+ stateMutability: "nonpayable",
1048
+ type: "function",
1049
+ },
1050
+ {
1051
+ inputs: [
1052
+ {
1053
+ internalType: "uint256",
1054
+ name: "newPerformanceFee",
1055
+ type: "uint256",
1056
+ },
1057
+ ],
1058
+ name: "setPerformanceFee",
1059
+ outputs: [],
1060
+ stateMutability: "nonpayable",
1061
+ type: "function",
1062
+ },
1063
+ {
1064
+ inputs: [
1065
+ {
1066
+ internalType: "address",
1067
+ name: "newPerformanceFeeRecipient",
1068
+ type: "address",
1069
+ },
1070
+ ],
1071
+ name: "setPerformanceFeeRecipient",
1072
+ outputs: [],
1073
+ stateMutability: "nonpayable",
1074
+ type: "function",
1075
+ },
1076
+ {
1077
+ inputs: [
1078
+ {
1079
+ internalType: "address",
1080
+ name: "newReceiveAssetsGate",
1081
+ type: "address",
1082
+ },
1083
+ ],
1084
+ name: "setReceiveAssetsGate",
1085
+ outputs: [],
1086
+ stateMutability: "nonpayable",
1087
+ type: "function",
1088
+ },
1089
+ {
1090
+ inputs: [
1091
+ {
1092
+ internalType: "address",
1093
+ name: "newReceiveSharesGate",
1094
+ type: "address",
1095
+ },
1096
+ ],
1097
+ name: "setReceiveSharesGate",
1098
+ outputs: [],
1099
+ stateMutability: "nonpayable",
1100
+ type: "function",
1101
+ },
1102
+ {
1103
+ inputs: [
1104
+ {
1105
+ internalType: "address",
1106
+ name: "newSendAssetsGate",
1107
+ type: "address",
1108
+ },
1109
+ ],
1110
+ name: "setSendAssetsGate",
1111
+ outputs: [],
1112
+ stateMutability: "nonpayable",
1113
+ type: "function",
1114
+ },
1115
+ {
1116
+ inputs: [
1117
+ {
1118
+ internalType: "address",
1119
+ name: "newSendSharesGate",
1120
+ type: "address",
1121
+ },
1122
+ ],
1123
+ name: "setSendSharesGate",
1124
+ outputs: [],
1125
+ stateMutability: "nonpayable",
1126
+ type: "function",
1127
+ },
1128
+ {
1129
+ inputs: [
1130
+ {
1131
+ internalType: "string",
1132
+ name: "newSymbol",
1133
+ type: "string",
1134
+ },
1135
+ ],
1136
+ name: "setSymbol",
1137
+ outputs: [],
1138
+ stateMutability: "nonpayable",
1139
+ type: "function",
1140
+ },
1141
+ {
1142
+ inputs: [
1143
+ {
1144
+ internalType: "bytes",
1145
+ name: "data",
1146
+ type: "bytes",
1147
+ },
1148
+ ],
1149
+ name: "submit",
1150
+ outputs: [],
1151
+ stateMutability: "nonpayable",
1152
+ type: "function",
1153
+ },
1154
+ {
1155
+ inputs: [
1156
+ {
1157
+ internalType: "bytes4",
1158
+ name: "selector",
1159
+ type: "bytes4",
1160
+ },
1161
+ ],
1162
+ name: "timelock",
1163
+ outputs: [
1164
+ {
1165
+ internalType: "uint256",
1166
+ name: "",
1167
+ type: "uint256",
1168
+ },
1169
+ ],
1170
+ stateMutability: "view",
1171
+ type: "function",
1172
+ },
1173
+ {
1174
+ inputs: [],
1175
+ name: "virtualShares",
1176
+ outputs: [
1177
+ {
1178
+ internalType: "uint256",
1179
+ name: "",
1180
+ type: "uint256",
1181
+ },
1182
+ ],
1183
+ stateMutability: "view",
1184
+ type: "function",
1185
+ },
1186
+ ];
1187
+ class IVaultV2__factory {
1188
+ static abi = _abi;
1189
+ static createInterface() {
1190
+ return new ethers_1.Interface(_abi);
1191
+ }
1192
+ static connect(address, runner) {
1193
+ return new ethers_1.Contract(address, _abi, runner);
1194
+ }
1195
+ }
1196
+ exports.IVaultV2__factory = IVaultV2__factory;
1197
+ //# sourceMappingURL=IVaultV2__factory.js.map