@btc-vision/transaction 1.6.12 → 1.6.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/_version.d.ts +1 -1
- package/browser/index.js +1 -1
- package/build/_version.d.ts +1 -1
- package/build/_version.js +1 -1
- package/build/transaction/builders/SharedInteractionTransaction.js +0 -1
- package/package.json +1 -1
- package/src/_version.ts +1 -1
- package/src/transaction/builders/CancelTransaction.ts +4 -1
- package/src/transaction/builders/SharedInteractionTransaction.ts +0 -2
package/build/_version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.6.
|
|
1
|
+
export declare const version = "1.6.13";
|
package/build/_version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '1.6.
|
|
1
|
+
export const version = '1.6.13';
|
|
@@ -111,7 +111,6 @@ export class SharedInteractionTransaction extends TransactionBuilder {
|
|
|
111
111
|
if (!this.scriptTree) {
|
|
112
112
|
throw new Error('Script tree is required');
|
|
113
113
|
}
|
|
114
|
-
console.log('internalPubkey', this.internalPubKeyToXOnly().toString('hex'));
|
|
115
114
|
return {
|
|
116
115
|
internalPubkey: this.internalPubKeyToXOnly(),
|
|
117
116
|
network: this.network,
|
package/package.json
CHANGED
package/src/_version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '1.6.
|
|
1
|
+
export const version = '1.6.13';
|
|
@@ -2,7 +2,10 @@ import { TransactionType } from '../enums/TransactionType.js';
|
|
|
2
2
|
import { P2TRPayment, PaymentType, Psbt, PsbtInput, Taptree } from '@btc-vision/bitcoin';
|
|
3
3
|
import { TransactionBuilder } from './TransactionBuilder.js';
|
|
4
4
|
import { TapLeafScript } from '../interfaces/Tap.js';
|
|
5
|
-
import {
|
|
5
|
+
import {
|
|
6
|
+
ITransactionParameters,
|
|
7
|
+
SharedInteractionParameters,
|
|
8
|
+
} from '../interfaces/ITransactionParameters.js';
|
|
6
9
|
import { UnisatSigner } from '../browser/extensions/UnisatSigner.js';
|
|
7
10
|
|
|
8
11
|
export interface ICancelTransactionParameters
|
|
@@ -221,8 +221,6 @@ export abstract class SharedInteractionTransaction<
|
|
|
221
221
|
throw new Error('Script tree is required');
|
|
222
222
|
}
|
|
223
223
|
|
|
224
|
-
console.log('internalPubkey', this.internalPubKeyToXOnly().toString('hex'));
|
|
225
|
-
|
|
226
224
|
return {
|
|
227
225
|
internalPubkey: this.internalPubKeyToXOnly(),
|
|
228
226
|
network: this.network,
|