For the complete documentation index, see llms.txt. This page is also available as Markdown.

eth_getBlockReceipts

POST https://mainnet.valuechain.xyz

Returns all transaction receipts for a block.

Parameters

Name
Type
Required
Description

block

quantity, tag, or hash

Yes

Block identifier.

Result

Receipts (object[] or null): Array of receipts, or null if the block is unknown.

Example

Response

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": [
    {
      "transactionHash": "0xb269e14e09977c2969efcabd2eabbef7aeb8196780a53fce6dc5b7605169b10d",
      "blockHash": "0x565381ec3a896e084662587ed4eba8f3b6745ffeff7b1d7b672b4b1bb724f3b5",
      "blockNumber": "0xd81e9f",
      "status": "0x1",
      "gasUsed": "0x5208",
      "effectiveGasPrice": "0x1e8480"
    }
  ]
}

Code examples

cURL

JavaScript

Python

Last updated