@n8n-dev/n8n-nodes-ondo-finance 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 (36) hide show
  1. package/README.md +100 -0
  2. package/dist/credentials/OndoFinanceApi.credentials.d.ts +10 -0
  3. package/dist/credentials/OndoFinanceApi.credentials.js +56 -0
  4. package/dist/credentials/OndoFinanceApi.credentials.js.map +1 -0
  5. package/dist/icons/ondo-finance.dark.svg +4 -0
  6. package/dist/icons/ondo-finance.svg +4 -0
  7. package/dist/nodes/OndoFinance/OndoFinance.node.d.ts +4 -0
  8. package/dist/nodes/OndoFinance/OndoFinance.node.js +89 -0
  9. package/dist/nodes/OndoFinance/OndoFinance.node.js.map +1 -0
  10. package/dist/nodes/OndoFinance/OndoFinance.node.json +20 -0
  11. package/dist/nodes/OndoFinance/ondo-finance.dark.svg +4 -0
  12. package/dist/nodes/OndoFinance/ondo-finance.svg +4 -0
  13. package/dist/nodes/OndoFinance/resources/assets/index.d.ts +2 -0
  14. package/dist/nodes/OndoFinance/resources/assets/index.js +701 -0
  15. package/dist/nodes/OndoFinance/resources/assets/index.js.map +1 -0
  16. package/dist/nodes/OndoFinance/resources/attestations/index.d.ts +2 -0
  17. package/dist/nodes/OndoFinance/resources/attestations/index.js +435 -0
  18. package/dist/nodes/OndoFinance/resources/attestations/index.js.map +1 -0
  19. package/dist/nodes/OndoFinance/resources/chains/index.d.ts +2 -0
  20. package/dist/nodes/OndoFinance/resources/chains/index.js +216 -0
  21. package/dist/nodes/OndoFinance/resources/chains/index.js.map +1 -0
  22. package/dist/nodes/OndoFinance/resources/index.d.ts +6 -0
  23. package/dist/nodes/OndoFinance/resources/index.js +16 -0
  24. package/dist/nodes/OndoFinance/resources/index.js.map +1 -0
  25. package/dist/nodes/OndoFinance/resources/limits/index.d.ts +2 -0
  26. package/dist/nodes/OndoFinance/resources/limits/index.js +171 -0
  27. package/dist/nodes/OndoFinance/resources/limits/index.js.map +1 -0
  28. package/dist/nodes/OndoFinance/resources/status/index.d.ts +2 -0
  29. package/dist/nodes/OndoFinance/resources/status/index.js +84 -0
  30. package/dist/nodes/OndoFinance/resources/status/index.js.map +1 -0
  31. package/dist/nodes/OndoFinance/resources/tickers/index.d.ts +2 -0
  32. package/dist/nodes/OndoFinance/resources/tickers/index.js +53 -0
  33. package/dist/nodes/OndoFinance/resources/tickers/index.js.map +1 -0
  34. package/dist/package.json +62 -0
  35. package/dist/tsconfig.tsbuildinfo +1 -0
  36. package/package.json +62 -0
