alkanesjs 1.1.2 → 1.1.4
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.browser.mjs +8 -2
- package/dist/index.browser.mjs.map +2 -2
- package/dist/index.js +8 -2
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
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:
|
|
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:
|
|
37090
|
+
excludeProtostone: false
|
|
37091
37091
|
});
|
|
37092
37092
|
await this.commitBuilder.build();
|
|
37093
37093
|
this.commitPsbt = this.commitBuilder.getPsbt();
|
|
@@ -37402,6 +37402,12 @@ 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
|
+
}
|
|
37408
|
+
if (utxo.satoshis < 900) {
|
|
37409
|
+
continue;
|
|
37410
|
+
}
|
|
37405
37411
|
utxosToMeetRequirementsSet.set(utxoId, utxo);
|
|
37406
37412
|
accumulated += utxo.satoshis;
|
|
37407
37413
|
}
|