@merkl/contracts 0.10.6 → 0.10.8

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