@merkl/contracts 1.2.48 → 1.2.50

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 (31) hide show
  1. package/dist/src/AlgebraIntegralPoolFactoryV10.d.ts +706 -0
  2. package/dist/src/AlgebraIntegralPoolFactoryV10.js +2 -0
  3. package/dist/src/AlgebraIntegralPoolFactoryV10.js.map +1 -0
  4. package/dist/src/AlgebraIntegralV10NonFungibleManager.d.ts +875 -0
  5. package/dist/src/AlgebraIntegralV10NonFungibleManager.js +2 -0
  6. package/dist/src/AlgebraIntegralV10NonFungibleManager.js.map +1 -0
  7. package/dist/src/AlgebraIntegralV10Pool.d.ts +817 -0
  8. package/dist/src/AlgebraIntegralV10Pool.js +2 -0
  9. package/dist/src/AlgebraIntegralV10Pool.js.map +1 -0
  10. package/dist/src/AlgebraPoolFactoryV10.d.ts +706 -0
  11. package/dist/src/AlgebraPoolFactoryV10.js +2 -0
  12. package/dist/src/AlgebraPoolFactoryV10.js.map +1 -0
  13. package/dist/src/factories/AlgebraIntegralPoolFactoryV10__factory.d.ts +711 -0
  14. package/dist/src/factories/AlgebraIntegralPoolFactoryV10__factory.js +927 -0
  15. package/dist/src/factories/AlgebraIntegralPoolFactoryV10__factory.js.map +1 -0
  16. package/dist/src/factories/AlgebraIntegralV10NonFungibleManager__factory.d.ts +966 -0
  17. package/dist/src/factories/AlgebraIntegralV10NonFungibleManager__factory.js +1250 -0
  18. package/dist/src/factories/AlgebraIntegralV10NonFungibleManager__factory.js.map +1 -0
  19. package/dist/src/factories/AlgebraIntegralV10Pool__factory.d.ts +821 -0
  20. package/dist/src/factories/AlgebraIntegralV10Pool__factory.js +1055 -0
  21. package/dist/src/factories/AlgebraIntegralV10Pool__factory.js.map +1 -0
  22. package/dist/src/factories/AlgebraPoolFactoryV10__factory.d.ts +711 -0
  23. package/dist/src/factories/AlgebraPoolFactoryV10__factory.js +927 -0
  24. package/dist/src/factories/AlgebraPoolFactoryV10__factory.js.map +1 -0
  25. package/dist/src/factories/index.d.ts +3 -0
  26. package/dist/src/factories/index.js +3 -0
  27. package/dist/src/factories/index.js.map +1 -1
  28. package/dist/src/index.d.ts +8 -0
  29. package/dist/src/index.js +8 -0
  30. package/dist/src/index.js.map +1 -1
  31. package/package.json +1 -1
