@mobula_labs/types 0.1.6 → 0.1.8
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/cjs/index.cjs +3528 -3164
- package/dist/cjs/index.cjs.map +34 -29
- package/dist/esm/index.js +3528 -3164
- package/dist/esm/index.js.map +34 -29
- package/dist/index.d.ts +9 -2
- package/dist/misc/ApiKeysQueries.d.ts +1 -1
- package/dist/utils/schemas/BaseMessage.d.ts +6 -0
- package/dist/utils/schemas/PlatformMetadataOutput.d.ts +19 -0
- package/dist/utils/schemas/TokenMetadataMinimal.d.ts +25 -0
- package/dist/utils/schemas/WalletDeployerSchema.d.ts +333 -0
- package/dist/utils/schemas/WalletMetadataOutput.d.ts +19 -0
- package/dist/v1/market/FundingRateSchema.d.ts +33 -0
- package/dist/v1/market/MarketHistoryPairSchema.d.ts +3 -3
- package/dist/v1/market/MarketTradesPairSchema.d.ts +35 -2
- package/dist/v1/search/SearchSchema.d.ts +19 -2
- package/dist/v1/wallet/DeployerSchema.d.ts +157 -0
- package/dist/v1/wallet/WalletLabelSchema.d.ts +4 -4
- package/dist/v1/wallet/WalletTradesSchema.d.ts +86 -0
- package/dist/v2/explorer/BlockDataQuerySchema.d.ts +33 -0
- package/dist/v2/explorer/ContractVerifyQuerySchema.ts +27 -0
- package/dist/v2/swap/SwapQuotingBatchOutput.d.ts +48 -48
- package/dist/v2/swap/SwapQuotingOutput.d.ts +32 -32
- package/dist/v2/token/TokenAthSchema.d.ts +233 -0
- package/dist/v2/token/TokenPositionsSchema.d.ts +277 -42
- package/dist/v2/token/TokenTradesSchema.d.ts +1465 -11697
- package/dist/v2/trades/TradesFiltersSchema.d.ts +451 -0
- package/dist/v2/wallet/WalletActivityV2Schema.d.ts +275 -3
- package/dist/v2/wallet/WalletAnalysisQuerySchema.d.ts +1658 -0
- package/dist/v2/wallet/WalletDeployerSchema.d.ts +157 -0
- package/dist/v2/wallet/WalletFundingQuerySchema.d.ts +57 -0
- package/dist/v2/wallet/WalletPositionsSchema.d.ts +449 -6
- package/dist/wss/OhlcvPayloadSchema.d.ts +2 -2
- package/dist/wss/PairsPayloadSchema.d.ts +2 -2
- package/dist/wss/PositionPayloadSchema.d.ts +18 -0
- package/package.json +1 -1
|
@@ -11,10 +11,15 @@ export type WalletActivityV2ControllerUnsafeParams = {
|
|
|
11
11
|
filterSpam?: boolean | string;
|
|
12
12
|
backfillTransfers?: boolean | string;
|
|
13
13
|
backfillBalances?: boolean | string;
|
|
14
|
+
cursorHash?: string;
|
|
15
|
+
cursorDirection?: 'before' | 'after';
|
|
14
16
|
cursor_hash?: string;
|
|
15
17
|
cursor_direction?: 'before' | 'after';
|
|
18
|
+
enrichSwaps?: boolean | string;
|
|
19
|
+
from?: number | string;
|
|
20
|
+
to?: number | string;
|
|
16
21
|
};
|
|
17
|
-
export declare const WalletActivityV2ParamsSchema: z.ZodObject<{
|
|
22
|
+
export declare const WalletActivityV2ParamsSchema: z.ZodEffects<z.ZodObject<{
|
|
18
23
|
wallet: z.ZodString;
|
|
19
24
|
blockchains: z.ZodEffects<z.ZodOptional<z.ZodString>, string[], string | undefined>;
|
|
20
25
|
blacklist: z.ZodEffects<z.ZodOptional<z.ZodString>, string[], string | undefined>;
|
|
@@ -26,9 +31,14 @@ export declare const WalletActivityV2ParamsSchema: z.ZodObject<{
|
|
|
26
31
|
filterSpam: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>, boolean, string | boolean | undefined>>;
|
|
27
32
|
backfillTransfers: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>, boolean, string | boolean | undefined>>;
|
|
28
33
|
backfillBalances: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>, boolean, string | boolean | undefined>>;
|
|
34
|
+
cursorHash: z.ZodOptional<z.ZodString>;
|
|
35
|
+
cursorDirection: z.ZodOptional<z.ZodEnum<["before", "after"]>>;
|
|
29
36
|
cursor_hash: z.ZodOptional<z.ZodString>;
|
|
30
|
-
cursor_direction: z.
|
|
37
|
+
cursor_direction: z.ZodOptional<z.ZodEnum<["before", "after"]>>;
|
|
31
38
|
withTokens: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>, boolean, string | boolean | undefined>>;
|
|
39
|
+
enrichSwaps: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>, boolean, string | boolean | undefined>>;
|
|
40
|
+
from: z.ZodOptional<z.ZodNumber>;
|
|
41
|
+
to: z.ZodOptional<z.ZodNumber>;
|
|
32
42
|
}, "strip", z.ZodTypeAny, {
|
|
33
43
|
blockchains: string[];
|
|
34
44
|
limit: number;
|
|
@@ -41,14 +51,21 @@ export declare const WalletActivityV2ParamsSchema: z.ZodObject<{
|
|
|
41
51
|
order: "asc" | "desc";
|
|
42
52
|
blacklist: string[];
|
|
43
53
|
backfillBalances: boolean;
|
|
44
|
-
cursor_direction: "before" | "after";
|
|
45
54
|
withTokens: boolean;
|
|
55
|
+
enrichSwaps: boolean;
|
|
56
|
+
from?: number | undefined;
|
|
57
|
+
to?: number | undefined;
|
|
58
|
+
cursorHash?: string | undefined;
|
|
59
|
+
cursorDirection?: "before" | "after" | undefined;
|
|
46
60
|
cursor_hash?: string | undefined;
|
|
61
|
+
cursor_direction?: "before" | "after" | undefined;
|
|
47
62
|
}, {
|
|
48
63
|
wallet: string;
|
|
49
64
|
blockchains?: string | undefined;
|
|
50
65
|
limit?: number | undefined;
|
|
51
66
|
offset?: number | undefined;
|
|
67
|
+
from?: number | undefined;
|
|
68
|
+
to?: number | undefined;
|
|
52
69
|
pagination?: string | boolean | undefined;
|
|
53
70
|
unlistedAssets?: string | boolean | undefined;
|
|
54
71
|
filterSpam?: string | boolean | undefined;
|
|
@@ -56,9 +73,52 @@ export declare const WalletActivityV2ParamsSchema: z.ZodObject<{
|
|
|
56
73
|
order?: "asc" | "desc" | undefined;
|
|
57
74
|
blacklist?: string | undefined;
|
|
58
75
|
backfillBalances?: string | boolean | undefined;
|
|
76
|
+
cursorHash?: string | undefined;
|
|
77
|
+
cursorDirection?: "before" | "after" | undefined;
|
|
59
78
|
cursor_hash?: string | undefined;
|
|
60
79
|
cursor_direction?: "before" | "after" | undefined;
|
|
61
80
|
withTokens?: string | boolean | undefined;
|
|
81
|
+
enrichSwaps?: string | boolean | undefined;
|
|
82
|
+
}>, {
|
|
83
|
+
cursorHash: string | undefined;
|
|
84
|
+
cursorDirection: "before" | "after";
|
|
85
|
+
blockchains: string[];
|
|
86
|
+
limit: number;
|
|
87
|
+
offset: number;
|
|
88
|
+
wallet: string;
|
|
89
|
+
pagination: boolean;
|
|
90
|
+
unlistedAssets: boolean;
|
|
91
|
+
filterSpam: boolean;
|
|
92
|
+
backfillTransfers: boolean;
|
|
93
|
+
order: "asc" | "desc";
|
|
94
|
+
blacklist: string[];
|
|
95
|
+
backfillBalances: boolean;
|
|
96
|
+
withTokens: boolean;
|
|
97
|
+
enrichSwaps: boolean;
|
|
98
|
+
from?: number | undefined;
|
|
99
|
+
to?: number | undefined;
|
|
100
|
+
cursor_hash?: string | undefined;
|
|
101
|
+
cursor_direction?: "before" | "after" | undefined;
|
|
102
|
+
}, {
|
|
103
|
+
wallet: string;
|
|
104
|
+
blockchains?: string | undefined;
|
|
105
|
+
limit?: number | undefined;
|
|
106
|
+
offset?: number | undefined;
|
|
107
|
+
from?: number | undefined;
|
|
108
|
+
to?: number | undefined;
|
|
109
|
+
pagination?: string | boolean | undefined;
|
|
110
|
+
unlistedAssets?: string | boolean | undefined;
|
|
111
|
+
filterSpam?: string | boolean | undefined;
|
|
112
|
+
backfillTransfers?: string | boolean | undefined;
|
|
113
|
+
order?: "asc" | "desc" | undefined;
|
|
114
|
+
blacklist?: string | undefined;
|
|
115
|
+
backfillBalances?: string | boolean | undefined;
|
|
116
|
+
cursorHash?: string | undefined;
|
|
117
|
+
cursorDirection?: "before" | "after" | undefined;
|
|
118
|
+
cursor_hash?: string | undefined;
|
|
119
|
+
cursor_direction?: "before" | "after" | undefined;
|
|
120
|
+
withTokens?: string | boolean | undefined;
|
|
121
|
+
enrichSwaps?: string | boolean | undefined;
|
|
62
122
|
}>;
|
|
63
123
|
export type WalletActivityV2Params = z.input<typeof WalletActivityV2ParamsSchema>;
|
|
64
124
|
export declare const WalletActivityV2TransactionActivitySchema: z.ZodObject<{
|
|
@@ -156,6 +216,23 @@ export declare const WalletActivityV2TransactionActivitySchema: z.ZodObject<{
|
|
|
156
216
|
contract: string;
|
|
157
217
|
marketCapUsd: number;
|
|
158
218
|
}>>;
|
|
219
|
+
swapPlatform: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
220
|
+
id: z.ZodString;
|
|
221
|
+
name: z.ZodString;
|
|
222
|
+
logo: z.ZodNullable<z.ZodString>;
|
|
223
|
+
}, "strip", z.ZodTypeAny, {
|
|
224
|
+
name: string;
|
|
225
|
+
id: string;
|
|
226
|
+
logo: string | null;
|
|
227
|
+
}, {
|
|
228
|
+
name: string;
|
|
229
|
+
id: string;
|
|
230
|
+
logo: string | null;
|
|
231
|
+
}>>>;
|
|
232
|
+
swapTotalFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
233
|
+
swapGasFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
234
|
+
swapPlatformFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
235
|
+
swapMevFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
159
236
|
transferRawAmount: z.ZodOptional<z.ZodString>;
|
|
160
237
|
transferAmount: z.ZodOptional<z.ZodNumber>;
|
|
161
238
|
transferAmountUsd: z.ZodOptional<z.ZodNumber>;
|
|
@@ -245,6 +322,15 @@ export declare const WalletActivityV2TransactionActivitySchema: z.ZodObject<{
|
|
|
245
322
|
contract: string;
|
|
246
323
|
marketCapUsd: number;
|
|
247
324
|
} | undefined;
|
|
325
|
+
swapPlatform?: {
|
|
326
|
+
name: string;
|
|
327
|
+
id: string;
|
|
328
|
+
logo: string | null;
|
|
329
|
+
} | null | undefined;
|
|
330
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
331
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
332
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
333
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
248
334
|
transferRawAmount?: string | undefined;
|
|
249
335
|
transferAmount?: number | undefined;
|
|
250
336
|
transferAmountUsd?: number | undefined;
|
|
@@ -308,6 +394,15 @@ export declare const WalletActivityV2TransactionActivitySchema: z.ZodObject<{
|
|
|
308
394
|
contract: string;
|
|
309
395
|
marketCapUsd: number;
|
|
310
396
|
} | undefined;
|
|
397
|
+
swapPlatform?: {
|
|
398
|
+
name: string;
|
|
399
|
+
id: string;
|
|
400
|
+
logo: string | null;
|
|
401
|
+
} | null | undefined;
|
|
402
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
403
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
404
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
405
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
311
406
|
transferRawAmount?: string | undefined;
|
|
312
407
|
transferAmount?: number | undefined;
|
|
313
408
|
transferAmountUsd?: number | undefined;
|
|
@@ -434,6 +529,23 @@ export declare const WalletActivityV2TransactionSchema: z.ZodObject<{
|
|
|
434
529
|
contract: string;
|
|
435
530
|
marketCapUsd: number;
|
|
436
531
|
}>>;
|
|
532
|
+
swapPlatform: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
533
|
+
id: z.ZodString;
|
|
534
|
+
name: z.ZodString;
|
|
535
|
+
logo: z.ZodNullable<z.ZodString>;
|
|
536
|
+
}, "strip", z.ZodTypeAny, {
|
|
537
|
+
name: string;
|
|
538
|
+
id: string;
|
|
539
|
+
logo: string | null;
|
|
540
|
+
}, {
|
|
541
|
+
name: string;
|
|
542
|
+
id: string;
|
|
543
|
+
logo: string | null;
|
|
544
|
+
}>>>;
|
|
545
|
+
swapTotalFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
546
|
+
swapGasFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
547
|
+
swapPlatformFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
548
|
+
swapMevFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
437
549
|
transferRawAmount: z.ZodOptional<z.ZodString>;
|
|
438
550
|
transferAmount: z.ZodOptional<z.ZodNumber>;
|
|
439
551
|
transferAmountUsd: z.ZodOptional<z.ZodNumber>;
|
|
@@ -523,6 +635,15 @@ export declare const WalletActivityV2TransactionSchema: z.ZodObject<{
|
|
|
523
635
|
contract: string;
|
|
524
636
|
marketCapUsd: number;
|
|
525
637
|
} | undefined;
|
|
638
|
+
swapPlatform?: {
|
|
639
|
+
name: string;
|
|
640
|
+
id: string;
|
|
641
|
+
logo: string | null;
|
|
642
|
+
} | null | undefined;
|
|
643
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
644
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
645
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
646
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
526
647
|
transferRawAmount?: string | undefined;
|
|
527
648
|
transferAmount?: number | undefined;
|
|
528
649
|
transferAmountUsd?: number | undefined;
|
|
@@ -586,6 +707,15 @@ export declare const WalletActivityV2TransactionSchema: z.ZodObject<{
|
|
|
586
707
|
contract: string;
|
|
587
708
|
marketCapUsd: number;
|
|
588
709
|
} | undefined;
|
|
710
|
+
swapPlatform?: {
|
|
711
|
+
name: string;
|
|
712
|
+
id: string;
|
|
713
|
+
logo: string | null;
|
|
714
|
+
} | null | undefined;
|
|
715
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
716
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
717
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
718
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
589
719
|
transferRawAmount?: string | undefined;
|
|
590
720
|
transferAmount?: number | undefined;
|
|
591
721
|
transferAmountUsd?: number | undefined;
|
|
@@ -659,6 +789,15 @@ export declare const WalletActivityV2TransactionSchema: z.ZodObject<{
|
|
|
659
789
|
contract: string;
|
|
660
790
|
marketCapUsd: number;
|
|
661
791
|
} | undefined;
|
|
792
|
+
swapPlatform?: {
|
|
793
|
+
name: string;
|
|
794
|
+
id: string;
|
|
795
|
+
logo: string | null;
|
|
796
|
+
} | null | undefined;
|
|
797
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
798
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
799
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
800
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
662
801
|
transferRawAmount?: string | undefined;
|
|
663
802
|
transferAmount?: number | undefined;
|
|
664
803
|
transferAmountUsd?: number | undefined;
|
|
@@ -733,6 +872,15 @@ export declare const WalletActivityV2TransactionSchema: z.ZodObject<{
|
|
|
733
872
|
contract: string;
|
|
734
873
|
marketCapUsd: number;
|
|
735
874
|
} | undefined;
|
|
875
|
+
swapPlatform?: {
|
|
876
|
+
name: string;
|
|
877
|
+
id: string;
|
|
878
|
+
logo: string | null;
|
|
879
|
+
} | null | undefined;
|
|
880
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
881
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
882
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
883
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
736
884
|
transferRawAmount?: string | undefined;
|
|
737
885
|
transferAmount?: number | undefined;
|
|
738
886
|
transferAmountUsd?: number | undefined;
|
|
@@ -861,6 +1009,23 @@ export declare const WalletActivityV2OutputDataSchema: z.ZodArray<z.ZodObject<{
|
|
|
861
1009
|
contract: string;
|
|
862
1010
|
marketCapUsd: number;
|
|
863
1011
|
}>>;
|
|
1012
|
+
swapPlatform: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1013
|
+
id: z.ZodString;
|
|
1014
|
+
name: z.ZodString;
|
|
1015
|
+
logo: z.ZodNullable<z.ZodString>;
|
|
1016
|
+
}, "strip", z.ZodTypeAny, {
|
|
1017
|
+
name: string;
|
|
1018
|
+
id: string;
|
|
1019
|
+
logo: string | null;
|
|
1020
|
+
}, {
|
|
1021
|
+
name: string;
|
|
1022
|
+
id: string;
|
|
1023
|
+
logo: string | null;
|
|
1024
|
+
}>>>;
|
|
1025
|
+
swapTotalFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1026
|
+
swapGasFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1027
|
+
swapPlatformFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1028
|
+
swapMevFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
864
1029
|
transferRawAmount: z.ZodOptional<z.ZodString>;
|
|
865
1030
|
transferAmount: z.ZodOptional<z.ZodNumber>;
|
|
866
1031
|
transferAmountUsd: z.ZodOptional<z.ZodNumber>;
|
|
@@ -950,6 +1115,15 @@ export declare const WalletActivityV2OutputDataSchema: z.ZodArray<z.ZodObject<{
|
|
|
950
1115
|
contract: string;
|
|
951
1116
|
marketCapUsd: number;
|
|
952
1117
|
} | undefined;
|
|
1118
|
+
swapPlatform?: {
|
|
1119
|
+
name: string;
|
|
1120
|
+
id: string;
|
|
1121
|
+
logo: string | null;
|
|
1122
|
+
} | null | undefined;
|
|
1123
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
1124
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
1125
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
1126
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
953
1127
|
transferRawAmount?: string | undefined;
|
|
954
1128
|
transferAmount?: number | undefined;
|
|
955
1129
|
transferAmountUsd?: number | undefined;
|
|
@@ -1013,6 +1187,15 @@ export declare const WalletActivityV2OutputDataSchema: z.ZodArray<z.ZodObject<{
|
|
|
1013
1187
|
contract: string;
|
|
1014
1188
|
marketCapUsd: number;
|
|
1015
1189
|
} | undefined;
|
|
1190
|
+
swapPlatform?: {
|
|
1191
|
+
name: string;
|
|
1192
|
+
id: string;
|
|
1193
|
+
logo: string | null;
|
|
1194
|
+
} | null | undefined;
|
|
1195
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
1196
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
1197
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
1198
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
1016
1199
|
transferRawAmount?: string | undefined;
|
|
1017
1200
|
transferAmount?: number | undefined;
|
|
1018
1201
|
transferAmountUsd?: number | undefined;
|
|
@@ -1086,6 +1269,15 @@ export declare const WalletActivityV2OutputDataSchema: z.ZodArray<z.ZodObject<{
|
|
|
1086
1269
|
contract: string;
|
|
1087
1270
|
marketCapUsd: number;
|
|
1088
1271
|
} | undefined;
|
|
1272
|
+
swapPlatform?: {
|
|
1273
|
+
name: string;
|
|
1274
|
+
id: string;
|
|
1275
|
+
logo: string | null;
|
|
1276
|
+
} | null | undefined;
|
|
1277
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
1278
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
1279
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
1280
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
1089
1281
|
transferRawAmount?: string | undefined;
|
|
1090
1282
|
transferAmount?: number | undefined;
|
|
1091
1283
|
transferAmountUsd?: number | undefined;
|
|
@@ -1160,6 +1352,15 @@ export declare const WalletActivityV2OutputDataSchema: z.ZodArray<z.ZodObject<{
|
|
|
1160
1352
|
contract: string;
|
|
1161
1353
|
marketCapUsd: number;
|
|
1162
1354
|
} | undefined;
|
|
1355
|
+
swapPlatform?: {
|
|
1356
|
+
name: string;
|
|
1357
|
+
id: string;
|
|
1358
|
+
logo: string | null;
|
|
1359
|
+
} | null | undefined;
|
|
1360
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
1361
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
1362
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
1363
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
1163
1364
|
transferRawAmount?: string | undefined;
|
|
1164
1365
|
transferAmount?: number | undefined;
|
|
1165
1366
|
transferAmountUsd?: number | undefined;
|
|
@@ -1305,6 +1506,23 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
|
|
|
1305
1506
|
contract: string;
|
|
1306
1507
|
marketCapUsd: number;
|
|
1307
1508
|
}>>;
|
|
1509
|
+
swapPlatform: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1510
|
+
id: z.ZodString;
|
|
1511
|
+
name: z.ZodString;
|
|
1512
|
+
logo: z.ZodNullable<z.ZodString>;
|
|
1513
|
+
}, "strip", z.ZodTypeAny, {
|
|
1514
|
+
name: string;
|
|
1515
|
+
id: string;
|
|
1516
|
+
logo: string | null;
|
|
1517
|
+
}, {
|
|
1518
|
+
name: string;
|
|
1519
|
+
id: string;
|
|
1520
|
+
logo: string | null;
|
|
1521
|
+
}>>>;
|
|
1522
|
+
swapTotalFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1523
|
+
swapGasFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1524
|
+
swapPlatformFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1525
|
+
swapMevFeesUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1308
1526
|
transferRawAmount: z.ZodOptional<z.ZodString>;
|
|
1309
1527
|
transferAmount: z.ZodOptional<z.ZodNumber>;
|
|
1310
1528
|
transferAmountUsd: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1394,6 +1612,15 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
|
|
|
1394
1612
|
contract: string;
|
|
1395
1613
|
marketCapUsd: number;
|
|
1396
1614
|
} | undefined;
|
|
1615
|
+
swapPlatform?: {
|
|
1616
|
+
name: string;
|
|
1617
|
+
id: string;
|
|
1618
|
+
logo: string | null;
|
|
1619
|
+
} | null | undefined;
|
|
1620
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
1621
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
1622
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
1623
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
1397
1624
|
transferRawAmount?: string | undefined;
|
|
1398
1625
|
transferAmount?: number | undefined;
|
|
1399
1626
|
transferAmountUsd?: number | undefined;
|
|
@@ -1457,6 +1684,15 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
|
|
|
1457
1684
|
contract: string;
|
|
1458
1685
|
marketCapUsd: number;
|
|
1459
1686
|
} | undefined;
|
|
1687
|
+
swapPlatform?: {
|
|
1688
|
+
name: string;
|
|
1689
|
+
id: string;
|
|
1690
|
+
logo: string | null;
|
|
1691
|
+
} | null | undefined;
|
|
1692
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
1693
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
1694
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
1695
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
1460
1696
|
transferRawAmount?: string | undefined;
|
|
1461
1697
|
transferAmount?: number | undefined;
|
|
1462
1698
|
transferAmountUsd?: number | undefined;
|
|
@@ -1530,6 +1766,15 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
|
|
|
1530
1766
|
contract: string;
|
|
1531
1767
|
marketCapUsd: number;
|
|
1532
1768
|
} | undefined;
|
|
1769
|
+
swapPlatform?: {
|
|
1770
|
+
name: string;
|
|
1771
|
+
id: string;
|
|
1772
|
+
logo: string | null;
|
|
1773
|
+
} | null | undefined;
|
|
1774
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
1775
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
1776
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
1777
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
1533
1778
|
transferRawAmount?: string | undefined;
|
|
1534
1779
|
transferAmount?: number | undefined;
|
|
1535
1780
|
transferAmountUsd?: number | undefined;
|
|
@@ -1604,6 +1849,15 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
|
|
|
1604
1849
|
contract: string;
|
|
1605
1850
|
marketCapUsd: number;
|
|
1606
1851
|
} | undefined;
|
|
1852
|
+
swapPlatform?: {
|
|
1853
|
+
name: string;
|
|
1854
|
+
id: string;
|
|
1855
|
+
logo: string | null;
|
|
1856
|
+
} | null | undefined;
|
|
1857
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
1858
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
1859
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
1860
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
1607
1861
|
transferRawAmount?: string | undefined;
|
|
1608
1862
|
transferAmount?: number | undefined;
|
|
1609
1863
|
transferAmountUsd?: number | undefined;
|
|
@@ -2612,6 +2866,15 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
|
|
|
2612
2866
|
contract: string;
|
|
2613
2867
|
marketCapUsd: number;
|
|
2614
2868
|
} | undefined;
|
|
2869
|
+
swapPlatform?: {
|
|
2870
|
+
name: string;
|
|
2871
|
+
id: string;
|
|
2872
|
+
logo: string | null;
|
|
2873
|
+
} | null | undefined;
|
|
2874
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
2875
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
2876
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
2877
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
2615
2878
|
transferRawAmount?: string | undefined;
|
|
2616
2879
|
transferAmount?: number | undefined;
|
|
2617
2880
|
transferAmountUsd?: number | undefined;
|
|
@@ -2980,6 +3243,15 @@ export declare const WalletActivityV2ResponseSchema: z.ZodObject<{
|
|
|
2980
3243
|
contract: string;
|
|
2981
3244
|
marketCapUsd: number;
|
|
2982
3245
|
} | undefined;
|
|
3246
|
+
swapPlatform?: {
|
|
3247
|
+
name: string;
|
|
3248
|
+
id: string;
|
|
3249
|
+
logo: string | null;
|
|
3250
|
+
} | null | undefined;
|
|
3251
|
+
swapTotalFeesUsd?: number | null | undefined;
|
|
3252
|
+
swapGasFeesUsd?: number | null | undefined;
|
|
3253
|
+
swapPlatformFeesUsd?: number | null | undefined;
|
|
3254
|
+
swapMevFeesUsd?: number | null | undefined;
|
|
2983
3255
|
transferRawAmount?: string | undefined;
|
|
2984
3256
|
transferAmount?: number | undefined;
|
|
2985
3257
|
transferAmountUsd?: number | undefined;
|