UNPKG

@arkade-os/sdk

Version:

Bitcoin wallet SDK with Taproot and Ark integration

10 lines (9 loc) 289 B
interface KeyAggOptions { taprootTweak?: Uint8Array; } export interface AggregateKey { preTweakedKey: Uint8Array; finalKey: Uint8Array; } export declare function aggregateKeys(publicKeys: Uint8Array[], sort: boolean, options?: Partial<KeyAggOptions>): AggregateKey; export {};