Skip to main content

eth_getBlockReceipts

Returns the receipts of a block by number or hash.

Params

(1)

1. block_reference (required)

(any of)
integer
>= 0
null

Result

(MonadEthGetBlockReceiptsResult)
array of:
type
string
status
string
cumulativeGasUsed
string
logs
array[object]
address
string
topics
array[string]
data
string
blockHash
string or null
blockNumber
string or null
transactionHash
string or null
transactionIndex
string or null
logIndex
string or null
removed
boolean
logsBloom
string
transactionHash
string
transactionIndex
string or null
blockHash
string or null
blockNumber
string or null
gasUsed
string
effectiveGasPrice
string
from
string
to
string or null
contractAddress
any

Params

block_reference


Request

await window.ethereum.request({
"method": "eth_getBlockReceipts",
"params": [
null
]
});