The client instance.
Parameters including the smart account and the module to check.
A boolean indicating whether the module is installed.
If the account is not found.
If the accountId result is empty.
import { isModuleInstalled } from '@biconomy/sdk'
const isInstalled = await isModuleInstalled(nexusClient, {
  module: {
    type: 'executor',
    address: '0x...',
    context: '0x'
  }
})
console.log(isInstalled) // true or false
Checks if a specific module is installed on a given smart account.