Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
uniswap avatar

V4 Hook Generator

  • 415 installs
  • 222 repo stars
  • Updated August 4, 2026
  • uniswap/uniswap-ai

v4-hook-generator is a Web3 agent skill that generates Uniswap v4 hook Solidity contracts via OpenZeppelin MCP for developers building custom swap logic, dynamic fees, MEV protection, or oracle hooks.

About

v4-hook-generator is a version 1.0.0 MIT-licensed agent skill from Uniswap/uniswap-ai that scaffolds Uniswap v4 hook contracts through the OpenZeppelin Contracts Wizard MCP tool. The skill documents 14 base hook types—from BaseHook and BaseCustomCurve to AntiSandwichHook, LimitOrderHook, and OracleHookWithV3Adapters—and all 14 permission flags with LOW to CRITICAL risk ratings, including the NoOp attack vector on beforeSwapReturnDelta. A six-step checklist covers hook type, permissions, utility libraries (currencySettler, safeCast, transientStorage), shares (ERC20/ERC6909/ERC1155), access control (ownable/roles/managed), and hook inputs. The canonical generate_hook MCP JSON schema produces ready-to-compile Solidity that developers write to disk manually, with HookMiner required for address bit encoding. The workflow ends by invoking v4-security-foundations before deployment. Reach for v4-hook-generator when building custom AMM curves, dynamic fees, MEV protection, or oracle hooks on Uniswap v4.

  • v4-hook-generator
  • AI & Agent Building
  • AI-coding skill

V4 Hook Generator by the numbers

  • 415 all-time installs (skills.sh)
  • +40 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #1,937 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/uniswap/uniswap-ai --skill v4-hook-generator

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs415
repo stars222
Last updatedAugust 4, 2026
Repositoryuniswap/uniswap-ai

How do you scaffold Uniswap v4 hook contracts?

Helps with ai & agent building tasks.

Who is it for?

Solidity developers building production Uniswap v4 hooks who need correct permission bits, utility libraries, and OpenZeppelin-generated scaffolding.

Skip if: Teams only swapping tokens via the Trading API without writing custom v4 hook contracts.

When should I use this skill?

A developer asks to build Uniswap v4 hooks, configure beforeSwap permissions, generate hook Solidity, or integrate OpenZeppelin Contracts Wizard MCP.

What you get

OpenZeppelin MCP JSON config, generated Solidity hook source, permission matrix, and HookMiner deployment notes.

  • Generated Solidity hook contract
  • generate_hook MCP JSON config
  • Permission and utility library configuration

By the numbers

  • Version 1.0.0 skill defining 14 Uniswap v4 hook base types
  • Documents all 14 permission flags with risk ratings
  • Eval suite ships 4 test cases for hook generation workflows

Files

SKILL.mdMarkdownGitHub ↗

v4 Hook Generator

Generate Uniswap v4 hook contracts via the OpenZeppelin Contracts Wizard MCP tool. This skill guides you through selecting the right hook type, configuring permissions and utilities, assembling the canonical MCP JSON, and invoking the MCP tool to produce ready-to-compile Solidity code.

Security companion: Generated hook code touches fund-handling contracts. Always apply the
v4-security-foundations skill immediately after generation to audit permissions, delta
accounting, and access control before deploying to any network.

When to Use This Skill

Use this skill when you need to:

  • Scaffold a new Uniswap v4 hook contract from scratch
  • Select the right base hook type for a specific use case (fees, MEV protection, oracles, etc.)
  • Configure hook permissions, utility libraries, shares, and access control
  • Produce the canonical MCP tool call JSON to invoke the OpenZeppelin Contracts Wizard
  • Understand trade-offs between hook configuration options before committing to an implementation

Prerequisite / companion skill: v4-security-foundations — run it before writing custom logic and again before deployment. Hook misconfiguration can drain user funds.

Hook Type Decision Table

Choose the base hook type that matches your primary goal. If your hook has multiple goals, choose the type that covers the most critical concern and layer additional logic on top.

