Extend BIP174 PSBT base class
This commit is contained in:
parent
62f1749021
commit
6a5e395ebd
6 changed files with 24 additions and 0 deletions
types
1
types/index.d.ts
vendored
1
types/index.d.ts
vendored
|
@ -7,6 +7,7 @@ import * as payments from './payments';
|
|||
import * as script from './script';
|
||||
export { ECPair, address, bip32, crypto, networks, payments, script };
|
||||
export { Block } from './block';
|
||||
export { Psbt } from './psbt';
|
||||
export { OPS as opcodes } from './script';
|
||||
export { Transaction } from './transaction';
|
||||
export { TransactionBuilder } from './transaction_builder';
|
||||
|
|
4
types/psbt.d.ts
vendored
Normal file
4
types/psbt.d.ts
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
import { Psbt as PsbtBase } from 'bip174';
|
||||
export declare class Psbt extends PsbtBase {
|
||||
constructor();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue