alkanesjs 1.1.2 → 1.1.3

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/dist/index.js CHANGED
@@ -37074,7 +37074,7 @@ var ProtostoneTransactionWithInscription = class {
37074
37074
  ...this.opts,
37075
37075
  transfers: [commitTransfer],
37076
37076
  feeRate: this.baseFeeRate,
37077
- excludeProtostone: true
37077
+ excludeProtostone: false
37078
37078
  });
37079
37079
  await guessBuilder.build();
37080
37080
  const dummyTx = await guessBuilder.finalizeWithDry();
@@ -37087,7 +37087,7 @@ var ProtostoneTransactionWithInscription = class {
37087
37087
  transfers: [commitTransfer],
37088
37088
  feeRate: this.baseFeeRate,
37089
37089
  feeOpts,
37090
- excludeProtostone: true
37090
+ excludeProtostone: false
37091
37091
  });
37092
37092
  await this.commitBuilder.build();
37093
37093
  this.commitPsbt = this.commitBuilder.getPsbt();
@@ -37402,6 +37402,9 @@ var ProtostoneTransaction = class {
37402
37402
  if (utxosToMeetRequirementsSet.has(utxoId)) {
37403
37403
  continue;
37404
37404
  }
37405
+ if (Object.keys(utxo.alkanes).length > 0) {
37406
+ continue;
37407
+ }
37405
37408
  utxosToMeetRequirementsSet.set(utxoId, utxo);
37406
37409
  accumulated += utxo.satoshis;
37407
37410
  }