Check if a account has been deployed for the given admin in the account factory contract
const { data: isAccountDeployed, isLoading, error,} = useIsAccountDeployed(contract);
function useIsAccountDeployed( contract: RequiredParam<SmartContract<BaseContract>>, admin: RequiredParam<string>, extraData?: BytesLike,): UseQueryResult<boolean>;
Instance of a account factory contract
let contract: RequiredParam<SmartContract<BaseContract>>;
let admin: RequiredParam<string>;
let extraData: BytesLike;
let returnType: UseQueryResult<boolean>;
A boolean indicating if a account has been deployed for the given admin