@skip-go/client 1.0.1-alpha-1 → 1.0.2

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 (32) hide show
  1. package/dist/api/getAssets.d.ts +19 -0
  2. package/dist/api/getAssetsBetweenChains.d.ts +56 -0
  3. package/dist/api/getBridges.d.ts +54 -0
  4. package/dist/api/getChains.d.ts +41 -0
  5. package/dist/api/getVenues.d.ts +13 -0
  6. package/dist/api/postAssetsFromSource.d.ts +13 -0
  7. package/dist/api/postBalances.d.ts +35 -0
  8. package/dist/api/postIbcOriginAssets.d.ts +32 -0
  9. package/dist/api/postMessages.d.ts +528 -0
  10. package/dist/api/postMessagesDirect.d.ts +568 -0
  11. package/dist/api/postRecommendAssets.d.ts +40 -0
  12. package/dist/api/postRoute.d.ts +460 -0
  13. package/dist/api/postSubmitTransaction.d.ts +13 -0
  14. package/dist/api/postTrackTransaction.d.ts +13 -0
  15. package/dist/api/postTransactionStatus.d.ts +559 -0
  16. package/dist/apiState-CdzxTxYd.d.ts +6 -0
  17. package/dist/{chunk-Y5EY3Q6D.js → chunk-735L35R6.js} +1 -1
  18. package/dist/client-types-CxjtffyG.d.ts +60 -0
  19. package/dist/executeRoute-BKvMVd1I.d.ts +69 -0
  20. package/dist/generateApi-DqCp36fX.d.ts +22 -0
  21. package/dist/index.d.ts +35 -0
  22. package/dist/index.js +1 -1
  23. package/dist/public-functions/executeRoute.d.ts +9 -0
  24. package/dist/public-functions/executeRoute.js +1 -1
  25. package/dist/public-functions/getFeeInfoForChain.d.ts +9 -0
  26. package/dist/public-functions/getRecommendedGasPrice.d.ts +9 -0
  27. package/dist/public-functions/getSigningStargateClient.d.ts +13 -0
  28. package/dist/public-functions/setApiOptions.d.ts +9 -0
  29. package/dist/public-functions/setClientOptions.d.ts +9 -0
  30. package/dist/setClientOptions-DbanEIwL.d.ts +19 -0
  31. package/dist/swaggerTypes-O9-gvCT1.d.ts +1890 -0
  32. package/package.json +4 -4
