curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=1 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "eth_getBlockReceipts",
"params": [
"latest"
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": []
}
Returns all transaction receipts for a given block, including gas usage, status, and any event logs emitted by smart contracts.
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=1 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "eth_getBlockReceipts",
"params": [
"latest"
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": []
}
eth_getBlockReceipts:params[]: Block identifier (hex block number or one of the tags: “latest”, “earliest”, “pending”, “finalized”, “safe”).Show items
Show properties
Show items
Show properties
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=1 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "eth_getBlockReceipts",
"params": [
"latest"
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": []
}
Was this page helpful?