Install
openclaw skills install megaethss-developerEnd-to-end MegaETH development playbook (Feb 2026). Covers Foundry project setup with MegaETH-specific config, wallet operations, token swaps (Kyber Network), eth_sendRawTransactionSync (EIP-7966) for instant receipts, JSON-RPC batching, real-time mini-block subscriptions, storage-aware contract patterns (Solady RedBlackTreeLib, transient storage), MegaEVM multidimensional gas model, WebSocket keepalive, bridging from Ethereum, Privy headless signing for ultra-low latency, debugging with mega-evme, Meridian x402 payments on MegaETH (seller-side settlement plus buyer-side USDm forwarder approvals and EIP-712 authorizations), and Warren Protocol for on-chain website hosting. Use when building on MegaETH, using Foundry, managing wallets, sending transactions, deploying contracts, integrating Privy embedded wallets, ERC-7710 delegation framework for scoped on-chain permissions, MetaMask Smart Accounts Kit for smart account creation and delegation management, integrating Meridian/x402 paid APIs or agent actions, hosting websites on-chain with Warren, or integrating MegaNames (.mega naming service) for name registration, resolution, subdomains, subdomain marketplace (selling/buying subdomains with token gating), and text records.
openclaw skills install megaethss-developerUse this Skill when the user asks for:
| Network | Chain ID | RPC | Explorer |
|---|---|---|---|
| Mainnet | 4326 | https://mainnet.megaeth.com/rpc | https://mega.etherscan.io |
| Testnet | 6343 | https://carrot.megaeth.com/rpc | https://megaeth-testnet-v2.blockscout.com |
eth_sendRawTransactionSync (EIP-7966) — returns receipt in <10mseth_getTransactionReceiptaggregate3) for batching multiple eth_call requestseth_call is 2-10x faster; Multicall amortizes per-RPC overheadeth_getLogs) with fast ones in same requestNote: Earlier guidance recommended JSON-RPC batching over Multicall for caching benefits. With v2.0.14's performance improvements, Multicall is now preferred.
eth_chainId every 30 secondsminiBlocks subscription for real-time dataeth_maxPriorityFeePerGas (returns 0)eth_estimateGas (MegaEVM costs differ from standard EVM)eth_sendRawTransactionSync → done--skip-simulationeth_sendRawTransactionSyncAlways be explicit about:
When implementing changes, provide: