provider_get_transaction_receipt
Retrieve a transaction receipt from Ethereum or EVM-compatible blockchains using the transaction hash to confirm details like status, logs, and gas used.
Instructions
Get a transaction receipt
Input Schema
Name | Required | Description | Default |
---|---|---|---|
transactionHash | Yes | The transaction hash |
Input Schema (JSON Schema)
{
"properties": {
"transactionHash": {
"description": "The transaction hash",
"type": "string"
}
},
"required": [
"transactionHash"
],
"type": "object"
}