@missionsquad/mcp-defillama 1.1.0 → 1.2.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 +22 -9
- package/dist/clients/defillama.client.d.ts +15 -4
- package/dist/clients/defillama.client.js +1 -9
- package/dist/clients/defillama.client.js.map +1 -1
- package/dist/handlers/datetime.d.ts +18 -0
- package/dist/handlers/datetime.js +92 -0
- package/dist/handlers/datetime.js.map +1 -0
- package/dist/handlers/defillama.d.ts +6 -6
- package/dist/handlers/defillama.js +90 -60
- package/dist/handlers/defillama.js.map +1 -1
- package/dist/handlers/defillama.types.d.ts +47 -21
- package/dist/handlers/transform.d.ts +34 -0
- package/dist/handlers/transform.js +241 -0
- package/dist/handlers/transform.js.map +1 -0
- package/dist/handlers/utils.d.ts +8 -0
- package/dist/handlers/utils.js +16 -0
- package/dist/handlers/utils.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/tools.d.ts +188 -144
- package/dist/tools.js +178 -68
- package/dist/tools.js.map +1 -1
- package/package.json +5 -3
package/dist/tools.d.ts
CHANGED
|
@@ -4,20 +4,21 @@ export declare const tools: ({
|
|
|
4
4
|
inputSchema: {
|
|
5
5
|
type: string;
|
|
6
6
|
properties: {
|
|
7
|
+
full: {
|
|
8
|
+
type: string;
|
|
9
|
+
description: string;
|
|
10
|
+
};
|
|
11
|
+
limit: {
|
|
12
|
+
type: string;
|
|
13
|
+
description: string;
|
|
14
|
+
};
|
|
7
15
|
protocol?: undefined;
|
|
8
|
-
chain?: undefined;
|
|
9
16
|
coins?: undefined;
|
|
10
17
|
timestamp?: undefined;
|
|
11
18
|
searchWidth?: undefined;
|
|
12
|
-
start?: undefined;
|
|
13
|
-
end?: undefined;
|
|
14
|
-
span?: undefined;
|
|
15
|
-
period?: undefined;
|
|
16
19
|
lookForward?: undefined;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
asset?: undefined;
|
|
20
|
-
pool?: undefined;
|
|
20
|
+
period?: undefined;
|
|
21
|
+
chain?: undefined;
|
|
21
22
|
};
|
|
22
23
|
required: never[];
|
|
23
24
|
};
|
|
@@ -27,23 +28,28 @@ export declare const tools: ({
|
|
|
27
28
|
inputSchema: {
|
|
28
29
|
type: string;
|
|
29
30
|
properties: {
|
|
31
|
+
full: {
|
|
32
|
+
type: string;
|
|
33
|
+
description: string;
|
|
34
|
+
};
|
|
35
|
+
includeTokens: {
|
|
36
|
+
type: string;
|
|
37
|
+
description: string;
|
|
38
|
+
};
|
|
39
|
+
points: {
|
|
40
|
+
type: string;
|
|
41
|
+
description: string;
|
|
42
|
+
};
|
|
30
43
|
protocol: {
|
|
31
44
|
type: string;
|
|
32
45
|
description: string;
|
|
33
46
|
};
|
|
34
|
-
chain?: undefined;
|
|
35
47
|
coins?: undefined;
|
|
36
48
|
timestamp?: undefined;
|
|
37
49
|
searchWidth?: undefined;
|
|
38
|
-
start?: undefined;
|
|
39
|
-
end?: undefined;
|
|
40
|
-
span?: undefined;
|
|
41
|
-
period?: undefined;
|
|
42
50
|
lookForward?: undefined;
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
asset?: undefined;
|
|
46
|
-
pool?: undefined;
|
|
51
|
+
period?: undefined;
|
|
52
|
+
chain?: undefined;
|
|
47
53
|
};
|
|
48
54
|
required: string[];
|
|
49
55
|
};
|
|
@@ -53,6 +59,38 @@ export declare const tools: ({
|
|
|
53
59
|
inputSchema: {
|
|
54
60
|
type: string;
|
|
55
61
|
properties: {
|
|
62
|
+
full: {
|
|
63
|
+
type: string;
|
|
64
|
+
description: string;
|
|
65
|
+
};
|
|
66
|
+
points: {
|
|
67
|
+
type: string;
|
|
68
|
+
description: string;
|
|
69
|
+
};
|
|
70
|
+
protocol?: undefined;
|
|
71
|
+
coins?: undefined;
|
|
72
|
+
timestamp?: undefined;
|
|
73
|
+
searchWidth?: undefined;
|
|
74
|
+
lookForward?: undefined;
|
|
75
|
+
period?: undefined;
|
|
76
|
+
chain?: undefined;
|
|
77
|
+
};
|
|
78
|
+
required: never[];
|
|
79
|
+
};
|
|
80
|
+
} | {
|
|
81
|
+
name: string;
|
|
82
|
+
description: string;
|
|
83
|
+
inputSchema: {
|
|
84
|
+
type: string;
|
|
85
|
+
properties: {
|
|
86
|
+
full: {
|
|
87
|
+
type: string;
|
|
88
|
+
description: string;
|
|
89
|
+
};
|
|
90
|
+
points: {
|
|
91
|
+
type: string;
|
|
92
|
+
description: string;
|
|
93
|
+
};
|
|
56
94
|
chain: {
|
|
57
95
|
type: string;
|
|
58
96
|
description: string;
|
|
@@ -61,15 +99,27 @@ export declare const tools: ({
|
|
|
61
99
|
coins?: undefined;
|
|
62
100
|
timestamp?: undefined;
|
|
63
101
|
searchWidth?: undefined;
|
|
64
|
-
|
|
65
|
-
end?: undefined;
|
|
66
|
-
span?: undefined;
|
|
102
|
+
lookForward?: undefined;
|
|
67
103
|
period?: undefined;
|
|
104
|
+
};
|
|
105
|
+
required: string[];
|
|
106
|
+
};
|
|
107
|
+
} | {
|
|
108
|
+
name: string;
|
|
109
|
+
description: string;
|
|
110
|
+
inputSchema: {
|
|
111
|
+
type: string;
|
|
112
|
+
properties: {
|
|
113
|
+
protocol: {
|
|
114
|
+
type: string;
|
|
115
|
+
description: string;
|
|
116
|
+
};
|
|
117
|
+
coins?: undefined;
|
|
118
|
+
timestamp?: undefined;
|
|
119
|
+
searchWidth?: undefined;
|
|
68
120
|
lookForward?: undefined;
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
asset?: undefined;
|
|
72
|
-
pool?: undefined;
|
|
121
|
+
period?: undefined;
|
|
122
|
+
chain?: undefined;
|
|
73
123
|
};
|
|
74
124
|
required: string[];
|
|
75
125
|
};
|
|
@@ -87,18 +137,11 @@ export declare const tools: ({
|
|
|
87
137
|
};
|
|
88
138
|
};
|
|
89
139
|
protocol?: undefined;
|
|
90
|
-
chain?: undefined;
|
|
91
140
|
timestamp?: undefined;
|
|
92
141
|
searchWidth?: undefined;
|
|
93
|
-
start?: undefined;
|
|
94
|
-
end?: undefined;
|
|
95
|
-
span?: undefined;
|
|
96
|
-
period?: undefined;
|
|
97
142
|
lookForward?: undefined;
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
asset?: undefined;
|
|
101
|
-
pool?: undefined;
|
|
143
|
+
period?: undefined;
|
|
144
|
+
chain?: undefined;
|
|
102
145
|
};
|
|
103
146
|
required: string[];
|
|
104
147
|
};
|
|
@@ -120,17 +163,10 @@ export declare const tools: ({
|
|
|
120
163
|
description: string;
|
|
121
164
|
};
|
|
122
165
|
protocol?: undefined;
|
|
123
|
-
chain?: undefined;
|
|
124
166
|
searchWidth?: undefined;
|
|
125
|
-
start?: undefined;
|
|
126
|
-
end?: undefined;
|
|
127
|
-
span?: undefined;
|
|
128
|
-
period?: undefined;
|
|
129
167
|
lookForward?: undefined;
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
asset?: undefined;
|
|
133
|
-
pool?: undefined;
|
|
168
|
+
period?: undefined;
|
|
169
|
+
chain?: undefined;
|
|
134
170
|
};
|
|
135
171
|
required: string[];
|
|
136
172
|
};
|
|
@@ -155,17 +191,10 @@ export declare const tools: ({
|
|
|
155
191
|
description: string;
|
|
156
192
|
};
|
|
157
193
|
protocol?: undefined;
|
|
158
|
-
chain?: undefined;
|
|
159
194
|
timestamp?: undefined;
|
|
160
|
-
start?: undefined;
|
|
161
|
-
end?: undefined;
|
|
162
|
-
span?: undefined;
|
|
163
|
-
period?: undefined;
|
|
164
195
|
lookForward?: undefined;
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
asset?: undefined;
|
|
168
|
-
pool?: undefined;
|
|
196
|
+
period?: undefined;
|
|
197
|
+
chain?: undefined;
|
|
169
198
|
};
|
|
170
199
|
required: string[];
|
|
171
200
|
};
|
|
@@ -175,6 +204,14 @@ export declare const tools: ({
|
|
|
175
204
|
inputSchema: {
|
|
176
205
|
type: string;
|
|
177
206
|
properties: {
|
|
207
|
+
full: {
|
|
208
|
+
type: string;
|
|
209
|
+
description: string;
|
|
210
|
+
};
|
|
211
|
+
points: {
|
|
212
|
+
type: string;
|
|
213
|
+
description: string;
|
|
214
|
+
};
|
|
178
215
|
coins: {
|
|
179
216
|
type: string;
|
|
180
217
|
description: string;
|
|
@@ -203,13 +240,9 @@ export declare const tools: ({
|
|
|
203
240
|
description: string;
|
|
204
241
|
};
|
|
205
242
|
protocol?: undefined;
|
|
206
|
-
chain?: undefined;
|
|
207
243
|
timestamp?: undefined;
|
|
208
244
|
lookForward?: undefined;
|
|
209
|
-
|
|
210
|
-
stablecoin?: undefined;
|
|
211
|
-
asset?: undefined;
|
|
212
|
-
pool?: undefined;
|
|
245
|
+
chain?: undefined;
|
|
213
246
|
};
|
|
214
247
|
required: string[];
|
|
215
248
|
};
|
|
@@ -239,15 +272,8 @@ export declare const tools: ({
|
|
|
239
272
|
description: string;
|
|
240
273
|
};
|
|
241
274
|
protocol?: undefined;
|
|
242
|
-
chain?: undefined;
|
|
243
275
|
searchWidth?: undefined;
|
|
244
|
-
|
|
245
|
-
end?: undefined;
|
|
246
|
-
span?: undefined;
|
|
247
|
-
includePrices?: undefined;
|
|
248
|
-
stablecoin?: undefined;
|
|
249
|
-
asset?: undefined;
|
|
250
|
-
pool?: undefined;
|
|
276
|
+
chain?: undefined;
|
|
251
277
|
};
|
|
252
278
|
required: string[];
|
|
253
279
|
};
|
|
@@ -268,15 +294,8 @@ export declare const tools: ({
|
|
|
268
294
|
protocol?: undefined;
|
|
269
295
|
coins?: undefined;
|
|
270
296
|
searchWidth?: undefined;
|
|
271
|
-
start?: undefined;
|
|
272
|
-
end?: undefined;
|
|
273
|
-
span?: undefined;
|
|
274
|
-
period?: undefined;
|
|
275
297
|
lookForward?: undefined;
|
|
276
|
-
|
|
277
|
-
stablecoin?: undefined;
|
|
278
|
-
asset?: undefined;
|
|
279
|
-
pool?: undefined;
|
|
298
|
+
period?: undefined;
|
|
280
299
|
};
|
|
281
300
|
required: string[];
|
|
282
301
|
};
|
|
@@ -286,23 +305,25 @@ export declare const tools: ({
|
|
|
286
305
|
inputSchema: {
|
|
287
306
|
type: string;
|
|
288
307
|
properties: {
|
|
308
|
+
full: {
|
|
309
|
+
type: string;
|
|
310
|
+
description: string;
|
|
311
|
+
};
|
|
312
|
+
limit: {
|
|
313
|
+
type: string;
|
|
314
|
+
description: string;
|
|
315
|
+
};
|
|
289
316
|
includePrices: {
|
|
290
317
|
type: string;
|
|
291
318
|
description: string;
|
|
292
319
|
};
|
|
293
320
|
protocol?: undefined;
|
|
294
|
-
chain?: undefined;
|
|
295
321
|
coins?: undefined;
|
|
296
322
|
timestamp?: undefined;
|
|
297
323
|
searchWidth?: undefined;
|
|
298
|
-
start?: undefined;
|
|
299
|
-
end?: undefined;
|
|
300
|
-
span?: undefined;
|
|
301
|
-
period?: undefined;
|
|
302
324
|
lookForward?: undefined;
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
pool?: undefined;
|
|
325
|
+
period?: undefined;
|
|
326
|
+
chain?: undefined;
|
|
306
327
|
};
|
|
307
328
|
required: never[];
|
|
308
329
|
};
|
|
@@ -312,23 +333,25 @@ export declare const tools: ({
|
|
|
312
333
|
inputSchema: {
|
|
313
334
|
type: string;
|
|
314
335
|
properties: {
|
|
336
|
+
full: {
|
|
337
|
+
type: string;
|
|
338
|
+
description: string;
|
|
339
|
+
};
|
|
340
|
+
points: {
|
|
341
|
+
type: string;
|
|
342
|
+
description: string;
|
|
343
|
+
};
|
|
315
344
|
stablecoin: {
|
|
316
345
|
type: string;
|
|
317
346
|
description: string;
|
|
318
347
|
};
|
|
319
348
|
protocol?: undefined;
|
|
320
|
-
chain?: undefined;
|
|
321
349
|
coins?: undefined;
|
|
322
350
|
timestamp?: undefined;
|
|
323
351
|
searchWidth?: undefined;
|
|
324
|
-
start?: undefined;
|
|
325
|
-
end?: undefined;
|
|
326
|
-
span?: undefined;
|
|
327
|
-
period?: undefined;
|
|
328
352
|
lookForward?: undefined;
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
pool?: undefined;
|
|
353
|
+
period?: undefined;
|
|
354
|
+
chain?: undefined;
|
|
332
355
|
};
|
|
333
356
|
required: never[];
|
|
334
357
|
};
|
|
@@ -338,6 +361,14 @@ export declare const tools: ({
|
|
|
338
361
|
inputSchema: {
|
|
339
362
|
type: string;
|
|
340
363
|
properties: {
|
|
364
|
+
full: {
|
|
365
|
+
type: string;
|
|
366
|
+
description: string;
|
|
367
|
+
};
|
|
368
|
+
points: {
|
|
369
|
+
type: string;
|
|
370
|
+
description: string;
|
|
371
|
+
};
|
|
341
372
|
chain: {
|
|
342
373
|
type: string;
|
|
343
374
|
description: string;
|
|
@@ -350,14 +381,8 @@ export declare const tools: ({
|
|
|
350
381
|
coins?: undefined;
|
|
351
382
|
timestamp?: undefined;
|
|
352
383
|
searchWidth?: undefined;
|
|
353
|
-
start?: undefined;
|
|
354
|
-
end?: undefined;
|
|
355
|
-
span?: undefined;
|
|
356
|
-
period?: undefined;
|
|
357
384
|
lookForward?: undefined;
|
|
358
|
-
|
|
359
|
-
asset?: undefined;
|
|
360
|
-
pool?: undefined;
|
|
385
|
+
period?: undefined;
|
|
361
386
|
};
|
|
362
387
|
required: string[];
|
|
363
388
|
};
|
|
@@ -367,23 +392,25 @@ export declare const tools: ({
|
|
|
367
392
|
inputSchema: {
|
|
368
393
|
type: string;
|
|
369
394
|
properties: {
|
|
395
|
+
full: {
|
|
396
|
+
type: string;
|
|
397
|
+
description: string;
|
|
398
|
+
};
|
|
399
|
+
includeTokens: {
|
|
400
|
+
type: string;
|
|
401
|
+
description: string;
|
|
402
|
+
};
|
|
370
403
|
asset: {
|
|
371
404
|
type: string;
|
|
372
405
|
description: string;
|
|
373
406
|
};
|
|
374
407
|
protocol?: undefined;
|
|
375
|
-
chain?: undefined;
|
|
376
408
|
coins?: undefined;
|
|
377
409
|
timestamp?: undefined;
|
|
378
410
|
searchWidth?: undefined;
|
|
379
|
-
start?: undefined;
|
|
380
|
-
end?: undefined;
|
|
381
|
-
span?: undefined;
|
|
382
|
-
period?: undefined;
|
|
383
411
|
lookForward?: undefined;
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
pool?: undefined;
|
|
412
|
+
period?: undefined;
|
|
413
|
+
chain?: undefined;
|
|
387
414
|
};
|
|
388
415
|
required: string[];
|
|
389
416
|
};
|
|
@@ -393,23 +420,25 @@ export declare const tools: ({
|
|
|
393
420
|
inputSchema: {
|
|
394
421
|
type: string;
|
|
395
422
|
properties: {
|
|
423
|
+
full: {
|
|
424
|
+
type: string;
|
|
425
|
+
description: string;
|
|
426
|
+
};
|
|
427
|
+
points: {
|
|
428
|
+
type: string;
|
|
429
|
+
description: string;
|
|
430
|
+
};
|
|
396
431
|
pool: {
|
|
397
432
|
type: string;
|
|
398
433
|
description: string;
|
|
399
434
|
};
|
|
400
435
|
protocol?: undefined;
|
|
401
|
-
chain?: undefined;
|
|
402
436
|
coins?: undefined;
|
|
403
437
|
timestamp?: undefined;
|
|
404
438
|
searchWidth?: undefined;
|
|
405
|
-
start?: undefined;
|
|
406
|
-
end?: undefined;
|
|
407
|
-
span?: undefined;
|
|
408
|
-
period?: undefined;
|
|
409
439
|
lookForward?: undefined;
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
asset?: undefined;
|
|
440
|
+
period?: undefined;
|
|
441
|
+
chain?: undefined;
|
|
413
442
|
};
|
|
414
443
|
required: string[];
|
|
415
444
|
};
|
|
@@ -419,11 +448,15 @@ export declare const tools: ({
|
|
|
419
448
|
inputSchema: {
|
|
420
449
|
type: string;
|
|
421
450
|
properties: {
|
|
422
|
-
|
|
451
|
+
full: {
|
|
423
452
|
type: string;
|
|
424
453
|
description: string;
|
|
425
454
|
};
|
|
426
|
-
|
|
455
|
+
limit: {
|
|
456
|
+
type: string;
|
|
457
|
+
description: string;
|
|
458
|
+
};
|
|
459
|
+
points: {
|
|
427
460
|
type: string;
|
|
428
461
|
description: string;
|
|
429
462
|
};
|
|
@@ -431,20 +464,21 @@ export declare const tools: ({
|
|
|
431
464
|
type: string;
|
|
432
465
|
description: string;
|
|
433
466
|
};
|
|
467
|
+
excludeTotalDataChart: {
|
|
468
|
+
type: string;
|
|
469
|
+
description: string;
|
|
470
|
+
};
|
|
471
|
+
excludeTotalDataChartBreakdown: {
|
|
472
|
+
type: string;
|
|
473
|
+
description: string;
|
|
474
|
+
};
|
|
434
475
|
protocol?: undefined;
|
|
435
|
-
chain?: undefined;
|
|
436
476
|
coins?: undefined;
|
|
437
477
|
timestamp?: undefined;
|
|
438
478
|
searchWidth?: undefined;
|
|
439
|
-
start?: undefined;
|
|
440
|
-
end?: undefined;
|
|
441
|
-
span?: undefined;
|
|
442
|
-
period?: undefined;
|
|
443
479
|
lookForward?: undefined;
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
asset?: undefined;
|
|
447
|
-
pool?: undefined;
|
|
480
|
+
period?: undefined;
|
|
481
|
+
chain?: undefined;
|
|
448
482
|
};
|
|
449
483
|
required: never[];
|
|
450
484
|
};
|
|
@@ -454,11 +488,15 @@ export declare const tools: ({
|
|
|
454
488
|
inputSchema: {
|
|
455
489
|
type: string;
|
|
456
490
|
properties: {
|
|
457
|
-
|
|
491
|
+
full: {
|
|
458
492
|
type: string;
|
|
459
493
|
description: string;
|
|
460
494
|
};
|
|
461
|
-
|
|
495
|
+
limit: {
|
|
496
|
+
type: string;
|
|
497
|
+
description: string;
|
|
498
|
+
};
|
|
499
|
+
points: {
|
|
462
500
|
type: string;
|
|
463
501
|
description: string;
|
|
464
502
|
};
|
|
@@ -466,6 +504,14 @@ export declare const tools: ({
|
|
|
466
504
|
type: string;
|
|
467
505
|
description: string;
|
|
468
506
|
};
|
|
507
|
+
excludeTotalDataChart: {
|
|
508
|
+
type: string;
|
|
509
|
+
description: string;
|
|
510
|
+
};
|
|
511
|
+
excludeTotalDataChartBreakdown: {
|
|
512
|
+
type: string;
|
|
513
|
+
description: string;
|
|
514
|
+
};
|
|
469
515
|
chain: {
|
|
470
516
|
type: string;
|
|
471
517
|
description: string;
|
|
@@ -474,15 +520,8 @@ export declare const tools: ({
|
|
|
474
520
|
coins?: undefined;
|
|
475
521
|
timestamp?: undefined;
|
|
476
522
|
searchWidth?: undefined;
|
|
477
|
-
start?: undefined;
|
|
478
|
-
end?: undefined;
|
|
479
|
-
span?: undefined;
|
|
480
|
-
period?: undefined;
|
|
481
523
|
lookForward?: undefined;
|
|
482
|
-
|
|
483
|
-
stablecoin?: undefined;
|
|
484
|
-
asset?: undefined;
|
|
485
|
-
pool?: undefined;
|
|
524
|
+
period?: undefined;
|
|
486
525
|
};
|
|
487
526
|
required: string[];
|
|
488
527
|
};
|
|
@@ -492,11 +531,15 @@ export declare const tools: ({
|
|
|
492
531
|
inputSchema: {
|
|
493
532
|
type: string;
|
|
494
533
|
properties: {
|
|
495
|
-
|
|
534
|
+
full: {
|
|
496
535
|
type: string;
|
|
497
536
|
description: string;
|
|
498
537
|
};
|
|
499
|
-
|
|
538
|
+
limit: {
|
|
539
|
+
type: string;
|
|
540
|
+
description: string;
|
|
541
|
+
};
|
|
542
|
+
points: {
|
|
500
543
|
type: string;
|
|
501
544
|
description: string;
|
|
502
545
|
};
|
|
@@ -504,23 +547,24 @@ export declare const tools: ({
|
|
|
504
547
|
type: string;
|
|
505
548
|
description: string;
|
|
506
549
|
};
|
|
550
|
+
excludeTotalDataChart: {
|
|
551
|
+
type: string;
|
|
552
|
+
description: string;
|
|
553
|
+
};
|
|
554
|
+
excludeTotalDataChartBreakdown: {
|
|
555
|
+
type: string;
|
|
556
|
+
description: string;
|
|
557
|
+
};
|
|
507
558
|
protocol: {
|
|
508
559
|
type: string;
|
|
509
560
|
description: string;
|
|
510
561
|
};
|
|
511
|
-
chain?: undefined;
|
|
512
562
|
coins?: undefined;
|
|
513
563
|
timestamp?: undefined;
|
|
514
564
|
searchWidth?: undefined;
|
|
515
|
-
start?: undefined;
|
|
516
|
-
end?: undefined;
|
|
517
|
-
span?: undefined;
|
|
518
|
-
period?: undefined;
|
|
519
565
|
lookForward?: undefined;
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
asset?: undefined;
|
|
523
|
-
pool?: undefined;
|
|
566
|
+
period?: undefined;
|
|
567
|
+
chain?: undefined;
|
|
524
568
|
};
|
|
525
569
|
required: string[];
|
|
526
570
|
};
|