UNPKG

@shard-auth/client

Version:

Next-generation API authentication without secret keys - MPC-based authentication with FROST threshold signatures

13 lines 535 B
/** * 署名セッション管理 * 実際の協調署名では、参加者間でコミットメントを共有する必要がある */ import { NonceCommitment } from './types'; export declare function startSigningSession(): void; export declare function addParticipant(index: number): { nonce: import("./types").Nonce; commitment: NonceCommitment; }; export declare function getCommitments(): Map<number, NonceCommitment>; export declare function getNonce(index: number): any; //# sourceMappingURL=signing-session.d.ts.map