GoalUse Hook
Custom swap logicBaseHook
Async/delayed swapsBaseAsyncSwap
Hook-owned liquidityBaseCustomAccounting
Custom curveBaseCustomCurve
Dynamic LP feesBaseDynamicFee
Dynamic swap feesBaseOverrideFee
Post-swap feesBaseDynamicAfterFee
Fixed hook feesBaseHookFee
MEV protectionAntiSandwichHook
JIT protectionLiquidityPenaltyHook
Limit ordersLimitOrderHook
Yield on idleReHypothecationHook
OracleBaseOracleHook
V3-compatible oracleOracleHookWithV3Adapters

Selection tips:

  • BaseHook is the general-purpose starting point — choose a specialized type only when the

built-in logic provides concrete value.

  • BaseCustomCurve replaces the entire AMM math; only use it if you are implementing a novel

pricing algorithm.

  • AntiSandwichHook and LiquidityPenaltyHook both address MEV but target different actors

(traders vs. JIT LPs). Clarify which attack vector you are mitigating.

  • OracleHookWithV3Adapters is appropriate when downstream integrations expect a Uniswap v3

IUniswapV3Pool-compatible oracle interface.

Minimal Decision Checklist

Before calling the MCP tool, confirm all six decisions:

1. Hook type — chosen from the decision table above 2. Permissions to enable — only the callbacks your logic actually uses (beforeSwap, afterSwap, etc.) 3. Utility librariescurrencySettler, safeCast, transientStorage as needed 4. Sharesfalse, ERC20, ERC6909, or ERC1155 5. Access controlownable, roles, or managed 6. Hook inputsblockNumberOffset, maxAbsTickDelta (only for hook types that use them)

Permission Configuration

All 14 permission flags with guidance on when to enable each. Start with all flags false and enable only what your hook logic requires. Every enabled permission increases the hook's attack surface and requires a specific bit to be set in the hook's deployed address (see address encoding note below).

Permission FlagEnable WhenRisk
beforeInitializeYou need to validate or restrict pool creation paramsLOW
afterInitializeYou need to set up state after a pool is createdLOW
beforeAddLiquidityYou need to gate or transform LP depositsMEDIUM
afterAddLiquidityYou track LP positions or distribute rewardsLOW
beforeRemoveLiquidityYou need lock-up periods or fee-on-exit logicHIGH
afterRemoveLiquidityYou track position removals for accountingLOW
beforeSwapYou modify swap behavior, apply dynamic fees, or blockHIGH
afterSwapYou observe final swap state for oracles or accountingMEDIUM
beforeDonateYou restrict who may donate to the poolLOW
afterDonateYou track donation eventsLOW
beforeSwapReturnDeltaYou implement custom AMM curves or JIT liquidity (CRITICAL: NoOp attack vector — see v4-security-foundations)CRITICAL
afterSwapReturnDeltaYou extract a hook fee from swap outputHIGH
afterAddLiquidityReturnDeltaYou adjust LP token amounts on depositHIGH
afterRemoveLiquidityReturnDeltaYou adjust withdrawal amountsHIGH

Address encoding note: Permissions are encoded as bits in the hook contract's deployed address. The address must have the correct bits set at deployment time or the PoolManager will revert. Use HookMiner (from v4-periphery) to mine a salt that produces an address with the correct bit pattern. Never change permissions after deployment — the address is immutable.

Utility Library Selection

Three optional utility libraries can be included in the generated hook. Include only what your hook logic uses.

LibraryInclude When
currencySettlerYour hook moves tokens between itself and the PoolManager (e.g., custom accounting, fee collection)
safeCastYour hook performs arithmetic that could overflow when casting between integer types
transientStorageYour hook needs to pass data between callbacks within a single transaction without persisting to storage (requires EVM Cancun or later, Solidity >= 0.8.24)

Guidance:

  • currencySettler is almost always needed when beforeSwapReturnDelta,

afterSwapReturnDelta, afterAddLiquidityReturnDelta, or afterRemoveLiquidityReturnDelta are enabled — it provides settle and take helpers that implement the correct sync → transfer → settle sequence.

  • transientStorage is a gas-efficient alternative to storage slots for intra-transaction state.

Use it to pass a flag or value from beforeSwap to afterSwap without paying 20k gas for a cold SSTORE.

  • safeCast is advisable whenever you compute amounts derived from int256/uint256 conversions,

especially for fee calculations.

Shares Configuration

The shares option controls whether the generated hook issues a token representing user shares (e.g., LP positions in hook-owned liquidity pools).

