# Handle owners

You can easily **get/add/remove** all the owners of your smart wallet.

## Add owners

{% tabs %}
{% tab title="TS" %}

<pre class="language-typescript"><code class="lang-typescript"><strong>const txHash = await smartAccountClient.addOwner({ownerToAdd: ADDRESS_TO_ADD});
</strong></code></pre>

{% endtab %}
{% endtabs %}

## Remove owners

{% tabs %}
{% tab title="TS" %}

```typescript
const txHash = await smartAccountClient.removeOwner({ownerToRemove: ADDRESS_TO_REMOVE});
```

{% endtab %}
{% endtabs %}

## Get owners

{% tabs %}
{% tab title="TS" %}

```typescript
const owners = smartAccountClient.getOwners()
```

{% endtab %}
{% endtabs %}
