Interface IValidationModule

interface IValidationModule {
    getAddress(): `0x${string}`;
    getDummySignature(): Promise<`0x${string}`>;
    getInitData(): Promise<`0x${string}`>;
    getSigner(): Promise<SmartAccountSigner<any>>;
    signMessage(_message): Promise<string>;
    signUserOpHash(_userOpHash): Promise<`0x${string}`>;
}

Implemented by

Methods