Skip to content

Commit cc1b23e

Browse files
committed
fix: commit crypto.d.ts
1 parent 5707a04 commit cc1b23e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/crypto.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ export declare function hash160(buffer: Buffer): Buffer;
66
export declare function hash256(buffer: Buffer): Buffer;
77
export declare const TAGS: readonly ["BIP0340/challenge", "BIP0340/aux", "BIP0340/nonce", "TapLeaf", "TapBranch", "TapSighash", "TapTweak", "KeyAgg list", "KeyAgg coefficient"];
88
export type TaggedHashPrefix = typeof TAGS[number];
9-
export type TaggedHashPrefixes = {
9+
type TaggedHashPrefixes = {
1010
[key in TaggedHashPrefix]: Buffer;
1111
};
1212
/** An object mapping tags to their tagged hash prefix of [SHA256(tag) | SHA256(tag)] */
1313
export declare const TAGGED_HASH_PREFIXES: TaggedHashPrefixes;
1414
export declare function taggedHash(prefix: TaggedHashPrefix, data: Buffer): Buffer;
15+
export {};

0 commit comments

Comments
 (0)