Add SpectraLaunch hook on base#614
Merged
marktoda merged 1 commit intoJun 3, 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/base/0x6b80ce7c95b0206b14ce9977c904e11918d48040.json
Address Flag Verification
Address last 14 bits: 0x8040 & 0x3FFF = 0x0040 → bit 6 set → afterSwap only.
Confirmed by source getHookPermissions():
function getHookPermissions() public pure override returns (Hooks.Permissions memory p) {
p.afterSwap = true;
}All 14 flags match the hook file. ✓
Properties
| Property | Value | Verdict |
|---|---|---|
dynamicFee |
false |
_afterSwap is pure, returns (selector, 0). No lpFeeOverride or updateDynamicLPFee. ✓ |
upgradeable |
false |
No proxy pattern, no delegatecall, no SELFDESTRUCT. ✓ |
requiresCustomSwapData |
false |
_afterSwap ignores hookData entirely. ✓ |
vanillaSwap |
true |
afterSwap is a pure no-op — returns selector and 0 delta, modifies no state. Swaps execute identically to a vanilla v4 pool. ✓ |
swapAccess |
"none" |
No beforeSwap flag; afterSwap has no access control. ✓ |
Metadata
verifiedSource: true— confirmed bysource_meta.json("verified": true). ✓chainId: 8453— matchesbaseinchains.json. ✓name: "SpectraLaunch"— matchescontractNamein source metadata and the Solidity contract declaration. ✓description— factually accurate: the contract is both an ERC20 token and a Uniswap v4 hook (extendsBaseHook). The "holding = LP" claim is substantiated by the NFT-based fee distribution mechanism where token holders receive pool fee proceeds pro-rata. No promotional, audit, or endorsement language. ✓
All fields verified against on-chain source. No issues found.
marktoda
approved these changes
Jun 3, 2026
Contributor
marktoda
left a comment
There was a problem hiding this comment.
Bot review verified. SpectraLaunch (base) — afterSwap launchpad hook (vanillaSwap=true). Bitmask 0x0040 → afterSwap. Description 183 chars. LGTM.
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
SPECTRA launchpad afterSwap hook on Base — the token is its own Uniswap v4 hook (holding = LP). Token contract 0x6b80ce7c95b0206b14ce9977c904e11918d48040. Source verified on BaseScan.
Flags
Properties
Warnings
Closes #613