@alchemy/aa-core
Version:
viem based SDK that enables interactions with ERC-4337 Smart Accounts. ABIs are based off the definitions generated in @account-abstraction/contracts
8 lines • 329 B
JavaScript
import { AccountNotFoundError } from "../../errors/account.js";
export const signMessageWith6492 = async (client, { account = client.account, message }) => {
if (!account) {
throw new AccountNotFoundError();
}
return account.signMessageWith6492({ message });
};
//# sourceMappingURL=signMessageWith6492.js.map