@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.
@@ -1 +1 @@
1
- export declare const version = "1.6.12";
1
+ export declare const version = "1.6.13";
package/build/_version.js CHANGED
@@ -1 +1 @@
1
- export const version = '1.6.12';
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@btc-vision/transaction",
3
3
  "type": "module",
4
- "version": "1.6.12",
4
+ "version": "1.6.13",
5
5
  "author": "BlobMaster41",
6
6
  "description": "OPNet transaction library allows you to create and sign transactions for the OPNet network.",
7
7
  "engines": {
package/src/_version.ts CHANGED
@@ -1 +1 @@
1
- export const version = '1.6.12';
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 { ITransactionParameters, SharedInteractionParameters, } from '../interfaces/ITransactionParameters.js';
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,