@@ -0,0 +1,568 @@
1
+ import { S as SkipApiOptions } from '../apiState-CdzxTxYd.js';
2
+ import { f as AutopilotAction, I as BridgeType, ao as RoutePriceWarningType, b2 as FeeType } from '../swaggerTypes-O9-gvCT1.js';
3
+
4
+ declare const messagesDirect: (options?: ({
5
+ sourceAssetDenom?: string | undefined;
6
+ sourceAssetChainId?: string | undefined;
7
+ destAssetDenom?: string | undefined;
8
+ destAssetChainId?: string | undefined;
9
+ amountIn?: string | undefined;
10
+ amountOut?: string | undefined;
11
+ chainIdsToAddresses?: {
12
+ [x: string]: string;
13
+ } | undefined;
14
+ swapVenues?: {
15
+ chainId?: string | undefined;
16
+ name?: string | undefined;
17
+ logoUri?: string | undefined;
18
+ }[] | undefined;
19
+ slippageTolerancePercent?: string | undefined;
20
+ timeoutSeconds?: string | undefined;
21
+ chainIdsToAffiliates?: {
22
+ [x: string]: {
23
+ affiliates?: {
24
+ address?: string | undefined;
25
+ basisPointsFee?: string | undefined;
26
+ }[] | undefined;
27
+ };
28
+ } | undefined;
29
+ postRouteHandler?: {
30
+ autpilotMsg?: {
31
+ action?: AutopilotAction | undefined;
32
+ receiver?: string | undefined;
33
+ } | undefined;
34
+ } | {
35
+ wasmMsg?: {
36
+ contractAddress?: string | undefined;
37
+ msg?: string | undefined;
38
+ } | undefined;
39
+ } | undefined;
40
+ allowMultiTx?: boolean | undefined;
41
+ allowUnsafe?: boolean | undefined;
42
+ experimentalFeatures?: string[] | undefined;
43
+ bridges?: BridgeType[] | undefined;
44
+ smartRelay?: boolean | undefined;
45
+ smartSwapOptions?: {
46
+ splitRoutes?: boolean | undefined;
47
+ evmSwaps?: boolean | undefined;
48
+ } | undefined;
49
+ allowSwaps?: boolean | undefined;
50
+ goFast?: boolean | undefined;
51
+ enableGasWarnings?: boolean | undefined;
52
+ } & SkipApiOptions & {
53
+ abortDuplicateRequests?: boolean | undefined;
54
+ }) | undefined) => Promise<{
55
+ msgs?: ({
56
+ evmTx: {
57
+ chainId: string;
58
+ data?: string | undefined;
59
+ requiredErc20Approvals?: {
60
+ amount: string;
61
+ spender: string;
62
+ tokenContract: string;
63
+ }[] | undefined;
64
+ signerAddress?: string | undefined;
65
+ to?: string | undefined;
66
+ value?: string | undefined;
67
+ };
68
+ } | {
69
+ svmTx: {
70
+ chainId: string;
71
+ signerAddress?: string | undefined;
72
+ tx?: string | undefined;
73
+ };
74
+ } | {
75
+ multiChainMsg?: {
76
+ chainId?: string | undefined;
77
+ msg?: string | undefined;
78
+ msgTypeUrl?: string | undefined;
79
+ path?: string[] | undefined;
80
+ } | undefined;
81
+ })[] | undefined;
82
+ txs?: ({
83
+ cosmosTx: {
84
+ chainId: string;
85
+ path?: string[] | undefined;
86
+ signerAddress?: string | undefined;
87
+ msgs?: {
88
+ msg?: string | undefined;
89
+ msgTypeUrl?: string | undefined;
90
+ }[] | undefined;
91
+ };
92
+ operationsIndices?: number[] | undefined;
93
+ } | {
94
+ evmTx: {
95
+ chainId: string;
96
+ data?: string | undefined;
97
+ requiredErc20Approvals?: {
98
+ amount: string;
99
+ spender: string;
100
+ tokenContract: string;
101
+ }[] | undefined;
102
+ signerAddress?: string | undefined;
103
+ to?: string | undefined;
104
+ value?: string | undefined;
105
+ };
106
+ operationsIndices?: number[] | undefined;
107
+ } | {
108
+ svmTx: {
109
+ chainId: string;
110
+ signerAddress?: string | undefined;
111
+ tx?: string | undefined;
112
+ };
113
+ operationsIndices?: number[] | undefined;
114
+ })[] | undefined;
115
+ route?: {
116
+ amountIn: string;
117
+ amountOut: string;
118
+ chainIds: string[];
119
+ requiredChainAddresses: string[];
120
+ destAssetChainId: string;
121
+ destAssetDenom: string;
122
+ doesSwap?: boolean | undefined;
123
+ estimatedAmountOut: string;
124
+ operations: ({
125
+ axelarTransfer?: {
126
+ asset?: string | undefined;
127
+ feeAmount?: string | undefined;
128
+ feeAsset?: {
129
+ chainId: string;
130
+ coingeckoId?: string | undefined;
131
+ decimals?: number | undefined;
132
+ denom: string;
133
+ description?: string | undefined;
134
+ isCw20: boolean;
135
+ isEvm: boolean;
136
+ isSvm: boolean;
137
+ logoUri?: string | undefined;
138
+ name?: string | undefined;
139
+ originChainId: string;
140
+ originDenom: string;
141
+ recommendedSymbol?: string | undefined;
142
+ symbol?: string | undefined;
143
+ tokenContract?: string | undefined;
144
+ trace: string;
145
+ } | undefined;
146
+ fromChain?: string | undefined;
147
+ fromChainId?: string | undefined;
148
+ isTestnet?: boolean | undefined;
149
+ shouldUnwrap?: boolean | undefined;
150
+ toChain?: string | undefined;
151
+ toChainId?: string | undefined;
152
+ denomIn?: string | undefined;
153
+ denomOut?: string | undefined;
154
+ usdFeeAmount?: string | undefined;
155
+ ibcTransferToAxelar?: {
156
+ fromChainId?: string | undefined;
157
+ toChainId?: string | undefined;
158
+ channel?: string | undefined;
159
+ destDenom?: string | undefined;
160
+ pfmEnabled?: boolean | undefined;
161
+ port?: string | undefined;
162
+ supportsMemo?: boolean | undefined;
163
+ denomIn?: string | undefined;
164
+ denomOut?: string | undefined;
165
+ feeAmount?: string | undefined;
166
+ usdFeeAmount?: string | undefined;
167
+ feeAsset?: {
168
+ chainId: string;
169
+ coingeckoId?: string | undefined;
170
+ decimals?: number | undefined;
171
+ denom: string;
172
+ description?: string | undefined;
173
+ isCw20: boolean;
174
+ isEvm: boolean;
175
+ isSvm: boolean;
176
+ logoUri?: string | undefined;
177
+ name?: string | undefined;
178
+ originChainId: string;
179
+ originDenom: string;
180
+ recommendedSymbol?: string | undefined;
181
+ symbol?: string | undefined;
182
+ tokenContract?: string | undefined;
183
+ trace: string;
184
+ } | undefined;
185
+ bridgeId?: BridgeType | undefined;
186
+ smartRelay?: boolean | undefined;
187
+ } | undefined;
188
+ bridgeId?: BridgeType | undefined;
189
+ smartRelay?: boolean | undefined;
190
+ } | undefined;
191
+ txIndex: number;
192
+ amountIn: string;
193
+ amountOut: string;
194
+ } | {
195
+ cctpTransfer?: {
196
+ fromChainId?: string | undefined;
197
+ toChainId?: string | undefined;
198
+ burnToken?: string | undefined;
199
+ denomIn?: string | undefined;
200
+ denomOut?: string | undefined;
201
+ bridgeId?: BridgeType | undefined;
202
+ smartRelay?: boolean | undefined;
203
+ smartRelayFeeQuote?: {
204
+ feeAmount?: string | undefined;
205
+ feeDenom?: string | undefined;
206
+ feePaymentAddress?: string | undefined;
207
+ relayerAddress?: string | undefined;
208
+ expiration?: string | undefined;
209
+ } | undefined;
210
+ } | undefined;
211
+ txIndex: number;
212
+ amountIn: string;
213
+ amountOut: string;
214
+ } | {
215
+ stargateTransfer?: {
216
+ fromChainId?: string | undefined;
217
+ toChainId?: string | undefined;
218
+ denomIn?: string | undefined;
219
+ denomOut?: string | undefined;
220
+ bridgeId?: BridgeType | undefined;
221
+ poolAddress?: string | undefined;
222
+ destinationEndpointId?: number | undefined;
223
+ oftFeeAsset?: {
224
+ chainId: string;
225
+ coingeckoId?: string | undefined;
226
+ decimals?: number | undefined;
227
+ denom: string;
228
+ description?: string | undefined;
229
+ isCw20: boolean;
230
+ isEvm: boolean;
231
+ isSvm: boolean;
232
+ logoUri?: string | undefined;
233
+ name?: string | undefined;
234
+ originChainId: string;
235
+ originDenom: string;
236
+ recommendedSymbol?: string | undefined;
237
+ symbol?: string | undefined;
238
+ tokenContract?: string | undefined;
239
+ trace: string;
240
+ } | undefined;
241
+ oftFeeAmount?: string | undefined;
242
+ oftFeeAmountUsd?: string | undefined;
243
+ messagingFeeAsset?: {
244
+ chainId: string;
245
+ coingeckoId?: string | undefined;
246
+ decimals?: number | undefined;
247
+ denom: string;
248
+ description?: string | undefined;
249
+ isCw20: boolean;
250
+ isEvm: boolean;
251
+ isSvm: boolean;
252
+ logoUri?: string | undefined;
253
+ name?: string | undefined;
254
+ originChainId: string;
255
+ originDenom: string;
256
+ recommendedSymbol?: string | undefined;
257
+ symbol?: string | undefined;
258
+ tokenContract?: string | undefined;
259
+ trace: string;
260
+ } | undefined;
261
+ messagingFeeAmount?: string | undefined;
262
+ messageingFeeAmountUsd?: string | undefined;
263
+ } | undefined;
264
+ txIndex: number;
265
+ amountIn: string;
266
+ amountOut: string;
267
+ } | {
268
+ bankSend?: {
269
+ chainId?: string | undefined;
270
+ denom?: string | undefined;
271
+ } | undefined;
272
+ txIndex: number;
273
+ amountIn: string;
274
+ amountOut: string;
275
+ } | {
276
+ evmSwap?: {
277
+ inputToken?: string | undefined;
278
+ amountIn?: string | undefined;
279
+ swapCalldata?: string | undefined;
280
+ amountOut?: string | undefined;
281
+ fromChainId?: string | undefined;
282
+ denomIn?: string | undefined;
283
+ denomOut?: string | undefined;
284
+ swapVenues?: {
285
+ chainId?: string | undefined;
286
+ name?: string | undefined;
287
+ logoUri?: string | undefined;
288
+ }[] | undefined;
289
+ } | undefined;
290
+ txIndex: number;
291
+ amountIn: string;
292
+ amountOut: string;
293
+ } | {
294
+ hyperlaneTransfer?: {
295
+ fromChainId?: string | undefined;
296
+ toChainId?: string | undefined;
297
+ denomIn?: string | undefined;
298
+ denomOut?: string | undefined;
299
+ hyperlaneContractAddress?: string | undefined;
300
+ feeAmount?: string | undefined;
301
+ feeAsset?: {
302
+ chainId: string;
303
+ coingeckoId?: string | undefined;
304
+ decimals?: number | undefined;
305
+ denom: string;
306
+ description?: string | undefined;
307
+ isCw20: boolean;
308
+ isEvm: boolean;
309
+ isSvm: boolean;
310
+ logoUri?: string | undefined;
311
+ name?: string | undefined;
312
+ originChainId: string;
313
+ originDenom: string;
314
+ recommendedSymbol?: string | undefined;
315
+ symbol?: string | undefined;
316
+ tokenContract?: string | undefined;
317
+ trace: string;
318
+ } | undefined;
319
+ usdFeeAmount?: string | undefined;
320
+ bridgeId?: BridgeType | undefined;
321
+ smartRelay?: boolean | undefined;
322
+ } | undefined;
323
+ txIndex: number;
324
+ amountIn: string;
325
+ amountOut: string;
326
+ } | {
327
+ transfer?: {
328
+ fromChainId?: string | undefined;
329
+ toChainId?: string | undefined;
330
+ channel?: string | undefined;
331
+ destDenom?: string | undefined;
332
+ pfmEnabled?: boolean | undefined;
333
+ port?: string | undefined;
334
+ supportsMemo?: boolean | undefined;
335
+ denomIn?: string | undefined;
336
+ denomOut?: string | undefined;
337
+ feeAmount?: string | undefined;
338
+ usdFeeAmount?: string | undefined;
339
+ feeAsset?: {
340
+ chainId: string;
341
+ coingeckoId?: string | undefined;
342
+ decimals?: number | undefined;
343
+ denom: string;
344
+ description?: string | undefined;
345
+ isCw20: boolean;
346
+ isEvm: boolean;
347
+ isSvm: boolean;
348
+ logoUri?: string | undefined;
349
+ name?: string | undefined;
350
+ originChainId: string;
351
+ originDenom: string;
352
+ recommendedSymbol?: string | undefined;
353
+ symbol?: string | undefined;
354
+ tokenContract?: string | undefined;
355
+ trace: string;
356
+ } | undefined;
357
+ bridgeId?: BridgeType | undefined;
358
+ smartRelay?: boolean | undefined;
359
+ } | undefined;
360
+ txIndex: number;
361
+ amountIn: string;
362
+ amountOut: string;
363
+ } | {
364
+ swap?: {
365
+ swapIn?: {
366
+ swapAmountIn?: string | undefined;
367
+ swapOperations?: {
368
+ denomIn?: string | undefined;
369
+ denomOut?: string | undefined;
370
+ pool?: string | undefined;
371
+ interface?: string | undefined;
372
+ }[] | undefined;
373
+ swapVenue?: {
374
+ chainId?: string | undefined;
375
+ name?: string | undefined;
376
+ logoUri?: string | undefined;
377
+ } | undefined;
378
+ priceImpactPercent?: string | undefined;
379
+ } | undefined;
380
+ estimatedAffiliateFee?: string | undefined;
381
+ chainId?: string | undefined;
382
+ fromChainId?: string | undefined;
383
+ denomIn?: string | undefined;
384
+ denomOut?: string | undefined;
385
+ swapVenues?: {
386
+ chainId?: string | undefined;
387
+ name?: string | undefined;
388
+ logoUri?: string | undefined;
389
+ }[] | undefined;
390
+ } | {
391
+ swapOut?: {
392
+ swapAmountOut?: string | undefined;
393
+ swapOperations?: {
394
+ denomIn?: string | undefined;
395
+ denomOut?: string | undefined;
396
+ pool?: string | undefined;
397
+ interface?: string | undefined;
398
+ }[] | undefined;
399
+ swapVenue?: {
400
+ chainId?: string | undefined;
401
+ name?: string | undefined;
402
+ logoUri?: string | undefined;
403
+ } | undefined;
404
+ priceImpactPercent?: string | undefined;
405
+ } | undefined;
406
+ estimatedAffiliateFee?: string | undefined;
407
+ chainId?: string | undefined;
408
+ fromChainId?: string | undefined;
409
+ denomIn?: string | undefined;
410
+ denomOut?: string | undefined;
411
+ swapVenues?: {
412
+ chainId?: string | undefined;
413
+ name?: string | undefined;
414
+ logoUri?: string | undefined;
415
+ }[] | undefined;
416
+ } | {
417
+ smartSwapIn?: {
418
+ swapVenue?: {
419
+ chainId?: string | undefined;
420
+ name?: string | undefined;
421
+ logoUri?: string | undefined;
422
+ } | undefined;
423
+ swapRoutes?: {
424
+ swapAmountIn?: string | undefined;
425
+ denomIn?: string | undefined;
426
+ swapOperations?: {
427
+ denomIn?: string | undefined;
428
+ denomOut?: string | undefined;
429
+ pool?: string | undefined;
430
+ interface?: string | undefined;
431
+ }[] | undefined;
432
+ }[] | undefined;
433
+ } | undefined;
434
+ estimatedAffiliateFee?: string | undefined;
435
+ chainId?: string | undefined;
436
+ fromChainId?: string | undefined;
437
+ denomIn?: string | undefined;
438
+ denomOut?: string | undefined;
439
+ swapVenues?: {
440
+ chainId?: string | undefined;
441
+ name?: string | undefined;
442
+ logoUri?: string | undefined;
443
+ }[] | undefined;
444
+ } | undefined;
445
+ txIndex: number;
446
+ amountIn: string;
447
+ amountOut: string;
448
+ } | {
449
+ transfer?: {
450
+ fromChainId?: string | undefined;
451
+ toChainId?: string | undefined;
452
+ denomIn?: string | undefined;
453
+ denomOut?: string | undefined;
454
+ opInitBridgeId?: any;
455
+ bridgeId?: BridgeType | undefined;
456
+ smartRelay?: boolean | undefined;
457
+ } | undefined;
458
+ txIndex: number;
459
+ amountIn: string;
460
+ amountOut: string;
461
+ } | {
462
+ eurekaTransfer?: {
463
+ destinationPort?: string | undefined;
464
+ sourceClient?: string | undefined;
465
+ fromChainId?: string | undefined;
466
+ toChainId?: string | undefined;
467
+ pfmEnabled?: boolean | undefined;
468
+ supportsMemo?: boolean | undefined;
469
+ denomIn?: string | undefined;
470
+ denomOut?: string | undefined;
471
+ entryContractAddress?: string | undefined;
472
+ callbackAdapterContractAddress?: string | undefined;
473
+ bridgeId?: BridgeType | undefined;
474
+ smartRelay?: boolean | undefined;
475
+ smartRelayFeeQuote?: {
476
+ feeAmount?: string | undefined;
477
+ feeDenom?: string | undefined;
478
+ feePaymentAddress?: string | undefined;
479
+ relayerAddress?: string | undefined;
480
+ expiration?: string | undefined;
481
+ } | undefined;
482
+ toChainCallbackContractAddress?: string | undefined;
483
+ toChainEntryContractAddress?: string | undefined;
484
+ } | undefined;
485
+ txIndex: number;
486
+ amountIn: string;
487
+ amountOut: string;
488
+ } | {
489
+ eurekaTransfer?: {
490
+ fromChainId: string;
491
+ toChainId: string;
492
+ denomIn: string;
493
+ denomOut: string;
494
+ sourceOftCntractAddress: string;
495
+ destinationEndpointId: number;
496
+ messagingFeeAsset: {
497
+ chainId: string;
498
+ coingeckoId?: string | undefined;
499
+ decimals?: number | undefined;
500
+ denom: string;
501
+ description?: string | undefined;
502
+ isCw20: boolean;
503
+ isEvm: boolean;
504
+ isSvm: boolean;
505
+ logoUri?: string | undefined;
506
+ name?: string | undefined;
507
+ originChainId: string;
508
+ originDenom: string;
509
+ recommendedSymbol?: string | undefined;
510
+ symbol?: string | undefined;
511
+ tokenContract?: string | undefined;
512
+ trace: string;
513
+ };
514
+ messagingFeeAmount: string;
515
+ messagingFeeAmountUsd: string;
516
+ bridgeId: BridgeType;
517
+ } | undefined;
518
+ txIndex: number;
519
+ amountIn: string;
520
+ amountOut: string;
521
+ })[];
522
+ sourceAssetChainId: string;
523
+ sourceAssetDenom: string;
524
+ swapVenue?: {
525
+ chainId?: string | undefined;
526
+ name?: string | undefined;
527
+ logoUri?: string | undefined;
528
+ } | undefined;
529
+ txsRequired: number;
530
+ usdAmountIn?: string | undefined;
531
+ usdAmountOut?: string | undefined;
532
+ swapPriceImpactPercent?: string | undefined;
533
+ warning?: {
534
+ type?: RoutePriceWarningType | undefined;
535
+ message?: string | undefined;
536
+ } | undefined;
537
+ estimatedFees?: {
538
+ feeType?: FeeType | undefined;
539
+ bridgeId?: BridgeType | undefined;
540
+ amount?: string | undefined;
541
+ usdAmount?: string | undefined;
542
+ originAsset: {
543
+ chainId: string;
544
+ coingeckoId?: string | undefined;
545
+ decimals?: number | undefined;
546
+ denom: string;
547
+ description?: string | undefined;
548
+ isCw20: boolean;
549
+ isEvm: boolean;
550
+ isSvm: boolean;
551
+ logoUri?: string | undefined;
552
+ name?: string | undefined;
553
+ originChainId: string;
554
+ originDenom: string;
555
+ recommendedSymbol?: string | undefined;
556
+ symbol?: string | undefined;
557
+ tokenContract?: string | undefined;
558
+ trace: string;
559
+ };
560
+ chainId?: string | undefined;
561
+ txIndex?: number | undefined;
562
+ operationIndex?: number | undefined;
563
+ }[] | undefined;
564
+ estimatedRouteDurationSeconds?: number | undefined;
565
+ } | undefined;
566
+ } | undefined>;
567
+
568
+ export { messagesDirect };
@@ -0,0 +1,40 @@
1
+ import { S as SkipApiOptions } from '../apiState-CdzxTxYd.js';
2
+ import { an as Reason } from '../swaggerTypes-O9-gvCT1.js';
3
+
4
+ declare const recommendAssets: (options?: ({
5
+ requests?: {
6
+ sourceAssetDenom?: string | undefined;
7
+ sourceAssetChainId?: string | undefined;
8
+ destChainId?: string | undefined;
9
+ reason?: Reason | undefined;
10
+ }[] | undefined;
11
+ } & SkipApiOptions & {
12
+ abortDuplicateRequests?: boolean | undefined;
13
+ }) | undefined) => Promise<{
14
+ recommendations?: {
15
+ asset?: {
16
+ chainId: string;
17
+ coingeckoId?: string | undefined;
18
+ decimals?: number | undefined;
19
+ denom: string;
20
+ description?: string | undefined;
21
+ isCw20: boolean;
22
+ isEvm: boolean;
23
+ isSvm: boolean;
24
+ logoUri?: string | undefined;
25
+ name?: string | undefined;
26
+ originChainId: string;
27
+ originDenom: string;
28
+ recommendedSymbol?: string | undefined;
29
+ symbol?: string | undefined;
30
+ tokenContract?: string | undefined;
31
+ trace: string;
32
+ } | undefined;
33
+ reason?: Reason | undefined;
34
+ }[] | undefined;
35
+ error?: {
36
+ message?: string | undefined;
37
+ } | undefined;
38
+ }[] | undefined>;
39
+
40
+ export { recommendAssets };