What problem does it solve? Solidity developers often ship contracts with inefficient storage layouts, redundant SLOADs, and suboptimal data structures that inflate transaction costs for every user. This Skill audits a contract and produces a prioritized gas optimization report with concrete savings estimates. ## Core Features & Use Cases - Ranked Optimization Report: Findings grouped by impact (high/medium/low) with file:line references, before/after code, and estimated gas savings per technique. - Comprehensive Coverage: Storage packing, caching, constant/immutable usage, mappings vs arrays, calldata vs memory, unchecked arithmetic, compiler optimizer settings, and L2-specific calldata considerations. - Use Case: Before deploying a DeFi contract to mainnet, run the analysis to discover that reordering state variables eliminates two storage slots and caching an oracle price saves thousands of gas per call. ## Quick Start Analyze MyToken.sol for gas optimization opportunities and show the highest-impact fixes with before and after code.