@shard-auth/client
Version:
Next-generation API authentication without secret keys - MPC-based authentication with FROST threshold signatures
7 lines • 317 B
TypeScript
/**
* FROST DKG (Distributed Key Generation) 実装
*/
import { DKGConfig, DKGSession, DKGResult } from '../types';
export declare function initializeFROSTDKG(config: DKGConfig): Promise<DKGSession>;
export declare function executeFROSTDKG(session: DKGSession): Promise<DKGResult>;
//# sourceMappingURL=dkg.d.ts.map