@etherspot/remote-signer
Version:
Etherspot Permissioned Signer SDK - signs the UserOp with SessionKey and sends it to the Bundler
13 lines (10 loc) • 355 B
TypeScript
import { Exception } from './exception.js';
import { ValidationError } from './interfaces.js';
declare class ValidationException extends Exception {
errors: ValidationError[];
static throw(property: string, constraints: {
[key: string]: string;
}): void;
constructor(errors: ValidationError[]);
}
export { ValidationException };