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