debug_getRawReceipts

Returns an array of EIP-2718 binary-encoded receipts.

This method will use 80 Compute Units.


Parameters

blockNumber - Quantity (hex) | Tag - Required - The block number as a string in hexadecimal format or latest

Returns

result - An array of EIP-2718 binary-encoded receipts.

// Result
{
	"jsonrpc": "2.0",
	"result": [
		"0xb901a902f901a501830186a0b9010000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000002000000000050000000000000000008000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f89bf899944b186949f31fca0ad08497df9169a6bebf0e26efe1a05548c837ab068cf56a2c2479df0882a4922fd203edb7517321831d95078c5f62b860000000000000000000000000322ddf49013f5745dd67a12409c6c085acbda4bb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000048655cf1673c2800",
		...
}
curl https://testnet.monad.validationcloud.io/v1/<YOUR_API_KEY_HERE> \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc":"2.0", "method":"debug_getRawReceipts","params":["latest"],"id":1}'
    

Last updated

Was this helpful?