@n8n-dev/n8n-nodes-cryptal 1.0.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.
Files changed (27) hide show
  1. package/README.md +97 -0
  2. package/dist/credentials/CryptalApi.credentials.d.ts +10 -0
  3. package/dist/credentials/CryptalApi.credentials.js +56 -0
  4. package/dist/credentials/CryptalApi.credentials.js.map +1 -0
  5. package/dist/icons/cryptal.dark.svg +4 -0
  6. package/dist/icons/cryptal.svg +4 -0
  7. package/dist/nodes/Cryptal/Cryptal.node.d.ts +4 -0
  8. package/dist/nodes/Cryptal/Cryptal.node.js +68 -0
  9. package/dist/nodes/Cryptal/Cryptal.node.js.map +1 -0
  10. package/dist/nodes/Cryptal/Cryptal.node.json +20 -0
  11. package/dist/nodes/Cryptal/cryptal.dark.svg +4 -0
  12. package/dist/nodes/Cryptal/cryptal.svg +4 -0
  13. package/dist/nodes/Cryptal/resources/account-methods/index.d.ts +2 -0
  14. package/dist/nodes/Cryptal/resources/account-methods/index.js +279 -0
  15. package/dist/nodes/Cryptal/resources/account-methods/index.js.map +1 -0
  16. package/dist/nodes/Cryptal/resources/index.d.ts +3 -0
  17. package/dist/nodes/Cryptal/resources/index.js +10 -0
  18. package/dist/nodes/Cryptal/resources/index.js.map +1 -0
  19. package/dist/nodes/Cryptal/resources/public-methods/index.d.ts +2 -0
  20. package/dist/nodes/Cryptal/resources/public-methods/index.js +419 -0
  21. package/dist/nodes/Cryptal/resources/public-methods/index.js.map +1 -0
  22. package/dist/nodes/Cryptal/resources/trading-methods/index.d.ts +2 -0
  23. package/dist/nodes/Cryptal/resources/trading-methods/index.js +659 -0
  24. package/dist/nodes/Cryptal/resources/trading-methods/index.js.map +1 -0
  25. package/dist/package.json +62 -0
  26. package/dist/tsconfig.tsbuildinfo +1 -0
  27. package/package.json +62 -0
