solana-agent-kit-plugin-madeonsol 1.3.0 → 1.4.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/dist/index.d.ts DELETED
@@ -1,660 +0,0 @@
1
- import { kolFeedAction } from "./actions/kolFeed.js";
2
- import { kolCoordinationAction } from "./actions/kolCoordination.js";
3
- import { kolLeaderboardAction } from "./actions/kolLeaderboard.js";
4
- import { deployerAlertsAction } from "./actions/deployerAlerts.js";
5
- import { kolPnlAction } from "./actions/kolPnl.js";
6
- import { kolTrendingTokensAction } from "./actions/kolTrendingTokens.js";
7
- import { walletTrackerWatchlistAction, walletTrackerAddAction, walletTrackerRemoveAction, walletTrackerTradesAction, walletTrackerSummaryAction } from "./actions/walletTracker.js";
8
- import { kolTokenEntryOrderAction } from "./actions/kolTokenEntryOrder.js";
9
- import { kolCompareAction } from "./actions/kolCompare.js";
10
- import { kolAlertsRecentAction } from "./actions/kolAlertsRecent.js";
11
- import { kolFirstTouchesAction } from "./actions/kolFirstTouches.js";
12
- import { kolFeed, kolCoordination, kolLeaderboard, deployerAlerts, kolPnl, kolTrendingTokens, kolTokenEntryOrder, kolCompare, kolAlertsRecent, createWebhook, listWebhooks, deleteWebhook, testWebhook, getStreamToken, walletTrackerWatchlist, walletTrackerAdd, walletTrackerRemove, walletTrackerTrades, walletTrackerSummary, alphaLeaderboard, alphaWallet, alphaLinked, tokenCapTable, tokenBuyerQuality, copyTradeList, copyTradeCreate, copyTradeGet, copyTradeUpdate, copyTradeDelete, copyTradeSignals, coordinationAlertsList, coordinationAlertsCreate, coordinationAlertsGet, coordinationAlertsUpdate, coordinationAlertsDelete, kolFirstTouches, firstTouchSubscriptionsList, firstTouchSubscriptionsCreate, firstTouchSubscriptionsGet, firstTouchSubscriptionsUpdate, firstTouchSubscriptionsDelete } from "./tools/index.js";
13
- declare const MadeOnSolPlugin: {
14
- name: string;
15
- methods: {
16
- kolFeed: typeof kolFeed;
17
- kolCoordination: typeof kolCoordination;
18
- kolLeaderboard: typeof kolLeaderboard;
19
- deployerAlerts: typeof deployerAlerts;
20
- kolPnl: typeof kolPnl;
21
- kolTrendingTokens: typeof kolTrendingTokens;
22
- kolTokenEntryOrder: typeof kolTokenEntryOrder;
23
- kolCompare: typeof kolCompare;
24
- kolAlertsRecent: typeof kolAlertsRecent;
25
- createWebhook: typeof createWebhook;
26
- listWebhooks: typeof listWebhooks;
27
- deleteWebhook: typeof deleteWebhook;
28
- testWebhook: typeof testWebhook;
29
- getStreamToken: typeof getStreamToken;
30
- walletTrackerWatchlist: typeof walletTrackerWatchlist;
31
- walletTrackerAdd: typeof walletTrackerAdd;
32
- walletTrackerRemove: typeof walletTrackerRemove;
33
- walletTrackerTrades: typeof walletTrackerTrades;
34
- walletTrackerSummary: typeof walletTrackerSummary;
35
- alphaLeaderboard: typeof alphaLeaderboard;
36
- alphaWallet: typeof alphaWallet;
37
- alphaLinked: typeof alphaLinked;
38
- tokenCapTable: typeof tokenCapTable;
39
- tokenBuyerQuality: typeof tokenBuyerQuality;
40
- copyTradeList: typeof copyTradeList;
41
- copyTradeCreate: typeof copyTradeCreate;
42
- copyTradeGet: typeof copyTradeGet;
43
- copyTradeUpdate: typeof copyTradeUpdate;
44
- copyTradeDelete: typeof copyTradeDelete;
45
- copyTradeSignals: typeof copyTradeSignals;
46
- coordinationAlertsList: typeof coordinationAlertsList;
47
- coordinationAlertsCreate: typeof coordinationAlertsCreate;
48
- coordinationAlertsGet: typeof coordinationAlertsGet;
49
- coordinationAlertsUpdate: typeof coordinationAlertsUpdate;
50
- coordinationAlertsDelete: typeof coordinationAlertsDelete;
51
- kolFirstTouches: typeof kolFirstTouches;
52
- firstTouchSubscriptionsList: typeof firstTouchSubscriptionsList;
53
- firstTouchSubscriptionsCreate: typeof firstTouchSubscriptionsCreate;
54
- firstTouchSubscriptionsGet: typeof firstTouchSubscriptionsGet;
55
- firstTouchSubscriptionsUpdate: typeof firstTouchSubscriptionsUpdate;
56
- firstTouchSubscriptionsDelete: typeof firstTouchSubscriptionsDelete;
57
- };
58
- actions: ({
59
- name: string;
60
- similes: string[];
61
- description: string;
62
- examples: {
63
- input: {
64
- limit: number;
65
- action: string;
66
- };
67
- output: {
68
- status: string;
69
- };
70
- explanation: string;
71
- }[][];
72
- schema: import("zod").ZodObject<{
73
- limit: import("zod").ZodDefault<import("zod").ZodNumber>;
74
- action: import("zod").ZodOptional<import("zod").ZodEnum<["buy", "sell"]>>;
75
- kol: import("zod").ZodOptional<import("zod").ZodString>;
76
- }, "strip", import("zod").ZodTypeAny, {
77
- limit: number;
78
- action?: "buy" | "sell" | undefined;
79
- kol?: string | undefined;
80
- }, {
81
- limit?: number | undefined;
82
- action?: "buy" | "sell" | undefined;
83
- kol?: string | undefined;
84
- }>;
85
- handler: (agent: unknown, input: {
86
- limit?: number;
87
- action?: string;
88
- kol?: string;
89
- }) => Promise<{
90
- status: string;
91
- result: any;
92
- message?: undefined;
93
- } | {
94
- status: string;
95
- message: string;
96
- result?: undefined;
97
- }>;
98
- } | {
99
- name: string;
100
- similes: string[];
101
- description: string;
102
- examples: {
103
- input: {
104
- period: string;
105
- min_kols: number;
106
- };
107
- output: {
108
- status: string;
109
- };
110
- explanation: string;
111
- }[][];
112
- schema: import("zod").ZodObject<{
113
- period: import("zod").ZodDefault<import("zod").ZodEnum<["1h", "6h", "24h", "7d"]>>;
114
- min_kols: import("zod").ZodDefault<import("zod").ZodNumber>;
115
- limit: import("zod").ZodDefault<import("zod").ZodNumber>;
116
- }, "strip", import("zod").ZodTypeAny, {
117
- period: "24h" | "1h" | "6h" | "7d";
118
- min_kols: number;
119
- limit: number;
120
- }, {
121
- period?: "24h" | "1h" | "6h" | "7d" | undefined;
122
- min_kols?: number | undefined;
123
- limit?: number | undefined;
124
- }>;
125
- handler: (agent: unknown, input: {
126
- period?: string;
127
- min_kols?: number;
128
- limit?: number;
129
- }) => Promise<{
130
- status: string;
131
- result: any;
132
- message?: undefined;
133
- } | {
134
- status: string;
135
- message: string;
136
- result?: undefined;
137
- }>;
138
- } | {
139
- name: string;
140
- similes: string[];
141
- description: string;
142
- examples: {
143
- input: {
144
- period: string;
145
- limit: number;
146
- };
147
- output: {
148
- status: string;
149
- };
150
- explanation: string;
151
- }[][];
152
- schema: import("zod").ZodObject<{
153
- period: import("zod").ZodDefault<import("zod").ZodEnum<["today", "7d", "30d"]>>;
154
- limit: import("zod").ZodDefault<import("zod").ZodNumber>;
155
- }, "strip", import("zod").ZodTypeAny, {
156
- period: "7d" | "today" | "30d";
157
- limit: number;
158
- }, {
159
- period?: "7d" | "today" | "30d" | undefined;
160
- limit?: number | undefined;
161
- }>;
162
- handler: (agent: unknown, input: {
163
- period?: string;
164
- limit?: number;
165
- }) => Promise<{
166
- status: string;
167
- result: any;
168
- message?: undefined;
169
- } | {
170
- status: string;
171
- message: string;
172
- result?: undefined;
173
- }>;
174
- } | {
175
- name: string;
176
- similes: string[];
177
- description: string;
178
- examples: {
179
- input: {
180
- limit: number;
181
- };
182
- output: {
183
- status: string;
184
- };
185
- explanation: string;
186
- }[][];
187
- schema: import("zod").ZodObject<{
188
- limit: import("zod").ZodDefault<import("zod").ZodNumber>;
189
- offset: import("zod").ZodDefault<import("zod").ZodNumber>;
190
- since: import("zod").ZodOptional<import("zod").ZodString>;
191
- tier: import("zod").ZodOptional<import("zod").ZodEnum<["elite", "good", "moderate", "rising", "cold"]>>;
192
- }, "strip", import("zod").ZodTypeAny, {
193
- limit: number;
194
- offset: number;
195
- since?: string | undefined;
196
- tier?: "elite" | "good" | "moderate" | "rising" | "cold" | undefined;
197
- }, {
198
- limit?: number | undefined;
199
- since?: string | undefined;
200
- offset?: number | undefined;
201
- tier?: "elite" | "good" | "moderate" | "rising" | "cold" | undefined;
202
- }>;
203
- handler: (agent: unknown, input: {
204
- limit?: number;
205
- offset?: number;
206
- since?: string;
207
- tier?: "elite" | "good" | "moderate" | "rising" | "cold";
208
- }) => Promise<{
209
- status: string;
210
- result: any;
211
- message?: undefined;
212
- } | {
213
- status: string;
214
- message: string;
215
- result?: undefined;
216
- }>;
217
- } | {
218
- name: string;
219
- similes: string[];
220
- description: string;
221
- examples: {
222
- input: {
223
- wallet: string;
224
- period: string;
225
- };
226
- output: {
227
- status: string;
228
- };
229
- explanation: string;
230
- }[][];
231
- schema: import("zod").ZodObject<{
232
- wallet: import("zod").ZodString;
233
- period: import("zod").ZodDefault<import("zod").ZodEnum<["7d", "30d", "90d", "180d"]>>;
234
- }, "strip", import("zod").ZodTypeAny, {
235
- period: "7d" | "30d" | "90d" | "180d";
236
- wallet: string;
237
- }, {
238
- wallet: string;
239
- period?: "7d" | "30d" | "90d" | "180d" | undefined;
240
- }>;
241
- handler: (agent: unknown, input: {
242
- wallet: string;
243
- period?: string;
244
- }) => Promise<{
245
- status: string;
246
- result: any;
247
- message?: undefined;
248
- } | {
249
- status: string;
250
- message: string;
251
- result?: undefined;
252
- }>;
253
- } | {
254
- name: string;
255
- similes: string[];
256
- description: string;
257
- examples: {
258
- input: {
259
- period: string;
260
- min_kols: number;
261
- };
262
- output: {
263
- status: string;
264
- };
265
- explanation: string;
266
- }[][];
267
- schema: import("zod").ZodObject<{
268
- period: import("zod").ZodDefault<import("zod").ZodEnum<["5m", "15m", "30m", "1h", "2h", "4h", "12h"]>>;
269
- min_kols: import("zod").ZodDefault<import("zod").ZodNumber>;
270
- limit: import("zod").ZodDefault<import("zod").ZodNumber>;
271
- }, "strip", import("zod").ZodTypeAny, {
272
- period: "1h" | "5m" | "15m" | "30m" | "2h" | "4h" | "12h";
273
- min_kols: number;
274
- limit: number;
275
- }, {
276
- period?: "1h" | "5m" | "15m" | "30m" | "2h" | "4h" | "12h" | undefined;
277
- min_kols?: number | undefined;
278
- limit?: number | undefined;
279
- }>;
280
- handler: (agent: unknown, input: {
281
- period?: string;
282
- min_kols?: number;
283
- limit?: number;
284
- }) => Promise<{
285
- status: string;
286
- result: any;
287
- message?: undefined;
288
- } | {
289
- status: string;
290
- message: string;
291
- result?: undefined;
292
- }>;
293
- } | {
294
- name: string;
295
- similes: string[];
296
- description: string;
297
- examples: {
298
- input: {};
299
- output: {
300
- status: string;
301
- };
302
- explanation: string;
303
- }[][];
304
- schema: import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>;
305
- handler: (agent: unknown) => Promise<{
306
- status: string;
307
- result: any;
308
- message?: undefined;
309
- } | {
310
- status: string;
311
- message: string;
312
- result?: undefined;
313
- }>;
314
- } | {
315
- name: string;
316
- similes: string[];
317
- description: string;
318
- examples: {
319
- input: {
320
- wallet_address: string;
321
- label: string;
322
- };
323
- output: {
324
- status: string;
325
- };
326
- explanation: string;
327
- }[][];
328
- schema: import("zod").ZodObject<{
329
- wallet_address: import("zod").ZodString;
330
- label: import("zod").ZodOptional<import("zod").ZodString>;
331
- }, "strip", import("zod").ZodTypeAny, {
332
- wallet_address: string;
333
- label?: string | undefined;
334
- }, {
335
- wallet_address: string;
336
- label?: string | undefined;
337
- }>;
338
- handler: (agent: unknown, input: {
339
- wallet_address: string;
340
- label?: string;
341
- }) => Promise<{
342
- status: string;
343
- result: any;
344
- message?: undefined;
345
- } | {
346
- status: string;
347
- message: string;
348
- result?: undefined;
349
- }>;
350
- } | {
351
- name: string;
352
- similes: string[];
353
- description: string;
354
- examples: {
355
- input: {
356
- wallet_address: string;
357
- };
358
- output: {
359
- status: string;
360
- };
361
- explanation: string;
362
- }[][];
363
- schema: import("zod").ZodObject<{
364
- wallet_address: import("zod").ZodString;
365
- }, "strip", import("zod").ZodTypeAny, {
366
- wallet_address: string;
367
- }, {
368
- wallet_address: string;
369
- }>;
370
- handler: (agent: unknown, input: {
371
- wallet_address: string;
372
- }) => Promise<{
373
- status: string;
374
- result: any;
375
- message?: undefined;
376
- } | {
377
- status: string;
378
- message: string;
379
- result?: undefined;
380
- }>;
381
- } | {
382
- name: string;
383
- similes: string[];
384
- description: string;
385
- examples: {
386
- input: {
387
- limit: number;
388
- };
389
- output: {
390
- status: string;
391
- };
392
- explanation: string;
393
- }[][];
394
- schema: import("zod").ZodObject<{
395
- wallet: import("zod").ZodOptional<import("zod").ZodString>;
396
- action: import("zod").ZodOptional<import("zod").ZodEnum<["buy", "sell", "transfer_in", "transfer_out"]>>;
397
- event_type: import("zod").ZodOptional<import("zod").ZodEnum<["swap", "transfer"]>>;
398
- limit: import("zod").ZodDefault<import("zod").ZodNumber>;
399
- before: import("zod").ZodOptional<import("zod").ZodNumber>;
400
- }, "strip", import("zod").ZodTypeAny, {
401
- limit: number;
402
- wallet?: string | undefined;
403
- action?: "buy" | "sell" | "transfer_in" | "transfer_out" | undefined;
404
- event_type?: "swap" | "transfer" | undefined;
405
- before?: number | undefined;
406
- }, {
407
- limit?: number | undefined;
408
- wallet?: string | undefined;
409
- action?: "buy" | "sell" | "transfer_in" | "transfer_out" | undefined;
410
- event_type?: "swap" | "transfer" | undefined;
411
- before?: number | undefined;
412
- }>;
413
- handler: (agent: unknown, input: {
414
- wallet?: string;
415
- action?: string;
416
- event_type?: string;
417
- limit?: number;
418
- before?: number;
419
- }) => Promise<{
420
- status: string;
421
- result: any;
422
- message?: undefined;
423
- } | {
424
- status: string;
425
- message: string;
426
- result?: undefined;
427
- }>;
428
- } | {
429
- name: string;
430
- similes: string[];
431
- description: string;
432
- examples: {
433
- input: {
434
- period: string;
435
- };
436
- output: {
437
- status: string;
438
- };
439
- explanation: string;
440
- }[][];
441
- schema: import("zod").ZodObject<{
442
- period: import("zod").ZodDefault<import("zod").ZodEnum<["24h", "7d", "30d"]>>;
443
- wallet: import("zod").ZodOptional<import("zod").ZodString>;
444
- }, "strip", import("zod").ZodTypeAny, {
445
- period: "24h" | "7d" | "30d";
446
- wallet?: string | undefined;
447
- }, {
448
- period?: "24h" | "7d" | "30d" | undefined;
449
- wallet?: string | undefined;
450
- }>;
451
- handler: (agent: unknown, input: {
452
- period?: string;
453
- wallet?: string;
454
- }) => Promise<{
455
- status: string;
456
- result: any;
457
- message?: undefined;
458
- } | {
459
- status: string;
460
- message: string;
461
- result?: undefined;
462
- }>;
463
- } | {
464
- name: string;
465
- similes: string[];
466
- description: string;
467
- examples: {
468
- input: {
469
- mint: string;
470
- limit: number;
471
- };
472
- output: {
473
- status: string;
474
- };
475
- explanation: string;
476
- }[][];
477
- schema: import("zod").ZodObject<{
478
- mint: import("zod").ZodString;
479
- limit: import("zod").ZodDefault<import("zod").ZodNumber>;
480
- }, "strip", import("zod").ZodTypeAny, {
481
- limit: number;
482
- mint: string;
483
- }, {
484
- mint: string;
485
- limit?: number | undefined;
486
- }>;
487
- handler: (agent: unknown, input: {
488
- mint: string;
489
- limit?: number;
490
- }) => Promise<{
491
- status: string;
492
- result: any;
493
- message?: undefined;
494
- } | {
495
- status: string;
496
- message: string;
497
- result?: undefined;
498
- }>;
499
- } | {
500
- name: string;
501
- similes: string[];
502
- description: string;
503
- examples: {
504
- input: {
505
- wallets: string[];
506
- };
507
- output: {
508
- status: string;
509
- };
510
- explanation: string;
511
- }[][];
512
- schema: import("zod").ZodObject<{
513
- wallets: import("zod").ZodArray<import("zod").ZodString, "many">;
514
- }, "strip", import("zod").ZodTypeAny, {
515
- wallets: string[];
516
- }, {
517
- wallets: string[];
518
- }>;
519
- handler: (agent: unknown, input: {
520
- wallets: string[];
521
- }) => Promise<{
522
- status: string;
523
- result: any;
524
- message?: undefined;
525
- } | {
526
- status: string;
527
- message: string;
528
- result?: undefined;
529
- }>;
530
- } | {
531
- name: string;
532
- similes: string[];
533
- description: string;
534
- examples: {
535
- input: {
536
- window: string;
537
- limit: number;
538
- };
539
- output: {
540
- status: string;
541
- };
542
- explanation: string;
543
- }[][];
544
- schema: import("zod").ZodObject<{
545
- window: import("zod").ZodDefault<import("zod").ZodEnum<["5m", "15m", "1h", "6h", "24h"]>>;
546
- types: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["consensus_cluster", "fresh_token_kol_buy", "heating_up"]>, "many">>;
547
- min_severity: import("zod").ZodOptional<import("zod").ZodEnum<["low", "medium", "high"]>>;
548
- limit: import("zod").ZodDefault<import("zod").ZodNumber>;
549
- }, "strip", import("zod").ZodTypeAny, {
550
- limit: number;
551
- window: "24h" | "1h" | "6h" | "5m" | "15m";
552
- types?: ("consensus_cluster" | "fresh_token_kol_buy" | "heating_up")[] | undefined;
553
- min_severity?: "high" | "medium" | "low" | undefined;
554
- }, {
555
- limit?: number | undefined;
556
- types?: ("consensus_cluster" | "fresh_token_kol_buy" | "heating_up")[] | undefined;
557
- window?: "24h" | "1h" | "6h" | "5m" | "15m" | undefined;
558
- min_severity?: "high" | "medium" | "low" | undefined;
559
- }>;
560
- handler: (agent: unknown, input: {
561
- window?: string;
562
- types?: string[];
563
- min_severity?: string;
564
- limit?: number;
565
- }) => Promise<{
566
- status: string;
567
- result: any;
568
- message?: undefined;
569
- } | {
570
- status: string;
571
- message: string;
572
- result?: undefined;
573
- }>;
574
- } | {
575
- name: string;
576
- similes: string[];
577
- description: string;
578
- examples: {
579
- input: {
580
- preset: string;
581
- limit: number;
582
- };
583
- output: {
584
- status: string;
585
- };
586
- explanation: string;
587
- }[][];
588
- schema: import("zod").ZodObject<{
589
- limit: import("zod").ZodDefault<import("zod").ZodNumber>;
590
- since: import("zod").ZodOptional<import("zod").ZodString>;
591
- before: import("zod").ZodOptional<import("zod").ZodString>;
592
- kol: import("zod").ZodOptional<import("zod").ZodString>;
593
- min_kol_winrate_7d: import("zod").ZodOptional<import("zod").ZodNumber>;
594
- min_scout_tier: import("zod").ZodOptional<import("zod").ZodEnum<["S", "A", "B", "C"]>>;
595
- min_n_touches: import("zod").ZodOptional<import("zod").ZodNumber>;
596
- strategy: import("zod").ZodOptional<import("zod").ZodEnum<["scalper", "day_trader", "swing_trader", "hodler", "mixed"]>>;
597
- token_age_max_min: import("zod").ZodOptional<import("zod").ZodNumber>;
598
- min_first_buy_sol: import("zod").ZodOptional<import("zod").ZodNumber>;
599
- mint_suffix: import("zod").ZodOptional<import("zod").ZodString>;
600
- preset: import("zod").ZodOptional<import("zod").ZodEnum<["scout", "fresh_launch"]>>;
601
- include: import("zod").ZodOptional<import("zod").ZodString>;
602
- }, "strip", import("zod").ZodTypeAny, {
603
- limit: number;
604
- before?: string | undefined;
605
- since?: string | undefined;
606
- kol?: string | undefined;
607
- min_kol_winrate_7d?: number | undefined;
608
- min_scout_tier?: "S" | "A" | "B" | "C" | undefined;
609
- min_n_touches?: number | undefined;
610
- strategy?: "scalper" | "day_trader" | "swing_trader" | "hodler" | "mixed" | undefined;
611
- token_age_max_min?: number | undefined;
612
- min_first_buy_sol?: number | undefined;
613
- mint_suffix?: string | undefined;
614
- preset?: "scout" | "fresh_launch" | undefined;
615
- include?: string | undefined;
616
- }, {
617
- limit?: number | undefined;
618
- before?: string | undefined;
619
- since?: string | undefined;
620
- kol?: string | undefined;
621
- min_kol_winrate_7d?: number | undefined;
622
- min_scout_tier?: "S" | "A" | "B" | "C" | undefined;
623
- min_n_touches?: number | undefined;
624
- strategy?: "scalper" | "day_trader" | "swing_trader" | "hodler" | "mixed" | undefined;
625
- token_age_max_min?: number | undefined;
626
- min_first_buy_sol?: number | undefined;
627
- mint_suffix?: string | undefined;
628
- preset?: "scout" | "fresh_launch" | undefined;
629
- include?: string | undefined;
630
- }>;
631
- handler: (agent: unknown, input: {
632
- limit?: number;
633
- since?: string;
634
- before?: string;
635
- kol?: string;
636
- min_kol_winrate_7d?: number;
637
- min_scout_tier?: "S" | "A" | "B" | "C";
638
- min_n_touches?: number;
639
- strategy?: "scalper" | "day_trader" | "swing_trader" | "hodler" | "mixed";
640
- token_age_max_min?: number;
641
- min_first_buy_sol?: number;
642
- mint_suffix?: string;
643
- preset?: "scout" | "fresh_launch";
644
- include?: string;
645
- }) => Promise<{
646
- status: string;
647
- result: any;
648
- message?: undefined;
649
- } | {
650
- status: string;
651
- message: string;
652
- result?: undefined;
653
- }>;
654
- })[];
655
- initialize(_agent: unknown): void;
656
- };
657
- export default MadeOnSolPlugin;
658
- export { kolFeed, kolCoordination, kolLeaderboard, deployerAlerts, kolPnl, kolTrendingTokens, kolTokenEntryOrder, kolCompare, kolAlertsRecent, createWebhook, listWebhooks, deleteWebhook, testWebhook, getStreamToken, walletTrackerWatchlist, walletTrackerAdd, walletTrackerRemove, walletTrackerTrades, walletTrackerSummary, alphaLeaderboard, alphaWallet, alphaLinked, tokenCapTable, tokenBuyerQuality, copyTradeList, copyTradeCreate, copyTradeGet, copyTradeUpdate, copyTradeDelete, copyTradeSignals, coordinationAlertsList, coordinationAlertsCreate, coordinationAlertsGet, coordinationAlertsUpdate, coordinationAlertsDelete, kolFirstTouches, firstTouchSubscriptionsList, firstTouchSubscriptionsCreate, firstTouchSubscriptionsGet, firstTouchSubscriptionsUpdate, firstTouchSubscriptionsDelete, };
659
- export { kolFeedAction, kolCoordinationAction, kolLeaderboardAction, deployerAlertsAction, kolPnlAction, kolTrendingTokensAction, kolTokenEntryOrderAction, kolCompareAction, kolAlertsRecentAction, kolFirstTouchesAction };
660
- export { walletTrackerWatchlistAction, walletTrackerAddAction, walletTrackerRemoveAction, walletTrackerTradesAction, walletTrackerSummaryAction };