Browse Source
Fix PsbtOutputExtended address support
psbt-tx-getters
junderw
6 years ago
No known key found for this signature in database
GPG Key ID: B256185D3A971908
2 changed files with
20 additions and
4 deletions
-
ts_src/psbt.ts
-
types/psbt.d.ts
|
|
@ -11,7 +11,6 @@ import { |
|
|
|
Transaction as ITransaction, |
|
|
|
TransactionFromBuffer, |
|
|
|
TransactionInput, |
|
|
|
TransactionOutput, |
|
|
|
} from 'bip174/src/lib/interfaces'; |
|
|
|
import { checkForInput } from 'bip174/src/lib/utils'; |
|
|
|
import { toOutputScript } from './address'; |
|
|
@ -624,7 +623,17 @@ interface PsbtOpts { |
|
|
|
|
|
|
|
interface PsbtInputExtended extends PsbtInput, TransactionInput {} |
|
|
|
|
|
|
|
interface PsbtOutputExtended extends PsbtOutput, TransactionOutput {} |
|
|
|
type PsbtOutputExtended = PsbtOutputExtendedAddress | PsbtOutputExtendedScript; |
|
|
|
|
|
|
|
interface PsbtOutputExtendedAddress extends PsbtOutput { |
|
|
|
address: string; |
|
|
|
value: number; |
|
|
|
} |
|
|
|
|
|
|
|
interface PsbtOutputExtendedScript extends PsbtOutput { |
|
|
|
script: Buffer; |
|
|
|
value: number; |
|
|
|
} |
|
|
|
|
|
|
|
interface HDSignerBase { |
|
|
|
/** |
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
/// <reference types="node" />
|
|
|
|
import { Psbt as PsbtBase } from 'bip174'; |
|
|
|
import { KeyValue, PsbtGlobalUpdate, PsbtInput, PsbtInputUpdate, PsbtOutput, PsbtOutputUpdate, TransactionInput, TransactionOutput } from 'bip174/src/lib/interfaces'; |
|
|
|
import { KeyValue, PsbtGlobalUpdate, PsbtInput, PsbtInputUpdate, PsbtOutput, PsbtOutputUpdate, TransactionInput } from 'bip174/src/lib/interfaces'; |
|
|
|
import { Signer, SignerAsync } from './ecpair'; |
|
|
|
import { Network } from './networks'; |
|
|
|
import { Transaction } from './transaction'; |
|
|
@ -87,7 +87,14 @@ interface PsbtOptsOptional { |
|
|
|
} |
|
|
|
interface PsbtInputExtended extends PsbtInput, TransactionInput { |
|
|
|
} |
|
|
|
interface PsbtOutputExtended extends PsbtOutput, TransactionOutput { |
|
|
|
declare type PsbtOutputExtended = PsbtOutputExtendedAddress | PsbtOutputExtendedScript; |
|
|
|
interface PsbtOutputExtendedAddress extends PsbtOutput { |
|
|
|
address: string; |
|
|
|
value: number; |
|
|
|
} |
|
|
|
interface PsbtOutputExtendedScript extends PsbtOutput { |
|
|
|
script: Buffer; |
|
|
|
value: number; |
|
|
|
} |
|
|
|
interface HDSignerBase { |
|
|
|
/** |
|
|
|