Parameters
chainId
string
default:"1315"
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_getBlockReceipts"
required
JSON-RPC method name.
Parameters: [blockNumber]Positional parameters for eth_getBlockReceipts:params[]: Block identifier (hex block number or one of the tags: “latest”, “earliest”, “pending”, “finalized”, “safe”).
Returns
List of transaction receipt objects for the specified block.
Contract address created, if any.
Total gas used when this transaction was executed in the block.
Gas used by this specific transaction.
Effective gas price (wei).
Logs generated by this transaction.
Address that generated the log.
True if the log was removed due to chain reorg.
Transaction execution status: 0x1 (success), 0x0 (failure).
Index of the transaction in the block.
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=1315 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "eth_getBlockReceipts",
"params": [
"latest"
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": []
}