POST
/
eth_getBlockReceipts
curl --request POST \
  --url https://api.mainnet.abs.xyz/eth_getBlockReceipts \
  --header 'Content-Type: application/json' \
  --data '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "eth_getBlockReceipts",
  "params": [
    "0x1b4"
  ]
}'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": []
}

Body

application/json
jsonrpc
string
default:2.0
required

JSON-RPC version

method
string
default:eth_getBlockReceipts
required

The method to call

params
any[]
required

Block parameter (number or hash)

id
integer
default:1
required

Request identifier

Response

200 - application/json
Returns all transaction receipts for the block
jsonrpc
string
Example:

"2.0"

id
integer
Example:

1

result
object[]

Array of transaction receipts

Example:
[]