What problem does it solve? AI agents and developers routinely apply standard Ethereum assumptions to MegaETH that are wrong: 21,000 intrinsic gas (actually 60,000), polling for receipts (instead of sub-10ms synchronous receipts), local gas simulation (MegaEVM opcode costs differ), and dynamic storage mappings (new slots cost 2M+ gas). This Skill provides verified chain configuration, RPC methods, gas model details, and contract patterns specific to MegaETH mainnet (chain ID 4326) and testnet. ## Core Features & Use Cases - Real-time transaction patterns: Use eth_sendRawTransactionSync (EIP-7966) for receipts in under 10ms, mini-block WebSocket subscriptions, and nonce pipelining for latency-sensitive apps. - 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 2M+ gas per new slot. - Protocol integrations: Register and resolve MegaNames (.mega) domains, build ERC-7710 scoped delegations with caveat enforcers, host on-chain sites via Warren, and create MetaMask smart accounts. - Use Case: Deploy a Foundry contract to MegaETH with correct gas limits (--skip-simulation), wire a viem client with the correct chain definition, and submit transactions with instant receipts instead of polling. ## Quick Start Set up a viem client for MegaETH mainnet and send a transaction using eth_sendRawTransactionSync with 60,000 intrinsic gas and a fixed 0.001 gwei fee.