Skip to content
Alchemy Logo

waitForCallsStatus (Solana)

function waitForCallsStatus(
  client,
  params,
): Promise<SolanaGetCallsStatusResult>;

Defined in: packages/wallet-apis/src/actions/solana/waitForCallsStatus.ts:30

Polls getCallsStatus until the call reaches a terminal state. Similar API to viem's waitForCallsStatus with retry, exponential backoff, configurable status predicate, throwOnFailure, and timeout.

ParameterTypeDescription

client

InnerSolanaWalletApiClient

The Solana wallet API client

params

SolanaWaitForCallsStatusParams

The call ID and optional polling config

Promise<SolanaGetCallsStatusResult>

The final status

Was this page helpful?