UNPKG
@arkade-os/sdk
Version:
alpha (0.3.1-alpha.7)
latest (0.3.10)
0.3.10
0.3.9
0.3.8
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.1-alpha.7
0.3.1-alpha.6
0.3.1-alpha.5
0.3.1-alpha.4
0.3.1-alpha.3
0.3.1-alpha.2
0.3.1-alpha.1
0.3.1-alpha.0
0.3.0
0.3.0-alpha.8
0.3.0-alpha.7
0.3.0-alpha.6
0.3.0-alpha.5
0.3.0-alpha.4
0.3.0-alpha.2
0.3.0-alpha.1
0.3.0-alpha.0
0.2.3
0.2.2
0.2.1
0.2.0
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.16
Bitcoin wallet SDK with Taproot and Ark integration
@arkade-os/sdk
/
dist
/
types
/
musig2
/
keys.d.ts
10 lines
(9 loc)
•
289 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
interface
KeyAggOptions
{
taprootTweak
?:
Uint8Array
; }
export
interface
AggregateKey
{
preTweakedKey
:
Uint8Array
;
finalKey
:
Uint8Array
; }
export
declare
function
aggregateKeys
(
publicKeys
:
Uint8Array
[],
sort
:
boolean
,
options
?:
Partial
<
KeyAggOptions
>
):
AggregateKey
;
export
{};