Overview
API subject to change Polls Turnkey for the final result of a previously submitted Ethereum transaction. This function repeatedly callsgetSendTransactionStatus until the transaction reaches a terminal state.
Terminal states:
- COMPLETED or INCLUDED → resolves with
{ txHash } - FAILED rejects with an error
- Queries Turnkey every 500ms.
- Stops polling automatically when a terminal state is reached.
- Extracts the canonical on-chain hash via
resp.eth.txHashwhen available.
Package: core
Defined in: clients/core.ts:2866
Parameters
Response
A successful response returns the following fields:A promise resolving to
{ txHash?: string } if successful.