wait-for-transaction-receipt
Wait for a blockchain transaction to be included in a block and return its receipt. Requires transaction hash and chain ID as inputs. Facilitates secure blockchain interactions via MCPilot's MetaMask integration.
Instructions
Waits for the transaction to be included on a block, and then returns the transaction receipt
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | No | ||
hash | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "number"
},
"hash": {
"type": "string"
}
},
"required": [
"hash"
],
"type": "object"
}