@ic-wallet-kit/hpl
Version:
Ic middleware wallet HPL protocol
10 lines (9 loc) • 640 B
TypeScript
import { BaseHandler, IdentifierService, ILogger } from "@ic-wallet-kit/common";
import { CheckLedgerPrincipalForm } from "../../../forms/checks/checkLedgerPrincipalForm";
import { CheckLedgerPrincipalResult } from "../../../forms/checks/checkLedgerPrincipalResult";
export declare class CheckLedgerPrincipalHandler extends BaseHandler<CheckLedgerPrincipalForm, CheckLedgerPrincipalResult> {
private identifierService;
constructor(logger: ILogger, identifierService: IdentifierService);
validate(form: CheckLedgerPrincipalForm): Promise<void>;
process(form: CheckLedgerPrincipalForm): Promise<CheckLedgerPrincipalResult>;
}