@argent/x-shared 1.63.0 → 1.65.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/simulation.cjs +1 -1
- package/dist/simulation.js +20 -18
- package/dist/src/features/simulation/activity/schema.cjs +1 -1
- package/dist/src/features/simulation/activity/schema.d.ts +238 -0
- package/dist/src/features/simulation/activity/schema.js +41 -38
- package/dist/src/features/simulation/transactionReview/schema.cjs +1 -1
- package/dist/src/features/simulation/transactionReview/schema.d.ts +76 -0
- package/dist/src/features/simulation/transactionReview/schema.js +106 -98
- package/package.json +1 -1
|
@@ -174,6 +174,13 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
174
174
|
} | null | undefined;
|
|
175
175
|
}>;
|
|
176
176
|
counterpartyNetwork: z.ZodOptional<z.ZodEnum<["ethereum", "starknet", "zksync", "zksync2"]>>;
|
|
177
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
178
|
+
isLootboxReward: z.ZodOptional<z.ZodBoolean>;
|
|
179
|
+
}, "strip", z.ZodTypeAny, {
|
|
180
|
+
isLootboxReward?: boolean | undefined;
|
|
181
|
+
}, {
|
|
182
|
+
isLootboxReward?: boolean | undefined;
|
|
183
|
+
}>>;
|
|
177
184
|
}, "strip", z.ZodTypeAny, {
|
|
178
185
|
type: "payment";
|
|
179
186
|
leg: string;
|
|
@@ -187,6 +194,9 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
187
194
|
} | null | undefined;
|
|
188
195
|
};
|
|
189
196
|
counterparty: `0x${string}`;
|
|
197
|
+
context?: {
|
|
198
|
+
isLootboxReward?: boolean | undefined;
|
|
199
|
+
} | undefined;
|
|
190
200
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
191
201
|
}, {
|
|
192
202
|
type: "payment";
|
|
@@ -201,6 +211,9 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
201
211
|
} | null | undefined;
|
|
202
212
|
};
|
|
203
213
|
counterparty: string;
|
|
214
|
+
context?: {
|
|
215
|
+
isLootboxReward?: boolean | undefined;
|
|
216
|
+
} | undefined;
|
|
204
217
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
205
218
|
}>, z.ZodObject<{
|
|
206
219
|
type: z.ZodLiteral<"trade">;
|
|
@@ -686,6 +699,13 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
686
699
|
} | null | undefined;
|
|
687
700
|
}>;
|
|
688
701
|
counterpartyNetwork: z.ZodOptional<z.ZodEnum<["ethereum", "starknet", "zksync", "zksync2"]>>;
|
|
702
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
703
|
+
isLootboxReward: z.ZodOptional<z.ZodBoolean>;
|
|
704
|
+
}, "strip", z.ZodTypeAny, {
|
|
705
|
+
isLootboxReward?: boolean | undefined;
|
|
706
|
+
}, {
|
|
707
|
+
isLootboxReward?: boolean | undefined;
|
|
708
|
+
}>>;
|
|
689
709
|
}, "strip", z.ZodTypeAny, {
|
|
690
710
|
type: "payment";
|
|
691
711
|
leg: string;
|
|
@@ -699,6 +719,9 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
699
719
|
} | null | undefined;
|
|
700
720
|
};
|
|
701
721
|
counterparty: `0x${string}`;
|
|
722
|
+
context?: {
|
|
723
|
+
isLootboxReward?: boolean | undefined;
|
|
724
|
+
} | undefined;
|
|
702
725
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
703
726
|
}, {
|
|
704
727
|
type: "payment";
|
|
@@ -713,6 +736,9 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
713
736
|
} | null | undefined;
|
|
714
737
|
};
|
|
715
738
|
counterparty: string;
|
|
739
|
+
context?: {
|
|
740
|
+
isLootboxReward?: boolean | undefined;
|
|
741
|
+
} | undefined;
|
|
716
742
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
717
743
|
}>, z.ZodObject<{
|
|
718
744
|
type: z.ZodLiteral<"trade">;
|
|
@@ -1118,6 +1144,9 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
1118
1144
|
} | null | undefined;
|
|
1119
1145
|
};
|
|
1120
1146
|
counterparty: `0x${string}`;
|
|
1147
|
+
context?: {
|
|
1148
|
+
isLootboxReward?: boolean | undefined;
|
|
1149
|
+
} | undefined;
|
|
1121
1150
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
1122
1151
|
} | {
|
|
1123
1152
|
type: "trade";
|
|
@@ -1227,6 +1256,9 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
1227
1256
|
} | null | undefined;
|
|
1228
1257
|
};
|
|
1229
1258
|
counterparty: string;
|
|
1259
|
+
context?: {
|
|
1260
|
+
isLootboxReward?: boolean | undefined;
|
|
1261
|
+
} | undefined;
|
|
1230
1262
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
1231
1263
|
} | {
|
|
1232
1264
|
type: "trade";
|
|
@@ -1339,6 +1371,9 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
1339
1371
|
} | null | undefined;
|
|
1340
1372
|
};
|
|
1341
1373
|
counterparty: `0x${string}`;
|
|
1374
|
+
context?: {
|
|
1375
|
+
isLootboxReward?: boolean | undefined;
|
|
1376
|
+
} | undefined;
|
|
1342
1377
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
1343
1378
|
} | {
|
|
1344
1379
|
type: "trade";
|
|
@@ -1451,6 +1486,9 @@ export declare const activityDetailsSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<
|
|
|
1451
1486
|
} | null | undefined;
|
|
1452
1487
|
};
|
|
1453
1488
|
counterparty: string;
|
|
1489
|
+
context?: {
|
|
1490
|
+
isLootboxReward?: boolean | undefined;
|
|
1491
|
+
} | undefined;
|
|
1454
1492
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
1455
1493
|
} | {
|
|
1456
1494
|
type: "trade";
|
|
@@ -1990,6 +2028,13 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
1990
2028
|
} | null | undefined;
|
|
1991
2029
|
}>;
|
|
1992
2030
|
counterpartyNetwork: z.ZodOptional<z.ZodEnum<["ethereum", "starknet", "zksync", "zksync2"]>>;
|
|
2031
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
2032
|
+
isLootboxReward: z.ZodOptional<z.ZodBoolean>;
|
|
2033
|
+
}, "strip", z.ZodTypeAny, {
|
|
2034
|
+
isLootboxReward?: boolean | undefined;
|
|
2035
|
+
}, {
|
|
2036
|
+
isLootboxReward?: boolean | undefined;
|
|
2037
|
+
}>>;
|
|
1993
2038
|
}, "strip", z.ZodTypeAny, {
|
|
1994
2039
|
type: "payment";
|
|
1995
2040
|
leg: string;
|
|
@@ -2003,6 +2048,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
2003
2048
|
} | null | undefined;
|
|
2004
2049
|
};
|
|
2005
2050
|
counterparty: `0x${string}`;
|
|
2051
|
+
context?: {
|
|
2052
|
+
isLootboxReward?: boolean | undefined;
|
|
2053
|
+
} | undefined;
|
|
2006
2054
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
2007
2055
|
}, {
|
|
2008
2056
|
type: "payment";
|
|
@@ -2017,6 +2065,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
2017
2065
|
} | null | undefined;
|
|
2018
2066
|
};
|
|
2019
2067
|
counterparty: string;
|
|
2068
|
+
context?: {
|
|
2069
|
+
isLootboxReward?: boolean | undefined;
|
|
2070
|
+
} | undefined;
|
|
2020
2071
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
2021
2072
|
}>, z.ZodObject<{
|
|
2022
2073
|
type: z.ZodLiteral<"trade">;
|
|
@@ -2502,6 +2553,13 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
2502
2553
|
} | null | undefined;
|
|
2503
2554
|
}>;
|
|
2504
2555
|
counterpartyNetwork: z.ZodOptional<z.ZodEnum<["ethereum", "starknet", "zksync", "zksync2"]>>;
|
|
2556
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
2557
|
+
isLootboxReward: z.ZodOptional<z.ZodBoolean>;
|
|
2558
|
+
}, "strip", z.ZodTypeAny, {
|
|
2559
|
+
isLootboxReward?: boolean | undefined;
|
|
2560
|
+
}, {
|
|
2561
|
+
isLootboxReward?: boolean | undefined;
|
|
2562
|
+
}>>;
|
|
2505
2563
|
}, "strip", z.ZodTypeAny, {
|
|
2506
2564
|
type: "payment";
|
|
2507
2565
|
leg: string;
|
|
@@ -2515,6 +2573,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
2515
2573
|
} | null | undefined;
|
|
2516
2574
|
};
|
|
2517
2575
|
counterparty: `0x${string}`;
|
|
2576
|
+
context?: {
|
|
2577
|
+
isLootboxReward?: boolean | undefined;
|
|
2578
|
+
} | undefined;
|
|
2518
2579
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
2519
2580
|
}, {
|
|
2520
2581
|
type: "payment";
|
|
@@ -2529,6 +2590,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
2529
2590
|
} | null | undefined;
|
|
2530
2591
|
};
|
|
2531
2592
|
counterparty: string;
|
|
2593
|
+
context?: {
|
|
2594
|
+
isLootboxReward?: boolean | undefined;
|
|
2595
|
+
} | undefined;
|
|
2532
2596
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
2533
2597
|
}>, z.ZodObject<{
|
|
2534
2598
|
type: z.ZodLiteral<"trade">;
|
|
@@ -2934,6 +2998,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
2934
2998
|
} | null | undefined;
|
|
2935
2999
|
};
|
|
2936
3000
|
counterparty: `0x${string}`;
|
|
3001
|
+
context?: {
|
|
3002
|
+
isLootboxReward?: boolean | undefined;
|
|
3003
|
+
} | undefined;
|
|
2937
3004
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
2938
3005
|
} | {
|
|
2939
3006
|
type: "trade";
|
|
@@ -3043,6 +3110,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3043
3110
|
} | null | undefined;
|
|
3044
3111
|
};
|
|
3045
3112
|
counterparty: string;
|
|
3113
|
+
context?: {
|
|
3114
|
+
isLootboxReward?: boolean | undefined;
|
|
3115
|
+
} | undefined;
|
|
3046
3116
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
3047
3117
|
} | {
|
|
3048
3118
|
type: "trade";
|
|
@@ -3155,6 +3225,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3155
3225
|
} | null | undefined;
|
|
3156
3226
|
};
|
|
3157
3227
|
counterparty: `0x${string}`;
|
|
3228
|
+
context?: {
|
|
3229
|
+
isLootboxReward?: boolean | undefined;
|
|
3230
|
+
} | undefined;
|
|
3158
3231
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
3159
3232
|
} | {
|
|
3160
3233
|
type: "trade";
|
|
@@ -3267,6 +3340,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
3267
3340
|
} | null | undefined;
|
|
3268
3341
|
};
|
|
3269
3342
|
counterparty: string;
|
|
3343
|
+
context?: {
|
|
3344
|
+
isLootboxReward?: boolean | undefined;
|
|
3345
|
+
} | undefined;
|
|
3270
3346
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
3271
3347
|
} | {
|
|
3272
3348
|
type: "trade";
|
|
@@ -4232,6 +4308,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4232
4308
|
} | null | undefined;
|
|
4233
4309
|
};
|
|
4234
4310
|
counterparty: `0x${string}`;
|
|
4311
|
+
context?: {
|
|
4312
|
+
isLootboxReward?: boolean | undefined;
|
|
4313
|
+
} | undefined;
|
|
4235
4314
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
4236
4315
|
} | {
|
|
4237
4316
|
type: "trade";
|
|
@@ -4342,6 +4421,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4342
4421
|
} | null | undefined;
|
|
4343
4422
|
};
|
|
4344
4423
|
counterparty: `0x${string}`;
|
|
4424
|
+
context?: {
|
|
4425
|
+
isLootboxReward?: boolean | undefined;
|
|
4426
|
+
} | undefined;
|
|
4345
4427
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
4346
4428
|
} | {
|
|
4347
4429
|
type: "trade";
|
|
@@ -4666,6 +4748,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4666
4748
|
} | null | undefined;
|
|
4667
4749
|
};
|
|
4668
4750
|
counterparty: string;
|
|
4751
|
+
context?: {
|
|
4752
|
+
isLootboxReward?: boolean | undefined;
|
|
4753
|
+
} | undefined;
|
|
4669
4754
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
4670
4755
|
} | {
|
|
4671
4756
|
type: "trade";
|
|
@@ -4776,6 +4861,9 @@ export declare const activitySchema: z.ZodObject<{
|
|
|
4776
4861
|
} | null | undefined;
|
|
4777
4862
|
};
|
|
4778
4863
|
counterparty: string;
|
|
4864
|
+
context?: {
|
|
4865
|
+
isLootboxReward?: boolean | undefined;
|
|
4866
|
+
} | undefined;
|
|
4779
4867
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
4780
4868
|
} | {
|
|
4781
4869
|
type: "trade";
|
|
@@ -5449,6 +5537,13 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5449
5537
|
} | null | undefined;
|
|
5450
5538
|
}>;
|
|
5451
5539
|
counterpartyNetwork: z.ZodOptional<z.ZodEnum<["ethereum", "starknet", "zksync", "zksync2"]>>;
|
|
5540
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
5541
|
+
isLootboxReward: z.ZodOptional<z.ZodBoolean>;
|
|
5542
|
+
}, "strip", z.ZodTypeAny, {
|
|
5543
|
+
isLootboxReward?: boolean | undefined;
|
|
5544
|
+
}, {
|
|
5545
|
+
isLootboxReward?: boolean | undefined;
|
|
5546
|
+
}>>;
|
|
5452
5547
|
}, "strip", z.ZodTypeAny, {
|
|
5453
5548
|
type: "payment";
|
|
5454
5549
|
leg: string;
|
|
@@ -5462,6 +5557,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5462
5557
|
} | null | undefined;
|
|
5463
5558
|
};
|
|
5464
5559
|
counterparty: `0x${string}`;
|
|
5560
|
+
context?: {
|
|
5561
|
+
isLootboxReward?: boolean | undefined;
|
|
5562
|
+
} | undefined;
|
|
5465
5563
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
5466
5564
|
}, {
|
|
5467
5565
|
type: "payment";
|
|
@@ -5476,6 +5574,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5476
5574
|
} | null | undefined;
|
|
5477
5575
|
};
|
|
5478
5576
|
counterparty: string;
|
|
5577
|
+
context?: {
|
|
5578
|
+
isLootboxReward?: boolean | undefined;
|
|
5579
|
+
} | undefined;
|
|
5479
5580
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
5480
5581
|
}>, z.ZodObject<{
|
|
5481
5582
|
type: z.ZodLiteral<"trade">;
|
|
@@ -5961,6 +6062,13 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5961
6062
|
} | null | undefined;
|
|
5962
6063
|
}>;
|
|
5963
6064
|
counterpartyNetwork: z.ZodOptional<z.ZodEnum<["ethereum", "starknet", "zksync", "zksync2"]>>;
|
|
6065
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
6066
|
+
isLootboxReward: z.ZodOptional<z.ZodBoolean>;
|
|
6067
|
+
}, "strip", z.ZodTypeAny, {
|
|
6068
|
+
isLootboxReward?: boolean | undefined;
|
|
6069
|
+
}, {
|
|
6070
|
+
isLootboxReward?: boolean | undefined;
|
|
6071
|
+
}>>;
|
|
5964
6072
|
}, "strip", z.ZodTypeAny, {
|
|
5965
6073
|
type: "payment";
|
|
5966
6074
|
leg: string;
|
|
@@ -5974,6 +6082,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5974
6082
|
} | null | undefined;
|
|
5975
6083
|
};
|
|
5976
6084
|
counterparty: `0x${string}`;
|
|
6085
|
+
context?: {
|
|
6086
|
+
isLootboxReward?: boolean | undefined;
|
|
6087
|
+
} | undefined;
|
|
5977
6088
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
5978
6089
|
}, {
|
|
5979
6090
|
type: "payment";
|
|
@@ -5988,6 +6099,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5988
6099
|
} | null | undefined;
|
|
5989
6100
|
};
|
|
5990
6101
|
counterparty: string;
|
|
6102
|
+
context?: {
|
|
6103
|
+
isLootboxReward?: boolean | undefined;
|
|
6104
|
+
} | undefined;
|
|
5991
6105
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
5992
6106
|
}>, z.ZodObject<{
|
|
5993
6107
|
type: z.ZodLiteral<"trade">;
|
|
@@ -6393,6 +6507,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6393
6507
|
} | null | undefined;
|
|
6394
6508
|
};
|
|
6395
6509
|
counterparty: `0x${string}`;
|
|
6510
|
+
context?: {
|
|
6511
|
+
isLootboxReward?: boolean | undefined;
|
|
6512
|
+
} | undefined;
|
|
6396
6513
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
6397
6514
|
} | {
|
|
6398
6515
|
type: "trade";
|
|
@@ -6502,6 +6619,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6502
6619
|
} | null | undefined;
|
|
6503
6620
|
};
|
|
6504
6621
|
counterparty: string;
|
|
6622
|
+
context?: {
|
|
6623
|
+
isLootboxReward?: boolean | undefined;
|
|
6624
|
+
} | undefined;
|
|
6505
6625
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
6506
6626
|
} | {
|
|
6507
6627
|
type: "trade";
|
|
@@ -6614,6 +6734,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6614
6734
|
} | null | undefined;
|
|
6615
6735
|
};
|
|
6616
6736
|
counterparty: `0x${string}`;
|
|
6737
|
+
context?: {
|
|
6738
|
+
isLootboxReward?: boolean | undefined;
|
|
6739
|
+
} | undefined;
|
|
6617
6740
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
6618
6741
|
} | {
|
|
6619
6742
|
type: "trade";
|
|
@@ -6726,6 +6849,9 @@ export declare const nativeActivitySchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6726
6849
|
} | null | undefined;
|
|
6727
6850
|
};
|
|
6728
6851
|
counterparty: string;
|
|
6852
|
+
context?: {
|
|
6853
|
+
isLootboxReward?: boolean | undefined;
|
|
6854
|
+
} | undefined;
|
|
6729
6855
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
6730
6856
|
} | {
|
|
6731
6857
|
type: "trade";
|
|
@@ -8503,6 +8629,13 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
8503
8629
|
} | null | undefined;
|
|
8504
8630
|
}>;
|
|
8505
8631
|
counterpartyNetwork: z.ZodOptional<z.ZodEnum<["ethereum", "starknet", "zksync", "zksync2"]>>;
|
|
8632
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
8633
|
+
isLootboxReward: z.ZodOptional<z.ZodBoolean>;
|
|
8634
|
+
}, "strip", z.ZodTypeAny, {
|
|
8635
|
+
isLootboxReward?: boolean | undefined;
|
|
8636
|
+
}, {
|
|
8637
|
+
isLootboxReward?: boolean | undefined;
|
|
8638
|
+
}>>;
|
|
8506
8639
|
}, "strip", z.ZodTypeAny, {
|
|
8507
8640
|
type: "payment";
|
|
8508
8641
|
leg: string;
|
|
@@ -8516,6 +8649,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
8516
8649
|
} | null | undefined;
|
|
8517
8650
|
};
|
|
8518
8651
|
counterparty: `0x${string}`;
|
|
8652
|
+
context?: {
|
|
8653
|
+
isLootboxReward?: boolean | undefined;
|
|
8654
|
+
} | undefined;
|
|
8519
8655
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
8520
8656
|
}, {
|
|
8521
8657
|
type: "payment";
|
|
@@ -8530,6 +8666,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
8530
8666
|
} | null | undefined;
|
|
8531
8667
|
};
|
|
8532
8668
|
counterparty: string;
|
|
8669
|
+
context?: {
|
|
8670
|
+
isLootboxReward?: boolean | undefined;
|
|
8671
|
+
} | undefined;
|
|
8533
8672
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
8534
8673
|
}>, z.ZodObject<{
|
|
8535
8674
|
type: z.ZodLiteral<"trade">;
|
|
@@ -9015,6 +9154,13 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9015
9154
|
} | null | undefined;
|
|
9016
9155
|
}>;
|
|
9017
9156
|
counterpartyNetwork: z.ZodOptional<z.ZodEnum<["ethereum", "starknet", "zksync", "zksync2"]>>;
|
|
9157
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
9158
|
+
isLootboxReward: z.ZodOptional<z.ZodBoolean>;
|
|
9159
|
+
}, "strip", z.ZodTypeAny, {
|
|
9160
|
+
isLootboxReward?: boolean | undefined;
|
|
9161
|
+
}, {
|
|
9162
|
+
isLootboxReward?: boolean | undefined;
|
|
9163
|
+
}>>;
|
|
9018
9164
|
}, "strip", z.ZodTypeAny, {
|
|
9019
9165
|
type: "payment";
|
|
9020
9166
|
leg: string;
|
|
@@ -9028,6 +9174,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9028
9174
|
} | null | undefined;
|
|
9029
9175
|
};
|
|
9030
9176
|
counterparty: `0x${string}`;
|
|
9177
|
+
context?: {
|
|
9178
|
+
isLootboxReward?: boolean | undefined;
|
|
9179
|
+
} | undefined;
|
|
9031
9180
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
9032
9181
|
}, {
|
|
9033
9182
|
type: "payment";
|
|
@@ -9042,6 +9191,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9042
9191
|
} | null | undefined;
|
|
9043
9192
|
};
|
|
9044
9193
|
counterparty: string;
|
|
9194
|
+
context?: {
|
|
9195
|
+
isLootboxReward?: boolean | undefined;
|
|
9196
|
+
} | undefined;
|
|
9045
9197
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
9046
9198
|
}>, z.ZodObject<{
|
|
9047
9199
|
type: z.ZodLiteral<"trade">;
|
|
@@ -9447,6 +9599,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9447
9599
|
} | null | undefined;
|
|
9448
9600
|
};
|
|
9449
9601
|
counterparty: `0x${string}`;
|
|
9602
|
+
context?: {
|
|
9603
|
+
isLootboxReward?: boolean | undefined;
|
|
9604
|
+
} | undefined;
|
|
9450
9605
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
9451
9606
|
} | {
|
|
9452
9607
|
type: "trade";
|
|
@@ -9556,6 +9711,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9556
9711
|
} | null | undefined;
|
|
9557
9712
|
};
|
|
9558
9713
|
counterparty: string;
|
|
9714
|
+
context?: {
|
|
9715
|
+
isLootboxReward?: boolean | undefined;
|
|
9716
|
+
} | undefined;
|
|
9559
9717
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
9560
9718
|
} | {
|
|
9561
9719
|
type: "trade";
|
|
@@ -9668,6 +9826,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9668
9826
|
} | null | undefined;
|
|
9669
9827
|
};
|
|
9670
9828
|
counterparty: `0x${string}`;
|
|
9829
|
+
context?: {
|
|
9830
|
+
isLootboxReward?: boolean | undefined;
|
|
9831
|
+
} | undefined;
|
|
9671
9832
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
9672
9833
|
} | {
|
|
9673
9834
|
type: "trade";
|
|
@@ -9780,6 +9941,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
9780
9941
|
} | null | undefined;
|
|
9781
9942
|
};
|
|
9782
9943
|
counterparty: string;
|
|
9944
|
+
context?: {
|
|
9945
|
+
isLootboxReward?: boolean | undefined;
|
|
9946
|
+
} | undefined;
|
|
9783
9947
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
9784
9948
|
} | {
|
|
9785
9949
|
type: "trade";
|
|
@@ -10745,6 +10909,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10745
10909
|
} | null | undefined;
|
|
10746
10910
|
};
|
|
10747
10911
|
counterparty: `0x${string}`;
|
|
10912
|
+
context?: {
|
|
10913
|
+
isLootboxReward?: boolean | undefined;
|
|
10914
|
+
} | undefined;
|
|
10748
10915
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
10749
10916
|
} | {
|
|
10750
10917
|
type: "trade";
|
|
@@ -10855,6 +11022,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
10855
11022
|
} | null | undefined;
|
|
10856
11023
|
};
|
|
10857
11024
|
counterparty: `0x${string}`;
|
|
11025
|
+
context?: {
|
|
11026
|
+
isLootboxReward?: boolean | undefined;
|
|
11027
|
+
} | undefined;
|
|
10858
11028
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
10859
11029
|
} | {
|
|
10860
11030
|
type: "trade";
|
|
@@ -11179,6 +11349,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11179
11349
|
} | null | undefined;
|
|
11180
11350
|
};
|
|
11181
11351
|
counterparty: string;
|
|
11352
|
+
context?: {
|
|
11353
|
+
isLootboxReward?: boolean | undefined;
|
|
11354
|
+
} | undefined;
|
|
11182
11355
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
11183
11356
|
} | {
|
|
11184
11357
|
type: "trade";
|
|
@@ -11289,6 +11462,9 @@ export declare const activitiesSchema: z.ZodArray<z.ZodObject<{
|
|
|
11289
11462
|
} | null | undefined;
|
|
11290
11463
|
};
|
|
11291
11464
|
counterparty: string;
|
|
11465
|
+
context?: {
|
|
11466
|
+
isLootboxReward?: boolean | undefined;
|
|
11467
|
+
} | undefined;
|
|
11292
11468
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
11293
11469
|
} | {
|
|
11294
11470
|
type: "trade";
|
|
@@ -11865,6 +12041,13 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
11865
12041
|
} | null | undefined;
|
|
11866
12042
|
}>;
|
|
11867
12043
|
counterpartyNetwork: z.ZodOptional<z.ZodEnum<["ethereum", "starknet", "zksync", "zksync2"]>>;
|
|
12044
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
12045
|
+
isLootboxReward: z.ZodOptional<z.ZodBoolean>;
|
|
12046
|
+
}, "strip", z.ZodTypeAny, {
|
|
12047
|
+
isLootboxReward?: boolean | undefined;
|
|
12048
|
+
}, {
|
|
12049
|
+
isLootboxReward?: boolean | undefined;
|
|
12050
|
+
}>>;
|
|
11868
12051
|
}, "strip", z.ZodTypeAny, {
|
|
11869
12052
|
type: "payment";
|
|
11870
12053
|
leg: string;
|
|
@@ -11878,6 +12061,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
11878
12061
|
} | null | undefined;
|
|
11879
12062
|
};
|
|
11880
12063
|
counterparty: `0x${string}`;
|
|
12064
|
+
context?: {
|
|
12065
|
+
isLootboxReward?: boolean | undefined;
|
|
12066
|
+
} | undefined;
|
|
11881
12067
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
11882
12068
|
}, {
|
|
11883
12069
|
type: "payment";
|
|
@@ -11892,6 +12078,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
11892
12078
|
} | null | undefined;
|
|
11893
12079
|
};
|
|
11894
12080
|
counterparty: string;
|
|
12081
|
+
context?: {
|
|
12082
|
+
isLootboxReward?: boolean | undefined;
|
|
12083
|
+
} | undefined;
|
|
11895
12084
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
11896
12085
|
}>, z.ZodObject<{
|
|
11897
12086
|
type: z.ZodLiteral<"trade">;
|
|
@@ -12377,6 +12566,13 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12377
12566
|
} | null | undefined;
|
|
12378
12567
|
}>;
|
|
12379
12568
|
counterpartyNetwork: z.ZodOptional<z.ZodEnum<["ethereum", "starknet", "zksync", "zksync2"]>>;
|
|
12569
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
12570
|
+
isLootboxReward: z.ZodOptional<z.ZodBoolean>;
|
|
12571
|
+
}, "strip", z.ZodTypeAny, {
|
|
12572
|
+
isLootboxReward?: boolean | undefined;
|
|
12573
|
+
}, {
|
|
12574
|
+
isLootboxReward?: boolean | undefined;
|
|
12575
|
+
}>>;
|
|
12380
12576
|
}, "strip", z.ZodTypeAny, {
|
|
12381
12577
|
type: "payment";
|
|
12382
12578
|
leg: string;
|
|
@@ -12390,6 +12586,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12390
12586
|
} | null | undefined;
|
|
12391
12587
|
};
|
|
12392
12588
|
counterparty: `0x${string}`;
|
|
12589
|
+
context?: {
|
|
12590
|
+
isLootboxReward?: boolean | undefined;
|
|
12591
|
+
} | undefined;
|
|
12393
12592
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
12394
12593
|
}, {
|
|
12395
12594
|
type: "payment";
|
|
@@ -12404,6 +12603,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12404
12603
|
} | null | undefined;
|
|
12405
12604
|
};
|
|
12406
12605
|
counterparty: string;
|
|
12606
|
+
context?: {
|
|
12607
|
+
isLootboxReward?: boolean | undefined;
|
|
12608
|
+
} | undefined;
|
|
12407
12609
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
12408
12610
|
}>, z.ZodObject<{
|
|
12409
12611
|
type: z.ZodLiteral<"trade">;
|
|
@@ -12809,6 +13011,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12809
13011
|
} | null | undefined;
|
|
12810
13012
|
};
|
|
12811
13013
|
counterparty: `0x${string}`;
|
|
13014
|
+
context?: {
|
|
13015
|
+
isLootboxReward?: boolean | undefined;
|
|
13016
|
+
} | undefined;
|
|
12812
13017
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
12813
13018
|
} | {
|
|
12814
13019
|
type: "trade";
|
|
@@ -12918,6 +13123,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
12918
13123
|
} | null | undefined;
|
|
12919
13124
|
};
|
|
12920
13125
|
counterparty: string;
|
|
13126
|
+
context?: {
|
|
13127
|
+
isLootboxReward?: boolean | undefined;
|
|
13128
|
+
} | undefined;
|
|
12921
13129
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
12922
13130
|
} | {
|
|
12923
13131
|
type: "trade";
|
|
@@ -13030,6 +13238,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13030
13238
|
} | null | undefined;
|
|
13031
13239
|
};
|
|
13032
13240
|
counterparty: `0x${string}`;
|
|
13241
|
+
context?: {
|
|
13242
|
+
isLootboxReward?: boolean | undefined;
|
|
13243
|
+
} | undefined;
|
|
13033
13244
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
13034
13245
|
} | {
|
|
13035
13246
|
type: "trade";
|
|
@@ -13142,6 +13353,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
13142
13353
|
} | null | undefined;
|
|
13143
13354
|
};
|
|
13144
13355
|
counterparty: string;
|
|
13356
|
+
context?: {
|
|
13357
|
+
isLootboxReward?: boolean | undefined;
|
|
13358
|
+
} | undefined;
|
|
13145
13359
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
13146
13360
|
} | {
|
|
13147
13361
|
type: "trade";
|
|
@@ -14107,6 +14321,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14107
14321
|
} | null | undefined;
|
|
14108
14322
|
};
|
|
14109
14323
|
counterparty: `0x${string}`;
|
|
14324
|
+
context?: {
|
|
14325
|
+
isLootboxReward?: boolean | undefined;
|
|
14326
|
+
} | undefined;
|
|
14110
14327
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
14111
14328
|
} | {
|
|
14112
14329
|
type: "trade";
|
|
@@ -14217,6 +14434,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14217
14434
|
} | null | undefined;
|
|
14218
14435
|
};
|
|
14219
14436
|
counterparty: `0x${string}`;
|
|
14437
|
+
context?: {
|
|
14438
|
+
isLootboxReward?: boolean | undefined;
|
|
14439
|
+
} | undefined;
|
|
14220
14440
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
14221
14441
|
} | {
|
|
14222
14442
|
type: "trade";
|
|
@@ -14541,6 +14761,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14541
14761
|
} | null | undefined;
|
|
14542
14762
|
};
|
|
14543
14763
|
counterparty: string;
|
|
14764
|
+
context?: {
|
|
14765
|
+
isLootboxReward?: boolean | undefined;
|
|
14766
|
+
} | undefined;
|
|
14544
14767
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
14545
14768
|
} | {
|
|
14546
14769
|
type: "trade";
|
|
@@ -14651,6 +14874,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14651
14874
|
} | null | undefined;
|
|
14652
14875
|
};
|
|
14653
14876
|
counterparty: string;
|
|
14877
|
+
context?: {
|
|
14878
|
+
isLootboxReward?: boolean | undefined;
|
|
14879
|
+
} | undefined;
|
|
14654
14880
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
14655
14881
|
} | {
|
|
14656
14882
|
type: "trade";
|
|
@@ -14983,6 +15209,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
14983
15209
|
} | null | undefined;
|
|
14984
15210
|
};
|
|
14985
15211
|
counterparty: `0x${string}`;
|
|
15212
|
+
context?: {
|
|
15213
|
+
isLootboxReward?: boolean | undefined;
|
|
15214
|
+
} | undefined;
|
|
14986
15215
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
14987
15216
|
} | {
|
|
14988
15217
|
type: "trade";
|
|
@@ -15093,6 +15322,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15093
15322
|
} | null | undefined;
|
|
15094
15323
|
};
|
|
15095
15324
|
counterparty: `0x${string}`;
|
|
15325
|
+
context?: {
|
|
15326
|
+
isLootboxReward?: boolean | undefined;
|
|
15327
|
+
} | undefined;
|
|
15096
15328
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
15097
15329
|
} | {
|
|
15098
15330
|
type: "trade";
|
|
@@ -15423,6 +15655,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15423
15655
|
} | null | undefined;
|
|
15424
15656
|
};
|
|
15425
15657
|
counterparty: string;
|
|
15658
|
+
context?: {
|
|
15659
|
+
isLootboxReward?: boolean | undefined;
|
|
15660
|
+
} | undefined;
|
|
15426
15661
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
15427
15662
|
} | {
|
|
15428
15663
|
type: "trade";
|
|
@@ -15533,6 +15768,9 @@ export declare const activityResponseSchema: z.ZodObject<{
|
|
|
15533
15768
|
} | null | undefined;
|
|
15534
15769
|
};
|
|
15535
15770
|
counterparty: string;
|
|
15771
|
+
context?: {
|
|
15772
|
+
isLootboxReward?: boolean | undefined;
|
|
15773
|
+
} | undefined;
|
|
15536
15774
|
counterpartyNetwork?: "ethereum" | "zksync" | "zksync2" | "starknet" | undefined;
|
|
15537
15775
|
} | {
|
|
15538
15776
|
type: "trade";
|