@btc-vision/transaction
Version:
OPNet transaction library allows you to create and sign transactions for the OPNet network.
10 lines (9 loc) • 307 B
TypeScript
import { Network } from '@btc-vision/bitcoin';
import { ECPairInterface } from 'ecpair';
export interface TweakSettings {
readonly network?: Network;
tweakHash?: Buffer;
}
export declare class TweakedSigner {
static tweakSigner(signer: ECPairInterface, opts?: TweakSettings): ECPairInterface;
}