eth_getFinalizedBlock
Description
Returns the latest finalized block.
Counts as 1 request. See Request Counting.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
finalityType | string | No | "fast" or "probabilistic" |
fullTransactions | boolean | No | Include full tx objects |
Request
{
"jsonrpc": "2.0",
"method": "eth_getFinalizedBlock",
"params": [
"fast",
false
],
"id": 1
}Code Examples
curl -X POST https://bsc-rpc.blockreq.com/v1/rpc/public \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_getFinalizedBlock","params":["fast",false],"id":1}'