Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ export declare function isTaptree(scriptTree: any): scriptTree is Taptree;
export interface TinySecp256k1Interface {
isXOnlyPoint(p: Uint8Array): boolean;
xOnlyPointAddTweak(p: Uint8Array, tweak: Uint8Array): XOnlyPointAddTweakResult | null;
privateAdd(d: Uint8Array, tweak: Uint8Array): Uint8Array | null;
privateNegate(d: Uint8Array): Uint8Array;
}
export declare const Buffer256bit: any;
export declare const Hash160bit: any;
Expand Down
2 changes: 0 additions & 2 deletions ts_src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ export interface TinySecp256k1Interface {
p: Uint8Array,
tweak: Uint8Array,
): XOnlyPointAddTweakResult | null;
privateAdd(d: Uint8Array, tweak: Uint8Array): Uint8Array | null;
privateNegate(d: Uint8Array): Uint8Array;
}

export const Buffer256bit = typeforce.BufferN(32);
Expand Down