@mimicprotocol/sdk 0.0.1-rc.10 → 0.0.1-rc.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/axia/constants.d.ts +4 -0
- package/dist/axia/constants.d.ts.map +1 -1
- package/dist/axia/constants.js +6 -1
- package/dist/axia/constants.js.map +1 -1
- package/dist/axia/validators.d.ts +263 -18
- package/dist/axia/validators.d.ts.map +1 -1
- package/dist/axia/validators.js +2 -1
- package/dist/axia/validators.js.map +1 -1
- package/dist/client/domains/ConfigsClient.d.ts +1 -1
- package/dist/client/domains/ConfigsClient.d.ts.map +1 -1
- package/dist/client/domains/ConfigsClient.js +2 -1
- package/dist/client/domains/ConfigsClient.js.map +1 -1
- package/dist/registry/validators.d.ts +18 -18
- package/dist/registry/validators.js +2 -2
- package/dist/registry/validators.js.map +1 -1
- package/dist/relayer/eip712Types.d.ts +4 -0
- package/dist/relayer/eip712Types.d.ts.map +1 -1
- package/dist/relayer/types.d.ts +2 -1
- package/dist/relayer/types.d.ts.map +1 -1
- package/dist/relayer/validators.d.ts +239 -35
- package/dist/relayer/validators.d.ts.map +1 -1
- package/dist/relayer/validators.js +5 -13
- package/dist/relayer/validators.js.map +1 -1
- package/dist/runner/validators.d.ts +19 -0
- package/dist/runner/validators.d.ts.map +1 -1
- package/dist/runner/validators.js +4 -0
- package/dist/runner/validators.js.map +1 -1
- package/dist/shared/codec/chains/evm.d.ts.map +1 -1
- package/dist/shared/codec/chains/evm.js +13 -0
- package/dist/shared/codec/chains/evm.js.map +1 -1
- package/dist/shared/codec/chains/svm.d.ts +1 -0
- package/dist/shared/codec/chains/svm.d.ts.map +1 -1
- package/dist/shared/codec/chains/svm.js +22 -2
- package/dist/shared/codec/chains/svm.js.map +1 -1
- package/dist/shared/codec/encoder.d.ts +67 -2
- package/dist/shared/codec/encoder.d.ts.map +1 -1
- package/dist/shared/codec/encoder.js +2 -8
- package/dist/shared/codec/encoder.js.map +1 -1
- package/dist/shared/eip712Types/index.d.ts +5 -0
- package/dist/shared/eip712Types/index.d.ts.map +1 -1
- package/dist/shared/eip712Types/index.js +10 -2
- package/dist/shared/eip712Types/index.js.map +1 -1
- package/dist/shared/types/intents.d.ts +4 -1
- package/dist/shared/types/intents.d.ts.map +1 -1
- package/dist/shared/utils/index.d.ts +1 -0
- package/dist/shared/utils/index.d.ts.map +1 -1
- package/dist/shared/utils/index.js +1 -0
- package/dist/shared/utils/index.js.map +1 -1
- package/dist/shared/utils/numbers.d.ts +7 -6
- package/dist/shared/utils/numbers.d.ts.map +1 -1
- package/dist/shared/utils/numbers.js +61 -22
- package/dist/shared/utils/numbers.js.map +1 -1
- package/dist/shared/utils/time.d.ts +11 -0
- package/dist/shared/utils/time.d.ts.map +1 -0
- package/dist/shared/utils/time.js +42 -0
- package/dist/shared/utils/time.js.map +1 -0
- package/dist/shared/utils/validations.d.ts +1 -0
- package/dist/shared/utils/validations.d.ts.map +1 -1
- package/dist/shared/utils/validations.js +12 -0
- package/dist/shared/utils/validations.js.map +1 -1
- package/dist/shared/validators/intents.d.ts +184 -0
- package/dist/shared/validators/intents.d.ts.map +1 -1
- package/dist/shared/validators/intents.js +12 -1
- package/dist/shared/validators/intents.js.map +1 -1
- package/dist/shared/validators/primitives.d.ts +2 -0
- package/dist/shared/validators/primitives.d.ts.map +1 -1
- package/dist/shared/validators/primitives.js +3 -1
- package/dist/shared/validators/primitives.js.map +1 -1
- package/dist/validator/ValidatorSigner.d.ts +8 -2
- package/dist/validator/ValidatorSigner.d.ts.map +1 -1
- package/dist/validator/ValidatorSigner.js +7 -4
- package/dist/validator/ValidatorSigner.js.map +1 -1
- package/dist/validator/eip712Types.js +1 -1
- package/dist/validator/eip712Types.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { ExecutionStatus, IntentLogLevel, IntentStatus, ProposalStatus } from './constants';
|
|
2
|
+
import { ExecutionResult, ExecutionStatus, IntentLogLevel, IntentStatus, ProposalStatus } from './constants';
|
|
3
3
|
export declare const IntentLogValidator: z.ZodObject<{
|
|
4
4
|
level: z.ZodNativeEnum<typeof IntentLogLevel>;
|
|
5
5
|
data: z.ZodString;
|
|
@@ -64,6 +64,18 @@ export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
64
64
|
token: string;
|
|
65
65
|
amount: string;
|
|
66
66
|
}>, "many">;
|
|
67
|
+
events: z.ZodArray<z.ZodObject<{
|
|
68
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
69
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
70
|
+
}, "strip", z.ZodTypeAny, {
|
|
71
|
+
data: string;
|
|
72
|
+
topic: string;
|
|
73
|
+
}, {
|
|
74
|
+
data: string;
|
|
75
|
+
topic: string;
|
|
76
|
+
}>, "many">;
|
|
77
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
78
|
+
minValidations: z.ZodNumber;
|
|
67
79
|
}, {
|
|
68
80
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
69
81
|
executionHash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -118,6 +130,7 @@ export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
118
130
|
}>, "strip", z.ZodTypeAny, {
|
|
119
131
|
data: string;
|
|
120
132
|
status: IntentStatus;
|
|
133
|
+
configSig: string;
|
|
121
134
|
op: import("../shared").OpType;
|
|
122
135
|
user: string;
|
|
123
136
|
settler: string;
|
|
@@ -127,6 +140,11 @@ export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
127
140
|
token: string;
|
|
128
141
|
amount: string;
|
|
129
142
|
}[];
|
|
143
|
+
events: {
|
|
144
|
+
data: string;
|
|
145
|
+
topic: string;
|
|
146
|
+
}[];
|
|
147
|
+
minValidations: number;
|
|
130
148
|
hash: string;
|
|
131
149
|
executionHash: string;
|
|
132
150
|
proposals: {
|
|
@@ -149,6 +167,7 @@ export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
149
167
|
}, {
|
|
150
168
|
data: string;
|
|
151
169
|
status: IntentStatus;
|
|
170
|
+
configSig: string;
|
|
152
171
|
op: import("../shared").OpType;
|
|
153
172
|
user: string;
|
|
154
173
|
settler: string;
|
|
@@ -158,6 +177,11 @@ export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
158
177
|
token: string;
|
|
159
178
|
amount: string;
|
|
160
179
|
}[];
|
|
180
|
+
events: {
|
|
181
|
+
data: string;
|
|
182
|
+
topic: string;
|
|
183
|
+
}[];
|
|
184
|
+
minValidations: number;
|
|
161
185
|
hash: string;
|
|
162
186
|
executionHash: string;
|
|
163
187
|
proposals: {
|
|
@@ -178,7 +202,7 @@ export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
178
202
|
createdAt: Date;
|
|
179
203
|
}[];
|
|
180
204
|
}>;
|
|
181
|
-
export declare const IntentQuoteRequestValidator: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
|
|
205
|
+
export declare const IntentQuoteRequestValidator: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
182
206
|
op: z.ZodNativeEnum<typeof import("../shared").OpType>;
|
|
183
207
|
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
184
208
|
settler: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -195,10 +219,25 @@ export declare const IntentQuoteRequestValidator: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
195
219
|
token: string;
|
|
196
220
|
amount: string;
|
|
197
221
|
}>, "many">;
|
|
222
|
+
events: z.ZodArray<z.ZodObject<{
|
|
223
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
224
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
225
|
+
}, "strip", z.ZodTypeAny, {
|
|
226
|
+
data: string;
|
|
227
|
+
topic: string;
|
|
228
|
+
}, {
|
|
229
|
+
data: string;
|
|
230
|
+
topic: string;
|
|
231
|
+
}>, "many">;
|
|
232
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
233
|
+
minValidations: z.ZodNumber;
|
|
198
234
|
}, {
|
|
235
|
+
validations: z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, "many">;
|
|
236
|
+
}>, {
|
|
199
237
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
200
238
|
}>, "strip", z.ZodTypeAny, {
|
|
201
239
|
data: string;
|
|
240
|
+
configSig: string;
|
|
202
241
|
op: import("../shared").OpType;
|
|
203
242
|
user: string;
|
|
204
243
|
settler: string;
|
|
@@ -208,9 +247,16 @@ export declare const IntentQuoteRequestValidator: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
208
247
|
token: string;
|
|
209
248
|
amount: string;
|
|
210
249
|
}[];
|
|
250
|
+
events: {
|
|
251
|
+
data: string;
|
|
252
|
+
topic: string;
|
|
253
|
+
}[];
|
|
254
|
+
minValidations: number;
|
|
255
|
+
validations: string[];
|
|
211
256
|
hash: string;
|
|
212
257
|
}, {
|
|
213
258
|
data: string;
|
|
259
|
+
configSig: string;
|
|
214
260
|
op: import("../shared").OpType;
|
|
215
261
|
user: string;
|
|
216
262
|
settler: string;
|
|
@@ -220,9 +266,16 @@ export declare const IntentQuoteRequestValidator: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
220
266
|
token: string;
|
|
221
267
|
amount: string;
|
|
222
268
|
}[];
|
|
269
|
+
events: {
|
|
270
|
+
data: string;
|
|
271
|
+
topic: string;
|
|
272
|
+
}[];
|
|
273
|
+
minValidations: number;
|
|
274
|
+
validations: string[];
|
|
223
275
|
hash: string;
|
|
224
276
|
}>, {
|
|
225
277
|
data: string;
|
|
278
|
+
configSig: string;
|
|
226
279
|
op: import("../shared").OpType;
|
|
227
280
|
user: string;
|
|
228
281
|
settler: string;
|
|
@@ -232,9 +285,16 @@ export declare const IntentQuoteRequestValidator: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
232
285
|
token: string;
|
|
233
286
|
amount: string;
|
|
234
287
|
}[];
|
|
288
|
+
events: {
|
|
289
|
+
data: string;
|
|
290
|
+
topic: string;
|
|
291
|
+
}[];
|
|
292
|
+
minValidations: number;
|
|
293
|
+
validations: string[];
|
|
235
294
|
hash: string;
|
|
236
295
|
}, {
|
|
237
296
|
data: string;
|
|
297
|
+
configSig: string;
|
|
238
298
|
op: import("../shared").OpType;
|
|
239
299
|
user: string;
|
|
240
300
|
settler: string;
|
|
@@ -244,9 +304,16 @@ export declare const IntentQuoteRequestValidator: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
244
304
|
token: string;
|
|
245
305
|
amount: string;
|
|
246
306
|
}[];
|
|
307
|
+
events: {
|
|
308
|
+
data: string;
|
|
309
|
+
topic: string;
|
|
310
|
+
}[];
|
|
311
|
+
minValidations: number;
|
|
312
|
+
validations: string[];
|
|
247
313
|
hash: string;
|
|
248
314
|
}>, {
|
|
249
315
|
data: string;
|
|
316
|
+
configSig: string;
|
|
250
317
|
op: import("../shared").OpType;
|
|
251
318
|
user: string;
|
|
252
319
|
settler: string;
|
|
@@ -256,9 +323,16 @@ export declare const IntentQuoteRequestValidator: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
256
323
|
token: string;
|
|
257
324
|
amount: string;
|
|
258
325
|
}[];
|
|
326
|
+
events: {
|
|
327
|
+
data: string;
|
|
328
|
+
topic: string;
|
|
329
|
+
}[];
|
|
330
|
+
minValidations: number;
|
|
331
|
+
validations: string[];
|
|
259
332
|
hash: string;
|
|
260
333
|
}, {
|
|
261
334
|
data: string;
|
|
335
|
+
configSig: string;
|
|
262
336
|
op: import("../shared").OpType;
|
|
263
337
|
user: string;
|
|
264
338
|
settler: string;
|
|
@@ -268,6 +342,12 @@ export declare const IntentQuoteRequestValidator: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
268
342
|
token: string;
|
|
269
343
|
amount: string;
|
|
270
344
|
}[];
|
|
345
|
+
events: {
|
|
346
|
+
data: string;
|
|
347
|
+
topic: string;
|
|
348
|
+
}[];
|
|
349
|
+
minValidations: number;
|
|
350
|
+
validations: string[];
|
|
271
351
|
hash: string;
|
|
272
352
|
}>;
|
|
273
353
|
export declare const IntentQuoteValidator: z.ZodObject<{
|
|
@@ -339,6 +419,18 @@ export declare const AxiaIntentsValidator: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
339
419
|
token: string;
|
|
340
420
|
amount: string;
|
|
341
421
|
}>, "many">;
|
|
422
|
+
events: z.ZodArray<z.ZodObject<{
|
|
423
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
424
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
425
|
+
}, "strip", z.ZodTypeAny, {
|
|
426
|
+
data: string;
|
|
427
|
+
topic: string;
|
|
428
|
+
}, {
|
|
429
|
+
data: string;
|
|
430
|
+
topic: string;
|
|
431
|
+
}>, "many">;
|
|
432
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
433
|
+
minValidations: z.ZodNumber;
|
|
342
434
|
}, {
|
|
343
435
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
344
436
|
executionHash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -393,6 +485,7 @@ export declare const AxiaIntentsValidator: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
393
485
|
}>, "strip", z.ZodTypeAny, {
|
|
394
486
|
data: string;
|
|
395
487
|
status: IntentStatus;
|
|
488
|
+
configSig: string;
|
|
396
489
|
op: import("../shared").OpType;
|
|
397
490
|
user: string;
|
|
398
491
|
settler: string;
|
|
@@ -402,6 +495,11 @@ export declare const AxiaIntentsValidator: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
402
495
|
token: string;
|
|
403
496
|
amount: string;
|
|
404
497
|
}[];
|
|
498
|
+
events: {
|
|
499
|
+
data: string;
|
|
500
|
+
topic: string;
|
|
501
|
+
}[];
|
|
502
|
+
minValidations: number;
|
|
405
503
|
hash: string;
|
|
406
504
|
executionHash: string;
|
|
407
505
|
proposals: {
|
|
@@ -424,6 +522,7 @@ export declare const AxiaIntentsValidator: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
424
522
|
}, {
|
|
425
523
|
data: string;
|
|
426
524
|
status: IntentStatus;
|
|
525
|
+
configSig: string;
|
|
427
526
|
op: import("../shared").OpType;
|
|
428
527
|
user: string;
|
|
429
528
|
settler: string;
|
|
@@ -433,6 +532,11 @@ export declare const AxiaIntentsValidator: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
433
532
|
token: string;
|
|
434
533
|
amount: string;
|
|
435
534
|
}[];
|
|
535
|
+
events: {
|
|
536
|
+
data: string;
|
|
537
|
+
topic: string;
|
|
538
|
+
}[];
|
|
539
|
+
minValidations: number;
|
|
436
540
|
hash: string;
|
|
437
541
|
executionHash: string;
|
|
438
542
|
proposals: {
|
|
@@ -496,10 +600,23 @@ export declare const ExecutionIntentValidator: z.ZodObject<z.objectUtil.extendSh
|
|
|
496
600
|
token: string;
|
|
497
601
|
amount: string;
|
|
498
602
|
}>, "many">;
|
|
603
|
+
events: z.ZodArray<z.ZodObject<{
|
|
604
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
605
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
606
|
+
}, "strip", z.ZodTypeAny, {
|
|
607
|
+
data: string;
|
|
608
|
+
topic: string;
|
|
609
|
+
}, {
|
|
610
|
+
data: string;
|
|
611
|
+
topic: string;
|
|
612
|
+
}>, "many">;
|
|
613
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
614
|
+
minValidations: z.ZodNumber;
|
|
499
615
|
}, {
|
|
500
616
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
501
617
|
}>, "strip", z.ZodTypeAny, {
|
|
502
618
|
data: string;
|
|
619
|
+
configSig: string;
|
|
503
620
|
op: import("../shared").OpType;
|
|
504
621
|
user: string;
|
|
505
622
|
settler: string;
|
|
@@ -509,9 +626,15 @@ export declare const ExecutionIntentValidator: z.ZodObject<z.objectUtil.extendSh
|
|
|
509
626
|
token: string;
|
|
510
627
|
amount: string;
|
|
511
628
|
}[];
|
|
629
|
+
events: {
|
|
630
|
+
data: string;
|
|
631
|
+
topic: string;
|
|
632
|
+
}[];
|
|
633
|
+
minValidations: number;
|
|
512
634
|
hash: string;
|
|
513
635
|
}, {
|
|
514
636
|
data: string;
|
|
637
|
+
configSig: string;
|
|
515
638
|
op: import("../shared").OpType;
|
|
516
639
|
user: string;
|
|
517
640
|
settler: string;
|
|
@@ -521,6 +644,11 @@ export declare const ExecutionIntentValidator: z.ZodObject<z.objectUtil.extendSh
|
|
|
521
644
|
token: string;
|
|
522
645
|
amount: string;
|
|
523
646
|
}[];
|
|
647
|
+
events: {
|
|
648
|
+
data: string;
|
|
649
|
+
topic: string;
|
|
650
|
+
}[];
|
|
651
|
+
minValidations: number;
|
|
524
652
|
hash: string;
|
|
525
653
|
}>;
|
|
526
654
|
export declare const ExecutionsGetRequestValidator: z.ZodObject<{
|
|
@@ -914,10 +1042,23 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
914
1042
|
token: string;
|
|
915
1043
|
amount: string;
|
|
916
1044
|
}>, "many">;
|
|
1045
|
+
events: z.ZodArray<z.ZodObject<{
|
|
1046
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1047
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1048
|
+
}, "strip", z.ZodTypeAny, {
|
|
1049
|
+
data: string;
|
|
1050
|
+
topic: string;
|
|
1051
|
+
}, {
|
|
1052
|
+
data: string;
|
|
1053
|
+
topic: string;
|
|
1054
|
+
}>, "many">;
|
|
1055
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1056
|
+
minValidations: z.ZodNumber;
|
|
917
1057
|
}, {
|
|
918
1058
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
919
1059
|
}>, "strip", z.ZodTypeAny, {
|
|
920
1060
|
data: string;
|
|
1061
|
+
configSig: string;
|
|
921
1062
|
op: import("../shared").OpType;
|
|
922
1063
|
user: string;
|
|
923
1064
|
settler: string;
|
|
@@ -927,9 +1068,15 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
927
1068
|
token: string;
|
|
928
1069
|
amount: string;
|
|
929
1070
|
}[];
|
|
1071
|
+
events: {
|
|
1072
|
+
data: string;
|
|
1073
|
+
topic: string;
|
|
1074
|
+
}[];
|
|
1075
|
+
minValidations: number;
|
|
930
1076
|
hash: string;
|
|
931
1077
|
}, {
|
|
932
1078
|
data: string;
|
|
1079
|
+
configSig: string;
|
|
933
1080
|
op: import("../shared").OpType;
|
|
934
1081
|
user: string;
|
|
935
1082
|
settler: string;
|
|
@@ -939,10 +1086,17 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
939
1086
|
token: string;
|
|
940
1087
|
amount: string;
|
|
941
1088
|
}[];
|
|
1089
|
+
events: {
|
|
1090
|
+
data: string;
|
|
1091
|
+
topic: string;
|
|
1092
|
+
}[];
|
|
1093
|
+
minValidations: number;
|
|
942
1094
|
hash: string;
|
|
943
1095
|
}>, "many">;
|
|
944
1096
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1097
|
+
result: z.ZodNativeEnum<typeof ExecutionResult>;
|
|
945
1098
|
}>, "strip", z.ZodTypeAny, {
|
|
1099
|
+
result: ExecutionResult;
|
|
946
1100
|
timestamp: number;
|
|
947
1101
|
configSig: string;
|
|
948
1102
|
triggerType: import("../shared").TriggerType;
|
|
@@ -1014,6 +1168,7 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
1014
1168
|
})[];
|
|
1015
1169
|
outputs: {
|
|
1016
1170
|
data: string;
|
|
1171
|
+
configSig: string;
|
|
1017
1172
|
op: import("../shared").OpType;
|
|
1018
1173
|
user: string;
|
|
1019
1174
|
settler: string;
|
|
@@ -1023,9 +1178,15 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
1023
1178
|
token: string;
|
|
1024
1179
|
amount: string;
|
|
1025
1180
|
}[];
|
|
1181
|
+
events: {
|
|
1182
|
+
data: string;
|
|
1183
|
+
topic: string;
|
|
1184
|
+
}[];
|
|
1185
|
+
minValidations: number;
|
|
1026
1186
|
hash: string;
|
|
1027
1187
|
}[];
|
|
1028
1188
|
}, {
|
|
1189
|
+
result: ExecutionResult;
|
|
1029
1190
|
timestamp: number;
|
|
1030
1191
|
configSig: string;
|
|
1031
1192
|
triggerType: import("../shared").TriggerType;
|
|
@@ -1097,6 +1258,7 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
1097
1258
|
})[];
|
|
1098
1259
|
outputs: {
|
|
1099
1260
|
data: string;
|
|
1261
|
+
configSig: string;
|
|
1100
1262
|
op: import("../shared").OpType;
|
|
1101
1263
|
user: string;
|
|
1102
1264
|
settler: string;
|
|
@@ -1106,6 +1268,11 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
1106
1268
|
token: string;
|
|
1107
1269
|
amount: string;
|
|
1108
1270
|
}[];
|
|
1271
|
+
events: {
|
|
1272
|
+
data: string;
|
|
1273
|
+
topic: string;
|
|
1274
|
+
}[];
|
|
1275
|
+
minValidations: number;
|
|
1109
1276
|
hash: string;
|
|
1110
1277
|
}[];
|
|
1111
1278
|
}>;
|
|
@@ -1513,10 +1680,23 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1513
1680
|
token: string;
|
|
1514
1681
|
amount: string;
|
|
1515
1682
|
}>, "many">;
|
|
1683
|
+
events: z.ZodArray<z.ZodObject<{
|
|
1684
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1685
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1686
|
+
}, "strip", z.ZodTypeAny, {
|
|
1687
|
+
data: string;
|
|
1688
|
+
topic: string;
|
|
1689
|
+
}, {
|
|
1690
|
+
data: string;
|
|
1691
|
+
topic: string;
|
|
1692
|
+
}>, "many">;
|
|
1693
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1694
|
+
minValidations: z.ZodNumber;
|
|
1516
1695
|
}, {
|
|
1517
1696
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1518
1697
|
}>, "strip", z.ZodTypeAny, {
|
|
1519
1698
|
data: string;
|
|
1699
|
+
configSig: string;
|
|
1520
1700
|
op: import("../shared").OpType;
|
|
1521
1701
|
user: string;
|
|
1522
1702
|
settler: string;
|
|
@@ -1526,9 +1706,15 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1526
1706
|
token: string;
|
|
1527
1707
|
amount: string;
|
|
1528
1708
|
}[];
|
|
1709
|
+
events: {
|
|
1710
|
+
data: string;
|
|
1711
|
+
topic: string;
|
|
1712
|
+
}[];
|
|
1713
|
+
minValidations: number;
|
|
1529
1714
|
hash: string;
|
|
1530
1715
|
}, {
|
|
1531
1716
|
data: string;
|
|
1717
|
+
configSig: string;
|
|
1532
1718
|
op: import("../shared").OpType;
|
|
1533
1719
|
user: string;
|
|
1534
1720
|
settler: string;
|
|
@@ -1538,9 +1724,15 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1538
1724
|
token: string;
|
|
1539
1725
|
amount: string;
|
|
1540
1726
|
}[];
|
|
1727
|
+
events: {
|
|
1728
|
+
data: string;
|
|
1729
|
+
topic: string;
|
|
1730
|
+
}[];
|
|
1731
|
+
minValidations: number;
|
|
1541
1732
|
hash: string;
|
|
1542
1733
|
}>, "many">;
|
|
1543
1734
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1735
|
+
result: z.ZodNativeEnum<typeof ExecutionResult>;
|
|
1544
1736
|
}>, {
|
|
1545
1737
|
relayer: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1546
1738
|
status: z.ZodNativeEnum<typeof ExecutionStatus>;
|
|
@@ -1583,6 +1775,7 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1583
1775
|
signature: string;
|
|
1584
1776
|
}>, "many">>;
|
|
1585
1777
|
}>, "strip", z.ZodTypeAny, {
|
|
1778
|
+
result: ExecutionResult;
|
|
1586
1779
|
timestamp: number;
|
|
1587
1780
|
status: ExecutionStatus;
|
|
1588
1781
|
configSig: string;
|
|
@@ -1652,6 +1845,7 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1652
1845
|
})[];
|
|
1653
1846
|
outputs: {
|
|
1654
1847
|
data: string;
|
|
1848
|
+
configSig: string;
|
|
1655
1849
|
op: import("../shared").OpType;
|
|
1656
1850
|
user: string;
|
|
1657
1851
|
settler: string;
|
|
@@ -1661,9 +1855,18 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1661
1855
|
token: string;
|
|
1662
1856
|
amount: string;
|
|
1663
1857
|
}[];
|
|
1858
|
+
events: {
|
|
1859
|
+
data: string;
|
|
1860
|
+
topic: string;
|
|
1861
|
+
}[];
|
|
1862
|
+
minValidations: number;
|
|
1664
1863
|
hash: string;
|
|
1665
1864
|
}[];
|
|
1666
1865
|
relayer: string;
|
|
1866
|
+
validations?: {
|
|
1867
|
+
succeeded: boolean;
|
|
1868
|
+
signature: string;
|
|
1869
|
+
}[] | undefined;
|
|
1667
1870
|
logs?: string[] | undefined;
|
|
1668
1871
|
errorLogs?: string[] | undefined;
|
|
1669
1872
|
fee?: {
|
|
@@ -1675,11 +1878,8 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1675
1878
|
protocol: number;
|
|
1676
1879
|
total: number;
|
|
1677
1880
|
} | undefined;
|
|
1678
|
-
validations?: {
|
|
1679
|
-
succeeded: boolean;
|
|
1680
|
-
signature: string;
|
|
1681
|
-
}[] | undefined;
|
|
1682
1881
|
}, {
|
|
1882
|
+
result: ExecutionResult;
|
|
1683
1883
|
timestamp: number;
|
|
1684
1884
|
status: ExecutionStatus;
|
|
1685
1885
|
configSig: string;
|
|
@@ -1749,6 +1949,7 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1749
1949
|
})[];
|
|
1750
1950
|
outputs: {
|
|
1751
1951
|
data: string;
|
|
1952
|
+
configSig: string;
|
|
1752
1953
|
op: import("../shared").OpType;
|
|
1753
1954
|
user: string;
|
|
1754
1955
|
settler: string;
|
|
@@ -1758,9 +1959,18 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1758
1959
|
token: string;
|
|
1759
1960
|
amount: string;
|
|
1760
1961
|
}[];
|
|
1962
|
+
events: {
|
|
1963
|
+
data: string;
|
|
1964
|
+
topic: string;
|
|
1965
|
+
}[];
|
|
1966
|
+
minValidations: number;
|
|
1761
1967
|
hash: string;
|
|
1762
1968
|
}[];
|
|
1763
1969
|
relayer: string;
|
|
1970
|
+
validations?: {
|
|
1971
|
+
succeeded: boolean;
|
|
1972
|
+
signature: string;
|
|
1973
|
+
}[] | undefined;
|
|
1764
1974
|
logs?: string[] | undefined;
|
|
1765
1975
|
errorLogs?: string[] | undefined;
|
|
1766
1976
|
fee?: {
|
|
@@ -1772,10 +1982,6 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1772
1982
|
protocol: number;
|
|
1773
1983
|
total: number;
|
|
1774
1984
|
} | undefined;
|
|
1775
|
-
validations?: {
|
|
1776
|
-
succeeded: boolean;
|
|
1777
|
-
signature: string;
|
|
1778
|
-
}[] | undefined;
|
|
1779
1985
|
}>;
|
|
1780
1986
|
export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1781
1987
|
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -2146,10 +2352,23 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2146
2352
|
token: string;
|
|
2147
2353
|
amount: string;
|
|
2148
2354
|
}>, "many">;
|
|
2355
|
+
events: z.ZodArray<z.ZodObject<{
|
|
2356
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2357
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2358
|
+
}, "strip", z.ZodTypeAny, {
|
|
2359
|
+
data: string;
|
|
2360
|
+
topic: string;
|
|
2361
|
+
}, {
|
|
2362
|
+
data: string;
|
|
2363
|
+
topic: string;
|
|
2364
|
+
}>, "many">;
|
|
2365
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2366
|
+
minValidations: z.ZodNumber;
|
|
2149
2367
|
}, {
|
|
2150
2368
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2151
2369
|
}>, "strip", z.ZodTypeAny, {
|
|
2152
2370
|
data: string;
|
|
2371
|
+
configSig: string;
|
|
2153
2372
|
op: import("../shared").OpType;
|
|
2154
2373
|
user: string;
|
|
2155
2374
|
settler: string;
|
|
@@ -2159,9 +2378,15 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2159
2378
|
token: string;
|
|
2160
2379
|
amount: string;
|
|
2161
2380
|
}[];
|
|
2381
|
+
events: {
|
|
2382
|
+
data: string;
|
|
2383
|
+
topic: string;
|
|
2384
|
+
}[];
|
|
2385
|
+
minValidations: number;
|
|
2162
2386
|
hash: string;
|
|
2163
2387
|
}, {
|
|
2164
2388
|
data: string;
|
|
2389
|
+
configSig: string;
|
|
2165
2390
|
op: import("../shared").OpType;
|
|
2166
2391
|
user: string;
|
|
2167
2392
|
settler: string;
|
|
@@ -2171,9 +2396,15 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2171
2396
|
token: string;
|
|
2172
2397
|
amount: string;
|
|
2173
2398
|
}[];
|
|
2399
|
+
events: {
|
|
2400
|
+
data: string;
|
|
2401
|
+
topic: string;
|
|
2402
|
+
}[];
|
|
2403
|
+
minValidations: number;
|
|
2174
2404
|
hash: string;
|
|
2175
2405
|
}>, "many">;
|
|
2176
2406
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2407
|
+
result: z.ZodNativeEnum<typeof ExecutionResult>;
|
|
2177
2408
|
}>, {
|
|
2178
2409
|
relayer: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2179
2410
|
status: z.ZodNativeEnum<typeof ExecutionStatus>;
|
|
@@ -2216,6 +2447,7 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2216
2447
|
signature: string;
|
|
2217
2448
|
}>, "many">>;
|
|
2218
2449
|
}>, "strip", z.ZodTypeAny, {
|
|
2450
|
+
result: ExecutionResult;
|
|
2219
2451
|
timestamp: number;
|
|
2220
2452
|
status: ExecutionStatus;
|
|
2221
2453
|
configSig: string;
|
|
@@ -2285,6 +2517,7 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2285
2517
|
})[];
|
|
2286
2518
|
outputs: {
|
|
2287
2519
|
data: string;
|
|
2520
|
+
configSig: string;
|
|
2288
2521
|
op: import("../shared").OpType;
|
|
2289
2522
|
user: string;
|
|
2290
2523
|
settler: string;
|
|
@@ -2294,9 +2527,18 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2294
2527
|
token: string;
|
|
2295
2528
|
amount: string;
|
|
2296
2529
|
}[];
|
|
2530
|
+
events: {
|
|
2531
|
+
data: string;
|
|
2532
|
+
topic: string;
|
|
2533
|
+
}[];
|
|
2534
|
+
minValidations: number;
|
|
2297
2535
|
hash: string;
|
|
2298
2536
|
}[];
|
|
2299
2537
|
relayer: string;
|
|
2538
|
+
validations?: {
|
|
2539
|
+
succeeded: boolean;
|
|
2540
|
+
signature: string;
|
|
2541
|
+
}[] | undefined;
|
|
2300
2542
|
logs?: string[] | undefined;
|
|
2301
2543
|
errorLogs?: string[] | undefined;
|
|
2302
2544
|
fee?: {
|
|
@@ -2308,11 +2550,8 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2308
2550
|
protocol: number;
|
|
2309
2551
|
total: number;
|
|
2310
2552
|
} | undefined;
|
|
2311
|
-
validations?: {
|
|
2312
|
-
succeeded: boolean;
|
|
2313
|
-
signature: string;
|
|
2314
|
-
}[] | undefined;
|
|
2315
2553
|
}, {
|
|
2554
|
+
result: ExecutionResult;
|
|
2316
2555
|
timestamp: number;
|
|
2317
2556
|
status: ExecutionStatus;
|
|
2318
2557
|
configSig: string;
|
|
@@ -2382,6 +2621,7 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2382
2621
|
})[];
|
|
2383
2622
|
outputs: {
|
|
2384
2623
|
data: string;
|
|
2624
|
+
configSig: string;
|
|
2385
2625
|
op: import("../shared").OpType;
|
|
2386
2626
|
user: string;
|
|
2387
2627
|
settler: string;
|
|
@@ -2391,9 +2631,18 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2391
2631
|
token: string;
|
|
2392
2632
|
amount: string;
|
|
2393
2633
|
}[];
|
|
2634
|
+
events: {
|
|
2635
|
+
data: string;
|
|
2636
|
+
topic: string;
|
|
2637
|
+
}[];
|
|
2638
|
+
minValidations: number;
|
|
2394
2639
|
hash: string;
|
|
2395
2640
|
}[];
|
|
2396
2641
|
relayer: string;
|
|
2642
|
+
validations?: {
|
|
2643
|
+
succeeded: boolean;
|
|
2644
|
+
signature: string;
|
|
2645
|
+
}[] | undefined;
|
|
2397
2646
|
logs?: string[] | undefined;
|
|
2398
2647
|
errorLogs?: string[] | undefined;
|
|
2399
2648
|
fee?: {
|
|
@@ -2405,10 +2654,6 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2405
2654
|
protocol: number;
|
|
2406
2655
|
total: number;
|
|
2407
2656
|
} | undefined;
|
|
2408
|
-
validations?: {
|
|
2409
|
-
succeeded: boolean;
|
|
2410
|
-
signature: string;
|
|
2411
|
-
}[] | undefined;
|
|
2412
2657
|
}>, "many">;
|
|
2413
2658
|
export declare const ExecutionValidationRequestValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
2414
2659
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validators.d.ts","sourceRoot":"","sources":["../../src/axia/validators.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"validators.d.ts","sourceRoot":"","sources":["../../src/axia/validators.ts"],"names":[],"mappings":"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"}
|