openclaw-arcade-plugin 0.1.0 → 0.1.1

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 CHANGED
@@ -8,11 +8,45 @@ A programmatic OpenClaw plugin that enables transaction broadcasting and full li
8
8
  - **Merkle Proofs**: Retrieve cryptographically valid proofs for mined transactions.
9
9
  - **Sovereignty**: Configure your own local Arcade instance for maximum reliability.
10
10
 
11
+ ---
12
+
13
+ ## Configuration
14
+
15
+ You can configure the plugin in your `openclaw.json` file. The plugin supports both a flat structure and a nested `config` object under its ID.
16
+
17
+ ### Example Configuration
18
+ ```json
19
+ {
20
+ "plugins": {
21
+ "entries": {
22
+ "openclaw-arcade-plugin": {
23
+ "enabled": true,
24
+ "arcadeUrl": "https://arc.gorillapool.io",
25
+ "network": "mainnet"
26
+ }
27
+ }
28
+ }
29
+ }
30
+ ```
31
+
32
+ ### Options
33
+
34
+ | Option | Default | Description |
35
+ | :--- | :--- | :--- |
36
+ | `arcadeUrl` | `https://arc.gorillapool.io` | Arcade server URL for transaction broadcasting. |
37
+ | `network` | `mainnet` | The BSV network to target (`mainnet` or `testnet`). |
38
+
39
+ ---
40
+
11
41
  ## AI Tool: `arcade`
12
- Agents can use the `arcade` tool to:
13
- - `broadcast`: Send signed transactions to the BSV blockchain.
14
- - `status`: Check if a transaction has been mined or rejected.
15
- - `proof`: Get binary proofs for SPV validation.
42
+ Agents can use the `arcade` tool to perform the following actions:
43
+
44
+ | Action | Description |
45
+ | :--- | :--- |
46
+ | `broadcast` | Send signed raw transactions to the BSV blockchain. |
47
+ | `status` | Check the current state of a transaction ID (RECEIVED, SEEN, MINED). |
48
+ | `proof` | Retrieve the binary Merkle proof for a mined transaction. |
49
+ | `config` | Show current broadcaster URL and network settings. |
16
50
 
17
51
  ## Architecture
18
52
  Built with the **OpenClaw Plugin SDK**, this extension interfaces with the Arcade REST API to provide agents with a reliable "mouth" for the blockchain.
@@ -1,5 +1,5 @@
1
1
  {
2
- "id": "openclaw-arcade",
2
+ "id": "openclaw-arcade-plugin",
3
3
  "name": "BSV Arcade Broadcaster",
4
4
  "description": "Submit and track BSV transactions with full lifecycle visibility",
5
5
  "version": "0.1.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-arcade-plugin",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "OpenClaw plugin for transaction broadcasting and lifecycle tracking via BSV Arcade",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",