@attocash/n8n-nodes-atto 0.1.0
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 +130 -0
- package/dist/credentials/AttoApi.credentials.d.ts +9 -0
- package/dist/credentials/AttoApi.credentials.js +109 -0
- package/dist/credentials/AttoApi.credentials.js.map +1 -0
- package/dist/nodes/Atto/Atto.node.d.ts +5 -0
- package/dist/nodes/Atto/Atto.node.js +111107 -0
- package/dist/nodes/Atto/Atto.node.js.map +1 -0
- package/dist/nodes/Atto/Atto.node.json +18 -0
- package/dist/nodes/Atto/atto.svg +34 -0
- package/dist/nodes/Atto/operations.d.ts +35 -0
- package/dist/nodes/Atto/operations.js +593 -0
- package/dist/nodes/Atto/operations.js.map +1 -0
- package/dist/nodes/AttoTrigger/AttoTrigger.node.d.ts +5 -0
- package/dist/nodes/AttoTrigger/AttoTrigger.node.js +110716 -0
- package/dist/nodes/AttoTrigger/AttoTrigger.node.js.map +1 -0
- package/dist/nodes/AttoTrigger/AttoTrigger.node.json +18 -0
- package/dist/nodes/AttoTrigger/atto.svg +34 -0
- package/dist/package.json +90 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/examples/incoming-to-receive.json +60 -0
- package/examples/ping-pong-receivable.json +125 -0
- package/examples/receivable-trigger.json +25 -0
- package/examples/send-transaction.json +48 -0
- package/package.json +90 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Atto Receivable Trigger",
|
|
3
|
+
"nodes": [
|
|
4
|
+
{
|
|
5
|
+
"parameters": {
|
|
6
|
+
"event": "receivable",
|
|
7
|
+
"addressSource": "credentials",
|
|
8
|
+
"minAmount": "1",
|
|
9
|
+
"minAmountUnit": "RAW"
|
|
10
|
+
},
|
|
11
|
+
"id": "atto-receivable-trigger",
|
|
12
|
+
"name": "Atto Receivable",
|
|
13
|
+
"type": "@attocash/n8n-nodes-atto.attoTrigger",
|
|
14
|
+
"typeVersion": 1,
|
|
15
|
+
"position": [260, 260],
|
|
16
|
+
"credentials": {
|
|
17
|
+
"attoApi": {
|
|
18
|
+
"id": "1",
|
|
19
|
+
"name": "Atto Local"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"connections": {}
|
|
25
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Atto Send Transaction",
|
|
3
|
+
"nodes": [
|
|
4
|
+
{
|
|
5
|
+
"parameters": {},
|
|
6
|
+
"id": "manual-trigger",
|
|
7
|
+
"name": "Manual Trigger",
|
|
8
|
+
"type": "n8n-nodes-base.manualTrigger",
|
|
9
|
+
"typeVersion": 1,
|
|
10
|
+
"position": [260, 260]
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"parameters": {
|
|
14
|
+
"resource": "transaction",
|
|
15
|
+
"operation": "sendTransaction",
|
|
16
|
+
"secretSource": "credentials",
|
|
17
|
+
"destinationAddress": "atto://destination-address",
|
|
18
|
+
"amount": "1",
|
|
19
|
+
"amountUnit": "ATTO",
|
|
20
|
+
"timeoutMs": 60000
|
|
21
|
+
},
|
|
22
|
+
"id": "atto-send",
|
|
23
|
+
"name": "Send Atto",
|
|
24
|
+
"type": "@attocash/n8n-nodes-atto.atto",
|
|
25
|
+
"typeVersion": 1,
|
|
26
|
+
"position": [520, 260],
|
|
27
|
+
"credentials": {
|
|
28
|
+
"attoApi": {
|
|
29
|
+
"id": "1",
|
|
30
|
+
"name": "Atto Local"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"connections": {
|
|
36
|
+
"Manual Trigger": {
|
|
37
|
+
"main": [
|
|
38
|
+
[
|
|
39
|
+
{
|
|
40
|
+
"node": "Send Atto",
|
|
41
|
+
"type": "main",
|
|
42
|
+
"index": 0
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@attocash/n8n-nodes-atto",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Atto cryptocurrency wallet, transaction, account, and trigger nodes for n8n, powered by Atto Commons",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"n8n-community-node-package",
|
|
8
|
+
"n8n",
|
|
9
|
+
"n8n-node",
|
|
10
|
+
"n8n-nodes",
|
|
11
|
+
"n8n-community-node",
|
|
12
|
+
"atto",
|
|
13
|
+
"atto-cash",
|
|
14
|
+
"attocash",
|
|
15
|
+
"atto-commons",
|
|
16
|
+
"cryptocurrency",
|
|
17
|
+
"crypto",
|
|
18
|
+
"blockchain",
|
|
19
|
+
"wallet",
|
|
20
|
+
"payments",
|
|
21
|
+
"automation"
|
|
22
|
+
],
|
|
23
|
+
"author": {
|
|
24
|
+
"name": "Atto"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/attocash/integrations/tree/main/n8n-node#readme",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/attocash/integrations.git",
|
|
30
|
+
"directory": "n8n-node"
|
|
31
|
+
},
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/attocash/integrations/issues"
|
|
34
|
+
},
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public",
|
|
37
|
+
"provenance": true
|
|
38
|
+
},
|
|
39
|
+
"main": "dist/nodes/Atto/Atto.node.js",
|
|
40
|
+
"types": "dist/nodes/Atto/Atto.node.d.ts",
|
|
41
|
+
"files": [
|
|
42
|
+
"dist",
|
|
43
|
+
"examples"
|
|
44
|
+
],
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": "n8n-node build && node scripts/bundle-node.mjs",
|
|
47
|
+
"build:watch": "tsc --watch",
|
|
48
|
+
"clean": "rimraf dist",
|
|
49
|
+
"dev": "n8n-node dev",
|
|
50
|
+
"install:n8n": "sh scripts/install-into-n8n.sh",
|
|
51
|
+
"lint": "n8n-node lint",
|
|
52
|
+
"lint:fix": "n8n-node lint --fix",
|
|
53
|
+
"test": "npm run build && node --test test/*.test.mjs",
|
|
54
|
+
"test:integration": "npm run build && ATTO_TEST_INTEGRATION=1 node --test test/integration.test.mjs",
|
|
55
|
+
"validate:local": "node scripts/validate-local.mjs",
|
|
56
|
+
"validate:release-tag": "node scripts/validate-release-tag.mjs"
|
|
57
|
+
},
|
|
58
|
+
"engines": {
|
|
59
|
+
"node": ">=22.16"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@attocash/commons-core": "6.7.1-patch.1",
|
|
63
|
+
"@attocash/commons-node": "6.7.1-patch.1",
|
|
64
|
+
"@attocash/commons-node-remote": "6.7.1-patch.1",
|
|
65
|
+
"@attocash/commons-test": "6.7.1-patch.1",
|
|
66
|
+
"@attocash/commons-wallet": "6.7.1-patch.1",
|
|
67
|
+
"@attocash/commons-worker-remote": "6.7.1-patch.1",
|
|
68
|
+
"@n8n/node-cli": "0.32.1",
|
|
69
|
+
"@types/node": "^22.15.21",
|
|
70
|
+
"esbuild": "0.27.1",
|
|
71
|
+
"eslint": "9.29.0",
|
|
72
|
+
"n8n-workflow": "^2.16.0",
|
|
73
|
+
"prettier": "3.8.3",
|
|
74
|
+
"typescript": "5.9.3"
|
|
75
|
+
},
|
|
76
|
+
"peerDependencies": {
|
|
77
|
+
"n8n-workflow": "*"
|
|
78
|
+
},
|
|
79
|
+
"n8n": {
|
|
80
|
+
"n8nNodesApiVersion": 1,
|
|
81
|
+
"strict": true,
|
|
82
|
+
"credentials": [
|
|
83
|
+
"dist/credentials/AttoApi.credentials.js"
|
|
84
|
+
],
|
|
85
|
+
"nodes": [
|
|
86
|
+
"dist/nodes/Atto/Atto.node.js",
|
|
87
|
+
"dist/nodes/AttoTrigger/AttoTrigger.node.js"
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
}
|