@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,927 @@
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
+ {
9
+ internalType: "address",
10
+ name: "_blastGovernor",
11
+ type: "address",
12
+ },
13
+ {
14
+ internalType: "address",
15
+ name: "_poolDeployer",
16
+ type: "address",
17
+ },
18
+ ],
19
+ stateMutability: "nonpayable",
20
+ type: "constructor",
21
+ },
22
+ {
23
+ inputs: [],
24
+ name: "AddressZero",
25
+ type: "error",
26
+ },
27
+ {
28
+ anonymous: false,
29
+ inputs: [
30
+ {
31
+ indexed: true,
32
+ internalType: "address",
33
+ name: "defaultBlastGovernor",
34
+ type: "address",
35
+ },
36
+ ],
37
+ name: "DefaultBlastGovernor",
38
+ type: "event",
39
+ },
40
+ {
41
+ anonymous: false,
42
+ inputs: [
43
+ {
44
+ indexed: false,
45
+ internalType: "uint16",
46
+ name: "newDefaultCommunityFee",
47
+ type: "uint16",
48
+ },
49
+ ],
50
+ name: "DefaultCommunityFee",
51
+ type: "event",
52
+ },
53
+ {
54
+ anonymous: false,
55
+ inputs: [
56
+ {
57
+ indexed: false,
58
+ internalType: "uint16",
59
+ name: "newDefaultFee",
60
+ type: "uint16",
61
+ },
62
+ ],
63
+ name: "DefaultFee",
64
+ type: "event",
65
+ },
66
+ {
67
+ anonymous: false,
68
+ inputs: [
69
+ {
70
+ indexed: false,
71
+ internalType: "address",
72
+ name: "defaultPluginFactoryAddress",
73
+ type: "address",
74
+ },
75
+ ],
76
+ name: "DefaultPluginFactory",
77
+ type: "event",
78
+ },
79
+ {
80
+ anonymous: false,
81
+ inputs: [
82
+ {
83
+ indexed: false,
84
+ internalType: "int24",
85
+ name: "newDefaultTickspacing",
86
+ type: "int24",
87
+ },
88
+ ],
89
+ name: "DefaultTickspacing",
90
+ type: "event",
91
+ },
92
+ {
93
+ anonymous: false,
94
+ inputs: [
95
+ {
96
+ indexed: true,
97
+ internalType: "address",
98
+ name: "previousOwner",
99
+ type: "address",
100
+ },
101
+ {
102
+ indexed: true,
103
+ internalType: "address",
104
+ name: "newOwner",
105
+ type: "address",
106
+ },
107
+ ],
108
+ name: "OwnershipTransferStarted",
109
+ type: "event",
110
+ },
111
+ {
112
+ anonymous: false,
113
+ inputs: [
114
+ {
115
+ indexed: true,
116
+ internalType: "address",
117
+ name: "previousOwner",
118
+ type: "address",
119
+ },
120
+ {
121
+ indexed: true,
122
+ internalType: "address",
123
+ name: "newOwner",
124
+ type: "address",
125
+ },
126
+ ],
127
+ name: "OwnershipTransferred",
128
+ type: "event",
129
+ },
130
+ {
131
+ anonymous: false,
132
+ inputs: [
133
+ {
134
+ indexed: true,
135
+ internalType: "address",
136
+ name: "token0",
137
+ type: "address",
138
+ },
139
+ {
140
+ indexed: true,
141
+ internalType: "address",
142
+ name: "token1",
143
+ type: "address",
144
+ },
145
+ {
146
+ indexed: false,
147
+ internalType: "address",
148
+ name: "pool",
149
+ type: "address",
150
+ },
151
+ ],
152
+ name: "Pool",
153
+ type: "event",
154
+ },
155
+ {
156
+ anonymous: false,
157
+ inputs: [
158
+ {
159
+ indexed: false,
160
+ internalType: "bool",
161
+ name: "mode_",
162
+ type: "bool",
163
+ },
164
+ ],
165
+ name: "PublicPoolCreationMode",
166
+ type: "event",
167
+ },
168
+ {
169
+ anonymous: false,
170
+ inputs: [
171
+ {
172
+ indexed: false,
173
+ internalType: "uint256",
174
+ name: "timestamp",
175
+ type: "uint256",
176
+ },
177
+ ],
178
+ name: "RenounceOwnershipFinish",
179
+ type: "event",
180
+ },
181
+ {
182
+ anonymous: false,
183
+ inputs: [
184
+ {
185
+ indexed: false,
186
+ internalType: "uint256",
187
+ name: "timestamp",
188
+ type: "uint256",
189
+ },
190
+ {
191
+ indexed: false,
192
+ internalType: "uint256",
193
+ name: "finishTimestamp",
194
+ type: "uint256",
195
+ },
196
+ ],
197
+ name: "RenounceOwnershipStart",
198
+ type: "event",
199
+ },
200
+ {
201
+ anonymous: false,
202
+ inputs: [
203
+ {
204
+ indexed: false,
205
+ internalType: "uint256",
206
+ name: "timestamp",
207
+ type: "uint256",
208
+ },
209
+ ],
210
+ name: "RenounceOwnershipStop",
211
+ type: "event",
212
+ },
213
+ {
214
+ anonymous: false,
215
+ inputs: [
216
+ {
217
+ indexed: true,
218
+ internalType: "bytes32",
219
+ name: "role",
220
+ type: "bytes32",
221
+ },
222
+ {
223
+ indexed: true,
224
+ internalType: "bytes32",
225
+ name: "previousAdminRole",
226
+ type: "bytes32",
227
+ },
228
+ {
229
+ indexed: true,
230
+ internalType: "bytes32",
231
+ name: "newAdminRole",
232
+ type: "bytes32",
233
+ },
234
+ ],
235
+ name: "RoleAdminChanged",
236
+ type: "event",
237
+ },
238
+ {
239
+ anonymous: false,
240
+ inputs: [
241
+ {
242
+ indexed: true,
243
+ internalType: "bytes32",
244
+ name: "role",
245
+ type: "bytes32",
246
+ },
247
+ {
248
+ indexed: true,
249
+ internalType: "address",
250
+ name: "account",
251
+ type: "address",
252
+ },
253
+ {
254
+ indexed: true,
255
+ internalType: "address",
256
+ name: "sender",
257
+ type: "address",
258
+ },
259
+ ],
260
+ name: "RoleGranted",
261
+ type: "event",
262
+ },
263
+ {
264
+ anonymous: false,
265
+ inputs: [
266
+ {
267
+ indexed: true,
268
+ internalType: "bytes32",
269
+ name: "role",
270
+ type: "bytes32",
271
+ },
272
+ {
273
+ indexed: true,
274
+ internalType: "address",
275
+ name: "account",
276
+ type: "address",
277
+ },
278
+ {
279
+ indexed: true,
280
+ internalType: "address",
281
+ name: "sender",
282
+ type: "address",
283
+ },
284
+ ],
285
+ name: "RoleRevoked",
286
+ type: "event",
287
+ },
288
+ {
289
+ anonymous: false,
290
+ inputs: [
291
+ {
292
+ indexed: false,
293
+ internalType: "address",
294
+ name: "newVaultFactory",
295
+ type: "address",
296
+ },
297
+ ],
298
+ name: "VaultFactory",
299
+ type: "event",
300
+ },
301
+ {
302
+ inputs: [],
303
+ name: "DEFAULT_ADMIN_ROLE",
304
+ outputs: [
305
+ {
306
+ internalType: "bytes32",
307
+ name: "",
308
+ type: "bytes32",
309
+ },
310
+ ],
311
+ stateMutability: "view",
312
+ type: "function",
313
+ },
314
+ {
315
+ inputs: [],
316
+ name: "POOLS_ADMINISTRATOR_ROLE",
317
+ outputs: [
318
+ {
319
+ internalType: "bytes32",
320
+ name: "",
321
+ type: "bytes32",
322
+ },
323
+ ],
324
+ stateMutability: "view",
325
+ type: "function",
326
+ },
327
+ {
328
+ inputs: [],
329
+ name: "POOLS_CREATOR_ROLE",
330
+ outputs: [
331
+ {
332
+ internalType: "bytes32",
333
+ name: "",
334
+ type: "bytes32",
335
+ },
336
+ ],
337
+ stateMutability: "view",
338
+ type: "function",
339
+ },
340
+ {
341
+ inputs: [],
342
+ name: "POOL_INIT_CODE_HASH",
343
+ outputs: [
344
+ {
345
+ internalType: "bytes32",
346
+ name: "",
347
+ type: "bytes32",
348
+ },
349
+ ],
350
+ stateMutability: "view",
351
+ type: "function",
352
+ },
353
+ {
354
+ inputs: [],
355
+ name: "acceptOwnership",
356
+ outputs: [],
357
+ stateMutability: "nonpayable",
358
+ type: "function",
359
+ },
360
+ {
361
+ inputs: [
362
+ {
363
+ internalType: "address",
364
+ name: "token0",
365
+ type: "address",
366
+ },
367
+ {
368
+ internalType: "address",
369
+ name: "token1",
370
+ type: "address",
371
+ },
372
+ ],
373
+ name: "computePoolAddress",
374
+ outputs: [
375
+ {
376
+ internalType: "address",
377
+ name: "pool",
378
+ type: "address",
379
+ },
380
+ ],
381
+ stateMutability: "view",
382
+ type: "function",
383
+ },
384
+ {
385
+ inputs: [
386
+ {
387
+ internalType: "address",
388
+ name: "tokenA",
389
+ type: "address",
390
+ },
391
+ {
392
+ internalType: "address",
393
+ name: "tokenB",
394
+ type: "address",
395
+ },
396
+ ],
397
+ name: "createPool",
398
+ outputs: [
399
+ {
400
+ internalType: "address",
401
+ name: "pool",
402
+ type: "address",
403
+ },
404
+ ],
405
+ stateMutability: "nonpayable",
406
+ type: "function",
407
+ },
408
+ {
409
+ inputs: [],
410
+ name: "defaultBlastGovernor",
411
+ outputs: [
412
+ {
413
+ internalType: "address",
414
+ name: "",
415
+ type: "address",
416
+ },
417
+ ],
418
+ stateMutability: "view",
419
+ type: "function",
420
+ },
421
+ {
422
+ inputs: [],
423
+ name: "defaultCommunityFee",
424
+ outputs: [
425
+ {
426
+ internalType: "uint16",
427
+ name: "",
428
+ type: "uint16",
429
+ },
430
+ ],
431
+ stateMutability: "view",
432
+ type: "function",
433
+ },
434
+ {
435
+ inputs: [
436
+ {
437
+ internalType: "address",
438
+ name: "pool",
439
+ type: "address",
440
+ },
441
+ ],
442
+ name: "defaultConfigurationForPool",
443
+ outputs: [
444
+ {
445
+ internalType: "uint16",
446
+ name: "communityFee",
447
+ type: "uint16",
448
+ },
449
+ {
450
+ internalType: "int24",
451
+ name: "tickSpacing",
452
+ type: "int24",
453
+ },
454
+ {
455
+ internalType: "uint16",
456
+ name: "fee",
457
+ type: "uint16",
458
+ },
459
+ {
460
+ internalType: "address",
461
+ name: "communityVault",
462
+ type: "address",
463
+ },
464
+ ],
465
+ stateMutability: "view",
466
+ type: "function",
467
+ },
468
+ {
469
+ inputs: [],
470
+ name: "defaultFee",
471
+ outputs: [
472
+ {
473
+ internalType: "uint16",
474
+ name: "",
475
+ type: "uint16",
476
+ },
477
+ ],
478
+ stateMutability: "view",
479
+ type: "function",
480
+ },
481
+ {
482
+ inputs: [],
483
+ name: "defaultPluginFactory",
484
+ outputs: [
485
+ {
486
+ internalType: "contract IAlgebraPluginFactory",
487
+ name: "",
488
+ type: "address",
489
+ },
490
+ ],
491
+ stateMutability: "view",
492
+ type: "function",
493
+ },
494
+ {
495
+ inputs: [],
496
+ name: "defaultTickspacing",
497
+ outputs: [
498
+ {
499
+ internalType: "int24",
500
+ name: "",
501
+ type: "int24",
502
+ },
503
+ ],
504
+ stateMutability: "view",
505
+ type: "function",
506
+ },
507
+ {
508
+ inputs: [
509
+ {
510
+ internalType: "bytes32",
511
+ name: "role",
512
+ type: "bytes32",
513
+ },
514
+ ],
515
+ name: "getRoleAdmin",
516
+ outputs: [
517
+ {
518
+ internalType: "bytes32",
519
+ name: "",
520
+ type: "bytes32",
521
+ },
522
+ ],
523
+ stateMutability: "view",
524
+ type: "function",
525
+ },
526
+ {
527
+ inputs: [
528
+ {
529
+ internalType: "bytes32",
530
+ name: "role",
531
+ type: "bytes32",
532
+ },
533
+ {
534
+ internalType: "uint256",
535
+ name: "index",
536
+ type: "uint256",
537
+ },
538
+ ],
539
+ name: "getRoleMember",
540
+ outputs: [
541
+ {
542
+ internalType: "address",
543
+ name: "",
544
+ type: "address",
545
+ },
546
+ ],
547
+ stateMutability: "view",
548
+ type: "function",
549
+ },
550
+ {
551
+ inputs: [
552
+ {
553
+ internalType: "bytes32",
554
+ name: "role",
555
+ type: "bytes32",
556
+ },
557
+ ],
558
+ name: "getRoleMemberCount",
559
+ outputs: [
560
+ {
561
+ internalType: "uint256",
562
+ name: "",
563
+ type: "uint256",
564
+ },
565
+ ],
566
+ stateMutability: "view",
567
+ type: "function",
568
+ },
569
+ {
570
+ inputs: [
571
+ {
572
+ internalType: "bytes32",
573
+ name: "role",
574
+ type: "bytes32",
575
+ },
576
+ {
577
+ internalType: "address",
578
+ name: "account",
579
+ type: "address",
580
+ },
581
+ ],
582
+ name: "grantRole",
583
+ outputs: [],
584
+ stateMutability: "nonpayable",
585
+ type: "function",
586
+ },
587
+ {
588
+ inputs: [
589
+ {
590
+ internalType: "bytes32",
591
+ name: "role",
592
+ type: "bytes32",
593
+ },
594
+ {
595
+ internalType: "address",
596
+ name: "account",
597
+ type: "address",
598
+ },
599
+ ],
600
+ name: "hasRole",
601
+ outputs: [
602
+ {
603
+ internalType: "bool",
604
+ name: "",
605
+ type: "bool",
606
+ },
607
+ ],
608
+ stateMutability: "view",
609
+ type: "function",
610
+ },
611
+ {
612
+ inputs: [
613
+ {
614
+ internalType: "bytes32",
615
+ name: "role",
616
+ type: "bytes32",
617
+ },
618
+ {
619
+ internalType: "address",
620
+ name: "account",
621
+ type: "address",
622
+ },
623
+ ],
624
+ name: "hasRoleOrOwner",
625
+ outputs: [
626
+ {
627
+ internalType: "bool",
628
+ name: "",
629
+ type: "bool",
630
+ },
631
+ ],
632
+ stateMutability: "view",
633
+ type: "function",
634
+ },
635
+ {
636
+ inputs: [],
637
+ name: "isPublicPoolCreationMode",
638
+ outputs: [
639
+ {
640
+ internalType: "bool",
641
+ name: "",
642
+ type: "bool",
643
+ },
644
+ ],
645
+ stateMutability: "view",
646
+ type: "function",
647
+ },
648
+ {
649
+ inputs: [],
650
+ name: "owner",
651
+ outputs: [
652
+ {
653
+ internalType: "address",
654
+ name: "",
655
+ type: "address",
656
+ },
657
+ ],
658
+ stateMutability: "view",
659
+ type: "function",
660
+ },
661
+ {
662
+ inputs: [],
663
+ name: "pendingOwner",
664
+ outputs: [
665
+ {
666
+ internalType: "address",
667
+ name: "",
668
+ type: "address",
669
+ },
670
+ ],
671
+ stateMutability: "view",
672
+ type: "function",
673
+ },
674
+ {
675
+ inputs: [
676
+ {
677
+ internalType: "address",
678
+ name: "",
679
+ type: "address",
680
+ },
681
+ {
682
+ internalType: "address",
683
+ name: "",
684
+ type: "address",
685
+ },
686
+ ],
687
+ name: "poolByPair",
688
+ outputs: [
689
+ {
690
+ internalType: "address",
691
+ name: "",
692
+ type: "address",
693
+ },
694
+ ],
695
+ stateMutability: "view",
696
+ type: "function",
697
+ },
698
+ {
699
+ inputs: [],
700
+ name: "poolDeployer",
701
+ outputs: [
702
+ {
703
+ internalType: "address",
704
+ name: "",
705
+ type: "address",
706
+ },
707
+ ],
708
+ stateMutability: "view",
709
+ type: "function",
710
+ },
711
+ {
712
+ inputs: [],
713
+ name: "renounceOwnership",
714
+ outputs: [],
715
+ stateMutability: "nonpayable",
716
+ type: "function",
717
+ },
718
+ {
719
+ inputs: [],
720
+ name: "renounceOwnershipStartTimestamp",
721
+ outputs: [
722
+ {
723
+ internalType: "uint256",
724
+ name: "",
725
+ type: "uint256",
726
+ },
727
+ ],
728
+ stateMutability: "view",
729
+ type: "function",
730
+ },
731
+ {
732
+ inputs: [
733
+ {
734
+ internalType: "bytes32",
735
+ name: "role",
736
+ type: "bytes32",
737
+ },
738
+ {
739
+ internalType: "address",
740
+ name: "account",
741
+ type: "address",
742
+ },
743
+ ],
744
+ name: "renounceRole",
745
+ outputs: [],
746
+ stateMutability: "nonpayable",
747
+ type: "function",
748
+ },
749
+ {
750
+ inputs: [
751
+ {
752
+ internalType: "bytes32",
753
+ name: "role",
754
+ type: "bytes32",
755
+ },
756
+ {
757
+ internalType: "address",
758
+ name: "account",
759
+ type: "address",
760
+ },
761
+ ],
762
+ name: "revokeRole",
763
+ outputs: [],
764
+ stateMutability: "nonpayable",
765
+ type: "function",
766
+ },
767
+ {
768
+ inputs: [
769
+ {
770
+ internalType: "address",
771
+ name: "defaultBlastGovernor_",
772
+ type: "address",
773
+ },
774
+ ],
775
+ name: "setDefaultBlastGovernor",
776
+ outputs: [],
777
+ stateMutability: "nonpayable",
778
+ type: "function",
779
+ },
780
+ {
781
+ inputs: [
782
+ {
783
+ internalType: "uint16",
784
+ name: "newDefaultCommunityFee",
785
+ type: "uint16",
786
+ },
787
+ ],
788
+ name: "setDefaultCommunityFee",
789
+ outputs: [],
790
+ stateMutability: "nonpayable",
791
+ type: "function",
792
+ },
793
+ {
794
+ inputs: [
795
+ {
796
+ internalType: "uint16",
797
+ name: "newDefaultFee",
798
+ type: "uint16",
799
+ },
800
+ ],
801
+ name: "setDefaultFee",
802
+ outputs: [],
803
+ stateMutability: "nonpayable",
804
+ type: "function",
805
+ },
806
+ {
807
+ inputs: [
808
+ {
809
+ internalType: "address",
810
+ name: "newDefaultPluginFactory",
811
+ type: "address",
812
+ },
813
+ ],
814
+ name: "setDefaultPluginFactory",
815
+ outputs: [],
816
+ stateMutability: "nonpayable",
817
+ type: "function",
818
+ },
819
+ {
820
+ inputs: [
821
+ {
822
+ internalType: "int24",
823
+ name: "newDefaultTickspacing",
824
+ type: "int24",
825
+ },
826
+ ],
827
+ name: "setDefaultTickspacing",
828
+ outputs: [],
829
+ stateMutability: "nonpayable",
830
+ type: "function",
831
+ },
832
+ {
833
+ inputs: [
834
+ {
835
+ internalType: "bool",
836
+ name: "mode_",
837
+ type: "bool",
838
+ },
839
+ ],
840
+ name: "setIsPublicPoolCreationMode",
841
+ outputs: [],
842
+ stateMutability: "nonpayable",
843
+ type: "function",
844
+ },
845
+ {
846
+ inputs: [
847
+ {
848
+ internalType: "address",
849
+ name: "newVaultFactory",
850
+ type: "address",
851
+ },
852
+ ],
853
+ name: "setVaultFactory",
854
+ outputs: [],
855
+ stateMutability: "nonpayable",
856
+ type: "function",
857
+ },
858
+ {
859
+ inputs: [],
860
+ name: "startRenounceOwnership",
861
+ outputs: [],
862
+ stateMutability: "nonpayable",
863
+ type: "function",
864
+ },
865
+ {
866
+ inputs: [],
867
+ name: "stopRenounceOwnership",
868
+ outputs: [],
869
+ stateMutability: "nonpayable",
870
+ type: "function",
871
+ },
872
+ {
873
+ inputs: [
874
+ {
875
+ internalType: "bytes4",
876
+ name: "interfaceId",
877
+ type: "bytes4",
878
+ },
879
+ ],
880
+ name: "supportsInterface",
881
+ outputs: [
882
+ {
883
+ internalType: "bool",
884
+ name: "",
885
+ type: "bool",
886
+ },
887
+ ],
888
+ stateMutability: "view",
889
+ type: "function",
890
+ },
891
+ {
892
+ inputs: [
893
+ {
894
+ internalType: "address",
895
+ name: "newOwner",
896
+ type: "address",
897
+ },
898
+ ],
899
+ name: "transferOwnership",
900
+ outputs: [],
901
+ stateMutability: "nonpayable",
902
+ type: "function",
903
+ },
904
+ {
905
+ inputs: [],
906
+ name: "vaultFactory",
907
+ outputs: [
908
+ {
909
+ internalType: "contract IAlgebraVaultFactory",
910
+ name: "",
911
+ type: "address",
912
+ },
913
+ ],
914
+ stateMutability: "view",
915
+ type: "function",
916
+ },
917
+ ];
918
+ export class AlgebraPoolFactoryV10__factory {
919
+ static abi = _abi;
920
+ static createInterface() {
921
+ return new utils.Interface(_abi);
922
+ }
923
+ static connect(address, signerOrProvider) {
924
+ return new Contract(address, _abi, signerOrProvider);
925
+ }
926
+ }
927
+ //# sourceMappingURL=AlgebraPoolFactoryV10__factory.js.map