Skip to content
Blockchain

Why does upgrading my smart contract let me silently corrupt storage that auditors already blessed?

82

Oportunidade

Upgradeable proxy patterns (UUPS, Transparent Proxy, Diamond) are standard in production DeFi but carry a strict constraint: the storage layout of a new implementation must be compatible with every slot assigned by the previous one. Insert a new state variable at the wrong position and every subsequent slot is corrupted silently, with no on-chain error. Automated checkers like OpenZeppelin's upgrade plugin catch naive cases but miss ERC-7201 namespaced storage with custom packing, assembly-level slot assignments, and Diamond facet cross-collision where two facets claim the same storage region. A January 2026 peer-reviewed study (ProxyLens) found a significant class of inter-facet collision vulnerabilities that existing tools do not detect. Auditors review implementation contracts in isolation and cannot reconstruct the full storage map of a proxy with multiple delegated facets.

Por que importa

A tool that builds a complete, version-diffed storage map across all proxy and implementation contracts would turn a class of silent data corruption into a blocked deployment.

Como avalio a oportunidade

A Pontuação de Oportunidade é minha própria leitura, não uma medição: o quanto dói, com que frequência aparece e o quanto pouco existe para resolvê-lo hoje. Quanto maior, mais vale a pena construir, na minha opinião.

Gravidade9/10

O quanto de dor causa quando aparece.

Frequência6/10

Com que frequência as pessoas realmente se deparam com isso.

Lacuna8/10

O quanto pouco de boas ferramentas existe para isso hoje.

Mais problemas que merecem ser resolvidos