# predictMultiOwnerLightAccountAddress

> Overview of the predictMultiOwnerLightAccountAddress function

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

{/* This file is auto-generated by TypeDoc. Do not edit manually. */}

```ts
function predictMultiOwnerLightAccountAddress(params): `0x${string}`;
```

Defined in: [packages/smart-accounts/src/light-account/predictAddress.ts:132](https://github.com/alchemyplatform/aa-sdk/blob/v5.x.x/packages/smart-accounts/src/light-account/predictAddress.ts#L132)

Predicts the address of a **Multi-Owner Light Account** given the factory, salt
and the set of owner addresses.

Internally replicates the CREATE2 calculation performed by the factory so
you can obtain the counter-factual account address before deployment (useful
for funding or displaying to users).

## Parameters

<table>
  <thead>
    <tr>
      <th align="left">Parameter</th>
      <th align="left">Type</th>
      <th align="left">Description</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        `params`
      </td>

      <td>
        [`PredictMultiOwnerLightAccountAddressParams`](../type-aliases/PredictMultiOwnerLightAccountAddressParams)
      </td>

      <td>
        Object containing:
        – `factoryAddress` Factory contract that will deploy the account.
        – `salt` Arbitrary salt used when calling the factory.
        – `ownerAddresses` Array of owner EOAs (must be deduped & sorted).
      </td>
    </tr>

  </tbody>
</table>

## Returns

`` `0x${string}` ``

Predicted account address for the multi-owner light account.