-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathhooklist-vanilla-swap.json
More file actions
1507 lines (1507 loc) · 50.9 KB
/
Copy pathhooklist-vanilla-swap.json
File metadata and controls
1507 lines (1507 loc) · 50.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"hook": {
"address": "0x986522646bf8f57d3b28c5808ede9b1e5cca0ac0",
"chain": "arbitrum",
"chainId": 42161,
"name": "FedzHook",
"description": "A Uniswap v4 hook for a stablecoin pool that restricts swaps and liquidity operations to the current active player in an external time-slot system (checked via tx.origin), and reverts any swap whose post-execution price falls below a configurable depeg threshold.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": false,
"beforeAddLiquidity": true,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": true,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "other"
}
},
{
"hook": {
"address": "0x04e08a08bab77b389e970a65d91fba8bf4ef6080",
"chain": "base",
"chainId": 8453,
"name": "GovernedLBPStrategy",
"description": "A governance-controlled Liquidity Bootstrapping Pool (LBP) strategy hook that restricts pool initialization to the contract itself and blocks all swaps until a designated governance address approves migration. After approval, it deploys full-range liquidity from a completed token distribution phase.",
"deployer": "0xBc869216dAD02E1A95c1478a459D064b16F41B24",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "governance"
}
},
{
"hook": {
"address": "0x07cd1505846bc1a0a7b38065684e7dcbde6f2000",
"chain": "base",
"chainId": 8453,
"name": "LpGuardHook",
"description": "A hook that restricts pool initialization to a single whitelisted launcher address, reverting any attempt to initialize a pool from an unauthorized caller.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": false,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x0b8fbfa9861af89d7d2cf2e55f61cee982a22080",
"chain": "base",
"chainId": 8453,
"name": "GovernedLBPStrategy",
"description": "A governance-controlled Liquidity Bootstrapping Pool (LBP) strategy hook that restricts pool initialization to the contract itself and blocks all swaps until a designated governance address approves migration.",
"deployer": "0xBc869216dAD02E1A95c1478a459D064b16F41B24",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "governance"
}
},
{
"hook": {
"address": "0x167f77c0d015414f65bf3dde7198922c399e2080",
"chain": "base",
"chainId": 8453,
"name": "GovernedLBPStrategy",
"description": "A Liquidity Bootstrapping Pool (LBP) hook that gates pool initialization to the strategy contract itself and blocks all swaps until a designated governance address approves migration, then migrates raised funds into a full-range Uniswap v4 liquidity position.",
"deployer": "0xBc869216dAD02E1A95c1478a459D064b16F41B24",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "governance"
}
},
{
"hook": {
"address": "0x23ab2e6d4ab0c5f872567098671f1ffb46fd2500",
"chain": "base",
"chainId": 8453,
"name": "TELxIncentiveHook",
"description": "Tracks LP positions and fee accruals in an external PositionRegistry to support off-chain incentive/reward distribution. Liquidity callbacks are restricted to an authorized position manager address; no swap logic is implemented.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": true,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": true,
"beforeSwap": false,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x2677fdcb72f59766d03d9ee4a6c7390bf3ed0800",
"chain": "base",
"chainId": 8453,
"name": "DCAHook",
"description": "A hook that gates liquidity additions on two specific pools: limits the ETH/DCA pool to a single initial liquidity add, and enforces full-range tick bounds (\u00b1887200) for the DCA/SPX6900 pool via beforeAddLiquidity.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": false,
"beforeAddLiquidity": true,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": false,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x2934140dcf6ca98eed60e8e31d3816d038f92080",
"chain": "base",
"chainId": 8453,
"name": "GovernedLBPStrategy",
"description": "A Liquidity Bootstrapping Pool (LBP) strategy hook that restricts pool initialization to the hook contract itself and gates all swaps behind a governance-approved migration flag.",
"deployer": "0xBc869216dAD02E1A95c1478a459D064b16F41B24",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "governance"
}
},
{
"hook": {
"address": "0x3e342a06f9592459d75721d6956b570f02ef2dc0",
"chain": "base",
"chainId": 8453,
"name": "UniswapV4ScheduledMulticurveInitializerHook",
"description": "A Uniswap v4 hook that restricts pool initialization and liquidity additions to a designated initializer contract, enforces a per-pool scheduled start time before which swaps revert with CannotSwapBeforeStartingTime, and emits events for liquidity modifications and swaps.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": true,
"afterAddLiquidity": true,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": true,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "temporal"
}
},
{
"hook": {
"address": "0x4627812f40bdd47c8fa1a4daac8f40bc26ef8040",
"chain": "base",
"chainId": 8453,
"name": "Spectra Launchpad",
"description": "Bonding-curve memecoin launchpad that raises ETH along a linear curve, then graduates into a Uniswap V4 ETH/token pool. ERC-20 balances are mirrored as NFTs (\"facets\"); pool swap fees are harvested and distributed pro-rata to facet holders in ETH.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": false,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x52a22cda1d1e77f8997fceb2165c6fc76b808440",
"chain": "base",
"chainId": 8453,
"name": "KPEGHook",
"description": "Updates an on-chain randomness seed after each swap in pools containing the configured token, using block variables and swap metadata. On the first liquidity addition to a qualifying pool, calls start() on a lifecycle token contract.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": true,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": false,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x5ca33d75df69c4f46093b7eb7f0f6dacace62080",
"chain": "base",
"chainId": 8453,
"name": "GovernedLBPStrategy",
"description": "A governance-gated Liquidity Bootstrapping Pool (LBP) strategy hook that blocks swaps until a designated governance address approves migration, then migrates token distribution from a bootstrapping phase to a full-range Uniswap v4 pool position.",
"deployer": "0xBc869216dAD02E1A95c1478a459D064b16F41B24",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "governance"
}
},
{
"hook": {
"address": "0x6b80ce7c95b0206b14ce9977c904e11918d48040",
"chain": "base",
"chainId": 8453,
"name": "SpectraLaunch",
"description": "SPECTRA launchpad afterSwap hook on Base \u2014 the token is its own Uniswap v4 hook (holding = LP). Token contract 0x6b80ce7c95b0206b14ce9977c904e11918d48040. Source verified on BaseScan.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": false,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x7624ac031ca94a9d6f732a74ef90ea10c5510040",
"chain": "base",
"chainId": 8453,
"name": "SpectraLaunch",
"description": "Spectra launchpad hook on Base. ERC-20 + Uniswap V4 afterSwap hook where holding the token is providing liquidity (swap fees accrue pro-rata to holders). Graduated from a bonding curve. Token contract: 0x7624aC031CA94a9D6f732A74EF90EA10c5510040.",
"deployer": "0x34054B1dF385595d8ce6345b856459b568FE7714",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": false,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x892d3c2b4abeaaf67d52a7b29783e2161b7cad40",
"chain": "base",
"chainId": 8453,
"name": "UniswapV4MulticurveInitializerHook",
"description": "Hook used by the Uniswap V4 Multicurve Initializer to restrict pool initialization and liquidity additions to the designated initializer contract. Emits events on liquidity modifications and swaps; afterSwap is observation-only with no delta modification.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": true,
"afterAddLiquidity": true,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": true,
"beforeSwap": false,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x98Aa253a44497dfa77ec1170e69f851cB17C2000",
"chain": "base",
"chainId": 8453,
"name": "AquinasPoolHook",
"description": "A Uniswap v4 hook for Aquinas DAOs that restricts pool initialization to factory-authorized Safe addresses, preventing frontrunning by requiring pre-approval before a specific pool can be initialized.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": false,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x98aa253a44497dfa77ec1170e69f851cb17c2000",
"chain": "base",
"chainId": 8453,
"name": "AquinasPoolHook",
"description": "A Uniswap v4 hook that restricts pool initialization to addresses pre-authorized by the Aquinas factory. Only the designated Safe address for a given pool may call PoolManager.initialize(), preventing unauthorized parties from initializing pools for Aquinas DAOs.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": false,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0xb8b27a9cea9094cff605e6aa707c89120a240a80",
"chain": "base",
"chainId": 8453,
"name": "CommodityCombinedHook",
"description": "A combined swap and liquidity gating hook for commodity pools. Swap access is gated by a block-number unlock window controlled by a designated locker address, with optional price impact caps. Liquidity provision is restricted to an owner-managed allowlist (with an open-mode override).",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": false,
"beforeAddLiquidity": true,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": true,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": true,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "temporal"
}
},
{
"hook": {
"address": "0xc5a48b447f01e9ce3ede71e4c1c2038c38bd9000",
"chain": "base",
"chainId": 8453,
"name": "Graduation Hook (Base)",
"description": "Restricts pool initialization to a designated Moxie bonding curve address, ensuring Uniswap v4 pools can only be initialized through the authorized bonding curve as part of a token graduation process.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": true,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": false,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0xced494a8cc54d593dbc7bdc6f4c61a948c932080",
"chain": "base",
"chainId": 8453,
"name": "GovernedLBPStrategy",
"description": "A Liquidity Bootstrapping Pool (LBP) hook that restricts pool initialization to the contract itself and gates swaps behind a governance-controlled approval, ensuring the migration from an initial token distribution phase to a full-range Uniswap v4 position is authorized before trading begins.",
"deployer": "0xBc869216dAD02E1A95c1478a459D064b16F41B24",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "governance"
}
},
{
"hook": {
"address": "0xd3c1f2174f37f88811f99b1b1b4c1356c0246000",
"chain": "base",
"chainId": 8453,
"name": "Aquinas Hook (Base)",
"description": "Restricts Uniswap v4 pool initialization to factory-authorized Safe addresses for Aquinas DAOs, preventing frontrunning of LP initialization by requiring the caller to be pre-approved by the Aquinas factory.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": false,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0xd6fecff347c6203a41874e8d77de669b54e7a500",
"chain": "base",
"chainId": 8453,
"name": "UniswapV4MigratorHook",
"description": "A hook that restricts pool initialization to a designated UniswapV4Migrator contract address and emits ModifyLiquidity events after liquidity is added or removed.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": true,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": true,
"beforeSwap": false,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x097ca33924ad253ef9fc8471c4490566e0ef1000",
"chain": "bnb",
"chainId": 56,
"name": "HumansHook",
"description": "A minimal hook that calls `xpegToken.start(poolManager)` in `afterInitialize` to register the PoolManager address with the HumansToken (XPEG) contract on first pool initialization. Contains no swap logic; all token transfer restrictions are enforced ERC-20-side in HumansToken._update.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": true,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": false,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x38358b924cb329dc428650f91309dfbddf974080",
"chain": "bnb",
"chainId": 56,
"name": "V4PermissionedSwaps",
"description": "A Uniswap v4 hook that restricts swaps to an owner-managed allowlist of approved sender addresses, reverting any swap from an unapproved sender with `SenderNotAllowed`.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "allowlist"
}
},
{
"hook": {
"address": "0x4c3377978b0c37ba9905ac55d31741f990200440",
"chain": "bnb",
"chainId": 56,
"name": "PandaPegHook",
"description": "Updates an on-chain random seed on every swap involving the configured token, using block entropy (timestamp, prevrandao, block number). On first liquidity addition, calls token.start() to initialize the token. The random seed is exposed for use by the paired NFT collection (PandaCollection).",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": true,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": false,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x358ac5a3fa0d5a80d78013dbe6a4f290438ca000",
"chain": "ethereum",
"chainId": 1,
"name": "FullRangeLBPStrategy",
"description": "A Uniswap v4 hook implementing a Liquidity Bootstrapping Pool strategy that restricts pool initialization to the contract itself via beforeInitialize, then migrates raised funds and reserved tokens into a full-range liquidity position after the auction concludes.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": false,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x5832f3e51295cee676eebbb25748d527f64b5f80",
"chain": "ethereum",
"chainId": 1,
"name": "NestHook",
"description": "A liquidity mining hook that distributes EGG token rewards to LPs proportional to their contributed liquidity in a single canonical pool. Reward accrual is triggered on each swap and liquidity modification, with per-position tracking and support for excluding burned (dead-address) liquidity from reward distributions.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": true,
"beforeAddLiquidity": true,
"afterAddLiquidity": true,
"beforeRemoveLiquidity": true,
"afterRemoveLiquidity": true,
"beforeSwap": true,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "other"
}
},
{
"hook": {
"address": "0x62ee80f068dce30ea4a275e91bb733fb17fd0ac0",
"chain": "ethereum",
"chainId": 1,
"name": "FairTradeHook",
"description": "Anti-MEV hook that blocks swaps from owner-blocklisted addresses, reverts same-block swaps from the same sender (sandwich detection), and enforces a configurable per-address timestamp cooldown between swaps.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": false,
"beforeAddLiquidity": true,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": true,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": true,
"swapAccess": "other"
}
},
{
"hook": {
"address": "0x747b8bb5e2e60d4c9e881fe7a27e0b69e47d0040",
"chain": "ethereum",
"chainId": 1,
"name": "ProofOfSwapHook",
"description": "An afterSwap hook for the canonical ETH/SWAPOSHI pool that records each swapper's ETH volume as mining weight per 10-minute epoch. Swappers can claim pro-rata SWAPOSHI token rewards for finalized epochs, with Bitcoin-style halving every ~30 days (~4320 epochs) until the 21M cap.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": false,