UNPKG
@cmdcode/musig2
Version:
latest (2.4.3)
2.4.3
2.4.2
2.4.1
2.4.0
2.3.3
2.3.2
2.3.1
2.3.0
2.2.3
2.2.2
2.2.1
2.2.0
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
0.0.5
0.0.4
0.0.3
0.0.2
Create digital signatures based on the Musig2 protocol.
cmdruid/musig
@cmdcode/musig2
/
dist
/
config.js
10 lines
•
240 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
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