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.
@@ -47143,7 +47143,7 @@ var ProtostoneTransactionWithInscription = class {
47143
47143
  ...this.opts,
47144
47144
  transfers: [commitTransfer],
47145
47145
  feeRate: this.baseFeeRate,
47146
- excludeProtostone: true
47146
+ excludeProtostone: false
47147
47147
  });
47148
47148
  await guessBuilder.build();
47149
47149
  const dummyTx = await guessBuilder.finalizeWithDry();
@@ -47156,7 +47156,7 @@ var ProtostoneTransactionWithInscription = class {
47156
47156
  transfers: [commitTransfer],
47157
47157
  feeRate: this.baseFeeRate,
47158
47158
  feeOpts,
47159
- excludeProtostone: true
47159
+ excludeProtostone: false
47160
47160
  });
47161
47161
  await this.commitBuilder.build();
47162
47162
  this.commitPsbt = this.commitBuilder.getPsbt();
@@ -47471,6 +47471,9 @@ var ProtostoneTransaction = class {
47471
47471
  if (utxosToMeetRequirementsSet.has(utxoId)) {
47472
47472
  continue;
47473
47473
  }
47474
+ if (Object.keys(utxo.alkanes).length > 0) {
47475
+ continue;
47476
+ }
47474
47477
  utxosToMeetRequirementsSet.set(utxoId, utxo);
47475
47478
  accumulated += utxo.satoshis;
47476
47479
  }