@mimicprotocol/sdk 0.0.1-rc.12 → 0.0.1-rc.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/dist/axia/validators.d.ts +486 -107
  2. package/dist/axia/validators.d.ts.map +1 -1
  3. package/dist/axia/validators.js +6 -3
  4. package/dist/axia/validators.js.map +1 -1
  5. package/dist/client/domains/ConfigsClient.d.ts.map +1 -1
  6. package/dist/client/domains/ConfigsClient.js +1 -3
  7. package/dist/client/domains/ConfigsClient.js.map +1 -1
  8. package/dist/oracle/eip712Types.d.ts +40 -0
  9. package/dist/oracle/eip712Types.d.ts.map +1 -1
  10. package/dist/oracle/eip712Types.js +39 -0
  11. package/dist/oracle/eip712Types.js.map +1 -1
  12. package/dist/oracle/types.d.ts +15 -1
  13. package/dist/oracle/types.d.ts.map +1 -1
  14. package/dist/oracle/validators.d.ts +443 -29
  15. package/dist/oracle/validators.d.ts.map +1 -1
  16. package/dist/oracle/validators.js +29 -2
  17. package/dist/oracle/validators.js.map +1 -1
  18. package/dist/registry/eip712Types.d.ts.map +1 -1
  19. package/dist/registry/eip712Types.js +2 -1
  20. package/dist/registry/eip712Types.js.map +1 -1
  21. package/dist/registry/types.d.ts +2 -1
  22. package/dist/registry/types.d.ts.map +1 -1
  23. package/dist/registry/types.js.map +1 -1
  24. package/dist/registry/validations.d.ts +0 -2
  25. package/dist/registry/validations.d.ts.map +1 -1
  26. package/dist/registry/validations.js +1 -8
  27. package/dist/registry/validations.js.map +1 -1
  28. package/dist/registry/validators.d.ts +93 -66
  29. package/dist/registry/validators.d.ts.map +1 -1
  30. package/dist/registry/validators.js +6 -5
  31. package/dist/registry/validators.js.map +1 -1
  32. package/dist/relayer/validators.d.ts +357 -71
  33. package/dist/relayer/validators.d.ts.map +1 -1
  34. package/dist/relayer/validators.js +1 -2
  35. package/dist/relayer/validators.js.map +1 -1
  36. package/dist/runner/validators.d.ts +155 -21
  37. package/dist/runner/validators.d.ts.map +1 -1
  38. package/dist/shared/codec/decoder.d.ts +3 -1
  39. package/dist/shared/codec/decoder.d.ts.map +1 -1
  40. package/dist/shared/codec/decoder.js +11 -0
  41. package/dist/shared/codec/decoder.js.map +1 -1
  42. package/dist/shared/codec/encoder.js +1 -1
  43. package/dist/shared/codec/encoder.js.map +1 -1
  44. package/dist/shared/eip712Types/index.d.ts +1 -1
  45. package/dist/shared/eip712Types/index.js +1 -1
  46. package/dist/shared/types/executions.d.ts +1 -2
  47. package/dist/shared/types/executions.d.ts.map +1 -1
  48. package/dist/shared/types/primitives.d.ts +3 -1
  49. package/dist/shared/types/primitives.d.ts.map +1 -1
  50. package/dist/shared/validators/executions.d.ts +18 -35
  51. package/dist/shared/validators/executions.d.ts.map +1 -1
  52. package/dist/shared/validators/executions.js +4 -17
  53. package/dist/shared/validators/executions.js.map +1 -1
  54. package/dist/shared/validators/primitives.d.ts +20 -0
  55. package/dist/shared/validators/primitives.d.ts.map +1 -1
  56. package/dist/shared/validators/primitives.js +9 -1
  57. package/dist/shared/validators/primitives.js.map +1 -1
  58. package/package.json +1 -1
@@ -681,16 +681,7 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
681
681
  hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
682
682
  timestamp: z.ZodNumber;
683
683
  fuelUsed: z.ZodNumber;
