The client instance.
Optional
parameters: GetInstalledExecutorsParameters<TSmartAccount>Parameters including the smart account, page size, and cursor.
A tuple containing an array of executor addresses and the next cursor.
If the account is not found.
import { getInstalledExecutors } from '@biconomy/sdk'
const [executors, nextCursor] = await getInstalledExecutors(nexusClient, {
pageSize: 10n
})
console.log(executors, nextCursor) // ['0x...', '0x...'], '0x...'
Retrieves the installed executors for a given smart account.