Has Aave seen my transaction yet?
get_transaction_processedv4 only. After sending a transaction, ask whether the Aave API has processed it. Use this instead of sleeping or polling an RPC: the API lags the chain, and prepare_action will not issue a dependent follow-up (the supply after an approval, the withdraw after a repay) until it has caught up. Pass the txHash you sent plus the 'operations' array that came back on that transaction. Poll until processed is true, then continue.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| txHash | Yes | Transaction hash you broadcast (0x...). | |
| version | No | Optional, and only 'v4': this tool exists on v4 only. | |
| operations | Yes | The 'operations' from the transaction the server built, e.g. ['SPOKE_SUPPLY']. |