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.browser.mjs
CHANGED
|
@@ -47143,7 +47143,7 @@ var ProtostoneTransactionWithInscription = class {
|
|
|
47143
47143
|
...this.opts,
|
|
47144
47144
|
transfers: [commitTransfer],
|
|
47145
47145
|
feeRate: this.baseFeeRate,
|
|
47146
|
-
excludeProtostone:
|
|
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:
|
|
47159
|
+
excludeProtostone: false
|
|
47160
47160
|
});
|
|
47161
47161
|
await this.commitBuilder.build();
|
|
47162
47162
|
this.commitPsbt = this.commitBuilder.getPsbt();
|
|
@@ -47471,6 +47471,12 @@ 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
|
+
}
|
|
47477
|
+
if (utxo.satoshis < 900) {
|
|
47478
|
+
continue;
|
|
47479
|
+
}
|
|
47474
47480
|
utxosToMeetRequirementsSet.set(utxoId, utxo);
|
|
47475
47481
|
accumulated += utxo.satoshis;
|
|
47476
47482
|
}
|