getCallsStatus
Returns the status of a call batch that was sent via sendCalls.
Usage
example.ts
import { walletClient } from './config'
 
const result = await walletClient.getCallsStatus({ 
  id: '0x1234567890abcdef',
})
{   atomic: false,   chainId: 1,   id: '0x1234567890abcdef',   statusCode: 200,   status: 'success',   receipts: [{ ... }], }Returns
WalletGetCallsStatusReturnType
Status of the calls.
Parameters
id
- Type: string
Identifier of the call batch.

