openclaw-arcade-plugin 0.2.49 → 0.2.51
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 -5
- package/dist/index.js.map +3 -3
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -3
package/dist/index.js
CHANGED
|
@@ -111155,22 +111155,19 @@ function definePluginEntry(entry) {
|
|
|
111155
111155
|
|
|
111156
111156
|
// index.ts
|
|
111157
111157
|
var log2 = debug2("openclaw:plugin:arcade");
|
|
111158
|
-
var isInitialized = false;
|
|
111159
111158
|
var index_default = definePluginEntry({
|
|
111160
111159
|
id: "openclaw-arcade-plugin",
|
|
111161
111160
|
name: "BSV Arcade Broadcaster",
|
|
111162
111161
|
description: "Submit and track BSV transactions with full lifecycle visibility",
|
|
111163
111162
|
register(api) {
|
|
111164
|
-
const version = "0.2.
|
|
111163
|
+
const version = "0.2.51";
|
|
111165
111164
|
const config = api.pluginConfig || {};
|
|
111166
111165
|
const net = config.network || "mainnet";
|
|
111167
111166
|
const defaultUrl = net === "testnet" ? "https://testnet.arc.gorillapool.io" : "https://arc.gorillapool.io";
|
|
111168
111167
|
const url = (config.arcadeUrl || defaultUrl).replace(/\/$/, "");
|
|
111169
|
-
if (isInitialized) return;
|
|
111170
|
-
isInitialized = true;
|
|
111171
111168
|
api.logger.info(`[arcade] Initializing Arcade Plugin v${version}`);
|
|
111172
111169
|
api.registerService({
|
|
111173
|
-
id: "
|
|
111170
|
+
id: "arcade-setup",
|
|
111174
111171
|
start: async () => {
|
|
111175
111172
|
api.logger?.info?.("[arcade] Broadcaster service ready.");
|
|
111176
111173
|
},
|