684
- logs: z.ZodArray<z.ZodObject<{
685
- level: z.ZodNativeEnum<typeof import("../shared").LogLevel>;
686
- log: z.ZodString;
687
- }, "strip", z.ZodTypeAny, {
688
- level: import("../shared").LogLevel;
689
- log: string;
690
- }, {
691
- level: import("../shared").LogLevel;
692
- log: string;
693
- }>, "many">;
684
+ logs: z.ZodArray<z.ZodString, "many">;
694
685
  inputs: z.ZodArray<z.ZodUnion<[z.ZodObject<{
695
686
  signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
696
687
  query: z.ZodObject<{
@@ -699,7 +690,7 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
699
690
  params: z.ZodObject<{
700
691
  chainId: z.ZodEffects<z.ZodNumber, number, number>;
701
692
  timestamp: z.ZodEffects<z.ZodNumber, number, number>;
702
- to: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
693
+ to: z.ZodEffects<z.ZodString, string, string>;
703
694
  data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
704
695
  }, "strip", z.ZodTypeAny, {
705
696
  chainId: number;
@@ -742,7 +733,6 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
742
733
  result: {
743
734
  value: string;
744
735
  };
745
- signature: string;
746
736
  query: {
747
737
  params: {
748
738
  chainId: number;
@@ -753,11 +743,11 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
753
743
  name: "EvmCallQuery";
754
744
  hash: string;
755
745
  };
746
+ signature: string;
756
747
  }, {
757
748
  result: {
758
749
  value: string;
759
750
  };
760
- signature: string;
761
751
  query: {
762
752
  params: {
763
753
  chainId: number;
@@ -768,6 +758,7 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
768
758
  name: "EvmCallQuery";
769
759
  hash: string;
770
760
  };
761
+ signature: string;
771
762
  }>, z.ZodObject<{
772
763
  signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
773
764
  query: z.ZodObject<{
@@ -830,7 +821,6 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
830
821
  result: {
831
822
  value: string;
832
823
  };
833
- signature: string;
834
824
  query: {
835
825
  params: {
836
826
  timestamp: number;
@@ -842,11 +832,11 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
842
832
  name: "TokenPriceQuery";
843
833
  hash: string;
844
834
  };
835
+ signature: string;
845
836
  }, {
846
837
  result: {
847
838
  value: string;
848
839
  };
849
- signature: string;
850
840
  query: {
851
841
  params: {
852
842
  timestamp: number;
@@ -858,6 +848,7 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
858
848
  name: "TokenPriceQuery";
859
849
  hash: string;
860
850
  };
851
+ signature: string;
861
852
  }>, z.ZodObject<{
862
853
  signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
863
854
  query: z.ZodObject<{
@@ -881,21 +872,21 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
881
872
  tokenFilter: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>;
882
873
  }, "strip", z.ZodTypeAny, {
883
874
  timestamp: number;
875
+ owner: string;
884
876
  tokens: {
885
877
  chainId: number;
886
878
  address: string;
887
879
  }[];
888
- owner: string;
889
880
  usdMinAmount: string;
890
881
  chainIds: number[];
891
882
  tokenFilter: 0 | 1;
892
883
  }, {
893
884
  timestamp: number;
885
+ owner: string;
894
886
  tokens: {
895
887
  chainId: number;
896
888
  address: string;
897
889
  }[];
898
- owner: string;
899
890
  usdMinAmount: string;
900
891
  chainIds: number[];
901
892
  tokenFilter: 0 | 1;
@@ -903,11 +894,11 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
903
894
  }, "strip", z.ZodTypeAny, {
904
895
  params: {
905
896
  timestamp: number;
897
+ owner: string;
906
898
  tokens: {
907
899
  chainId: number;
908
900
  address: string;
909
901
  }[];
910
- owner: string;
911
902
  usdMinAmount: string;
912
903
  chainIds: number[];
913
904
  tokenFilter: 0 | 1;
@@ -917,11 +908,11 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
917
908
  }, {
918
909
  params: {
919
910
  timestamp: number;
911
+ owner: string;
920
912
  tokens: {
921
913
  chainId: number;
922
914
  address: string;
923
915
  }[];
924
- owner: string;
925
916
  usdMinAmount: string;
926
917
  chainIds: number[];
927
918
  tokenFilter: 0 | 1;
@@ -982,15 +973,14 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
982
973
  balance: string;
983
974
  }[];
984
975
  };
985
- signature: string;
986
976
  query: {
987
977
  params: {
988
978
  timestamp: number;
979
+ owner: string;
989
980
  tokens: {
990
981
  chainId: number;
991
982
  address: string;
992
983
  }[];
993
- owner: string;
994
984
  usdMinAmount: string;
995
985
  chainIds: number[];
996
986
  tokenFilter: 0 | 1;
@@ -998,6 +988,7 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
998
988
  name: "RelevantTokensQuery";
999
989
  hash: string;
1000
990
  };
991
+ signature: string;
1001
992
  }, {
1002
993
  result: {
1003
994
  value: {
@@ -1008,15 +999,14 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
1008
999
  balance: string;
1009
1000
  }[];
1010
1001
  };
1011
- signature: string;
1012
1002
  query: {
1013
1003
  params: {
1014
1004
  timestamp: number;
1005
+ owner: string;
1015
1006
  tokens: {
1016
1007
  chainId: number;
1017
1008
  address: string;
1018
1009
  }[];
1019
- owner: string;
1020
1010
  usdMinAmount: string;
1021
1011
  chainIds: number[];
1022
1012
  tokenFilter: 0 | 1;
@@ -1024,6 +1014,105 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
1024
1014
  name: "RelevantTokensQuery";
1025
1015
  hash: string;
1026
1016
  };
1017
+ signature: string;
1018
+ }>, z.ZodObject<{
1019
+ signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
1020
+ query: z.ZodObject<{
1021
+ name: z.ZodLiteral<"SubgraphQuery">;
1022
+ hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
1023
+ params: z.ZodObject<{
1024
+ chainId: z.ZodEffects<z.ZodNumber, number, number>;
1025
+ timestamp: z.ZodEffects<z.ZodNumber, number, number>;
1026
+ subgraphId: z.ZodString;
1027
+ query: z.ZodString;
1028
+ }, "strip", z.ZodTypeAny, {
1029
+ chainId: number;
1030
+ timestamp: number;
1031
+ subgraphId: string;
1032
+ query: string;
1033
+ }, {
1034
+ chainId: number;
1035
+ timestamp: number;
1036
+ subgraphId: string;
1037
+ query: string;
1038
+ }>;
1039
+ }, "strip", z.ZodTypeAny, {
1040
+ params: {
1041
+ chainId: number;
1042
+ timestamp: number;
1043
+ subgraphId: string;
1044
+ query: string;
1045
+ };
1046
+ name: "SubgraphQuery";
1047
+ hash: string;
1048
+ }, {
1049
+ params: {
1050
+ chainId: number;
1051
+ timestamp: number;
1052
+ subgraphId: string;
1053
+ query: string;
1054
+ };
1055
+ name: "SubgraphQuery";
1056
+ hash: string;
1057
+ }>;
1058
+ result: z.ZodObject<{
1059
+ value: z.ZodObject<{
1060
+ blockNumber: z.ZodNumber;
1061
+ data: z.ZodString;
1062
+ }, "strip", z.ZodTypeAny, {
1063
+ data: string;
1064
+ blockNumber: number;
1065
+ }, {
1066
+ data: string;
1067
+ blockNumber: number;
1068
+ }>;
1069
+ }, "strip", z.ZodTypeAny, {
1070
+ value: {
1071
+ data: string;
1072
+ blockNumber: number;
1073
+ };
1074
+ }, {
1075
+ value: {
1076
+ data: string;
1077
+ blockNumber: number;
1078
+ };
1079
+ }>;
1080
+ }, "strip", z.ZodTypeAny, {
1081
+ result: {
1082
+ value: {
1083
+ data: string;
1084
+ blockNumber: number;
1085
+ };
1086
+ };
1087
+ query: {
1088
+ params: {
1089
+ chainId: number;
1090
+ timestamp: number;
1091
+ subgraphId: string;
1092
+ query: string;
1093
+ };
1094
+ name: "SubgraphQuery";
1095
+ hash: string;
1096
+ };
1097
+ signature: string;
1098
+ }, {
1099
+ result: {
1100
+ value: {
1101
+ data: string;
1102
+ blockNumber: number;
1103
+ };
1104
+ };
1105
+ query: {
1106
+ params: {
1107
+ chainId: number;
1108
+ timestamp: number;
1109
+ subgraphId: string;
1110
+ query: string;
1111
+ };
1112
+ name: "SubgraphQuery";
1113
+ hash: string;
1114
+ };
1115
+ signature: string;
1027
1116
  }>]>, "many">;
1028
1117
  outputs: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
1029
1118
  op: z.ZodNativeEnum<typeof import("../shared").OpType>;
@@ -1103,16 +1192,12 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
1103
1192
  triggerData: string;
1104
1193
  signature: string;
1105
1194
  hash: string;
1106
- logs: {
1107
- level: import("../shared").LogLevel;
1108
- log: string;
1109
- }[];
1195
+ logs: string[];
1110
1196
  fuelUsed: number;
1111
1197
  inputs: ({
1112
1198
  result: {
1113
1199
  value: string;
1114
1200
  };
1115
- signature: string;
1116
1201
  query: {
1117
1202
  params: {
1118
1203
  chainId: number;
@@ -1123,11 +1208,11 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
1123
1208
  name: "EvmCallQuery";
1124
1209
  hash: string;
1125
1210
  };
1211
+ signature: string;
1126
1212
  } | {
1127
1213
  result: {
1128
1214
  value: string;
1129
1215
  };
1130
- signature: string;
1131
1216
  query: {
1132
1217
  params: {
1133
1218
  timestamp: number;
@@ -1139,6 +1224,7 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
1139
1224
  name: "TokenPriceQuery";
1140
1225
  hash: string;
1141
1226
  };
1227
+ signature: string;
1142
1228
  } | {
1143
1229
  result: {
1144
1230
  value: {
@@ -1149,15 +1235,14 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
1149
1235
  balance: string;
1150
1236
  }[];
1151
1237
  };
1152
- signature: string;
1153
1238
  query: {
1154
1239
  params: {
1155
1240
  timestamp: number;
1241
+ owner: string;
1156
1242
  tokens: {
1157
1243
  chainId: number;
1158
1244
  address: string;
1159
1245
  }[];
1160
- owner: string;
1161
1246
  usdMinAmount: string;
1162
1247
  chainIds: number[];
1163
1248
  tokenFilter: 0 | 1;
@@ -1165,6 +1250,25 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
1165
1250
  name: "RelevantTokensQuery";
1166
1251
  hash: string;
1167
1252
  };
1253
+ signature: string;
1254
+ } | {
1255
+ result: {
1256
+ value: {
1257
+ data: string;
1258
+ blockNumber: number;
1259
+ };
1260
+ };
1261
+ query: {
1262
+ params: {
1263
+ chainId: number;
1264
+ timestamp: number;
1265
+ subgraphId: string;
1266
+ query: string;
1267
+ };
1268
+ name: "SubgraphQuery";
1269
+ hash: string;
1270
+ };
1271
+ signature: string;
1168
1272
  })[];
1169
1273
  outputs: {
1170
1274
  data: string;
@@ -1193,16 +1297,12 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
1193
1297
  triggerData: string;
1194
1298
  signature: string;
1195
1299
  hash: string;
1196
- logs: {
1197
- level: import("../shared").LogLevel;
1198
- log: string;
1199
- }[];
1300
+ logs: string[];
1200
1301
  fuelUsed: number;
1201
1302
  inputs: ({
1202
1303
  result: {
1203
1304
  value: string;
1204
1305
  };
1205
- signature: string;
1206
1306
  query: {
1207
1307
  params: {
1208
1308
  chainId: number;
@@ -1213,11 +1313,11 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
1213
1313
  name: "EvmCallQuery";
1214
1314
  hash: string;
1215
1315
  };
1316
+ signature: string;
1216
1317
  } | {
1217
1318
  result: {
1218
1319
  value: string;
1219
1320
  };
1220
- signature: string;
1221
1321
  query: {
1222
1322
  params: {
1223
1323
  timestamp: number;
@@ -1229,6 +1329,7 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
1229
1329
  name: "TokenPriceQuery";
1230
1330
  hash: string;
1231
1331
  };
1332
+ signature: string;
1232
1333
  } | {
1233
1334
  result: {
1234
1335
  value: {
@@ -1239,15 +1340,14 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
1239
1340
  balance: string;
1240
1341
  }[];
1241
1342
  };
1242
- signature: string;
1243
1343
  query: {
1244
1344
  params: {
1245
1345
  timestamp: number;
1346
+ owner: string;
1246
1347
  tokens: {
1247
1348
  chainId: number;
1248
1349
  address: string;
1249
1350
  }[];
1250
- owner: string;
1251
1351
  usdMinAmount: string;
1252
1352
  chainIds: number[];
1253
1353
  tokenFilter: 0 | 1;
@@ -1255,6 +1355,25 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
1255
1355
  name: "RelevantTokensQuery";
1256
1356
  hash: string;
1257
1357
  };
1358
+ signature: string;
1359
+ } | {
1360
+ result: {
1361
+ value: {
1362
+ data: string;
1363
+ blockNumber: number;
1364
+ };
1365
+ };
1366
+ query: {
1367
+ params: {
1368
+ chainId: number;
1369
+ timestamp: number;
1370
+ subgraphId: string;
1371
+ query: string;
1372
+ };
1373
+ name: "SubgraphQuery";
1374
+ hash: string;
1375
+ };
1376
+ signature: string;
1258
1377
  })[];
1259
1378
  outputs: {
1260
1379
  data: string;
@@ -1304,12 +1423,15 @@ export declare const ExecutionFeeValidator: z.ZodObject<{
1304
1423
  export declare const ExecutionValidationValidator: z.ZodObject<{
1305
1424
  signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
1306
1425
  succeeded: z.ZodBoolean;
1426
+ description: z.ZodOptional<z.ZodString>;
1307
1427
  }, "strip", z.ZodTypeAny, {
1308
1428
  succeeded: boolean;
1309
1429
  signature: string;
1430
+ description?: string | undefined;
1310
1431
  }, {
1311
1432
  succeeded: boolean;
1312
1433
  signature: string;
1434
+ description?: string | undefined;
1313
1435
  }>;
1314
1436
  export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1315
1437
  configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
@@ -1319,16 +1441,7 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1319
1441
  hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
1320
1442
  timestamp: z.ZodNumber;
1321
1443
  fuelUsed: z.ZodNumber;
1322
- logs: z.ZodArray<z.ZodObject<{
1323
- level: z.ZodNativeEnum<typeof import("../shared").LogLevel>;
1324
- log: z.ZodString;
1325
- }, "strip", z.ZodTypeAny, {
1326
- level: import("../shared").LogLevel;
1327
- log: string;
1328
- }, {
1329
- level: import("../shared").LogLevel;
1330
- log: string;
1331
- }>, "many">;
1444
+ logs: z.ZodArray<z.ZodString, "many">;
1332
1445
  inputs: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1333
1446
  signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
1334
1447
  query: z.ZodObject<{
@@ -1337,7 +1450,7 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1337
1450
  params: z.ZodObject<{
1338
1451
  chainId: z.ZodEffects<z.ZodNumber, number, number>;
1339
1452
  timestamp: z.ZodEffects<z.ZodNumber, number, number>;
1340
- to: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
1453
+ to: z.ZodEffects<z.ZodString, string, string>;
1341
1454
  data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
1342
1455
  }, "strip", z.ZodTypeAny, {
1343
1456
  chainId: number;
@@ -1380,7 +1493,6 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1380
1493
  result: {
1381
1494
  value: string;
1382
1495
  };
1383
- signature: string;
1384
1496
  query: {
1385
1497
  params: {
1386
1498
  chainId: number;
@@ -1391,11 +1503,11 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1391
1503
  name: "EvmCallQuery";
1392
1504
  hash: string;
1393
1505
  };
1506
+ signature: string;
1394
1507
  }, {
1395
1508
  result: {
1396
1509
  value: string;
1397
1510
  };
1398
- signature: string;
1399
1511
  query: {
1400
1512
  params: {
1401
1513
  chainId: number;
@@ -1406,6 +1518,7 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1406
1518
  name: "EvmCallQuery";
1407
1519
  hash: string;
1408
1520
  };
1521
+ signature: string;
1409
1522
  }>, z.ZodObject<{
1410
1523
  signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
1411
1524
  query: z.ZodObject<{
@@ -1468,7 +1581,6 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1468
1581
  result: {
1469
1582
  value: string;
1470
1583
  };
1471
- signature: string;
1472
1584
  query: {
1473
1585
  params: {
1474
1586
  timestamp: number;
@@ -1480,11 +1592,11 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1480
1592
  name: "TokenPriceQuery";
1481
1593
  hash: string;
1482
1594
  };
1595
+ signature: string;
1483
1596
  }, {
1484
1597
  result: {
1485
1598
  value: string;
1486
1599
  };
1487
- signature: string;
1488
1600
  query: {
1489
1601
  params: {
1490
1602
  timestamp: number;
@@ -1496,6 +1608,7 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1496
1608
  name: "TokenPriceQuery";
1497
1609
  hash: string;
1498
1610
  };
1611
+ signature: string;
1499
1612
  }>, z.ZodObject<{
1500
1613
  signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
1501
1614
  query: z.ZodObject<{
@@ -1519,21 +1632,21 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1519
1632
  tokenFilter: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>;
1520
1633
  }, "strip", z.ZodTypeAny, {
1521
1634
  timestamp: number;
1635
+ owner: string;
1522
1636
  tokens: {
1523
1637
  chainId: number;
1524
1638
  address: string;
1525
1639
  }[];
1526
- owner: string;
1527
1640
  usdMinAmount: string;
1528
1641
  chainIds: number[];
1529
1642
  tokenFilter: 0 | 1;
1530
1643
  }, {
1531
1644
  timestamp: number;
1645
+ owner: string;
1532
1646
  tokens: {
1533
1647
  chainId: number;
1534
1648
  address: string;
1535
1649
  }[];
1536
- owner: string;
1537
1650
  usdMinAmount: string;
1538
1651
  chainIds: number[];
1539
1652
  tokenFilter: 0 | 1;
@@ -1541,11 +1654,11 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1541
1654
  }, "strip", z.ZodTypeAny, {
1542
1655
  params: {
1543
1656
  timestamp: number;
1657
+ owner: string;
1544
1658
  tokens: {
1545
1659
  chainId: number;
1546
1660
  address: string;
1547
1661
  }[];
1548
- owner: string;
1549
1662
  usdMinAmount: string;
1550
1663
  chainIds: number[];
1551
1664
  tokenFilter: 0 | 1;
@@ -1555,11 +1668,11 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1555
1668
  }, {
1556
1669
  params: {
1557
1670
  timestamp: number;
1671
+ owner: string;
1558
1672
  tokens: {
1559
1673
  chainId: number;
1560
1674
  address: string;
1561
1675
  }[];
1562
- owner: string;
1563
1676
  usdMinAmount: string;
1564
1677
  chainIds: number[];
1565
1678
  tokenFilter: 0 | 1;
@@ -1620,15 +1733,14 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1620
1733
  balance: string;
1621
1734
  }[];
1622
1735
  };
1623
- signature: string;
1624
1736
  query: {
1625
1737
  params: {
1626
1738
  timestamp: number;
1739
+ owner: string;
1627
1740
  tokens: {
1628
1741
  chainId: number;
1629
1742
  address: string;
1630
1743
  }[];
1631
- owner: string;
1632
1744
  usdMinAmount: string;
1633
1745
  chainIds: number[];
1634
1746
  tokenFilter: 0 | 1;
@@ -1636,6 +1748,7 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1636
1748
  name: "RelevantTokensQuery";
1637
1749
  hash: string;
1638
1750
  };
1751
+ signature: string;
1639
1752
  }, {
1640
1753
  result: {
1641
1754
  value: {
@@ -1646,15 +1759,14 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1646
1759
  balance: string;
1647
1760
  }[];
1648
1761
  };
1649
- signature: string;
1650
1762
  query: {
1651
1763
  params: {
1652
1764
  timestamp: number;
1765
+ owner: string;
1653
1766
  tokens: {
1654
1767
  chainId: number;
1655
1768
  address: string;
1656
1769
  }[];
1657
- owner: string;
1658
1770
  usdMinAmount: string;
1659
1771
  chainIds: number[];
1660
1772
  tokenFilter: 0 | 1;
@@ -1662,6 +1774,105 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1662
1774
  name: "RelevantTokensQuery";
1663
1775
  hash: string;
1664
1776
  };
1777
+ signature: string;
1778
+ }>, z.ZodObject<{
1779
+ signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
1780
+ query: z.ZodObject<{
1781
+ name: z.ZodLiteral<"SubgraphQuery">;
1782
+ hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
1783
+ params: z.ZodObject<{
1784
+ chainId: z.ZodEffects<z.ZodNumber, number, number>;
1785
+ timestamp: z.ZodEffects<z.ZodNumber, number, number>;
1786
+ subgraphId: z.ZodString;
1787
+ query: z.ZodString;
1788
+ }, "strip", z.ZodTypeAny, {
1789
+ chainId: number;
1790
+ timestamp: number;
1791
+ subgraphId: string;
1792
+ query: string;
1793
+ }, {
1794
+ chainId: number;
1795
+ timestamp: number;
1796
+ subgraphId: string;
1797
+ query: string;
1798
+ }>;
1799
+ }, "strip", z.ZodTypeAny, {
1800
+ params: {
1801
+ chainId: number;
1802
+ timestamp: number;
1803
+ subgraphId: string;
1804
+ query: string;
1805
+ };
1806
+ name: "SubgraphQuery";
1807
+ hash: string;
1808
+ }, {
1809
+ params: {
1810
+ chainId: number;
1811
+ timestamp: number;
1812
+ subgraphId: string;
1813
+ query: string;
1814
+ };
1815
+ name: "SubgraphQuery";
1816
+ hash: string;
1817
+ }>;
1818
+ result: z.ZodObject<{
1819
+ value: z.ZodObject<{
1820
+ blockNumber: z.ZodNumber;
1821
+ data: z.ZodString;
1822
+ }, "strip", z.ZodTypeAny, {
1823
+ data: string;
1824
+ blockNumber: number;
1825
+ }, {
1826
+ data: string;
1827
+ blockNumber: number;
1828
+ }>;
1829
+ }, "strip", z.ZodTypeAny, {
1830
+ value: {
1831
+ data: string;
1832
+ blockNumber: number;
1833
+ };
1834
+ }, {
1835
+ value: {
1836
+ data: string;
1837
+ blockNumber: number;
1838
+ };
1839
+ }>;
1840
+ }, "strip", z.ZodTypeAny, {
1841
+ result: {
1842
+ value: {
1843
+ data: string;
1844
+ blockNumber: number;
1845
+ };
1846
+ };
1847
+ query: {
1848
+ params: {
1849
+ chainId: number;
1850
+ timestamp: number;
1851
+ subgraphId: string;
1852
+ query: string;
1853
+ };
1854
+ name: "SubgraphQuery";
1855
+ hash: string;
1856
+ };
1857
+ signature: string;
1858
+ }, {
1859
+ result: {
1860
+ value: {
1861
+ data: string;
1862
+ blockNumber: number;
1863
+ };
1864
+ };
1865
+ query: {
1866
+ params: {
1867
+ chainId: number;
1868
+ timestamp: number;
1869
+ subgraphId: string;
1870
+ query: string;
1871
+ };
1872
+ name: "SubgraphQuery";
1873
+ hash: string;
1874
+ };
1875
+ signature: string;
1665
1876
  }>]>, "many">;
1666
1877
  outputs: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
1667
1878
  op: z.ZodNativeEnum<typeof import("../shared").OpType>;
@@ -1738,7 +1949,6 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1738
1949
  status: z.ZodNativeEnum<typeof ExecutionStatus>;
1739
1950
  createdAt: z.ZodDate;
1740
1951
  logs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1741
- errorLogs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1742
1952
  fee: z.ZodOptional<z.ZodObject<{
1743
1953
  trigger: z.ZodNumber;
1744
1954
  relayer: z.ZodNumber;
@@ -1767,12 +1977,15 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1767
1977
  validations: z.ZodOptional<z.ZodArray<z.ZodObject<{
1768
1978
  signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
1769
1979
  succeeded: z.ZodBoolean;
1980
+ description: z.ZodOptional<z.ZodString>;
1770
1981
  }, "strip", z.ZodTypeAny, {
1771
1982
  succeeded: boolean;
1772
1983
  signature: string;
1984
+ description?: string | undefined;
1773
1985
  }, {
1774
1986
  succeeded: boolean;
1775
1987
  signature: string;
1988
+ description?: string | undefined;
1776
1989
  }>, "many">>;
1777
1990
  }>, "strip", z.ZodTypeAny, {
1778
1991
  result: ExecutionResult;
@@ -1789,7 +2002,6 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1789
2002
  result: {
1790
2003
  value: string;
1791
2004
  };
1792
- signature: string;
1793
2005
  query: {
1794
2006
  params: {
1795
2007
  chainId: number;
@@ -1800,11 +2012,11 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1800
2012
  name: "EvmCallQuery";
1801
2013
  hash: string;
1802
2014
  };
2015
+ signature: string;
1803
2016
  } | {
1804
2017
  result: {
1805
2018
  value: string;
1806
2019
  };
1807
- signature: string;
1808
2020
  query: {
1809
2021
  params: {
1810
2022
  timestamp: number;
@@ -1816,6 +2028,7 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1816
2028
  name: "TokenPriceQuery";
1817
2029
  hash: string;
1818
2030
  };
2031
+ signature: string;
1819
2032
  } | {
1820
2033
  result: {
1821
2034
  value: {
@@ -1826,15 +2039,14 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1826
2039
  balance: string;
1827
2040
  }[];
1828
2041
  };
1829
- signature: string;
1830
2042
  query: {
1831
2043
  params: {
1832
2044
  timestamp: number;
2045
+ owner: string;
1833
2046
  tokens: {
1834
2047
  chainId: number;
1835
2048
  address: string;
1836
2049
  }[];
1837
- owner: string;
1838
2050
  usdMinAmount: string;
1839
2051
  chainIds: number[];
1840
2052
  tokenFilter: 0 | 1;
@@ -1842,6 +2054,25 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1842
2054
  name: "RelevantTokensQuery";
1843
2055
  hash: string;
1844
2056
  };
2057
+ signature: string;
2058
+ } | {
2059
+ result: {
2060
+ value: {
2061
+ data: string;
2062
+ blockNumber: number;
2063
+ };
2064
+ };
2065
+ query: {
2066
+ params: {
2067
+ chainId: number;
2068
+ timestamp: number;
2069
+ subgraphId: string;
2070
+ query: string;
2071
+ };
2072
+ name: "SubgraphQuery";
2073
+ hash: string;
2074
+ };
2075
+ signature: string;
1845
2076
  })[];
1846
2077
  outputs: {
1847
2078
  data: string;
@@ -1866,9 +2097,9 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1866
2097
  validations?: {
1867
2098
  succeeded: boolean;
1868
2099
  signature: string;
2100
+ description?: string | undefined;
1869
2101
  }[] | undefined;
1870
2102
  logs?: string[] | undefined;
1871
- errorLogs?: string[] | undefined;
1872
2103
  fee?: {
1873
2104
  trigger: number;
1874
2105
  relayer: number;
@@ -1893,7 +2124,6 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1893
2124
  result: {
1894
2125
  value: string;
1895
2126
  };
1896
- signature: string;
1897
2127
  query: {
1898
2128
  params: {
1899
2129
  chainId: number;
@@ -1904,11 +2134,11 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1904
2134
  name: "EvmCallQuery";
1905
2135
  hash: string;
1906
2136
  };
2137
+ signature: string;
1907
2138
  } | {
1908
2139
  result: {
1909
2140
  value: string;
1910
2141
  };
1911
- signature: string;
1912
2142
  query: {
1913
2143
  params: {
1914
2144
  timestamp: number;
@@ -1920,6 +2150,7 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1920
2150
  name: "TokenPriceQuery";
1921
2151
  hash: string;
1922
2152
  };
2153
+ signature: string;
1923
2154
  } | {
1924
2155
  result: {
1925
2156
  value: {
@@ -1930,15 +2161,14 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1930
2161
  balance: string;
1931
2162
  }[];
1932
2163
  };
1933
- signature: string;
1934
2164
  query: {
1935
2165
  params: {
1936
2166
  timestamp: number;
2167
+ owner: string;
1937
2168
  tokens: {
1938
2169
  chainId: number;
1939
2170
  address: string;
1940
2171
  }[];
1941
- owner: string;
1942
2172
  usdMinAmount: string;
1943
2173
  chainIds: number[];
1944
2174
  tokenFilter: 0 | 1;
@@ -1946,6 +2176,25 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1946
2176
  name: "RelevantTokensQuery";
1947
2177
  hash: string;
1948
2178
  };
2179
+ signature: string;
2180
+ } | {
2181
+ result: {
2182
+ value: {
2183
+ data: string;
2184
+ blockNumber: number;
2185
+ };
2186
+ };
2187
+ query: {
2188
+ params: {
2189
+ chainId: number;
2190
+ timestamp: number;
2191
+ subgraphId: string;
2192
+ query: string;
2193
+ };
2194
+ name: "SubgraphQuery";
2195
+ hash: string;
2196
+ };
2197
+ signature: string;
1949
2198
  })[];
1950
2199
  outputs: {
1951
2200
  data: string;
@@ -1970,9 +2219,9 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
1970
2219
  validations?: {
1971
2220
  succeeded: boolean;
1972
2221
  signature: string;
2222
+ description?: string | undefined;
1973
2223
  }[] | undefined;
1974
2224
  logs?: string[] | undefined;
1975
- errorLogs?: string[] | undefined;
1976
2225
  fee?: {
1977
2226
  trigger: number;
1978
2227
  relayer: number;
@@ -1991,16 +2240,7 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
1991
2240
  hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
1992
2241
  timestamp: z.ZodNumber;
1993
2242
  fuelUsed: z.ZodNumber;
1994
- logs: z.ZodArray<z.ZodObject<{
1995
- level: z.ZodNativeEnum<typeof import("../shared").LogLevel>;
1996
- log: z.ZodString;
1997
- }, "strip", z.ZodTypeAny, {
1998
- level: import("../shared").LogLevel;
1999
- log: string;
2000
- }, {
2001
- level: import("../shared").LogLevel;
2002
- log: string;
2003
- }>, "many">;
2243
+ logs: z.ZodArray<z.ZodString, "many">;
2004
2244
  inputs: z.ZodArray<z.ZodUnion<[z.ZodObject<{
2005
2245
  signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
2006
2246
  query: z.ZodObject<{
@@ -2009,7 +2249,7 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2009
2249
  params: z.ZodObject<{
2010
2250
  chainId: z.ZodEffects<z.ZodNumber, number, number>;
2011
2251
  timestamp: z.ZodEffects<z.ZodNumber, number, number>;
2012
- to: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
2252
+ to: z.ZodEffects<z.ZodString, string, string>;
2013
2253
  data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
2014
2254
  }, "strip", z.ZodTypeAny, {
2015
2255
  chainId: number;
@@ -2052,7 +2292,6 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2052
2292
  result: {
2053
2293
  value: string;
2054
2294
  };
2055
- signature: string;
2056
2295
  query: {
2057
2296
  params: {
2058
2297
  chainId: number;
@@ -2063,11 +2302,11 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2063
2302
  name: "EvmCallQuery";
2064
2303
  hash: string;
2065
2304
  };
2305
+ signature: string;
2066
2306
  }, {
2067
2307
  result: {
2068
2308
  value: string;
2069
2309
  };
2070
- signature: string;
2071
2310
  query: {
2072
2311
  params: {
2073
2312
  chainId: number;
@@ -2078,6 +2317,7 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2078
2317
  name: "EvmCallQuery";
2079
2318
  hash: string;
2080
2319
  };
2320
+ signature: string;
2081
2321
  }>, z.ZodObject<{
2082
2322
  signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
2083
2323
  query: z.ZodObject<{
@@ -2140,7 +2380,6 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2140
2380
  result: {
2141
2381
  value: string;
2142
2382
  };
2143
- signature: string;
2144
2383
  query: {
2145
2384
  params: {
2146
2385
  timestamp: number;
@@ -2152,11 +2391,11 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2152
2391
  name: "TokenPriceQuery";
2153
2392
  hash: string;
2154
2393
  };
2394
+ signature: string;
2155
2395
  }, {
2156
2396
  result: {
2157
2397
  value: string;
2158
2398
  };
2159
- signature: string;
2160
2399
  query: {
2161
2400
  params: {
2162
2401
  timestamp: number;
@@ -2168,6 +2407,7 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2168
2407
  name: "TokenPriceQuery";
2169
2408
  hash: string;
2170
2409
  };
2410
+ signature: string;
2171
2411
  }>, z.ZodObject<{
2172
2412
  signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
2173
2413
  query: z.ZodObject<{
@@ -2191,21 +2431,21 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2191
2431
  tokenFilter: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>;
2192
2432
  }, "strip", z.ZodTypeAny, {
2193
2433
  timestamp: number;
2434
+ owner: string;
2194
2435
  tokens: {
2195
2436
  chainId: number;
2196
2437
  address: string;
2197
2438
  }[];
2198
- owner: string;
2199
2439
  usdMinAmount: string;
2200
2440
  chainIds: number[];
2201
2441
  tokenFilter: 0 | 1;
2202
2442
  }, {
2203
2443
  timestamp: number;
2444
+ owner: string;
2204
2445
  tokens: {
2205
2446
  chainId: number;
2206
2447
  address: string;
2207
2448
  }[];
2208
- owner: string;
2209
2449
  usdMinAmount: string;
2210
2450
  chainIds: number[];
2211
2451
  tokenFilter: 0 | 1;
@@ -2213,11 +2453,11 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2213
2453
  }, "strip", z.ZodTypeAny, {
2214
2454
  params: {
2215
2455
  timestamp: number;
2456
+ owner: string;
2216
2457
  tokens: {
2217
2458
  chainId: number;
2218
2459
  address: string;
2219
2460
  }[];
2220
- owner: string;
2221
2461
  usdMinAmount: string;
2222
2462
  chainIds: number[];
2223
2463
  tokenFilter: 0 | 1;
@@ -2227,11 +2467,11 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2227
2467
  }, {
2228
2468
  params: {
2229
2469
  timestamp: number;
2470
+ owner: string;
2230
2471
  tokens: {
2231
2472
  chainId: number;
2232
2473
  address: string;
2233
2474
  }[];
2234
- owner: string;
2235
2475
  usdMinAmount: string;
2236
2476
  chainIds: number[];
2237
2477
  tokenFilter: 0 | 1;
@@ -2292,15 +2532,14 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2292
2532
  balance: string;
2293
2533
  }[];
2294
2534
  };
2295
- signature: string;
2296
2535
  query: {
2297
2536
  params: {
2298
2537
  timestamp: number;
2538
+ owner: string;
2299
2539
  tokens: {
2300
2540
  chainId: number;
2301
2541
  address: string;
2302
2542
  }[];
2303
- owner: string;
2304
2543
  usdMinAmount: string;
2305
2544
  chainIds: number[];
2306
2545
  tokenFilter: 0 | 1;
@@ -2308,6 +2547,7 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2308
2547
  name: "RelevantTokensQuery";
2309
2548
  hash: string;
2310
2549
  };
2550
+ signature: string;
2311
2551
  }, {
2312
2552
  result: {
2313
2553
  value: {
@@ -2318,15 +2558,14 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2318
2558
  balance: string;
2319
2559
  }[];
2320
2560
  };
2321
- signature: string;
2322
2561
  query: {
2323
2562
  params: {
2324
2563
  timestamp: number;
2564
+ owner: string;
2325
2565
  tokens: {
2326
2566
  chainId: number;
2327
2567
  address: string;
2328
2568
  }[];
2329
- owner: string;
2330
2569
  usdMinAmount: string;
2331
2570
  chainIds: number[];
2332
2571
  tokenFilter: 0 | 1;
@@ -2334,6 +2573,105 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2334
2573
  name: "RelevantTokensQuery";
2335
2574
  hash: string;
2336
2575
  };
2576
+ signature: string;
2577
+ }>, z.ZodObject<{
2578
+ signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
2579
+ query: z.ZodObject<{
2580
+ name: z.ZodLiteral<"SubgraphQuery">;
2581
+ hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
2582
+ params: z.ZodObject<{
2583
+ chainId: z.ZodEffects<z.ZodNumber, number, number>;
2584
+ timestamp: z.ZodEffects<z.ZodNumber, number, number>;
2585
+ subgraphId: z.ZodString;
2586
+ query: z.ZodString;
2587
+ }, "strip", z.ZodTypeAny, {
2588
+ chainId: number;
2589
+ timestamp: number;
2590
+ subgraphId: string;
2591
+ query: string;
2592
+ }, {
2593
+ chainId: number;
2594
+ timestamp: number;
2595
+ subgraphId: string;
2596
+ query: string;
2597
+ }>;
2598
+ }, "strip", z.ZodTypeAny, {
2599
+ params: {
2600
+ chainId: number;
2601
+ timestamp: number;
2602
+ subgraphId: string;
2603
+ query: string;
2604
+ };
2605
+ name: "SubgraphQuery";
2606
+ hash: string;
2607
+ }, {
2608
+ params: {
2609
+ chainId: number;
2610
+ timestamp: number;
2611
+ subgraphId: string;
2612
+ query: string;
2613
+ };
2614
+ name: "SubgraphQuery";
2615
+ hash: string;
2616
+ }>;
2617
+ result: z.ZodObject<{
2618
+ value: z.ZodObject<{
2619
+ blockNumber: z.ZodNumber;
2620
+ data: z.ZodString;
2621
+ }, "strip", z.ZodTypeAny, {
2622
+ data: string;
2623
+ blockNumber: number;
2624
+ }, {
2625
+ data: string;
2626
+ blockNumber: number;
2627
+ }>;
2628
+ }, "strip", z.ZodTypeAny, {
2629
+ value: {
2630
+ data: string;
2631
+ blockNumber: number;
2632
+ };
2633
+ }, {
2634
+ value: {
2635
+ data: string;
2636
+ blockNumber: number;
2637
+ };
2638
+ }>;
2639
+ }, "strip", z.ZodTypeAny, {
2640
+ result: {
2641
+ value: {
2642
+ data: string;
2643
+ blockNumber: number;
2644
+ };
2645
+ };
2646
+ query: {
2647
+ params: {
2648
+ chainId: number;
2649
+ timestamp: number;
2650
+ subgraphId: string;
2651
+ query: string;
2652
+ };
2653
+ name: "SubgraphQuery";
2654
+ hash: string;
2655
+ };
2656
+ signature: string;
2657
+ }, {
2658
+ result: {
2659
+ value: {
2660
+ data: string;
2661
+ blockNumber: number;
2662
+ };
2663
+ };
2664
+ query: {
2665
+ params: {
2666
+ chainId: number;
2667
+ timestamp: number;
2668
+ subgraphId: string;
2669
+ query: string;
2670
+ };
2671
+ name: "SubgraphQuery";
2672
+ hash: string;
2673
+ };
2674
+ signature: string;
2337
2675
  }>]>, "many">;
2338
2676
  outputs: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
2339
2677
  op: z.ZodNativeEnum<typeof import("../shared").OpType>;
@@ -2410,7 +2748,6 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2410
2748
  status: z.ZodNativeEnum<typeof ExecutionStatus>;
2411
2749
  createdAt: z.ZodDate;
2412
2750
  logs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2413
- errorLogs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2414
2751
  fee: z.ZodOptional<z.ZodObject<{
2415
2752
  trigger: z.ZodNumber;
2416
2753
  relayer: z.ZodNumber;
@@ -2439,12 +2776,15 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2439
2776
  validations: z.ZodOptional<z.ZodArray<z.ZodObject<{
2440
2777
  signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
2441
2778
  succeeded: z.ZodBoolean;
2779
+ description: z.ZodOptional<z.ZodString>;
2442
2780
  }, "strip", z.ZodTypeAny, {
2443
2781
  succeeded: boolean;
2444
2782
  signature: string;
2783
+ description?: string | undefined;
2445
2784
  }, {
2446
2785
  succeeded: boolean;
2447
2786
  signature: string;
2787
+ description?: string | undefined;
2448
2788
  }>, "many">>;
2449
2789
  }>, "strip", z.ZodTypeAny, {
2450
2790
  result: ExecutionResult;
@@ -2461,7 +2801,6 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2461
2801
  result: {
2462
2802
  value: string;
2463
2803
  };
2464
- signature: string;
2465
2804
  query: {
2466
2805
  params: {
2467
2806
  chainId: number;
@@ -2472,11 +2811,11 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2472
2811
  name: "EvmCallQuery";
2473
2812
  hash: string;
2474
2813
  };
2814
+ signature: string;
2475
2815
  } | {
2476
2816
  result: {
2477
2817
  value: string;
2478
2818
  };
2479
- signature: string;
2480
2819
  query: {
2481
2820
  params: {
2482
2821
  timestamp: number;
@@ -2488,6 +2827,7 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2488
2827
  name: "TokenPriceQuery";
2489
2828
  hash: string;
2490
2829
  };
2830
+ signature: string;
2491
2831
  } | {
2492
2832
  result: {
2493
2833
  value: {
@@ -2498,15 +2838,14 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2498
2838
  balance: string;
2499
2839
  }[];
2500
2840
  };
2501
- signature: string;
2502
2841
  query: {
2503
2842
  params: {
2504
2843
  timestamp: number;
2844
+ owner: string;
2505
2845
  tokens: {
2506
2846
  chainId: number;
2507
2847
  address: string;
2508
2848
  }[];
2509
- owner: string;
2510
2849
  usdMinAmount: string;
2511
2850
  chainIds: number[];
2512
2851
  tokenFilter: 0 | 1;
@@ -2514,6 +2853,25 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2514
2853
  name: "RelevantTokensQuery";
2515
2854
  hash: string;
2516
2855
  };
2856
+ signature: string;
2857
+ } | {
2858
+ result: {
2859
+ value: {
2860
+ data: string;
2861
+ blockNumber: number;
2862
+ };
2863
+ };
2864
+ query: {
2865
+ params: {
2866
+ chainId: number;
2867
+ timestamp: number;
2868
+ subgraphId: string;
2869
+ query: string;
2870
+ };
2871
+ name: "SubgraphQuery";
2872
+ hash: string;
2873
+ };
2874
+ signature: string;
2517
2875
  })[];
2518
2876
  outputs: {
2519
2877
  data: string;
@@ -2538,9 +2896,9 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2538
2896
  validations?: {
2539
2897
  succeeded: boolean;
2540
2898
  signature: string;
2899
+ description?: string | undefined;
2541
2900
  }[] | undefined;
2542
2901
  logs?: string[] | undefined;
2543
- errorLogs?: string[] | undefined;
2544
2902
  fee?: {
2545
2903
  trigger: number;
2546
2904
  relayer: number;
@@ -2565,7 +2923,6 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2565
2923
  result: {
2566
2924
  value: string;
2567
2925
  };
2568
- signature: string;
2569
2926
  query: {
2570
2927
  params: {
2571
2928
  chainId: number;
@@ -2576,11 +2933,11 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2576
2933
  name: "EvmCallQuery";
2577
2934
  hash: string;
2578
2935
  };
2936
+ signature: string;
2579
2937
  } | {
2580
2938
  result: {
2581
2939
  value: string;
2582
2940
  };
2583
- signature: string;
2584
2941
  query: {
2585
2942
  params: {
2586
2943
  timestamp: number;
@@ -2592,6 +2949,7 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2592
2949
  name: "TokenPriceQuery";
2593
2950
  hash: string;
2594
2951
  };
2952
+ signature: string;
2595
2953
  } | {
2596
2954
  result: {
2597
2955
  value: {
@@ -2602,15 +2960,14 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2602
2960
  balance: string;
2603
2961
  }[];
2604
2962
  };
2605
- signature: string;
2606
2963
  query: {
2607
2964
  params: {
2608
2965
  timestamp: number;
2966
+ owner: string;
2609
2967
  tokens: {
2610
2968
  chainId: number;
2611
2969
  address: string;
2612
2970
  }[];
2613
- owner: string;
2614
2971
  usdMinAmount: string;
2615
2972
  chainIds: number[];
2616
2973
  tokenFilter: 0 | 1;
@@ -2618,6 +2975,25 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2618
2975
  name: "RelevantTokensQuery";
2619
2976
  hash: string;
2620
2977
  };
2978
+ signature: string;
2979
+ } | {
2980
+ result: {
2981
+ value: {
2982
+ data: string;
2983
+ blockNumber: number;
2984
+ };
2985
+ };
2986
+ query: {
2987
+ params: {
2988
+ chainId: number;
2989
+ timestamp: number;
2990
+ subgraphId: string;
2991
+ query: string;
2992
+ };
2993
+ name: "SubgraphQuery";
2994
+ hash: string;
2995
+ };
2996
+ signature: string;
2621
2997
  })[];
2622
2998
  outputs: {
2623
2999
  data: string;
@@ -2642,9 +3018,9 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2642
3018
  validations?: {
2643
3019
  succeeded: boolean;
2644
3020
  signature: string;
3021
+ description?: string | undefined;
2645
3022
  }[] | undefined;
2646
3023
  logs?: string[] | undefined;
2647
- errorLogs?: string[] | undefined;
2648
3024
  fee?: {
2649
3025
  trigger: number;
2650
3026
  relayer: number;
@@ -2658,6 +3034,7 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
2658
3034
  export declare const ExecutionValidationRequestValidator: z.ZodObject<z.objectUtil.extendShape<{
2659
3035
  signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
2660
3036
  succeeded: z.ZodBoolean;
3037
+ description: z.ZodOptional<z.ZodString>;
2661
3038
  }, {
2662
3039
  intents: z.ZodArray<z.ZodObject<{
2663
3040
  intent: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
@@ -2676,6 +3053,7 @@ export declare const ExecutionValidationRequestValidator: z.ZodObject<z.objectUt
2676
3053
  intent: string;
2677
3054
  signature: string;
2678
3055
  }[];
3056
+ description?: string | undefined;
2679
3057
  }, {
2680
3058
  succeeded: boolean;
2681
3059
  signature: string;
@@ -2683,6 +3061,7 @@ export declare const ExecutionValidationRequestValidator: z.ZodObject<z.objectUt
2683
3061
  intent: string;
2684
3062
  signature: string;
2685
3063
  }[];
3064
+ description?: string | undefined;
2686
3065
  }>;
2687
3066
  export declare const OracleFeeValidator: z.ZodObject<{
2688
3067
  address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;