The client instance.
Parameters including the smart account, module to uninstall, and optional gas settings.
The hash of the user operation as a hexadecimal string.
If the account is not found.
import { uninstallModule } from '@biconomy/sdk'
const userOpHash = await uninstallModule(nexusClient, {
  module: {
    type: 'executor',
    address: '0x...',
    context: '0x'
  }
})
console.log(userOpHash) // '0x...'
Uninstalls a module from a smart account.