@vbyte/btc-dev
Version:
Batteries-included toolset for plebian bitcoin development
16 lines (12 loc) • 344 B
text/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[]
}