@argent/x-shared 1.72.0 → 1.72.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.js +36 -36
- package/dist/src/features/simulation/fees/schema.cjs +1 -1
- package/dist/src/features/simulation/fees/schema.d.ts +72 -32
- package/dist/src/features/simulation/fees/schema.js +9 -8
- package/dist/src/features/simulation/transactionReview/schema.cjs +1 -1
- package/dist/src/features/simulation/transactionReview/schema.d.ts +269 -255
- package/dist/src/features/simulation/transactionReview/schema.js +1 -1
- package/dist/src/transactions/estimate/utils.cjs +1 -1
- package/dist/src/transactions/estimate/utils.d.ts +1 -1
- package/dist/src/transactions/estimate/utils.js +109 -108
- package/dist/src/transactions/service/implementation.d.ts +4 -2
- package/package.json +1 -1
|
@@ -969,15 +969,15 @@ export declare const warningDetailsSchema: z.ZodObject<{
|
|
|
969
969
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
970
970
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
971
971
|
reason: z.ZodOptional<z.ZodString>;
|
|
972
|
-
value: z.ZodOptional<z.
|
|
972
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
973
973
|
}, "strip", z.ZodTypeAny, {
|
|
974
|
-
value?:
|
|
974
|
+
value?: any;
|
|
975
975
|
contract_address?: `0x${string}` | undefined;
|
|
976
976
|
unknown_token?: unknown;
|
|
977
977
|
date_of_addition?: string | undefined;
|
|
978
978
|
reason?: string | undefined;
|
|
979
979
|
}, {
|
|
980
|
-
value?:
|
|
980
|
+
value?: any;
|
|
981
981
|
contract_address?: string | undefined;
|
|
982
982
|
unknown_token?: unknown;
|
|
983
983
|
date_of_addition?: string | undefined;
|
|
@@ -990,15 +990,15 @@ export declare const warningSchema: z.ZodObject<{
|
|
|
990
990
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
991
991
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
992
992
|
reason: z.ZodOptional<z.ZodString>;
|
|
993
|
-
value: z.ZodOptional<z.
|
|
993
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
994
994
|
}, "strip", z.ZodTypeAny, {
|
|
995
|
-
value?:
|
|
995
|
+
value?: any;
|
|
996
996
|
contract_address?: `0x${string}` | undefined;
|
|
997
997
|
unknown_token?: unknown;
|
|
998
998
|
date_of_addition?: string | undefined;
|
|
999
999
|
reason?: string | undefined;
|
|
1000
1000
|
}, {
|
|
1001
|
-
value?:
|
|
1001
|
+
value?: any;
|
|
1002
1002
|
contract_address?: string | undefined;
|
|
1003
1003
|
unknown_token?: unknown;
|
|
1004
1004
|
date_of_addition?: string | undefined;
|
|
@@ -1009,7 +1009,7 @@ export declare const warningSchema: z.ZodObject<{
|
|
|
1009
1009
|
reason: string;
|
|
1010
1010
|
severity: "high" | "critical" | "caution" | "info";
|
|
1011
1011
|
details?: {
|
|
1012
|
-
value?:
|
|
1012
|
+
value?: any;
|
|
1013
1013
|
contract_address?: `0x${string}` | undefined;
|
|
1014
1014
|
unknown_token?: unknown;
|
|
1015
1015
|
date_of_addition?: string | undefined;
|
|
@@ -1019,7 +1019,7 @@ export declare const warningSchema: z.ZodObject<{
|
|
|
1019
1019
|
reason: string;
|
|
1020
1020
|
severity: "high" | "critical" | "caution" | "info";
|
|
1021
1021
|
details?: {
|
|
1022
|
-
value?:
|
|
1022
|
+
value?: any;
|
|
1023
1023
|
contract_address?: string | undefined;
|
|
1024
1024
|
unknown_token?: unknown;
|
|
1025
1025
|
date_of_addition?: string | undefined;
|
|
@@ -1035,15 +1035,15 @@ export declare const reviewSchema: z.ZodObject<{
|
|
|
1035
1035
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
1036
1036
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
1037
1037
|
reason: z.ZodOptional<z.ZodString>;
|
|
1038
|
-
value: z.ZodOptional<z.
|
|
1038
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
1039
1039
|
}, "strip", z.ZodTypeAny, {
|
|
1040
|
-
value?:
|
|
1040
|
+
value?: any;
|
|
1041
1041
|
contract_address?: `0x${string}` | undefined;
|
|
1042
1042
|
unknown_token?: unknown;
|
|
1043
1043
|
date_of_addition?: string | undefined;
|
|
1044
1044
|
reason?: string | undefined;
|
|
1045
1045
|
}, {
|
|
1046
|
-
value?:
|
|
1046
|
+
value?: any;
|
|
1047
1047
|
contract_address?: string | undefined;
|
|
1048
1048
|
unknown_token?: unknown;
|
|
1049
1049
|
date_of_addition?: string | undefined;
|
|
@@ -1054,7 +1054,7 @@ export declare const reviewSchema: z.ZodObject<{
|
|
|
1054
1054
|
reason: string;
|
|
1055
1055
|
severity: "high" | "critical" | "caution" | "info";
|
|
1056
1056
|
details?: {
|
|
1057
|
-
value?:
|
|
1057
|
+
value?: any;
|
|
1058
1058
|
contract_address?: `0x${string}` | undefined;
|
|
1059
1059
|
unknown_token?: unknown;
|
|
1060
1060
|
date_of_addition?: string | undefined;
|
|
@@ -1064,7 +1064,7 @@ export declare const reviewSchema: z.ZodObject<{
|
|
|
1064
1064
|
reason: string;
|
|
1065
1065
|
severity: "high" | "critical" | "caution" | "info";
|
|
1066
1066
|
details?: {
|
|
1067
|
-
value?:
|
|
1067
|
+
value?: any;
|
|
1068
1068
|
contract_address?: string | undefined;
|
|
1069
1069
|
unknown_token?: unknown;
|
|
1070
1070
|
date_of_addition?: string | undefined;
|
|
@@ -1943,7 +1943,7 @@ export declare const reviewSchema: z.ZodObject<{
|
|
|
1943
1943
|
reason: string;
|
|
1944
1944
|
severity: "high" | "critical" | "caution" | "info";
|
|
1945
1945
|
details?: {
|
|
1946
|
-
value?:
|
|
1946
|
+
value?: any;
|
|
1947
1947
|
contract_address?: `0x${string}` | undefined;
|
|
1948
1948
|
unknown_token?: unknown;
|
|
1949
1949
|
date_of_addition?: string | undefined;
|
|
@@ -2089,7 +2089,7 @@ export declare const reviewSchema: z.ZodObject<{
|
|
|
2089
2089
|
reason: string;
|
|
2090
2090
|
severity: "high" | "critical" | "caution" | "info";
|
|
2091
2091
|
details?: {
|
|
2092
|
-
value?:
|
|
2092
|
+
value?: any;
|
|
2093
2093
|
contract_address?: string | undefined;
|
|
2094
2094
|
unknown_token?: unknown;
|
|
2095
2095
|
date_of_addition?: string | undefined;
|
|
@@ -2152,15 +2152,15 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
2152
2152
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
2153
2153
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2154
2154
|
reason: z.ZodOptional<z.ZodString>;
|
|
2155
|
-
value: z.ZodOptional<z.
|
|
2155
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
2156
2156
|
}, "strip", z.ZodTypeAny, {
|
|
2157
|
-
value?:
|
|
2157
|
+
value?: any;
|
|
2158
2158
|
contract_address?: `0x${string}` | undefined;
|
|
2159
2159
|
unknown_token?: unknown;
|
|
2160
2160
|
date_of_addition?: string | undefined;
|
|
2161
2161
|
reason?: string | undefined;
|
|
2162
2162
|
}, {
|
|
2163
|
-
value?:
|
|
2163
|
+
value?: any;
|
|
2164
2164
|
contract_address?: string | undefined;
|
|
2165
2165
|
unknown_token?: unknown;
|
|
2166
2166
|
date_of_addition?: string | undefined;
|
|
@@ -2171,7 +2171,7 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
2171
2171
|
reason: string;
|
|
2172
2172
|
severity: "high" | "critical" | "caution" | "info";
|
|
2173
2173
|
details?: {
|
|
2174
|
-
value?:
|
|
2174
|
+
value?: any;
|
|
2175
2175
|
contract_address?: `0x${string}` | undefined;
|
|
2176
2176
|
unknown_token?: unknown;
|
|
2177
2177
|
date_of_addition?: string | undefined;
|
|
@@ -2181,7 +2181,7 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
2181
2181
|
reason: string;
|
|
2182
2182
|
severity: "high" | "critical" | "caution" | "info";
|
|
2183
2183
|
details?: {
|
|
2184
|
-
value?:
|
|
2184
|
+
value?: any;
|
|
2185
2185
|
contract_address?: string | undefined;
|
|
2186
2186
|
unknown_token?: unknown;
|
|
2187
2187
|
date_of_addition?: string | undefined;
|
|
@@ -2246,15 +2246,15 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
2246
2246
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
2247
2247
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
2248
2248
|
reason: z.ZodOptional<z.ZodString>;
|
|
2249
|
-
value: z.ZodOptional<z.
|
|
2249
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
2250
2250
|
}, "strip", z.ZodTypeAny, {
|
|
2251
|
-
value?:
|
|
2251
|
+
value?: any;
|
|
2252
2252
|
contract_address?: `0x${string}` | undefined;
|
|
2253
2253
|
unknown_token?: unknown;
|
|
2254
2254
|
date_of_addition?: string | undefined;
|
|
2255
2255
|
reason?: string | undefined;
|
|
2256
2256
|
}, {
|
|
2257
|
-
value?:
|
|
2257
|
+
value?: any;
|
|
2258
2258
|
contract_address?: string | undefined;
|
|
2259
2259
|
unknown_token?: unknown;
|
|
2260
2260
|
date_of_addition?: string | undefined;
|
|
@@ -2265,7 +2265,7 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
2265
2265
|
reason: string;
|
|
2266
2266
|
severity: "high" | "critical" | "caution" | "info";
|
|
2267
2267
|
details?: {
|
|
2268
|
-
value?:
|
|
2268
|
+
value?: any;
|
|
2269
2269
|
contract_address?: `0x${string}` | undefined;
|
|
2270
2270
|
unknown_token?: unknown;
|
|
2271
2271
|
date_of_addition?: string | undefined;
|
|
@@ -2275,7 +2275,7 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
2275
2275
|
reason: string;
|
|
2276
2276
|
severity: "high" | "critical" | "caution" | "info";
|
|
2277
2277
|
details?: {
|
|
2278
|
-
value?:
|
|
2278
|
+
value?: any;
|
|
2279
2279
|
contract_address?: string | undefined;
|
|
2280
2280
|
unknown_token?: unknown;
|
|
2281
2281
|
date_of_addition?: string | undefined;
|
|
@@ -3154,7 +3154,7 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
3154
3154
|
reason: string;
|
|
3155
3155
|
severity: "high" | "critical" | "caution" | "info";
|
|
3156
3156
|
details?: {
|
|
3157
|
-
value?:
|
|
3157
|
+
value?: any;
|
|
3158
3158
|
contract_address?: `0x${string}` | undefined;
|
|
3159
3159
|
unknown_token?: unknown;
|
|
3160
3160
|
date_of_addition?: string | undefined;
|
|
@@ -3300,7 +3300,7 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
3300
3300
|
reason: string;
|
|
3301
3301
|
severity: "high" | "critical" | "caution" | "info";
|
|
3302
3302
|
details?: {
|
|
3303
|
-
value?:
|
|
3303
|
+
value?: any;
|
|
3304
3304
|
contract_address?: string | undefined;
|
|
3305
3305
|
unknown_token?: unknown;
|
|
3306
3306
|
date_of_addition?: string | undefined;
|
|
@@ -3449,7 +3449,7 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
3449
3449
|
reason: string;
|
|
3450
3450
|
severity: "high" | "critical" | "caution" | "info";
|
|
3451
3451
|
details?: {
|
|
3452
|
-
value?:
|
|
3452
|
+
value?: any;
|
|
3453
3453
|
contract_address?: `0x${string}` | undefined;
|
|
3454
3454
|
unknown_token?: unknown;
|
|
3455
3455
|
date_of_addition?: string | undefined;
|
|
@@ -3465,7 +3465,7 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
3465
3465
|
reason: string;
|
|
3466
3466
|
severity: "high" | "critical" | "caution" | "info";
|
|
3467
3467
|
details?: {
|
|
3468
|
-
value?:
|
|
3468
|
+
value?: any;
|
|
3469
3469
|
contract_address?: `0x${string}` | undefined;
|
|
3470
3470
|
unknown_token?: unknown;
|
|
3471
3471
|
date_of_addition?: string | undefined;
|
|
@@ -3624,7 +3624,7 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
3624
3624
|
reason: string;
|
|
3625
3625
|
severity: "high" | "critical" | "caution" | "info";
|
|
3626
3626
|
details?: {
|
|
3627
|
-
value?:
|
|
3627
|
+
value?: any;
|
|
3628
3628
|
contract_address?: string | undefined;
|
|
3629
3629
|
unknown_token?: unknown;
|
|
3630
3630
|
date_of_addition?: string | undefined;
|
|
@@ -3640,7 +3640,7 @@ declare const reviewOfTransactionSchema: z.ZodOptional<z.ZodObject<{
|
|
|
3640
3640
|
reason: string;
|
|
3641
3641
|
severity: "high" | "critical" | "caution" | "info";
|
|
3642
3642
|
details?: {
|
|
3643
|
-
value?:
|
|
3643
|
+
value?: any;
|
|
3644
3644
|
contract_address?: string | undefined;
|
|
3645
3645
|
unknown_token?: unknown;
|
|
3646
3646
|
date_of_addition?: string | undefined;
|
|
@@ -3766,16 +3766,16 @@ export declare const paymasterFeeEstimationSchema: z.ZodObject<{
|
|
|
3766
3766
|
type: "ERC20";
|
|
3767
3767
|
unknown: boolean;
|
|
3768
3768
|
};
|
|
3769
|
-
maxFee: number;
|
|
3770
3769
|
overallFee: number;
|
|
3770
|
+
maxFee: number;
|
|
3771
3771
|
}, {
|
|
3772
3772
|
token: {
|
|
3773
3773
|
address: string;
|
|
3774
3774
|
type: "ERC20";
|
|
3775
3775
|
unknown: boolean;
|
|
3776
3776
|
};
|
|
3777
|
-
maxFee: string | number | bigint;
|
|
3778
3777
|
overallFee: string | number | bigint;
|
|
3778
|
+
maxFee: string | number | bigint;
|
|
3779
3779
|
}>;
|
|
3780
3780
|
export declare const feeEstimationSchema: z.ZodObject<{
|
|
3781
3781
|
overallFee: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>, number, string | number | bigint>;
|
|
@@ -4036,16 +4036,16 @@ export declare const feeEstimationNativeOrPaymasterSchema: z.ZodUnion<[z.ZodObje
|
|
|
4036
4036
|
type: "ERC20";
|
|
4037
4037
|
unknown: boolean;
|
|
4038
4038
|
};
|
|
4039
|
-
maxFee: number;
|
|
4040
4039
|
overallFee: number;
|
|
4040
|
+
maxFee: number;
|
|
4041
4041
|
}, {
|
|
4042
4042
|
token: {
|
|
4043
4043
|
address: string;
|
|
4044
4044
|
type: "ERC20";
|
|
4045
4045
|
unknown: boolean;
|
|
4046
4046
|
};
|
|
4047
|
-
maxFee: string | number | bigint;
|
|
4048
4047
|
overallFee: string | number | bigint;
|
|
4048
|
+
maxFee: string | number | bigint;
|
|
4049
4049
|
}>]>;
|
|
4050
4050
|
declare const summarySchema: z.ZodObject<{
|
|
4051
4051
|
type: z.ZodString;
|
|
@@ -4804,16 +4804,16 @@ declare const simulationSchema: z.ZodObject<{
|
|
|
4804
4804
|
type: "ERC20";
|
|
4805
4805
|
unknown: boolean;
|
|
4806
4806
|
};
|
|
4807
|
-
maxFee: number;
|
|
4808
4807
|
overallFee: number;
|
|
4808
|
+
maxFee: number;
|
|
4809
4809
|
}, {
|
|
4810
4810
|
token: {
|
|
4811
4811
|
address: string;
|
|
4812
4812
|
type: "ERC20";
|
|
4813
4813
|
unknown: boolean;
|
|
4814
4814
|
};
|
|
4815
|
-
maxFee: string | number | bigint;
|
|
4816
4815
|
overallFee: string | number | bigint;
|
|
4816
|
+
maxFee: string | number | bigint;
|
|
4817
4817
|
}>]>, "many">;
|
|
4818
4818
|
summary: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4819
4819
|
type: z.ZodString;
|
|
@@ -5051,8 +5051,8 @@ declare const simulationSchema: z.ZodObject<{
|
|
|
5051
5051
|
type: "ERC20";
|
|
5052
5052
|
unknown: boolean;
|
|
5053
5053
|
};
|
|
5054
|
-
maxFee: number;
|
|
5055
5054
|
overallFee: number;
|
|
5055
|
+
maxFee: number;
|
|
5056
5056
|
} | {
|
|
5057
5057
|
token: {
|
|
5058
5058
|
address: `0x${string}`;
|
|
@@ -5205,8 +5205,8 @@ declare const simulationSchema: z.ZodObject<{
|
|
|
5205
5205
|
type: "ERC20";
|
|
5206
5206
|
unknown: boolean;
|
|
5207
5207
|
};
|
|
5208
|
-
maxFee: string | number | bigint;
|
|
5209
5208
|
overallFee: string | number | bigint;
|
|
5209
|
+
maxFee: string | number | bigint;
|
|
5210
5210
|
} | {
|
|
5211
5211
|
token: {
|
|
5212
5212
|
address: string;
|
|
@@ -5356,15 +5356,15 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
5356
5356
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
5357
5357
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5358
5358
|
reason: z.ZodOptional<z.ZodString>;
|
|
5359
|
-
value: z.ZodOptional<z.
|
|
5359
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
5360
5360
|
}, "strip", z.ZodTypeAny, {
|
|
5361
|
-
value?:
|
|
5361
|
+
value?: any;
|
|
5362
5362
|
contract_address?: `0x${string}` | undefined;
|
|
5363
5363
|
unknown_token?: unknown;
|
|
5364
5364
|
date_of_addition?: string | undefined;
|
|
5365
5365
|
reason?: string | undefined;
|
|
5366
5366
|
}, {
|
|
5367
|
-
value?:
|
|
5367
|
+
value?: any;
|
|
5368
5368
|
contract_address?: string | undefined;
|
|
5369
5369
|
unknown_token?: unknown;
|
|
5370
5370
|
date_of_addition?: string | undefined;
|
|
@@ -5375,7 +5375,7 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
5375
5375
|
reason: string;
|
|
5376
5376
|
severity: "high" | "critical" | "caution" | "info";
|
|
5377
5377
|
details?: {
|
|
5378
|
-
value?:
|
|
5378
|
+
value?: any;
|
|
5379
5379
|
contract_address?: `0x${string}` | undefined;
|
|
5380
5380
|
unknown_token?: unknown;
|
|
5381
5381
|
date_of_addition?: string | undefined;
|
|
@@ -5385,7 +5385,7 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
5385
5385
|
reason: string;
|
|
5386
5386
|
severity: "high" | "critical" | "caution" | "info";
|
|
5387
5387
|
details?: {
|
|
5388
|
-
value?:
|
|
5388
|
+
value?: any;
|
|
5389
5389
|
contract_address?: string | undefined;
|
|
5390
5390
|
unknown_token?: unknown;
|
|
5391
5391
|
date_of_addition?: string | undefined;
|
|
@@ -5450,15 +5450,15 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
5450
5450
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
5451
5451
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
5452
5452
|
reason: z.ZodOptional<z.ZodString>;
|
|
5453
|
-
value: z.ZodOptional<z.
|
|
5453
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
5454
5454
|
}, "strip", z.ZodTypeAny, {
|
|
5455
|
-
value?:
|
|
5455
|
+
value?: any;
|
|
5456
5456
|
contract_address?: `0x${string}` | undefined;
|
|
5457
5457
|
unknown_token?: unknown;
|
|
5458
5458
|
date_of_addition?: string | undefined;
|
|
5459
5459
|
reason?: string | undefined;
|
|
5460
5460
|
}, {
|
|
5461
|
-
value?:
|
|
5461
|
+
value?: any;
|
|
5462
5462
|
contract_address?: string | undefined;
|
|
5463
5463
|
unknown_token?: unknown;
|
|
5464
5464
|
date_of_addition?: string | undefined;
|
|
@@ -5469,7 +5469,7 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
5469
5469
|
reason: string;
|
|
5470
5470
|
severity: "high" | "critical" | "caution" | "info";
|
|
5471
5471
|
details?: {
|
|
5472
|
-
value?:
|
|
5472
|
+
value?: any;
|
|
5473
5473
|
contract_address?: `0x${string}` | undefined;
|
|
5474
5474
|
unknown_token?: unknown;
|
|
5475
5475
|
date_of_addition?: string | undefined;
|
|
@@ -5479,7 +5479,7 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
5479
5479
|
reason: string;
|
|
5480
5480
|
severity: "high" | "critical" | "caution" | "info";
|
|
5481
5481
|
details?: {
|
|
5482
|
-
value?:
|
|
5482
|
+
value?: any;
|
|
5483
5483
|
contract_address?: string | undefined;
|
|
5484
5484
|
unknown_token?: unknown;
|
|
5485
5485
|
date_of_addition?: string | undefined;
|
|
@@ -6358,7 +6358,7 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
6358
6358
|
reason: string;
|
|
6359
6359
|
severity: "high" | "critical" | "caution" | "info";
|
|
6360
6360
|
details?: {
|
|
6361
|
-
value?:
|
|
6361
|
+
value?: any;
|
|
6362
6362
|
contract_address?: `0x${string}` | undefined;
|
|
6363
6363
|
unknown_token?: unknown;
|
|
6364
6364
|
date_of_addition?: string | undefined;
|
|
@@ -6504,7 +6504,7 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
6504
6504
|
reason: string;
|
|
6505
6505
|
severity: "high" | "critical" | "caution" | "info";
|
|
6506
6506
|
details?: {
|
|
6507
|
-
value?:
|
|
6507
|
+
value?: any;
|
|
6508
6508
|
contract_address?: string | undefined;
|
|
6509
6509
|
unknown_token?: unknown;
|
|
6510
6510
|
date_of_addition?: string | undefined;
|
|
@@ -6653,7 +6653,7 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
6653
6653
|
reason: string;
|
|
6654
6654
|
severity: "high" | "critical" | "caution" | "info";
|
|
6655
6655
|
details?: {
|
|
6656
|
-
value?:
|
|
6656
|
+
value?: any;
|
|
6657
6657
|
contract_address?: `0x${string}` | undefined;
|
|
6658
6658
|
unknown_token?: unknown;
|
|
6659
6659
|
date_of_addition?: string | undefined;
|
|
@@ -6669,7 +6669,7 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
6669
6669
|
reason: string;
|
|
6670
6670
|
severity: "high" | "critical" | "caution" | "info";
|
|
6671
6671
|
details?: {
|
|
6672
|
-
value?:
|
|
6672
|
+
value?: any;
|
|
6673
6673
|
contract_address?: `0x${string}` | undefined;
|
|
6674
6674
|
unknown_token?: unknown;
|
|
6675
6675
|
date_of_addition?: string | undefined;
|
|
@@ -6828,7 +6828,7 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
6828
6828
|
reason: string;
|
|
6829
6829
|
severity: "high" | "critical" | "caution" | "info";
|
|
6830
6830
|
details?: {
|
|
6831
|
-
value?:
|
|
6831
|
+
value?: any;
|
|
6832
6832
|
contract_address?: string | undefined;
|
|
6833
6833
|
unknown_token?: unknown;
|
|
6834
6834
|
date_of_addition?: string | undefined;
|
|
@@ -6844,7 +6844,7 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
6844
6844
|
reason: string;
|
|
6845
6845
|
severity: "high" | "critical" | "caution" | "info";
|
|
6846
6846
|
details?: {
|
|
6847
|
-
value?:
|
|
6847
|
+
value?: any;
|
|
6848
6848
|
contract_address?: string | undefined;
|
|
6849
6849
|
unknown_token?: unknown;
|
|
6850
6850
|
date_of_addition?: string | undefined;
|
|
@@ -7418,16 +7418,16 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
7418
7418
|
type: "ERC20";
|
|
7419
7419
|
unknown: boolean;
|
|
7420
7420
|
};
|
|
7421
|
-
maxFee: number;
|
|
7422
7421
|
overallFee: number;
|
|
7422
|
+
maxFee: number;
|
|
7423
7423
|
}, {
|
|
7424
7424
|
token: {
|
|
7425
7425
|
address: string;
|
|
7426
7426
|
type: "ERC20";
|
|
7427
7427
|
unknown: boolean;
|
|
7428
7428
|
};
|
|
7429
|
-
maxFee: string | number | bigint;
|
|
7430
7429
|
overallFee: string | number | bigint;
|
|
7430
|
+
maxFee: string | number | bigint;
|
|
7431
7431
|
}>]>, "many">;
|
|
7432
7432
|
summary: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7433
7433
|
type: z.ZodString;
|
|
@@ -7665,8 +7665,8 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
7665
7665
|
type: "ERC20";
|
|
7666
7666
|
unknown: boolean;
|
|
7667
7667
|
};
|
|
7668
|
-
maxFee: number;
|
|
7669
7668
|
overallFee: number;
|
|
7669
|
+
maxFee: number;
|
|
7670
7670
|
} | {
|
|
7671
7671
|
token: {
|
|
7672
7672
|
address: `0x${string}`;
|
|
@@ -7819,8 +7819,8 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
7819
7819
|
type: "ERC20";
|
|
7820
7820
|
unknown: boolean;
|
|
7821
7821
|
};
|
|
7822
|
-
maxFee: string | number | bigint;
|
|
7823
7822
|
overallFee: string | number | bigint;
|
|
7823
|
+
maxFee: string | number | bigint;
|
|
7824
7824
|
} | {
|
|
7825
7825
|
token: {
|
|
7826
7826
|
address: string;
|
|
@@ -7976,8 +7976,8 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
7976
7976
|
type: "ERC20";
|
|
7977
7977
|
unknown: boolean;
|
|
7978
7978
|
};
|
|
7979
|
-
maxFee: number;
|
|
7980
7979
|
overallFee: number;
|
|
7980
|
+
maxFee: number;
|
|
7981
7981
|
} | {
|
|
7982
7982
|
token: {
|
|
7983
7983
|
address: `0x${string}`;
|
|
@@ -8238,7 +8238,7 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
8238
8238
|
reason: string;
|
|
8239
8239
|
severity: "high" | "critical" | "caution" | "info";
|
|
8240
8240
|
details?: {
|
|
8241
|
-
value?:
|
|
8241
|
+
value?: any;
|
|
8242
8242
|
contract_address?: `0x${string}` | undefined;
|
|
8243
8243
|
unknown_token?: unknown;
|
|
8244
8244
|
date_of_addition?: string | undefined;
|
|
@@ -8254,7 +8254,7 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
8254
8254
|
reason: string;
|
|
8255
8255
|
severity: "high" | "critical" | "caution" | "info";
|
|
8256
8256
|
details?: {
|
|
8257
|
-
value?:
|
|
8257
|
+
value?: any;
|
|
8258
8258
|
contract_address?: `0x${string}` | undefined;
|
|
8259
8259
|
unknown_token?: unknown;
|
|
8260
8260
|
date_of_addition?: string | undefined;
|
|
@@ -8309,8 +8309,8 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
8309
8309
|
type: "ERC20";
|
|
8310
8310
|
unknown: boolean;
|
|
8311
8311
|
};
|
|
8312
|
-
maxFee: string | number | bigint;
|
|
8313
8312
|
overallFee: string | number | bigint;
|
|
8313
|
+
maxFee: string | number | bigint;
|
|
8314
8314
|
} | {
|
|
8315
8315
|
token: {
|
|
8316
8316
|
address: string;
|
|
@@ -8571,7 +8571,7 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
8571
8571
|
reason: string;
|
|
8572
8572
|
severity: "high" | "critical" | "caution" | "info";
|
|
8573
8573
|
details?: {
|
|
8574
|
-
value?:
|
|
8574
|
+
value?: any;
|
|
8575
8575
|
contract_address?: string | undefined;
|
|
8576
8576
|
unknown_token?: unknown;
|
|
8577
8577
|
date_of_addition?: string | undefined;
|
|
@@ -8587,7 +8587,7 @@ declare const transactionSimulationSchema: z.ZodObject<{
|
|
|
8587
8587
|
reason: string;
|
|
8588
8588
|
severity: "high" | "critical" | "caution" | "info";
|
|
8589
8589
|
details?: {
|
|
8590
|
-
value?:
|
|
8590
|
+
value?: any;
|
|
8591
8591
|
contract_address?: string | undefined;
|
|
8592
8592
|
unknown_token?: unknown;
|
|
8593
8593
|
date_of_addition?: string | undefined;
|
|
@@ -8622,15 +8622,15 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
8622
8622
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
8623
8623
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8624
8624
|
reason: z.ZodOptional<z.ZodString>;
|
|
8625
|
-
value: z.ZodOptional<z.
|
|
8625
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
8626
8626
|
}, "strip", z.ZodTypeAny, {
|
|
8627
|
-
value?:
|
|
8627
|
+
value?: any;
|
|
8628
8628
|
contract_address?: `0x${string}` | undefined;
|
|
8629
8629
|
unknown_token?: unknown;
|
|
8630
8630
|
date_of_addition?: string | undefined;
|
|
8631
8631
|
reason?: string | undefined;
|
|
8632
8632
|
}, {
|
|
8633
|
-
value?:
|
|
8633
|
+
value?: any;
|
|
8634
8634
|
contract_address?: string | undefined;
|
|
8635
8635
|
unknown_token?: unknown;
|
|
8636
8636
|
date_of_addition?: string | undefined;
|
|
@@ -8641,7 +8641,7 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
8641
8641
|
reason: string;
|
|
8642
8642
|
severity: "high" | "critical" | "caution" | "info";
|
|
8643
8643
|
details?: {
|
|
8644
|
-
value?:
|
|
8644
|
+
value?: any;
|
|
8645
8645
|
contract_address?: `0x${string}` | undefined;
|
|
8646
8646
|
unknown_token?: unknown;
|
|
8647
8647
|
date_of_addition?: string | undefined;
|
|
@@ -8651,7 +8651,7 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
8651
8651
|
reason: string;
|
|
8652
8652
|
severity: "high" | "critical" | "caution" | "info";
|
|
8653
8653
|
details?: {
|
|
8654
|
-
value?:
|
|
8654
|
+
value?: any;
|
|
8655
8655
|
contract_address?: string | undefined;
|
|
8656
8656
|
unknown_token?: unknown;
|
|
8657
8657
|
date_of_addition?: string | undefined;
|
|
@@ -8716,15 +8716,15 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
8716
8716
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
8717
8717
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
8718
8718
|
reason: z.ZodOptional<z.ZodString>;
|
|
8719
|
-
value: z.ZodOptional<z.
|
|
8719
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
8720
8720
|
}, "strip", z.ZodTypeAny, {
|
|
8721
|
-
value?:
|
|
8721
|
+
value?: any;
|
|
8722
8722
|
contract_address?: `0x${string}` | undefined;
|
|
8723
8723
|
unknown_token?: unknown;
|
|
8724
8724
|
date_of_addition?: string | undefined;
|
|
8725
8725
|
reason?: string | undefined;
|
|
8726
8726
|
}, {
|
|
8727
|
-
value?:
|
|
8727
|
+
value?: any;
|
|
8728
8728
|
contract_address?: string | undefined;
|
|
8729
8729
|
unknown_token?: unknown;
|
|
8730
8730
|
date_of_addition?: string | undefined;
|
|
@@ -8735,7 +8735,7 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
8735
8735
|
reason: string;
|
|
8736
8736
|
severity: "high" | "critical" | "caution" | "info";
|
|
8737
8737
|
details?: {
|
|
8738
|
-
value?:
|
|
8738
|
+
value?: any;
|
|
8739
8739
|
contract_address?: `0x${string}` | undefined;
|
|
8740
8740
|
unknown_token?: unknown;
|
|
8741
8741
|
date_of_addition?: string | undefined;
|
|
@@ -8745,7 +8745,7 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
8745
8745
|
reason: string;
|
|
8746
8746
|
severity: "high" | "critical" | "caution" | "info";
|
|
8747
8747
|
details?: {
|
|
8748
|
-
value?:
|
|
8748
|
+
value?: any;
|
|
8749
8749
|
contract_address?: string | undefined;
|
|
8750
8750
|
unknown_token?: unknown;
|
|
8751
8751
|
date_of_addition?: string | undefined;
|
|
@@ -9624,7 +9624,7 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
9624
9624
|
reason: string;
|
|
9625
9625
|
severity: "high" | "critical" | "caution" | "info";
|
|
9626
9626
|
details?: {
|
|
9627
|
-
value?:
|
|
9627
|
+
value?: any;
|
|
9628
9628
|
contract_address?: `0x${string}` | undefined;
|
|
9629
9629
|
unknown_token?: unknown;
|
|
9630
9630
|
date_of_addition?: string | undefined;
|
|
@@ -9770,7 +9770,7 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
9770
9770
|
reason: string;
|
|
9771
9771
|
severity: "high" | "critical" | "caution" | "info";
|
|
9772
9772
|
details?: {
|
|
9773
|
-
value?:
|
|
9773
|
+
value?: any;
|
|
9774
9774
|
contract_address?: string | undefined;
|
|
9775
9775
|
unknown_token?: unknown;
|
|
9776
9776
|
date_of_addition?: string | undefined;
|
|
@@ -9919,7 +9919,7 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
9919
9919
|
reason: string;
|
|
9920
9920
|
severity: "high" | "critical" | "caution" | "info";
|
|
9921
9921
|
details?: {
|
|
9922
|
-
value?:
|
|
9922
|
+
value?: any;
|
|
9923
9923
|
contract_address?: `0x${string}` | undefined;
|
|
9924
9924
|
unknown_token?: unknown;
|
|
9925
9925
|
date_of_addition?: string | undefined;
|
|
@@ -9935,7 +9935,7 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
9935
9935
|
reason: string;
|
|
9936
9936
|
severity: "high" | "critical" | "caution" | "info";
|
|
9937
9937
|
details?: {
|
|
9938
|
-
value?:
|
|
9938
|
+
value?: any;
|
|
9939
9939
|
contract_address?: `0x${string}` | undefined;
|
|
9940
9940
|
unknown_token?: unknown;
|
|
9941
9941
|
date_of_addition?: string | undefined;
|
|
@@ -10094,7 +10094,7 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
10094
10094
|
reason: string;
|
|
10095
10095
|
severity: "high" | "critical" | "caution" | "info";
|
|
10096
10096
|
details?: {
|
|
10097
|
-
value?:
|
|
10097
|
+
value?: any;
|
|
10098
10098
|
contract_address?: string | undefined;
|
|
10099
10099
|
unknown_token?: unknown;
|
|
10100
10100
|
date_of_addition?: string | undefined;
|
|
@@ -10110,7 +10110,7 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
10110
10110
|
reason: string;
|
|
10111
10111
|
severity: "high" | "critical" | "caution" | "info";
|
|
10112
10112
|
details?: {
|
|
10113
|
-
value?:
|
|
10113
|
+
value?: any;
|
|
10114
10114
|
contract_address?: string | undefined;
|
|
10115
10115
|
unknown_token?: unknown;
|
|
10116
10116
|
date_of_addition?: string | undefined;
|
|
@@ -10294,7 +10294,7 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
10294
10294
|
reason: string;
|
|
10295
10295
|
severity: "high" | "critical" | "caution" | "info";
|
|
10296
10296
|
details?: {
|
|
10297
|
-
value?:
|
|
10297
|
+
value?: any;
|
|
10298
10298
|
contract_address?: `0x${string}` | undefined;
|
|
10299
10299
|
unknown_token?: unknown;
|
|
10300
10300
|
date_of_addition?: string | undefined;
|
|
@@ -10310,7 +10310,7 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
10310
10310
|
reason: string;
|
|
10311
10311
|
severity: "high" | "critical" | "caution" | "info";
|
|
10312
10312
|
details?: {
|
|
10313
|
-
value?:
|
|
10313
|
+
value?: any;
|
|
10314
10314
|
contract_address?: `0x${string}` | undefined;
|
|
10315
10315
|
unknown_token?: unknown;
|
|
10316
10316
|
date_of_addition?: string | undefined;
|
|
@@ -10478,7 +10478,7 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
10478
10478
|
reason: string;
|
|
10479
10479
|
severity: "high" | "critical" | "caution" | "info";
|
|
10480
10480
|
details?: {
|
|
10481
|
-
value?:
|
|
10481
|
+
value?: any;
|
|
10482
10482
|
contract_address?: string | undefined;
|
|
10483
10483
|
unknown_token?: unknown;
|
|
10484
10484
|
date_of_addition?: string | undefined;
|
|
@@ -10494,7 +10494,7 @@ declare const transactionSimulationErrorSchema: z.ZodObject<{
|
|
|
10494
10494
|
reason: string;
|
|
10495
10495
|
severity: "high" | "critical" | "caution" | "info";
|
|
10496
10496
|
details?: {
|
|
10497
|
-
value?:
|
|
10497
|
+
value?: any;
|
|
10498
10498
|
contract_address?: string | undefined;
|
|
10499
10499
|
unknown_token?: unknown;
|
|
10500
10500
|
date_of_addition?: string | undefined;
|
|
@@ -10529,15 +10529,15 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10529
10529
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
10530
10530
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10531
10531
|
reason: z.ZodOptional<z.ZodString>;
|
|
10532
|
-
value: z.ZodOptional<z.
|
|
10532
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
10533
10533
|
}, "strip", z.ZodTypeAny, {
|
|
10534
|
-
value?:
|
|
10534
|
+
value?: any;
|
|
10535
10535
|
contract_address?: `0x${string}` | undefined;
|
|
10536
10536
|
unknown_token?: unknown;
|
|
10537
10537
|
date_of_addition?: string | undefined;
|
|
10538
10538
|
reason?: string | undefined;
|
|
10539
10539
|
}, {
|
|
10540
|
-
value?:
|
|
10540
|
+
value?: any;
|
|
10541
10541
|
contract_address?: string | undefined;
|
|
10542
10542
|
unknown_token?: unknown;
|
|
10543
10543
|
date_of_addition?: string | undefined;
|
|
@@ -10548,7 +10548,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10548
10548
|
reason: string;
|
|
10549
10549
|
severity: "high" | "critical" | "caution" | "info";
|
|
10550
10550
|
details?: {
|
|
10551
|
-
value?:
|
|
10551
|
+
value?: any;
|
|
10552
10552
|
contract_address?: `0x${string}` | undefined;
|
|
10553
10553
|
unknown_token?: unknown;
|
|
10554
10554
|
date_of_addition?: string | undefined;
|
|
@@ -10558,7 +10558,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10558
10558
|
reason: string;
|
|
10559
10559
|
severity: "high" | "critical" | "caution" | "info";
|
|
10560
10560
|
details?: {
|
|
10561
|
-
value?:
|
|
10561
|
+
value?: any;
|
|
10562
10562
|
contract_address?: string | undefined;
|
|
10563
10563
|
unknown_token?: unknown;
|
|
10564
10564
|
date_of_addition?: string | undefined;
|
|
@@ -10623,15 +10623,15 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10623
10623
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
10624
10624
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
10625
10625
|
reason: z.ZodOptional<z.ZodString>;
|
|
10626
|
-
value: z.ZodOptional<z.
|
|
10626
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
10627
10627
|
}, "strip", z.ZodTypeAny, {
|
|
10628
|
-
value?:
|
|
10628
|
+
value?: any;
|
|
10629
10629
|
contract_address?: `0x${string}` | undefined;
|
|
10630
10630
|
unknown_token?: unknown;
|
|
10631
10631
|
date_of_addition?: string | undefined;
|
|
10632
10632
|
reason?: string | undefined;
|
|
10633
10633
|
}, {
|
|
10634
|
-
value?:
|
|
10634
|
+
value?: any;
|
|
10635
10635
|
contract_address?: string | undefined;
|
|
10636
10636
|
unknown_token?: unknown;
|
|
10637
10637
|
date_of_addition?: string | undefined;
|
|
@@ -10642,7 +10642,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10642
10642
|
reason: string;
|
|
10643
10643
|
severity: "high" | "critical" | "caution" | "info";
|
|
10644
10644
|
details?: {
|
|
10645
|
-
value?:
|
|
10645
|
+
value?: any;
|
|
10646
10646
|
contract_address?: `0x${string}` | undefined;
|
|
10647
10647
|
unknown_token?: unknown;
|
|
10648
10648
|
date_of_addition?: string | undefined;
|
|
@@ -10652,7 +10652,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10652
10652
|
reason: string;
|
|
10653
10653
|
severity: "high" | "critical" | "caution" | "info";
|
|
10654
10654
|
details?: {
|
|
10655
|
-
value?:
|
|
10655
|
+
value?: any;
|
|
10656
10656
|
contract_address?: string | undefined;
|
|
10657
10657
|
unknown_token?: unknown;
|
|
10658
10658
|
date_of_addition?: string | undefined;
|
|
@@ -11531,7 +11531,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11531
11531
|
reason: string;
|
|
11532
11532
|
severity: "high" | "critical" | "caution" | "info";
|
|
11533
11533
|
details?: {
|
|
11534
|
-
value?:
|
|
11534
|
+
value?: any;
|
|
11535
11535
|
contract_address?: `0x${string}` | undefined;
|
|
11536
11536
|
unknown_token?: unknown;
|
|
11537
11537
|
date_of_addition?: string | undefined;
|
|
@@ -11677,7 +11677,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11677
11677
|
reason: string;
|
|
11678
11678
|
severity: "high" | "critical" | "caution" | "info";
|
|
11679
11679
|
details?: {
|
|
11680
|
-
value?:
|
|
11680
|
+
value?: any;
|
|
11681
11681
|
contract_address?: string | undefined;
|
|
11682
11682
|
unknown_token?: unknown;
|
|
11683
11683
|
date_of_addition?: string | undefined;
|
|
@@ -11826,7 +11826,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11826
11826
|
reason: string;
|
|
11827
11827
|
severity: "high" | "critical" | "caution" | "info";
|
|
11828
11828
|
details?: {
|
|
11829
|
-
value?:
|
|
11829
|
+
value?: any;
|
|
11830
11830
|
contract_address?: `0x${string}` | undefined;
|
|
11831
11831
|
unknown_token?: unknown;
|
|
11832
11832
|
date_of_addition?: string | undefined;
|
|
@@ -11842,7 +11842,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11842
11842
|
reason: string;
|
|
11843
11843
|
severity: "high" | "critical" | "caution" | "info";
|
|
11844
11844
|
details?: {
|
|
11845
|
-
value?:
|
|
11845
|
+
value?: any;
|
|
11846
11846
|
contract_address?: `0x${string}` | undefined;
|
|
11847
11847
|
unknown_token?: unknown;
|
|
11848
11848
|
date_of_addition?: string | undefined;
|
|
@@ -12001,7 +12001,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12001
12001
|
reason: string;
|
|
12002
12002
|
severity: "high" | "critical" | "caution" | "info";
|
|
12003
12003
|
details?: {
|
|
12004
|
-
value?:
|
|
12004
|
+
value?: any;
|
|
12005
12005
|
contract_address?: string | undefined;
|
|
12006
12006
|
unknown_token?: unknown;
|
|
12007
12007
|
date_of_addition?: string | undefined;
|
|
@@ -12017,7 +12017,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12017
12017
|
reason: string;
|
|
12018
12018
|
severity: "high" | "critical" | "caution" | "info";
|
|
12019
12019
|
details?: {
|
|
12020
|
-
value?:
|
|
12020
|
+
value?: any;
|
|
12021
12021
|
contract_address?: string | undefined;
|
|
12022
12022
|
unknown_token?: unknown;
|
|
12023
12023
|
date_of_addition?: string | undefined;
|
|
@@ -12591,16 +12591,16 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12591
12591
|
type: "ERC20";
|
|
12592
12592
|
unknown: boolean;
|
|
12593
12593
|
};
|
|
12594
|
-
maxFee: number;
|
|
12595
12594
|
overallFee: number;
|
|
12595
|
+
maxFee: number;
|
|
12596
12596
|
}, {
|
|
12597
12597
|
token: {
|
|
12598
12598
|
address: string;
|
|
12599
12599
|
type: "ERC20";
|
|
12600
12600
|
unknown: boolean;
|
|
12601
12601
|
};
|
|
12602
|
-
maxFee: string | number | bigint;
|
|
12603
12602
|
overallFee: string | number | bigint;
|
|
12603
|
+
maxFee: string | number | bigint;
|
|
12604
12604
|
}>]>, "many">;
|
|
12605
12605
|
summary: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12606
12606
|
type: z.ZodString;
|
|
@@ -12838,8 +12838,8 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12838
12838
|
type: "ERC20";
|
|
12839
12839
|
unknown: boolean;
|
|
12840
12840
|
};
|
|
12841
|
-
maxFee: number;
|
|
12842
12841
|
overallFee: number;
|
|
12842
|
+
maxFee: number;
|
|
12843
12843
|
} | {
|
|
12844
12844
|
token: {
|
|
12845
12845
|
address: `0x${string}`;
|
|
@@ -12992,8 +12992,8 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12992
12992
|
type: "ERC20";
|
|
12993
12993
|
unknown: boolean;
|
|
12994
12994
|
};
|
|
12995
|
-
maxFee: string | number | bigint;
|
|
12996
12995
|
overallFee: string | number | bigint;
|
|
12996
|
+
maxFee: string | number | bigint;
|
|
12997
12997
|
} | {
|
|
12998
12998
|
token: {
|
|
12999
12999
|
address: string;
|
|
@@ -13149,8 +13149,8 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13149
13149
|
type: "ERC20";
|
|
13150
13150
|
unknown: boolean;
|
|
13151
13151
|
};
|
|
13152
|
-
maxFee: number;
|
|
13153
13152
|
overallFee: number;
|
|
13153
|
+
maxFee: number;
|
|
13154
13154
|
} | {
|
|
13155
13155
|
token: {
|
|
13156
13156
|
address: `0x${string}`;
|
|
@@ -13411,7 +13411,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13411
13411
|
reason: string;
|
|
13412
13412
|
severity: "high" | "critical" | "caution" | "info";
|
|
13413
13413
|
details?: {
|
|
13414
|
-
value?:
|
|
13414
|
+
value?: any;
|
|
13415
13415
|
contract_address?: `0x${string}` | undefined;
|
|
13416
13416
|
unknown_token?: unknown;
|
|
13417
13417
|
date_of_addition?: string | undefined;
|
|
@@ -13427,7 +13427,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13427
13427
|
reason: string;
|
|
13428
13428
|
severity: "high" | "critical" | "caution" | "info";
|
|
13429
13429
|
details?: {
|
|
13430
|
-
value?:
|
|
13430
|
+
value?: any;
|
|
13431
13431
|
contract_address?: `0x${string}` | undefined;
|
|
13432
13432
|
unknown_token?: unknown;
|
|
13433
13433
|
date_of_addition?: string | undefined;
|
|
@@ -13482,8 +13482,8 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13482
13482
|
type: "ERC20";
|
|
13483
13483
|
unknown: boolean;
|
|
13484
13484
|
};
|
|
13485
|
-
maxFee: string | number | bigint;
|
|
13486
13485
|
overallFee: string | number | bigint;
|
|
13486
|
+
maxFee: string | number | bigint;
|
|
13487
13487
|
} | {
|
|
13488
13488
|
token: {
|
|
13489
13489
|
address: string;
|
|
@@ -13744,7 +13744,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13744
13744
|
reason: string;
|
|
13745
13745
|
severity: "high" | "critical" | "caution" | "info";
|
|
13746
13746
|
details?: {
|
|
13747
|
-
value?:
|
|
13747
|
+
value?: any;
|
|
13748
13748
|
contract_address?: string | undefined;
|
|
13749
13749
|
unknown_token?: unknown;
|
|
13750
13750
|
date_of_addition?: string | undefined;
|
|
@@ -13760,7 +13760,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13760
13760
|
reason: string;
|
|
13761
13761
|
severity: "high" | "critical" | "caution" | "info";
|
|
13762
13762
|
details?: {
|
|
13763
|
-
value?:
|
|
13763
|
+
value?: any;
|
|
13764
13764
|
contract_address?: string | undefined;
|
|
13765
13765
|
unknown_token?: unknown;
|
|
13766
13766
|
date_of_addition?: string | undefined;
|
|
@@ -13794,15 +13794,15 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13794
13794
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
13795
13795
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
13796
13796
|
reason: z.ZodOptional<z.ZodString>;
|
|
13797
|
-
value: z.ZodOptional<z.
|
|
13797
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
13798
13798
|
}, "strip", z.ZodTypeAny, {
|
|
13799
|
-
value?:
|
|
13799
|
+
value?: any;
|
|
13800
13800
|
contract_address?: `0x${string}` | undefined;
|
|
13801
13801
|
unknown_token?: unknown;
|
|
13802
13802
|
date_of_addition?: string | undefined;
|
|
13803
13803
|
reason?: string | undefined;
|
|
13804
13804
|
}, {
|
|
13805
|
-
value?:
|
|
13805
|
+
value?: any;
|
|
13806
13806
|
contract_address?: string | undefined;
|
|
13807
13807
|
unknown_token?: unknown;
|
|
13808
13808
|
date_of_addition?: string | undefined;
|
|
@@ -13813,7 +13813,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13813
13813
|
reason: string;
|
|
13814
13814
|
severity: "high" | "critical" | "caution" | "info";
|
|
13815
13815
|
details?: {
|
|
13816
|
-
value?:
|
|
13816
|
+
value?: any;
|
|
13817
13817
|
contract_address?: `0x${string}` | undefined;
|
|
13818
13818
|
unknown_token?: unknown;
|
|
13819
13819
|
date_of_addition?: string | undefined;
|
|
@@ -13823,7 +13823,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13823
13823
|
reason: string;
|
|
13824
13824
|
severity: "high" | "critical" | "caution" | "info";
|
|
13825
13825
|
details?: {
|
|
13826
|
-
value?:
|
|
13826
|
+
value?: any;
|
|
13827
13827
|
contract_address?: string | undefined;
|
|
13828
13828
|
unknown_token?: unknown;
|
|
13829
13829
|
date_of_addition?: string | undefined;
|
|
@@ -13888,15 +13888,15 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13888
13888
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
13889
13889
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
13890
13890
|
reason: z.ZodOptional<z.ZodString>;
|
|
13891
|
-
value: z.ZodOptional<z.
|
|
13891
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
13892
13892
|
}, "strip", z.ZodTypeAny, {
|
|
13893
|
-
value?:
|
|
13893
|
+
value?: any;
|
|
13894
13894
|
contract_address?: `0x${string}` | undefined;
|
|
13895
13895
|
unknown_token?: unknown;
|
|
13896
13896
|
date_of_addition?: string | undefined;
|
|
13897
13897
|
reason?: string | undefined;
|
|
13898
13898
|
}, {
|
|
13899
|
-
value?:
|
|
13899
|
+
value?: any;
|
|
13900
13900
|
contract_address?: string | undefined;
|
|
13901
13901
|
unknown_token?: unknown;
|
|
13902
13902
|
date_of_addition?: string | undefined;
|
|
@@ -13907,7 +13907,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13907
13907
|
reason: string;
|
|
13908
13908
|
severity: "high" | "critical" | "caution" | "info";
|
|
13909
13909
|
details?: {
|
|
13910
|
-
value?:
|
|
13910
|
+
value?: any;
|
|
13911
13911
|
contract_address?: `0x${string}` | undefined;
|
|
13912
13912
|
unknown_token?: unknown;
|
|
13913
13913
|
date_of_addition?: string | undefined;
|
|
@@ -13917,7 +13917,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13917
13917
|
reason: string;
|
|
13918
13918
|
severity: "high" | "critical" | "caution" | "info";
|
|
13919
13919
|
details?: {
|
|
13920
|
-
value?:
|
|
13920
|
+
value?: any;
|
|
13921
13921
|
contract_address?: string | undefined;
|
|
13922
13922
|
unknown_token?: unknown;
|
|
13923
13923
|
date_of_addition?: string | undefined;
|
|
@@ -14796,7 +14796,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14796
14796
|
reason: string;
|
|
14797
14797
|
severity: "high" | "critical" | "caution" | "info";
|
|
14798
14798
|
details?: {
|
|
14799
|
-
value?:
|
|
14799
|
+
value?: any;
|
|
14800
14800
|
contract_address?: `0x${string}` | undefined;
|
|
14801
14801
|
unknown_token?: unknown;
|
|
14802
14802
|
date_of_addition?: string | undefined;
|
|
@@ -14942,7 +14942,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14942
14942
|
reason: string;
|
|
14943
14943
|
severity: "high" | "critical" | "caution" | "info";
|
|
14944
14944
|
details?: {
|
|
14945
|
-
value?:
|
|
14945
|
+
value?: any;
|
|
14946
14946
|
contract_address?: string | undefined;
|
|
14947
14947
|
unknown_token?: unknown;
|
|
14948
14948
|
date_of_addition?: string | undefined;
|
|
@@ -15091,7 +15091,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15091
15091
|
reason: string;
|
|
15092
15092
|
severity: "high" | "critical" | "caution" | "info";
|
|
15093
15093
|
details?: {
|
|
15094
|
-
value?:
|
|
15094
|
+
value?: any;
|
|
15095
15095
|
contract_address?: `0x${string}` | undefined;
|
|
15096
15096
|
unknown_token?: unknown;
|
|
15097
15097
|
date_of_addition?: string | undefined;
|
|
@@ -15107,7 +15107,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15107
15107
|
reason: string;
|
|
15108
15108
|
severity: "high" | "critical" | "caution" | "info";
|
|
15109
15109
|
details?: {
|
|
15110
|
-
value?:
|
|
15110
|
+
value?: any;
|
|
15111
15111
|
contract_address?: `0x${string}` | undefined;
|
|
15112
15112
|
unknown_token?: unknown;
|
|
15113
15113
|
date_of_addition?: string | undefined;
|
|
@@ -15266,7 +15266,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15266
15266
|
reason: string;
|
|
15267
15267
|
severity: "high" | "critical" | "caution" | "info";
|
|
15268
15268
|
details?: {
|
|
15269
|
-
value?:
|
|
15269
|
+
value?: any;
|
|
15270
15270
|
contract_address?: string | undefined;
|
|
15271
15271
|
unknown_token?: unknown;
|
|
15272
15272
|
date_of_addition?: string | undefined;
|
|
@@ -15282,7 +15282,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15282
15282
|
reason: string;
|
|
15283
15283
|
severity: "high" | "critical" | "caution" | "info";
|
|
15284
15284
|
details?: {
|
|
15285
|
-
value?:
|
|
15285
|
+
value?: any;
|
|
15286
15286
|
contract_address?: string | undefined;
|
|
15287
15287
|
unknown_token?: unknown;
|
|
15288
15288
|
date_of_addition?: string | undefined;
|
|
@@ -15466,7 +15466,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15466
15466
|
reason: string;
|
|
15467
15467
|
severity: "high" | "critical" | "caution" | "info";
|
|
15468
15468
|
details?: {
|
|
15469
|
-
value?:
|
|
15469
|
+
value?: any;
|
|
15470
15470
|
contract_address?: `0x${string}` | undefined;
|
|
15471
15471
|
unknown_token?: unknown;
|
|
15472
15472
|
date_of_addition?: string | undefined;
|
|
@@ -15482,7 +15482,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15482
15482
|
reason: string;
|
|
15483
15483
|
severity: "high" | "critical" | "caution" | "info";
|
|
15484
15484
|
details?: {
|
|
15485
|
-
value?:
|
|
15485
|
+
value?: any;
|
|
15486
15486
|
contract_address?: `0x${string}` | undefined;
|
|
15487
15487
|
unknown_token?: unknown;
|
|
15488
15488
|
date_of_addition?: string | undefined;
|
|
@@ -15650,7 +15650,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15650
15650
|
reason: string;
|
|
15651
15651
|
severity: "high" | "critical" | "caution" | "info";
|
|
15652
15652
|
details?: {
|
|
15653
|
-
value?:
|
|
15653
|
+
value?: any;
|
|
15654
15654
|
contract_address?: string | undefined;
|
|
15655
15655
|
unknown_token?: unknown;
|
|
15656
15656
|
date_of_addition?: string | undefined;
|
|
@@ -15666,7 +15666,7 @@ declare const transactionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15666
15666
|
reason: string;
|
|
15667
15667
|
severity: "high" | "critical" | "caution" | "info";
|
|
15668
15668
|
details?: {
|
|
15669
|
-
value?:
|
|
15669
|
+
value?: any;
|
|
15670
15670
|
contract_address?: string | undefined;
|
|
15671
15671
|
unknown_token?: unknown;
|
|
15672
15672
|
date_of_addition?: string | undefined;
|
|
@@ -15735,15 +15735,15 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
15735
15735
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
15736
15736
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
15737
15737
|
reason: z.ZodOptional<z.ZodString>;
|
|
15738
|
-
value: z.ZodOptional<z.
|
|
15738
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
15739
15739
|
}, "strip", z.ZodTypeAny, {
|
|
15740
|
-
value?:
|
|
15740
|
+
value?: any;
|
|
15741
15741
|
contract_address?: `0x${string}` | undefined;
|
|
15742
15742
|
unknown_token?: unknown;
|
|
15743
15743
|
date_of_addition?: string | undefined;
|
|
15744
15744
|
reason?: string | undefined;
|
|
15745
15745
|
}, {
|
|
15746
|
-
value?:
|
|
15746
|
+
value?: any;
|
|
15747
15747
|
contract_address?: string | undefined;
|
|
15748
15748
|
unknown_token?: unknown;
|
|
15749
15749
|
date_of_addition?: string | undefined;
|
|
@@ -15754,7 +15754,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
15754
15754
|
reason: string;
|
|
15755
15755
|
severity: "high" | "critical" | "caution" | "info";
|
|
15756
15756
|
details?: {
|
|
15757
|
-
value?:
|
|
15757
|
+
value?: any;
|
|
15758
15758
|
contract_address?: `0x${string}` | undefined;
|
|
15759
15759
|
unknown_token?: unknown;
|
|
15760
15760
|
date_of_addition?: string | undefined;
|
|
@@ -15764,7 +15764,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
15764
15764
|
reason: string;
|
|
15765
15765
|
severity: "high" | "critical" | "caution" | "info";
|
|
15766
15766
|
details?: {
|
|
15767
|
-
value?:
|
|
15767
|
+
value?: any;
|
|
15768
15768
|
contract_address?: string | undefined;
|
|
15769
15769
|
unknown_token?: unknown;
|
|
15770
15770
|
date_of_addition?: string | undefined;
|
|
@@ -15829,15 +15829,15 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
15829
15829
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
15830
15830
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
15831
15831
|
reason: z.ZodOptional<z.ZodString>;
|
|
15832
|
-
value: z.ZodOptional<z.
|
|
15832
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
15833
15833
|
}, "strip", z.ZodTypeAny, {
|
|
15834
|
-
value?:
|
|
15834
|
+
value?: any;
|
|
15835
15835
|
contract_address?: `0x${string}` | undefined;
|
|
15836
15836
|
unknown_token?: unknown;
|
|
15837
15837
|
date_of_addition?: string | undefined;
|
|
15838
15838
|
reason?: string | undefined;
|
|
15839
15839
|
}, {
|
|
15840
|
-
value?:
|
|
15840
|
+
value?: any;
|
|
15841
15841
|
contract_address?: string | undefined;
|
|
15842
15842
|
unknown_token?: unknown;
|
|
15843
15843
|
date_of_addition?: string | undefined;
|
|
@@ -15848,7 +15848,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
15848
15848
|
reason: string;
|
|
15849
15849
|
severity: "high" | "critical" | "caution" | "info";
|
|
15850
15850
|
details?: {
|
|
15851
|
-
value?:
|
|
15851
|
+
value?: any;
|
|
15852
15852
|
contract_address?: `0x${string}` | undefined;
|
|
15853
15853
|
unknown_token?: unknown;
|
|
15854
15854
|
date_of_addition?: string | undefined;
|
|
@@ -15858,7 +15858,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
15858
15858
|
reason: string;
|
|
15859
15859
|
severity: "high" | "critical" | "caution" | "info";
|
|
15860
15860
|
details?: {
|
|
15861
|
-
value?:
|
|
15861
|
+
value?: any;
|
|
15862
15862
|
contract_address?: string | undefined;
|
|
15863
15863
|
unknown_token?: unknown;
|
|
15864
15864
|
date_of_addition?: string | undefined;
|
|
@@ -16737,7 +16737,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
16737
16737
|
reason: string;
|
|
16738
16738
|
severity: "high" | "critical" | "caution" | "info";
|
|
16739
16739
|
details?: {
|
|
16740
|
-
value?:
|
|
16740
|
+
value?: any;
|
|
16741
16741
|
contract_address?: `0x${string}` | undefined;
|
|
16742
16742
|
unknown_token?: unknown;
|
|
16743
16743
|
date_of_addition?: string | undefined;
|
|
@@ -16883,7 +16883,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
16883
16883
|
reason: string;
|
|
16884
16884
|
severity: "high" | "critical" | "caution" | "info";
|
|
16885
16885
|
details?: {
|
|
16886
|
-
value?:
|
|
16886
|
+
value?: any;
|
|
16887
16887
|
contract_address?: string | undefined;
|
|
16888
16888
|
unknown_token?: unknown;
|
|
16889
16889
|
date_of_addition?: string | undefined;
|
|
@@ -17032,7 +17032,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
17032
17032
|
reason: string;
|
|
17033
17033
|
severity: "high" | "critical" | "caution" | "info";
|
|
17034
17034
|
details?: {
|
|
17035
|
-
value?:
|
|
17035
|
+
value?: any;
|
|
17036
17036
|
contract_address?: `0x${string}` | undefined;
|
|
17037
17037
|
unknown_token?: unknown;
|
|
17038
17038
|
date_of_addition?: string | undefined;
|
|
@@ -17048,7 +17048,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
17048
17048
|
reason: string;
|
|
17049
17049
|
severity: "high" | "critical" | "caution" | "info";
|
|
17050
17050
|
details?: {
|
|
17051
|
-
value?:
|
|
17051
|
+
value?: any;
|
|
17052
17052
|
contract_address?: `0x${string}` | undefined;
|
|
17053
17053
|
unknown_token?: unknown;
|
|
17054
17054
|
date_of_addition?: string | undefined;
|
|
@@ -17207,7 +17207,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
17207
17207
|
reason: string;
|
|
17208
17208
|
severity: "high" | "critical" | "caution" | "info";
|
|
17209
17209
|
details?: {
|
|
17210
|
-
value?:
|
|
17210
|
+
value?: any;
|
|
17211
17211
|
contract_address?: string | undefined;
|
|
17212
17212
|
unknown_token?: unknown;
|
|
17213
17213
|
date_of_addition?: string | undefined;
|
|
@@ -17223,7 +17223,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
17223
17223
|
reason: string;
|
|
17224
17224
|
severity: "high" | "critical" | "caution" | "info";
|
|
17225
17225
|
details?: {
|
|
17226
|
-
value?:
|
|
17226
|
+
value?: any;
|
|
17227
17227
|
contract_address?: string | undefined;
|
|
17228
17228
|
unknown_token?: unknown;
|
|
17229
17229
|
date_of_addition?: string | undefined;
|
|
@@ -17797,16 +17797,16 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
17797
17797
|
type: "ERC20";
|
|
17798
17798
|
unknown: boolean;
|
|
17799
17799
|
};
|
|
17800
|
-
maxFee: number;
|
|
17801
17800
|
overallFee: number;
|
|
17801
|
+
maxFee: number;
|
|
17802
17802
|
}, {
|
|
17803
17803
|
token: {
|
|
17804
17804
|
address: string;
|
|
17805
17805
|
type: "ERC20";
|
|
17806
17806
|
unknown: boolean;
|
|
17807
17807
|
};
|
|
17808
|
-
maxFee: string | number | bigint;
|
|
17809
17808
|
overallFee: string | number | bigint;
|
|
17809
|
+
maxFee: string | number | bigint;
|
|
17810
17810
|
}>]>, "many">;
|
|
17811
17811
|
summary: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17812
17812
|
type: z.ZodString;
|
|
@@ -18044,8 +18044,8 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
18044
18044
|
type: "ERC20";
|
|
18045
18045
|
unknown: boolean;
|
|
18046
18046
|
};
|
|
18047
|
-
maxFee: number;
|
|
18048
18047
|
overallFee: number;
|
|
18048
|
+
maxFee: number;
|
|
18049
18049
|
} | {
|
|
18050
18050
|
token: {
|
|
18051
18051
|
address: `0x${string}`;
|
|
@@ -18198,8 +18198,8 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
18198
18198
|
type: "ERC20";
|
|
18199
18199
|
unknown: boolean;
|
|
18200
18200
|
};
|
|
18201
|
-
maxFee: string | number | bigint;
|
|
18202
18201
|
overallFee: string | number | bigint;
|
|
18202
|
+
maxFee: string | number | bigint;
|
|
18203
18203
|
} | {
|
|
18204
18204
|
token: {
|
|
18205
18205
|
address: string;
|
|
@@ -18355,8 +18355,8 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
18355
18355
|
type: "ERC20";
|
|
18356
18356
|
unknown: boolean;
|
|
18357
18357
|
};
|
|
18358
|
-
maxFee: number;
|
|
18359
18358
|
overallFee: number;
|
|
18359
|
+
maxFee: number;
|
|
18360
18360
|
} | {
|
|
18361
18361
|
token: {
|
|
18362
18362
|
address: `0x${string}`;
|
|
@@ -18617,7 +18617,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
18617
18617
|
reason: string;
|
|
18618
18618
|
severity: "high" | "critical" | "caution" | "info";
|
|
18619
18619
|
details?: {
|
|
18620
|
-
value?:
|
|
18620
|
+
value?: any;
|
|
18621
18621
|
contract_address?: `0x${string}` | undefined;
|
|
18622
18622
|
unknown_token?: unknown;
|
|
18623
18623
|
date_of_addition?: string | undefined;
|
|
@@ -18633,7 +18633,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
18633
18633
|
reason: string;
|
|
18634
18634
|
severity: "high" | "critical" | "caution" | "info";
|
|
18635
18635
|
details?: {
|
|
18636
|
-
value?:
|
|
18636
|
+
value?: any;
|
|
18637
18637
|
contract_address?: `0x${string}` | undefined;
|
|
18638
18638
|
unknown_token?: unknown;
|
|
18639
18639
|
date_of_addition?: string | undefined;
|
|
@@ -18688,8 +18688,8 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
18688
18688
|
type: "ERC20";
|
|
18689
18689
|
unknown: boolean;
|
|
18690
18690
|
};
|
|
18691
|
-
maxFee: string | number | bigint;
|
|
18692
18691
|
overallFee: string | number | bigint;
|
|
18692
|
+
maxFee: string | number | bigint;
|
|
18693
18693
|
} | {
|
|
18694
18694
|
token: {
|
|
18695
18695
|
address: string;
|
|
@@ -18950,7 +18950,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
18950
18950
|
reason: string;
|
|
18951
18951
|
severity: "high" | "critical" | "caution" | "info";
|
|
18952
18952
|
details?: {
|
|
18953
|
-
value?:
|
|
18953
|
+
value?: any;
|
|
18954
18954
|
contract_address?: string | undefined;
|
|
18955
18955
|
unknown_token?: unknown;
|
|
18956
18956
|
date_of_addition?: string | undefined;
|
|
@@ -18966,7 +18966,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
18966
18966
|
reason: string;
|
|
18967
18967
|
severity: "high" | "critical" | "caution" | "info";
|
|
18968
18968
|
details?: {
|
|
18969
|
-
value?:
|
|
18969
|
+
value?: any;
|
|
18970
18970
|
contract_address?: string | undefined;
|
|
18971
18971
|
unknown_token?: unknown;
|
|
18972
18972
|
date_of_addition?: string | undefined;
|
|
@@ -19000,15 +19000,15 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
19000
19000
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
19001
19001
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
19002
19002
|
reason: z.ZodOptional<z.ZodString>;
|
|
19003
|
-
value: z.ZodOptional<z.
|
|
19003
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
19004
19004
|
}, "strip", z.ZodTypeAny, {
|
|
19005
|
-
value?:
|
|
19005
|
+
value?: any;
|
|
19006
19006
|
contract_address?: `0x${string}` | undefined;
|
|
19007
19007
|
unknown_token?: unknown;
|
|
19008
19008
|
date_of_addition?: string | undefined;
|
|
19009
19009
|
reason?: string | undefined;
|
|
19010
19010
|
}, {
|
|
19011
|
-
value?:
|
|
19011
|
+
value?: any;
|
|
19012
19012
|
contract_address?: string | undefined;
|
|
19013
19013
|
unknown_token?: unknown;
|
|
19014
19014
|
date_of_addition?: string | undefined;
|
|
@@ -19019,7 +19019,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
19019
19019
|
reason: string;
|
|
19020
19020
|
severity: "high" | "critical" | "caution" | "info";
|
|
19021
19021
|
details?: {
|
|
19022
|
-
value?:
|
|
19022
|
+
value?: any;
|
|
19023
19023
|
contract_address?: `0x${string}` | undefined;
|
|
19024
19024
|
unknown_token?: unknown;
|
|
19025
19025
|
date_of_addition?: string | undefined;
|
|
@@ -19029,7 +19029,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
19029
19029
|
reason: string;
|
|
19030
19030
|
severity: "high" | "critical" | "caution" | "info";
|
|
19031
19031
|
details?: {
|
|
19032
|
-
value?:
|
|
19032
|
+
value?: any;
|
|
19033
19033
|
contract_address?: string | undefined;
|
|
19034
19034
|
unknown_token?: unknown;
|
|
19035
19035
|
date_of_addition?: string | undefined;
|
|
@@ -19094,15 +19094,15 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
19094
19094
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
19095
19095
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
19096
19096
|
reason: z.ZodOptional<z.ZodString>;
|
|
19097
|
-
value: z.ZodOptional<z.
|
|
19097
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
19098
19098
|
}, "strip", z.ZodTypeAny, {
|
|
19099
|
-
value?:
|
|
19099
|
+
value?: any;
|
|
19100
19100
|
contract_address?: `0x${string}` | undefined;
|
|
19101
19101
|
unknown_token?: unknown;
|
|
19102
19102
|
date_of_addition?: string | undefined;
|
|
19103
19103
|
reason?: string | undefined;
|
|
19104
19104
|
}, {
|
|
19105
|
-
value?:
|
|
19105
|
+
value?: any;
|
|
19106
19106
|
contract_address?: string | undefined;
|
|
19107
19107
|
unknown_token?: unknown;
|
|
19108
19108
|
date_of_addition?: string | undefined;
|
|
@@ -19113,7 +19113,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
19113
19113
|
reason: string;
|
|
19114
19114
|
severity: "high" | "critical" | "caution" | "info";
|
|
19115
19115
|
details?: {
|
|
19116
|
-
value?:
|
|
19116
|
+
value?: any;
|
|
19117
19117
|
contract_address?: `0x${string}` | undefined;
|
|
19118
19118
|
unknown_token?: unknown;
|
|
19119
19119
|
date_of_addition?: string | undefined;
|
|
@@ -19123,7 +19123,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
19123
19123
|
reason: string;
|
|
19124
19124
|
severity: "high" | "critical" | "caution" | "info";
|
|
19125
19125
|
details?: {
|
|
19126
|
-
value?:
|
|
19126
|
+
value?: any;
|
|
19127
19127
|
contract_address?: string | undefined;
|
|
19128
19128
|
unknown_token?: unknown;
|
|
19129
19129
|
date_of_addition?: string | undefined;
|
|
@@ -20002,7 +20002,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20002
20002
|
reason: string;
|
|
20003
20003
|
severity: "high" | "critical" | "caution" | "info";
|
|
20004
20004
|
details?: {
|
|
20005
|
-
value?:
|
|
20005
|
+
value?: any;
|
|
20006
20006
|
contract_address?: `0x${string}` | undefined;
|
|
20007
20007
|
unknown_token?: unknown;
|
|
20008
20008
|
date_of_addition?: string | undefined;
|
|
@@ -20148,7 +20148,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20148
20148
|
reason: string;
|
|
20149
20149
|
severity: "high" | "critical" | "caution" | "info";
|
|
20150
20150
|
details?: {
|
|
20151
|
-
value?:
|
|
20151
|
+
value?: any;
|
|
20152
20152
|
contract_address?: string | undefined;
|
|
20153
20153
|
unknown_token?: unknown;
|
|
20154
20154
|
date_of_addition?: string | undefined;
|
|
@@ -20297,7 +20297,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20297
20297
|
reason: string;
|
|
20298
20298
|
severity: "high" | "critical" | "caution" | "info";
|
|
20299
20299
|
details?: {
|
|
20300
|
-
value?:
|
|
20300
|
+
value?: any;
|
|
20301
20301
|
contract_address?: `0x${string}` | undefined;
|
|
20302
20302
|
unknown_token?: unknown;
|
|
20303
20303
|
date_of_addition?: string | undefined;
|
|
@@ -20313,7 +20313,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20313
20313
|
reason: string;
|
|
20314
20314
|
severity: "high" | "critical" | "caution" | "info";
|
|
20315
20315
|
details?: {
|
|
20316
|
-
value?:
|
|
20316
|
+
value?: any;
|
|
20317
20317
|
contract_address?: `0x${string}` | undefined;
|
|
20318
20318
|
unknown_token?: unknown;
|
|
20319
20319
|
date_of_addition?: string | undefined;
|
|
@@ -20472,7 +20472,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20472
20472
|
reason: string;
|
|
20473
20473
|
severity: "high" | "critical" | "caution" | "info";
|
|
20474
20474
|
details?: {
|
|
20475
|
-
value?:
|
|
20475
|
+
value?: any;
|
|
20476
20476
|
contract_address?: string | undefined;
|
|
20477
20477
|
unknown_token?: unknown;
|
|
20478
20478
|
date_of_addition?: string | undefined;
|
|
@@ -20488,7 +20488,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20488
20488
|
reason: string;
|
|
20489
20489
|
severity: "high" | "critical" | "caution" | "info";
|
|
20490
20490
|
details?: {
|
|
20491
|
-
value?:
|
|
20491
|
+
value?: any;
|
|
20492
20492
|
contract_address?: string | undefined;
|
|
20493
20493
|
unknown_token?: unknown;
|
|
20494
20494
|
date_of_addition?: string | undefined;
|
|
@@ -20672,7 +20672,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20672
20672
|
reason: string;
|
|
20673
20673
|
severity: "high" | "critical" | "caution" | "info";
|
|
20674
20674
|
details?: {
|
|
20675
|
-
value?:
|
|
20675
|
+
value?: any;
|
|
20676
20676
|
contract_address?: `0x${string}` | undefined;
|
|
20677
20677
|
unknown_token?: unknown;
|
|
20678
20678
|
date_of_addition?: string | undefined;
|
|
@@ -20688,7 +20688,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20688
20688
|
reason: string;
|
|
20689
20689
|
severity: "high" | "critical" | "caution" | "info";
|
|
20690
20690
|
details?: {
|
|
20691
|
-
value?:
|
|
20691
|
+
value?: any;
|
|
20692
20692
|
contract_address?: `0x${string}` | undefined;
|
|
20693
20693
|
unknown_token?: unknown;
|
|
20694
20694
|
date_of_addition?: string | undefined;
|
|
@@ -20856,7 +20856,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20856
20856
|
reason: string;
|
|
20857
20857
|
severity: "high" | "critical" | "caution" | "info";
|
|
20858
20858
|
details?: {
|
|
20859
|
-
value?:
|
|
20859
|
+
value?: any;
|
|
20860
20860
|
contract_address?: string | undefined;
|
|
20861
20861
|
unknown_token?: unknown;
|
|
20862
20862
|
date_of_addition?: string | undefined;
|
|
@@ -20872,7 +20872,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20872
20872
|
reason: string;
|
|
20873
20873
|
severity: "high" | "critical" | "caution" | "info";
|
|
20874
20874
|
details?: {
|
|
20875
|
-
value?:
|
|
20875
|
+
value?: any;
|
|
20876
20876
|
contract_address?: string | undefined;
|
|
20877
20877
|
unknown_token?: unknown;
|
|
20878
20878
|
date_of_addition?: string | undefined;
|
|
@@ -20950,8 +20950,8 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
20950
20950
|
type: "ERC20";
|
|
20951
20951
|
unknown: boolean;
|
|
20952
20952
|
};
|
|
20953
|
-
maxFee: number;
|
|
20954
20953
|
overallFee: number;
|
|
20954
|
+
maxFee: number;
|
|
20955
20955
|
} | {
|
|
20956
20956
|
token: {
|
|
20957
20957
|
address: `0x${string}`;
|
|
@@ -21212,7 +21212,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
21212
21212
|
reason: string;
|
|
21213
21213
|
severity: "high" | "critical" | "caution" | "info";
|
|
21214
21214
|
details?: {
|
|
21215
|
-
value?:
|
|
21215
|
+
value?: any;
|
|
21216
21216
|
contract_address?: `0x${string}` | undefined;
|
|
21217
21217
|
unknown_token?: unknown;
|
|
21218
21218
|
date_of_addition?: string | undefined;
|
|
@@ -21228,7 +21228,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
21228
21228
|
reason: string;
|
|
21229
21229
|
severity: "high" | "critical" | "caution" | "info";
|
|
21230
21230
|
details?: {
|
|
21231
|
-
value?:
|
|
21231
|
+
value?: any;
|
|
21232
21232
|
contract_address?: `0x${string}` | undefined;
|
|
21233
21233
|
unknown_token?: unknown;
|
|
21234
21234
|
date_of_addition?: string | undefined;
|
|
@@ -21396,7 +21396,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
21396
21396
|
reason: string;
|
|
21397
21397
|
severity: "high" | "critical" | "caution" | "info";
|
|
21398
21398
|
details?: {
|
|
21399
|
-
value?:
|
|
21399
|
+
value?: any;
|
|
21400
21400
|
contract_address?: `0x${string}` | undefined;
|
|
21401
21401
|
unknown_token?: unknown;
|
|
21402
21402
|
date_of_addition?: string | undefined;
|
|
@@ -21412,7 +21412,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
21412
21412
|
reason: string;
|
|
21413
21413
|
severity: "high" | "critical" | "caution" | "info";
|
|
21414
21414
|
details?: {
|
|
21415
|
-
value?:
|
|
21415
|
+
value?: any;
|
|
21416
21416
|
contract_address?: `0x${string}` | undefined;
|
|
21417
21417
|
unknown_token?: unknown;
|
|
21418
21418
|
date_of_addition?: string | undefined;
|
|
@@ -21478,8 +21478,8 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
21478
21478
|
type: "ERC20";
|
|
21479
21479
|
unknown: boolean;
|
|
21480
21480
|
};
|
|
21481
|
-
maxFee: string | number | bigint;
|
|
21482
21481
|
overallFee: string | number | bigint;
|
|
21482
|
+
maxFee: string | number | bigint;
|
|
21483
21483
|
} | {
|
|
21484
21484
|
token: {
|
|
21485
21485
|
address: string;
|
|
@@ -21740,7 +21740,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
21740
21740
|
reason: string;
|
|
21741
21741
|
severity: "high" | "critical" | "caution" | "info";
|
|
21742
21742
|
details?: {
|
|
21743
|
-
value?:
|
|
21743
|
+
value?: any;
|
|
21744
21744
|
contract_address?: string | undefined;
|
|
21745
21745
|
unknown_token?: unknown;
|
|
21746
21746
|
date_of_addition?: string | undefined;
|
|
@@ -21756,7 +21756,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
21756
21756
|
reason: string;
|
|
21757
21757
|
severity: "high" | "critical" | "caution" | "info";
|
|
21758
21758
|
details?: {
|
|
21759
|
-
value?:
|
|
21759
|
+
value?: any;
|
|
21760
21760
|
contract_address?: string | undefined;
|
|
21761
21761
|
unknown_token?: unknown;
|
|
21762
21762
|
date_of_addition?: string | undefined;
|
|
@@ -21924,7 +21924,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
21924
21924
|
reason: string;
|
|
21925
21925
|
severity: "high" | "critical" | "caution" | "info";
|
|
21926
21926
|
details?: {
|
|
21927
|
-
value?:
|
|
21927
|
+
value?: any;
|
|
21928
21928
|
contract_address?: string | undefined;
|
|
21929
21929
|
unknown_token?: unknown;
|
|
21930
21930
|
date_of_addition?: string | undefined;
|
|
@@ -21940,7 +21940,7 @@ export declare const simulateAndReviewSchema: z.ZodObject<{
|
|
|
21940
21940
|
reason: string;
|
|
21941
21941
|
severity: "high" | "critical" | "caution" | "info";
|
|
21942
21942
|
details?: {
|
|
21943
|
-
value?:
|
|
21943
|
+
value?: any;
|
|
21944
21944
|
contract_address?: string | undefined;
|
|
21945
21945
|
unknown_token?: unknown;
|
|
21946
21946
|
date_of_addition?: string | undefined;
|
|
@@ -21986,15 +21986,15 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
21986
21986
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
21987
21987
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
21988
21988
|
reason: z.ZodOptional<z.ZodString>;
|
|
21989
|
-
value: z.ZodOptional<z.
|
|
21989
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
21990
21990
|
}, "strip", z.ZodTypeAny, {
|
|
21991
|
-
value?:
|
|
21991
|
+
value?: any;
|
|
21992
21992
|
contract_address?: `0x${string}` | undefined;
|
|
21993
21993
|
unknown_token?: unknown;
|
|
21994
21994
|
date_of_addition?: string | undefined;
|
|
21995
21995
|
reason?: string | undefined;
|
|
21996
21996
|
}, {
|
|
21997
|
-
value?:
|
|
21997
|
+
value?: any;
|
|
21998
21998
|
contract_address?: string | undefined;
|
|
21999
21999
|
unknown_token?: unknown;
|
|
22000
22000
|
date_of_addition?: string | undefined;
|
|
@@ -22005,7 +22005,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
22005
22005
|
reason: string;
|
|
22006
22006
|
severity: "high" | "critical" | "caution" | "info";
|
|
22007
22007
|
details?: {
|
|
22008
|
-
value?:
|
|
22008
|
+
value?: any;
|
|
22009
22009
|
contract_address?: `0x${string}` | undefined;
|
|
22010
22010
|
unknown_token?: unknown;
|
|
22011
22011
|
date_of_addition?: string | undefined;
|
|
@@ -22015,7 +22015,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
22015
22015
|
reason: string;
|
|
22016
22016
|
severity: "high" | "critical" | "caution" | "info";
|
|
22017
22017
|
details?: {
|
|
22018
|
-
value?:
|
|
22018
|
+
value?: any;
|
|
22019
22019
|
contract_address?: string | undefined;
|
|
22020
22020
|
unknown_token?: unknown;
|
|
22021
22021
|
date_of_addition?: string | undefined;
|
|
@@ -22080,15 +22080,15 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
22080
22080
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
22081
22081
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
22082
22082
|
reason: z.ZodOptional<z.ZodString>;
|
|
22083
|
-
value: z.ZodOptional<z.
|
|
22083
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
22084
22084
|
}, "strip", z.ZodTypeAny, {
|
|
22085
|
-
value?:
|
|
22085
|
+
value?: any;
|
|
22086
22086
|
contract_address?: `0x${string}` | undefined;
|
|
22087
22087
|
unknown_token?: unknown;
|
|
22088
22088
|
date_of_addition?: string | undefined;
|
|
22089
22089
|
reason?: string | undefined;
|
|
22090
22090
|
}, {
|
|
22091
|
-
value?:
|
|
22091
|
+
value?: any;
|
|
22092
22092
|
contract_address?: string | undefined;
|
|
22093
22093
|
unknown_token?: unknown;
|
|
22094
22094
|
date_of_addition?: string | undefined;
|
|
@@ -22099,7 +22099,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
22099
22099
|
reason: string;
|
|
22100
22100
|
severity: "high" | "critical" | "caution" | "info";
|
|
22101
22101
|
details?: {
|
|
22102
|
-
value?:
|
|
22102
|
+
value?: any;
|
|
22103
22103
|
contract_address?: `0x${string}` | undefined;
|
|
22104
22104
|
unknown_token?: unknown;
|
|
22105
22105
|
date_of_addition?: string | undefined;
|
|
@@ -22109,7 +22109,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
22109
22109
|
reason: string;
|
|
22110
22110
|
severity: "high" | "critical" | "caution" | "info";
|
|
22111
22111
|
details?: {
|
|
22112
|
-
value?:
|
|
22112
|
+
value?: any;
|
|
22113
22113
|
contract_address?: string | undefined;
|
|
22114
22114
|
unknown_token?: unknown;
|
|
22115
22115
|
date_of_addition?: string | undefined;
|
|
@@ -22988,7 +22988,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
22988
22988
|
reason: string;
|
|
22989
22989
|
severity: "high" | "critical" | "caution" | "info";
|
|
22990
22990
|
details?: {
|
|
22991
|
-
value?:
|
|
22991
|
+
value?: any;
|
|
22992
22992
|
contract_address?: `0x${string}` | undefined;
|
|
22993
22993
|
unknown_token?: unknown;
|
|
22994
22994
|
date_of_addition?: string | undefined;
|
|
@@ -23134,7 +23134,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
23134
23134
|
reason: string;
|
|
23135
23135
|
severity: "high" | "critical" | "caution" | "info";
|
|
23136
23136
|
details?: {
|
|
23137
|
-
value?:
|
|
23137
|
+
value?: any;
|
|
23138
23138
|
contract_address?: string | undefined;
|
|
23139
23139
|
unknown_token?: unknown;
|
|
23140
23140
|
date_of_addition?: string | undefined;
|
|
@@ -23283,7 +23283,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
23283
23283
|
reason: string;
|
|
23284
23284
|
severity: "high" | "critical" | "caution" | "info";
|
|
23285
23285
|
details?: {
|
|
23286
|
-
value?:
|
|
23286
|
+
value?: any;
|
|
23287
23287
|
contract_address?: `0x${string}` | undefined;
|
|
23288
23288
|
unknown_token?: unknown;
|
|
23289
23289
|
date_of_addition?: string | undefined;
|
|
@@ -23299,7 +23299,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
23299
23299
|
reason: string;
|
|
23300
23300
|
severity: "high" | "critical" | "caution" | "info";
|
|
23301
23301
|
details?: {
|
|
23302
|
-
value?:
|
|
23302
|
+
value?: any;
|
|
23303
23303
|
contract_address?: `0x${string}` | undefined;
|
|
23304
23304
|
unknown_token?: unknown;
|
|
23305
23305
|
date_of_addition?: string | undefined;
|
|
@@ -23458,7 +23458,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
23458
23458
|
reason: string;
|
|
23459
23459
|
severity: "high" | "critical" | "caution" | "info";
|
|
23460
23460
|
details?: {
|
|
23461
|
-
value?:
|
|
23461
|
+
value?: any;
|
|
23462
23462
|
contract_address?: string | undefined;
|
|
23463
23463
|
unknown_token?: unknown;
|
|
23464
23464
|
date_of_addition?: string | undefined;
|
|
@@ -23474,7 +23474,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
23474
23474
|
reason: string;
|
|
23475
23475
|
severity: "high" | "critical" | "caution" | "info";
|
|
23476
23476
|
details?: {
|
|
23477
|
-
value?:
|
|
23477
|
+
value?: any;
|
|
23478
23478
|
contract_address?: string | undefined;
|
|
23479
23479
|
unknown_token?: unknown;
|
|
23480
23480
|
date_of_addition?: string | undefined;
|
|
@@ -24048,16 +24048,16 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
24048
24048
|
type: "ERC20";
|
|
24049
24049
|
unknown: boolean;
|
|
24050
24050
|
};
|
|
24051
|
-
maxFee: number;
|
|
24052
24051
|
overallFee: number;
|
|
24052
|
+
maxFee: number;
|
|
24053
24053
|
}, {
|
|
24054
24054
|
token: {
|
|
24055
24055
|
address: string;
|
|
24056
24056
|
type: "ERC20";
|
|
24057
24057
|
unknown: boolean;
|
|
24058
24058
|
};
|
|
24059
|
-
maxFee: string | number | bigint;
|
|
24060
24059
|
overallFee: string | number | bigint;
|
|
24060
|
+
maxFee: string | number | bigint;
|
|
24061
24061
|
}>]>, "many">;
|
|
24062
24062
|
summary: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
24063
24063
|
type: z.ZodString;
|
|
@@ -24295,8 +24295,8 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
24295
24295
|
type: "ERC20";
|
|
24296
24296
|
unknown: boolean;
|
|
24297
24297
|
};
|
|
24298
|
-
maxFee: number;
|
|
24299
24298
|
overallFee: number;
|
|
24299
|
+
maxFee: number;
|
|
24300
24300
|
} | {
|
|
24301
24301
|
token: {
|
|
24302
24302
|
address: `0x${string}`;
|
|
@@ -24449,8 +24449,8 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
24449
24449
|
type: "ERC20";
|
|
24450
24450
|
unknown: boolean;
|
|
24451
24451
|
};
|
|
24452
|
-
maxFee: string | number | bigint;
|
|
24453
24452
|
overallFee: string | number | bigint;
|
|
24453
|
+
maxFee: string | number | bigint;
|
|
24454
24454
|
} | {
|
|
24455
24455
|
token: {
|
|
24456
24456
|
address: string;
|
|
@@ -24606,8 +24606,8 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
24606
24606
|
type: "ERC20";
|
|
24607
24607
|
unknown: boolean;
|
|
24608
24608
|
};
|
|
24609
|
-
maxFee: number;
|
|
24610
24609
|
overallFee: number;
|
|
24610
|
+
maxFee: number;
|
|
24611
24611
|
} | {
|
|
24612
24612
|
token: {
|
|
24613
24613
|
address: `0x${string}`;
|
|
@@ -24868,7 +24868,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
24868
24868
|
reason: string;
|
|
24869
24869
|
severity: "high" | "critical" | "caution" | "info";
|
|
24870
24870
|
details?: {
|
|
24871
|
-
value?:
|
|
24871
|
+
value?: any;
|
|
24872
24872
|
contract_address?: `0x${string}` | undefined;
|
|
24873
24873
|
unknown_token?: unknown;
|
|
24874
24874
|
date_of_addition?: string | undefined;
|
|
@@ -24884,7 +24884,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
24884
24884
|
reason: string;
|
|
24885
24885
|
severity: "high" | "critical" | "caution" | "info";
|
|
24886
24886
|
details?: {
|
|
24887
|
-
value?:
|
|
24887
|
+
value?: any;
|
|
24888
24888
|
contract_address?: `0x${string}` | undefined;
|
|
24889
24889
|
unknown_token?: unknown;
|
|
24890
24890
|
date_of_addition?: string | undefined;
|
|
@@ -24939,8 +24939,8 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
24939
24939
|
type: "ERC20";
|
|
24940
24940
|
unknown: boolean;
|
|
24941
24941
|
};
|
|
24942
|
-
maxFee: string | number | bigint;
|
|
24943
24942
|
overallFee: string | number | bigint;
|
|
24943
|
+
maxFee: string | number | bigint;
|
|
24944
24944
|
} | {
|
|
24945
24945
|
token: {
|
|
24946
24946
|
address: string;
|
|
@@ -25201,7 +25201,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
25201
25201
|
reason: string;
|
|
25202
25202
|
severity: "high" | "critical" | "caution" | "info";
|
|
25203
25203
|
details?: {
|
|
25204
|
-
value?:
|
|
25204
|
+
value?: any;
|
|
25205
25205
|
contract_address?: string | undefined;
|
|
25206
25206
|
unknown_token?: unknown;
|
|
25207
25207
|
date_of_addition?: string | undefined;
|
|
@@ -25217,7 +25217,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
25217
25217
|
reason: string;
|
|
25218
25218
|
severity: "high" | "critical" | "caution" | "info";
|
|
25219
25219
|
details?: {
|
|
25220
|
-
value?:
|
|
25220
|
+
value?: any;
|
|
25221
25221
|
contract_address?: string | undefined;
|
|
25222
25222
|
unknown_token?: unknown;
|
|
25223
25223
|
date_of_addition?: string | undefined;
|
|
@@ -25251,15 +25251,15 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
25251
25251
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
25252
25252
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
25253
25253
|
reason: z.ZodOptional<z.ZodString>;
|
|
25254
|
-
value: z.ZodOptional<z.
|
|
25254
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
25255
25255
|
}, "strip", z.ZodTypeAny, {
|
|
25256
|
-
value?:
|
|
25256
|
+
value?: any;
|
|
25257
25257
|
contract_address?: `0x${string}` | undefined;
|
|
25258
25258
|
unknown_token?: unknown;
|
|
25259
25259
|
date_of_addition?: string | undefined;
|
|
25260
25260
|
reason?: string | undefined;
|
|
25261
25261
|
}, {
|
|
25262
|
-
value?:
|
|
25262
|
+
value?: any;
|
|
25263
25263
|
contract_address?: string | undefined;
|
|
25264
25264
|
unknown_token?: unknown;
|
|
25265
25265
|
date_of_addition?: string | undefined;
|
|
@@ -25270,7 +25270,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
25270
25270
|
reason: string;
|
|
25271
25271
|
severity: "high" | "critical" | "caution" | "info";
|
|
25272
25272
|
details?: {
|
|
25273
|
-
value?:
|
|
25273
|
+
value?: any;
|
|
25274
25274
|
contract_address?: `0x${string}` | undefined;
|
|
25275
25275
|
unknown_token?: unknown;
|
|
25276
25276
|
date_of_addition?: string | undefined;
|
|
@@ -25280,7 +25280,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
25280
25280
|
reason: string;
|
|
25281
25281
|
severity: "high" | "critical" | "caution" | "info";
|
|
25282
25282
|
details?: {
|
|
25283
|
-
value?:
|
|
25283
|
+
value?: any;
|
|
25284
25284
|
contract_address?: string | undefined;
|
|
25285
25285
|
unknown_token?: unknown;
|
|
25286
25286
|
date_of_addition?: string | undefined;
|
|
@@ -25345,15 +25345,15 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
25345
25345
|
date_of_addition: z.ZodOptional<z.ZodString>;
|
|
25346
25346
|
contract_address: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
|
|
25347
25347
|
reason: z.ZodOptional<z.ZodString>;
|
|
25348
|
-
value: z.ZodOptional<z.
|
|
25348
|
+
value: z.ZodOptional<z.ZodAny>;
|
|
25349
25349
|
}, "strip", z.ZodTypeAny, {
|
|
25350
|
-
value?:
|
|
25350
|
+
value?: any;
|
|
25351
25351
|
contract_address?: `0x${string}` | undefined;
|
|
25352
25352
|
unknown_token?: unknown;
|
|
25353
25353
|
date_of_addition?: string | undefined;
|
|
25354
25354
|
reason?: string | undefined;
|
|
25355
25355
|
}, {
|
|
25356
|
-
value?:
|
|
25356
|
+
value?: any;
|
|
25357
25357
|
contract_address?: string | undefined;
|
|
25358
25358
|
unknown_token?: unknown;
|
|
25359
25359
|
date_of_addition?: string | undefined;
|
|
@@ -25364,7 +25364,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
25364
25364
|
reason: string;
|
|
25365
25365
|
severity: "high" | "critical" | "caution" | "info";
|
|
25366
25366
|
details?: {
|
|
25367
|
-
value?:
|
|
25367
|
+
value?: any;
|
|
25368
25368
|
contract_address?: `0x${string}` | undefined;
|
|
25369
25369
|
unknown_token?: unknown;
|
|
25370
25370
|
date_of_addition?: string | undefined;
|
|
@@ -25374,7 +25374,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
25374
25374
|
reason: string;
|
|
25375
25375
|
severity: "high" | "critical" | "caution" | "info";
|
|
25376
25376
|
details?: {
|
|
25377
|
-
value?:
|
|
25377
|
+
value?: any;
|
|
25378
25378
|
contract_address?: string | undefined;
|
|
25379
25379
|
unknown_token?: unknown;
|
|
25380
25380
|
date_of_addition?: string | undefined;
|
|
@@ -26253,7 +26253,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
26253
26253
|
reason: string;
|
|
26254
26254
|
severity: "high" | "critical" | "caution" | "info";
|
|
26255
26255
|
details?: {
|
|
26256
|
-
value?:
|
|
26256
|
+
value?: any;
|
|
26257
26257
|
contract_address?: `0x${string}` | undefined;
|
|
26258
26258
|
unknown_token?: unknown;
|
|
26259
26259
|
date_of_addition?: string | undefined;
|
|
@@ -26399,7 +26399,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
26399
26399
|
reason: string;
|
|
26400
26400
|
severity: "high" | "critical" | "caution" | "info";
|
|
26401
26401
|
details?: {
|
|
26402
|
-
value?:
|
|
26402
|
+
value?: any;
|
|
26403
26403
|
contract_address?: string | undefined;
|
|
26404
26404
|
unknown_token?: unknown;
|
|
26405
26405
|
date_of_addition?: string | undefined;
|
|
@@ -26548,7 +26548,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
26548
26548
|
reason: string;
|
|
26549
26549
|
severity: "high" | "critical" | "caution" | "info";
|
|
26550
26550
|
details?: {
|
|
26551
|
-
value?:
|
|
26551
|
+
value?: any;
|
|
26552
26552
|
contract_address?: `0x${string}` | undefined;
|
|
26553
26553
|
unknown_token?: unknown;
|
|
26554
26554
|
date_of_addition?: string | undefined;
|
|
@@ -26564,7 +26564,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
26564
26564
|
reason: string;
|
|
26565
26565
|
severity: "high" | "critical" | "caution" | "info";
|
|
26566
26566
|
details?: {
|
|
26567
|
-
value?:
|
|
26567
|
+
value?: any;
|
|
26568
26568
|
contract_address?: `0x${string}` | undefined;
|
|
26569
26569
|
unknown_token?: unknown;
|
|
26570
26570
|
date_of_addition?: string | undefined;
|
|
@@ -26723,7 +26723,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
26723
26723
|
reason: string;
|
|
26724
26724
|
severity: "high" | "critical" | "caution" | "info";
|
|
26725
26725
|
details?: {
|
|
26726
|
-
value?:
|
|
26726
|
+
value?: any;
|
|
26727
26727
|
contract_address?: string | undefined;
|
|
26728
26728
|
unknown_token?: unknown;
|
|
26729
26729
|
date_of_addition?: string | undefined;
|
|
@@ -26739,7 +26739,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
26739
26739
|
reason: string;
|
|
26740
26740
|
severity: "high" | "critical" | "caution" | "info";
|
|
26741
26741
|
details?: {
|
|
26742
|
-
value?:
|
|
26742
|
+
value?: any;
|
|
26743
26743
|
contract_address?: string | undefined;
|
|
26744
26744
|
unknown_token?: unknown;
|
|
26745
26745
|
date_of_addition?: string | undefined;
|
|
@@ -26923,7 +26923,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
26923
26923
|
reason: string;
|
|
26924
26924
|
severity: "high" | "critical" | "caution" | "info";
|
|
26925
26925
|
details?: {
|
|
26926
|
-
value?:
|
|
26926
|
+
value?: any;
|
|
26927
26927
|
contract_address?: `0x${string}` | undefined;
|
|
26928
26928
|
unknown_token?: unknown;
|
|
26929
26929
|
date_of_addition?: string | undefined;
|
|
@@ -26939,7 +26939,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
26939
26939
|
reason: string;
|
|
26940
26940
|
severity: "high" | "critical" | "caution" | "info";
|
|
26941
26941
|
details?: {
|
|
26942
|
-
value?:
|
|
26942
|
+
value?: any;
|
|
26943
26943
|
contract_address?: `0x${string}` | undefined;
|
|
26944
26944
|
unknown_token?: unknown;
|
|
26945
26945
|
date_of_addition?: string | undefined;
|
|
@@ -27107,7 +27107,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27107
27107
|
reason: string;
|
|
27108
27108
|
severity: "high" | "critical" | "caution" | "info";
|
|
27109
27109
|
details?: {
|
|
27110
|
-
value?:
|
|
27110
|
+
value?: any;
|
|
27111
27111
|
contract_address?: string | undefined;
|
|
27112
27112
|
unknown_token?: unknown;
|
|
27113
27113
|
date_of_addition?: string | undefined;
|
|
@@ -27123,7 +27123,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27123
27123
|
reason: string;
|
|
27124
27124
|
severity: "high" | "critical" | "caution" | "info";
|
|
27125
27125
|
details?: {
|
|
27126
|
-
value?:
|
|
27126
|
+
value?: any;
|
|
27127
27127
|
contract_address?: string | undefined;
|
|
27128
27128
|
unknown_token?: unknown;
|
|
27129
27129
|
date_of_addition?: string | undefined;
|
|
@@ -27194,6 +27194,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27194
27194
|
gasConsumed: bigint;
|
|
27195
27195
|
gasPrice: bigint;
|
|
27196
27196
|
}>;
|
|
27197
|
+
overallFee: z.ZodOptional<z.ZodBigInt>;
|
|
27197
27198
|
}, "type">, "strip", z.ZodTypeAny, {
|
|
27198
27199
|
feeTokenAddress: `0x${string}`;
|
|
27199
27200
|
l1Gas: {
|
|
@@ -27208,6 +27209,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27208
27209
|
gasConsumed: bigint;
|
|
27209
27210
|
gasPrice: bigint;
|
|
27210
27211
|
};
|
|
27212
|
+
overallFee?: bigint | undefined;
|
|
27211
27213
|
}, {
|
|
27212
27214
|
feeTokenAddress: string;
|
|
27213
27215
|
l1Gas: {
|
|
@@ -27222,6 +27224,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27222
27224
|
gasConsumed: bigint;
|
|
27223
27225
|
gasPrice: bigint;
|
|
27224
27226
|
};
|
|
27227
|
+
overallFee?: bigint | undefined;
|
|
27225
27228
|
}>;
|
|
27226
27229
|
deployment: z.ZodOptional<z.ZodObject<Omit<{
|
|
27227
27230
|
type: z.ZodLiteral<"native">;
|
|
@@ -27256,6 +27259,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27256
27259
|
gasConsumed: bigint;
|
|
27257
27260
|
gasPrice: bigint;
|
|
27258
27261
|
}>;
|
|
27262
|
+
overallFee: z.ZodOptional<z.ZodBigInt>;
|
|
27259
27263
|
}, "type">, "strip", z.ZodTypeAny, {
|
|
27260
27264
|
feeTokenAddress: `0x${string}`;
|
|
27261
27265
|
l1Gas: {
|
|
@@ -27270,6 +27274,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27270
27274
|
gasConsumed: bigint;
|
|
27271
27275
|
gasPrice: bigint;
|
|
27272
27276
|
};
|
|
27277
|
+
overallFee?: bigint | undefined;
|
|
27273
27278
|
}, {
|
|
27274
27279
|
feeTokenAddress: string;
|
|
27275
27280
|
l1Gas: {
|
|
@@ -27284,6 +27289,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27284
27289
|
gasConsumed: bigint;
|
|
27285
27290
|
gasPrice: bigint;
|
|
27286
27291
|
};
|
|
27292
|
+
overallFee?: bigint | undefined;
|
|
27287
27293
|
}>>;
|
|
27288
27294
|
}, "strip", z.ZodTypeAny, {
|
|
27289
27295
|
type: "native";
|
|
@@ -27301,6 +27307,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27301
27307
|
gasConsumed: bigint;
|
|
27302
27308
|
gasPrice: bigint;
|
|
27303
27309
|
};
|
|
27310
|
+
overallFee?: bigint | undefined;
|
|
27304
27311
|
};
|
|
27305
27312
|
deployment?: {
|
|
27306
27313
|
feeTokenAddress: `0x${string}`;
|
|
@@ -27316,6 +27323,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27316
27323
|
gasConsumed: bigint;
|
|
27317
27324
|
gasPrice: bigint;
|
|
27318
27325
|
};
|
|
27326
|
+
overallFee?: bigint | undefined;
|
|
27319
27327
|
} | undefined;
|
|
27320
27328
|
}, {
|
|
27321
27329
|
type: "native";
|
|
@@ -27333,6 +27341,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27333
27341
|
gasConsumed: bigint;
|
|
27334
27342
|
gasPrice: bigint;
|
|
27335
27343
|
};
|
|
27344
|
+
overallFee?: bigint | undefined;
|
|
27336
27345
|
};
|
|
27337
27346
|
deployment?: {
|
|
27338
27347
|
feeTokenAddress: string;
|
|
@@ -27348,6 +27357,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27348
27357
|
gasConsumed: bigint;
|
|
27349
27358
|
gasPrice: bigint;
|
|
27350
27359
|
};
|
|
27360
|
+
overallFee?: bigint | undefined;
|
|
27351
27361
|
} | undefined;
|
|
27352
27362
|
}>, z.ZodObject<{
|
|
27353
27363
|
type: z.ZodLiteral<"paymaster">;
|
|
@@ -27358,12 +27368,12 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27358
27368
|
overallFee: z.ZodBigInt;
|
|
27359
27369
|
}, "type">, "strip", z.ZodTypeAny, {
|
|
27360
27370
|
feeTokenAddress: `0x${string}`;
|
|
27361
|
-
maxFee: bigint;
|
|
27362
27371
|
overallFee: bigint;
|
|
27372
|
+
maxFee: bigint;
|
|
27363
27373
|
}, {
|
|
27364
27374
|
feeTokenAddress: string;
|
|
27365
|
-
maxFee: bigint;
|
|
27366
27375
|
overallFee: bigint;
|
|
27376
|
+
maxFee: bigint;
|
|
27367
27377
|
}>;
|
|
27368
27378
|
deployment: z.ZodOptional<z.ZodObject<Omit<{
|
|
27369
27379
|
type: z.ZodLiteral<"paymaster">;
|
|
@@ -27372,36 +27382,36 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27372
27382
|
overallFee: z.ZodBigInt;
|
|
27373
27383
|
}, "type">, "strip", z.ZodTypeAny, {
|
|
27374
27384
|
feeTokenAddress: `0x${string}`;
|
|
27375
|
-
maxFee: bigint;
|
|
27376
27385
|
overallFee: bigint;
|
|
27386
|
+
maxFee: bigint;
|
|
27377
27387
|
}, {
|
|
27378
27388
|
feeTokenAddress: string;
|
|
27379
|
-
maxFee: bigint;
|
|
27380
27389
|
overallFee: bigint;
|
|
27390
|
+
maxFee: bigint;
|
|
27381
27391
|
}>>;
|
|
27382
27392
|
}, "strip", z.ZodTypeAny, {
|
|
27383
27393
|
type: "paymaster";
|
|
27384
27394
|
transactions: {
|
|
27385
27395
|
feeTokenAddress: `0x${string}`;
|
|
27386
|
-
maxFee: bigint;
|
|
27387
27396
|
overallFee: bigint;
|
|
27397
|
+
maxFee: bigint;
|
|
27388
27398
|
};
|
|
27389
27399
|
deployment?: {
|
|
27390
27400
|
feeTokenAddress: `0x${string}`;
|
|
27391
|
-
maxFee: bigint;
|
|
27392
27401
|
overallFee: bigint;
|
|
27402
|
+
maxFee: bigint;
|
|
27393
27403
|
} | undefined;
|
|
27394
27404
|
}, {
|
|
27395
27405
|
type: "paymaster";
|
|
27396
27406
|
transactions: {
|
|
27397
27407
|
feeTokenAddress: string;
|
|
27398
|
-
maxFee: bigint;
|
|
27399
27408
|
overallFee: bigint;
|
|
27409
|
+
maxFee: bigint;
|
|
27400
27410
|
};
|
|
27401
27411
|
deployment?: {
|
|
27402
27412
|
feeTokenAddress: string;
|
|
27403
|
-
maxFee: bigint;
|
|
27404
27413
|
overallFee: bigint;
|
|
27414
|
+
maxFee: bigint;
|
|
27405
27415
|
} | undefined;
|
|
27406
27416
|
}>]>, "many">>;
|
|
27407
27417
|
isBackendDown: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
@@ -27447,8 +27457,8 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27447
27457
|
type: "ERC20";
|
|
27448
27458
|
unknown: boolean;
|
|
27449
27459
|
};
|
|
27450
|
-
maxFee: number;
|
|
27451
27460
|
overallFee: number;
|
|
27461
|
+
maxFee: number;
|
|
27452
27462
|
} | {
|
|
27453
27463
|
token: {
|
|
27454
27464
|
address: `0x${string}`;
|
|
@@ -27709,7 +27719,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27709
27719
|
reason: string;
|
|
27710
27720
|
severity: "high" | "critical" | "caution" | "info";
|
|
27711
27721
|
details?: {
|
|
27712
|
-
value?:
|
|
27722
|
+
value?: any;
|
|
27713
27723
|
contract_address?: `0x${string}` | undefined;
|
|
27714
27724
|
unknown_token?: unknown;
|
|
27715
27725
|
date_of_addition?: string | undefined;
|
|
@@ -27725,7 +27735,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27725
27735
|
reason: string;
|
|
27726
27736
|
severity: "high" | "critical" | "caution" | "info";
|
|
27727
27737
|
details?: {
|
|
27728
|
-
value?:
|
|
27738
|
+
value?: any;
|
|
27729
27739
|
contract_address?: `0x${string}` | undefined;
|
|
27730
27740
|
unknown_token?: unknown;
|
|
27731
27741
|
date_of_addition?: string | undefined;
|
|
@@ -27893,7 +27903,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27893
27903
|
reason: string;
|
|
27894
27904
|
severity: "high" | "critical" | "caution" | "info";
|
|
27895
27905
|
details?: {
|
|
27896
|
-
value?:
|
|
27906
|
+
value?: any;
|
|
27897
27907
|
contract_address?: `0x${string}` | undefined;
|
|
27898
27908
|
unknown_token?: unknown;
|
|
27899
27909
|
date_of_addition?: string | undefined;
|
|
@@ -27909,7 +27919,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27909
27919
|
reason: string;
|
|
27910
27920
|
severity: "high" | "critical" | "caution" | "info";
|
|
27911
27921
|
details?: {
|
|
27912
|
-
value?:
|
|
27922
|
+
value?: any;
|
|
27913
27923
|
contract_address?: `0x${string}` | undefined;
|
|
27914
27924
|
unknown_token?: unknown;
|
|
27915
27925
|
date_of_addition?: string | undefined;
|
|
@@ -27959,6 +27969,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27959
27969
|
gasConsumed: bigint;
|
|
27960
27970
|
gasPrice: bigint;
|
|
27961
27971
|
};
|
|
27972
|
+
overallFee?: bigint | undefined;
|
|
27962
27973
|
};
|
|
27963
27974
|
deployment?: {
|
|
27964
27975
|
feeTokenAddress: `0x${string}`;
|
|
@@ -27974,18 +27985,19 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
27974
27985
|
gasConsumed: bigint;
|
|
27975
27986
|
gasPrice: bigint;
|
|
27976
27987
|
};
|
|
27988
|
+
overallFee?: bigint | undefined;
|
|
27977
27989
|
} | undefined;
|
|
27978
27990
|
} | {
|
|
27979
27991
|
type: "paymaster";
|
|
27980
27992
|
transactions: {
|
|
27981
27993
|
feeTokenAddress: `0x${string}`;
|
|
27982
|
-
maxFee: bigint;
|
|
27983
27994
|
overallFee: bigint;
|
|
27995
|
+
maxFee: bigint;
|
|
27984
27996
|
};
|
|
27985
27997
|
deployment?: {
|
|
27986
27998
|
feeTokenAddress: `0x${string}`;
|
|
27987
|
-
maxFee: bigint;
|
|
27988
27999
|
overallFee: bigint;
|
|
28000
|
+
maxFee: bigint;
|
|
27989
28001
|
} | undefined;
|
|
27990
28002
|
})[] | undefined;
|
|
27991
28003
|
isBackendDown?: boolean | undefined;
|
|
@@ -28021,8 +28033,8 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
28021
28033
|
type: "ERC20";
|
|
28022
28034
|
unknown: boolean;
|
|
28023
28035
|
};
|
|
28024
|
-
maxFee: string | number | bigint;
|
|
28025
28036
|
overallFee: string | number | bigint;
|
|
28037
|
+
maxFee: string | number | bigint;
|
|
28026
28038
|
} | {
|
|
28027
28039
|
token: {
|
|
28028
28040
|
address: string;
|
|
@@ -28283,7 +28295,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
28283
28295
|
reason: string;
|
|
28284
28296
|
severity: "high" | "critical" | "caution" | "info";
|
|
28285
28297
|
details?: {
|
|
28286
|
-
value?:
|
|
28298
|
+
value?: any;
|
|
28287
28299
|
contract_address?: string | undefined;
|
|
28288
28300
|
unknown_token?: unknown;
|
|
28289
28301
|
date_of_addition?: string | undefined;
|
|
@@ -28299,7 +28311,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
28299
28311
|
reason: string;
|
|
28300
28312
|
severity: "high" | "critical" | "caution" | "info";
|
|
28301
28313
|
details?: {
|
|
28302
|
-
value?:
|
|
28314
|
+
value?: any;
|
|
28303
28315
|
contract_address?: string | undefined;
|
|
28304
28316
|
unknown_token?: unknown;
|
|
28305
28317
|
date_of_addition?: string | undefined;
|
|
@@ -28467,7 +28479,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
28467
28479
|
reason: string;
|
|
28468
28480
|
severity: "high" | "critical" | "caution" | "info";
|
|
28469
28481
|
details?: {
|
|
28470
|
-
value?:
|
|
28482
|
+
value?: any;
|
|
28471
28483
|
contract_address?: string | undefined;
|
|
28472
28484
|
unknown_token?: unknown;
|
|
28473
28485
|
date_of_addition?: string | undefined;
|
|
@@ -28483,7 +28495,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
28483
28495
|
reason: string;
|
|
28484
28496
|
severity: "high" | "critical" | "caution" | "info";
|
|
28485
28497
|
details?: {
|
|
28486
|
-
value?:
|
|
28498
|
+
value?: any;
|
|
28487
28499
|
contract_address?: string | undefined;
|
|
28488
28500
|
unknown_token?: unknown;
|
|
28489
28501
|
date_of_addition?: string | undefined;
|
|
@@ -28533,6 +28545,7 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
28533
28545
|
gasConsumed: bigint;
|
|
28534
28546
|
gasPrice: bigint;
|
|
28535
28547
|
};
|
|
28548
|
+
overallFee?: bigint | undefined;
|
|
28536
28549
|
};
|
|
28537
28550
|
deployment?: {
|
|
28538
28551
|
feeTokenAddress: string;
|
|
@@ -28548,18 +28561,19 @@ export declare const enrichedSimulateAndReviewSchema: z.ZodObject<{
|
|
|
28548
28561
|
gasConsumed: bigint;
|
|
28549
28562
|
gasPrice: bigint;
|
|
28550
28563
|
};
|
|
28564
|
+
overallFee?: bigint | undefined;
|
|
28551
28565
|
} | undefined;
|
|
28552
28566
|
} | {
|
|
28553
28567
|
type: "paymaster";
|
|
28554
28568
|
transactions: {
|
|
28555
28569
|
feeTokenAddress: string;
|
|
28556
|
-
maxFee: bigint;
|
|
28557
28570
|
overallFee: bigint;
|
|
28571
|
+
maxFee: bigint;
|
|
28558
28572
|
};
|
|
28559
28573
|
deployment?: {
|
|
28560
28574
|
feeTokenAddress: string;
|
|
28561
|
-
maxFee: bigint;
|
|
28562
28575
|
overallFee: bigint;
|
|
28576
|
+
maxFee: bigint;
|
|
28563
28577
|
} | undefined;
|
|
28564
28578
|
})[] | undefined;
|
|
28565
28579
|
isBackendDown?: boolean | undefined;
|