@@ -0,0 +1,419 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.publicMethodsDescription = void 0;
4
+ exports.publicMethodsDescription = [
5
+ {
6
+ "displayName": "Operation",
7
+ "name": "operation",
8
+ "type": "options",
9
+ "noDataExpression": true,
10
+ "displayOptions": {
11
+ "show": {
12
+ "resource": [
13
+ "Public Methods"
14
+ ]
15
+ }
16
+ },
17
+ "options": [
18
+ {
19
+ "name": "Get Order Book",
20
+ "value": "Get Order Book",
21
+ "action": "Get Order book",
22
+ "description": "<p>Used to get retrieve the order book for a given pair.<br /><br />\n <a href=\"https://exchange.cryptal.com/exchange/api/v1/public/orderbook/BTC-USD\">Get /api/v1/public/orderbook/BTC-USD</a>\n</p>\n<pre>\n<code class=\"language-json\">\n{\n \"timestamp\": 1611750008159,\n \"bids\": [\n {\n \"price\": \"30121.73\",\n \"volume\": \"0.380001\",\n \"totalCost\": \"11446.28752173\"\n },\n {\n \"price\": \"30091.60\",\n \"volume\": \"0.418001\",\n \"totalCost\": \"12578.31889160\"\n },\n ...\n ],\n \"asks\": [\n {\n \"price\": \"30789.06\",\n \"volume\": \"0.253557\",\n \"totalCost\": \"7806.78168642\"\n },\n {\n \"price\": \"30819.84\",\n \"volume\": \"0.278913\",\n \"totalCost\": \"8596.05403392\"\n },\n ...\n ]\n}</code></pre>",
23
+ "routing": {
24
+ "request": {
25
+ "method": "GET",
26
+ "url": "=/api/v1/public/orderbook/{{$parameter[\"pair\"]}}"
27
+ }
28
+ }
29
+ },
30
+ {
31
+ "name": "Get All Markets Summery",
32
+ "value": "Get All Markets Summery",
33
+ "action": "Get All info about markets summery",
34
+ "description": "<p>Used to get the last 24 hour summary of all active markets. You will get information on both tickers and pairs.<br /><br />\n\n <a href=\"https://exchange.cryptal.com/exchange/api/v1/public/allMarketsSummery\">Get /api/v1/public/allMarketsSummery</a>\n</p>\n<pre>\n<code class=\"language-json\">\n{\n \"tickers\":\n [\n {\n \"pair\": \"BTC-USD\",\n \"minPrice\": \"31021.33\",\n \"maxPrice\": \"32777.00\",\n \"askPrice\": 23255.28,\n \"bidPrice\": 23014.84,\n \"baseVolume\": \"3.584040\",\n \"quoteVolume\": \"8972206.39\",\n \"lastTradePrice\": \"31088.00\",\n \"lastTradeVolume\": \"0.008880\",\n \"openPrice\": \"32427.16\",\n \"priceChange\": \"-2.30\",\n \"tradeCount\": 298,\n \"timestamp\": 0\n },\n ...,\n ],\n \"pairs\":\n [\n {\n \"pair\": \"BTC-USD\",\n \"baseCurrency\": \"BTC\",\n \"baseScale\": \"6\",\n \"quoteCurrency\": \"USD\",\n \"quoteScale\": \"2\",\n \"minSize\": \"0.000001\",\n \"minCost\": \"5\",\n \"maxSize\": \"100000000000000000\",\n \"maxPrice\": null,\n \"takerFee\": \"0.0025\",\n \"makerFee\": \"0.0025\",\n \"orderTypes\": [\n \"MARKET\",\n \"LIMIT_ORDER\"\n ],\n \"tradeEnabled\": true\n },\n ...,\n ]\n}</code></pre>",
35
+ "routing": {
36
+ "request": {
37
+ "method": "GET",
38
+ "url": "=/api/v1/public/allMarketsSummery"
39
+ }
40
+ }
41
+ },
42
+ {
43
+ "name": "Get Currencies",
44
+ "value": "Get Currencies",
45
+ "action": "Get Currencies",
46
+ "description": "<p>Used to get all supported currencies at Cryptal along with other meta data. <br><br>\n <a href=\"https://exchange.cryptal.com/exchange/api/v1/public/currencies\">Get /api/v1/public/currencies</a>\n</p>\n<pre>\n<code class=\"language-json\">\n[\n {\n \"code\": \"USD\",\n \"name\": \"United states dollar\",\n \"type\": \"FIAT\",\n \"transactionUrlPattern\": null,\n \"addressUrlPattern\": null\n },\n {\n \"code\": \"USDT\",\n \"name\": \"USDT\",\n \"type\": \"CRYPTO\",\n \"transactionUrlPattern\": \"https://etherscan.io/tx/{transactionId}\",\n \"addressUrlPattern\": \"https://etherscan.io/address/{address} \"\n },\n {\n \"code\": \"BTC\",\n \"name\": \"Bitcoin\",\n \"type\": \"CRYPTO\",\n \"transactionUrlPattern\": \"https://btc.bitaps.com/{transactionId}\",\n \"addressUrlPattern\": \"https://btc.bitaps.com/{address}\"\n },\n ...\n]\n</code></pre>",
47
+ "routing": {
48
+ "request": {
49
+ "method": "GET",
50
+ "url": "=/api/v1/public/currencies"
51
+ }
52
+ }
53
+ },
54
+ {
55
+ "name": "Get Pairs",
56
+ "value": "Get Pairs",
57
+ "action": "Get Pairs",
58
+ "description": "<p>Used to get the open and available trading markets at Cryptal&nbsp;along with other meta data<br /><br />\n <a href=\"https://exchange.cryptal.com/exchange/api/v1/public/pairs\">Get /api/v1/public/pairs</a>\n</p>\n<pre>\n<code class=\"language-json\">\n[\n {\n \"pair\": \"BTC-USD\",\n \"baseCurrency\": \"BTC\",\n \"baseScale\": \"6\",\n \"quoteCurrency\": \"USD\",\n \"quoteScale\": \"2\",\n \"minSize\": \"0.000001\",\n \"minCost\": \"5\",\n \"maxSize\": \"100000000000000000\",\n \"maxPrice\": null,\n \"takerFee\": \"0.0025\",\n \"makerFee\": \"0.0025\",\n \"orderTypes\": [\n \"MARKET\",\n \"LIMIT_ORDER\"\n ],\n \"tradeEnabled\": true\n },\n {\n \"pair\": \"USDT-USD\",\n \"baseCurrency\": \"USDT\",\n \"baseScale\": \"5\",\n \"quoteCurrency\": \"USD\",\n \"quoteScale\": \"4\",\n \"minSize\": \"0.00001\",\n \"minCost\": \"5\",\n \"maxSize\": \"100000000000000000\",\n \"maxPrice\": null,\n \"takerFee\": \"0.0025\",\n \"makerFee\": \"0.0025\",\n \"orderTypes\": [\n \"MARKET\",\n \"LIMIT_ORDER\"\n ],\n \"tradeEnabled\": true\n },\n \n {\n \"pair\": \"ETH-BTC\",\n \"baseCurrency\": \"ETH\",\n \"baseScale\": \"4\",\n \"quoteCurrency\": \"BTC\",\n \"quoteScale\": \"6\",\n \"minSize\": \"0.0001\",\n \"minCost\": \"0.0004\",\n \"maxSize\": \"100000000000000000\",\n \"maxPrice\": null,\n \"takerFee\": \"0.0025\",\n \"makerFee\": \"0.0025\",\n \"orderTypes\": [\n \"MARKET\",\n \"LIMIT_ORDER\"\n ],\n \"tradeEnabled\": true\n },\n ...\n]\n</code></pre>",
59
+ "routing": {
60
+ "request": {
61
+ "method": "GET",
62
+ "url": "=/api/v1/public/pairs"
63
+ }
64
+ }
65
+ },
66
+ {
67
+ "name": "Get Ticker",
68
+ "value": "Get Ticker",
69
+ "action": "Get Ticker Data",
70
+ "description": "<p>With this method you can find the complete list of Tickers<br /><br />\n <a href=\"https://exchange.cryptal.com/exchange/api/v1/public/ticker\">Get /api/v1/public/ticker</a>\n</p>\n<pre>\n<code class=\"language-json\">\n[\n {\n \"pair\": \"BTC-USD\",\n \"minPrice\": \"30627.21\",\n \"maxPrice\": \"32777.00\",\n \"askPrice\": null,\n \"bidPrice\": null,\n \"baseVolume\": \"3.565200\",\n \"quoteVolume\": \"8986368.46\",\n \"lastTradePrice\": \"30778.74\",\n \"lastTradeVolume\": \"0.009240\",\n \"openPrice\": \"32427.16\",\n \"priceChange\": \"-3.55\",\n \"tradeCount\": 300,\n \"timestamp\": 0\n },\n {\n \"pair\": \"USDT-USD\",\n \"minPrice\": \"0.9997\",\n \"maxPrice\": \"1.0028\",\n \"askPrice\": null,\n \"bidPrice\": null,\n \"baseVolume\": \"32412.60000\",\n \"quoteVolume\": \"3693333.4194\",\n \"lastTradePrice\": \"1.0027\",\n \"lastTradeVolume\": \"127.60000\",\n \"openPrice\": \"1.0010\",\n \"priceChange\": \"0.11\",\n \"tradeCount\": 291,\n \"timestamp\": 0\n },\n {\n \"pair\": \"ETH-BTC\",\n \"minPrice\": \"0.040157\",\n \"maxPrice\": \"0.042198\",\n \"askPrice\": null,\n \"bidPrice\": null,\n \"baseVolume\": \"23.2584\",\n \"quoteVolume\": \"2.531725\",\n \"lastTradePrice\": \"0.040937\",\n \"lastTradeVolume\": \"0.0832\",\n \"openPrice\": \"0.042198\",\n \"priceChange\": \"-0.85\",\n \"tradeCount\": 298,\n \"timestamp\": 0\n },\n ...\n]\n</code></pre>\n",
71
+ "routing": {
72
+ "request": {
73
+ "method": "GET",
74
+ "url": "=/api/v1/public/ticker"
75
+ }
76
+ }
77
+ },
78
+ {
79
+ "name": "Get Trades",
80
+ "value": "Get Trades",
81
+ "action": "Get Trades",
82
+ "description": "<p>Used to retrieve the latest trades that have occurred for a specific pair.<br /><br />\n <a href=\"https://exchange.cryptal.com/exchange/api/v1/public/trades/BTC-USD\">Get /api/v1/public/trades/BTC-USD</a>\n</p>\n<pre>\n<code class=\"language-json\">\n[\n {\n \"id\": \"39369\",\n \"price\": \"30645.23\",\n \"volume\": \"0.011280\",\n \"quoteVolume\": \"345.68\",\n \"side\": \"ASK\",\n \"timestamp\": 1611766117823\n },\n {\n \"id\": \"39366\",\n \"price\": \"30731.66\",\n \"volume\": \"0.014400\",\n \"quoteVolume\": \"442.54\",\n \"side\": \"BID\",\n \"timestamp\": 1611765243024\n },\n {\n \"id\": \"39365\",\n \"price\": \"30891.40\",\n \"volume\": \"0.011280\",\n \"quoteVolume\": \"348.45\",\n \"side\": \"BID\",\n \"timestamp\": 1611764951352\n },\n {\n \"id\": \"39364\",\n \"price\": \"30688.11\",\n \"volume\": \"0.014280\",\n \"quoteVolume\": \"438.23\",\n \"side\": \"ASK\",\n \"timestamp\": 1611764659750\n },\n ...\n]</code></pre>",
83
+ "routing": {
84
+ "request": {
85
+ "method": "GET",
86
+ "url": "=/api/v1/public/trades/{{$parameter[\"pair\"]}}"
87
+ }
88
+ }
89
+ }
90
+ ],
91
+ "default": ""
92
+ },
93
+ {
94
+ "displayName": "GET /api/v1/public/orderbook/{pair}",
95
+ "name": "operation",
96
+ "type": "notice",
97
+ "typeOptions": {
98
+ "theme": "info"
99
+ },
100
+ "default": "",
101
+ "displayOptions": {
102
+ "show": {
103
+ "resource": [
104
+ "Public Methods"
105
+ ],
106
+ "operation": [
107
+ "Get Order Book"
108
+ ]
109
+ }
110
+ }
111
+ },
112
+ {
113
+ "displayName": "Pair",
114
+ "name": "pair",
115
+ "required": true,
116
+ "description": "A currency pair is the quotation of two different currencies, with the value of one currency being quoted against the other. The first listed currency of a currency pair is called the base currency, and the second currency is called the quote currency. E.g: ETH-BTC, BTC-USD, USDT-USD",
117
+ "default": "",
118
+ "type": "string",
119
+ "displayOptions": {
120
+ "show": {
121
+ "resource": [
122
+ "Public Methods"
123
+ ],
124
+ "operation": [
125
+ "Get Order Book"
126
+ ]
127
+ }
128
+ }
129
+ },
130
+ {
131
+ "displayName": "Limit",
132
+ "name": "limit",
133
+ "description": "limits:[25, 100]. limit the number of records returned based on a limit value",
134
+ "default": 100,
135
+ "type": "number",
136
+ "routing": {
137
+ "send": {
138
+ "type": "query",
139
+ "property": "limit",
140
+ "value": "={{ $value }}",
141
+ "propertyInDotNotation": false
142
+ }
143
+ },
144
+ "displayOptions": {
145
+ "show": {
146
+ "resource": [
147
+ "Public Methods"
148
+ ],
149
+ "operation": [
150
+ "Get Order Book"
151
+ ]
152
+ }
153
+ }
154
+ },
155
+ {
156
+ "displayName": "GET /api/v1/public/allMarketsSummery",
157
+ "name": "operation",
158
+ "type": "notice",
159
+ "typeOptions": {
160
+ "theme": "info"
161
+ },
162
+ "default": "",
163
+ "displayOptions": {
164
+ "show": {
165
+ "resource": [
166
+ "Public Methods"
167
+ ],
168
+ "operation": [
169
+ "Get All Markets Summery"
170
+ ]
171
+ }
172
+ }
173
+ },
174
+ {
175
+ "displayName": "GET /api/v1/public/currencies",
176
+ "name": "operation",
177
+ "type": "notice",
178
+ "typeOptions": {
179
+ "theme": "info"
180
+ },
181
+ "default": "",
182
+ "displayOptions": {
183
+ "show": {
184
+ "resource": [
185
+ "Public Methods"
186
+ ],
187
+ "operation": [
188
+ "Get Currencies"
189
+ ]
190
+ }
191
+ }
192
+ },
193
+ {
194
+ "displayName": "GET /api/v1/public/pairs",
195
+ "name": "operation",
196
+ "type": "notice",
197
+ "typeOptions": {
198
+ "theme": "info"
199
+ },
200
+ "default": "",
201
+ "displayOptions": {
202
+ "show": {
203
+ "resource": [
204
+ "Public Methods"
205
+ ],
206
+ "operation": [
207
+ "Get Pairs"
208
+ ]
209
+ }
210
+ }
211
+ },
212
+ {
213
+ "displayName": "GET /api/v1/public/ticker",
214
+ "name": "operation",
215
+ "type": "notice",
216
+ "typeOptions": {
217
+ "theme": "info"
218
+ },
219
+ "default": "",
220
+ "displayOptions": {
221
+ "show": {
222
+ "resource": [
223
+ "Public Methods"
224
+ ],
225
+ "operation": [
226
+ "Get Ticker"
227
+ ]
228
+ }
229
+ }
230
+ },
231
+ {
232
+ "displayName": "Pair",
233
+ "name": "pair",
234
+ "description": "A currency pair is the quotation of two different currencies, with the value of one currency being quoted against the other. The first listed currency of a currency pair is called the base currency, and the second currency is called the quote currency. E.g: ETH-BTC, BTC-USD, USDT-USD",
235
+ "default": "",
236
+ "type": "string",
237
+ "routing": {
238
+ "send": {
239
+ "type": "query",
240
+ "property": "pair",
241
+ "value": "={{ $value }}",
242
+ "propertyInDotNotation": false
243
+ }
244
+ },
245
+ "displayOptions": {
246
+ "show": {
247
+ "resource": [
248
+ "Public Methods"
249
+ ],
250
+ "operation": [
251
+ "Get Ticker"
252
+ ]
253
+ }
254
+ }
255
+ },
256
+ {
257
+ "displayName": "GET /api/v1/public/trades/{pair}",
258
+ "name": "operation",
259
+ "type": "notice",
260
+ "typeOptions": {
261
+ "theme": "info"
262
+ },
263
+ "default": "",
264
+ "displayOptions": {
265
+ "show": {
266
+ "resource": [
267
+ "Public Methods"
268
+ ],
269
+ "operation": [
270
+ "Get Trades"
271
+ ]
272
+ }
273
+ }
274
+ },
275
+ {
276
+ "displayName": "Pair",
277
+ "name": "pair",
278
+ "required": true,
279
+ "description": "A currency pair is the quotation of two different currencies, with the value of one currency being quoted against the other. The first listed currency of a currency pair is called the base currency, and the second currency is called the quote currency. E.g: ETH-BTC, BTC-USD, USDT-USD",
280
+ "default": "",
281
+ "type": "string",
282
+ "displayOptions": {
283
+ "show": {
284
+ "resource": [
285
+ "Public Methods"
286
+ ],
287
+ "operation": [
288
+ "Get Trades"
289
+ ]
290
+ }
291
+ }
292
+ },
293
+ {
294
+ "displayName": "Offset",
295
+ "name": "offset",
296
+ "description": "OFFSET value must be greater than or equal to zero. It cannot be negative, else return error.",
297
+ "default": 0,
298
+ "type": "number",
299
+ "routing": {
300
+ "send": {
301
+ "type": "query",
302
+ "property": "offset",
303
+ "value": "={{ $value }}",
304
+ "propertyInDotNotation": false
305
+ }
306
+ },
307
+ "displayOptions": {
308
+ "show": {
309
+ "resource": [
310
+ "Public Methods"
311
+ ],
312
+ "operation": [
313
+ "Get Trades"
314
+ ]
315
+ }
316
+ }
317
+ },
318
+ {
319
+ "displayName": "Limit",
320
+ "name": "limit",
321
+ "description": "Any request is allowed ; max 1000. limit the number of records returned based on a limit value",
322
+ "default": 100,
323
+ "type": "number",
324
+ "routing": {
325
+ "send": {
326
+ "type": "query",
327
+ "property": "limit",
328
+ "value": "={{ $value }}",
329
+ "propertyInDotNotation": false
330
+ }
331
+ },
332
+ "displayOptions": {
333
+ "show": {
334
+ "resource": [
335
+ "Public Methods"
336
+ ],
337
+ "operation": [
338
+ "Get Trades"
339
+ ]
340
+ }
341
+ }
342
+ },
343
+ {
344
+ "displayName": "From Id",
345
+ "name": "fromId",
346
+ "description": "Trade id to fetch from. Default gets most recent trades.",
347
+ "default": 0,
348
+ "type": "number",
349
+ "routing": {
350
+ "send": {
351
+ "type": "query",
352
+ "property": "fromId",
353
+ "value": "={{ $value }}",
354
+ "propertyInDotNotation": false
355
+ }
356
+ },
357
+ "displayOptions": {
358
+ "show": {
359
+ "resource": [
360
+ "Public Methods"
361
+ ],
362
+ "operation": [
363
+ "Get Trades"
364
+ ]
365
+ }
366
+ }
367
+ },
368
+ {
369
+ "displayName": "From Timestamp",
370
+ "name": "fromTimestamp",
371
+ "description": "From timestamp, Format in Unix Epoch Time: 1582882393000 (milliseconds since 1 Jan 1970), which is equal to 2020-02-28 13:33:13.113108",
372
+ "default": 0,
373
+ "type": "number",
374
+ "routing": {
375
+ "send": {
376
+ "type": "query",
377
+ "property": "fromTimestamp",
378
+ "value": "={{ $value }}",
379
+ "propertyInDotNotation": false
380
+ }
381
+ },
382
+ "displayOptions": {
383
+ "show": {
384
+ "resource": [
385
+ "Public Methods"
386
+ ],
387
+ "operation": [
388
+ "Get Trades"
389
+ ]
390
+ }
391
+ }
392
+ },
393
+ {
394
+ "displayName": "To Timestamp",
395
+ "name": "toTimestamp",
396
+ "description": "To timestamp, Format in Unix Epoch Time: 1582882393000 (milliseconds since 1 Jan 1970), which is equal to 2020-02-28 13:33:13.113108",
397
+ "default": 0,
398
+ "type": "number",
399
+ "routing": {
400
+ "send": {
401
+ "type": "query",
402
+ "property": "toTimestamp",
403
+ "value": "={{ $value }}",
404
+ "propertyInDotNotation": false
405
+ }
406
+ },
407
+ "displayOptions": {
408
+ "show": {
409
+ "resource": [
410
+ "Public Methods"
411
+ ],
412
+ "operation": [
413
+ "Get Trades"
414
+ ]
415
+ }
416
+ }
417
+ },
418
+ ];
419
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Cryptal/resources/public-methods/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ import type { INodeProperties } from 'n8n-workflow';
2
+ export declare const tradingMethodsDescription: INodeProperties[];