Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
isZeroDevConnector(connector: WalletConnector): boolean
import { isZeroDevConnector } from '@dynamic-labs/ethereum-aa'; const App = () => { const { primaryWallet } = useDynamicContext(); useEffect(() => { const { connector } = primaryWallet; if (isZeroDevConnector(connector)) { const ecdsaProvider = connector.getAccountAbstractionProvider(); } }, [primaryWallet]); ... }
Was this page helpful?