@ic-wallet-kit/hpl
Version:
Ic middleware wallet HPL protocol
14 lines (13 loc) • 977 B
TypeScript
import { EmptyHplResult, ResetHplVirtualAccountForm } from "../../../forms";
import { HplVirtualAccountStateCacheDataHandler } from "../../../internalHandlers/cacheDataHandlers/hplVirtualAccountStateCacheDataHandler/hplVirtualAccountStateCacheDataHandler";
import { CanisterService } from "../../../service";
import { BaseHandler, IdentifierService, ILogger } from "@ic-wallet-kit/common";
import "reflect-metadata";
export declare class ResetHplVirtualAccountInternalHandler extends BaseHandler<ResetHplVirtualAccountForm, EmptyHplResult> {
private identifierService;
private canisterService;
private hplVirtualAccountStateCacheDataHandler;
constructor(logger: ILogger, identifierService: IdentifierService, canisterService: CanisterService, hplVirtualAccountStateCacheDataHandler: HplVirtualAccountStateCacheDataHandler);
validate(form: ResetHplVirtualAccountForm): Promise<void>;
process(form: ResetHplVirtualAccountForm): Promise<EmptyHplResult>;
}