From c6c59c7c68bb353e8e4674daf78a674448bd88ca Mon Sep 17 00:00:00 2001 From: junderw Date: Thu, 23 May 2019 07:22:21 +0900 Subject: [PATCH 1/2] Expose more interfaces to top level --- ts_src/index.ts | 3 ++- types/index.d.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ts_src/index.ts b/ts_src/index.ts index 4e76c96..1068839 100644 --- a/ts_src/index.ts +++ b/ts_src/index.ts @@ -14,7 +14,8 @@ export { Transaction } from './transaction'; export { TransactionBuilder } from './transaction_builder'; export { BIP32Interface } from 'bip32'; +export { ECPairInterface } from './ecpair'; export { Network } from './networks'; -export { Payment, PaymentOpts } from './payments'; +export { Payment, PaymentOpts, Stack, StackElement } from './payments'; export { OpCode } from './script'; export { Input as TxInput, Output as TxOutput } from './transaction'; diff --git a/types/index.d.ts b/types/index.d.ts index d21454a..28046df 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -11,7 +11,8 @@ export { OPS as opcodes } from './script'; export { Transaction } from './transaction'; export { TransactionBuilder } from './transaction_builder'; export { BIP32Interface } from 'bip32'; +export { ECPairInterface } from './ecpair'; export { Network } from './networks'; -export { Payment, PaymentOpts } from './payments'; +export { Payment, PaymentOpts, Stack, StackElement } from './payments'; export { OpCode } from './script'; export { Input as TxInput, Output as TxOutput } from './transaction'; From 73b6f5585026bc3721e87fd67e0125fe1998256e Mon Sep 17 00:00:00 2001 From: junderw Date: Thu, 23 May 2019 07:23:16 +0900 Subject: [PATCH 2/2] 5.0.5 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5c9a042..d769ef5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "bitcoinjs-lib", - "version": "5.0.4", + "version": "5.0.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 59af841..b8ec5f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bitcoinjs-lib", - "version": "5.0.4", + "version": "5.0.5", "description": "Client-side Bitcoin JavaScript library", "main": "./src/index.js", "types": "./types/index.d.ts",