> For the complete documentation index, see [llms.txt](https://docs.defisaver.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.defisaver.com/actions/utils/changeproxyowner.md).

# ChangeProxyOwner

### Description

Changes the owner of the DSProxy and updated the DFSRegistry

### Action ID

`0x67314f12`

### SDK Action

```ts
const changeProxyOwnerAction = new dfs.actions.basic.ChangeProxyOwnerAction(
    newOwner
);
```

### Action Type

`STANDARD_ACTION`

### Input Parameters

```solidity
    /// @param newOwner Address of the new owner
    struct Params {
        address newOwner;
    }
```

### Return Value

```solidity
return bytes32(bytes20(inputData.newOwner));
```

### Events and Logs

```solidity
```
