> ## 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.

# removeOwner

> Remove a passkey owner

## Import

```ts theme={null}
import { removeOwner } from '@rhinestone/sdk/actions/passkeys'
```

## Usage

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

## Parameters

<ParamField path="pubKeyX" type="bigint" required>
  Public key X
</ParamField>

<ParamField path="pubKeyY" type="bigint" required>
  Public key Y
</ParamField>

## Returns

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