Add SaturnOmnichainV4Hook hook on ethereum - #7143
Merged
Ponx merged 1 commit intoSep 16, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
There was a problem hiding this comment.
Review: hooks/ethereum/0x11112e31f78c7f7c9fea7c0e1ca2f8e16505d000.json
Address Flag Verification
Address 0x11112e31f78c7f7c9fea7c0e1ca2f8e16505d000 — lowest 14 bits:
0xd000 & 0x3FFF = 0x1000 = 0b01_0000_0000_0000
Only bit 12 (afterInitialize) is set. This matches the flags section exactly, and is confirmed by getHookPermissions() in the verified source.
Source Code Analysis
The contract is a minimal IHooks implementation:
afterInitializeis the only enabled permission; its implementation is a no-op stub (returns the selector).initializePool()deploys an ETH/token pool viaPOOL_MANAGER.initialize()with hardcodedPOOL_FEE = 3000(0.3%) andPOOL_TICK_SPACING = 60. RecordsinitialTickand setspoolInitialized = true.- All other hook callbacks are implemented but not enabled in
getHookPermissions(). - No swap or liquidity behavior is altered.
Properties
| Property | Filed | Verdict |
|---|---|---|
dynamicFee |
false |
Correct — no updateDynamicLPFee(), no fee override in beforeSwap |
upgradeable |
false |
Correct — POOL_MANAGER and TOKEN are immutable; no proxy, no mutable delegatecall; source_meta.json confirms proxy: false |
requiresCustomSwapData |
false |
Correct — no swap hooks |
vanillaSwap |
true |
Correct — no swap flags at all |
swapAccess |
"none" |
Correct — no swap flags |
Metadata
verifiedSource: true— confirmed bysource_meta.json("verified": true)chainId: 1— matches Ethereum inchains.jsonname: "SaturnOmnichainV4Hook"— matchescontractNameinsource_meta.jsondescription— accurate and technically substantiated: theafterInitializeno-op stub,initializePool()helper with 0.3%/tick-60 fixed parameters, and no swap/liquidity impact are all verifiable from source. No marketing, audit, or safety language present.
All fields are correct. Approving.
Ponx
approved these changes
Sep 16, 2026
Ponx
left a comment
Collaborator
There was a problem hiding this comment.
Bot review verified; bitmask/flags/properties check out. LGTM.
Ponx
deleted the
hooks/ethereum/0x11112e31f78c7f7c9fea7c0e1ca2f8e16505d000
branch
September 16, 2026 23:06
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
A minimal hook that only uses afterInitialize (as a no-op stub) to satisfy the interface. Provides an initializePool() helper that deploys an ETH/token pool with fixed parameters (0.3% fee, tick spacing 60). Does not alter swap or liquidity behavior.
Flags
Properties
Warnings
Closes #7130