@goplausible/openclaw-algorand-plugin 1.8.6 → 1.8.7
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.
|
@@ -65,13 +65,16 @@ When generating QR codes with `generate_algorand_qrcode`, the tool returns:
|
|
|
65
65
|
After calling the tool, **extract and paste the QR code directly in your response**.
|
|
66
66
|
**Always include ALL THREE in your reply, using --raw flag with mcporter to get the full output including image data:**
|
|
67
67
|
|
|
68
|
-
1. UTF-8 QR block (Unicode block characters)
|
|
69
|
-
2. PNG as markdown image: `
|
|
70
|
-
3. **URI string** — always show this, users need it for wallet deep links
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
68
|
+
1. UTF-8 QR block (Unicode block characters) and URI string at the end of the text output.
|
|
69
|
+
2. PNG as markdown image: ``.
|
|
70
|
+
3. **URI string** — always show this, users need it for wallet deep links.
|
|
71
|
+
4. Copy the ENTIRE base64 string exactly — do not reformat, wrap, or edit it.
|
|
72
|
+
5. Verify the ending — PNG base64 typically ends with `==` or a short suffix like `QAAA`.
|
|
73
|
+
|
|
74
|
+
### Steps to include QR code in reply:
|
|
75
|
+
1. Call the tool with --raw flag and capture output
|
|
76
|
+
2. Content's first array member is text and contains the UTF-8 QR block (Unicode block characters) plus URI string
|
|
77
|
+
3. Content's second array member is image and contains the base64 PNG data
|
|
75
78
|
4. Include both in your reply:
|
|
76
79
|
|
|
77
80
|
```
|
|
@@ -80,7 +83,6 @@ After calling the tool, **extract and paste the QR code directly in your respons
|
|
|
80
83
|
|
|
81
84
|

|
|
82
85
|
|
|
83
|
-
URI: `algorand://ADDRESS?amount=X&asset=Y`
|
|
84
86
|
|
|
85
87
|
This ensures the QR renders correctly in both terminal and web interfaces.
|
|
86
88
|
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "openclaw-algorand-plugin",
|
|
3
3
|
"name": "Algorand Integration",
|
|
4
4
|
"description": "Algorand blockchain integration with MCP and skills — by GoPlausible",
|
|
5
|
-
"version": "1.8.
|
|
5
|
+
"version": "1.8.7",
|
|
6
6
|
"skills": [
|
|
7
7
|
"skills/algorand-development",
|
|
8
8
|
"skills/algorand-typescript",
|
package/package.json
CHANGED
|
@@ -220,13 +220,16 @@ When generating QR codes with `generate_algorand_qrcode`, the tool returns:
|
|
|
220
220
|
After calling the tool, **extract and paste the QR code directly in your response**.
|
|
221
221
|
**Always include ALL THREE in your reply, using --raw flag with mcporter to get the full output including image data:**
|
|
222
222
|
|
|
223
|
-
1. UTF-8 QR block (Unicode block characters)
|
|
224
|
-
2. PNG as markdown image: `
|
|
225
|
-
3. **URI string** — always show this, users need it for wallet deep links
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
223
|
+
1. UTF-8 QR block (Unicode block characters) and URI string at the end of the text output.
|
|
224
|
+
2. PNG as markdown image: ``.
|
|
225
|
+
3. **URI string** — always show this, users need it for wallet deep links.
|
|
226
|
+
4. Copy the ENTIRE base64 string exactly — do not reformat, wrap, or edit it.
|
|
227
|
+
5. Verify the ending — PNG base64 typically ends with `==` or a short suffix like `QAAA`.
|
|
228
|
+
|
|
229
|
+
### Steps to include QR code in reply:
|
|
230
|
+
1. Call the tool with --raw flag and capture output
|
|
231
|
+
2. Content's first array member is text and contains the UTF-8 QR block (Unicode block characters) plus URI string
|
|
232
|
+
3. Content's second array member is image and contains the base64 PNG data
|
|
230
233
|
4. Include both in your reply:
|
|
231
234
|
|
|
232
235
|
```
|
|
@@ -235,7 +238,6 @@ After calling the tool, **extract and paste the QR code directly in your respons
|
|
|
235
238
|
|
|
236
239
|

|
|
237
240
|
|
|
238
|
-
URI: `algorand://ADDRESS?amount=X&asset=Y`
|
|
239
241
|
|
|
240
242
|
This ensures the QR renders correctly in both terminal and web interfaces.
|
|
241
243
|
|