OptionDescriptionUse When
falseNo share token — hook does not track ownership of deposited assetsSimple hooks that do not hold user funds
ERC20Fungible share token — one token represents proportional ownership of all hook-held assetsHook-managed liquidity pools with interchangeable shares
ERC6909Multi-token (minimal) — one contract manages many token IDs with lower overhead than ERC1155Hook manages multiple distinct asset classes efficiently
ERC1155Multi-token (standard) — full ERC1155 with metadata URI supportHook needs broad wallet and marketplace compatibility

Trade-offs:

  • false: smallest bytecode, no share accounting overhead; appropriate for fee hooks and oracles.
  • ERC20: simplest fungible share; good DeFi composability (e.g., used as collateral).
  • ERC6909: gas-efficient multi-token with a minimal interface; preferred for new protocol designs.
  • ERC1155: widest ecosystem support (wallets, explorers, NFT marketplaces); higher gas cost per

transfer than ERC6909.

Access Control Options

The access option shapes the constructor and administrative interface of the generated hook.

OptionConstructor ShapeUse When
ownableconstructor(IPoolManager, address initialOwner)Single owner controls all admin functions
rolesconstructor(IPoolManager, address admin)Multiple roles with granular permissions (OpenZeppelin AccessControl)
managedconstructor(IPoolManager, address authority)External authority contract governs permissions (OpenZeppelin AccessManaged)

Guidance:

  • ownable is the simplest — one address can perform all privileged operations. Suitable for

early-stage hooks and personal tools.

  • roles adds ADMIN_ROLE, PAUSER_ROLE, etc. via OpenZeppelin AccessControl. Use when

different team members need different privileges (e.g., a keeper bot that can update fees but cannot upgrade the contract).

  • managed delegates all permission checks to a separate AccessManager contract. Use when

you need a unified governance layer across multiple contracts or want timelocked admin actions.

Note: Changing the access option changes the constructor signature. Update deployment
scripts and initialization logic accordingly. When using ownable, ensure the initialOwner
is not the zero address — OpenZeppelin's Ownable reverts on zero address since v5.

Hook Inputs Reference

Some hook types accept numeric configuration inputs that tune behavior. These are passed as the inputs object in the MCP tool call.

InputTypeUsed ByDescription
blockNumberOffsetuint256AntiSandwichHook, LiquidityPenaltyHookNumber of blocks before sandwich/JIT detection window opens
maxAbsTickDeltaint24AntiSandwichHookMaximum tick movement allowed per block before MEV protection triggers

For hook types that do not use these inputs, omit the inputs field or pass an empty object {}. Passing unsupported inputs to the MCP tool will not cause an error but the values will be ignored.

MCP Tool Call (Canonical)

The OpenZeppelin Contracts Wizard exposes a generate_hook MCP tool. The following is the canonical JSON schema — populate each field according to your decisions from the sections above, then pass this object as the tool's argument.

{
  "hook": "BaseHook",
  "name": "MyHook",
  "pausable": false,
  "currencySettler": true,
  "safeCast": true,
  "transientStorage": false,
  "shares": { "options": false },
  "permissions": {
    "beforeInitialize": false,
    "afterInitialize": false,
    "beforeAddLiquidity": false,
    "beforeRemoveLiquidity": false,
    "afterAddLiquidity": false,
    "afterRemoveLiquidity": false,
    "beforeSwap": true,
    "afterSwap": false,
    "beforeDonate": false,
    "afterDonate": false,
    "beforeSwapReturnDelta": false,
    "afterSwapReturnDelta": false,
    "afterAddLiquidityReturnDelta": false,
    "afterRemoveLiquidityReturnDelta": false
  },
  "inputs": {
    "blockNumberOffset": 1,
    "maxAbsTickDelta": 100
  },
  "access": "ownable",
  "info": { "license": "MIT" }
}

Field notes:

  • hook: string — one of the 14 hook types from the decision table
  • name: string — the Solidity contract name (PascalCase, no spaces)
  • pausable: boolean — wraps the hook in OpenZeppelin Pausable; adds pause()/unpause() admin functions
  • shares.options: false | "ERC20" | "ERC6909" | "ERC1155"
  • access: "ownable" | "roles" | "managed"
  • info.license: SPDX license identifier — use "MIT" for open-source hooks
  • inputs: omit or pass {} for hook types that do not use blockNumberOffset/maxAbsTickDelta

