openclaw-arcade-plugin 0.2.45 → 0.2.47

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 CHANGED
@@ -111160,7 +111160,7 @@ var index_default = definePluginEntry({
111160
111160
  name: "BSV Arcade Broadcaster",
111161
111161
  description: "Submit and track BSV transactions with full lifecycle visibility",
111162
111162
  async register(api) {
111163
- const version = "0.2.45";
111163
+ const version = "0.2.47";
111164
111164
  const config = api.pluginConfig || {};
111165
111165
  const net = config.network || "mainnet";
111166
111166
  const defaultUrl = net === "testnet" ? "https://testnet.arc.gorillapool.io" : "https://arc.gorillapool.io";
@@ -111168,12 +111168,12 @@ var index_default = definePluginEntry({
111168
111168
  if (isInitialized) return;
111169
111169
  isInitialized = true;
111170
111170
  api.logger.info(`[arcade] Initializing Arcade Plugin v${version}`);
111171
- api.registerOnboardingWizard({
111172
- id: "arcade-setup",
111173
- title: "Arcade Setup",
111174
- description: "Configuring transaction broadcasting and lifecycle tracking",
111175
- handler: async () => {
111176
- return { success: true, message: "Arcade broadcaster ready." };
111171
+ api.registerService({
111172
+ id: "plugin-setup",
111173
+ start: async () => {
111174
+ api.logger?.info?.("[arcade] Broadcaster service ready.");
111175
+ },
111176
+ stop: () => {
111177
111177
  }
111178
111178
  });
111179
111179
  api.registerTool({