@merkl/contracts 0.8.0 → 0.8.2

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,1992 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ import { Contract, utils } from "ethers";
5
+ const _abi = [
6
+ {
7
+ type: "constructor",
8
+ inputs: [
9
+ {
10
+ name: "_params",
11
+ type: "tuple",
12
+ components: [
13
+ {
14
+ name: "seeder",
15
+ type: "address",
16
+ internalType: "contract AbstractKandelSeeder",
17
+ },
18
+ {
19
+ name: "base",
20
+ type: "address",
21
+ internalType: "address",
22
+ },
23
+ {
24
+ name: "quote",
25
+ type: "address",
26
+ internalType: "address",
27
+ },
28
+ {
29
+ name: "tickSpacing",
30
+ type: "uint256",
31
+ internalType: "uint256",
32
+ },
33
+ {
34
+ name: "manager",
35
+ type: "address",
36
+ internalType: "address",
37
+ },
38
+ {
39
+ name: "managementFee",
40
+ type: "uint16",
41
+ internalType: "uint16",
42
+ },
43
+ {
44
+ name: "oracle",
45
+ type: "tuple",
46
+ components: [
47
+ {
48
+ name: "isStatic",
49
+ type: "bool",
50
+ internalType: "bool",
51
+ },
52
+ {
53
+ name: "oracle",
54
+ type: "address",
55
+ internalType: "contract IOracle",
56
+ },
57
+ {
58
+ name: "staticValue",
59
+ type: "int24",
60
+ internalType: "int24",
61
+ },
62
+ {
63
+ name: "maxDeviation",
64
+ type: "uint16",
65
+ internalType: "uint16",
66
+ },
67
+ {
68
+ name: "proposedAt",
69
+ type: "uint40",
70
+ internalType: "uint40",
71
+ },
72
+ {
73
+ name: "timelockMinutes",
74
+ type: "uint8",
75
+ internalType: "uint8",
76
+ },
77
+ ],
78
+ internalType: "struct OracleData",
79
+ },
80
+ {
81
+ name: "owner",
82
+ type: "address",
83
+ internalType: "address",
84
+ },
85
+ {
86
+ name: "guardian",
87
+ type: "address",
88
+ internalType: "address",
89
+ },
90
+ {
91
+ name: "name",
92
+ type: "string",
93
+ internalType: "string",
94
+ },
95
+ {
96
+ name: "symbol",
97
+ type: "string",
98
+ internalType: "string",
99
+ },
100
+ {
101
+ name: "quoteOffsetDecimals",
102
+ type: "uint8",
103
+ internalType: "uint8",
104
+ },
105
+ ],
106
+ internalType: "struct MangroveVaultV2.VaultInitParams",
107
+ },
108
+ ],
109
+ stateMutability: "nonpayable",
110
+ },
111
+ {
112
+ name: "AllowanceOverflow",
113
+ type: "error",
114
+ inputs: [],
115
+ },
116
+ {
117
+ name: "AllowanceUnderflow",
118
+ type: "error",
119
+ inputs: [],
120
+ },
121
+ {
122
+ name: "AlreadyInitialized",
123
+ type: "error",
124
+ inputs: [],
125
+ },
126
+ {
127
+ name: "AlreadyProposed",
128
+ type: "error",
129
+ inputs: [],
130
+ },
131
+ {
132
+ name: "BurnSlippageExceeded",
133
+ type: "error",
134
+ inputs: [],
135
+ },
136
+ {
137
+ name: "InsufficientAllowance",
138
+ type: "error",
139
+ inputs: [],
140
+ },
141
+ {
142
+ name: "InsufficientBalance",
143
+ type: "error",
144
+ inputs: [],
145
+ },
146
+ {
147
+ name: "InsufficientBalanceForRebalance",
148
+ type: "error",
149
+ inputs: [],
150
+ },
151
+ {
152
+ name: "InsufficientSharesOut",
153
+ type: "error",
154
+ inputs: [],
155
+ },
156
+ {
157
+ name: "InvalidDistribution",
158
+ type: "error",
159
+ inputs: [],
160
+ },
161
+ {
162
+ name: "InvalidInitialMintAmounts",
163
+ type: "error",
164
+ inputs: [],
165
+ },
166
+ {
167
+ name: "InvalidOracle",
168
+ type: "error",
169
+ inputs: [],
170
+ },
171
+ {
172
+ name: "InvalidPermit",
173
+ type: "error",
174
+ inputs: [],
175
+ },
176
+ {
177
+ name: "InvalidRebalanceAddress",
178
+ type: "error",
179
+ inputs: [],
180
+ },
181
+ {
182
+ name: "InvalidTradeTick",
183
+ type: "error",
184
+ inputs: [],
185
+ },
186
+ {
187
+ name: "InvalidWhitelistAddress",
188
+ type: "error",
189
+ inputs: [],
190
+ },
191
+ {
192
+ name: "MaxManagementFeeExceeded",
193
+ type: "error",
194
+ inputs: [],
195
+ },
196
+ {
197
+ name: "MaxMintAmountsExceeded",
198
+ type: "error",
199
+ inputs: [],
200
+ },
201
+ {
202
+ name: "NewOwnerIsZeroAddress",
203
+ type: "error",
204
+ inputs: [],
205
+ },
206
+ {
207
+ name: "NoHandoverRequest",
208
+ type: "error",
209
+ inputs: [],
210
+ },
211
+ {
212
+ name: "NotGuardian",
213
+ type: "error",
214
+ inputs: [],
215
+ },
216
+ {
217
+ name: "NotManager",
218
+ type: "error",
219
+ inputs: [],
220
+ },
221
+ {
222
+ name: "NotProposed",
223
+ type: "error",
224
+ inputs: [],
225
+ },
226
+ {
227
+ name: "OracleTimelocked",
228
+ type: "error",
229
+ inputs: [],
230
+ },
231
+ {
232
+ name: "Paused",
233
+ type: "error",
234
+ inputs: [],
235
+ },
236
+ {
237
+ name: "PausedStateNotChanged",
238
+ type: "error",
239
+ inputs: [],
240
+ },
241
+ {
242
+ name: "Permit2AllowanceIsFixedAtInfinity",
243
+ type: "error",
244
+ inputs: [],
245
+ },
246
+ {
247
+ name: "PermitExpired",
248
+ type: "error",
249
+ inputs: [],
250
+ },
251
+ {
252
+ name: "Reentrancy",
253
+ type: "error",
254
+ inputs: [],
255
+ },
256
+ {
257
+ name: "SlippageExceeded",
258
+ type: "error",
259
+ inputs: [],
260
+ },
261
+ {
262
+ name: "TimelockNotExpired",
263
+ type: "error",
264
+ inputs: [],
265
+ },
266
+ {
267
+ name: "TotalSupplyOverflow",
268
+ type: "error",
269
+ inputs: [],
270
+ },
271
+ {
272
+ name: "Unauthorized",
273
+ type: "error",
274
+ inputs: [],
275
+ },
276
+ {
277
+ name: "AcceptedOracle",
278
+ type: "event",
279
+ inputs: [
280
+ {
281
+ name: "key",
282
+ type: "bytes32",
283
+ indexed: true,
284
+ internalType: "bytes32",
285
+ },
286
+ ],
287
+ anonymous: false,
288
+ },
289
+ {
290
+ name: "AccruedFees",
291
+ type: "event",
292
+ inputs: [
293
+ {
294
+ name: "feeShares",
295
+ type: "uint256",
296
+ indexed: false,
297
+ internalType: "uint256",
298
+ },
299
+ ],
300
+ anonymous: false,
301
+ },
302
+ {
303
+ name: "Approval",
304
+ type: "event",
305
+ inputs: [
306
+ {
307
+ name: "owner",
308
+ type: "address",
309
+ indexed: true,
310
+ internalType: "address",
311
+ },
312
+ {
313
+ name: "spender",
314
+ type: "address",
315
+ indexed: true,
316
+ internalType: "address",
317
+ },
318
+ {
319
+ name: "amount",
320
+ type: "uint256",
321
+ indexed: false,
322
+ internalType: "uint256",
323
+ },
324
+ ],
325
+ anonymous: false,
326
+ },
327
+ {
328
+ name: "FundsEnteredKandel",
329
+ type: "event",
330
+ inputs: [],
331
+ anonymous: false,
332
+ },
333
+ {
334
+ name: "FundsExitedKandel",
335
+ type: "event",
336
+ inputs: [],
337
+ anonymous: false,
338
+ },
339
+ {
340
+ name: "GuardianChanged",
341
+ type: "event",
342
+ inputs: [
343
+ {
344
+ name: "oldGuardian",
345
+ type: "address",
346
+ indexed: true,
347
+ internalType: "address",
348
+ },
349
+ {
350
+ name: "newGuardian",
351
+ type: "address",
352
+ indexed: true,
353
+ internalType: "address",
354
+ },
355
+ ],
356
+ anonymous: false,
357
+ },
358
+ {
359
+ name: "OwnershipHandoverCanceled",
360
+ type: "event",
361
+ inputs: [
362
+ {
363
+ name: "pendingOwner",
364
+ type: "address",
365
+ indexed: true,
366
+ internalType: "address",
367
+ },
368
+ ],
369
+ anonymous: false,
370
+ },
371
+ {
372
+ name: "OwnershipHandoverRequested",
373
+ type: "event",
374
+ inputs: [
375
+ {
376
+ name: "pendingOwner",
377
+ type: "address",
378
+ indexed: true,
379
+ internalType: "address",
380
+ },
381
+ ],
382
+ anonymous: false,
383
+ },
384
+ {
385
+ name: "OwnershipTransferred",
386
+ type: "event",
387
+ inputs: [
388
+ {
389
+ name: "oldOwner",
390
+ type: "address",
391
+ indexed: true,
392
+ internalType: "address",
393
+ },
394
+ {
395
+ name: "newOwner",
396
+ type: "address",
397
+ indexed: true,
398
+ internalType: "address",
399
+ },
400
+ ],
401
+ anonymous: false,
402
+ },
403
+ {
404
+ name: "ProposedOracle",
405
+ type: "event",
406
+ inputs: [
407
+ {
408
+ name: "key",
409
+ type: "bytes32",
410
+ indexed: true,
411
+ internalType: "bytes32",
412
+ },
413
+ {
414
+ name: "oracle",
415
+ type: "tuple",
416
+ indexed: false,
417
+ components: [
418
+ {
419
+ name: "isStatic",
420
+ type: "bool",
421
+ internalType: "bool",
422
+ },
423
+ {
424
+ name: "oracle",
425
+ type: "address",
426
+ internalType: "contract IOracle",
427
+ },
428
+ {
429
+ name: "staticValue",
430
+ type: "int24",
431
+ internalType: "int24",
432
+ },
433
+ {
434
+ name: "maxDeviation",
435
+ type: "uint16",
436
+ internalType: "uint16",
437
+ },
438
+ {
439
+ name: "proposedAt",
440
+ type: "uint40",
441
+ internalType: "uint40",
442
+ },
443
+ {
444
+ name: "timelockMinutes",
445
+ type: "uint8",
446
+ internalType: "uint8",
447
+ },
448
+ ],
449
+ internalType: "struct OracleData",
450
+ },
451
+ ],
452
+ anonymous: false,
453
+ },
454
+ {
455
+ name: "Rebalanced",
456
+ type: "event",
457
+ inputs: [
458
+ {
459
+ name: "target",
460
+ type: "address",
461
+ indexed: true,
462
+ internalType: "address",
463
+ },
464
+ {
465
+ name: "isSell",
466
+ type: "bool",
467
+ indexed: false,
468
+ internalType: "bool",
469
+ },
470
+ {
471
+ name: "amountIn",
472
+ type: "uint256",
473
+ indexed: false,
474
+ internalType: "uint256",
475
+ },
476
+ {
477
+ name: "amountOut",
478
+ type: "uint256",
479
+ indexed: false,
480
+ internalType: "uint256",
481
+ },
482
+ {
483
+ name: "baseBalanceAfter",
484
+ type: "uint256",
485
+ indexed: false,
486
+ internalType: "uint256",
487
+ },
488
+ {
489
+ name: "quoteBalanceAfter",
490
+ type: "uint256",
491
+ indexed: false,
492
+ internalType: "uint256",
493
+ },
494
+ ],
495
+ anonymous: false,
496
+ },
497
+ {
498
+ name: "ReceivedTokens",
499
+ type: "event",
500
+ inputs: [
501
+ {
502
+ name: "baseIn",
503
+ type: "uint256",
504
+ indexed: false,
505
+ internalType: "uint256",
506
+ },
507
+ {
508
+ name: "quoteIn",
509
+ type: "uint256",
510
+ indexed: false,
511
+ internalType: "uint256",
512
+ },
513
+ {
514
+ name: "totalBaseBalance",
515
+ type: "uint256",
516
+ indexed: false,
517
+ internalType: "uint256",
518
+ },
519
+ {
520
+ name: "totalQuoteBalance",
521
+ type: "uint256",
522
+ indexed: false,
523
+ internalType: "uint256",
524
+ },
525
+ ],
526
+ anonymous: false,
527
+ },
528
+ {
529
+ name: "RejectedOracle",
530
+ type: "event",
531
+ inputs: [
532
+ {
533
+ name: "key",
534
+ type: "bytes32",
535
+ indexed: true,
536
+ internalType: "bytes32",
537
+ },
538
+ ],
539
+ anonymous: false,
540
+ },
541
+ {
542
+ name: "SentTokens",
543
+ type: "event",
544
+ inputs: [
545
+ {
546
+ name: "baseOut",
547
+ type: "uint256",
548
+ indexed: false,
549
+ internalType: "uint256",
550
+ },
551
+ {
552
+ name: "quoteOut",
553
+ type: "uint256",
554
+ indexed: false,
555
+ internalType: "uint256",
556
+ },
557
+ {
558
+ name: "totalBaseBalance",
559
+ type: "uint256",
560
+ indexed: false,
561
+ internalType: "uint256",
562
+ },
563
+ {
564
+ name: "totalQuoteBalance",
565
+ type: "uint256",
566
+ indexed: false,
567
+ internalType: "uint256",
568
+ },
569
+ ],
570
+ anonymous: false,
571
+ },
572
+ {
573
+ name: "SetFeeData",
574
+ type: "event",
575
+ inputs: [
576
+ {
577
+ name: "feeRecipient",
578
+ type: "address",
579
+ indexed: true,
580
+ internalType: "address",
581
+ },
582
+ {
583
+ name: "managementFee",
584
+ type: "uint16",
585
+ indexed: false,
586
+ internalType: "uint16",
587
+ },
588
+ ],
589
+ anonymous: false,
590
+ },
591
+ {
592
+ name: "SetManager",
593
+ type: "event",
594
+ inputs: [
595
+ {
596
+ name: "manager",
597
+ type: "address",
598
+ indexed: true,
599
+ internalType: "address",
600
+ },
601
+ ],
602
+ anonymous: false,
603
+ },
604
+ {
605
+ name: "SetMaxMintAmounts",
606
+ type: "event",
607
+ inputs: [
608
+ {
609
+ name: "maxBase",
610
+ type: "uint128",
611
+ indexed: false,
612
+ internalType: "uint128",
613
+ },
614
+ {
615
+ name: "maxQuote",
616
+ type: "uint128",
617
+ indexed: false,
618
+ internalType: "uint128",
619
+ },
620
+ ],
621
+ anonymous: false,
622
+ },
623
+ {
624
+ name: "SetPaused",
625
+ type: "event",
626
+ inputs: [
627
+ {
628
+ name: "paused",
629
+ type: "bool",
630
+ indexed: false,
631
+ internalType: "bool",
632
+ },
633
+ ],
634
+ anonymous: false,
635
+ },
636
+ {
637
+ name: "Transfer",
638
+ type: "event",
639
+ inputs: [
640
+ {
641
+ name: "from",
642
+ type: "address",
643
+ indexed: true,
644
+ internalType: "address",
645
+ },
646
+ {
647
+ name: "to",
648
+ type: "address",
649
+ indexed: true,
650
+ internalType: "address",
651
+ },
652
+ {
653
+ name: "amount",
654
+ type: "uint256",
655
+ indexed: false,
656
+ internalType: "uint256",
657
+ },
658
+ ],
659
+ anonymous: false,
660
+ },
661
+ {
662
+ name: "WhitelistAccepted",
663
+ type: "event",
664
+ inputs: [
665
+ {
666
+ name: "_address",
667
+ type: "address",
668
+ indexed: true,
669
+ internalType: "address",
670
+ },
671
+ ],
672
+ anonymous: false,
673
+ },
674
+ {
675
+ name: "WhitelistProposed",
676
+ type: "event",
677
+ inputs: [
678
+ {
679
+ name: "_address",
680
+ type: "address",
681
+ indexed: true,
682
+ internalType: "address",
683
+ },
684
+ ],
685
+ anonymous: false,
686
+ },
687
+ {
688
+ name: "WhitelistRejected",
689
+ type: "event",
690
+ inputs: [
691
+ {
692
+ name: "_address",
693
+ type: "address",
694
+ indexed: true,
695
+ internalType: "address",
696
+ },
697
+ ],
698
+ anonymous: false,
699
+ },
700
+ {
701
+ name: "DOMAIN_SEPARATOR",
702
+ type: "function",
703
+ inputs: [],
704
+ outputs: [
705
+ {
706
+ name: "result",
707
+ type: "bytes32",
708
+ internalType: "bytes32",
709
+ },
710
+ ],
711
+ stateMutability: "view",
712
+ },
713
+ {
714
+ name: "KANDEL",
715
+ type: "function",
716
+ inputs: [],
717
+ outputs: [
718
+ {
719
+ name: "",
720
+ type: "address",
721
+ internalType: "contract GeometricKandel",
722
+ },
723
+ ],
724
+ stateMutability: "view",
725
+ },
726
+ {
727
+ name: "acceptOracle",
728
+ type: "function",
729
+ inputs: [],
730
+ outputs: [],
731
+ stateMutability: "nonpayable",
732
+ },
733
+ {
734
+ name: "acceptWhitelist",
735
+ type: "function",
736
+ inputs: [
737
+ {
738
+ name: "_address",
739
+ type: "address",
740
+ internalType: "address",
741
+ },
742
+ ],
743
+ outputs: [],
744
+ stateMutability: "nonpayable",
745
+ },
746
+ {
747
+ name: "adminWithdrawNative",
748
+ type: "function",
749
+ inputs: [
750
+ {
751
+ name: "amount",
752
+ type: "uint256",
753
+ internalType: "uint256",
754
+ },
755
+ {
756
+ name: "recipient",
757
+ type: "address",
758
+ internalType: "address",
759
+ },
760
+ ],
761
+ outputs: [],
762
+ stateMutability: "nonpayable",
763
+ },
764
+ {
765
+ name: "adminWithdrawTokens",
766
+ type: "function",
767
+ inputs: [
768
+ {
769
+ name: "token",
770
+ type: "address",
771
+ internalType: "address",
772
+ },
773
+ {
774
+ name: "amount",
775
+ type: "uint256",
776
+ internalType: "uint256",
777
+ },
778
+ {
779
+ name: "recipient",
780
+ type: "address",
781
+ internalType: "address",
782
+ },
783
+ ],
784
+ outputs: [],
785
+ stateMutability: "nonpayable",
786
+ },
787
+ {
788
+ name: "allowance",
789
+ type: "function",
790
+ inputs: [
791
+ {
792
+ name: "owner",
793
+ type: "address",
794
+ internalType: "address",
795
+ },
796
+ {
797
+ name: "spender",
798
+ type: "address",
799
+ internalType: "address",
800
+ },
801
+ ],
802
+ outputs: [
803
+ {
804
+ name: "result",
805
+ type: "uint256",
806
+ internalType: "uint256",
807
+ },
808
+ ],
809
+ stateMutability: "view",
810
+ },
811
+ {
812
+ name: "approve",
813
+ type: "function",
814
+ inputs: [
815
+ {
816
+ name: "spender",
817
+ type: "address",
818
+ internalType: "address",
819
+ },
820
+ {
821
+ name: "amount",
822
+ type: "uint256",
823
+ internalType: "uint256",
824
+ },
825
+ ],
826
+ outputs: [
827
+ {
828
+ name: "",
829
+ type: "bool",
830
+ internalType: "bool",
831
+ },
832
+ ],
833
+ stateMutability: "nonpayable",
834
+ },
835
+ {
836
+ name: "balanceOf",
837
+ type: "function",
838
+ inputs: [
839
+ {
840
+ name: "owner",
841
+ type: "address",
842
+ internalType: "address",
843
+ },
844
+ ],
845
+ outputs: [
846
+ {
847
+ name: "result",
848
+ type: "uint256",
849
+ internalType: "uint256",
850
+ },
851
+ ],
852
+ stateMutability: "view",
853
+ },
854
+ {
855
+ name: "burn",
856
+ type: "function",
857
+ inputs: [
858
+ {
859
+ name: "from",
860
+ type: "address",
861
+ internalType: "address",
862
+ },
863
+ {
864
+ name: "receiver",
865
+ type: "address",
866
+ internalType: "address",
867
+ },
868
+ {
869
+ name: "shares",
870
+ type: "uint256",
871
+ internalType: "uint256",
872
+ },
873
+ {
874
+ name: "minBaseOut",
875
+ type: "uint256",
876
+ internalType: "uint256",
877
+ },
878
+ {
879
+ name: "minQuoteOut",
880
+ type: "uint256",
881
+ internalType: "uint256",
882
+ },
883
+ ],
884
+ outputs: [
885
+ {
886
+ name: "baseOut",
887
+ type: "uint256",
888
+ internalType: "uint256",
889
+ },
890
+ {
891
+ name: "quoteOut",
892
+ type: "uint256",
893
+ internalType: "uint256",
894
+ },
895
+ ],
896
+ stateMutability: "nonpayable",
897
+ },
898
+ {
899
+ name: "cancelOwnershipHandover",
900
+ type: "function",
901
+ inputs: [],
902
+ outputs: [],
903
+ stateMutability: "payable",
904
+ },
905
+ {
906
+ name: "completeOwnershipHandover",
907
+ type: "function",
908
+ inputs: [
909
+ {
910
+ name: "pendingOwner",
911
+ type: "address",
912
+ internalType: "address",
913
+ },
914
+ ],
915
+ outputs: [],
916
+ stateMutability: "payable",
917
+ },
918
+ {
919
+ name: "currentVaults",
920
+ type: "function",
921
+ inputs: [],
922
+ outputs: [
923
+ {
924
+ name: "baseVault",
925
+ type: "address",
926
+ internalType: "address",
927
+ },
928
+ {
929
+ name: "quoteVault",
930
+ type: "address",
931
+ internalType: "address",
932
+ },
933
+ ],
934
+ stateMutability: "view",
935
+ },
936
+ {
937
+ name: "decimals",
938
+ type: "function",
939
+ inputs: [],
940
+ outputs: [
941
+ {
942
+ name: "",
943
+ type: "uint8",
944
+ internalType: "uint8",
945
+ },
946
+ ],
947
+ stateMutability: "view",
948
+ },
949
+ {
950
+ name: "feeData",
951
+ type: "function",
952
+ inputs: [],
953
+ outputs: [
954
+ {
955
+ name: "managementFee",
956
+ type: "uint256",
957
+ internalType: "uint256",
958
+ },
959
+ {
960
+ name: "feeRecipient",
961
+ type: "address",
962
+ internalType: "address",
963
+ },
964
+ {
965
+ name: "pendingFeeShares",
966
+ type: "uint256",
967
+ internalType: "uint256",
968
+ },
969
+ ],
970
+ stateMutability: "view",
971
+ },
972
+ {
973
+ name: "getCurrentTickInfo",
974
+ type: "function",
975
+ inputs: [],
976
+ outputs: [
977
+ {
978
+ name: "currentTick",
979
+ type: "int256",
980
+ internalType: "Tick",
981
+ },
982
+ {
983
+ name: "isStatic",
984
+ type: "bool",
985
+ internalType: "bool",
986
+ },
987
+ {
988
+ name: "maxDeviation",
989
+ type: "uint16",
990
+ internalType: "uint16",
991
+ },
992
+ ],
993
+ stateMutability: "view",
994
+ },
995
+ {
996
+ name: "getMintAmounts",
997
+ type: "function",
998
+ inputs: [
999
+ {
1000
+ name: "baseAmountMax",
1001
+ type: "uint256",
1002
+ internalType: "uint256",
1003
+ },
1004
+ {
1005
+ name: "quoteAmountMax",
1006
+ type: "uint256",
1007
+ internalType: "uint256",
1008
+ },
1009
+ ],
1010
+ outputs: [
1011
+ {
1012
+ name: "sharesOut",
1013
+ type: "uint256",
1014
+ internalType: "uint256",
1015
+ },
1016
+ {
1017
+ name: "baseIn",
1018
+ type: "uint256",
1019
+ internalType: "uint256",
1020
+ },
1021
+ {
1022
+ name: "quoteIn",
1023
+ type: "uint256",
1024
+ internalType: "uint256",
1025
+ },
1026
+ ],
1027
+ stateMutability: "view",
1028
+ },
1029
+ {
1030
+ name: "guardian",
1031
+ type: "function",
1032
+ inputs: [],
1033
+ outputs: [
1034
+ {
1035
+ name: "",
1036
+ type: "address",
1037
+ internalType: "address",
1038
+ },
1039
+ ],
1040
+ stateMutability: "view",
1041
+ },
1042
+ {
1043
+ name: "isWhitelisted",
1044
+ type: "function",
1045
+ inputs: [
1046
+ {
1047
+ name: "",
1048
+ type: "address",
1049
+ internalType: "address",
1050
+ },
1051
+ ],
1052
+ outputs: [
1053
+ {
1054
+ name: "",
1055
+ type: "bool",
1056
+ internalType: "bool",
1057
+ },
1058
+ ],
1059
+ stateMutability: "view",
1060
+ },
1061
+ {
1062
+ name: "kandelBalances",
1063
+ type: "function",
1064
+ inputs: [],
1065
+ outputs: [
1066
+ {
1067
+ name: "baseBalance",
1068
+ type: "uint256",
1069
+ internalType: "uint256",
1070
+ },
1071
+ {
1072
+ name: "quoteBalance",
1073
+ type: "uint256",
1074
+ internalType: "uint256",
1075
+ },
1076
+ ],
1077
+ stateMutability: "view",
1078
+ },
1079
+ {
1080
+ name: "manager",
1081
+ type: "function",
1082
+ inputs: [],
1083
+ outputs: [
1084
+ {
1085
+ name: "",
1086
+ type: "address",
1087
+ internalType: "address",
1088
+ },
1089
+ ],
1090
+ stateMutability: "view",
1091
+ },
1092
+ {
1093
+ name: "market",
1094
+ type: "function",
1095
+ inputs: [],
1096
+ outputs: [
1097
+ {
1098
+ name: "base",
1099
+ type: "address",
1100
+ internalType: "address",
1101
+ },
1102
+ {
1103
+ name: "quote",
1104
+ type: "address",
1105
+ internalType: "address",
1106
+ },
1107
+ {
1108
+ name: "tickSpacing",
1109
+ type: "uint256",
1110
+ internalType: "uint256",
1111
+ },
1112
+ ],
1113
+ stateMutability: "view",
1114
+ },
1115
+ {
1116
+ name: "maxMintAmounts",
1117
+ type: "function",
1118
+ inputs: [],
1119
+ outputs: [
1120
+ {
1121
+ name: "maxBase",
1122
+ type: "uint128",
1123
+ internalType: "uint128",
1124
+ },
1125
+ {
1126
+ name: "maxQuote",
1127
+ type: "uint128",
1128
+ internalType: "uint128",
1129
+ },
1130
+ ],
1131
+ stateMutability: "view",
1132
+ },
1133
+ {
1134
+ name: "mint",
1135
+ type: "function",
1136
+ inputs: [
1137
+ {
1138
+ name: "to",
1139
+ type: "address",
1140
+ internalType: "address",
1141
+ },
1142
+ {
1143
+ name: "baseAmountMax",
1144
+ type: "uint256",
1145
+ internalType: "uint256",
1146
+ },
1147
+ {
1148
+ name: "quoteAmountMax",
1149
+ type: "uint256",
1150
+ internalType: "uint256",
1151
+ },
1152
+ {
1153
+ name: "minSharesOut",
1154
+ type: "uint256",
1155
+ internalType: "uint256",
1156
+ },
1157
+ ],
1158
+ outputs: [
1159
+ {
1160
+ name: "sharesOut",
1161
+ type: "uint256",
1162
+ internalType: "uint256",
1163
+ },
1164
+ {
1165
+ name: "baseIn",
1166
+ type: "uint256",
1167
+ internalType: "uint256",
1168
+ },
1169
+ {
1170
+ name: "quoteIn",
1171
+ type: "uint256",
1172
+ internalType: "uint256",
1173
+ },
1174
+ ],
1175
+ stateMutability: "nonpayable",
1176
+ },
1177
+ {
1178
+ name: "name",
1179
+ type: "function",
1180
+ inputs: [],
1181
+ outputs: [
1182
+ {
1183
+ name: "",
1184
+ type: "string",
1185
+ internalType: "string",
1186
+ },
1187
+ ],
1188
+ stateMutability: "view",
1189
+ },
1190
+ {
1191
+ name: "nonces",
1192
+ type: "function",
1193
+ inputs: [
1194
+ {
1195
+ name: "owner",
1196
+ type: "address",
1197
+ internalType: "address",
1198
+ },
1199
+ ],
1200
+ outputs: [
1201
+ {
1202
+ name: "result",
1203
+ type: "uint256",
1204
+ internalType: "uint256",
1205
+ },
1206
+ ],
1207
+ stateMutability: "view",
1208
+ },
1209
+ {
1210
+ name: "oracle",
1211
+ type: "function",
1212
+ inputs: [],
1213
+ outputs: [
1214
+ {
1215
+ name: "isStatic",
1216
+ type: "bool",
1217
+ internalType: "bool",
1218
+ },
1219
+ {
1220
+ name: "oracle",
1221
+ type: "address",
1222
+ internalType: "contract IOracle",
1223
+ },
1224
+ {
1225
+ name: "staticValue",
1226
+ type: "int24",
1227
+ internalType: "int24",
1228
+ },
1229
+ {
1230
+ name: "maxDeviation",
1231
+ type: "uint16",
1232
+ internalType: "uint16",
1233
+ },
1234
+ {
1235
+ name: "proposedAt",
1236
+ type: "uint40",
1237
+ internalType: "uint40",
1238
+ },
1239
+ {
1240
+ name: "timelockMinutes",
1241
+ type: "uint8",
1242
+ internalType: "uint8",
1243
+ },
1244
+ ],
1245
+ stateMutability: "view",
1246
+ },
1247
+ {
1248
+ name: "owner",
1249
+ type: "function",
1250
+ inputs: [],
1251
+ outputs: [
1252
+ {
1253
+ name: "result",
1254
+ type: "address",
1255
+ internalType: "address",
1256
+ },
1257
+ ],
1258
+ stateMutability: "view",
1259
+ },
1260
+ {
1261
+ name: "ownershipHandoverExpiresAt",
1262
+ type: "function",
1263
+ inputs: [
1264
+ {
1265
+ name: "pendingOwner",
1266
+ type: "address",
1267
+ internalType: "address",
1268
+ },
1269
+ ],
1270
+ outputs: [
1271
+ {
1272
+ name: "result",
1273
+ type: "uint256",
1274
+ internalType: "uint256",
1275
+ },
1276
+ ],
1277
+ stateMutability: "view",
1278
+ },
1279
+ {
1280
+ name: "permit",
1281
+ type: "function",
1282
+ inputs: [
1283
+ {
1284
+ name: "owner",
1285
+ type: "address",
1286
+ internalType: "address",
1287
+ },
1288
+ {
1289
+ name: "spender",
1290
+ type: "address",
1291
+ internalType: "address",
1292
+ },
1293
+ {
1294
+ name: "value",
1295
+ type: "uint256",
1296
+ internalType: "uint256",
1297
+ },
1298
+ {
1299
+ name: "deadline",
1300
+ type: "uint256",
1301
+ internalType: "uint256",
1302
+ },
1303
+ {
1304
+ name: "v",
1305
+ type: "uint8",
1306
+ internalType: "uint8",
1307
+ },
1308
+ {
1309
+ name: "r",
1310
+ type: "bytes32",
1311
+ internalType: "bytes32",
1312
+ },
1313
+ {
1314
+ name: "s",
1315
+ type: "bytes32",
1316
+ internalType: "bytes32",
1317
+ },
1318
+ ],
1319
+ outputs: [],
1320
+ stateMutability: "nonpayable",
1321
+ },
1322
+ {
1323
+ name: "populateChunkFromOffset",
1324
+ type: "function",
1325
+ inputs: [
1326
+ {
1327
+ name: "from",
1328
+ type: "uint256",
1329
+ internalType: "uint256",
1330
+ },
1331
+ {
1332
+ name: "to",
1333
+ type: "uint256",
1334
+ internalType: "uint256",
1335
+ },
1336
+ {
1337
+ name: "baseQuoteTickIndex0",
1338
+ type: "int256",
1339
+ internalType: "Tick",
1340
+ },
1341
+ {
1342
+ name: "firstAskIndex",
1343
+ type: "uint256",
1344
+ internalType: "uint256",
1345
+ },
1346
+ {
1347
+ name: "bidGives",
1348
+ type: "uint256",
1349
+ internalType: "uint256",
1350
+ },
1351
+ {
1352
+ name: "askGives",
1353
+ type: "uint256",
1354
+ internalType: "uint256",
1355
+ },
1356
+ ],
1357
+ outputs: [],
1358
+ stateMutability: "nonpayable",
1359
+ },
1360
+ {
1361
+ name: "populateFromOffset",
1362
+ type: "function",
1363
+ inputs: [
1364
+ {
1365
+ name: "from",
1366
+ type: "uint256",
1367
+ internalType: "uint256",
1368
+ },
1369
+ {
1370
+ name: "to",
1371
+ type: "uint256",
1372
+ internalType: "uint256",
1373
+ },
1374
+ {
1375
+ name: "baseQuoteTickIndex0",
1376
+ type: "int256",
1377
+ internalType: "Tick",
1378
+ },
1379
+ {
1380
+ name: "_baseQuoteTickOffset",
1381
+ type: "uint256",
1382
+ internalType: "uint256",
1383
+ },
1384
+ {
1385
+ name: "firstAskIndex",
1386
+ type: "uint256",
1387
+ internalType: "uint256",
1388
+ },
1389
+ {
1390
+ name: "bidGives",
1391
+ type: "uint256",
1392
+ internalType: "uint256",
1393
+ },
1394
+ {
1395
+ name: "askGives",
1396
+ type: "uint256",
1397
+ internalType: "uint256",
1398
+ },
1399
+ {
1400
+ name: "parameters",
1401
+ type: "tuple",
1402
+ components: [
1403
+ {
1404
+ name: "gasprice",
1405
+ type: "uint32",
1406
+ internalType: "uint32",
1407
+ },
1408
+ {
1409
+ name: "gasreq",
1410
+ type: "uint24",
1411
+ internalType: "uint24",
1412
+ },
1413
+ {
1414
+ name: "stepSize",
1415
+ type: "uint32",
1416
+ internalType: "uint32",
1417
+ },
1418
+ {
1419
+ name: "pricePoints",
1420
+ type: "uint32",
1421
+ internalType: "uint32",
1422
+ },
1423
+ ],
1424
+ internalType: "struct CoreKandel.Params",
1425
+ },
1426
+ ],
1427
+ outputs: [],
1428
+ stateMutability: "payable",
1429
+ },
1430
+ {
1431
+ name: "proposeOracle",
1432
+ type: "function",
1433
+ inputs: [
1434
+ {
1435
+ name: "_oracle",
1436
+ type: "tuple",
1437
+ components: [
1438
+ {
1439
+ name: "isStatic",
1440
+ type: "bool",
1441
+ internalType: "bool",
1442
+ },
1443
+ {
1444
+ name: "oracle",
1445
+ type: "address",
1446
+ internalType: "contract IOracle",
1447
+ },
1448
+ {
1449
+ name: "staticValue",
1450
+ type: "int24",
1451
+ internalType: "int24",
1452
+ },
1453
+ {
1454
+ name: "maxDeviation",
1455
+ type: "uint16",
1456
+ internalType: "uint16",
1457
+ },
1458
+ {
1459
+ name: "proposedAt",
1460
+ type: "uint40",
1461
+ internalType: "uint40",
1462
+ },
1463
+ {
1464
+ name: "timelockMinutes",
1465
+ type: "uint8",
1466
+ internalType: "uint8",
1467
+ },
1468
+ ],
1469
+ internalType: "struct OracleData",
1470
+ },
1471
+ ],
1472
+ outputs: [],
1473
+ stateMutability: "nonpayable",
1474
+ },
1475
+ {
1476
+ name: "proposeWhitelist",
1477
+ type: "function",
1478
+ inputs: [
1479
+ {
1480
+ name: "_address",
1481
+ type: "address",
1482
+ internalType: "address",
1483
+ },
1484
+ ],
1485
+ outputs: [],
1486
+ stateMutability: "nonpayable",
1487
+ },
1488
+ {
1489
+ name: "proposedOracle",
1490
+ type: "function",
1491
+ inputs: [],
1492
+ outputs: [
1493
+ {
1494
+ name: "isStatic",
1495
+ type: "bool",
1496
+ internalType: "bool",
1497
+ },
1498
+ {
1499
+ name: "oracle",
1500
+ type: "address",
1501
+ internalType: "contract IOracle",
1502
+ },
1503
+ {
1504
+ name: "staticValue",
1505
+ type: "int24",
1506
+ internalType: "int24",
1507
+ },
1508
+ {
1509
+ name: "maxDeviation",
1510
+ type: "uint16",
1511
+ internalType: "uint16",
1512
+ },
1513
+ {
1514
+ name: "proposedAt",
1515
+ type: "uint40",
1516
+ internalType: "uint40",
1517
+ },
1518
+ {
1519
+ name: "timelockMinutes",
1520
+ type: "uint8",
1521
+ internalType: "uint8",
1522
+ },
1523
+ ],
1524
+ stateMutability: "view",
1525
+ },
1526
+ {
1527
+ name: "rebalance",
1528
+ type: "function",
1529
+ inputs: [
1530
+ {
1531
+ name: "_params",
1532
+ type: "tuple",
1533
+ components: [
1534
+ {
1535
+ name: "isSell",
1536
+ type: "bool",
1537
+ internalType: "bool",
1538
+ },
1539
+ {
1540
+ name: "amountIn",
1541
+ type: "uint256",
1542
+ internalType: "uint256",
1543
+ },
1544
+ {
1545
+ name: "amountInKandel",
1546
+ type: "uint256",
1547
+ internalType: "uint256",
1548
+ },
1549
+ {
1550
+ name: "minAmountOut",
1551
+ type: "uint256",
1552
+ internalType: "uint256",
1553
+ },
1554
+ {
1555
+ name: "target",
1556
+ type: "address",
1557
+ internalType: "address",
1558
+ },
1559
+ {
1560
+ name: "data",
1561
+ type: "bytes",
1562
+ internalType: "bytes",
1563
+ },
1564
+ ],
1565
+ internalType: "struct KandelManagementRebalancing.RebalanceParams",
1566
+ },
1567
+ ],
1568
+ outputs: [
1569
+ {
1570
+ name: "sent",
1571
+ type: "uint256",
1572
+ internalType: "uint256",
1573
+ },
1574
+ {
1575
+ name: "received",
1576
+ type: "uint256",
1577
+ internalType: "uint256",
1578
+ },
1579
+ {
1580
+ name: "callResult",
1581
+ type: "bytes",
1582
+ internalType: "bytes",
1583
+ },
1584
+ ],
1585
+ stateMutability: "payable",
1586
+ },
1587
+ {
1588
+ name: "rejectOracle",
1589
+ type: "function",
1590
+ inputs: [],
1591
+ outputs: [],
1592
+ stateMutability: "nonpayable",
1593
+ },
1594
+ {
1595
+ name: "rejectWhitelist",
1596
+ type: "function",
1597
+ inputs: [
1598
+ {
1599
+ name: "_address",
1600
+ type: "address",
1601
+ internalType: "address",
1602
+ },
1603
+ ],
1604
+ outputs: [],
1605
+ stateMutability: "nonpayable",
1606
+ },
1607
+ {
1608
+ name: "renounceOwnership",
1609
+ type: "function",
1610
+ inputs: [],
1611
+ outputs: [],
1612
+ stateMutability: "payable",
1613
+ },
1614
+ {
1615
+ name: "requestOwnershipHandover",
1616
+ type: "function",
1617
+ inputs: [],
1618
+ outputs: [],
1619
+ stateMutability: "payable",
1620
+ },
1621
+ {
1622
+ name: "retractOffers",
1623
+ type: "function",
1624
+ inputs: [
1625
+ {
1626
+ name: "from",
1627
+ type: "uint256",
1628
+ internalType: "uint256",
1629
+ },
1630
+ {
1631
+ name: "to",
1632
+ type: "uint256",
1633
+ internalType: "uint256",
1634
+ },
1635
+ {
1636
+ name: "baseAmount",
1637
+ type: "uint256",
1638
+ internalType: "uint256",
1639
+ },
1640
+ {
1641
+ name: "quoteAmount",
1642
+ type: "uint256",
1643
+ internalType: "uint256",
1644
+ },
1645
+ {
1646
+ name: "withdrawProvisions",
1647
+ type: "bool",
1648
+ internalType: "bool",
1649
+ },
1650
+ {
1651
+ name: "recipient",
1652
+ type: "address",
1653
+ internalType: "address",
1654
+ },
1655
+ ],
1656
+ outputs: [],
1657
+ stateMutability: "nonpayable",
1658
+ },
1659
+ {
1660
+ name: "setFeeData",
1661
+ type: "function",
1662
+ inputs: [
1663
+ {
1664
+ name: "_feeRecipient",
1665
+ type: "address",
1666
+ internalType: "address",
1667
+ },
1668
+ {
1669
+ name: "_managementFee",
1670
+ type: "uint16",
1671
+ internalType: "uint16",
1672
+ },
1673
+ ],
1674
+ outputs: [],
1675
+ stateMutability: "nonpayable",
1676
+ },
1677
+ {
1678
+ name: "setGuardian",
1679
+ type: "function",
1680
+ inputs: [
1681
+ {
1682
+ name: "newGuardian",
1683
+ type: "address",
1684
+ internalType: "address",
1685
+ },
1686
+ ],
1687
+ outputs: [],
1688
+ stateMutability: "nonpayable",
1689
+ },
1690
+ {
1691
+ name: "setManager",
1692
+ type: "function",
1693
+ inputs: [
1694
+ {
1695
+ name: "_manager",
1696
+ type: "address",
1697
+ internalType: "address",
1698
+ },
1699
+ ],
1700
+ outputs: [],
1701
+ stateMutability: "nonpayable",
1702
+ },
1703
+ {
1704
+ name: "setMaxMintAmounts",
1705
+ type: "function",
1706
+ inputs: [
1707
+ {
1708
+ name: "maxBase",
1709
+ type: "uint128",
1710
+ internalType: "uint128",
1711
+ },
1712
+ {
1713
+ name: "maxQuote",
1714
+ type: "uint128",
1715
+ internalType: "uint128",
1716
+ },
1717
+ ],
1718
+ outputs: [],
1719
+ stateMutability: "nonpayable",
1720
+ },
1721
+ {
1722
+ name: "setPaused",
1723
+ type: "function",
1724
+ inputs: [
1725
+ {
1726
+ name: "_paused",
1727
+ type: "bool",
1728
+ internalType: "bool",
1729
+ },
1730
+ ],
1731
+ outputs: [],
1732
+ stateMutability: "nonpayable",
1733
+ },
1734
+ {
1735
+ name: "setVaultForToken",
1736
+ type: "function",
1737
+ inputs: [
1738
+ {
1739
+ name: "token",
1740
+ type: "address",
1741
+ internalType: "address",
1742
+ },
1743
+ {
1744
+ name: "vault",
1745
+ type: "address",
1746
+ internalType: "address",
1747
+ },
1748
+ {
1749
+ name: "minAssetsOut",
1750
+ type: "uint256",
1751
+ internalType: "uint256",
1752
+ },
1753
+ {
1754
+ name: "minSharesOut",
1755
+ type: "uint256",
1756
+ internalType: "uint256",
1757
+ },
1758
+ ],
1759
+ outputs: [],
1760
+ stateMutability: "nonpayable",
1761
+ },
1762
+ {
1763
+ name: "state",
1764
+ type: "function",
1765
+ inputs: [],
1766
+ outputs: [
1767
+ {
1768
+ name: "inKandel",
1769
+ type: "bool",
1770
+ internalType: "bool",
1771
+ },
1772
+ {
1773
+ name: "feeRecipient",
1774
+ type: "address",
1775
+ internalType: "address",
1776
+ },
1777
+ {
1778
+ name: "managementFee",
1779
+ type: "uint16",
1780
+ internalType: "uint16",
1781
+ },
1782
+ {
1783
+ name: "lastTimestamp",
1784
+ type: "uint40",
1785
+ internalType: "uint40",
1786
+ },
1787
+ {
1788
+ name: "paused",
1789
+ type: "bool",
1790
+ internalType: "bool",
1791
+ },
1792
+ ],
1793
+ stateMutability: "view",
1794
+ },
1795
+ {
1796
+ name: "symbol",
1797
+ type: "function",
1798
+ inputs: [],
1799
+ outputs: [
1800
+ {
1801
+ name: "",
1802
+ type: "string",
1803
+ internalType: "string",
1804
+ },
1805
+ ],
1806
+ stateMutability: "view",
1807
+ },
1808
+ {
1809
+ name: "totalBalances",
1810
+ type: "function",
1811
+ inputs: [],
1812
+ outputs: [
1813
+ {
1814
+ name: "baseBalance",
1815
+ type: "uint256",
1816
+ internalType: "uint256",
1817
+ },
1818
+ {
1819
+ name: "quoteBalance",
1820
+ type: "uint256",
1821
+ internalType: "uint256",
1822
+ },
1823
+ ],
1824
+ stateMutability: "view",
1825
+ },
1826
+ {
1827
+ name: "totalSupply",
1828
+ type: "function",
1829
+ inputs: [],
1830
+ outputs: [
1831
+ {
1832
+ name: "result",
1833
+ type: "uint256",
1834
+ internalType: "uint256",
1835
+ },
1836
+ ],
1837
+ stateMutability: "view",
1838
+ },
1839
+ {
1840
+ name: "transfer",
1841
+ type: "function",
1842
+ inputs: [
1843
+ {
1844
+ name: "to",
1845
+ type: "address",
1846
+ internalType: "address",
1847
+ },
1848
+ {
1849
+ name: "amount",
1850
+ type: "uint256",
1851
+ internalType: "uint256",
1852
+ },
1853
+ ],
1854
+ outputs: [
1855
+ {
1856
+ name: "",
1857
+ type: "bool",
1858
+ internalType: "bool",
1859
+ },
1860
+ ],
1861
+ stateMutability: "nonpayable",
1862
+ },
1863
+ {
1864
+ name: "transferFrom",
1865
+ type: "function",
1866
+ inputs: [
1867
+ {
1868
+ name: "from",
1869
+ type: "address",
1870
+ internalType: "address",
1871
+ },
1872
+ {
1873
+ name: "to",
1874
+ type: "address",
1875
+ internalType: "address",
1876
+ },
1877
+ {
1878
+ name: "amount",
1879
+ type: "uint256",
1880
+ internalType: "uint256",
1881
+ },
1882
+ ],
1883
+ outputs: [
1884
+ {
1885
+ name: "",
1886
+ type: "bool",
1887
+ internalType: "bool",
1888
+ },
1889
+ ],
1890
+ stateMutability: "nonpayable",
1891
+ },
1892
+ {
1893
+ name: "transferOwnership",
1894
+ type: "function",
1895
+ inputs: [
1896
+ {
1897
+ name: "newOwner",
1898
+ type: "address",
1899
+ internalType: "address",
1900
+ },
1901
+ ],
1902
+ outputs: [],
1903
+ stateMutability: "payable",
1904
+ },
1905
+ {
1906
+ name: "vaultBalances",
1907
+ type: "function",
1908
+ inputs: [],
1909
+ outputs: [
1910
+ {
1911
+ name: "baseBalance",
1912
+ type: "uint256",
1913
+ internalType: "uint256",
1914
+ },
1915
+ {
1916
+ name: "quoteBalance",
1917
+ type: "uint256",
1918
+ internalType: "uint256",
1919
+ },
1920
+ ],
1921
+ stateMutability: "view",
1922
+ },
1923
+ {
1924
+ name: "whitelistProposedAt",
1925
+ type: "function",
1926
+ inputs: [
1927
+ {
1928
+ name: "",
1929
+ type: "address",
1930
+ internalType: "address",
1931
+ },
1932
+ ],
1933
+ outputs: [
1934
+ {
1935
+ name: "",
1936
+ type: "uint40",
1937
+ internalType: "uint40",
1938
+ },
1939
+ ],
1940
+ stateMutability: "view",
1941
+ },
1942
+ {
1943
+ name: "withdrawFromMangrove",
1944
+ type: "function",
1945
+ inputs: [
1946
+ {
1947
+ name: "freeWei",
1948
+ type: "uint256",
1949
+ internalType: "uint256",
1950
+ },
1951
+ {
1952
+ name: "recipient",
1953
+ type: "address",
1954
+ internalType: "address payable",
1955
+ },
1956
+ ],
1957
+ outputs: [],
1958
+ stateMutability: "nonpayable",
1959
+ },
1960
+ {
1961
+ name: "withdrawFunds",
1962
+ type: "function",
1963
+ inputs: [
1964
+ {
1965
+ name: "baseAmount",
1966
+ type: "uint256",
1967
+ internalType: "uint256",
1968
+ },
1969
+ {
1970
+ name: "quoteAmount",
1971
+ type: "uint256",
1972
+ internalType: "uint256",
1973
+ },
1974
+ ],
1975
+ outputs: [],
1976
+ stateMutability: "nonpayable",
1977
+ },
1978
+ {
1979
+ type: "receive",
1980
+ stateMutability: "payable",
1981
+ },
1982
+ ];
1983
+ export class MangroveVault__factory {
1984
+ static abi = _abi;
1985
+ static createInterface() {
1986
+ return new utils.Interface(_abi);
1987
+ }
1988
+ static connect(address, signerOrProvider) {
1989
+ return new Contract(address, _abi, signerOrProvider);
1990
+ }
1991
+ }
1992
+ //# sourceMappingURL=MangroveVault__factory.js.map