# predictMultiOwnerLightAccountAddress | @account-kit/smart-contracts

> Overview of the predictMultiOwnerLightAccountAddress function from @account-kit/smart-contracts

> 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: [account-kit/smart-contracts/src/light-account/accounts/predictAddress.ts:117](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/smart-contracts/src/light-account/accounts/predictAddress.ts#L117)

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`
      </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.