showCallsStatus 
Action to request for the wallet to show information about a call batch that was sent via showCalls.
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 { showCallsStatus } from '@wagmi/core/experimental'Usage 
ts
import { showCallsStatus } from '@wagmi/core/experimental'
import { config } from './config'
await showCallsStatus(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 ShowCallsStatusParameters } from '@wagmi/core/experimental'connector 
Connector | undefined
Connector to show call statuses with.
ts
import { getConnections, showCallsStatus } from '@wagmi/core/experimental'
import { config } from './config'
const connections = getConnections(config)
await showCallsStatus(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 { showCallsStatus } from '@wagmi/core/experimental'
import { config } from './config'
await showCallsStatus(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 ShowCallsStatusReturnType } from '@wagmi/core/experimental'bigint
Most recent block number seen.
Error 
ts
import { type ShowCallsStatusErrorType } from '@wagmi/core/experimental'TanStack Query 
ts
import {
  type ShowCallsStatusData,
  type ShowCallsStatusOptions,
  type ShowCallsStatusQueryFnData,
  type ShowCallsStatusQueryKey,
  showCallsStatusQueryKey,
  showCallsStatusQueryOptions,
} from '@wagmi/core/experimental/query'