bitcoinjs-lib/types/psbt.d.ts
2019-06-25 18:22:00 +07:00

6 lines
202 B
TypeScript

import { Psbt as PsbtBase } from 'bip174';
import { Signer } from './ecpair';
export declare class Psbt extends PsbtBase {
constructor();
signInput(inputIndex: number, keyPair: Signer): Psbt;
}