getCallsStatus 
Action to fetch the status and receipts of a call batch that was sent via sendCalls.
WARNING
This is an experimental action that is not supported in most wallets. It is recommended to have a fallback mechanism if using this in production.
Import 
ts
import { getCallsStatus } from '@wagmi/core/experimental'Usage 
ts
import { getCallsStatus } from '@wagmi/core/experimental'
import { config } from './config'
const status = await getCallsStatus(config, {
  id: '0x1234567890abcdef',
})ts
import { http, createConfig } from '@wagmi/core'
import { mainnet, sepolia } from '@wagmi/core/chains'
export const config = createConfig({
  chains: [mainnet, sepolia],
  transports: {
    [mainnet.id]: http(),
    [sepolia.id]: http(),
  },
})Parameters 
ts
import { type GetCallsStatusParameters } from '@wagmi/core/experimental'connector 
Connector | undefined
Connector to get call statuses with.
ts
import { getConnections, getCallsStatus } from '@wagmi/core/experimental'
import { config } from './config'
const connections = getConnections(config)
const status = await getCallsStatus(config, {
  connector: connections[0]?.connector, 
  id: '0x1234567890abcdef',
})ts
import { http, createConfig } from '@wagmi/core'
import { mainnet, sepolia } from '@wagmi/core/chains'
export const config = createConfig({
  chains: [mainnet, sepolia],
  transports: {
    [mainnet.id]: http(),
    [sepolia.id]: http(),
  },
})id 
string
Identifier of the call batch.
ts
import { getCallsStatus } from '@wagmi/core/experimental'
import { config } from './config'
const status = await getCallsStatus(config, {
  id: '0x1234567890abcdef', 
})ts
import { http, createConfig } from '@wagmi/core'
import { mainnet, sepolia } from '@wagmi/core/chains'
export const config = createConfig({
  chains: [mainnet, sepolia],
  transports: {
    [mainnet.id]: http(),
    [sepolia.id]: http(),
  },
})Return Type 
ts
import { type GetCallsStatusReturnType } from '@wagmi/core/experimental'bigint
Most recent block number seen.
Error 
ts
import { type GetCallsStatusErrorType } from '@wagmi/core/experimental'TanStack Query 
ts
import {
  type GetCallsStatusData,
  type GetCallsStatusOptions,
  type GetCallsStatusQueryFnData,
  type GetCallsStatusQueryKey,
  getCallsStatusQueryKey,
  getCallsStatusQueryOptions,
} from '@wagmi/core/experimental/query'