What problem does it solve? AI agents and developers routinely apply standard Ethereum assumptions to MegaETH that are wrong: intrinsic gas is 60,000 not 21,000, local gas simulation produces incorrect estimates, and new storage slots cost 2M+ gas. This Skill provides verified chain configuration, RPC methods, gas model details, and contract addresses so transactions and contracts work correctly on MegaETH the first time. ## Core Features & Use Cases - Real-time transaction submission: Use eth_sendRawTransactionSync (EIP-7966) for receipts in under 10ms instead of polling, plus mini-block WebSocket subscriptions and cursor-paginated log queries. - Gas and storage optimization: Apply the dual gas model, SSTORE bucket multipliers, RedBlackTreeLib slot reuse, transient storage (EIP-1153), and SSTORE2 bytecode storage to avoid expensive state growth. - Protocol integrations: Register and resolve MegaNames (.mega) domains, build ERC-7710 scoped delegations with caveat enforcers, deploy MetaMask smart accounts, and host on-chain sites via Warren Protocol. - Use Case: A developer deploying a contract to MegaETH mainnet gets the correct chain ID (4326), RPC endpoints, Foundry flags (--skip-simulation, no via_ir), and verified contract addresses without hallucinated values. ## Quick Start Ask the agent to set up a viem client for MegaETH mainnet and send a transaction using eth_sendRawTransactionSync with the correct 60,000 intrinsic gas.