> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rhinestone.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# addOwner

> Add an ECDSA owner

## Import

```ts theme={null}
import { addOwner } from '@rhinestone/sdk/actions/ecdsa'
```

## Usage

```ts theme={null}
const transaction = await account.prepareTransaction({
  chain,
  calls: [addOwner(owner)],
})
```

## Parameters

<ParamField path="owner" type="`0x${string}`" required>
  Owner address
</ParamField>

## Returns

<ResponseField name="call" type="CalldataInput">
  Call to add the owner
</ResponseField>
