curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=137 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "eth_getTransactionReceiptsByBlock",
"params": [
"latest"
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": []
}
Returns all transaction receipts for the specified block using a block number, block hash, or tag. Not available for pending blocks.
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=137 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "eth_getTransactionReceiptsByBlock",
"params": [
"latest"
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": []
}
eth_getTransactionReceiptsByBlock:params[]: The block number in hex, block hash, or a tag such as “latest”, “earliest”, or “finalized”.Show items
Show properties
Show items
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=137 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "eth_getTransactionReceiptsByBlock",
"params": [
"latest"
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": []
}
Was this page helpful?