UNPKG

@cmdcode/musig2

Version:

Create digital signatures based on the Musig2 protocol.

13 lines 385 B
import { Bytes } from '@cmdcode/buff'; export type MusigOptions = Partial<MusigConfig>; export interface MusigConfig { key_tweaks: Bytes[]; } export declare const MUSIG_DEFAULTS: { key_tweaks: never[]; }; export declare const CONST: { SAFE_MIN_VALUE: bigint; }; export declare function musig_config(options?: MusigOptions): MusigConfig; //# sourceMappingURL=config.d.ts.map