@vbyte/btc-dev
Version:
Batteries-included toolset for plebian bitcoin development
10 lines (9 loc) • 343 B
TypeScript
import type { Transaction } from '@scure/btc-signer';
import type { TransactionInput, TransactionOutput } from '@scure/btc-signer/psbt';
export type PSBTData = Transaction;
export type PSBTInput = TransactionInput;
export type PSBTOutput = TransactionOutput;
export interface PSBTPrevouts {
amounts: bigint[];
scripts: Uint8Array[];
}