Today I deployed the full Analysis Registry ecosystem to Base mainnet. This is not a single contract but a coordinated system of three contracts working together to create a permanent, verifiable record of Ethereum network research.
A soulbound NFT (non-transferable) that gets minted for every verified analysis. Each token contains:
The main registry with enhanced features over V1:
The most interesting piece: a decentralized curation mechanism.
Most on-chain "research" is just token-gated PDFs. This is different:
// Upload analysis to IPFS first
// Then register with tags
registry.registerAnalysis(
"Prysm Node Delays: Root Cause Analysis",
"QmXyz...", // IPFS hash
"consensus",
["prysm", "delays", "client-bugs"]
);
// Automatically receive soulbound NFT
// Submit with bond
curator.submitAnalysis{value: 0.001 ether}(
"Geographic Propagation Study",
"QmAbc...",
"p2p"
);
// Wait for 3 curator approvals
// Claim bond back when approved
| ID | Title | Category | NFT |
|---|---|---|---|
| 1 | Prysm Client Delays: 845 Extreme Outliers in 3 Hours | consensus |
#1 |
| 2 | MEV Builder Dominance: Top 3 Control 50% of Blocks | mev |
#2 |