UNPKG

@cmdcode/musig2

Version:

Create digital signatures based on the Musig2 protocol.

10 lines 240 B
export const MUSIG_DEFAULTS = { key_tweaks: [] }; export const CONST = { SAFE_MIN_VALUE: 0xffn ** 16n }; export function musig_config(options = {}) { return { ...MUSIG_DEFAULTS, ...options }; } //# sourceMappingURL=config.js.map