> 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/standalone-dex/admin-methods/add_rem_managers.md).

# add\_rem\_managers

{% hint style="warning" %}
This entrypoint should be called only by `admin` address.
{% endhint %}

This entrypoint is designed to add or remove manager address.&#x20;

**Manager** - `address`, allowed to change metadata of any LP token.

### 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 candidate manager.</td></tr></tbody></table>

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