API Console
Test RPC methods live against LitVM RPC PRO.
🔒
Playground requires a paid subscription
Upgrade to Builder, Trader, Infrastructure or Enterprise to unlock the API Console.
Go to DashboardRequest
Response
Send a request to see the response here.
| Method | Description | Tier | Use Case |
|---|---|---|---|
| Block & Chain | |||
eth_blockNumber |
Current block height | Free | Health check, sync status, polling for new blocks |
eth_getBlockByNumber |
Block data by number | Free | Block explorer, indexer, reading block transactions |
eth_getBlockByHash |
Block data by hash | Free | Verify block by hash, reorg detection |
eth_chainId |
Chain ID (4441) | Free | Network verification, wallet config |
net_version |
Network version | Free | Legacy network identification |
web3_clientVersion |
Node client info | Free | Diagnostics, compatibility check |
eth_syncing |
Node sync status | Free | Check if node is fully synced |
| Account & State | |||
eth_getBalance |
Wallet balance (wei) | Free | Show balance in dApp, check funds before tx |
eth_getTransactionCount |
Nonce for address | Free | Build raw transaction, detect pending txs |
eth_getCode |
Contract bytecode | Free | Check if address is contract or EOA |
eth_getStorageAt |
Raw storage slot | Free | Read contract state directly, auditing |
| Transaction | |||
eth_getTransactionByHash |
Tx data by hash | Free | Track sent transaction, show tx details |
eth_getTransactionReceipt |
Tx receipt (status, logs) | Free | Confirm tx success, read event logs |
eth_sendRawTransaction |
Broadcast signed tx | Free | Send transfer, deploy contract, call function |
| Gas & Fees | |||
eth_gasPrice |
Current gas price | Free | Estimate tx cost, set gasPrice in wallet |
eth_estimateGas |
Gas estimate for call | Free | Preview gas before sending, avoid out-of-gas |
eth_feeHistory |
Historical fee data | Free | EIP-1559 fee estimation, gas analytics |
eth_maxPriorityFeePerGas |
Suggested priority fee | Free | EIP-1559 tip estimation |
| Smart Contracts | |||
eth_call |
Read-only contract call | Free | Read balanceOf, totalSupply, any view function |
eth_getLogs |
Filter event logs | Free | Index events (Transfer, Swap), build history |
| Mempool (Trader+) | |||
txpool_status |
Pending/queued tx count | Trader | Monitor mempool load, MEV strategies |
txpool_content |
Full mempool contents | Trader | Arbitrage, front-running detection, gas analysis |
txpool_inspect |
Mempool summary | Trader | Quick mempool overview without full data |
| Debug (Infrastructure+) | |||
debug_traceTransaction |
Trace single tx execution | Infra | Debug reverts, gas profiling, opcode trace |
debug_traceBlockByNumber |
Trace all txs in block | Infra | Full block analysis, indexer with traces |
debug_traceBlockByHash |
Trace block by hash | Infra | Same as above, referenced by hash |