Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
End-to-end MegaETH development playbook (Feb 2026). Covers 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), MegaEVM gas model, WebSocket keepalive, bridging from Ethereum, and debugging with mega-evme. Use when building on MegaETH, managing wallets, sending transactions, or deploying contracts.
End-to-end MegaETH development playbook (Feb 2026). Covers 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), MegaEVM gas model, WebSocket keepalive, bridging from Ethereum, and debugging with mega-evme. Use when building on MegaETH, managing wallets, sending transactions, or deploying contracts.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
Use this Skill when the user asks for: Wallet setup and management on MegaETH Sending transactions, checking balances, token operations Token swaps via Kyber Network aggregator MegaETH dApp frontend (React / Next.js with real-time updates) RPC configuration and transaction flow optimization Smart contract development with MegaEVM considerations Storage optimization (avoiding expensive SSTORE costs) Gas estimation and fee configuration Testing and debugging MegaETH transactions WebSocket subscriptions and mini-block streaming Bridging ETH from Ethereum to MegaETH
NetworkChain IDRPCExplorerMainnet4326https://mainnet.megaeth.com/rpchttps://mega.etherscan.ioTestnet6343https://carrot.megaeth.com/rpchttps://megaeth-testnet-v2.blockscout.com
Use eth_sendRawTransactionSync (EIP-7966) β returns receipt in <10ms Eliminates polling for eth_getTransactionReceipt Docs: https://docs.megaeth.com/realtime-api
Prefer Multicall (aggregate3) for batching multiple eth_call requests As of v2.0.14, eth_call is 2-10x faster; Multicall amortizes per-RPC overhead Still avoid mixing slow methods (eth_getLogs) with fast ones in same request Note: Earlier guidance recommended JSON-RPC batching over Multicall for caching benefits. With v2.0.14's performance improvements, Multicall is now preferred.
Send eth_chainId every 30 seconds 50 connections per VIP endpoint, 10 subscriptions per connection Use miniBlocks subscription for real-time data
SSTORE 0βnon-zero costs 2M gas Γ multiplier (expensive) Use Solady's RedBlackTreeLib instead of Solidity mappings Design for slot reuse, not constant allocation
Base fee stable at 0.001 gwei, no EIP-1559 adjustment Ignore eth_maxPriorityFeePerGas (returns 0) Hardcode gas limits to save round-trip Always use remote eth_estimateGas (MegaEVM costs differ from standard EVM)
Replay transactions with full traces Profile gas by opcode https://github.com/megaeth-labs/mega-evm
Frontend/WebSocket layer RPC/transaction layer Smart contract layer Testing/debugging layer
Frontend: single WebSocket β broadcast to users (not per-user connections) Transactions: sign locally β eth_sendRawTransactionSync β done Contracts: check SSTORE patterns, avoid volatile data access limits Testing: use mega-evme for replay, Foundry with --skip-simulation
Always be explicit about: Chain ID (4326 mainnet, 6343 testnet) Gas limit (hardcode when possible) Base fee (0.001 gwei, no buffer) Storage costs (new slots are expensive) Volatile data limits (20M gas after block.timestamp access)
When implementing changes, provide: Exact files changed + diffs Commands to build/test/deploy Gas cost notes for storage-heavy operations RPC optimization notes if applicable
Wallet operations: wallet-operations.md Frontend patterns: frontend-patterns.md RPC methods reference: rpc-methods.md Smart contract patterns: smart-contracts.md Storage optimization: storage-optimization.md Gas model: gas-model.md Testing & debugging: testing.md Security considerations: security.md Reference links: resources.md
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.