What problem does it solve? AI agents and developers frequently generate Ethereum code with fundamental misconceptions about gas units, transaction types, storage slots, and wei denominations, causing real bugs and lost funds. This Skill provides an accurate, up-to-date conceptual reference for EVM development. ## Core Features & Use Cases - Gas & Fee Reference: Covers the EIP-1559 fee model, opcode gas costs, blob gas (EIP-4844), and gas optimization techniques with concrete numbers. - Storage & ABI Deep Dives: Explains slot packing rules, mapping/array slot derivation, string encoding, and calldata layout, with cast commands for reading storage directly. - Network Evolution Context: Documents Pectra and Fusaka upgrades (EIP-7702, PeerDAS, secp256r1 precompile), sub-gwei gas reality, and the 2026 MEV landscape. - Use Case: When writing a Solidity contract, ask the agent to verify storage packing for gas optimization — it will apply the slot packing rules and check the layout with forge inspect instead of guessing. ## Quick Start Ask the agent to explain how to compute the storage slot of a mapping value in a Solidity contract and read it with cast.