UNPKG

permissionless

Version:

A utility library for working with ERC-4337

8 lines 276 B
import { getCode } from "viem/actions"; export const isSmartAccountDeployed = async (client, address) => { const contractCode = await getCode(client, { address: address }); return Boolean(contractCode); }; //# sourceMappingURL=isSmartAccountDeployed.js.map