@mimicprotocol/sdk 0.0.1-rc.13 → 0.0.1-rc.15
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 +323 -272
- package/dist/axia/validators.d.ts.map +1 -1
- package/dist/axia/validators.js +1 -2
- package/dist/axia/validators.js.map +1 -1
- package/dist/client/domains/ConfigsClient.d.ts.map +1 -1
- package/dist/client/domains/ConfigsClient.js +1 -3
- package/dist/client/domains/ConfigsClient.js.map +1 -1
- package/dist/oracle/eip712Types.d.ts +26 -0
- package/dist/oracle/eip712Types.d.ts.map +1 -1
- package/dist/oracle/eip712Types.js +27 -2
- 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 +408 -148
- package/dist/oracle/validators.d.ts.map +1 -1
- package/dist/oracle/validators.js +19 -5
- package/dist/oracle/validators.js.map +1 -1
- package/dist/registry/eip712Types.d.ts.map +1 -1
- package/dist/registry/eip712Types.js +2 -1
- package/dist/registry/eip712Types.js.map +1 -1
- package/dist/registry/types.d.ts +2 -1
- package/dist/registry/types.d.ts.map +1 -1
- package/dist/registry/types.js.map +1 -1
- package/dist/registry/validations.d.ts +0 -2
- package/dist/registry/validations.d.ts.map +1 -1
- package/dist/registry/validations.js +1 -8
- package/dist/registry/validations.js.map +1 -1
- package/dist/registry/validators.d.ts +93 -60
- package/dist/registry/validators.d.ts.map +1 -1
- package/dist/registry/validators.js +6 -4
- package/dist/registry/validators.js.map +1 -1
- package/dist/relayer/validators.d.ts +235 -189
- package/dist/relayer/validators.d.ts.map +1 -1
- package/dist/relayer/validators.js +1 -2
- package/dist/relayer/validators.js.map +1 -1
- package/dist/runner/validators.d.ts +106 -76
- package/dist/runner/validators.d.ts.map +1 -1
- package/dist/shared/codec/decoder.d.ts +3 -1
- package/dist/shared/codec/decoder.d.ts.map +1 -1
- package/dist/shared/codec/decoder.js +11 -0
- package/dist/shared/codec/decoder.js.map +1 -1
- package/dist/shared/codec/encoder.js +1 -1
- package/dist/shared/codec/encoder.js.map +1 -1
- package/dist/shared/eip712Types/index.d.ts +1 -1
- package/dist/shared/eip712Types/index.js +1 -1
- package/dist/shared/types/executions.d.ts +1 -2
- package/dist/shared/types/executions.d.ts.map +1 -1
- package/dist/shared/types/primitives.d.ts +3 -1
- package/dist/shared/types/primitives.d.ts.map +1 -1
- package/dist/shared/validators/executions.d.ts +18 -35
- package/dist/shared/validators/executions.d.ts.map +1 -1
- package/dist/shared/validators/executions.js +4 -17
- package/dist/shared/validators/executions.js.map +1 -1
- package/dist/shared/validators/primitives.d.ts +20 -0
- package/dist/shared/validators/primitives.d.ts.map +1 -1
- package/dist/shared/validators/primitives.js +9 -1
- package/dist/shared/validators/primitives.js.map +1 -1
- package/package.json +1 -1
|
@@ -2,15 +2,12 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const QueueExecutionValidator: z.ZodObject<{
|
|
3
3
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4
4
|
logs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5
|
-
errorLogs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6
5
|
}, "strip", z.ZodTypeAny, {
|
|
7
6
|
hash: string;
|
|
8
7
|
logs?: string[] | undefined;
|
|
9
|
-
errorLogs?: string[] | undefined;
|
|
10
8
|
}, {
|
|
11
9
|
hash: string;
|
|
12
10
|
logs?: string[] | undefined;
|
|
13
|
-
errorLogs?: string[] | undefined;
|
|
14
11
|
}>;
|
|
15
12
|
export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
16
13
|
timestamp: z.ZodNumber;
|
|
@@ -23,7 +20,7 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
23
20
|
params: z.ZodObject<{
|
|
24
21
|
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
25
22
|
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
26
|
-
to: z.ZodEffects<z.
|
|
23
|
+
to: z.ZodEffects<z.ZodString, string, string>;
|
|
27
24
|
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
28
25
|
}, "strip", z.ZodTypeAny, {
|
|
29
26
|
chainId: number;
|
|
@@ -191,10 +188,9 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
191
188
|
chainIds: z.ZodArray<z.ZodEffects<z.ZodNumber, number, number>, "many">;
|
|
192
189
|
owner: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
193
190
|
usdMinAmount: z.ZodEffects<z.ZodString, string, string>;
|
|
194
|
-
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
195
191
|
tokens: z.ZodArray<z.ZodObject<{
|
|
196
|
-
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
197
192
|
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
193
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
198
194
|
}, "strip", z.ZodTypeAny, {
|
|
199
195
|
chainId: number;
|
|
200
196
|
address: string;
|
|
@@ -204,34 +200,31 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
204
200
|
}>, "many">;
|
|
205
201
|
tokenFilter: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>;
|
|
206
202
|
}, "strip", z.ZodTypeAny, {
|
|
207
|
-
|
|
203
|
+
owner: string;
|
|
208
204
|
tokens: {
|
|
209
205
|
chainId: number;
|
|
210
206
|
address: string;
|
|
211
207
|
}[];
|
|
212
|
-
owner: string;
|
|
213
208
|
usdMinAmount: string;
|
|
214
209
|
chainIds: number[];
|
|
215
210
|
tokenFilter: 0 | 1;
|
|
216
211
|
}, {
|
|
217
|
-
|
|
212
|
+
owner: string;
|
|
218
213
|
tokens: {
|
|
219
214
|
chainId: number;
|
|
220
215
|
address: string;
|
|
221
216
|
}[];
|
|
222
|
-
owner: string;
|
|
223
217
|
usdMinAmount: string;
|
|
224
218
|
chainIds: number[];
|
|
225
219
|
tokenFilter: 0 | 1;
|
|
226
220
|
}>;
|
|
227
221
|
}, "strip", z.ZodTypeAny, {
|
|
228
222
|
params: {
|
|
229
|
-
|
|
223
|
+
owner: string;
|
|
230
224
|
tokens: {
|
|
231
225
|
chainId: number;
|
|
232
226
|
address: string;
|
|
233
227
|
}[];
|
|
234
|
-
owner: string;
|
|
235
228
|
usdMinAmount: string;
|
|
236
229
|
chainIds: number[];
|
|
237
230
|
tokenFilter: 0 | 1;
|
|
@@ -240,12 +233,11 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
240
233
|
hash: string;
|
|
241
234
|
}, {
|
|
242
235
|
params: {
|
|
243
|
-
|
|
236
|
+
owner: string;
|
|
244
237
|
tokens: {
|
|
245
238
|
chainId: number;
|
|
246
239
|
address: string;
|
|
247
240
|
}[];
|
|
248
|
-
owner: string;
|
|
249
241
|
usdMinAmount: string;
|
|
250
242
|
chainIds: number[];
|
|
251
243
|
tokenFilter: 0 | 1;
|
|
@@ -254,66 +246,95 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
254
246
|
hash: string;
|
|
255
247
|
}>;
|
|
256
248
|
result: z.ZodObject<{
|
|
257
|
-
value: z.
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
249
|
+
value: z.ZodObject<{
|
|
250
|
+
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
251
|
+
balances: z.ZodArray<z.ZodObject<{
|
|
252
|
+
token: z.ZodObject<{
|
|
253
|
+
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
254
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
255
|
+
}, "strip", z.ZodTypeAny, {
|
|
256
|
+
chainId: number;
|
|
257
|
+
address: string;
|
|
258
|
+
}, {
|
|
259
|
+
chainId: number;
|
|
260
|
+
address: string;
|
|
261
|
+
}>;
|
|
262
|
+
balance: z.ZodEffects<z.ZodString, string, string>;
|
|
261
263
|
}, "strip", z.ZodTypeAny, {
|
|
262
|
-
|
|
263
|
-
|
|
264
|
+
token: {
|
|
265
|
+
chainId: number;
|
|
266
|
+
address: string;
|
|
267
|
+
};
|
|
268
|
+
balance: string;
|
|
264
269
|
}, {
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
270
|
+
token: {
|
|
271
|
+
chainId: number;
|
|
272
|
+
address: string;
|
|
273
|
+
};
|
|
274
|
+
balance: string;
|
|
275
|
+
}>, "many">;
|
|
269
276
|
}, "strip", z.ZodTypeAny, {
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
277
|
+
timestamp: number;
|
|
278
|
+
balances: {
|
|
279
|
+
token: {
|
|
280
|
+
chainId: number;
|
|
281
|
+
address: string;
|
|
282
|
+
};
|
|
283
|
+
balance: string;
|
|
284
|
+
}[];
|
|
275
285
|
}, {
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
286
|
+
timestamp: number;
|
|
287
|
+
balances: {
|
|
288
|
+
token: {
|
|
289
|
+
chainId: number;
|
|
290
|
+
address: string;
|
|
291
|
+
};
|
|
292
|
+
balance: string;
|
|
293
|
+
}[];
|
|
294
|
+
}>;
|
|
282
295
|
}, "strip", z.ZodTypeAny, {
|
|
283
296
|
value: {
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
297
|
+
timestamp: number;
|
|
298
|
+
balances: {
|
|
299
|
+
token: {
|
|
300
|
+
chainId: number;
|
|
301
|
+
address: string;
|
|
302
|
+
};
|
|
303
|
+
balance: string;
|
|
304
|
+
}[];
|
|
305
|
+
};
|
|
290
306
|
}, {
|
|
291
307
|
value: {
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
308
|
+
timestamp: number;
|
|
309
|
+
balances: {
|
|
310
|
+
token: {
|
|
311
|
+
chainId: number;
|
|
312
|
+
address: string;
|
|
313
|
+
};
|
|
314
|
+
balance: string;
|
|
315
|
+
}[];
|
|
316
|
+
};
|
|
298
317
|
}>;
|
|
299
318
|
}, "strip", z.ZodTypeAny, {
|
|
300
319
|
result: {
|
|
301
320
|
value: {
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
321
|
+
timestamp: number;
|
|
322
|
+
balances: {
|
|
323
|
+
token: {
|
|
324
|
+
chainId: number;
|
|
325
|
+
address: string;
|
|
326
|
+
};
|
|
327
|
+
balance: string;
|
|
328
|
+
}[];
|
|
329
|
+
};
|
|
308
330
|
};
|
|
309
331
|
query: {
|
|
310
332
|
params: {
|
|
311
|
-
|
|
333
|
+
owner: string;
|
|
312
334
|
tokens: {
|
|
313
335
|
chainId: number;
|
|
314
336
|
address: string;
|
|
315
337
|
}[];
|
|
316
|
-
owner: string;
|
|
317
338
|
usdMinAmount: string;
|
|
318
339
|
chainIds: number[];
|
|
319
340
|
tokenFilter: 0 | 1;
|
|
@@ -325,21 +346,23 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
325
346
|
}, {
|
|
326
347
|
result: {
|
|
327
348
|
value: {
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
349
|
+
timestamp: number;
|
|
350
|
+
balances: {
|
|
351
|
+
token: {
|
|
352
|
+
chainId: number;
|
|
353
|
+
address: string;
|
|
354
|
+
};
|
|
355
|
+
balance: string;
|
|
356
|
+
}[];
|
|
357
|
+
};
|
|
334
358
|
};
|
|
335
359
|
query: {
|
|
336
360
|
params: {
|
|
337
|
-
|
|
361
|
+
owner: string;
|
|
338
362
|
tokens: {
|
|
339
363
|
chainId: number;
|
|
340
364
|
address: string;
|
|
341
365
|
}[];
|
|
342
|
-
owner: string;
|
|
343
366
|
usdMinAmount: string;
|
|
344
367
|
chainIds: number[];
|
|
345
368
|
tokenFilter: 0 | 1;
|
|
@@ -758,21 +781,23 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
758
781
|
} | {
|
|
759
782
|
result: {
|
|
760
783
|
value: {
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
784
|
+
timestamp: number;
|
|
785
|
+
balances: {
|
|
786
|
+
token: {
|
|
787
|
+
chainId: number;
|
|
788
|
+
address: string;
|
|
789
|
+
};
|
|
790
|
+
balance: string;
|
|
791
|
+
}[];
|
|
792
|
+
};
|
|
767
793
|
};
|
|
768
794
|
query: {
|
|
769
795
|
params: {
|
|
770
|
-
|
|
796
|
+
owner: string;
|
|
771
797
|
tokens: {
|
|
772
798
|
chainId: number;
|
|
773
799
|
address: string;
|
|
774
800
|
}[];
|
|
775
|
-
owner: string;
|
|
776
801
|
usdMinAmount: string;
|
|
777
802
|
chainIds: number[];
|
|
778
803
|
tokenFilter: 0 | 1;
|
|
@@ -903,21 +928,23 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
903
928
|
} | {
|
|
904
929
|
result: {
|
|
905
930
|
value: {
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
931
|
+
timestamp: number;
|
|
932
|
+
balances: {
|
|
933
|
+
token: {
|
|
934
|
+
chainId: number;
|
|
935
|
+
address: string;
|
|
936
|
+
};
|
|
937
|
+
balance: string;
|
|
938
|
+
}[];
|
|
939
|
+
};
|
|
912
940
|
};
|
|
913
941
|
query: {
|
|
914
942
|
params: {
|
|
915
|
-
|
|
943
|
+
owner: string;
|
|
916
944
|
tokens: {
|
|
917
945
|
chainId: number;
|
|
918
946
|
address: string;
|
|
919
947
|
}[];
|
|
920
|
-
owner: string;
|
|
921
948
|
usdMinAmount: string;
|
|
922
949
|
chainIds: number[];
|
|
923
950
|
tokenFilter: 0 | 1;
|
|
@@ -1014,16 +1041,7 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
1014
1041
|
}>;
|
|
1015
1042
|
export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
1016
1043
|
status: z.ZodEnum<["success", "error"]>;
|
|
1017
|
-
logs: z.ZodArray<z.
|
|
1018
|
-
level: z.ZodNativeEnum<typeof import("../shared").LogLevel>;
|
|
1019
|
-
log: z.ZodString;
|
|
1020
|
-
}, "strip", z.ZodTypeAny, {
|
|
1021
|
-
level: import("../shared").LogLevel;
|
|
1022
|
-
log: string;
|
|
1023
|
-
}, {
|
|
1024
|
-
level: import("../shared").LogLevel;
|
|
1025
|
-
log: string;
|
|
1026
|
-
}>, "many">;
|
|
1044
|
+
logs: z.ZodArray<z.ZodString, "many">;
|
|
1027
1045
|
result: z.ZodObject<{
|
|
1028
1046
|
timestamp: z.ZodNumber;
|
|
1029
1047
|
fuelUsed: z.ZodNumber;
|
|
@@ -1035,7 +1053,7 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1035
1053
|
params: z.ZodObject<{
|
|
1036
1054
|
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1037
1055
|
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1038
|
-
to: z.ZodEffects<z.
|
|
1056
|
+
to: z.ZodEffects<z.ZodString, string, string>;
|
|
1039
1057
|
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1040
1058
|
}, "strip", z.ZodTypeAny, {
|
|
1041
1059
|
chainId: number;
|
|
@@ -1203,10 +1221,9 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1203
1221
|
chainIds: z.ZodArray<z.ZodEffects<z.ZodNumber, number, number>, "many">;
|
|
1204
1222
|
owner: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1205
1223
|
usdMinAmount: z.ZodEffects<z.ZodString, string, string>;
|
|
1206
|
-
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1207
1224
|
tokens: z.ZodArray<z.ZodObject<{
|
|
1208
|
-
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1209
1225
|
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1226
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1210
1227
|
}, "strip", z.ZodTypeAny, {
|
|
1211
1228
|
chainId: number;
|
|
1212
1229
|
address: string;
|
|
@@ -1216,34 +1233,31 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1216
1233
|
}>, "many">;
|
|
1217
1234
|
tokenFilter: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>;
|
|
1218
1235
|
}, "strip", z.ZodTypeAny, {
|
|
1219
|
-
|
|
1236
|
+
owner: string;
|
|
1220
1237
|
tokens: {
|
|
1221
1238
|
chainId: number;
|
|
1222
1239
|
address: string;
|
|
1223
1240
|
}[];
|
|
1224
|
-
owner: string;
|
|
1225
1241
|
usdMinAmount: string;
|
|
1226
1242
|
chainIds: number[];
|
|
1227
1243
|
tokenFilter: 0 | 1;
|
|
1228
1244
|
}, {
|
|
1229
|
-
|
|
1245
|
+
owner: string;
|
|
1230
1246
|
tokens: {
|
|
1231
1247
|
chainId: number;
|
|
1232
1248
|
address: string;
|
|
1233
1249
|
}[];
|
|
1234
|
-
owner: string;
|
|
1235
1250
|
usdMinAmount: string;
|
|
1236
1251
|
chainIds: number[];
|
|
1237
1252
|
tokenFilter: 0 | 1;
|
|
1238
1253
|
}>;
|
|
1239
1254
|
}, "strip", z.ZodTypeAny, {
|
|
1240
1255
|
params: {
|
|
1241
|
-
|
|
1256
|
+
owner: string;
|
|
1242
1257
|
tokens: {
|
|
1243
1258
|
chainId: number;
|
|
1244
1259
|
address: string;
|
|
1245
1260
|
}[];
|
|
1246
|
-
owner: string;
|
|
1247
1261
|
usdMinAmount: string;
|
|
1248
1262
|
chainIds: number[];
|
|
1249
1263
|
tokenFilter: 0 | 1;
|
|
@@ -1252,12 +1266,11 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1252
1266
|
hash: string;
|
|
1253
1267
|
}, {
|
|
1254
1268
|
params: {
|
|
1255
|
-
|
|
1269
|
+
owner: string;
|
|
1256
1270
|
tokens: {
|
|
1257
1271
|
chainId: number;
|
|
1258
1272
|
address: string;
|
|
1259
1273
|
}[];
|
|
1260
|
-
owner: string;
|
|
1261
1274
|
usdMinAmount: string;
|
|
1262
1275
|
chainIds: number[];
|
|
1263
1276
|
tokenFilter: 0 | 1;
|
|
@@ -1266,66 +1279,95 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1266
1279
|
hash: string;
|
|
1267
1280
|
}>;
|
|
1268
1281
|
result: z.ZodObject<{
|
|
1269
|
-
value: z.
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1282
|
+
value: z.ZodObject<{
|
|
1283
|
+
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1284
|
+
balances: z.ZodArray<z.ZodObject<{
|
|
1285
|
+
token: z.ZodObject<{
|
|
1286
|
+
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1287
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1288
|
+
}, "strip", z.ZodTypeAny, {
|
|
1289
|
+
chainId: number;
|
|
1290
|
+
address: string;
|
|
1291
|
+
}, {
|
|
1292
|
+
chainId: number;
|
|
1293
|
+
address: string;
|
|
1294
|
+
}>;
|
|
1295
|
+
balance: z.ZodEffects<z.ZodString, string, string>;
|
|
1273
1296
|
}, "strip", z.ZodTypeAny, {
|
|
1274
|
-
|
|
1275
|
-
|
|
1297
|
+
token: {
|
|
1298
|
+
chainId: number;
|
|
1299
|
+
address: string;
|
|
1300
|
+
};
|
|
1301
|
+
balance: string;
|
|
1276
1302
|
}, {
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1303
|
+
token: {
|
|
1304
|
+
chainId: number;
|
|
1305
|
+
address: string;
|
|
1306
|
+
};
|
|
1307
|
+
balance: string;
|
|
1308
|
+
}>, "many">;
|
|
1281
1309
|
}, "strip", z.ZodTypeAny, {
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1310
|
+
timestamp: number;
|
|
1311
|
+
balances: {
|
|
1312
|
+
token: {
|
|
1313
|
+
chainId: number;
|
|
1314
|
+
address: string;
|
|
1315
|
+
};
|
|
1316
|
+
balance: string;
|
|
1317
|
+
}[];
|
|
1287
1318
|
}, {
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1319
|
+
timestamp: number;
|
|
1320
|
+
balances: {
|
|
1321
|
+
token: {
|
|
1322
|
+
chainId: number;
|
|
1323
|
+
address: string;
|
|
1324
|
+
};
|
|
1325
|
+
balance: string;
|
|
1326
|
+
}[];
|
|
1327
|
+
}>;
|
|
1294
1328
|
}, "strip", z.ZodTypeAny, {
|
|
1295
1329
|
value: {
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1330
|
+
timestamp: number;
|
|
1331
|
+
balances: {
|
|
1332
|
+
token: {
|
|
1333
|
+
chainId: number;
|
|
1334
|
+
address: string;
|
|
1335
|
+
};
|
|
1336
|
+
balance: string;
|
|
1337
|
+
}[];
|
|
1338
|
+
};
|
|
1302
1339
|
}, {
|
|
1303
1340
|
value: {
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1341
|
+
timestamp: number;
|
|
1342
|
+
balances: {
|
|
1343
|
+
token: {
|
|
1344
|
+
chainId: number;
|
|
1345
|
+
address: string;
|
|
1346
|
+
};
|
|
1347
|
+
balance: string;
|
|
1348
|
+
}[];
|
|
1349
|
+
};
|
|
1310
1350
|
}>;
|
|
1311
1351
|
}, "strip", z.ZodTypeAny, {
|
|
1312
1352
|
result: {
|
|
1313
1353
|
value: {
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1354
|
+
timestamp: number;
|
|
1355
|
+
balances: {
|
|
1356
|
+
token: {
|
|
1357
|
+
chainId: number;
|
|
1358
|
+
address: string;
|
|
1359
|
+
};
|
|
1360
|
+
balance: string;
|
|
1361
|
+
}[];
|
|
1362
|
+
};
|
|
1320
1363
|
};
|
|
1321
1364
|
query: {
|
|
1322
1365
|
params: {
|
|
1323
|
-
|
|
1366
|
+
owner: string;
|
|
1324
1367
|
tokens: {
|
|
1325
1368
|
chainId: number;
|
|
1326
1369
|
address: string;
|
|
1327
1370
|
}[];
|
|
1328
|
-
owner: string;
|
|
1329
1371
|
usdMinAmount: string;
|
|
1330
1372
|
chainIds: number[];
|
|
1331
1373
|
tokenFilter: 0 | 1;
|
|
@@ -1337,21 +1379,23 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1337
1379
|
}, {
|
|
1338
1380
|
result: {
|
|
1339
1381
|
value: {
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1382
|
+
timestamp: number;
|
|
1383
|
+
balances: {
|
|
1384
|
+
token: {
|
|
1385
|
+
chainId: number;
|
|
1386
|
+
address: string;
|
|
1387
|
+
};
|
|
1388
|
+
balance: string;
|
|
1389
|
+
}[];
|
|
1390
|
+
};
|
|
1346
1391
|
};
|
|
1347
1392
|
query: {
|
|
1348
1393
|
params: {
|
|
1349
|
-
|
|
1394
|
+
owner: string;
|
|
1350
1395
|
tokens: {
|
|
1351
1396
|
chainId: number;
|
|
1352
1397
|
address: string;
|
|
1353
1398
|
}[];
|
|
1354
|
-
owner: string;
|
|
1355
1399
|
usdMinAmount: string;
|
|
1356
1400
|
chainIds: number[];
|
|
1357
1401
|
tokenFilter: 0 | 1;
|
|
@@ -1770,21 +1814,23 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1770
1814
|
} | {
|
|
1771
1815
|
result: {
|
|
1772
1816
|
value: {
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1817
|
+
timestamp: number;
|
|
1818
|
+
balances: {
|
|
1819
|
+
token: {
|
|
1820
|
+
chainId: number;
|
|
1821
|
+
address: string;
|
|
1822
|
+
};
|
|
1823
|
+
balance: string;
|
|
1824
|
+
}[];
|
|
1825
|
+
};
|
|
1779
1826
|
};
|
|
1780
1827
|
query: {
|
|
1781
1828
|
params: {
|
|
1782
|
-
|
|
1829
|
+
owner: string;
|
|
1783
1830
|
tokens: {
|
|
1784
1831
|
chainId: number;
|
|
1785
1832
|
address: string;
|
|
1786
1833
|
}[];
|
|
1787
|
-
owner: string;
|
|
1788
1834
|
usdMinAmount: string;
|
|
1789
1835
|
chainIds: number[];
|
|
1790
1836
|
tokenFilter: 0 | 1;
|
|
@@ -1915,21 +1961,23 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1915
1961
|
} | {
|
|
1916
1962
|
result: {
|
|
1917
1963
|
value: {
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1964
|
+
timestamp: number;
|
|
1965
|
+
balances: {
|
|
1966
|
+
token: {
|
|
1967
|
+
chainId: number;
|
|
1968
|
+
address: string;
|
|
1969
|
+
};
|
|
1970
|
+
balance: string;
|
|
1971
|
+
}[];
|
|
1972
|
+
};
|
|
1924
1973
|
};
|
|
1925
1974
|
query: {
|
|
1926
1975
|
params: {
|
|
1927
|
-
|
|
1976
|
+
owner: string;
|
|
1928
1977
|
tokens: {
|
|
1929
1978
|
chainId: number;
|
|
1930
1979
|
address: string;
|
|
1931
1980
|
}[];
|
|
1932
|
-
owner: string;
|
|
1933
1981
|
usdMinAmount: string;
|
|
1934
1982
|
chainIds: number[];
|
|
1935
1983
|
tokenFilter: 0 | 1;
|
|
@@ -2062,21 +2110,23 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
2062
2110
|
} | {
|
|
2063
2111
|
result: {
|
|
2064
2112
|
value: {
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2113
|
+
timestamp: number;
|
|
2114
|
+
balances: {
|
|
2115
|
+
token: {
|
|
2116
|
+
chainId: number;
|
|
2117
|
+
address: string;
|
|
2118
|
+
};
|
|
2119
|
+
balance: string;
|
|
2120
|
+
}[];
|
|
2121
|
+
};
|
|
2071
2122
|
};
|
|
2072
2123
|
query: {
|
|
2073
2124
|
params: {
|
|
2074
|
-
|
|
2125
|
+
owner: string;
|
|
2075
2126
|
tokens: {
|
|
2076
2127
|
chainId: number;
|
|
2077
2128
|
address: string;
|
|
2078
2129
|
}[];
|
|
2079
|
-
owner: string;
|
|
2080
2130
|
usdMinAmount: string;
|
|
2081
2131
|
chainIds: number[];
|
|
2082
2132
|
tokenFilter: 0 | 1;
|
|
@@ -2172,10 +2222,7 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
2172
2222
|
})[];
|
|
2173
2223
|
};
|
|
2174
2224
|
status: "success" | "error";
|
|
2175
|
-
logs:
|
|
2176
|
-
level: import("../shared").LogLevel;
|
|
2177
|
-
log: string;
|
|
2178
|
-
}[];
|
|
2225
|
+
logs: string[];
|
|
2179
2226
|
}, {
|
|
2180
2227
|
result: {
|
|
2181
2228
|
timestamp: number;
|
|
@@ -2214,21 +2261,23 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
2214
2261
|
} | {
|
|
2215
2262
|
result: {
|
|
2216
2263
|
value: {
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2264
|
+
timestamp: number;
|
|
2265
|
+
balances: {
|
|
2266
|
+
token: {
|
|
2267
|
+
chainId: number;
|
|
2268
|
+
address: string;
|
|
2269
|
+
};
|
|
2270
|
+
balance: string;
|
|
2271
|
+
}[];
|
|
2272
|
+
};
|
|
2223
2273
|
};
|
|
2224
2274
|
query: {
|
|
2225
2275
|
params: {
|
|
2226
|
-
|
|
2276
|
+
owner: string;
|
|
2227
2277
|
tokens: {
|
|
2228
2278
|
chainId: number;
|
|
2229
2279
|
address: string;
|
|
2230
2280
|
}[];
|
|
2231
|
-
owner: string;
|
|
2232
2281
|
usdMinAmount: string;
|
|
2233
2282
|
chainIds: number[];
|
|
2234
2283
|
tokenFilter: 0 | 1;
|
|
@@ -2324,10 +2373,7 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
2324
2373
|
})[];
|
|
2325
2374
|
};
|
|
2326
2375
|
status: "success" | "error";
|
|
2327
|
-
logs:
|
|
2328
|
-
level: import("../shared").LogLevel;
|
|
2329
|
-
log: string;
|
|
2330
|
-
}[];
|
|
2376
|
+
logs: string[];
|
|
2331
2377
|
}>;
|
|
2332
2378
|
export declare const RelayerExecutionResultValidator: z.ZodObject<{
|
|
2333
2379
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|