permissionless
Version:
A utility library for working with ERC-4337
12 lines • 473 B
JavaScript
import { toKernelSmartAccount } from "./toKernelSmartAccount.js";
/**
* @deprecated ECDSA Kernel Smart Account is deprecated. Please use toKernelSmartAccount instead.
* @see toKernelSmartAccount
*/
export async function toEcdsaKernelSmartAccount(parameters) {
return toKernelSmartAccount({
...parameters,
validatorAddress: parameters.validatorAddress ?? parameters.ecdsaValidatorAddress
});
}
//# sourceMappingURL=toEcdsaKernelSmartAccount.js.map