@@ -0,0 +1,1055 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ import { Contract, utils } from "ethers";
5
+ const _abi = [
6
+ {
7
+ inputs: [],
8
+ stateMutability: "nonpayable",
9
+ type: "constructor",
10
+ },
11
+ {
12
+ anonymous: false,
13
+ inputs: [
14
+ {
15
+ indexed: true,
16
+ internalType: "address",
17
+ name: "owner",
18
+ type: "address",
19
+ },
20
+ {
21
+ indexed: true,
22
+ internalType: "int24",
23
+ name: "bottomTick",
24
+ type: "int24",
25
+ },
26
+ {
27
+ indexed: true,
28
+ internalType: "int24",
29
+ name: "topTick",
30
+ type: "int24",
31
+ },
32
+ {
33
+ indexed: false,
34
+ internalType: "uint128",
35
+ name: "liquidityAmount",
36
+ type: "uint128",
37
+ },
38
+ {
39
+ indexed: false,
40
+ internalType: "uint256",
41
+ name: "amount0",
42
+ type: "uint256",
43
+ },
44
+ {
45
+ indexed: false,
46
+ internalType: "uint256",
47
+ name: "amount1",
48
+ type: "uint256",
49
+ },
50
+ ],
51
+ name: "Burn",
52
+ type: "event",
53
+ },
54
+ {
55
+ anonymous: false,
56
+ inputs: [
57
+ {
58
+ indexed: true,
59
+ internalType: "address",
60
+ name: "owner",
61
+ type: "address",
62
+ },
63
+ {
64
+ indexed: false,
65
+ internalType: "address",
66
+ name: "recipient",
67
+ type: "address",
68
+ },
69
+ {
70
+ indexed: true,
71
+ internalType: "int24",
72
+ name: "bottomTick",
73
+ type: "int24",
74
+ },
75
+ {
76
+ indexed: true,
77
+ internalType: "int24",
78
+ name: "topTick",
79
+ type: "int24",
80
+ },
81
+ {
82
+ indexed: false,
83
+ internalType: "uint128",
84
+ name: "amount0",
85
+ type: "uint128",
86
+ },
87
+ {
88
+ indexed: false,
89
+ internalType: "uint128",
90
+ name: "amount1",
91
+ type: "uint128",
92
+ },
93
+ ],
94
+ name: "Collect",
95
+ type: "event",
96
+ },
97
+ {
98
+ anonymous: false,
99
+ inputs: [
100
+ {
101
+ indexed: false,
102
+ internalType: "uint8",
103
+ name: "communityFee0New",
104
+ type: "uint8",
105
+ },
106
+ {
107
+ indexed: false,
108
+ internalType: "uint8",
109
+ name: "communityFee1New",
110
+ type: "uint8",
111
+ },
112
+ ],
113
+ name: "CommunityFee",
114
+ type: "event",
115
+ },
116
+ {
117
+ anonymous: false,
118
+ inputs: [
119
+ {
120
+ indexed: false,
121
+ internalType: "uint16",
122
+ name: "fee",
123
+ type: "uint16",
124
+ },
125
+ ],
126
+ name: "Fee",
127
+ type: "event",
128
+ },
129
+ {
130
+ anonymous: false,
131
+ inputs: [
132
+ {
133
+ indexed: true,
134
+ internalType: "address",
135
+ name: "sender",
136
+ type: "address",
137
+ },
138
+ {
139
+ indexed: true,
140
+ internalType: "address",
141
+ name: "recipient",
142
+ type: "address",
143
+ },
144
+ {
145
+ indexed: false,
146
+ internalType: "uint256",
147
+ name: "amount0",
148
+ type: "uint256",
149
+ },
150
+ {
151
+ indexed: false,
152
+ internalType: "uint256",
153
+ name: "amount1",
154
+ type: "uint256",
155
+ },
156
+ {
157
+ indexed: false,
158
+ internalType: "uint256",
159
+ name: "paid0",
160
+ type: "uint256",
161
+ },
162
+ {
163
+ indexed: false,
164
+ internalType: "uint256",
165
+ name: "paid1",
166
+ type: "uint256",
167
+ },
168
+ ],
169
+ name: "Flash",
170
+ type: "event",
171
+ },
172
+ {
173
+ anonymous: false,
174
+ inputs: [
175
+ {
176
+ indexed: true,
177
+ internalType: "address",
178
+ name: "virtualPoolAddress",
179
+ type: "address",
180
+ },
181
+ ],
182
+ name: "Incentive",
183
+ type: "event",
184
+ },
185
+ {
186
+ anonymous: false,
187
+ inputs: [
188
+ {
189
+ indexed: false,
190
+ internalType: "uint160",
191
+ name: "price",
192
+ type: "uint160",
193
+ },
194
+ {
195
+ indexed: false,
196
+ internalType: "int24",
197
+ name: "tick",
198
+ type: "int24",
199
+ },
200
+ ],
201
+ name: "Initialize",
202
+ type: "event",
203
+ },
204
+ {
205
+ anonymous: false,
206
+ inputs: [
207
+ {
208
+ indexed: false,
209
+ internalType: "uint32",
210
+ name: "liquidityCooldown",
211
+ type: "uint32",
212
+ },
213
+ ],
214
+ name: "LiquidityCooldown",
215
+ type: "event",
216
+ },
217
+ {
218
+ anonymous: false,
219
+ inputs: [
220
+ {
221
+ indexed: false,
222
+ internalType: "address",
223
+ name: "sender",
224
+ type: "address",
225
+ },
226
+ {
227
+ indexed: true,
228
+ internalType: "address",
229
+ name: "owner",
230
+ type: "address",
231
+ },
232
+ {
233
+ indexed: true,
234
+ internalType: "int24",
235
+ name: "bottomTick",
236
+ type: "int24",
237
+ },
238
+ {
239
+ indexed: true,
240
+ internalType: "int24",
241
+ name: "topTick",
242
+ type: "int24",
243
+ },
244
+ {
245
+ indexed: false,
246
+ internalType: "uint128",
247
+ name: "liquidityAmount",
248
+ type: "uint128",
249
+ },
250
+ {
251
+ indexed: false,
252
+ internalType: "uint256",
253
+ name: "amount0",
254
+ type: "uint256",
255
+ },
256
+ {
257
+ indexed: false,
258
+ internalType: "uint256",
259
+ name: "amount1",
260
+ type: "uint256",
261
+ },
262
+ ],
263
+ name: "Mint",
264
+ type: "event",
265
+ },
266
+ {
267
+ anonymous: false,
268
+ inputs: [
269
+ {
270
+ indexed: true,
271
+ internalType: "address",
272
+ name: "sender",
273
+ type: "address",
274
+ },
275
+ {
276
+ indexed: true,
277
+ internalType: "address",
278
+ name: "recipient",
279
+ type: "address",
280
+ },
281
+ {
282
+ indexed: false,
283
+ internalType: "int256",
284
+ name: "amount0",
285
+ type: "int256",
286
+ },
287
+ {
288
+ indexed: false,
289
+ internalType: "int256",
290
+ name: "amount1",
291
+ type: "int256",
292
+ },
293
+ {
294
+ indexed: false,
295
+ internalType: "uint160",
296
+ name: "price",
297
+ type: "uint160",
298
+ },
299
+ {
300
+ indexed: false,
301
+ internalType: "uint128",
302
+ name: "liquidity",
303
+ type: "uint128",
304
+ },
305
+ {
306
+ indexed: false,
307
+ internalType: "int24",
308
+ name: "tick",
309
+ type: "int24",
310
+ },
311
+ ],
312
+ name: "Swap",
313
+ type: "event",
314
+ },
315
+ {
316
+ inputs: [],
317
+ name: "activeIncentive",
318
+ outputs: [
319
+ {
320
+ internalType: "address",
321
+ name: "",
322
+ type: "address",
323
+ },
324
+ ],
325
+ stateMutability: "view",
326
+ type: "function",
327
+ },
328
+ {
329
+ inputs: [
330
+ {
331
+ internalType: "int24",
332
+ name: "bottomTick",
333
+ type: "int24",
334
+ },
335
+ {
336
+ internalType: "int24",
337
+ name: "topTick",
338
+ type: "int24",
339
+ },
340
+ {
341
+ internalType: "uint128",
342
+ name: "amount",
343
+ type: "uint128",
344
+ },
345
+ ],
346
+ name: "burn",
347
+ outputs: [
348
+ {
349
+ internalType: "uint256",
350
+ name: "amount0",
351
+ type: "uint256",
352
+ },
353
+ {
354
+ internalType: "uint256",
355
+ name: "amount1",
356
+ type: "uint256",
357
+ },
358
+ ],
359
+ stateMutability: "nonpayable",
360
+ type: "function",
361
+ },
362
+ {
363
+ inputs: [
364
+ {
365
+ internalType: "address",
366
+ name: "recipient",
367
+ type: "address",
368
+ },
369
+ {
370
+ internalType: "int24",
371
+ name: "bottomTick",
372
+ type: "int24",
373
+ },
374
+ {
375
+ internalType: "int24",
376
+ name: "topTick",
377
+ type: "int24",
378
+ },
379
+ {
380
+ internalType: "uint128",
381
+ name: "amount0Requested",
382
+ type: "uint128",
383
+ },
384
+ {
385
+ internalType: "uint128",
386
+ name: "amount1Requested",
387
+ type: "uint128",
388
+ },
389
+ ],
390
+ name: "collect",
391
+ outputs: [
392
+ {
393
+ internalType: "uint128",
394
+ name: "amount0",
395
+ type: "uint128",
396
+ },
397
+ {
398
+ internalType: "uint128",
399
+ name: "amount1",
400
+ type: "uint128",
401
+ },
402
+ ],
403
+ stateMutability: "nonpayable",
404
+ type: "function",
405
+ },
406
+ {
407
+ inputs: [],
408
+ name: "dataStorageOperator",
409
+ outputs: [
410
+ {
411
+ internalType: "address",
412
+ name: "",
413
+ type: "address",
414
+ },
415
+ ],
416
+ stateMutability: "view",
417
+ type: "function",
418
+ },
419
+ {
420
+ inputs: [],
421
+ name: "factory",
422
+ outputs: [
423
+ {
424
+ internalType: "address",
425
+ name: "",
426
+ type: "address",
427
+ },
428
+ ],
429
+ stateMutability: "view",
430
+ type: "function",
431
+ },
432
+ {
433
+ inputs: [
434
+ {
435
+ internalType: "address",
436
+ name: "recipient",
437
+ type: "address",
438
+ },
439
+ {
440
+ internalType: "uint256",
441
+ name: "amount0",
442
+ type: "uint256",
443
+ },
444
+ {
445
+ internalType: "uint256",
446
+ name: "amount1",
447
+ type: "uint256",
448
+ },
449
+ {
450
+ internalType: "bytes",
451
+ name: "data",
452
+ type: "bytes",
453
+ },
454
+ ],
455
+ name: "flash",
456
+ outputs: [],
457
+ stateMutability: "nonpayable",
458
+ type: "function",
459
+ },
460
+ {
461
+ inputs: [
462
+ {
463
+ internalType: "int24",
464
+ name: "bottomTick",
465
+ type: "int24",
466
+ },
467
+ {
468
+ internalType: "int24",
469
+ name: "topTick",
470
+ type: "int24",
471
+ },
472
+ ],
473
+ name: "getInnerCumulatives",
474
+ outputs: [
475
+ {
476
+ internalType: "int56",
477
+ name: "innerTickCumulative",
478
+ type: "int56",
479
+ },
480
+ {
481
+ internalType: "uint160",
482
+ name: "innerSecondsSpentPerLiquidity",
483
+ type: "uint160",
484
+ },
485
+ {
486
+ internalType: "uint32",
487
+ name: "innerSecondsSpent",
488
+ type: "uint32",
489
+ },
490
+ ],
491
+ stateMutability: "view",
492
+ type: "function",
493
+ },
494
+ {
495
+ inputs: [
496
+ {
497
+ internalType: "uint32[]",
498
+ name: "secondsAgos",
499
+ type: "uint32[]",
500
+ },
501
+ ],
502
+ name: "getTimepoints",
503
+ outputs: [
504
+ {
505
+ internalType: "int56[]",
506
+ name: "tickCumulatives",
507
+ type: "int56[]",
508
+ },
509
+ {
510
+ internalType: "uint160[]",
511
+ name: "secondsPerLiquidityCumulatives",
512
+ type: "uint160[]",
513
+ },
514
+ {
515
+ internalType: "uint112[]",
516
+ name: "volatilityCumulatives",
517
+ type: "uint112[]",
518
+ },
519
+ {
520
+ internalType: "uint256[]",
521
+ name: "volumePerAvgLiquiditys",
522
+ type: "uint256[]",
523
+ },
524
+ ],
525
+ stateMutability: "view",
526
+ type: "function",
527
+ },
528
+ {
529
+ inputs: [],
530
+ name: "globalState",
531
+ outputs: [
532
+ {
533
+ internalType: "uint160",
534
+ name: "price",
535
+ type: "uint160",
536
+ },
537
+ {
538
+ internalType: "int24",
539
+ name: "tick",
540
+ type: "int24",
541
+ },
542
+ {
543
+ internalType: "uint16",
544
+ name: "fee",
545
+ type: "uint16",
546
+ },
547
+ {
548
+ internalType: "uint16",
549
+ name: "timepointIndex",
550
+ type: "uint16",
551
+ },
552
+ {
553
+ internalType: "uint8",
554
+ name: "communityFeeToken0",
555
+ type: "uint8",
556
+ },
557
+ {
558
+ internalType: "uint8",
559
+ name: "communityFeeToken1",
560
+ type: "uint8",
561
+ },
562
+ {
563
+ internalType: "bool",
564
+ name: "unlocked",
565
+ type: "bool",
566
+ },
567
+ ],
568
+ stateMutability: "view",
569
+ type: "function",
570
+ },
571
+ {
572
+ inputs: [
573
+ {
574
+ internalType: "uint160",
575
+ name: "initialPrice",
576
+ type: "uint160",
577
+ },
578
+ ],
579
+ name: "initialize",
580
+ outputs: [],
581
+ stateMutability: "nonpayable",
582
+ type: "function",
583
+ },
584
+ {
585
+ inputs: [],
586
+ name: "liquidity",
587
+ outputs: [
588
+ {
589
+ internalType: "uint128",
590
+ name: "",
591
+ type: "uint128",
592
+ },
593
+ ],
594
+ stateMutability: "view",
595
+ type: "function",
596
+ },
597
+ {
598
+ inputs: [],
599
+ name: "liquidityCooldown",
600
+ outputs: [
601
+ {
602
+ internalType: "uint32",
603
+ name: "",
604
+ type: "uint32",
605
+ },
606
+ ],
607
+ stateMutability: "view",
608
+ type: "function",
609
+ },
610
+ {
611
+ inputs: [],
612
+ name: "maxLiquidityPerTick",
613
+ outputs: [
614
+ {
615
+ internalType: "uint128",
616
+ name: "",
617
+ type: "uint128",
618
+ },
619
+ ],
620
+ stateMutability: "pure",
621
+ type: "function",
622
+ },
623
+ {
624
+ inputs: [
625
+ {
626
+ internalType: "address",
627
+ name: "sender",
628
+ type: "address",
629
+ },
630
+ {
631
+ internalType: "address",
632
+ name: "recipient",
633
+ type: "address",
634
+ },
635
+ {
636
+ internalType: "int24",
637
+ name: "bottomTick",
638
+ type: "int24",
639
+ },
640
+ {
641
+ internalType: "int24",
642
+ name: "topTick",
643
+ type: "int24",
644
+ },
645
+ {
646
+ internalType: "uint128",
647
+ name: "liquidityDesired",
648
+ type: "uint128",
649
+ },
650
+ {
651
+ internalType: "bytes",
652
+ name: "data",
653
+ type: "bytes",
654
+ },
655
+ ],
656
+ name: "mint",
657
+ outputs: [
658
+ {
659
+ internalType: "uint256",
660
+ name: "amount0",
661
+ type: "uint256",
662
+ },
663
+ {
664
+ internalType: "uint256",
665
+ name: "amount1",
666
+ type: "uint256",
667
+ },
668
+ {
669
+ internalType: "uint128",
670
+ name: "liquidityActual",
671
+ type: "uint128",
672
+ },
673
+ ],
674
+ stateMutability: "nonpayable",
675
+ type: "function",
676
+ },
677
+ {
678
+ inputs: [
679
+ {
680
+ internalType: "bytes32",
681
+ name: "",
682
+ type: "bytes32",
683
+ },
684
+ ],
685
+ name: "positions",
686
+ outputs: [
687
+ {
688
+ internalType: "uint128",
689
+ name: "liquidity",
690
+ type: "uint128",
691
+ },
692
+ {
693
+ internalType: "uint32",
694
+ name: "lastLiquidityAddTimestamp",
695
+ type: "uint32",
696
+ },
697
+ {
698
+ internalType: "uint256",
699
+ name: "innerFeeGrowth0Token",
700
+ type: "uint256",
701
+ },
702
+ {
703
+ internalType: "uint256",
704
+ name: "innerFeeGrowth1Token",
705
+ type: "uint256",
706
+ },
707
+ {
708
+ internalType: "uint128",
709
+ name: "fees0",
710
+ type: "uint128",
711
+ },
712
+ {
713
+ internalType: "uint128",
714
+ name: "fees1",
715
+ type: "uint128",
716
+ },
717
+ ],
718
+ stateMutability: "view",
719
+ type: "function",
720
+ },
721
+ {
722
+ inputs: [
723
+ {
724
+ internalType: "uint8",
725
+ name: "communityFee0",
726
+ type: "uint8",
727
+ },
728
+ {
729
+ internalType: "uint8",
730
+ name: "communityFee1",
731
+ type: "uint8",
732
+ },
733
+ ],
734
+ name: "setCommunityFee",
735
+ outputs: [],
736
+ stateMutability: "nonpayable",
737
+ type: "function",
738
+ },
739
+ {
740
+ inputs: [
741
+ {
742
+ internalType: "address",
743
+ name: "virtualPoolAddress",
744
+ type: "address",
745
+ },
746
+ ],
747
+ name: "setIncentive",
748
+ outputs: [],
749
+ stateMutability: "nonpayable",
750
+ type: "function",
751
+ },
752
+ {
753
+ inputs: [
754
+ {
755
+ internalType: "uint32",
756
+ name: "newLiquidityCooldown",
757
+ type: "uint32",
758
+ },
759
+ ],
760
+ name: "setLiquidityCooldown",
761
+ outputs: [],
762
+ stateMutability: "nonpayable",
763
+ type: "function",
764
+ },
765
+ {
766
+ inputs: [
767
+ {
768
+ internalType: "address",
769
+ name: "recipient",
770
+ type: "address",
771
+ },
772
+ {
773
+ internalType: "bool",
774
+ name: "zeroToOne",
775
+ type: "bool",
776
+ },
777
+ {
778
+ internalType: "int256",
779
+ name: "amountRequired",
780
+ type: "int256",
781
+ },
782
+ {
783
+ internalType: "uint160",
784
+ name: "limitSqrtPrice",
785
+ type: "uint160",
786
+ },
787
+ {
788
+ internalType: "bytes",
789
+ name: "data",
790
+ type: "bytes",
791
+ },
792
+ ],
793
+ name: "swap",
794
+ outputs: [
795
+ {
796
+ internalType: "int256",
797
+ name: "amount0",
798
+ type: "int256",
799
+ },
800
+ {
801
+ internalType: "int256",
802
+ name: "amount1",
803
+ type: "int256",
804
+ },
805
+ ],
806
+ stateMutability: "nonpayable",
807
+ type: "function",
808
+ },
809
+ {
810
+ inputs: [
811
+ {
812
+ internalType: "address",
813
+ name: "sender",
814
+ type: "address",
815
+ },
816
+ {
817
+ internalType: "address",
818
+ name: "recipient",
819
+ type: "address",
820
+ },
821
+ {
822
+ internalType: "bool",
823
+ name: "zeroToOne",
824
+ type: "bool",
825
+ },
826
+ {
827
+ internalType: "int256",
828
+ name: "amountRequired",
829
+ type: "int256",
830
+ },
831
+ {
832
+ internalType: "uint160",
833
+ name: "limitSqrtPrice",
834
+ type: "uint160",
835
+ },
836
+ {
837
+ internalType: "bytes",
838
+ name: "data",
839
+ type: "bytes",
840
+ },
841
+ ],
842
+ name: "swapSupportingFeeOnInputTokens",
843
+ outputs: [
844
+ {
845
+ internalType: "int256",
846
+ name: "amount0",
847
+ type: "int256",
848
+ },
849
+ {
850
+ internalType: "int256",
851
+ name: "amount1",
852
+ type: "int256",
853
+ },
854
+ ],
855
+ stateMutability: "nonpayable",
856
+ type: "function",
857
+ },
858
+ {
859
+ inputs: [],
860
+ name: "tickSpacing",
861
+ outputs: [
862
+ {
863
+ internalType: "int24",
864
+ name: "",
865
+ type: "int24",
866
+ },
867
+ ],
868
+ stateMutability: "pure",
869
+ type: "function",
870
+ },
871
+ {
872
+ inputs: [
873
+ {
874
+ internalType: "int16",
875
+ name: "",
876
+ type: "int16",
877
+ },
878
+ ],
879
+ name: "tickTable",
880
+ outputs: [
881
+ {
882
+ internalType: "uint256",
883
+ name: "",
884
+ type: "uint256",
885
+ },
886
+ ],
887
+ stateMutability: "view",
888
+ type: "function",
889
+ },
890
+ {
891
+ inputs: [
892
+ {
893
+ internalType: "int24",
894
+ name: "",
895
+ type: "int24",
896
+ },
897
+ ],
898
+ name: "ticks",
899
+ outputs: [
900
+ {
901
+ internalType: "uint128",
902
+ name: "liquidityTotal",
903
+ type: "uint128",
904
+ },
905
+ {
906
+ internalType: "int128",
907
+ name: "liquidityDelta",
908
+ type: "int128",
909
+ },
910
+ {
911
+ internalType: "uint256",
912
+ name: "outerFeeGrowth0Token",
913
+ type: "uint256",
914
+ },
915
+ {
916
+ internalType: "uint256",
917
+ name: "outerFeeGrowth1Token",
918
+ type: "uint256",
919
+ },
920
+ {
921
+ internalType: "int56",
922
+ name: "outerTickCumulative",
923
+ type: "int56",
924
+ },
925
+ {
926
+ internalType: "uint160",
927
+ name: "outerSecondsPerLiquidity",
928
+ type: "uint160",
929
+ },
930
+ {
931
+ internalType: "uint32",
932
+ name: "outerSecondsSpent",
933
+ type: "uint32",
934
+ },
935
+ {
936
+ internalType: "bool",
937
+ name: "initialized",
938
+ type: "bool",
939
+ },
940
+ ],
941
+ stateMutability: "view",
942
+ type: "function",
943
+ },
944
+ {
945
+ inputs: [
946
+ {
947
+ internalType: "uint256",
948
+ name: "index",
949
+ type: "uint256",
950
+ },
951
+ ],
952
+ name: "timepoints",
953
+ outputs: [
954
+ {
955
+ internalType: "bool",
956
+ name: "initialized",
957
+ type: "bool",
958
+ },
959
+ {
960
+ internalType: "uint32",
961
+ name: "blockTimestamp",
962
+ type: "uint32",
963
+ },
964
+ {
965
+ internalType: "int56",
966
+ name: "tickCumulative",
967
+ type: "int56",
968
+ },
969
+ {
970
+ internalType: "uint160",
971
+ name: "secondsPerLiquidityCumulative",
972
+ type: "uint160",
973
+ },
974
+ {
975
+ internalType: "uint88",
976
+ name: "volatilityCumulative",
977
+ type: "uint88",
978
+ },
979
+ {
980
+ internalType: "int24",
981
+ name: "averageTick",
982
+ type: "int24",
983
+ },
984
+ {
985
+ internalType: "uint144",
986
+ name: "volumePerLiquidityCumulative",
987
+ type: "uint144",
988
+ },
989
+ ],
990
+ stateMutability: "view",
991
+ type: "function",
992
+ },
993
+ {
994
+ inputs: [],
995
+ name: "token0",
996
+ outputs: [
997
+ {
998
+ internalType: "address",
999
+ name: "",
1000
+ type: "address",
1001
+ },
1002
+ ],
1003
+ stateMutability: "view",
1004
+ type: "function",
1005
+ },
1006
+ {
1007
+ inputs: [],
1008
+ name: "token1",
1009
+ outputs: [
1010
+ {
1011
+ internalType: "address",
1012
+ name: "",
1013
+ type: "address",
1014
+ },
1015
+ ],
1016
+ stateMutability: "view",
1017
+ type: "function",
1018
+ },
1019
+ {
1020
+ inputs: [],
1021
+ name: "totalFeeGrowth0Token",
1022
+ outputs: [
1023
+ {
1024
+ internalType: "uint256",
1025
+ name: "",
1026
+ type: "uint256",
1027
+ },
1028
+ ],
1029
+ stateMutability: "view",
1030
+ type: "function",
1031
+ },
1032
+ {
1033
+ inputs: [],
1034
+ name: "totalFeeGrowth1Token",
1035
+ outputs: [
1036
+ {
1037
+ internalType: "uint256",
1038
+ name: "",
1039
+ type: "uint256",
1040
+ },
1041
+ ],
1042
+ stateMutability: "view",
1043
+ type: "function",
1044
+ },
1045
+ ];
1046
+ export class AlgebraIntegralV10Pool__factory {
1047
+ static abi = _abi;
1048
+ static createInterface() {
1049
+ return new utils.Interface(_abi);
1050
+ }
1051
+ static connect(address, signerOrProvider) {
1052
+ return new Contract(address, _abi, signerOrProvider);
1053
+ }
1054
+ }
1055
+ //# sourceMappingURL=AlgebraIntegralV10Pool__factory.js.map