openclaw-arcade-plugin 0.2.40 → 0.2.44

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.
@@ -2,7 +2,7 @@
2
2
  "id": "openclaw-arcade-plugin",
3
3
  "name": "BSV Arcade Broadcaster",
4
4
  "description": "Submit and track BSV transactions with full lifecycle visibility",
5
- "version": "0.2.40",
5
+ "version": "0.2.44",
6
6
  "skills": [
7
7
  "./SKILL.md"
8
8
  ],
@@ -17,18 +17,18 @@
17
17
  "description": "Uses public infrastructure for broadcasting"
18
18
  }
19
19
  ],
20
- "commands": [
21
- {
22
- "name": "arcade",
23
- "description": "BSV transaction tracking commands"
24
- }
25
- ],
26
20
  "contracts": {
27
21
  "tools": [
28
22
  {
29
23
  "name": "arcade",
30
24
  "description": "Submit and track BSV transactions with full lifecycle visibility"
31
25
  }
26
+ ],
27
+ "commands": [
28
+ {
29
+ "name": "arcade",
30
+ "description": "BSV transaction tracking commands"
31
+ }
32
32
  ]
33
33
  },
34
34
  "configSchema": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-arcade-plugin",
3
- "version": "0.2.40",
3
+ "version": "0.2.44",
4
4
  "description": "OpenClaw plugin for transaction broadcasting and lifecycle tracking via BSV Arcade",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -21,6 +21,7 @@
21
21
  "postinstall": "node -e \"try{require('sqlite3')}catch{console.log('Note: sqlite3 requires build tools if prebuilt binaries are unavailable.')}\""
22
22
  },
23
23
  "dependencies": {
24
+ "openclaw-plugin-core": "workspace:*",
24
25
  "@bsv/sdk": "^2.0.13",
25
26
  "better-sqlite3": "11.3.0",
26
27
  "knex": "^3.1.0",
@@ -38,8 +39,12 @@
38
39
  "extensions": [
39
40
  "./dist/index.js"
40
41
  ],
42
+ "build": {
43
+ "openclawVersion": "2026.4.10",
44
+ "pluginSdkVersion": "2026.4.10"
45
+ },
41
46
  "compat": {
42
- "pluginApi": "1",
47
+ "pluginApi": ">=2026.4.10",
43
48
  "minGatewayVersion": "2026.3.1"
44
49
  }
45
50
  },