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

# isZeroDevConnector

### Summary

Utility to determine if a wallet connector is a ZeroDev connector.
This is useful for interacting with ZeroDev and keep typesafety.

### Annotation

TypeScript

```ts
isZeroDevConnector(connector: WalletConnector): boolean
```

### Examples

Get the ZeroDev ECDSAProvider from the connector

```tsx
import { isZeroDevConnector } from '@dynamic-labs/ethereum-aa';

const App = () => {
  const { primaryWallet } = useDynamicContext();

  useEffect(() => {
    const { connector } = primaryWallet;

    if (isZeroDevConnector(connector)) {
      const ecdsaProvider = connector.getAccountAbstractionProvider();
    }
  }, [primaryWallet]);

  ...
}
```
