> For the complete documentation index, see [llms.txt](https://docs.quipuswap.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.quipuswap.com/smart-contracts/quipuswap-stable-swap-dex/factory/developer-methods/factory-management/factory-params/set_whitelist.md).

# set\_whitelist

{% hint style="warning" %}
This contract method is called only by `developer` of that contract.
{% endhint %}

This method adds (or removes) addresses to the whitelist (for deploying new pools without charging QUIPU tokens).

### Call parameters

<table><thead><tr><th width="150">Field</th><th width="150" align="center">Type</th><th width="448.2">Description</th></tr></thead><tbody><tr><td>add</td><td align="center"><code>bool</code></td><td><code>True</code> to add or <code>False</code> to remove candidate.</td></tr><tr><td>candidate</td><td align="center"><code>address</code></td><td>address of the whitelist candidate.</td></tr></tbody></table>

```pascaligo
type set_man_param_t    is [@layout:comb] record [
  add                     : bool;
  candidate               : address;
]
```
