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

# getSmartWalletByEOA

Get smart wallets associated with an EOA address.

## Signature

```typescript theme={null}
getSmartWalletByEOA(eoaAddress: string): Promise<SmartWalletByEOAResponse>
```

## Parameters

| Parameter    | Type     | Required | Description                            |
| ------------ | -------- | -------- | -------------------------------------- |
| `eoaAddress` | `string` | ✅        | EOA (externally owned account) address |

## Returns

List of smart wallets owned by the EOA

## Return Type

```typescript theme={null}
interface SmartWalletByEOAResponse {
  success: boolean;
  eoa: string;
  smartWallet: Address | null;
  chains: number[];
}
```

## Example

```typescript theme={null}
const result = await sdk.getSmartWalletByEOA("0x...");
console.log("Smart wallet:", result.smartWallet);
console.log("Chains:", result.chains);
```
