@agentwallex/openclaw 0.0.1 → 0.0.3
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 +32 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -38,6 +38,38 @@ Your agent now has payment tools available. Just ask naturally:
|
|
|
38
38
|
"What's the status of transaction tx-abc123?"
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
+
## Upgrade
|
|
42
|
+
|
|
43
|
+
Update to the latest version:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
openclaw plugins update agentwallex-payment
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Or update all plugins at once:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
openclaw plugins update --all
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Uninstall
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
openclaw plugins uninstall agentwallex-payment
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
To keep plugin files on disk:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
openclaw plugins uninstall agentwallex-payment --keep-files
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
To also remove locally stored credentials:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
rm -rf ~/.openclaw/agentwallex
|
|
71
|
+
```
|
|
72
|
+
|
|
41
73
|
## Available Tools
|
|
42
74
|
|
|
43
75
|
| Tool | Description |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentwallex/openclaw",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "OpenClaw plugin for AgentWallex",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
"license": "MIT",
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@agentwallex/sdk": "
|
|
42
|
+
"@agentwallex/sdk": "^0.2.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/node": "^25.3.5",
|