Using this API call we can whitelisting the address.
import'dotenv/config';import { Paymaster } from'@kanalabs/mirai';(async () => {// Define the accountAddress, chainId and apiKeyconstaccountAddress='0x87c9B02A10eC2CB4dcB3b2e573e26169CF3cd9Bf';constchainId=80001;constapiKey=process.env.PAYMASTER_API_KEY||'';// initializating Paymaster service using the apiKey...constpaymasterService=newPaymaster(apiKey);// Add a whitelist paymaster using the specified accountAddress and chainIdconstresponse=awaitpaymasterService.addWhitelist(accountAddress, chainId);// Log the add whitelist paymaster responseconsole.log('response', response);})()