@@ -0,0 +1,701 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.assetsDescription = void 0;
4
+ exports.assetsDescription = [
5
+ {
6
+ "displayName": "Operation",
7
+ "name": "operation",
8
+ "type": "options",
9
+ "noDataExpression": true,
10
+ "displayOptions": {
11
+ "show": {
12
+ "resource": [
13
+ "Assets"
14
+ ]
15
+ }
16
+ },
17
+ "options": [
18
+ {
19
+ "name": "Get All Prices",
20
+ "value": "Get All Prices",
21
+ "action": "Get Current Prices for All Supported Assets",
22
+ "description": "This endpoint retrieves the latest prices for all supported assets. Note that the `primaryMarket` represents the on-chain token while the `underlyingMarket`\nrepresents the off-chain collateralized stock. Assets can be sorted by price in either ascending or descending order.\n\nPrices are intended for display only. For real-time trading prices, use the [Soft Attestation Quote](https://docs.ondo.finance/api-reference/attestations/request-a-soft-attestation-quote) API. We do not recommend using the price feeds as an oracle for these assets. An official oracle is in development and will be documented when available. For questions, contact [support@ondo.finance](mailto:support@ondo.finance).\n\nFor caching details on this endpoint, please see: [Endpoint Caching](https://docs.ondo.finance/api-reference/endpoint-caching).\n",
23
+ "routing": {
24
+ "request": {
25
+ "method": "GET",
26
+ "url": "=/v1/assets/all/prices/latest"
27
+ }
28
+ }
29
+ },
30
+ {
31
+ "name": "Get Price",
32
+ "value": "Get Price",
33
+ "action": "Get Current Price for an Asset",
34
+ "description": "This endpoint retrieves the latest price for a specific asset. Note that the `primaryMarket` represents the on-chain token while the `underlyingMarket`\nrepresents the off-chain collateralized stock.\n\nPrices are intended for display only. For real-time trading prices, use the [Soft Attestation Quote](https://docs.ondo.finance/api-reference/attestations/request-a-soft-attestation-quote) API. We do not recommend using the price feeds as an oracle for these assets. An official oracle is in development and will be documented when available. For questions, contact [support@ondo.finance](mailto:support@ondo.finance).\n\nFor caching details on this endpoint, please see: [Endpoint Caching](https://docs.ondo.finance/api-reference/endpoint-caching).\n",
35
+ "routing": {
36
+ "request": {
37
+ "method": "GET",
38
+ "url": "=/v1/assets/{{$parameter[\"symbol\"]}}/prices/latest"
39
+ }
40
+ }
41
+ },
42
+ {
43
+ "name": "Get All Asset Enhanced Prices",
44
+ "value": "Get All Asset Enhanced Prices",
45
+ "action": "Get Enhanced Prices for All Supported Assets",
46
+ "description": "This endpoint retrieves the latest prices along with the price change and percentage change in the last 24 hours of open market for all supported assets. Assets can be sorted by price in either ascending or descending order.\n\nPrices are intended for display only. For real-time trading prices, use the [Soft Attestation Quote](https://docs.ondo.finance/api-reference/attestations/request-a-soft-attestation-quote) API. We do not recommend using the price feeds as an oracle for these assets. An official oracle is in development and will be documented when available. For questions, contact [support@ondo.finance](mailto:support@ondo.finance).\n\nFor caching details on this endpoint, please see: [Endpoint Caching](https://docs.ondo.finance/api-reference/endpoint-caching).\n",
47
+ "routing": {
48
+ "request": {
49
+ "method": "GET",
50
+ "url": "=/v1/assets/all/prices/latest/enhanced"
51
+ }
52
+ }
53
+ },
54
+ {
55
+ "name": "Get OHLC Prices",
56
+ "value": "Get OHLC Prices",
57
+ "action": "Get OHLC (Open, High, Low, Close) Data for an Asset",
58
+ "description": "This endpoint retrieves historical Open, High, Low, Close (OHLC) price data for both the primary market (on-chain token) and underlying market (off-chain stock) for a specified asset.\n\nPrices are intended for display only. For real-time trading prices, use the [Soft Attestation Quote](https://docs.ondo.finance/api-reference/attestations/request-a-soft-attestation-quote) API. We do not recommend using the price feeds as an oracle for these assets. An official oracle is in development and will be documented when available. For questions, contact [support@ondo.finance](mailto:support@ondo.finance).\n\nThe `interval` parameter determines the bucket size for data points, while the `range` parameter determines how far back historically to look for price data. See below for valid interval/range pairs.\n\nValid `interval`/`range` pairs:\n- 1min/1day *(rolling 24-hour period of open market data)*\n- 5min/1day\n- 15min/1day\n- 1hour/1month\n- 4hour/1month\n- 12hour/3month\n- 1day/3month\n- 1day/6month\n- 1day/1year\n- 1day/all *(all historical data)*\n\nFor caching details on this endpoint, please see: [Endpoint Caching](https://docs.ondo.finance/api-reference/endpoint-caching).\n",
59
+ "routing": {
60
+ "request": {
61
+ "method": "GET",
62
+ "url": "=/v1/assets/{{$parameter[\"symbol\"]}}/prices/ohlc"
63
+ }
64
+ }
65
+ },
66
+ {
67
+ "name": "Get All Markets",
68
+ "value": "Get All Markets",
69
+ "action": "Get Market Data for All Supported Assets",
70
+ "description": "This endpoint retrieves comprehensive market data for all supported assets. Each asset includes both primary market (on-chain token) and underlying market (off-chain stock) information.\n\nPrimary market data includes current price, 24-hour price changes, 24-hour historical chart data, and total token holders. Underlying market data provides stock fundamentals like company name, 52-week highs/lows, trading volume, shares outstanding, and market capitalization.\n\nThis endpoint is useful for dashboard overviews and market analysis across the entire asset portfolio.\n\nThe \"Tradable Sessions\" parameter indicates the tradability for the asset; for example, some assets are available in the regular and extended stock sessions, but not overnight. Learn more about sessions at [Get Current Market Status](https://docs.ondo.finance/api-reference/status/get-current-market-status).\n\nPrices are intended for display only. For real-time trading prices, use the [Soft Attestation Quote](https://docs.ondo.finance/api-reference/attestations/request-a-soft-attestation-quote) API. We do not recommend using the price feeds as an oracle for these assets. An official oracle is in development and will be documented when available. For questions, contact [support@ondo.finance](mailto:support@ondo.finance).\n\nFor caching details on this endpoint, please see: [Endpoint Caching](https://docs.ondo.finance/api-reference/endpoint-caching).\n",
71
+ "routing": {
72
+ "request": {
73
+ "method": "GET",
74
+ "url": "=/v1/assets/all/market"
75
+ }
76
+ }
77
+ },
78
+ {
79
+ "name": "Get Market",
80
+ "value": "Get Market",
81
+ "action": "Get Market Data for an Asset",
82
+ "description": "This endpoint retrieves comprehensive market data for a specific asset, containing both primary market (on-chain token) and underlying market (off-chain stock) information.\n\nPrimary market data includes current price, 24-hour price changes, 24-hour historical chart data, and total token holders. Underlying market data provides stock fundamentals like company name, 52-week highs/lows, trading volume, shares outstanding, and market capitalization.\n\nThis endpoint is useful for dashboard overviews and market analysis across the entire asset portfolio.\n\nThe \"Tradable Sessions\" parameter indicates the tradability for the asset; for example, some assets are available in the regular and extended stock sessions, but not overnight. Learn more about sessions at [Get Current Market Status](https://docs.ondo.finance/api-reference/status/get-current-market-status).\n\nPrices are intended for display only. For real-time trading prices, use the [Soft Attestation Quote](https://docs.ondo.finance/api-reference/attestations/request-a-soft-attestation-quote) API. We do not recommend using the price feeds as an oracle for these assets. An official oracle is in development and will be documented when available. For questions, contact [support@ondo.finance](mailto:support@ondo.finance).\n\nFor caching details on this endpoint, please see: [Endpoint Caching](https://docs.ondo.finance/api-reference/endpoint-caching).\n",
83
+ "routing": {
84
+ "request": {
85
+ "method": "GET",
86
+ "url": "=/v1/assets/{{$parameter[\"symbol\"]}}/market"
87
+ }
88
+ }
89
+ },
90
+ {
91
+ "name": "Get Latest Dividend",
92
+ "value": "Get Latest Dividend",
93
+ "action": "Get Dividend Information for an Asset",
94
+ "description": "This endpoint retrieves the latest dividend information for a specific asset, including dividend yield, payment history, and upcoming payment dates.\n\n**Dividend Yield**\n\nThe dividend yield is calculated based on the past year's worth of dividend payments and the current stock price.\n\n**Payout Frequencies**\n\nBelow outline the day ranges for each payout frequency:\n\n| Frequency | Average Days Between Dividends |\n|-------------------|:------------------------------:|\n| **none** | N/A |\n| **monthly** | 25-35 days |\n| **quarterly** | 80-100 days |\n| **semi-annually** | 160-200 days |\n| **yearly** | 345-385 days |\n| **irregular** | Outside defined ranges |\n\nFor caching details on this endpoint, please see: [Endpoint Caching](https://docs.ondo.finance/api-reference/endpoint-caching).\n",
95
+ "routing": {
96
+ "request": {
97
+ "method": "GET",
98
+ "url": "=/v1/assets/{{$parameter[\"symbol\"]}}/dividends"
99
+ }
100
+ }
101
+ },
102
+ {
103
+ "name": "Get All Asset Addresses",
104
+ "value": "Get All Asset Addresses",
105
+ "action": "Get All Contract Addresses Across Networks",
106
+ "description": "This endpoint retrieves all contract addresses for all supported assets across different blockchain networks.\n\nFor caching details on this endpoint, please see: [Endpoint Caching](https://docs.ondo.finance/api-reference/endpoint-caching).\n",
107
+ "routing": {
108
+ "request": {
109
+ "method": "GET",
110
+ "url": "=/v1/assets/all/addresses"
111
+ }
112
+ }
113
+ },
114
+ {
115
+ "name": "Get Asset Addresses",
116
+ "value": "Get Asset Addresses",
117
+ "action": "Get Contract Addresses for an Asset",
118
+ "description": "This endpoint retrieves all contract addresses for a specific asset across different blockchain networks.\n\nFor caching details on this endpoint, please see: [Endpoint Caching](https://docs.ondo.finance/api-reference/endpoint-caching).\n",
119
+ "routing": {
120
+ "request": {
121
+ "method": "GET",
122
+ "url": "=/v1/assets/{{$parameter[\"symbol\"]}}/addresses"
123
+ }
124
+ }
125
+ },
126
+ {
127
+ "name": "Get All Asset Metadata",
128
+ "value": "Get All Asset Metadata",
129
+ "action": "Get Metadata for All Supported Assets",
130
+ "description": "Returns all metadata for all symbols including identifiers, addresses, and classification tags.\n\nFor caching details on this endpoint, please see: [Endpoint Caching](https://docs.ondo.finance/api-reference/endpoint-caching).\n",
131
+ "routing": {
132
+ "request": {
133
+ "method": "GET",
134
+ "url": "=/v1/assets/all/metadata"
135
+ }
136
+ }
137
+ },
138
+ {
139
+ "name": "Get Shares Multiplier",
140
+ "value": "Get Shares Multiplier",
141
+ "action": "Get Shares Multiplier History for an Asset",
142
+ "description": "This endpoint retrieves the shares multiplier history for a specific asset. Note that some asset events do not result in the shares multiplier value changing. This endpoint will show the earliest timestamp for each value change.\n\nThe `range` parameter determines how far back historically to look for shares multiplier data. See below for valid range values.\n\nValid `range` values:\n- 1day\n- 1month\n- 3month\n- 6month\n- 1year\n- all *(all historical data)*\n\nFor caching details on this endpoint, please see: [Endpoint Caching](https://docs.ondo.finance/api-reference/endpoint-caching).\n",
143
+ "routing": {
144
+ "request": {
145
+ "method": "GET",
146
+ "url": "=/v1/assets/{{$parameter[\"symbol\"]}}/shares-multiplier"
147
+ }
148
+ }
149
+ }
150
+ ],
151
+ "default": ""
152
+ },
153
+ {
154
+ "displayName": "GET /v1/assets/all/prices/latest",
155
+ "name": "operation",
156
+ "type": "notice",
157
+ "typeOptions": {
158
+ "theme": "info"
159
+ },
160
+ "default": "",
161
+ "displayOptions": {
162
+ "show": {
163
+ "resource": [
164
+ "Assets"
165
+ ],
166
+ "operation": [
167
+ "Get All Prices"
168
+ ]
169
+ }
170
+ }
171
+ },
172
+ {
173
+ "displayName": "Sort",
174
+ "name": "sort",
175
+ "description": "The sort direction for prices.",
176
+ "default": "desc",
177
+ "type": "options",
178
+ "options": [
179
+ {
180
+ "name": "Desc",
181
+ "value": "desc"
182
+ },
183
+ {
184
+ "name": "Asc",
185
+ "value": "asc"
186
+ }
187
+ ],
188
+ "routing": {
189
+ "send": {
190
+ "type": "query",
191
+ "property": "sort",
192
+ "value": "={{ $value }}",
193
+ "propertyInDotNotation": false
194
+ }
195
+ },
196
+ "displayOptions": {
197
+ "show": {
198
+ "resource": [
199
+ "Assets"
200
+ ],
201
+ "operation": [
202
+ "Get All Prices"
203
+ ]
204
+ }
205
+ }
206
+ },
207
+ {
208
+ "displayName": "GET /v1/assets/{symbol}/prices/latest",
209
+ "name": "operation",
210
+ "type": "notice",
211
+ "typeOptions": {
212
+ "theme": "info"
213
+ },
214
+ "default": "",
215
+ "displayOptions": {
216
+ "show": {
217
+ "resource": [
218
+ "Assets"
219
+ ],
220
+ "operation": [
221
+ "Get Price"
222
+ ]
223
+ }
224
+ }
225
+ },
226
+ {
227
+ "displayName": "Symbol",
228
+ "name": "symbol",
229
+ "required": true,
230
+ "description": "The GM token symbol",
231
+ "default": "AAPLon",
232
+ "type": "string",
233
+ "displayOptions": {
234
+ "show": {
235
+ "resource": [
236
+ "Assets"
237
+ ],
238
+ "operation": [
239
+ "Get Price"
240
+ ]
241
+ }
242
+ }
243
+ },
244
+ {
245
+ "displayName": "GET /v1/assets/all/prices/latest/enhanced",
246
+ "name": "operation",
247
+ "type": "notice",
248
+ "typeOptions": {
249
+ "theme": "info"
250
+ },
251
+ "default": "",
252
+ "displayOptions": {
253
+ "show": {
254
+ "resource": [
255
+ "Assets"
256
+ ],
257
+ "operation": [
258
+ "Get All Asset Enhanced Prices"
259
+ ]
260
+ }
261
+ }
262
+ },
263
+ {
264
+ "displayName": "Sort",
265
+ "name": "sort",
266
+ "description": "The sort direction for prices.",
267
+ "default": "desc",
268
+ "type": "options",
269
+ "options": [
270
+ {
271
+ "name": "Desc",
272
+ "value": "desc"
273
+ },
274
+ {
275
+ "name": "Asc",
276
+ "value": "asc"
277
+ }
278
+ ],
279
+ "routing": {
280
+ "send": {
281
+ "type": "query",
282
+ "property": "sort",
283
+ "value": "={{ $value }}",
284
+ "propertyInDotNotation": false
285
+ }
286
+ },
287
+ "displayOptions": {
288
+ "show": {
289
+ "resource": [
290
+ "Assets"
291
+ ],
292
+ "operation": [
293
+ "Get All Asset Enhanced Prices"
294
+ ]
295
+ }
296
+ }
297
+ },
298
+ {
299
+ "displayName": "GET /v1/assets/{symbol}/prices/ohlc",
300
+ "name": "operation",
301
+ "type": "notice",
302
+ "typeOptions": {
303
+ "theme": "info"
304
+ },
305
+ "default": "",
306
+ "displayOptions": {
307
+ "show": {
308
+ "resource": [
309
+ "Assets"
310
+ ],
311
+ "operation": [
312
+ "Get OHLC Prices"
313
+ ]
314
+ }
315
+ }
316
+ },
317
+ {
318
+ "displayName": "Symbol",
319
+ "name": "symbol",
320
+ "required": true,
321
+ "description": "The GM token symbol",
322
+ "default": "AAPLon",
323
+ "type": "string",
324
+ "displayOptions": {
325
+ "show": {
326
+ "resource": [
327
+ "Assets"
328
+ ],
329
+ "operation": [
330
+ "Get OHLC Prices"
331
+ ]
332
+ }
333
+ }
334
+ },
335
+ {
336
+ "displayName": "Interval",
337
+ "name": "interval",
338
+ "required": true,
339
+ "description": "The time interval between data points.",
340
+ "default": "1min",
341
+ "type": "options",
342
+ "options": [
343
+ {
344
+ "name": "1 Min",
345
+ "value": "1min"
346
+ },
347
+ {
348
+ "name": "5 Min",
349
+ "value": "5min"
350
+ },
351
+ {
352
+ "name": "15 Min",
353
+ "value": "15min"
354
+ },
355
+ {
356
+ "name": "1 Hour",
357
+ "value": "1hour"
358
+ },
359
+ {
360
+ "name": "4 Hour",
361
+ "value": "4hour"
362
+ },
363
+ {
364
+ "name": "12 Hour",
365
+ "value": "12hour"
366
+ },
367
+ {
368
+ "name": "1 Day",
369
+ "value": "1day"
370
+ }
371
+ ],
372
+ "routing": {
373
+ "send": {
374
+ "type": "query",
375
+ "property": "interval",
376
+ "value": "={{ $value }}",
377
+ "propertyInDotNotation": false
378
+ }
379
+ },
380
+ "displayOptions": {
381
+ "show": {
382
+ "resource": [
383
+ "Assets"
384
+ ],
385
+ "operation": [
386
+ "Get OHLC Prices"
387
+ ]
388
+ }
389
+ }
390
+ },
391
+ {
392
+ "displayName": "Range",
393
+ "name": "range",
394
+ "required": true,
395
+ "description": "The lookback range for historical data.",
396
+ "default": "1day",
397
+ "type": "options",
398
+ "options": [
399
+ {
400
+ "name": "1 Day",
401
+ "value": "1day"
402
+ },
403
+ {
404
+ "name": "1 Month",
405
+ "value": "1month"
406
+ },
407
+ {
408
+ "name": "3 Month",
409
+ "value": "3month"
410
+ },
411
+ {
412
+ "name": "6 Month",
413
+ "value": "6month"
414
+ },
415
+ {
416
+ "name": "1 Year",
417
+ "value": "1year"
418
+ },
419
+ {
420
+ "name": "All",
421
+ "value": "all"
422
+ }
423
+ ],
424
+ "routing": {
425
+ "send": {
426
+ "type": "query",
427
+ "property": "range",
428
+ "value": "={{ $value }}",
429
+ "propertyInDotNotation": false
430
+ }
431
+ },
432
+ "displayOptions": {
433
+ "show": {
434
+ "resource": [
435
+ "Assets"
436
+ ],
437
+ "operation": [
438
+ "Get OHLC Prices"
439
+ ]
440
+ }
441
+ }
442
+ },
443
+ {
444
+ "displayName": "GET /v1/assets/all/market",
445
+ "name": "operation",
446
+ "type": "notice",
447
+ "typeOptions": {
448
+ "theme": "info"
449
+ },
450
+ "default": "",
451
+ "displayOptions": {
452
+ "show": {
453
+ "resource": [
454
+ "Assets"
455
+ ],
456
+ "operation": [
457
+ "Get All Markets"
458
+ ]
459
+ }
460
+ }
461
+ },
462
+ {
463
+ "displayName": "GET /v1/assets/{symbol}/market",
464
+ "name": "operation",
465
+ "type": "notice",
466
+ "typeOptions": {
467
+ "theme": "info"
468
+ },
469
+ "default": "",
470
+ "displayOptions": {
471
+ "show": {
472
+ "resource": [
473
+ "Assets"
474
+ ],
475
+ "operation": [
476
+ "Get Market"
477
+ ]
478
+ }
479
+ }
480
+ },
481
+ {
482
+ "displayName": "Symbol",
483
+ "name": "symbol",
484
+ "required": true,
485
+ "description": "The GM token symbol",
486
+ "default": "AAPLon",
487
+ "type": "string",
488
+ "displayOptions": {
489
+ "show": {
490
+ "resource": [
491
+ "Assets"
492
+ ],
493
+ "operation": [
494
+ "Get Market"
495
+ ]
496
+ }
497
+ }
498
+ },
499
+ {
500
+ "displayName": "GET /v1/assets/{symbol}/dividends",
501
+ "name": "operation",
502
+ "type": "notice",
503
+ "typeOptions": {
504
+ "theme": "info"
505
+ },
506
+ "default": "",
507
+ "displayOptions": {
508
+ "show": {
509
+ "resource": [
510
+ "Assets"
511
+ ],
512
+ "operation": [
513
+ "Get Latest Dividend"
514
+ ]
515
+ }
516
+ }
517
+ },
518
+ {
519
+ "displayName": "Symbol",
520
+ "name": "symbol",
521
+ "required": true,
522
+ "description": "The GM token symbol",
523
+ "default": "AAPLon",
524
+ "type": "string",
525
+ "displayOptions": {
526
+ "show": {
527
+ "resource": [
528
+ "Assets"
529
+ ],
530
+ "operation": [
531
+ "Get Latest Dividend"
532
+ ]
533
+ }
534
+ }
535
+ },
536
+ {
537
+ "displayName": "GET /v1/assets/all/addresses",
538
+ "name": "operation",
539
+ "type": "notice",
540
+ "typeOptions": {
541
+ "theme": "info"
542
+ },
543
+ "default": "",
544
+ "displayOptions": {
545
+ "show": {
546
+ "resource": [
547
+ "Assets"
548
+ ],
549
+ "operation": [
550
+ "Get All Asset Addresses"
551
+ ]
552
+ }
553
+ }
554
+ },
555
+ {
556
+ "displayName": "GET /v1/assets/{symbol}/addresses",
557
+ "name": "operation",
558
+ "type": "notice",
559
+ "typeOptions": {
560
+ "theme": "info"
561
+ },
562
+ "default": "",
563
+ "displayOptions": {
564
+ "show": {
565
+ "resource": [
566
+ "Assets"
567
+ ],
568
+ "operation": [
569
+ "Get Asset Addresses"
570
+ ]
571
+ }
572
+ }
573
+ },
574
+ {
575
+ "displayName": "Symbol",
576
+ "name": "symbol",
577
+ "required": true,
578
+ "description": "The GM token symbol",
579
+ "default": "AAPLon",
580
+ "type": "string",
581
+ "displayOptions": {
582
+ "show": {
583
+ "resource": [
584
+ "Assets"
585
+ ],
586
+ "operation": [
587
+ "Get Asset Addresses"
588
+ ]
589
+ }
590
+ }
591
+ },
592
+ {
593
+ "displayName": "GET /v1/assets/all/metadata",
594
+ "name": "operation",
595
+ "type": "notice",
596
+ "typeOptions": {
597
+ "theme": "info"
598
+ },
599
+ "default": "",
600
+ "displayOptions": {
601
+ "show": {
602
+ "resource": [
603
+ "Assets"
604
+ ],
605
+ "operation": [
606
+ "Get All Asset Metadata"
607
+ ]
608
+ }
609
+ }
610
+ },
611
+ {
612
+ "displayName": "GET /v1/assets/{symbol}/shares-multiplier",
613
+ "name": "operation",
614
+ "type": "notice",
615
+ "typeOptions": {
616
+ "theme": "info"
617
+ },
618
+ "default": "",
619
+ "displayOptions": {
620
+ "show": {
621
+ "resource": [
622
+ "Assets"
623
+ ],
624
+ "operation": [
625
+ "Get Shares Multiplier"
626
+ ]
627
+ }
628
+ }
629
+ },
630
+ {
631
+ "displayName": "Symbol",
632
+ "name": "symbol",
633
+ "required": true,
634
+ "description": "The GM token symbol",
635
+ "default": "AAPLon",
636
+ "type": "string",
637
+ "displayOptions": {
638
+ "show": {
639
+ "resource": [
640
+ "Assets"
641
+ ],
642
+ "operation": [
643
+ "Get Shares Multiplier"
644
+ ]
645
+ }
646
+ }
647
+ },
648
+ {
649
+ "displayName": "Range",
650
+ "name": "range",
651
+ "required": true,
652
+ "description": "The lookback range for historical data.",
653
+ "default": "1day",
654
+ "type": "options",
655
+ "options": [
656
+ {
657
+ "name": "1 Day",
658
+ "value": "1day"
659
+ },
660
+ {
661
+ "name": "1 Month",
662
+ "value": "1month"
663
+ },
664
+ {
665
+ "name": "3 Month",
666
+ "value": "3month"
667
+ },
668
+ {
669
+ "name": "6 Month",
670
+ "value": "6month"
671
+ },
672
+ {
673
+ "name": "1 Year",
674
+ "value": "1year"
675
+ },
676
+ {
677
+ "name": "All",
678
+ "value": "all"
679
+ }
680
+ ],
681
+ "routing": {
682
+ "send": {
683
+ "type": "query",
684
+ "property": "range",
685
+ "value": "={{ $value }}",
686
+ "propertyInDotNotation": false
687
+ }
688
+ },
689
+ "displayOptions": {
690
+ "show": {
691
+ "resource": [
692
+ "Assets"
693
+ ],
694
+ "operation": [
695
+ "Get Shares Multiplier"
696
+ ]
697
+ }
698
+ }
699
+ },
700
+ ];
701
+ //# sourceMappingURL=index.js.map