Skip to main content

eth_getBlockByHash

Returns information about a block by hash on MegaETH.

Why MegaETH? Build on the first real-time blockchain with sub-millisecond latency and 100,000+ TPS with sub-millisecond transaction streaming with 100,000+ sustained TPS and full EVM compatibility.

Use Cases#

The eth_getBlockByHash method is essential for:

  • Block verification - Verify block data using its unique hash
  • Chain reorganization handling - Track blocks during reorgs
  • Cross-chain bridges - Verify block finality for high-frequency trading, real-time gaming, instant payments, and latency-sensitive applications
  • Deterministic queries - Get consistent block data regardless of chain state

Full Block Restriction#

Full Block Queries Disabled

On MegaETH, the fullTransactionObjects parameter is disabled for performance optimization. The method always returns transaction hashes instead of full transaction objects.

To get full transaction details, fetch them individually:

// Get block with transaction hashes
const block = await provider.getBlock(blockHash, false);

// Fetch full transaction details as needed
for (const txHash of block.transactions) {
const tx = await provider.getTransaction(txHash);
console.log('Transaction:', tx);
}

Parameters#

ParameterTypeRequiredDescription
blockHashDATAYes32-byte block hash
fullTransactionsBooleanYesIf true, returns full transaction objects; if false, returns transaction hashes

Request#

{
"jsonrpc": "2.0",
"method": "eth_getBlockByHash",
"params": [
"0xe2ae73c07a531471127f7a4e814d7d1e8dbd3def6152c60e2e0284024798056e",
false
],
"id": 1
}

Returns#

Returns the same block object as eth_getBlockByNumber, or null if no block is found.

FieldTypeDescription
numberQUANTITYBlock number
hashDATA32-byte block hash
parentHashDATA32-byte parent block hash
timestampQUANTITYUnix timestamp
gasUsedQUANTITYTotal gas used
transactionsArrayTransaction objects or hashes

Code Examples#

curl -X POST https://api-megaeth-mainnet.n.dwellir.com/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_getBlockByHash",
"params": [
"0xe2ae73c07a531471127f7a4e814d7d1e8dbd3def6152c60e2e0284024798056e",
false
],
"id": 1
}'

Error Handling#

Error CodeMessageDescription
-32602Invalid paramsInvalid block hash format
-32000Block not foundBlock with this hash does not exist