openclaw-arcade-plugin 0.1.3 → 0.1.5
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/README.md +5 -0
- package/openclaw.plugin.json +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -36,6 +36,11 @@ You can configure the plugin in your `openclaw.json` file. The plugin supports b
|
|
|
36
36
|
| `arcadeUrl` | `https://arc.gorillapool.io` | Arcade server URL for transaction broadcasting. |
|
|
37
37
|
| `network` | `mainnet` | The BSV network to target (`mainnet` or `testnet`). |
|
|
38
38
|
|
|
39
|
+
## Slash Commands (Autoreply)
|
|
40
|
+
|
|
41
|
+
- `/arcade status <txid>` — Track the lifecycle of a BSV transaction.
|
|
42
|
+
- `/arcade config` — View the current Arcade broadcaster URL.
|
|
43
|
+
|
|
39
44
|
---
|
|
40
45
|
|
|
41
46
|
## AI Tool: `arcade`
|
package/openclaw.plugin.json
CHANGED
|
@@ -25,6 +25,15 @@
|
|
|
25
25
|
"type": "object",
|
|
26
26
|
"additionalProperties": true,
|
|
27
27
|
"properties": {
|
|
28
|
+
"enabled": { "type": "boolean" },
|
|
29
|
+
"config": {
|
|
30
|
+
"type": "object",
|
|
31
|
+
"additionalProperties": true,
|
|
32
|
+
"properties": {
|
|
33
|
+
"arcadeUrl": { "type": "string" },
|
|
34
|
+
"network": { "type": "string" }
|
|
35
|
+
}
|
|
36
|
+
},
|
|
28
37
|
"arcadeUrl": {
|
|
29
38
|
"type": "string",
|
|
30
39
|
"default": "https://arc.gorillapool.io",
|