Workflow: Gather → Configure → Generate → Secure

Follow these steps in order every time you use this skill.

Step 1: Gather Requirements

Ask the user (or infer from context):

1. What is the hook's primary goal? (Map to the decision table.) 2. Which lifecycle events does the hook need to intercept? (Map to permissions.) 3. Does the hook hold or move user funds? (Determines currencySettler and shares.) 4. Who administers the hook? (Single owner, role-based team, or external governance?) 5. Does the hook need to pass state between callbacks within a single transaction? 6. Is this for a chain with EVM Cancun support? (Required for transientStorage.)

Step 2: Select Hook Type

Using the decision table, identify the single best hook type. If the user's goal maps to multiple types, explain the trade-offs and ask them to confirm. Document the chosen type and the reasoning.

Step 3: Configure All Six Decisions

Work through the minimal decision checklist:

1. Set hook to the chosen type. 2. Set each permission flag — default false, enable only what the logic requires. 3. Set currencySettler, safeCast, transientStorage based on utility library guidance. 4. Set shares.options based on shares guidance. 5. Set access based on access control guidance. 6. Set inputs only if the hook type uses blockNumberOffset or maxAbsTickDelta.

Step 4: Assemble and Call the MCP Tool

Construct the JSON object from Step 3 and call the OpenZeppelin Contracts Wizard MCP tool with it. The tool returns Solidity source code — it does not write files automatically.

After receiving the generated code:

1. Display the code to the user. 2. Explain the key generated sections (constructor, getHookPermissions, enabled callbacks). 3. Note any manual steps required (HookMiner for address mining, deployment script updates for constructor args if access is roles or managed).

Step 5: Apply Security Foundations

Always remind the user — and invoke v4-security-foundations — before the code is deployed:

  • Verify all enabled callbacks check msg.sender == address(poolManager).
  • Review any enabled *ReturnDelta permissions for NoOp attack exposure.
  • Confirm delta accounting sums to zero for every execution path.
  • Run the full pre-deployment audit checklist from v4-security-foundations.

Important Notes

  • Access control changes constructor shape: Choosing ownable adds an initialOwner parameter;

roles adds an admin parameter; managed adds an authority parameter. Update deployment scripts and factory contracts accordingly.

  • Permissions encode in the hook address: Each enabled permission flag corresponds to a specific

bit in the lower bytes of the hook's deployed address. The PoolManager validates these bits on every callback. Use HookMiner from v4-periphery to mine a deployment salt that produces a matching address.

  • MCP returns code only — it does not write files: The generated Solidity is returned as a

string. You must write it to disk yourself (e.g., packages/contracts/src/hooks/MyHook.sol).

Related Skills

  • v4-security-foundationsRun this after generation. Security audit for Uniswap v4 hooks:

permission risk matrix, NoOp attack patterns, delta accounting, access control verification, and the full pre-deployment audit checklist. Generated hook code should never be deployed without completing this review.

  • viem-integration — Deploy generated hook contracts and interact with them using viem/wagmi
  • v4-sdk-integration — Interact with deployed hooks via the Uniswap v4 SDK

Related skills

How it compares

Pick v4-hook-generator over manual OpenZeppelin wizard use when you need the full 14-type decision table, permission risk matrix, and MCP JSON schema in one guided workflow.

FAQ

How does v4-hook-generator produce hook contracts?

v4-hook-generator guides developers through hook type selection, permission configuration, and utility library choices, then assembles canonical generate_hook JSON for the OpenZeppelin Contracts Wizard MCP. The MCP returns Solidity source as a string to write manually.

How many hook types and permissions does v4-hook-generator document?

v4-hook-generator documents 14 base hook types including BaseHook, AntiSandwichHook, and LimitOrderHook, plus all 14 permission flags from beforeInitialize through afterRemoveLiquidityReturnDelta with per-flag risk ratings.

What security step follows v4-hook-generator output?

v4-hook-generator requires running the v4-security-foundations companion skill before deployment to audit PoolManager sender checks, NoOp attack exposure on ReturnDelta flags, and delta accounting across all execution paths.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.