@lit-protocol/e2e
Version:
Lit Protocol E2E testing package for running comprehensive integration tests
13 lines (12 loc) • 505 B
TypeScript
import { ResolvedNetwork } from '../../helper/network';
import { AuthData } from '@lit-protocol/schemas';
import { AuthManagerInstance, LitClientInstance } from '../../types';
type PregenDelegationParams = {
authManager: AuthManagerInstance;
authData: AuthData;
pkpPublicKey: string;
clientLitClient: LitClientInstance;
resolvedNetwork: ResolvedNetwork;
};
export declare const createPregenDelegationServerReuseTest: (params: PregenDelegationParams) => () => Promise<void>;
export {};