@argent/x-shared 1.62.11 → 1.62.12
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/src/features/simulation/activity/schema.d.ts +10 -10
- package/dist/src/features/simulation/transactionReview/schema.cjs +1 -1
- package/dist/src/features/simulation/transactionReview/schema.d.ts +180 -180
- package/dist/src/features/simulation/transactionReview/schema.js +2 -2
- package/package.json +1 -1
|
@@ -2104,8 +2104,8 @@ export declare const reviewSchema: z.ZodObject<{
|
|
|
2104
2104
|
export declare const targetedDappSchema: z.ZodObject<{
|
|
2105
2105
|
name: z.ZodString;
|
|
2106
2106
|
description: z.ZodString;
|
|
2107
|
-
logoUrl: z.ZodString
|
|
2108
|
-
iconUrl: z.ZodString
|
|
2107
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
2108
|
+
iconUrl: z.ZodOptional<z.ZodString>;
|
|
2109
2109
|
argentVerified: z.ZodBoolean;
|
|
2110
2110
|
links: z.ZodArray<z.ZodObject<{
|
|
2111
2111
|
name: z.ZodString;
|
|
@@ -2123,25 +2123,25 @@ export declare const targetedDappSchema: z.ZodObject<{
|
|
|
2123
2123
|
}, "strip", z.ZodTypeAny, {
|
|
2124
2124
|
name: string;
|
|
2125
2125
|
description: string;
|
|
2126
|
-
logoUrl: string;
|
|
2127
2126
|
argentVerified: boolean;
|
|
2128
2127
|
links: {
|
|
2129
2128
|
name: string;
|
|
2130
2129
|
url: string;
|
|
2131
2130
|
position: number;
|
|
2132
2131
|
}[];
|
|
2133
|
-
|
|
2132
|
+
logoUrl?: string | undefined;
|
|
2133
|
+
iconUrl?: string | undefined;
|
|
2134
2134
|
}, {
|
|
2135
2135
|
name: string;
|
|
2136
2136
|
description: string;
|
|
2137
|
-
logoUrl: string;
|
|
2138
2137
|
argentVerified: boolean;
|
|
2139
2138
|
links: {
|
|
2140
2139
|
name: string;
|
|
2141
2140
|
url: string;
|
|
2142
2141
|
position: number;
|
|
2143
2142
|
}[];
|
|
2144
|
-
|
|
2143
|
+
logoUrl?: string | undefined;
|
|
2144
|
+
iconUrl?: string | undefined;
|
|
2145
2145
|
}>;
|
|
2146
2146
|
declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
2147
2147
|
assessment: z.ZodUnion<[z.ZodLiteral<"verified">, z.ZodLiteral<"neutral">, z.ZodLiteral<"partial">, z.ZodLiteral<"warn">]>;
|
|
@@ -2198,8 +2198,8 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
2198
2198
|
targetedDapp: z.ZodOptional<z.ZodObject<{
|
|
2199
2199
|
name: z.ZodString;
|
|
2200
2200
|
description: z.ZodString;
|
|
2201
|
-
logoUrl: z.ZodString
|
|
2202
|
-
iconUrl: z.ZodString
|
|
2201
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
2202
|
+
iconUrl: z.ZodOptional<z.ZodString>;
|
|
2203
2203
|
argentVerified: z.ZodBoolean;
|
|
2204
2204
|
links: z.ZodArray<z.ZodObject<{
|
|
2205
2205
|
name: z.ZodString;
|
|
@@ -2217,25 +2217,25 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
2217
2217
|
}, "strip", z.ZodTypeAny, {
|
|
2218
2218
|
name: string;
|
|
2219
2219
|
description: string;
|
|
2220
|
-
logoUrl: string;
|
|
2221
2220
|
argentVerified: boolean;
|
|
2222
2221
|
links: {
|
|
2223
2222
|
name: string;
|
|
2224
2223
|
url: string;
|
|
2225
2224
|
position: number;
|
|
2226
2225
|
}[];
|
|
2227
|
-
|
|
2226
|
+
logoUrl?: string | undefined;
|
|
2227
|
+
iconUrl?: string | undefined;
|
|
2228
2228
|
}, {
|
|
2229
2229
|
name: string;
|
|
2230
2230
|
description: string;
|
|
2231
|
-
logoUrl: string;
|
|
2232
2231
|
argentVerified: boolean;
|
|
2233
2232
|
links: {
|
|
2234
2233
|
name: string;
|
|
2235
2234
|
url: string;
|
|
2236
2235
|
position: number;
|
|
2237
2236
|
}[];
|
|
2238
|
-
|
|
2237
|
+
logoUrl?: string | undefined;
|
|
2238
|
+
iconUrl?: string | undefined;
|
|
2239
2239
|
}>>;
|
|
2240
2240
|
reviews: z.ZodArray<z.ZodObject<{
|
|
2241
2241
|
assessment: z.ZodUnion<[z.ZodLiteral<"verified">, z.ZodLiteral<"neutral">, z.ZodLiteral<"partial">, z.ZodLiteral<"warn">]>;
|
|
@@ -3478,14 +3478,14 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
3478
3478
|
targetedDapp?: {
|
|
3479
3479
|
name: string;
|
|
3480
3480
|
description: string;
|
|
3481
|
-
logoUrl: string;
|
|
3482
3481
|
argentVerified: boolean;
|
|
3483
3482
|
links: {
|
|
3484
3483
|
name: string;
|
|
3485
3484
|
url: string;
|
|
3486
3485
|
position: number;
|
|
3487
3486
|
}[];
|
|
3488
|
-
|
|
3487
|
+
logoUrl?: string | undefined;
|
|
3488
|
+
iconUrl?: string | undefined;
|
|
3489
3489
|
} | undefined;
|
|
3490
3490
|
}, {
|
|
3491
3491
|
assessment: "verified" | "neutral" | "partial" | "warn";
|
|
@@ -3653,14 +3653,14 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
3653
3653
|
targetedDapp?: {
|
|
3654
3654
|
name: string;
|
|
3655
3655
|
description: string;
|
|
3656
|
-
logoUrl: string;
|
|
3657
3656
|
argentVerified: boolean;
|
|
3658
3657
|
links: {
|
|
3659
3658
|
name: string;
|
|
3660
3659
|
url: string;
|
|
3661
3660
|
position: number;
|
|
3662
3661
|
}[];
|
|
3663
|
-
|
|
3662
|
+
logoUrl?: string | undefined;
|
|
3663
|
+
iconUrl?: string | undefined;
|
|
3664
3664
|
} | undefined;
|
|
3665
3665
|
}>>;
|
|
3666
3666
|
export declare const feeEstimationTxV1Schema: z.ZodObject<{
|
|
@@ -5234,8 +5234,8 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
5234
5234
|
targetedDapp: z.ZodOptional<z.ZodObject<{
|
|
5235
5235
|
name: z.ZodString;
|
|
5236
5236
|
description: z.ZodString;
|
|
5237
|
-
logoUrl: z.ZodString
|
|
5238
|
-
iconUrl: z.ZodString
|
|
5237
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
5238
|
+
iconUrl: z.ZodOptional<z.ZodString>;
|
|
5239
5239
|
argentVerified: z.ZodBoolean;
|
|
5240
5240
|
links: z.ZodArray<z.ZodObject<{
|
|
5241
5241
|
name: z.ZodString;
|
|
@@ -5253,25 +5253,25 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
5253
5253
|
}, "strip", z.ZodTypeAny, {
|
|
5254
5254
|
name: string;
|
|
5255
5255
|
description: string;
|
|
5256
|
-
logoUrl: string;
|
|
5257
5256
|
argentVerified: boolean;
|
|
5258
5257
|
links: {
|
|
5259
5258
|
name: string;
|
|
5260
5259
|
url: string;
|
|
5261
5260
|
position: number;
|
|
5262
5261
|
}[];
|
|
5263
|
-
|
|
5262
|
+
logoUrl?: string | undefined;
|
|
5263
|
+
iconUrl?: string | undefined;
|
|
5264
5264
|
}, {
|
|
5265
5265
|
name: string;
|
|
5266
5266
|
description: string;
|
|
5267
|
-
logoUrl: string;
|
|
5268
5267
|
argentVerified: boolean;
|
|
5269
5268
|
links: {
|
|
5270
5269
|
name: string;
|
|
5271
5270
|
url: string;
|
|
5272
5271
|
position: number;
|
|
5273
5272
|
}[];
|
|
5274
|
-
|
|
5273
|
+
logoUrl?: string | undefined;
|
|
5274
|
+
iconUrl?: string | undefined;
|
|
5275
5275
|
}>>;
|
|
5276
5276
|
reviews: z.ZodArray<z.ZodObject<{
|
|
5277
5277
|
assessment: z.ZodUnion<[z.ZodLiteral<"verified">, z.ZodLiteral<"neutral">, z.ZodLiteral<"partial">, z.ZodLiteral<"warn">]>;
|
|
@@ -6514,14 +6514,14 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
6514
6514
|
targetedDapp?: {
|
|
6515
6515
|
name: string;
|
|
6516
6516
|
description: string;
|
|
6517
|
-
logoUrl: string;
|
|
6518
6517
|
argentVerified: boolean;
|
|
6519
6518
|
links: {
|
|
6520
6519
|
name: string;
|
|
6521
6520
|
url: string;
|
|
6522
6521
|
position: number;
|
|
6523
6522
|
}[];
|
|
6524
|
-
|
|
6523
|
+
logoUrl?: string | undefined;
|
|
6524
|
+
iconUrl?: string | undefined;
|
|
6525
6525
|
} | undefined;
|
|
6526
6526
|
}, {
|
|
6527
6527
|
assessment: "verified" | "neutral" | "partial" | "warn";
|
|
@@ -6689,14 +6689,14 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
6689
6689
|
targetedDapp?: {
|
|
6690
6690
|
name: string;
|
|
6691
6691
|
description: string;
|
|
6692
|
-
logoUrl: string;
|
|
6693
6692
|
argentVerified: boolean;
|
|
6694
6693
|
links: {
|
|
6695
6694
|
name: string;
|
|
6696
6695
|
url: string;
|
|
6697
6696
|
position: number;
|
|
6698
6697
|
}[];
|
|
6699
|
-
|
|
6698
|
+
logoUrl?: string | undefined;
|
|
6699
|
+
iconUrl?: string | undefined;
|
|
6700
6700
|
} | undefined;
|
|
6701
6701
|
}>>;
|
|
6702
6702
|
simulation: z.ZodObject<{
|
|
@@ -8011,14 +8011,14 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
8011
8011
|
targetedDapp?: {
|
|
8012
8012
|
name: string;
|
|
8013
8013
|
description: string;
|
|
8014
|
-
logoUrl: string;
|
|
8015
8014
|
argentVerified: boolean;
|
|
8016
8015
|
links: {
|
|
8017
8016
|
name: string;
|
|
8018
8017
|
url: string;
|
|
8019
8018
|
position: number;
|
|
8020
8019
|
}[];
|
|
8021
|
-
|
|
8020
|
+
logoUrl?: string | undefined;
|
|
8021
|
+
iconUrl?: string | undefined;
|
|
8022
8022
|
} | undefined;
|
|
8023
8023
|
} | undefined;
|
|
8024
8024
|
simulationError?: undefined;
|
|
@@ -8344,14 +8344,14 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
8344
8344
|
targetedDapp?: {
|
|
8345
8345
|
name: string;
|
|
8346
8346
|
description: string;
|
|
8347
|
-
logoUrl: string;
|
|
8348
8347
|
argentVerified: boolean;
|
|
8349
8348
|
links: {
|
|
8350
8349
|
name: string;
|
|
8351
8350
|
url: string;
|
|
8352
8351
|
position: number;
|
|
8353
8352
|
}[];
|
|
8354
|
-
|
|
8353
|
+
logoUrl?: string | undefined;
|
|
8354
|
+
iconUrl?: string | undefined;
|
|
8355
8355
|
} | undefined;
|
|
8356
8356
|
} | undefined;
|
|
8357
8357
|
simulationError?: undefined;
|
|
@@ -8412,8 +8412,8 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
8412
8412
|
targetedDapp: z.ZodOptional<z.ZodObject<{
|
|
8413
8413
|
name: z.ZodString;
|
|
8414
8414
|
description: z.ZodString;
|
|
8415
|
-
logoUrl: z.ZodString
|
|
8416
|
-
iconUrl: z.ZodString
|
|
8415
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
8416
|
+
iconUrl: z.ZodOptional<z.ZodString>;
|
|
8417
8417
|
argentVerified: z.ZodBoolean;
|
|
8418
8418
|
links: z.ZodArray<z.ZodObject<{
|
|
8419
8419
|
name: z.ZodString;
|
|
@@ -8431,25 +8431,25 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
8431
8431
|
}, "strip", z.ZodTypeAny, {
|
|
8432
8432
|
name: string;
|
|
8433
8433
|
description: string;
|
|
8434
|
-
logoUrl: string;
|
|
8435
8434
|
argentVerified: boolean;
|
|
8436
8435
|
links: {
|
|
8437
8436
|
name: string;
|
|
8438
8437
|
url: string;
|
|
8439
8438
|
position: number;
|
|
8440
8439
|
}[];
|
|
8441
|
-
|
|
8440
|
+
logoUrl?: string | undefined;
|
|
8441
|
+
iconUrl?: string | undefined;
|
|
8442
8442
|
}, {
|
|
8443
8443
|
name: string;
|
|
8444
8444
|
description: string;
|
|
8445
|
-
logoUrl: string;
|
|
8446
8445
|
argentVerified: boolean;
|
|
8447
8446
|
links: {
|
|
8448
8447
|
name: string;
|
|
8449
8448
|
url: string;
|
|
8450
8449
|
position: number;
|
|
8451
8450
|
}[];
|
|
8452
|
-
|
|
8451
|
+
logoUrl?: string | undefined;
|
|
8452
|
+
iconUrl?: string | undefined;
|
|
8453
8453
|
}>>;
|
|
8454
8454
|
reviews: z.ZodArray<z.ZodObject<{
|
|
8455
8455
|
assessment: z.ZodUnion<[z.ZodLiteral<"verified">, z.ZodLiteral<"neutral">, z.ZodLiteral<"partial">, z.ZodLiteral<"warn">]>;
|
|
@@ -9692,14 +9692,14 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
9692
9692
|
targetedDapp?: {
|
|
9693
9693
|
name: string;
|
|
9694
9694
|
description: string;
|
|
9695
|
-
logoUrl: string;
|
|
9696
9695
|
argentVerified: boolean;
|
|
9697
9696
|
links: {
|
|
9698
9697
|
name: string;
|
|
9699
9698
|
url: string;
|
|
9700
9699
|
position: number;
|
|
9701
9700
|
}[];
|
|
9702
|
-
|
|
9701
|
+
logoUrl?: string | undefined;
|
|
9702
|
+
iconUrl?: string | undefined;
|
|
9703
9703
|
} | undefined;
|
|
9704
9704
|
}, {
|
|
9705
9705
|
assessment: "verified" | "neutral" | "partial" | "warn";
|
|
@@ -9867,14 +9867,14 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
9867
9867
|
targetedDapp?: {
|
|
9868
9868
|
name: string;
|
|
9869
9869
|
description: string;
|
|
9870
|
-
logoUrl: string;
|
|
9871
9870
|
argentVerified: boolean;
|
|
9872
9871
|
links: {
|
|
9873
9872
|
name: string;
|
|
9874
9873
|
url: string;
|
|
9875
9874
|
position: number;
|
|
9876
9875
|
}[];
|
|
9877
|
-
|
|
9876
|
+
logoUrl?: string | undefined;
|
|
9877
|
+
iconUrl?: string | undefined;
|
|
9878
9878
|
} | undefined;
|
|
9879
9879
|
}>>;
|
|
9880
9880
|
simulation: z.ZodUndefined;
|
|
@@ -10067,14 +10067,14 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
10067
10067
|
targetedDapp?: {
|
|
10068
10068
|
name: string;
|
|
10069
10069
|
description: string;
|
|
10070
|
-
logoUrl: string;
|
|
10071
10070
|
argentVerified: boolean;
|
|
10072
10071
|
links: {
|
|
10073
10072
|
name: string;
|
|
10074
10073
|
url: string;
|
|
10075
10074
|
position: number;
|
|
10076
10075
|
}[];
|
|
10077
|
-
|
|
10076
|
+
logoUrl?: string | undefined;
|
|
10077
|
+
iconUrl?: string | undefined;
|
|
10078
10078
|
} | undefined;
|
|
10079
10079
|
} | undefined;
|
|
10080
10080
|
simulation?: undefined;
|
|
@@ -10251,14 +10251,14 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
10251
10251
|
targetedDapp?: {
|
|
10252
10252
|
name: string;
|
|
10253
10253
|
description: string;
|
|
10254
|
-
logoUrl: string;
|
|
10255
10254
|
argentVerified: boolean;
|
|
10256
10255
|
links: {
|
|
10257
10256
|
name: string;
|
|
10258
10257
|
url: string;
|
|
10259
10258
|
position: number;
|
|
10260
10259
|
}[];
|
|
10261
|
-
|
|
10260
|
+
logoUrl?: string | undefined;
|
|
10261
|
+
iconUrl?: string | undefined;
|
|
10262
10262
|
} | undefined;
|
|
10263
10263
|
} | undefined;
|
|
10264
10264
|
simulation?: undefined;
|
|
@@ -10319,8 +10319,8 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10319
10319
|
targetedDapp: z.ZodOptional<z.ZodObject<{
|
|
10320
10320
|
name: z.ZodString;
|
|
10321
10321
|
description: z.ZodString;
|
|
10322
|
-
logoUrl: z.ZodString
|
|
10323
|
-
iconUrl: z.ZodString
|
|
10322
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
10323
|
+
iconUrl: z.ZodOptional<z.ZodString>;
|
|
10324
10324
|
argentVerified: z.ZodBoolean;
|
|
10325
10325
|
links: z.ZodArray<z.ZodObject<{
|
|
10326
10326
|
name: z.ZodString;
|
|
@@ -10338,25 +10338,25 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10338
10338
|
}, "strip", z.ZodTypeAny, {
|
|
10339
10339
|
name: string;
|
|
10340
10340
|
description: string;
|
|
10341
|
-
logoUrl: string;
|
|
10342
10341
|
argentVerified: boolean;
|
|
10343
10342
|
links: {
|
|
10344
10343
|
name: string;
|
|
10345
10344
|
url: string;
|
|
10346
10345
|
position: number;
|
|
10347
10346
|
}[];
|
|
10348
|
-
|
|
10347
|
+
logoUrl?: string | undefined;
|
|
10348
|
+
iconUrl?: string | undefined;
|
|
10349
10349
|
}, {
|
|
10350
10350
|
name: string;
|
|
10351
10351
|
description: string;
|
|
10352
|
-
logoUrl: string;
|
|
10353
10352
|
argentVerified: boolean;
|
|
10354
10353
|
links: {
|
|
10355
10354
|
name: string;
|
|
10356
10355
|
url: string;
|
|
10357
10356
|
position: number;
|
|
10358
10357
|
}[];
|
|
10359
|
-
|
|
10358
|
+
logoUrl?: string | undefined;
|
|
10359
|
+
iconUrl?: string | undefined;
|
|
10360
10360
|
}>>;
|
|
10361
10361
|
reviews: z.ZodArray<z.ZodObject<{
|
|
10362
10362
|
assessment: z.ZodUnion<[z.ZodLiteral<"verified">, z.ZodLiteral<"neutral">, z.ZodLiteral<"partial">, z.ZodLiteral<"warn">]>;
|
|
@@ -11599,14 +11599,14 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11599
11599
|
targetedDapp?: {
|
|
11600
11600
|
name: string;
|
|
11601
11601
|
description: string;
|
|
11602
|
-
logoUrl: string;
|
|
11603
11602
|
argentVerified: boolean;
|
|
11604
11603
|
links: {
|
|
11605
11604
|
name: string;
|
|
11606
11605
|
url: string;
|
|
11607
11606
|
position: number;
|
|
11608
11607
|
}[];
|
|
11609
|
-
|
|
11608
|
+
logoUrl?: string | undefined;
|
|
11609
|
+
iconUrl?: string | undefined;
|
|
11610
11610
|
} | undefined;
|
|
11611
11611
|
}, {
|
|
11612
11612
|
assessment: "verified" | "neutral" | "partial" | "warn";
|
|
@@ -11774,14 +11774,14 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11774
11774
|
targetedDapp?: {
|
|
11775
11775
|
name: string;
|
|
11776
11776
|
description: string;
|
|
11777
|
-
logoUrl: string;
|
|
11778
11777
|
argentVerified: boolean;
|
|
11779
11778
|
links: {
|
|
11780
11779
|
name: string;
|
|
11781
11780
|
url: string;
|
|
11782
11781
|
position: number;
|
|
11783
11782
|
}[];
|
|
11784
|
-
|
|
11783
|
+
logoUrl?: string | undefined;
|
|
11784
|
+
iconUrl?: string | undefined;
|
|
11785
11785
|
} | undefined;
|
|
11786
11786
|
}>>;
|
|
11787
11787
|
simulation: z.ZodObject<{
|
|
@@ -13096,14 +13096,14 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13096
13096
|
targetedDapp?: {
|
|
13097
13097
|
name: string;
|
|
13098
13098
|
description: string;
|
|
13099
|
-
logoUrl: string;
|
|
13100
13099
|
argentVerified: boolean;
|
|
13101
13100
|
links: {
|
|
13102
13101
|
name: string;
|
|
13103
13102
|
url: string;
|
|
13104
13103
|
position: number;
|
|
13105
13104
|
}[];
|
|
13106
|
-
|
|
13105
|
+
logoUrl?: string | undefined;
|
|
13106
|
+
iconUrl?: string | undefined;
|
|
13107
13107
|
} | undefined;
|
|
13108
13108
|
} | undefined;
|
|
13109
13109
|
simulationError?: undefined;
|
|
@@ -13429,14 +13429,14 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13429
13429
|
targetedDapp?: {
|
|
13430
13430
|
name: string;
|
|
13431
13431
|
description: string;
|
|
13432
|
-
logoUrl: string;
|
|
13433
13432
|
argentVerified: boolean;
|
|
13434
13433
|
links: {
|
|
13435
13434
|
name: string;
|
|
13436
13435
|
url: string;
|
|
13437
13436
|
position: number;
|
|
13438
13437
|
}[];
|
|
13439
|
-
|
|
13438
|
+
logoUrl?: string | undefined;
|
|
13439
|
+
iconUrl?: string | undefined;
|
|
13440
13440
|
} | undefined;
|
|
13441
13441
|
} | undefined;
|
|
13442
13442
|
simulationError?: undefined;
|
|
@@ -13496,8 +13496,8 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13496
13496
|
targetedDapp: z.ZodOptional<z.ZodObject<{
|
|
13497
13497
|
name: z.ZodString;
|
|
13498
13498
|
description: z.ZodString;
|
|
13499
|
-
logoUrl: z.ZodString
|
|
13500
|
-
iconUrl: z.ZodString
|
|
13499
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
13500
|
+
iconUrl: z.ZodOptional<z.ZodString>;
|
|
13501
13501
|
argentVerified: z.ZodBoolean;
|
|
13502
13502
|
links: z.ZodArray<z.ZodObject<{
|
|
13503
13503
|
name: z.ZodString;
|
|
@@ -13515,25 +13515,25 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13515
13515
|
}, "strip", z.ZodTypeAny, {
|
|
13516
13516
|
name: string;
|
|
13517
13517
|
description: string;
|
|
13518
|
-
logoUrl: string;
|
|
13519
13518
|
argentVerified: boolean;
|
|
13520
13519
|
links: {
|
|
13521
13520
|
name: string;
|
|
13522
13521
|
url: string;
|
|
13523
13522
|
position: number;
|
|
13524
13523
|
}[];
|
|
13525
|
-
|
|
13524
|
+
logoUrl?: string | undefined;
|
|
13525
|
+
iconUrl?: string | undefined;
|
|
13526
13526
|
}, {
|
|
13527
13527
|
name: string;
|
|
13528
13528
|
description: string;
|
|
13529
|
-
logoUrl: string;
|
|
13530
13529
|
argentVerified: boolean;
|
|
13531
13530
|
links: {
|
|
13532
13531
|
name: string;
|
|
13533
13532
|
url: string;
|
|
13534
13533
|
position: number;
|
|
13535
13534
|
}[];
|
|
13536
|
-
|
|
13535
|
+
logoUrl?: string | undefined;
|
|
13536
|
+
iconUrl?: string | undefined;
|
|
13537
13537
|
}>>;
|
|
13538
13538
|
reviews: z.ZodArray<z.ZodObject<{
|
|
13539
13539
|
assessment: z.ZodUnion<[z.ZodLiteral<"verified">, z.ZodLiteral<"neutral">, z.ZodLiteral<"partial">, z.ZodLiteral<"warn">]>;
|
|
@@ -14776,14 +14776,14 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14776
14776
|
targetedDapp?: {
|
|
14777
14777
|
name: string;
|
|
14778
14778
|
description: string;
|
|
14779
|
-
logoUrl: string;
|
|
14780
14779
|
argentVerified: boolean;
|
|
14781
14780
|
links: {
|
|
14782
14781
|
name: string;
|
|
14783
14782
|
url: string;
|
|
14784
14783
|
position: number;
|
|
14785
14784
|
}[];
|
|
14786
|
-
|
|
14785
|
+
logoUrl?: string | undefined;
|
|
14786
|
+
iconUrl?: string | undefined;
|
|
14787
14787
|
} | undefined;
|
|
14788
14788
|
}, {
|
|
14789
14789
|
assessment: "verified" | "neutral" | "partial" | "warn";
|
|
@@ -14951,14 +14951,14 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14951
14951
|
targetedDapp?: {
|
|
14952
14952
|
name: string;
|
|
14953
14953
|
description: string;
|
|
14954
|
-
logoUrl: string;
|
|
14955
14954
|
argentVerified: boolean;
|
|
14956
14955
|
links: {
|
|
14957
14956
|
name: string;
|
|
14958
14957
|
url: string;
|
|
14959
14958
|
position: number;
|
|
14960
14959
|
}[];
|
|
14961
|
-
|
|
14960
|
+
logoUrl?: string | undefined;
|
|
14961
|
+
iconUrl?: string | undefined;
|
|
14962
14962
|
} | undefined;
|
|
14963
14963
|
}>>;
|
|
14964
14964
|
simulation: z.ZodUndefined;
|
|
@@ -15151,14 +15151,14 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15151
15151
|
targetedDapp?: {
|
|
15152
15152
|
name: string;
|
|
15153
15153
|
description: string;
|
|
15154
|
-
logoUrl: string;
|
|
15155
15154
|
argentVerified: boolean;
|
|
15156
15155
|
links: {
|
|
15157
15156
|
name: string;
|
|
15158
15157
|
url: string;
|
|
15159
15158
|
position: number;
|
|
15160
15159
|
}[];
|
|
15161
|
-
|
|
15160
|
+
logoUrl?: string | undefined;
|
|
15161
|
+
iconUrl?: string | undefined;
|
|
15162
15162
|
} | undefined;
|
|
15163
15163
|
} | undefined;
|
|
15164
15164
|
simulation?: undefined;
|
|
@@ -15335,14 +15335,14 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15335
15335
|
targetedDapp?: {
|
|
15336
15336
|
name: string;
|
|
15337
15337
|
description: string;
|
|
15338
|
-
logoUrl: string;
|
|
15339
15338
|
argentVerified: boolean;
|
|
15340
15339
|
links: {
|
|
15341
15340
|
name: string;
|
|
15342
15341
|
url: string;
|
|
15343
15342
|
position: number;
|
|
15344
15343
|
}[];
|
|
15345
|
-
|
|
15344
|
+
logoUrl?: string | undefined;
|
|
15345
|
+
iconUrl?: string | undefined;
|
|
15346
15346
|
} | undefined;
|
|
15347
15347
|
} | undefined;
|
|
15348
15348
|
simulation?: undefined;
|
|
@@ -15415,8 +15415,8 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
15415
15415
|
targetedDapp: z.ZodOptional<z.ZodObject<{
|
|
15416
15416
|
name: z.ZodString;
|
|
15417
15417
|
description: z.ZodString;
|
|
15418
|
-
logoUrl: z.ZodString
|
|
15419
|
-
iconUrl: z.ZodString
|
|
15418
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
15419
|
+
iconUrl: z.ZodOptional<z.ZodString>;
|
|
15420
15420
|
argentVerified: z.ZodBoolean;
|
|
15421
15421
|
links: z.ZodArray<z.ZodObject<{
|
|
15422
15422
|
name: z.ZodString;
|
|
@@ -15434,25 +15434,25 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
15434
15434
|
}, "strip", z.ZodTypeAny, {
|
|
15435
15435
|
name: string;
|
|
15436
15436
|
description: string;
|
|
15437
|
-
logoUrl: string;
|
|
15438
15437
|
argentVerified: boolean;
|
|
15439
15438
|
links: {
|
|
15440
15439
|
name: string;
|
|
15441
15440
|
url: string;
|
|
15442
15441
|
position: number;
|
|
15443
15442
|
}[];
|
|
15444
|
-
|
|
15443
|
+
logoUrl?: string | undefined;
|
|
15444
|
+
iconUrl?: string | undefined;
|
|
15445
15445
|
}, {
|
|
15446
15446
|
name: string;
|
|
15447
15447
|
description: string;
|
|
15448
|
-
logoUrl: string;
|
|
15449
15448
|
argentVerified: boolean;
|
|
15450
15449
|
links: {
|
|
15451
15450
|
name: string;
|
|
15452
15451
|
url: string;
|
|
15453
15452
|
position: number;
|
|
15454
15453
|
}[];
|
|
15455
|
-
|
|
15454
|
+
logoUrl?: string | undefined;
|
|
15455
|
+
iconUrl?: string | undefined;
|
|
15456
15456
|
}>>;
|
|
15457
15457
|
reviews: z.ZodArray<z.ZodObject<{
|
|
15458
15458
|
assessment: z.ZodUnion<[z.ZodLiteral<"verified">, z.ZodLiteral<"neutral">, z.ZodLiteral<"partial">, z.ZodLiteral<"warn">]>;
|
|
@@ -16695,14 +16695,14 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
16695
16695
|
targetedDapp?: {
|
|
16696
16696
|
name: string;
|
|
16697
16697
|
description: string;
|
|
16698
|
-
logoUrl: string;
|
|
16699
16698
|
argentVerified: boolean;
|
|
16700
16699
|
links: {
|
|
16701
16700
|
name: string;
|
|
16702
16701
|
url: string;
|
|
16703
16702
|
position: number;
|
|
16704
16703
|
}[];
|
|
16705
|
-
|
|
16704
|
+
logoUrl?: string | undefined;
|
|
16705
|
+
iconUrl?: string | undefined;
|
|
16706
16706
|
} | undefined;
|
|
16707
16707
|
}, {
|
|
16708
16708
|
assessment: "verified" | "neutral" | "partial" | "warn";
|
|
@@ -16870,14 +16870,14 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
16870
16870
|
targetedDapp?: {
|
|
16871
16871
|
name: string;
|
|
16872
16872
|
description: string;
|
|
16873
|
-
logoUrl: string;
|
|
16874
16873
|
argentVerified: boolean;
|
|
16875
16874
|
links: {
|
|
16876
16875
|
name: string;
|
|
16877
16876
|
url: string;
|
|
16878
16877
|
position: number;
|
|
16879
16878
|
}[];
|
|
16880
|
-
|
|
16879
|
+
logoUrl?: string | undefined;
|
|
16880
|
+
iconUrl?: string | undefined;
|
|
16881
16881
|
} | undefined;
|
|
16882
16882
|
}>>;
|
|
16883
16883
|
simulation: z.ZodObject<{
|
|
@@ -18192,14 +18192,14 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
18192
18192
|
targetedDapp?: {
|
|
18193
18193
|
name: string;
|
|
18194
18194
|
description: string;
|
|
18195
|
-
logoUrl: string;
|
|
18196
18195
|
argentVerified: boolean;
|
|
18197
18196
|
links: {
|
|
18198
18197
|
name: string;
|
|
18199
18198
|
url: string;
|
|
18200
18199
|
position: number;
|
|
18201
18200
|
}[];
|
|
18202
|
-
|
|
18201
|
+
logoUrl?: string | undefined;
|
|
18202
|
+
iconUrl?: string | undefined;
|
|
18203
18203
|
} | undefined;
|
|
18204
18204
|
} | undefined;
|
|
18205
18205
|
simulationError?: undefined;
|
|
@@ -18525,14 +18525,14 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
18525
18525
|
targetedDapp?: {
|
|
18526
18526
|
name: string;
|
|
18527
18527
|
description: string;
|
|
18528
|
-
logoUrl: string;
|
|
18529
18528
|
argentVerified: boolean;
|
|
18530
18529
|
links: {
|
|
18531
18530
|
name: string;
|
|
18532
18531
|
url: string;
|
|
18533
18532
|
position: number;
|
|
18534
18533
|
}[];
|
|
18535
|
-
|
|
18534
|
+
logoUrl?: string | undefined;
|
|
18535
|
+
iconUrl?: string | undefined;
|
|
18536
18536
|
} | undefined;
|
|
18537
18537
|
} | undefined;
|
|
18538
18538
|
simulationError?: undefined;
|
|
@@ -18592,8 +18592,8 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
18592
18592
|
targetedDapp: z.ZodOptional<z.ZodObject<{
|
|
18593
18593
|
name: z.ZodString;
|
|
18594
18594
|
description: z.ZodString;
|
|
18595
|
-
logoUrl: z.ZodString
|
|
18596
|
-
iconUrl: z.ZodString
|
|
18595
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
18596
|
+
iconUrl: z.ZodOptional<z.ZodString>;
|
|
18597
18597
|
argentVerified: z.ZodBoolean;
|
|
18598
18598
|
links: z.ZodArray<z.ZodObject<{
|
|
18599
18599
|
name: z.ZodString;
|
|
@@ -18611,25 +18611,25 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
18611
18611
|
}, "strip", z.ZodTypeAny, {
|
|
18612
18612
|
name: string;
|
|
18613
18613
|
description: string;
|
|
18614
|
-
logoUrl: string;
|
|
18615
18614
|
argentVerified: boolean;
|
|
18616
18615
|
links: {
|
|
18617
18616
|
name: string;
|
|
18618
18617
|
url: string;
|
|
18619
18618
|
position: number;
|
|
18620
18619
|
}[];
|
|
18621
|
-
|
|
18620
|
+
logoUrl?: string | undefined;
|
|
18621
|
+
iconUrl?: string | undefined;
|
|
18622
18622
|
}, {
|
|
18623
18623
|
name: string;
|
|
18624
18624
|
description: string;
|
|
18625
|
-
logoUrl: string;
|
|
18626
18625
|
argentVerified: boolean;
|
|
18627
18626
|
links: {
|
|
18628
18627
|
name: string;
|
|
18629
18628
|
url: string;
|
|
18630
18629
|
position: number;
|
|
18631
18630
|
}[];
|
|
18632
|
-
|
|
18631
|
+
logoUrl?: string | undefined;
|
|
18632
|
+
iconUrl?: string | undefined;
|
|
18633
18633
|
}>>;
|
|
18634
18634
|
reviews: z.ZodArray<z.ZodObject<{
|
|
18635
18635
|
assessment: z.ZodUnion<[z.ZodLiteral<"verified">, z.ZodLiteral<"neutral">, z.ZodLiteral<"partial">, z.ZodLiteral<"warn">]>;
|
|
@@ -19872,14 +19872,14 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
19872
19872
|
targetedDapp?: {
|
|
19873
19873
|
name: string;
|
|
19874
19874
|
description: string;
|
|
19875
|
-
logoUrl: string;
|
|
19876
19875
|
argentVerified: boolean;
|
|
19877
19876
|
links: {
|
|
19878
19877
|
name: string;
|
|
19879
19878
|
url: string;
|
|
19880
19879
|
position: number;
|
|
19881
19880
|
}[];
|
|
19882
|
-
|
|
19881
|
+
logoUrl?: string | undefined;
|
|
19882
|
+
iconUrl?: string | undefined;
|
|
19883
19883
|
} | undefined;
|
|
19884
19884
|
}, {
|
|
19885
19885
|
assessment: "verified" | "neutral" | "partial" | "warn";
|
|
@@ -20047,14 +20047,14 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20047
20047
|
targetedDapp?: {
|
|
20048
20048
|
name: string;
|
|
20049
20049
|
description: string;
|
|
20050
|
-
logoUrl: string;
|
|
20051
20050
|
argentVerified: boolean;
|
|
20052
20051
|
links: {
|
|
20053
20052
|
name: string;
|
|
20054
20053
|
url: string;
|
|
20055
20054
|
position: number;
|
|
20056
20055
|
}[];
|
|
20057
|
-
|
|
20056
|
+
logoUrl?: string | undefined;
|
|
20057
|
+
iconUrl?: string | undefined;
|
|
20058
20058
|
} | undefined;
|
|
20059
20059
|
}>>;
|
|
20060
20060
|
simulation: z.ZodUndefined;
|
|
@@ -20247,14 +20247,14 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20247
20247
|
targetedDapp?: {
|
|
20248
20248
|
name: string;
|
|
20249
20249
|
description: string;
|
|
20250
|
-
logoUrl: string;
|
|
20251
20250
|
argentVerified: boolean;
|
|
20252
20251
|
links: {
|
|
20253
20252
|
name: string;
|
|
20254
20253
|
url: string;
|
|
20255
20254
|
position: number;
|
|
20256
20255
|
}[];
|
|
20257
|
-
|
|
20256
|
+
logoUrl?: string | undefined;
|
|
20257
|
+
iconUrl?: string | undefined;
|
|
20258
20258
|
} | undefined;
|
|
20259
20259
|
} | undefined;
|
|
20260
20260
|
simulation?: undefined;
|
|
@@ -20431,14 +20431,14 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20431
20431
|
targetedDapp?: {
|
|
20432
20432
|
name: string;
|
|
20433
20433
|
description: string;
|
|
20434
|
-
logoUrl: string;
|
|
20435
20434
|
argentVerified: boolean;
|
|
20436
20435
|
links: {
|
|
20437
20436
|
name: string;
|
|
20438
20437
|
url: string;
|
|
20439
20438
|
position: number;
|
|
20440
20439
|
}[];
|
|
20441
|
-
|
|
20440
|
+
logoUrl?: string | undefined;
|
|
20441
|
+
iconUrl?: string | undefined;
|
|
20442
20442
|
} | undefined;
|
|
20443
20443
|
} | undefined;
|
|
20444
20444
|
simulation?: undefined;
|
|
@@ -20776,14 +20776,14 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20776
20776
|
targetedDapp?: {
|
|
20777
20777
|
name: string;
|
|
20778
20778
|
description: string;
|
|
20779
|
-
logoUrl: string;
|
|
20780
20779
|
argentVerified: boolean;
|
|
20781
20780
|
links: {
|
|
20782
20781
|
name: string;
|
|
20783
20782
|
url: string;
|
|
20784
20783
|
position: number;
|
|
20785
20784
|
}[];
|
|
20786
|
-
|
|
20785
|
+
logoUrl?: string | undefined;
|
|
20786
|
+
iconUrl?: string | undefined;
|
|
20787
20787
|
} | undefined;
|
|
20788
20788
|
} | undefined;
|
|
20789
20789
|
simulationError?: undefined;
|
|
@@ -20960,14 +20960,14 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20960
20960
|
targetedDapp?: {
|
|
20961
20961
|
name: string;
|
|
20962
20962
|
description: string;
|
|
20963
|
-
logoUrl: string;
|
|
20964
20963
|
argentVerified: boolean;
|
|
20965
20964
|
links: {
|
|
20966
20965
|
name: string;
|
|
20967
20966
|
url: string;
|
|
20968
20967
|
position: number;
|
|
20969
20968
|
}[];
|
|
20970
|
-
|
|
20969
|
+
logoUrl?: string | undefined;
|
|
20970
|
+
iconUrl?: string | undefined;
|
|
20971
20971
|
} | undefined;
|
|
20972
20972
|
} | undefined;
|
|
20973
20973
|
simulation?: undefined;
|
|
@@ -21299,14 +21299,14 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
21299
21299
|
targetedDapp?: {
|
|
21300
21300
|
name: string;
|
|
21301
21301
|
description: string;
|
|
21302
|
-
logoUrl: string;
|
|
21303
21302
|
argentVerified: boolean;
|
|
21304
21303
|
links: {
|
|
21305
21304
|
name: string;
|
|
21306
21305
|
url: string;
|
|
21307
21306
|
position: number;
|
|
21308
21307
|
}[];
|
|
21309
|
-
|
|
21308
|
+
logoUrl?: string | undefined;
|
|
21309
|
+
iconUrl?: string | undefined;
|
|
21310
21310
|
} | undefined;
|
|
21311
21311
|
} | undefined;
|
|
21312
21312
|
simulationError?: undefined;
|
|
@@ -21483,14 +21483,14 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
21483
21483
|
targetedDapp?: {
|
|
21484
21484
|
name: string;
|
|
21485
21485
|
description: string;
|
|
21486
|
-
logoUrl: string;
|
|
21487
21486
|
argentVerified: boolean;
|
|
21488
21487
|
links: {
|
|
21489
21488
|
name: string;
|
|
21490
21489
|
url: string;
|
|
21491
21490
|
position: number;
|
|
21492
21491
|
}[];
|
|
21493
|
-
|
|
21492
|
+
logoUrl?: string | undefined;
|
|
21493
|
+
iconUrl?: string | undefined;
|
|
21494
21494
|
} | undefined;
|
|
21495
21495
|
} | undefined;
|
|
21496
21496
|
simulation?: undefined;
|
|
@@ -21557,8 +21557,8 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
21557
21557
|
targetedDapp: z.ZodOptional<z.ZodObject<{
|
|
21558
21558
|
name: z.ZodString;
|
|
21559
21559
|
description: z.ZodString;
|
|
21560
|
-
logoUrl: z.ZodString
|
|
21561
|
-
iconUrl: z.ZodString
|
|
21560
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
21561
|
+
iconUrl: z.ZodOptional<z.ZodString>;
|
|
21562
21562
|
argentVerified: z.ZodBoolean;
|
|
21563
21563
|
links: z.ZodArray<z.ZodObject<{
|
|
21564
21564
|
name: z.ZodString;
|
|
@@ -21576,25 +21576,25 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
21576
21576
|
}, "strip", z.ZodTypeAny, {
|
|
21577
21577
|
name: string;
|
|
21578
21578
|
description: string;
|
|
21579
|
-
logoUrl: string;
|
|
21580
21579
|
argentVerified: boolean;
|
|
21581
21580
|
links: {
|
|
21582
21581
|
name: string;
|
|
21583
21582
|
url: string;
|
|
21584
21583
|
position: number;
|
|
21585
21584
|
}[];
|
|
21586
|
-
|
|
21585
|
+
logoUrl?: string | undefined;
|
|
21586
|
+
iconUrl?: string | undefined;
|
|
21587
21587
|
}, {
|
|
21588
21588
|
name: string;
|
|
21589
21589
|
description: string;
|
|
21590
|
-
logoUrl: string;
|
|
21591
21590
|
argentVerified: boolean;
|
|
21592
21591
|
links: {
|
|
21593
21592
|
name: string;
|
|
21594
21593
|
url: string;
|
|
21595
21594
|
position: number;
|
|
21596
21595
|
}[];
|
|
21597
|
-
|
|
21596
|
+
logoUrl?: string | undefined;
|
|
21597
|
+
iconUrl?: string | undefined;
|
|
21598
21598
|
}>>;
|
|
21599
21599
|
reviews: z.ZodArray<z.ZodObject<{
|
|
21600
21600
|
assessment: z.ZodUnion<[z.ZodLiteral<"verified">, z.ZodLiteral<"neutral">, z.ZodLiteral<"partial">, z.ZodLiteral<"warn">]>;
|
|
@@ -22837,14 +22837,14 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
22837
22837
|
targetedDapp?: {
|
|
22838
22838
|
name: string;
|
|
22839
22839
|
description: string;
|
|
22840
|
-
logoUrl: string;
|
|
22841
22840
|
argentVerified: boolean;
|
|
22842
22841
|
links: {
|
|
22843
22842
|
name: string;
|
|
22844
22843
|
url: string;
|
|
22845
22844
|
position: number;
|
|
22846
22845
|
}[];
|
|
22847
|
-
|
|
22846
|
+
logoUrl?: string | undefined;
|
|
22847
|
+
iconUrl?: string | undefined;
|
|
22848
22848
|
} | undefined;
|
|
22849
22849
|
}, {
|
|
22850
22850
|
assessment: "verified" | "neutral" | "partial" | "warn";
|
|
@@ -23012,14 +23012,14 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
23012
23012
|
targetedDapp?: {
|
|
23013
23013
|
name: string;
|
|
23014
23014
|
description: string;
|
|
23015
|
-
logoUrl: string;
|
|
23016
23015
|
argentVerified: boolean;
|
|
23017
23016
|
links: {
|
|
23018
23017
|
name: string;
|
|
23019
23018
|
url: string;
|
|
23020
23019
|
position: number;
|
|
23021
23020
|
}[];
|
|
23022
|
-
|
|
23021
|
+
logoUrl?: string | undefined;
|
|
23022
|
+
iconUrl?: string | undefined;
|
|
23023
23023
|
} | undefined;
|
|
23024
23024
|
}>>;
|
|
23025
23025
|
simulation: z.ZodObject<{
|
|
@@ -24334,14 +24334,14 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
24334
24334
|
targetedDapp?: {
|
|
24335
24335
|
name: string;
|
|
24336
24336
|
description: string;
|
|
24337
|
-
logoUrl: string;
|
|
24338
24337
|
argentVerified: boolean;
|
|
24339
24338
|
links: {
|
|
24340
24339
|
name: string;
|
|
24341
24340
|
url: string;
|
|
24342
24341
|
position: number;
|
|
24343
24342
|
}[];
|
|
24344
|
-
|
|
24343
|
+
logoUrl?: string | undefined;
|
|
24344
|
+
iconUrl?: string | undefined;
|
|
24345
24345
|
} | undefined;
|
|
24346
24346
|
} | undefined;
|
|
24347
24347
|
simulationError?: undefined;
|
|
@@ -24667,14 +24667,14 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
24667
24667
|
targetedDapp?: {
|
|
24668
24668
|
name: string;
|
|
24669
24669
|
description: string;
|
|
24670
|
-
logoUrl: string;
|
|
24671
24670
|
argentVerified: boolean;
|
|
24672
24671
|
links: {
|
|
24673
24672
|
name: string;
|
|
24674
24673
|
url: string;
|
|
24675
24674
|
position: number;
|
|
24676
24675
|
}[];
|
|
24677
|
-
|
|
24676
|
+
logoUrl?: string | undefined;
|
|
24677
|
+
iconUrl?: string | undefined;
|
|
24678
24678
|
} | undefined;
|
|
24679
24679
|
} | undefined;
|
|
24680
24680
|
simulationError?: undefined;
|
|
@@ -24734,8 +24734,8 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
24734
24734
|
targetedDapp: z.ZodOptional<z.ZodObject<{
|
|
24735
24735
|
name: z.ZodString;
|
|
24736
24736
|
description: z.ZodString;
|
|
24737
|
-
logoUrl: z.ZodString
|
|
24738
|
-
iconUrl: z.ZodString
|
|
24737
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
24738
|
+
iconUrl: z.ZodOptional<z.ZodString>;
|
|
24739
24739
|
argentVerified: z.ZodBoolean;
|
|
24740
24740
|
links: z.ZodArray<z.ZodObject<{
|
|
24741
24741
|
name: z.ZodString;
|
|
@@ -24753,25 +24753,25 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
24753
24753
|
}, "strip", z.ZodTypeAny, {
|
|
24754
24754
|
name: string;
|
|
24755
24755
|
description: string;
|
|
24756
|
-
logoUrl: string;
|
|
24757
24756
|
argentVerified: boolean;
|
|
24758
24757
|
links: {
|
|
24759
24758
|
name: string;
|
|
24760
24759
|
url: string;
|
|
24761
24760
|
position: number;
|
|
24762
24761
|
}[];
|
|
24763
|
-
|
|
24762
|
+
logoUrl?: string | undefined;
|
|
24763
|
+
iconUrl?: string | undefined;
|
|
24764
24764
|
}, {
|
|
24765
24765
|
name: string;
|
|
24766
24766
|
description: string;
|
|
24767
|
-
logoUrl: string;
|
|
24768
24767
|
argentVerified: boolean;
|
|
24769
24768
|
links: {
|
|
24770
24769
|
name: string;
|
|
24771
24770
|
url: string;
|
|
24772
24771
|
position: number;
|
|
24773
24772
|
}[];
|
|
24774
|
-
|
|
24773
|
+
logoUrl?: string | undefined;
|
|
24774
|
+
iconUrl?: string | undefined;
|
|
24775
24775
|
}>>;
|
|
24776
24776
|
reviews: z.ZodArray<z.ZodObject<{
|
|
24777
24777
|
assessment: z.ZodUnion<[z.ZodLiteral<"verified">, z.ZodLiteral<"neutral">, z.ZodLiteral<"partial">, z.ZodLiteral<"warn">]>;
|
|
@@ -26014,14 +26014,14 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
26014
26014
|
targetedDapp?: {
|
|
26015
26015
|
name: string;
|
|
26016
26016
|
description: string;
|
|
26017
|
-
logoUrl: string;
|
|
26018
26017
|
argentVerified: boolean;
|
|
26019
26018
|
links: {
|
|
26020
26019
|
name: string;
|
|
26021
26020
|
url: string;
|
|
26022
26021
|
position: number;
|
|
26023
26022
|
}[];
|
|
26024
|
-
|
|
26023
|
+
logoUrl?: string | undefined;
|
|
26024
|
+
iconUrl?: string | undefined;
|
|
26025
26025
|
} | undefined;
|
|
26026
26026
|
}, {
|
|
26027
26027
|
assessment: "verified" | "neutral" | "partial" | "warn";
|
|
@@ -26189,14 +26189,14 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
26189
26189
|
targetedDapp?: {
|
|
26190
26190
|
name: string;
|
|
26191
26191
|
description: string;
|
|
26192
|
-
logoUrl: string;
|
|
26193
26192
|
argentVerified: boolean;
|
|
26194
26193
|
links: {
|
|
26195
26194
|
name: string;
|
|
26196
26195
|
url: string;
|
|
26197
26196
|
position: number;
|
|
26198
26197
|
}[];
|
|
26199
|
-
|
|
26198
|
+
logoUrl?: string | undefined;
|
|
26199
|
+
iconUrl?: string | undefined;
|
|
26200
26200
|
} | undefined;
|
|
26201
26201
|
}>>;
|
|
26202
26202
|
simulation: z.ZodUndefined;
|
|
@@ -26389,14 +26389,14 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
26389
26389
|
targetedDapp?: {
|
|
26390
26390
|
name: string;
|
|
26391
26391
|
description: string;
|
|
26392
|
-
logoUrl: string;
|
|
26393
26392
|
argentVerified: boolean;
|
|
26394
26393
|
links: {
|
|
26395
26394
|
name: string;
|
|
26396
26395
|
url: string;
|
|
26397
26396
|
position: number;
|
|
26398
26397
|
}[];
|
|
26399
|
-
|
|
26398
|
+
logoUrl?: string | undefined;
|
|
26399
|
+
iconUrl?: string | undefined;
|
|
26400
26400
|
} | undefined;
|
|
26401
26401
|
} | undefined;
|
|
26402
26402
|
simulation?: undefined;
|
|
@@ -26573,14 +26573,14 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
26573
26573
|
targetedDapp?: {
|
|
26574
26574
|
name: string;
|
|
26575
26575
|
description: string;
|
|
26576
|
-
logoUrl: string;
|
|
26577
26576
|
argentVerified: boolean;
|
|
26578
26577
|
links: {
|
|
26579
26578
|
name: string;
|
|
26580
26579
|
url: string;
|
|
26581
26580
|
position: number;
|
|
26582
26581
|
}[];
|
|
26583
|
-
|
|
26582
|
+
logoUrl?: string | undefined;
|
|
26583
|
+
iconUrl?: string | undefined;
|
|
26584
26584
|
} | undefined;
|
|
26585
26585
|
} | undefined;
|
|
26586
26586
|
simulation?: undefined;
|
|
@@ -27069,14 +27069,14 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27069
27069
|
targetedDapp?: {
|
|
27070
27070
|
name: string;
|
|
27071
27071
|
description: string;
|
|
27072
|
-
logoUrl: string;
|
|
27073
27072
|
argentVerified: boolean;
|
|
27074
27073
|
links: {
|
|
27075
27074
|
name: string;
|
|
27076
27075
|
url: string;
|
|
27077
27076
|
position: number;
|
|
27078
27077
|
}[];
|
|
27079
|
-
|
|
27078
|
+
logoUrl?: string | undefined;
|
|
27079
|
+
iconUrl?: string | undefined;
|
|
27080
27080
|
} | undefined;
|
|
27081
27081
|
} | undefined;
|
|
27082
27082
|
simulationError?: undefined;
|
|
@@ -27253,14 +27253,14 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27253
27253
|
targetedDapp?: {
|
|
27254
27254
|
name: string;
|
|
27255
27255
|
description: string;
|
|
27256
|
-
logoUrl: string;
|
|
27257
27256
|
argentVerified: boolean;
|
|
27258
27257
|
links: {
|
|
27259
27258
|
name: string;
|
|
27260
27259
|
url: string;
|
|
27261
27260
|
position: number;
|
|
27262
27261
|
}[];
|
|
27263
|
-
|
|
27262
|
+
logoUrl?: string | undefined;
|
|
27263
|
+
iconUrl?: string | undefined;
|
|
27264
27264
|
} | undefined;
|
|
27265
27265
|
} | undefined;
|
|
27266
27266
|
simulation?: undefined;
|
|
@@ -27621,14 +27621,14 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27621
27621
|
targetedDapp?: {
|
|
27622
27622
|
name: string;
|
|
27623
27623
|
description: string;
|
|
27624
|
-
logoUrl: string;
|
|
27625
27624
|
argentVerified: boolean;
|
|
27626
27625
|
links: {
|
|
27627
27626
|
name: string;
|
|
27628
27627
|
url: string;
|
|
27629
27628
|
position: number;
|
|
27630
27629
|
}[];
|
|
27631
|
-
|
|
27630
|
+
logoUrl?: string | undefined;
|
|
27631
|
+
iconUrl?: string | undefined;
|
|
27632
27632
|
} | undefined;
|
|
27633
27633
|
} | undefined;
|
|
27634
27634
|
simulationError?: undefined;
|
|
@@ -27805,14 +27805,14 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27805
27805
|
targetedDapp?: {
|
|
27806
27806
|
name: string;
|
|
27807
27807
|
description: string;
|
|
27808
|
-
logoUrl: string;
|
|
27809
27808
|
argentVerified: boolean;
|
|
27810
27809
|
links: {
|
|
27811
27810
|
name: string;
|
|
27812
27811
|
url: string;
|
|
27813
27812
|
position: number;
|
|
27814
27813
|
}[];
|
|
27815
|
-
|
|
27814
|
+
logoUrl?: string | undefined;
|
|
27815
|
+
iconUrl?: string | undefined;
|
|
27816
27816
|
} | undefined;
|
|
27817
27817
|
} | undefined;
|
|
27818
27818
|
simulation?: undefined;
|
|
@@ -27908,8 +27908,8 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
27908
27908
|
targetedDapp: z.ZodOptional<z.ZodObject<{
|
|
27909
27909
|
name: z.ZodString;
|
|
27910
27910
|
description: z.ZodString;
|
|
27911
|
-
logoUrl: z.ZodString
|
|
27912
|
-
iconUrl: z.ZodString
|
|
27911
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
27912
|
+
iconUrl: z.ZodOptional<z.ZodString>;
|
|
27913
27913
|
argentVerified: z.ZodBoolean;
|
|
27914
27914
|
links: z.ZodArray<z.ZodObject<{
|
|
27915
27915
|
name: z.ZodString;
|
|
@@ -27927,25 +27927,25 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
27927
27927
|
}, "strip", z.ZodTypeAny, {
|
|
27928
27928
|
name: string;
|
|
27929
27929
|
description: string;
|
|
27930
|
-
logoUrl: string;
|
|
27931
27930
|
argentVerified: boolean;
|
|
27932
27931
|
links: {
|
|
27933
27932
|
name: string;
|
|
27934
27933
|
url: string;
|
|
27935
27934
|
position: number;
|
|
27936
27935
|
}[];
|
|
27937
|
-
|
|
27936
|
+
logoUrl?: string | undefined;
|
|
27937
|
+
iconUrl?: string | undefined;
|
|
27938
27938
|
}, {
|
|
27939
27939
|
name: string;
|
|
27940
27940
|
description: string;
|
|
27941
|
-
logoUrl: string;
|
|
27942
27941
|
argentVerified: boolean;
|
|
27943
27942
|
links: {
|
|
27944
27943
|
name: string;
|
|
27945
27944
|
url: string;
|
|
27946
27945
|
position: number;
|
|
27947
27946
|
}[];
|
|
27948
|
-
|
|
27947
|
+
logoUrl?: string | undefined;
|
|
27948
|
+
iconUrl?: string | undefined;
|
|
27949
27949
|
}>>;
|
|
27950
27950
|
reviews: z.ZodArray<z.ZodObject<{
|
|
27951
27951
|
assessment: z.ZodUnion<[z.ZodLiteral<"verified">, z.ZodLiteral<"neutral">, z.ZodLiteral<"partial">, z.ZodLiteral<"warn">]>;
|
|
@@ -29188,14 +29188,14 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
29188
29188
|
targetedDapp?: {
|
|
29189
29189
|
name: string;
|
|
29190
29190
|
description: string;
|
|
29191
|
-
logoUrl: string;
|
|
29192
29191
|
argentVerified: boolean;
|
|
29193
29192
|
links: {
|
|
29194
29193
|
name: string;
|
|
29195
29194
|
url: string;
|
|
29196
29195
|
position: number;
|
|
29197
29196
|
}[];
|
|
29198
|
-
|
|
29197
|
+
logoUrl?: string | undefined;
|
|
29198
|
+
iconUrl?: string | undefined;
|
|
29199
29199
|
} | undefined;
|
|
29200
29200
|
}, {
|
|
29201
29201
|
assessment: "verified" | "neutral" | "partial" | "warn";
|
|
@@ -29363,14 +29363,14 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
29363
29363
|
targetedDapp?: {
|
|
29364
29364
|
name: string;
|
|
29365
29365
|
description: string;
|
|
29366
|
-
logoUrl: string;
|
|
29367
29366
|
argentVerified: boolean;
|
|
29368
29367
|
links: {
|
|
29369
29368
|
name: string;
|
|
29370
29369
|
url: string;
|
|
29371
29370
|
position: number;
|
|
29372
29371
|
}[];
|
|
29373
|
-
|
|
29372
|
+
logoUrl?: string | undefined;
|
|
29373
|
+
iconUrl?: string | undefined;
|
|
29374
29374
|
} | undefined;
|
|
29375
29375
|
}>>;
|
|
29376
29376
|
simulation: z.ZodObject<{
|
|
@@ -30685,14 +30685,14 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
30685
30685
|
targetedDapp?: {
|
|
30686
30686
|
name: string;
|
|
30687
30687
|
description: string;
|
|
30688
|
-
logoUrl: string;
|
|
30689
30688
|
argentVerified: boolean;
|
|
30690
30689
|
links: {
|
|
30691
30690
|
name: string;
|
|
30692
30691
|
url: string;
|
|
30693
30692
|
position: number;
|
|
30694
30693
|
}[];
|
|
30695
|
-
|
|
30694
|
+
logoUrl?: string | undefined;
|
|
30695
|
+
iconUrl?: string | undefined;
|
|
30696
30696
|
} | undefined;
|
|
30697
30697
|
} | undefined;
|
|
30698
30698
|
simulationError?: undefined;
|
|
@@ -31018,14 +31018,14 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
31018
31018
|
targetedDapp?: {
|
|
31019
31019
|
name: string;
|
|
31020
31020
|
description: string;
|
|
31021
|
-
logoUrl: string;
|
|
31022
31021
|
argentVerified: boolean;
|
|
31023
31022
|
links: {
|
|
31024
31023
|
name: string;
|
|
31025
31024
|
url: string;
|
|
31026
31025
|
position: number;
|
|
31027
31026
|
}[];
|
|
31028
|
-
|
|
31027
|
+
logoUrl?: string | undefined;
|
|
31028
|
+
iconUrl?: string | undefined;
|
|
31029
31029
|
} | undefined;
|
|
31030
31030
|
} | undefined;
|
|
31031
31031
|
simulationError?: undefined;
|
|
@@ -31085,8 +31085,8 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
31085
31085
|
targetedDapp: z.ZodOptional<z.ZodObject<{
|
|
31086
31086
|
name: z.ZodString;
|
|
31087
31087
|
description: z.ZodString;
|
|
31088
|
-
logoUrl: z.ZodString
|
|
31089
|
-
iconUrl: z.ZodString
|
|
31088
|
+
logoUrl: z.ZodOptional<z.ZodString>;
|
|
31089
|
+
iconUrl: z.ZodOptional<z.ZodString>;
|
|
31090
31090
|
argentVerified: z.ZodBoolean;
|
|
31091
31091
|
links: z.ZodArray<z.ZodObject<{
|
|
31092
31092
|
name: z.ZodString;
|
|
@@ -31104,25 +31104,25 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
31104
31104
|
}, "strip", z.ZodTypeAny, {
|
|
31105
31105
|
name: string;
|
|
31106
31106
|
description: string;
|
|
31107
|
-
logoUrl: string;
|
|
31108
31107
|
argentVerified: boolean;
|
|
31109
31108
|
links: {
|
|
31110
31109
|
name: string;
|
|
31111
31110
|
url: string;
|
|
31112
31111
|
position: number;
|
|
31113
31112
|
}[];
|
|
31114
|
-
|
|
31113
|
+
logoUrl?: string | undefined;
|
|
31114
|
+
iconUrl?: string | undefined;
|
|
31115
31115
|
}, {
|
|
31116
31116
|
name: string;
|
|
31117
31117
|
description: string;
|
|
31118
|
-
logoUrl: string;
|
|
31119
31118
|
argentVerified: boolean;
|
|
31120
31119
|
links: {
|
|
31121
31120
|
name: string;
|
|
31122
31121
|
url: string;
|
|
31123
31122
|
position: number;
|
|
31124
31123
|
}[];
|
|
31125
|
-
|
|
31124
|
+
logoUrl?: string | undefined;
|
|
31125
|
+
iconUrl?: string | undefined;
|
|
31126
31126
|
}>>;
|
|
31127
31127
|
reviews: z.ZodArray<z.ZodObject<{
|
|
31128
31128
|
assessment: z.ZodUnion<[z.ZodLiteral<"verified">, z.ZodLiteral<"neutral">, z.ZodLiteral<"partial">, z.ZodLiteral<"warn">]>;
|
|
@@ -32365,14 +32365,14 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
32365
32365
|
targetedDapp?: {
|
|
32366
32366
|
name: string;
|
|
32367
32367
|
description: string;
|
|
32368
|
-
logoUrl: string;
|
|
32369
32368
|
argentVerified: boolean;
|
|
32370
32369
|
links: {
|
|
32371
32370
|
name: string;
|
|
32372
32371
|
url: string;
|
|
32373
32372
|
position: number;
|
|
32374
32373
|
}[];
|
|
32375
|
-
|
|
32374
|
+
logoUrl?: string | undefined;
|
|
32375
|
+
iconUrl?: string | undefined;
|
|
32376
32376
|
} | undefined;
|
|
32377
32377
|
}, {
|
|
32378
32378
|
assessment: "verified" | "neutral" | "partial" | "warn";
|
|
@@ -32540,14 +32540,14 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
32540
32540
|
targetedDapp?: {
|
|
32541
32541
|
name: string;
|
|
32542
32542
|
description: string;
|
|
32543
|
-
logoUrl: string;
|
|
32544
32543
|
argentVerified: boolean;
|
|
32545
32544
|
links: {
|
|
32546
32545
|
name: string;
|
|
32547
32546
|
url: string;
|
|
32548
32547
|
position: number;
|
|
32549
32548
|
}[];
|
|
32550
|
-
|
|
32549
|
+
logoUrl?: string | undefined;
|
|
32550
|
+
iconUrl?: string | undefined;
|
|
32551
32551
|
} | undefined;
|
|
32552
32552
|
}>>;
|
|
32553
32553
|
simulation: z.ZodUndefined;
|
|
@@ -32740,14 +32740,14 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
32740
32740
|
targetedDapp?: {
|
|
32741
32741
|
name: string;
|
|
32742
32742
|
description: string;
|
|
32743
|
-
logoUrl: string;
|
|
32744
32743
|
argentVerified: boolean;
|
|
32745
32744
|
links: {
|
|
32746
32745
|
name: string;
|
|
32747
32746
|
url: string;
|
|
32748
32747
|
position: number;
|
|
32749
32748
|
}[];
|
|
32750
|
-
|
|
32749
|
+
logoUrl?: string | undefined;
|
|
32750
|
+
iconUrl?: string | undefined;
|
|
32751
32751
|
} | undefined;
|
|
32752
32752
|
} | undefined;
|
|
32753
32753
|
simulation?: undefined;
|
|
@@ -32924,14 +32924,14 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
32924
32924
|
targetedDapp?: {
|
|
32925
32925
|
name: string;
|
|
32926
32926
|
description: string;
|
|
32927
|
-
logoUrl: string;
|
|
32928
32927
|
argentVerified: boolean;
|
|
32929
32928
|
links: {
|
|
32930
32929
|
name: string;
|
|
32931
32930
|
url: string;
|
|
32932
32931
|
position: number;
|
|
32933
32932
|
}[];
|
|
32934
|
-
|
|
32933
|
+
logoUrl?: string | undefined;
|
|
32934
|
+
iconUrl?: string | undefined;
|
|
32935
32935
|
} | undefined;
|
|
32936
32936
|
} | undefined;
|
|
32937
32937
|
simulation?: undefined;
|
|
@@ -33477,14 +33477,14 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
33477
33477
|
targetedDapp?: {
|
|
33478
33478
|
name: string;
|
|
33479
33479
|
description: string;
|
|
33480
|
-
logoUrl: string;
|
|
33481
33480
|
argentVerified: boolean;
|
|
33482
33481
|
links: {
|
|
33483
33482
|
name: string;
|
|
33484
33483
|
url: string;
|
|
33485
33484
|
position: number;
|
|
33486
33485
|
}[];
|
|
33487
|
-
|
|
33486
|
+
logoUrl?: string | undefined;
|
|
33487
|
+
iconUrl?: string | undefined;
|
|
33488
33488
|
} | undefined;
|
|
33489
33489
|
} | undefined;
|
|
33490
33490
|
simulationError?: undefined;
|
|
@@ -33661,14 +33661,14 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
33661
33661
|
targetedDapp?: {
|
|
33662
33662
|
name: string;
|
|
33663
33663
|
description: string;
|
|
33664
|
-
logoUrl: string;
|
|
33665
33664
|
argentVerified: boolean;
|
|
33666
33665
|
links: {
|
|
33667
33666
|
name: string;
|
|
33668
33667
|
url: string;
|
|
33669
33668
|
position: number;
|
|
33670
33669
|
}[];
|
|
33671
|
-
|
|
33670
|
+
logoUrl?: string | undefined;
|
|
33671
|
+
iconUrl?: string | undefined;
|
|
33672
33672
|
} | undefined;
|
|
33673
33673
|
} | undefined;
|
|
33674
33674
|
simulation?: undefined;
|
|
@@ -34042,14 +34042,14 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
34042
34042
|
targetedDapp?: {
|
|
34043
34043
|
name: string;
|
|
34044
34044
|
description: string;
|
|
34045
|
-
logoUrl: string;
|
|
34046
34045
|
argentVerified: boolean;
|
|
34047
34046
|
links: {
|
|
34048
34047
|
name: string;
|
|
34049
34048
|
url: string;
|
|
34050
34049
|
position: number;
|
|
34051
34050
|
}[];
|
|
34052
|
-
|
|
34051
|
+
logoUrl?: string | undefined;
|
|
34052
|
+
iconUrl?: string | undefined;
|
|
34053
34053
|
} | undefined;
|
|
34054
34054
|
} | undefined;
|
|
34055
34055
|
simulationError?: undefined;
|
|
@@ -34226,14 +34226,14 @@ export declare const enrichedSimulateAndReviewV2Schema: z.ZodObject<{
|
|
|
34226
34226
|
targetedDapp?: {
|
|
34227
34227
|
name: string;
|
|
34228
34228
|
description: string;
|
|
34229
|
-
logoUrl: string;
|
|
34230
34229
|
argentVerified: boolean;
|
|
34231
34230
|
links: {
|
|
34232
34231
|
name: string;
|
|
34233
34232
|
url: string;
|
|
34234
34233
|
position: number;
|
|
34235
34234
|
}[];
|
|
34236
|
-
|
|
34235
|
+
logoUrl?: string | undefined;
|
|
34236
|
+
iconUrl?: string | undefined;
|
|
34237
34237
|
} | undefined;
|
|
34238
34238
|
} | undefined;
|
|
34239
34239
|
simulation?: undefined;
|