Interface ISessionValidationModule<T>

Interface for implementing a Session Validation Module. Session Validation Modules works along with SessionKeyManager and generate module specific sessionKeyData which is to be verified by SessionValidationModule on chain.

Remarks

sessionData is of generic type T which is specific to the module

Author

Sachin Tomar sachin.tomar@biconomy.io

interface ISessionValidationModule<T> {
    getAddress(): string;
    getSessionKeyData(_sessionData): Promise<string>;
}

Type Parameters

  • T

Implemented by

Methods