Parameters
chainId
string
default:"80002"
required
Unique identifier for a blockchain network.
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"eth_getTransactionReceiptsByBlock"
required
JSON-RPC method name.
Parameters: [blockReference]Positional parameters for eth_getTransactionReceiptsByBlock:params[]: The block number in hex, block hash, or a tag such as “latest”, “earliest”, or “finalized”.
Returns
An array of transaction receipt objects or null if no receipts were found.
The hash of the block containing this transaction.
Contract address created, or null if not a contract creation.
Total gas used when this transaction was executed.
Gas used by this transaction alone.
Array of log objects generated by this transaction.
The address that generated the log.
Array of indexed log arguments (topics).
Non-indexed data portion of the log.
Execution status: “0x1” (success) or “0x0” (failure).
Recipient address, or null if contract creation.
Index position of the transaction within the block.
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=80002 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "eth_getTransactionReceiptsByBlock",
"params": [
"latest"
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": []
}