@mimicprotocol/sdk 0.0.1-rc.12 → 0.0.1-rc.13
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/axia/validators.d.ts +454 -36
- package/dist/axia/validators.d.ts.map +1 -1
- package/dist/axia/validators.js +5 -1
- package/dist/axia/validators.js.map +1 -1
- package/dist/oracle/eip712Types.d.ts +18 -0
- package/dist/oracle/eip712Types.d.ts.map +1 -1
- package/dist/oracle/eip712Types.js +17 -0
- package/dist/oracle/eip712Types.js.map +1 -1
- package/dist/oracle/types.d.ts +8 -1
- package/dist/oracle/types.d.ts.map +1 -1
- package/dist/oracle/validators.d.ts +236 -12
- package/dist/oracle/validators.d.ts.map +1 -1
- package/dist/oracle/validators.js +16 -1
- package/dist/oracle/validators.js.map +1 -1
- package/dist/registry/validators.d.ts +0 -6
- package/dist/registry/validators.d.ts.map +1 -1
- package/dist/registry/validators.js +0 -1
- package/dist/registry/validators.js.map +1 -1
- package/dist/relayer/validators.d.ts +334 -30
- package/dist/relayer/validators.d.ts.map +1 -1
- package/dist/runner/validators.d.ts +146 -12
- package/dist/runner/validators.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -66,7 +66,6 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
66
66
|
result: {
|
|
67
67
|
value: string;
|
|
68
68
|
};
|
|
69
|
-
signature: string;
|
|
70
69
|
query: {
|
|
71
70
|
params: {
|
|
72
71
|
chainId: number;
|
|
@@ -77,11 +76,11 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
77
76
|
name: "EvmCallQuery";
|
|
78
77
|
hash: string;
|
|
79
78
|
};
|
|
79
|
+
signature: string;
|
|
80
80
|
}, {
|
|
81
81
|
result: {
|
|
82
82
|
value: string;
|
|
83
83
|
};
|
|
84
|
-
signature: string;
|
|
85
84
|
query: {
|
|
86
85
|
params: {
|
|
87
86
|
chainId: number;
|
|
@@ -92,6 +91,7 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
92
91
|
name: "EvmCallQuery";
|
|
93
92
|
hash: string;
|
|
94
93
|
};
|
|
94
|
+
signature: string;
|
|
95
95
|
}>, z.ZodObject<{
|
|
96
96
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
97
97
|
query: z.ZodObject<{
|
|
@@ -154,7 +154,6 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
154
154
|
result: {
|
|
155
155
|
value: string;
|
|
156
156
|
};
|
|
157
|
-
signature: string;
|
|
158
157
|
query: {
|
|
159
158
|
params: {
|
|
160
159
|
timestamp: number;
|
|
@@ -166,11 +165,11 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
166
165
|
name: "TokenPriceQuery";
|
|
167
166
|
hash: string;
|
|
168
167
|
};
|
|
168
|
+
signature: string;
|
|
169
169
|
}, {
|
|
170
170
|
result: {
|
|
171
171
|
value: string;
|
|
172
172
|
};
|
|
173
|
-
signature: string;
|
|
174
173
|
query: {
|
|
175
174
|
params: {
|
|
176
175
|
timestamp: number;
|
|
@@ -182,6 +181,7 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
182
181
|
name: "TokenPriceQuery";
|
|
183
182
|
hash: string;
|
|
184
183
|
};
|
|
184
|
+
signature: string;
|
|
185
185
|
}>, z.ZodObject<{
|
|
186
186
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
187
187
|
query: z.ZodObject<{
|
|
@@ -306,7 +306,6 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
306
306
|
balance: string;
|
|
307
307
|
}[];
|
|
308
308
|
};
|
|
309
|
-
signature: string;
|
|
310
309
|
query: {
|
|
311
310
|
params: {
|
|
312
311
|
timestamp: number;
|
|
@@ -322,6 +321,7 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
322
321
|
name: "RelevantTokensQuery";
|
|
323
322
|
hash: string;
|
|
324
323
|
};
|
|
324
|
+
signature: string;
|
|
325
325
|
}, {
|
|
326
326
|
result: {
|
|
327
327
|
value: {
|
|
@@ -332,7 +332,6 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
332
332
|
balance: string;
|
|
333
333
|
}[];
|
|
334
334
|
};
|
|
335
|
-
signature: string;
|
|
336
335
|
query: {
|
|
337
336
|
params: {
|
|
338
337
|
timestamp: number;
|
|
@@ -348,6 +347,105 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
348
347
|
name: "RelevantTokensQuery";
|
|
349
348
|
hash: string;
|
|
350
349
|
};
|
|
350
|
+
signature: string;
|
|
351
|
+
}>, z.ZodObject<{
|
|
352
|
+
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
353
|
+
query: z.ZodObject<{
|
|
354
|
+
name: z.ZodLiteral<"SubgraphQuery">;
|
|
355
|
+
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
356
|
+
params: z.ZodObject<{
|
|
357
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
358
|
+
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
359
|
+
subgraphId: z.ZodString;
|
|
360
|
+
query: z.ZodString;
|
|
361
|
+
}, "strip", z.ZodTypeAny, {
|
|
362
|
+
chainId: number;
|
|
363
|
+
timestamp: number;
|
|
364
|
+
subgraphId: string;
|
|
365
|
+
query: string;
|
|
366
|
+
}, {
|
|
367
|
+
chainId: number;
|
|
368
|
+
timestamp: number;
|
|
369
|
+
subgraphId: string;
|
|
370
|
+
query: string;
|
|
371
|
+
}>;
|
|
372
|
+
}, "strip", z.ZodTypeAny, {
|
|
373
|
+
params: {
|
|
374
|
+
chainId: number;
|
|
375
|
+
timestamp: number;
|
|
376
|
+
subgraphId: string;
|
|
377
|
+
query: string;
|
|
378
|
+
};
|
|
379
|
+
name: "SubgraphQuery";
|
|
380
|
+
hash: string;
|
|
381
|
+
}, {
|
|
382
|
+
params: {
|
|
383
|
+
chainId: number;
|
|
384
|
+
timestamp: number;
|
|
385
|
+
subgraphId: string;
|
|
386
|
+
query: string;
|
|
387
|
+
};
|
|
388
|
+
name: "SubgraphQuery";
|
|
389
|
+
hash: string;
|
|
390
|
+
}>;
|
|
391
|
+
result: z.ZodObject<{
|
|
392
|
+
value: z.ZodObject<{
|
|
393
|
+
blockNumber: z.ZodNumber;
|
|
394
|
+
data: z.ZodString;
|
|
395
|
+
}, "strip", z.ZodTypeAny, {
|
|
396
|
+
data: string;
|
|
397
|
+
blockNumber: number;
|
|
398
|
+
}, {
|
|
399
|
+
data: string;
|
|
400
|
+
blockNumber: number;
|
|
401
|
+
}>;
|
|
402
|
+
}, "strip", z.ZodTypeAny, {
|
|
403
|
+
value: {
|
|
404
|
+
data: string;
|
|
405
|
+
blockNumber: number;
|
|
406
|
+
};
|
|
407
|
+
}, {
|
|
408
|
+
value: {
|
|
409
|
+
data: string;
|
|
410
|
+
blockNumber: number;
|
|
411
|
+
};
|
|
412
|
+
}>;
|
|
413
|
+
}, "strip", z.ZodTypeAny, {
|
|
414
|
+
result: {
|
|
415
|
+
value: {
|
|
416
|
+
data: string;
|
|
417
|
+
blockNumber: number;
|
|
418
|
+
};
|
|
419
|
+
};
|
|
420
|
+
query: {
|
|
421
|
+
params: {
|
|
422
|
+
chainId: number;
|
|
423
|
+
timestamp: number;
|
|
424
|
+
subgraphId: string;
|
|
425
|
+
query: string;
|
|
426
|
+
};
|
|
427
|
+
name: "SubgraphQuery";
|
|
428
|
+
hash: string;
|
|
429
|
+
};
|
|
430
|
+
signature: string;
|
|
431
|
+
}, {
|
|
432
|
+
result: {
|
|
433
|
+
value: {
|
|
434
|
+
data: string;
|
|
435
|
+
blockNumber: number;
|
|
436
|
+
};
|
|
437
|
+
};
|
|
438
|
+
query: {
|
|
439
|
+
params: {
|
|
440
|
+
chainId: number;
|
|
441
|
+
timestamp: number;
|
|
442
|
+
subgraphId: string;
|
|
443
|
+
query: string;
|
|
444
|
+
};
|
|
445
|
+
name: "SubgraphQuery";
|
|
446
|
+
hash: string;
|
|
447
|
+
};
|
|
448
|
+
signature: string;
|
|
351
449
|
}>]>, "many">;
|
|
352
450
|
outputs: z.ZodArray<z.ZodUnion<[z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
353
451
|
op: z.ZodNativeEnum<typeof import("../shared").OpType>;
|
|
@@ -630,7 +728,6 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
630
728
|
result: {
|
|
631
729
|
value: string;
|
|
632
730
|
};
|
|
633
|
-
signature: string;
|
|
634
731
|
query: {
|
|
635
732
|
params: {
|
|
636
733
|
chainId: number;
|
|
@@ -641,11 +738,11 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
641
738
|
name: "EvmCallQuery";
|
|
642
739
|
hash: string;
|
|
643
740
|
};
|
|
741
|
+
signature: string;
|
|
644
742
|
} | {
|
|
645
743
|
result: {
|
|
646
744
|
value: string;
|
|
647
745
|
};
|
|
648
|
-
signature: string;
|
|
649
746
|
query: {
|
|
650
747
|
params: {
|
|
651
748
|
timestamp: number;
|
|
@@ -657,6 +754,7 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
657
754
|
name: "TokenPriceQuery";
|
|
658
755
|
hash: string;
|
|
659
756
|
};
|
|
757
|
+
signature: string;
|
|
660
758
|
} | {
|
|
661
759
|
result: {
|
|
662
760
|
value: {
|
|
@@ -667,7 +765,6 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
667
765
|
balance: string;
|
|
668
766
|
}[];
|
|
669
767
|
};
|
|
670
|
-
signature: string;
|
|
671
768
|
query: {
|
|
672
769
|
params: {
|
|
673
770
|
timestamp: number;
|
|
@@ -683,6 +780,25 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
683
780
|
name: "RelevantTokensQuery";
|
|
684
781
|
hash: string;
|
|
685
782
|
};
|
|
783
|
+
signature: string;
|
|
784
|
+
} | {
|
|
785
|
+
result: {
|
|
786
|
+
value: {
|
|
787
|
+
data: string;
|
|
788
|
+
blockNumber: number;
|
|
789
|
+
};
|
|
790
|
+
};
|
|
791
|
+
query: {
|
|
792
|
+
params: {
|
|
793
|
+
chainId: number;
|
|
794
|
+
timestamp: number;
|
|
795
|
+
subgraphId: string;
|
|
796
|
+
query: string;
|
|
797
|
+
};
|
|
798
|
+
name: "SubgraphQuery";
|
|
799
|
+
hash: string;
|
|
800
|
+
};
|
|
801
|
+
signature: string;
|
|
686
802
|
})[];
|
|
687
803
|
outputs: ({
|
|
688
804
|
op: import("../shared").OpType;
|
|
@@ -757,7 +873,6 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
757
873
|
result: {
|
|
758
874
|
value: string;
|
|
759
875
|
};
|
|
760
|
-
signature: string;
|
|
761
876
|
query: {
|
|
762
877
|
params: {
|
|
763
878
|
chainId: number;
|
|
@@ -768,11 +883,11 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
768
883
|
name: "EvmCallQuery";
|
|
769
884
|
hash: string;
|
|
770
885
|
};
|
|
886
|
+
signature: string;
|
|
771
887
|
} | {
|
|
772
888
|
result: {
|
|
773
889
|
value: string;
|
|
774
890
|
};
|
|
775
|
-
signature: string;
|
|
776
891
|
query: {
|
|
777
892
|
params: {
|
|
778
893
|
timestamp: number;
|
|
@@ -784,6 +899,7 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
784
899
|
name: "TokenPriceQuery";
|
|
785
900
|
hash: string;
|
|
786
901
|
};
|
|
902
|
+
signature: string;
|
|
787
903
|
} | {
|
|
788
904
|
result: {
|
|
789
905
|
value: {
|
|
@@ -794,7 +910,6 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
794
910
|
balance: string;
|
|
795
911
|
}[];
|
|
796
912
|
};
|
|
797
|
-
signature: string;
|
|
798
913
|
query: {
|
|
799
914
|
params: {
|
|
800
915
|
timestamp: number;
|
|
@@ -810,6 +925,25 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
810
925
|
name: "RelevantTokensQuery";
|
|
811
926
|
hash: string;
|
|
812
927
|
};
|
|
928
|
+
signature: string;
|
|
929
|
+
} | {
|
|
930
|
+
result: {
|
|
931
|
+
value: {
|
|
932
|
+
data: string;
|
|
933
|
+
blockNumber: number;
|
|
934
|
+
};
|
|
935
|
+
};
|
|
936
|
+
query: {
|
|
937
|
+
params: {
|
|
938
|
+
chainId: number;
|
|
939
|
+
timestamp: number;
|
|
940
|
+
subgraphId: string;
|
|
941
|
+
query: string;
|
|
942
|
+
};
|
|
943
|
+
name: "SubgraphQuery";
|
|
944
|
+
hash: string;
|
|
945
|
+
};
|
|
946
|
+
signature: string;
|
|
813
947
|
})[];
|
|
814
948
|
outputs: ({
|
|
815
949
|
op: import("../shared").OpType;
|
|
@@ -944,7 +1078,6 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
944
1078
|
result: {
|
|
945
1079
|
value: string;
|
|
946
1080
|
};
|
|
947
|
-
signature: string;
|
|
948
1081
|
query: {
|
|
949
1082
|
params: {
|
|
950
1083
|
chainId: number;
|
|
@@ -955,11 +1088,11 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
955
1088
|
name: "EvmCallQuery";
|
|
956
1089
|
hash: string;
|
|
957
1090
|
};
|
|
1091
|
+
signature: string;
|
|
958
1092
|
}, {
|
|
959
1093
|
result: {
|
|
960
1094
|
value: string;
|
|
961
1095
|
};
|
|
962
|
-
signature: string;
|
|
963
1096
|
query: {
|
|
964
1097
|
params: {
|
|
965
1098
|
chainId: number;
|
|
@@ -970,6 +1103,7 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
970
1103
|
name: "EvmCallQuery";
|
|
971
1104
|
hash: string;
|
|
972
1105
|
};
|
|
1106
|
+
signature: string;
|
|
973
1107
|
}>, z.ZodObject<{
|
|
974
1108
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
975
1109
|
query: z.ZodObject<{
|
|
@@ -1032,7 +1166,6 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1032
1166
|
result: {
|
|
1033
1167
|
value: string;
|
|
1034
1168
|
};
|
|
1035
|
-
signature: string;
|
|
1036
1169
|
query: {
|
|
1037
1170
|
params: {
|
|
1038
1171
|
timestamp: number;
|
|
@@ -1044,11 +1177,11 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1044
1177
|
name: "TokenPriceQuery";
|
|
1045
1178
|
hash: string;
|
|
1046
1179
|
};
|
|
1180
|
+
signature: string;
|
|
1047
1181
|
}, {
|
|
1048
1182
|
result: {
|
|
1049
1183
|
value: string;
|
|
1050
1184
|
};
|
|
1051
|
-
signature: string;
|
|
1052
1185
|
query: {
|
|
1053
1186
|
params: {
|
|
1054
1187
|
timestamp: number;
|
|
@@ -1060,6 +1193,7 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1060
1193
|
name: "TokenPriceQuery";
|
|
1061
1194
|
hash: string;
|
|
1062
1195
|
};
|
|
1196
|
+
signature: string;
|
|
1063
1197
|
}>, z.ZodObject<{
|
|
1064
1198
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1065
1199
|
query: z.ZodObject<{
|
|
@@ -1184,7 +1318,6 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1184
1318
|
balance: string;
|
|
1185
1319
|
}[];
|
|
1186
1320
|
};
|
|
1187
|
-
signature: string;
|
|
1188
1321
|
query: {
|
|
1189
1322
|
params: {
|
|
1190
1323
|
timestamp: number;
|
|
@@ -1200,6 +1333,7 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1200
1333
|
name: "RelevantTokensQuery";
|
|
1201
1334
|
hash: string;
|
|
1202
1335
|
};
|
|
1336
|
+
signature: string;
|
|
1203
1337
|
}, {
|
|
1204
1338
|
result: {
|
|
1205
1339
|
value: {
|
|
@@ -1210,7 +1344,6 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1210
1344
|
balance: string;
|
|
1211
1345
|
}[];
|
|
1212
1346
|
};
|
|
1213
|
-
signature: string;
|
|
1214
1347
|
query: {
|
|
1215
1348
|
params: {
|
|
1216
1349
|
timestamp: number;
|
|
@@ -1226,6 +1359,105 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1226
1359
|
name: "RelevantTokensQuery";
|
|
1227
1360
|
hash: string;
|
|
1228
1361
|
};
|
|
1362
|
+
signature: string;
|
|
1363
|
+
}>, z.ZodObject<{
|
|
1364
|
+
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1365
|
+
query: z.ZodObject<{
|
|
1366
|
+
name: z.ZodLiteral<"SubgraphQuery">;
|
|
1367
|
+
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1368
|
+
params: z.ZodObject<{
|
|
1369
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1370
|
+
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1371
|
+
subgraphId: z.ZodString;
|
|
1372
|
+
query: z.ZodString;
|
|
1373
|
+
}, "strip", z.ZodTypeAny, {
|
|
1374
|
+
chainId: number;
|
|
1375
|
+
timestamp: number;
|
|
1376
|
+
subgraphId: string;
|
|
1377
|
+
query: string;
|
|
1378
|
+
}, {
|
|
1379
|
+
chainId: number;
|
|
1380
|
+
timestamp: number;
|
|
1381
|
+
subgraphId: string;
|
|
1382
|
+
query: string;
|
|
1383
|
+
}>;
|
|
1384
|
+
}, "strip", z.ZodTypeAny, {
|
|
1385
|
+
params: {
|
|
1386
|
+
chainId: number;
|
|
1387
|
+
timestamp: number;
|
|
1388
|
+
subgraphId: string;
|
|
1389
|
+
query: string;
|
|
1390
|
+
};
|
|
1391
|
+
name: "SubgraphQuery";
|
|
1392
|
+
hash: string;
|
|
1393
|
+
}, {
|
|
1394
|
+
params: {
|
|
1395
|
+
chainId: number;
|
|
1396
|
+
timestamp: number;
|
|
1397
|
+
subgraphId: string;
|
|
1398
|
+
query: string;
|
|
1399
|
+
};
|
|
1400
|
+
name: "SubgraphQuery";
|
|
1401
|
+
hash: string;
|
|
1402
|
+
}>;
|
|
1403
|
+
result: z.ZodObject<{
|
|
1404
|
+
value: z.ZodObject<{
|
|
1405
|
+
blockNumber: z.ZodNumber;
|
|
1406
|
+
data: z.ZodString;
|
|
1407
|
+
}, "strip", z.ZodTypeAny, {
|
|
1408
|
+
data: string;
|
|
1409
|
+
blockNumber: number;
|
|
1410
|
+
}, {
|
|
1411
|
+
data: string;
|
|
1412
|
+
blockNumber: number;
|
|
1413
|
+
}>;
|
|
1414
|
+
}, "strip", z.ZodTypeAny, {
|
|
1415
|
+
value: {
|
|
1416
|
+
data: string;
|
|
1417
|
+
blockNumber: number;
|
|
1418
|
+
};
|
|
1419
|
+
}, {
|
|
1420
|
+
value: {
|
|
1421
|
+
data: string;
|
|
1422
|
+
blockNumber: number;
|
|
1423
|
+
};
|
|
1424
|
+
}>;
|
|
1425
|
+
}, "strip", z.ZodTypeAny, {
|
|
1426
|
+
result: {
|
|
1427
|
+
value: {
|
|
1428
|
+
data: string;
|
|
1429
|
+
blockNumber: number;
|
|
1430
|
+
};
|
|
1431
|
+
};
|
|
1432
|
+
query: {
|
|
1433
|
+
params: {
|
|
1434
|
+
chainId: number;
|
|
1435
|
+
timestamp: number;
|
|
1436
|
+
subgraphId: string;
|
|
1437
|
+
query: string;
|
|
1438
|
+
};
|
|
1439
|
+
name: "SubgraphQuery";
|
|
1440
|
+
hash: string;
|
|
1441
|
+
};
|
|
1442
|
+
signature: string;
|
|
1443
|
+
}, {
|
|
1444
|
+
result: {
|
|
1445
|
+
value: {
|
|
1446
|
+
data: string;
|
|
1447
|
+
blockNumber: number;
|
|
1448
|
+
};
|
|
1449
|
+
};
|
|
1450
|
+
query: {
|
|
1451
|
+
params: {
|
|
1452
|
+
chainId: number;
|
|
1453
|
+
timestamp: number;
|
|
1454
|
+
subgraphId: string;
|
|
1455
|
+
query: string;
|
|
1456
|
+
};
|
|
1457
|
+
name: "SubgraphQuery";
|
|
1458
|
+
hash: string;
|
|
1459
|
+
};
|
|
1460
|
+
signature: string;
|
|
1229
1461
|
}>]>, "many">;
|
|
1230
1462
|
outputs: z.ZodArray<z.ZodUnion<[z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
1231
1463
|
op: z.ZodNativeEnum<typeof import("../shared").OpType>;
|
|
@@ -1508,7 +1740,6 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1508
1740
|
result: {
|
|
1509
1741
|
value: string;
|
|
1510
1742
|
};
|
|
1511
|
-
signature: string;
|
|
1512
1743
|
query: {
|
|
1513
1744
|
params: {
|
|
1514
1745
|
chainId: number;
|
|
@@ -1519,11 +1750,11 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1519
1750
|
name: "EvmCallQuery";
|
|
1520
1751
|
hash: string;
|
|
1521
1752
|
};
|
|
1753
|
+
signature: string;
|
|
1522
1754
|
} | {
|
|
1523
1755
|
result: {
|
|
1524
1756
|
value: string;
|
|
1525
1757
|
};
|
|
1526
|
-
signature: string;
|
|
1527
1758
|
query: {
|
|
1528
1759
|
params: {
|
|
1529
1760
|
timestamp: number;
|
|
@@ -1535,6 +1766,7 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1535
1766
|
name: "TokenPriceQuery";
|
|
1536
1767
|
hash: string;
|
|
1537
1768
|
};
|
|
1769
|
+
signature: string;
|
|
1538
1770
|
} | {
|
|
1539
1771
|
result: {
|
|
1540
1772
|
value: {
|
|
@@ -1545,7 +1777,6 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1545
1777
|
balance: string;
|
|
1546
1778
|
}[];
|
|
1547
1779
|
};
|
|
1548
|
-
signature: string;
|
|
1549
1780
|
query: {
|
|
1550
1781
|
params: {
|
|
1551
1782
|
timestamp: number;
|
|
@@ -1561,6 +1792,25 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1561
1792
|
name: "RelevantTokensQuery";
|
|
1562
1793
|
hash: string;
|
|
1563
1794
|
};
|
|
1795
|
+
signature: string;
|
|
1796
|
+
} | {
|
|
1797
|
+
result: {
|
|
1798
|
+
value: {
|
|
1799
|
+
data: string;
|
|
1800
|
+
blockNumber: number;
|
|
1801
|
+
};
|
|
1802
|
+
};
|
|
1803
|
+
query: {
|
|
1804
|
+
params: {
|
|
1805
|
+
chainId: number;
|
|
1806
|
+
timestamp: number;
|
|
1807
|
+
subgraphId: string;
|
|
1808
|
+
query: string;
|
|
1809
|
+
};
|
|
1810
|
+
name: "SubgraphQuery";
|
|
1811
|
+
hash: string;
|
|
1812
|
+
};
|
|
1813
|
+
signature: string;
|
|
1564
1814
|
})[];
|
|
1565
1815
|
outputs: ({
|
|
1566
1816
|
op: import("../shared").OpType;
|
|
@@ -1635,7 +1885,6 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1635
1885
|
result: {
|
|
1636
1886
|
value: string;
|
|
1637
1887
|
};
|
|
1638
|
-
signature: string;
|
|
1639
1888
|
query: {
|
|
1640
1889
|
params: {
|
|
1641
1890
|
chainId: number;
|
|
@@ -1646,11 +1895,11 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1646
1895
|
name: "EvmCallQuery";
|
|
1647
1896
|
hash: string;
|
|
1648
1897
|
};
|
|
1898
|
+
signature: string;
|
|
1649
1899
|
} | {
|
|
1650
1900
|
result: {
|
|
1651
1901
|
value: string;
|
|
1652
1902
|
};
|
|
1653
|
-
signature: string;
|
|
1654
1903
|
query: {
|
|
1655
1904
|
params: {
|
|
1656
1905
|
timestamp: number;
|
|
@@ -1662,6 +1911,7 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1662
1911
|
name: "TokenPriceQuery";
|
|
1663
1912
|
hash: string;
|
|
1664
1913
|
};
|
|
1914
|
+
signature: string;
|
|
1665
1915
|
} | {
|
|
1666
1916
|
result: {
|
|
1667
1917
|
value: {
|
|
@@ -1672,7 +1922,6 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1672
1922
|
balance: string;
|
|
1673
1923
|
}[];
|
|
1674
1924
|
};
|
|
1675
|
-
signature: string;
|
|
1676
1925
|
query: {
|
|
1677
1926
|
params: {
|
|
1678
1927
|
timestamp: number;
|
|
@@ -1688,6 +1937,25 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1688
1937
|
name: "RelevantTokensQuery";
|
|
1689
1938
|
hash: string;
|
|
1690
1939
|
};
|
|
1940
|
+
signature: string;
|
|
1941
|
+
} | {
|
|
1942
|
+
result: {
|
|
1943
|
+
value: {
|
|
1944
|
+
data: string;
|
|
1945
|
+
blockNumber: number;
|
|
1946
|
+
};
|
|
1947
|
+
};
|
|
1948
|
+
query: {
|
|
1949
|
+
params: {
|
|
1950
|
+
chainId: number;
|
|
1951
|
+
timestamp: number;
|
|
1952
|
+
subgraphId: string;
|
|
1953
|
+
query: string;
|
|
1954
|
+
};
|
|
1955
|
+
name: "SubgraphQuery";
|
|
1956
|
+
hash: string;
|
|
1957
|
+
};
|
|
1958
|
+
signature: string;
|
|
1691
1959
|
})[];
|
|
1692
1960
|
outputs: ({
|
|
1693
1961
|
op: import("../shared").OpType;
|
|
@@ -1764,7 +2032,6 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1764
2032
|
result: {
|
|
1765
2033
|
value: string;
|
|
1766
2034
|
};
|
|
1767
|
-
signature: string;
|
|
1768
2035
|
query: {
|
|
1769
2036
|
params: {
|
|
1770
2037
|
chainId: number;
|
|
@@ -1775,11 +2042,11 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1775
2042
|
name: "EvmCallQuery";
|
|
1776
2043
|
hash: string;
|
|
1777
2044
|
};
|
|
2045
|
+
signature: string;
|
|
1778
2046
|
} | {
|
|
1779
2047
|
result: {
|
|
1780
2048
|
value: string;
|
|
1781
2049
|
};
|
|
1782
|
-
signature: string;
|
|
1783
2050
|
query: {
|
|
1784
2051
|
params: {
|
|
1785
2052
|
timestamp: number;
|
|
@@ -1791,6 +2058,7 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1791
2058
|
name: "TokenPriceQuery";
|
|
1792
2059
|
hash: string;
|
|
1793
2060
|
};
|
|
2061
|
+
signature: string;
|
|
1794
2062
|
} | {
|
|
1795
2063
|
result: {
|
|
1796
2064
|
value: {
|
|
@@ -1801,7 +2069,6 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1801
2069
|
balance: string;
|
|
1802
2070
|
}[];
|
|
1803
2071
|
};
|
|
1804
|
-
signature: string;
|
|
1805
2072
|
query: {
|
|
1806
2073
|
params: {
|
|
1807
2074
|
timestamp: number;
|
|
@@ -1817,6 +2084,25 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1817
2084
|
name: "RelevantTokensQuery";
|
|
1818
2085
|
hash: string;
|
|
1819
2086
|
};
|
|
2087
|
+
signature: string;
|
|
2088
|
+
} | {
|
|
2089
|
+
result: {
|
|
2090
|
+
value: {
|
|
2091
|
+
data: string;
|
|
2092
|
+
blockNumber: number;
|
|
2093
|
+
};
|
|
2094
|
+
};
|
|
2095
|
+
query: {
|
|
2096
|
+
params: {
|
|
2097
|
+
chainId: number;
|
|
2098
|
+
timestamp: number;
|
|
2099
|
+
subgraphId: string;
|
|
2100
|
+
query: string;
|
|
2101
|
+
};
|
|
2102
|
+
name: "SubgraphQuery";
|
|
2103
|
+
hash: string;
|
|
2104
|
+
};
|
|
2105
|
+
signature: string;
|
|
1820
2106
|
})[];
|
|
1821
2107
|
outputs: ({
|
|
1822
2108
|
op: import("../shared").OpType;
|
|
@@ -1898,7 +2184,6 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1898
2184
|
result: {
|
|
1899
2185
|
value: string;
|
|
1900
2186
|
};
|
|
1901
|
-
signature: string;
|
|
1902
2187
|
query: {
|
|
1903
2188
|
params: {
|
|
1904
2189
|
chainId: number;
|
|
@@ -1909,11 +2194,11 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1909
2194
|
name: "EvmCallQuery";
|
|
1910
2195
|
hash: string;
|
|
1911
2196
|
};
|
|
2197
|
+
signature: string;
|
|
1912
2198
|
} | {
|
|
1913
2199
|
result: {
|
|
1914
2200
|
value: string;
|
|
1915
2201
|
};
|
|
1916
|
-
signature: string;
|
|
1917
2202
|
query: {
|
|
1918
2203
|
params: {
|
|
1919
2204
|
timestamp: number;
|
|
@@ -1925,6 +2210,7 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1925
2210
|
name: "TokenPriceQuery";
|
|
1926
2211
|
hash: string;
|
|
1927
2212
|
};
|
|
2213
|
+
signature: string;
|
|
1928
2214
|
} | {
|
|
1929
2215
|
result: {
|
|
1930
2216
|
value: {
|
|
@@ -1935,7 +2221,6 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1935
2221
|
balance: string;
|
|
1936
2222
|
}[];
|
|
1937
2223
|
};
|
|
1938
|
-
signature: string;
|
|
1939
2224
|
query: {
|
|
1940
2225
|
params: {
|
|
1941
2226
|
timestamp: number;
|
|
@@ -1951,6 +2236,25 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1951
2236
|
name: "RelevantTokensQuery";
|
|
1952
2237
|
hash: string;
|
|
1953
2238
|
};
|
|
2239
|
+
signature: string;
|
|
2240
|
+
} | {
|
|
2241
|
+
result: {
|
|
2242
|
+
value: {
|
|
2243
|
+
data: string;
|
|
2244
|
+
blockNumber: number;
|
|
2245
|
+
};
|
|
2246
|
+
};
|
|
2247
|
+
query: {
|
|
2248
|
+
params: {
|
|
2249
|
+
chainId: number;
|
|
2250
|
+
timestamp: number;
|
|
2251
|
+
subgraphId: string;
|
|
2252
|
+
query: string;
|
|
2253
|
+
};
|
|
2254
|
+
name: "SubgraphQuery";
|
|
2255
|
+
hash: string;
|
|
2256
|
+
};
|
|
2257
|
+
signature: string;
|
|
1954
2258
|
})[];
|
|
1955
2259
|
outputs: ({
|
|
1956
2260
|
op: import("../shared").OpType;
|