Skip to main content
Version: v1.26.0

proof namespace

proof_getTransactionByHash

This function returns the same result as eth_getTransactionReceipt and also a tx proof, receipt proof and serialized block headers.

curl localhost:8545 \
-X POST \
-H "Content-Type: application/json" \
--data '{
"jsonrpc": "2.0",
"id": 0,
"method": "proof_getTransactionByHash",
"params": [txHash, includeHeader]
}'

proof_getTransactionReceipt

This function should return the same result as eth_call and also proofs of all used accounts and their storages and serialized block headers.

curl localhost:8545 \
-X POST \
-H "Content-Type: application/json" \
--data '{
"jsonrpc": "2.0",
"id": 0,
"method": "proof_getTransactionReceipt",
"params": [txHash, includeHeader]
}'