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 +38 -4
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
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
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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.
|
package/openclaw.plugin.json
CHANGED