n8n-nodes-agnicwallet 1.0.11 → 1.0.12
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 +51 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,18 +33,31 @@ AgnicWallet is a non-custodial Web3 wallet service that handles blockchain payme
|
|
|
33
33
|
|
|
34
34
|
## Installation
|
|
35
35
|
|
|
36
|
-
### For self-hosted
|
|
36
|
+
### For self-hosted n8n (Recommended Method):
|
|
37
|
+
|
|
38
|
+
Install in the n8n custom nodes directory:
|
|
37
39
|
|
|
38
40
|
```bash
|
|
39
|
-
|
|
41
|
+
cd ~/.n8n/nodes
|
|
42
|
+
npm init -y # Only needed first time
|
|
43
|
+
npm install n8n-nodes-agnicwallet --legacy-peer-deps
|
|
40
44
|
```
|
|
41
45
|
|
|
42
|
-
Then restart
|
|
46
|
+
Then restart n8n:
|
|
43
47
|
|
|
44
48
|
```bash
|
|
45
49
|
n8n start
|
|
46
50
|
```
|
|
47
51
|
|
|
52
|
+
> **Why `--legacy-peer-deps`?**
|
|
53
|
+
>
|
|
54
|
+
> This flag prevents npm from installing conflicting versions of `langchain`. Our node uses n8n's built-in `langchain@0.3.x`, but other community nodes may require `langchain@1.x`. Without this flag, npm may fail with dependency conflicts or install an incompatible version.
|
|
55
|
+
>
|
|
56
|
+
> You can also set this globally:
|
|
57
|
+
> ```bash
|
|
58
|
+
> echo "legacy-peer-deps=true" >> ~/.npmrc
|
|
59
|
+
> ```
|
|
60
|
+
|
|
48
61
|
### For Docker:
|
|
49
62
|
|
|
50
63
|
Add to your Dockerfile:
|
|
@@ -53,13 +66,21 @@ Add to your Dockerfile:
|
|
|
53
66
|
FROM n8nio/n8n:latest
|
|
54
67
|
|
|
55
68
|
USER root
|
|
56
|
-
RUN
|
|
69
|
+
RUN cd /home/node/.n8n/nodes && \
|
|
70
|
+
npm init -y && \
|
|
71
|
+
npm install n8n-nodes-agnicwallet --legacy-peer-deps
|
|
57
72
|
USER node
|
|
58
73
|
```
|
|
59
74
|
|
|
75
|
+
### Global Installation (Alternative):
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
npm install -g n8n-nodes-agnicwallet --legacy-peer-deps
|
|
79
|
+
```
|
|
80
|
+
|
|
60
81
|
### For n8n.cloud:
|
|
61
82
|
|
|
62
|
-
Not yet available. This node must first be approved as a community node by the
|
|
83
|
+
Not yet available. This node must first be approved as a community node by the n8n team.
|
|
63
84
|
|
|
64
85
|
## Setup
|
|
65
86
|
|
|
@@ -234,6 +255,30 @@ This is standard practice and well-documented in the node's README.
|
|
|
234
255
|
|
|
235
256
|
## Troubleshooting
|
|
236
257
|
|
|
258
|
+
### "ERESOLVE unable to resolve dependency tree" or "Package subpath './agents' is not defined"
|
|
259
|
+
|
|
260
|
+
**Cause:**
|
|
261
|
+
Conflicting `langchain` versions between community nodes. Some nodes require `langchain@1.x` while our AI Agent tools require `langchain@0.3.x` (n8n's built-in version).
|
|
262
|
+
|
|
263
|
+
**Solution:**
|
|
264
|
+
Always install with `--legacy-peer-deps`:
|
|
265
|
+
```bash
|
|
266
|
+
cd ~/.n8n/nodes
|
|
267
|
+
npm install n8n-nodes-agnicwallet --legacy-peer-deps
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
Or set it globally:
|
|
271
|
+
```bash
|
|
272
|
+
echo "legacy-peer-deps=true" >> ~/.npmrc
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
If you already installed without this flag, clean up and reinstall:
|
|
276
|
+
```bash
|
|
277
|
+
cd ~/.n8n/nodes
|
|
278
|
+
rm -rf node_modules package-lock.json
|
|
279
|
+
npm install --legacy-peer-deps
|
|
280
|
+
```
|
|
281
|
+
|
|
237
282
|
### "Payment signing failed"
|
|
238
283
|
|
|
239
284
|
**Causes:**
|
|
@@ -242,7 +287,7 @@ This is standard practice and well-documented in the node's README.
|
|
|
242
287
|
- Backend server down
|
|
243
288
|
|
|
244
289
|
**Solutions:**
|
|
245
|
-
1. Reconnect credentials in
|
|
290
|
+
1. Reconnect credentials in n8n
|
|
246
291
|
2. Check balance at [AgnicWallet](https://app.agnicpay.xyz)
|
|
247
292
|
3. Check backend status
|
|
248
293
|
|