openclaw-overlay-plugin 0.8.37 → 0.8.40
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 +2 -1
- package/dist/index.js.map +2 -2
- package/dist/src/cli.js +1 -0
- package/dist/src/cli.js.map +2 -2
- package/openclaw.plugin.json +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -135351,6 +135351,7 @@ var BSVAgentWallet = class _BSVAgentWallet {
|
|
|
135351
135351
|
log("Importing raw transaction");
|
|
135352
135352
|
const result = await this._setup.wallet.internalizeAction({
|
|
135353
135353
|
tx: hex,
|
|
135354
|
+
// Cast to avoid AtomicBEEF vs string mismatch in older SDK versions
|
|
135354
135355
|
description: "manual import"
|
|
135355
135356
|
});
|
|
135356
135357
|
return { success: result.accepted, txid: result.txid || "" };
|
|
@@ -136869,7 +136870,7 @@ function checkBudget(walletDir, requestedSats, dailyLimit) {
|
|
|
136869
136870
|
};
|
|
136870
136871
|
}
|
|
136871
136872
|
function register(api) {
|
|
136872
|
-
const version = "0.8.
|
|
136873
|
+
const version = "0.8.40";
|
|
136873
136874
|
if (isInitialized) return;
|
|
136874
136875
|
isInitialized = true;
|
|
136875
136876
|
const config = api.pluginConfig || {};
|