-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhooklist.json
More file actions
5005 lines (5005 loc) · 171 KB
/
hooklist.json
File metadata and controls
5005 lines (5005 loc) · 171 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": "0x2097d7329389264a1542ad50802bb0de84a650c4",
"chain": "arbitrum",
"chainId": 42161,
"name": "BVCC Dynamic Fee Hook (Arbitrum)",
"description": "Dynamically adjusts LP fees per-swap based on current gas price tiers and penalizes high-frequency traders, while collecting an additional protocol fee in afterSwap from the swap output.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": true,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": true,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": true,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x2a4adf825bd96598487dbb6b2d8d882a4eb86888",
"chain": "arbitrum",
"chainId": 42161,
"name": "WETH Hook (Arbitrum)",
"description": "A Uniswap v4 hook that enables seamless wrapping and unwrapping of ETH and WETH in a dedicated zero-fee pool, intercepting swaps to perform 1:1 ETH\u2194WETH conversion while blocking direct liquidity operations.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": true,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": false,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": true,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x9B21E1cdD975E58F714Fd1Bd5a803198d5520088",
"chain": "arbitrum",
"chainId": 42161,
"name": "External DEX Wrapper (Arbitrum)",
"description": "Routes Uniswap v4 swaps through the Camelot (Algebra) V3 ETH/USDC pool on Arbitrum, intercepting swaps in beforeSwap and fully settling them via BeforeSwapDelta with a configurable owner-adjustable fee ratio.",
"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": true,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": true,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0xc4bf39a096a1b610dd6186935f3ad99c66239080",
"chain": "arbitrum",
"chainId": 42161,
"name": "Slippage Fee Hook (Arbitrum)",
"description": "Dynamically computes LP fees before each swap based on the simulated price impact (tick difference between current and post-swap price), charging higher fees for larger swaps to reduce impermanent loss for liquidity providers. Requires pools to use dynamic fees and reverts any swap that would cause slippage exceeding 5%.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": true,
"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": true,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0xd73339564ac99f3e09b0ebc80603ff8b796500c0",
"chain": "arbitrum",
"chainId": 42161,
"name": "Limit Order Hook (Arbitrum)",
"description": "A Uniswap v4 hook that enables limit order functionality by recording the tick before each swap and delegating to a LimitOrderManager contract after each swap to execute any limit orders whose tick range was crossed. Supports dynamic LP fee updates via a permissioned fee manager role.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": true,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0xf7ac669593d2d9d01026fa5b756dd5b4f7aaa8cc",
"chain": "arbitrum",
"chainId": 42161,
"name": "Clanker Static Fee Hook (Arbitrum)",
"description": "A Clanker token launch hook for Arbitrum that applies separate, configurable LP fees for buys and sells of the Clanker token (set statically at pool initialization), and collects a protocol fee on each swap via beforeSwap and afterSwap delta adjustments. It also includes a short-lived MEV protection module active in the first two minutes after pool creation.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": true,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": true,
"afterSwapReturnsDelta": true,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": true,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0xfd213be7883db36e1049dc42f5bd6a0ec66b68cc",
"chain": "arbitrum",
"chainId": 42161,
"name": "Clanker Dynamic Fee Hook (Arbitrum)",
"description": "Clanker V4 hook for autonomous token deployment with dynamic fees that adjust based on swap volatility using a tick-based accumulator model. Also includes MEV protection via an optional external module active for the first 2 minutes after pool creation.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": true,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": true,
"afterSwapReturnsDelta": true,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": true,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x3b48f794a1d67febe95f66b6dff38c0a7e934044",
"chain": "avalanche",
"chainId": 43114,
"name": "StrategyFeeHook",
"description": "Charges a fixed 10% fee (1000 bps) on the output token of each swap in owner-allowlisted pools, then converts the collected fees to AVAX or WAVAX and forwards them to a configurable strategy manager contract.",
"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": true,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x0469a4Bd3724DC86C9542F4694c976DA13C450c0",
"chain": "base",
"chainId": 8453,
"name": "Zora Hook",
"description": "Zora's Uniswap v4 hook for their Coins protocol on Base, which applies a dynamic launch fee that decays from 99% to 1% over the 10 seconds after coin creation. On every swap it collects LP fees, converts them to a backing currency, and distributes rewards to creators and trade referrers.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": true,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": true,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"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": "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": "0x121f94835dab08ebaf084809a97e525b69e400cc",
"chain": "base",
"chainId": 8453,
"name": "AI Protocol Swap Fee Hook v1 (Base)",
"description": "A Uniswap v4 hook that charges a configurable fee on swaps involving a designated fee token. Fees are collected in beforeSwap and afterSwap based on whether the operation is a buy or sell and whether the swap is exact-in or exact-out, then forwarded to a configured fee recipient contract.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": true,
"afterSwapReturnsDelta": true,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x1258e5f3c71ca9dce95ce734ba5759532e46d040",
"chain": "base",
"chainId": 8453,
"name": "Zora Creator Hook v2.2.1 (Base)",
"description": "A Uniswap V4 hook for Zora's Creator Coin protocol that automatically collects LP fees after each swap, converts them to a backing currency via multi-hop paths, and distributes rewards to creators and trade referrers. On pool initialization, it sets up multiple liquidity positions based on the coin's Doppler multi-curve configuration.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": true,
"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": true,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"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": "0x1e0c810a30fb82391df936602c1161421381b0c8",
"chain": "base",
"chainId": 8453,
"name": "SuperStrategy Hook (Base)",
"description": "A Uniswap v4 hook that collects a 2% fee on each swap and auto-compounds the accumulated reserves back into pool liquidity. It forwards 0.30% to a protocol fee receiver, allows admin-designated market makers to trade fee-free, and supports multi-pool liquidity management with configurable auto-compounding thresholds.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": true,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": true,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x23321f11a6d44fd1ab790044fdfde5758c902fdc",
"chain": "base",
"chainId": 8453,
"name": "Flaunch POSM v4 (Base)",
"description": "Flaunch's PositionManager is a Uniswap v4 hook that manages the full lifecycle of memecoin launches, from token creation and fair-launch phase to ongoing swaps. It incorporates an InternalSwapPool for protocol fee accumulation, a BidWall for native-token liquidity support, and a FeeDistributor that routes swap fees to creators and optional referrers encoded in hookData.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": true,
"afterAddLiquidity": true,
"beforeRemoveLiquidity": true,
"afterRemoveLiquidity": true,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": true,
"beforeSwapReturnsDelta": true,
"afterSwapReturnsDelta": true,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": true,
"vanillaSwap": false,
"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": "0x2b15a16b3ef024005ba899bb51764fcd58cf9040",
"chain": "base",
"chainId": 8453,
"name": "Zora Post Hook v2.2.1 (Base)",
"description": "Zora's content coin hook that manages multi-position liquidity for creator coins, collecting swap fees after each trade and distributing them as rewards to creators, referrers, and LPs in a backing currency. Supports liquidity migration to new hook versions via a registered upgrade gate.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": true,
"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": true,
"requiresCustomSwapData": true,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x2c56c1302b6224b2bb1906c46f554622e12f10c4",
"chain": "base",
"chainId": 8453,
"name": "BVCC Dynamic Fee Hook (Base)",
"description": "An advanced dynamic fee hook by BlockVenture Chain Capital that adjusts LP fees based on gas price, price volatility, and 24-hour trade volume, while applying anti-bot cooldown penalties for repeated swaps. It also collects a small protocol fee on each swap output via afterSwapReturnsDelta.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": true,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": true,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": true,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x2F9354Bbb0eDEf5c2a5C4b78D0C59D73412A28CC",
"chain": "base",
"chainId": 8453,
"name": "ClawnchHookStaticFeeV2",
"description": "Token launcher hook for Base. Fork of Clanker ClankerHookV2 with security fixes: transient storage for reentrant fee safety, slippage protection on fee swaps, MEV decay boundary fix, per-direction static fees, fee preference system, VestedDevBuy extension.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": true,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": true,
"afterSwapReturnsDelta": true,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": true,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x2Fd54Aaf84023EDA60Bd65eDb5914c1a306850cc",
"chain": "base",
"chainId": 8453,
"name": "Seedify Fee Hook",
"description": "Collects fees on swaps involving a designated fundraising currency. Fees split between platform treasury and optional creator treasury, with launch vs post-launch fee tiers.",
"deployer": "",
"verifiedSource": true,
"auditUrl": "https://github.com/Seedifyfund/base-uniswap-hook"
},
"flags": {
"beforeInitialize": false,
"afterInitialize": true,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": true,
"afterSwapReturnsDelta": true,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x34a45c6b61876d739400bd71228cbcbd4f53e8cc",
"chain": "base",
"chainId": 8453,
"name": "Clanker Dynamic Fee Hook (Base)",
"description": "A Clanker hook that dynamically adjusts LP fees based on tick volatility accumulation, updating pool fees on every swap via updateDynamicLPFee. It also applies a protocol fee by capturing a portion of swaps as EIP-6909 claims, and optionally forwards hookData to an external MEV module during a post-launch window.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": true,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": true,
"afterSwapReturnsDelta": true,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": true,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x35b9b5b023897da8c7375ba6141245b8416460cc",
"chain": "base",
"chainId": 8453,
"name": "Wassblaster Hook",
"description": "A hook for wASS/memecoin pairs that charges a 1% total fee (0.3% to LPs, 0.7% to the hook) and routes a configurable portion of buys through an in-swap OTC mechanism at the actual pool rate, distributing wASS fee proceeds to stakers and accumulating memecoin fees as OTC inventory.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": true,
"afterSwapReturnsDelta": true,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x4519e2b040ff1b64fa03abe2aef0bc99d7cceaa8",
"chain": "base",
"chainId": 8453,
"name": "GPX Hook (Base)",
"description": "GPXHooks manages the Uniswap V4 GPX-USDC liquidity pool, collecting 1% fees per swap and distributing them across four destinations (GoldPesa Mines, Treasury, Pawn, and GPX Owner), while blocking unauthorized liquidity changes and periodically triggering automated pool rebalancing.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": true,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": true,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": false,
"beforeDonate": true,
"afterDonate": false,
"beforeSwapReturnsDelta": true,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x4ab61d774b170d0610fdcc5559aae2c356c600c8",
"chain": "base",
"chainId": 8453,
"name": "Pubhouse Hook",
"description": "A token launchpad hook that performs internal swaps using accumulated token fees to fill buy orders, distributes LP fees between token creators and the protocol team, and automatically buybacks and burns the protocol token when accumulated ETH exceeds a threshold.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": false,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": true,
"afterSwapReturnsDelta": false,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x51bba15255406cfe7099a42183302640ba7dafdc",
"chain": "base",
"chainId": 8453,
"name": "Flaunch POSM v1",
"description": "The Flaunch PositionManager is a Uniswap v4 hook that manages the full lifecycle of memecoin creation and trading, including a fair launch window, an internal swap pool for fee reinvestment, and fee distribution to token creators and referrers.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": true,
"afterAddLiquidity": true,
"beforeRemoveLiquidity": true,
"afterRemoveLiquidity": true,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": true,
"beforeSwapReturnsDelta": true,
"afterSwapReturnsDelta": true,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": true,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x570a48f96035c2874de1c0f13c5075a05683b0cc",
"chain": "base",
"chainId": 8453,
"name": "Deli Hook (Base)",
"description": "Collects swap fees always in wBLT and forwards them to a FeeProcessor contract, while enforcing that all pools include wBLT as a token and use dynamic LP fees (overriding them to 0 at swap time). Syncs DailyEpochGauge and IncentiveGauge on every swap to support incentive accounting.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": true,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": true,
"afterSwapReturnsDelta": true,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": true,
"upgradeable": false,
"requiresCustomSwapData": true,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x5798a5e371346c8e4af1dbc166549d360e008044",
"chain": "base",
"chainId": 8453,
"name": "Adaptive Burn Hook",
"description": "Automatically burns a configurable percentage of PR token output on buys and captures ETH into a vault on sells. Burn and capture rates are admin-adjustable within bounds, capped at a maximum of 5%.",
"verifiedSource": true
},
"flags": {
"beforeInitialize": false,
"afterInitialize": false,
"beforeAddLiquidity": false,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": false,
"afterSwap": true,
"beforeDonate": false,
"afterDonate": false,
"beforeSwapReturnsDelta": false,
"afterSwapReturnsDelta": true,
"afterAddLiquidityReturnsDelta": false,
"afterRemoveLiquidityReturnsDelta": false
},
"properties": {
"dynamicFee": false,
"upgradeable": false,
"requiresCustomSwapData": false,
"vanillaSwap": false,
"swapAccess": "none"
}
},
{
"hook": {
"address": "0x5b409184204b86f708d3aebb3cad3f02835f68cc",
"chain": "base",
"chainId": 8453,
"name": "Fey Hook (Base)",
"description": "A Uniswap v4 hook for Fey Protocol that manages paired-token pools with per-direction static LP fees and a 20% protocol fee. It includes MEV protection active for 2 minutes post-launch, optional pool extensions, and LP locker integration for automatic fee collection.",
"deployer": "",
"verifiedSource": true,
"auditUrl": ""
},
"flags": {
"beforeInitialize": true,
"afterInitialize": false,
"beforeAddLiquidity": true,
"afterAddLiquidity": false,
"beforeRemoveLiquidity": false,
"afterRemoveLiquidity": false,
"beforeSwap": true,
"afterSwap": true,
"beforeDonate": false,