> For the complete documentation index, see [llms.txt](https://docs.kanalabs.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kanalabs.io/smart-wallet-sdk/mirai-sdk-the-evm-smart-wallet-and-paymaster/paymaster/remove-from-whitelist.md).

# Remove From Whitelist

```typescript
import 'dotenv/config';
import { Paymaster } from '@kanalabs/mirai';

(async () => {
   
   // Define the accountAddress, chainId and apiKey
   const accountAddress = '0xf141413684395e0174f14ab8fe2414106f79f2f9';
   const chainId = 80001;
   const apiKey = process.env.PAYMASTER_API_KEY || ''

   // initializating Paymaster service using the apiKey...
   const paymasterService = new Paymaster(apiKey);
   
   // remove a whitelist using the specified accountAddress and chainId
   const response = await paymasterService.removeWhitelist(accountAddress, chainId);

   // Log the remove whitelist response
   console.log('response', response);
})()
```
