@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
|
@@ -366,6 +366,18 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
366
366
|
token: string;
|
|
367
367
|
amount: string;
|
|
368
368
|
}>, "many">;
|
|
369
|
+
events: z.ZodArray<z.ZodObject<{
|
|
370
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
371
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
372
|
+
}, "strip", z.ZodTypeAny, {
|
|
373
|
+
data: string;
|
|
374
|
+
topic: string;
|
|
375
|
+
}, {
|
|
376
|
+
data: string;
|
|
377
|
+
topic: string;
|
|
378
|
+
}>, "many">;
|
|
379
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
380
|
+
minValidations: z.ZodNumber;
|
|
369
381
|
}, {
|
|
370
382
|
sourceChain: z.ZodEffects<z.ZodNumber, number, number>;
|
|
371
383
|
destinationChain: z.ZodEffects<z.ZodNumber, number, number>;
|
|
@@ -392,7 +404,7 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
392
404
|
minAmount: string;
|
|
393
405
|
recipient: string;
|
|
394
406
|
}>, "many">;
|
|
395
|
-
}>, "data">, "strip", z.ZodTypeAny, {
|
|
407
|
+
}>, "data" | "configSig" | "minValidations">, "strip", z.ZodTypeAny, {
|
|
396
408
|
op: import("../shared").OpType;
|
|
397
409
|
user: string;
|
|
398
410
|
settler: string;
|
|
@@ -402,6 +414,10 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
402
414
|
token: string;
|
|
403
415
|
amount: string;
|
|
404
416
|
}[];
|
|
417
|
+
events: {
|
|
418
|
+
data: string;
|
|
419
|
+
topic: string;
|
|
420
|
+
}[];
|
|
405
421
|
sourceChain: number;
|
|
406
422
|
destinationChain: number;
|
|
407
423
|
tokensIn: {
|
|
@@ -423,6 +439,10 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
423
439
|
token: string;
|
|
424
440
|
amount: string;
|
|
425
441
|
}[];
|
|
442
|
+
events: {
|
|
443
|
+
data: string;
|
|
444
|
+
topic: string;
|
|
445
|
+
}[];
|
|
426
446
|
sourceChain: number;
|
|
427
447
|
destinationChain: number;
|
|
428
448
|
tokensIn: {
|
|
@@ -451,6 +471,18 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
451
471
|
token: string;
|
|
452
472
|
amount: string;
|
|
453
473
|
}>, "many">;
|
|
474
|
+
events: z.ZodArray<z.ZodObject<{
|
|
475
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
476
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
477
|
+
}, "strip", z.ZodTypeAny, {
|
|
478
|
+
data: string;
|
|
479
|
+
topic: string;
|
|
480
|
+
}, {
|
|
481
|
+
data: string;
|
|
482
|
+
topic: string;
|
|
483
|
+
}>, "many">;
|
|
484
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
485
|
+
minValidations: z.ZodNumber;
|
|
454
486
|
}, {
|
|
455
487
|
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
456
488
|
transfers: z.ZodArray<z.ZodObject<{
|
|
@@ -466,7 +498,7 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
466
498
|
amount: string;
|
|
467
499
|
recipient: string;
|
|
468
500
|
}>, "many">;
|
|
469
|
-
}>, "data">, "strip", z.ZodTypeAny, {
|
|
501
|
+
}>, "data" | "configSig" | "minValidations">, "strip", z.ZodTypeAny, {
|
|
470
502
|
chainId: number;
|
|
471
503
|
op: import("../shared").OpType;
|
|
472
504
|
user: string;
|
|
@@ -477,6 +509,10 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
477
509
|
token: string;
|
|
478
510
|
amount: string;
|
|
479
511
|
}[];
|
|
512
|
+
events: {
|
|
513
|
+
data: string;
|
|
514
|
+
topic: string;
|
|
515
|
+
}[];
|
|
480
516
|
transfers: {
|
|
481
517
|
token: string;
|
|
482
518
|
amount: string;
|
|
@@ -493,6 +529,10 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
493
529
|
token: string;
|
|
494
530
|
amount: string;
|
|
495
531
|
}[];
|
|
532
|
+
events: {
|
|
533
|
+
data: string;
|
|
534
|
+
topic: string;
|
|
535
|
+
}[];
|
|
496
536
|
transfers: {
|
|
497
537
|
token: string;
|
|
498
538
|
amount: string;
|
|
@@ -515,6 +555,18 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
515
555
|
token: string;
|
|
516
556
|
amount: string;
|
|
517
557
|
}>, "many">;
|
|
558
|
+
events: z.ZodArray<z.ZodObject<{
|
|
559
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
560
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
561
|
+
}, "strip", z.ZodTypeAny, {
|
|
562
|
+
data: string;
|
|
563
|
+
topic: string;
|
|
564
|
+
}, {
|
|
565
|
+
data: string;
|
|
566
|
+
topic: string;
|
|
567
|
+
}>, "many">;
|
|
568
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
569
|
+
minValidations: z.ZodNumber;
|
|
518
570
|
}, {
|
|
519
571
|
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
520
572
|
calls: z.ZodArray<z.ZodObject<{
|
|
@@ -530,7 +582,7 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
530
582
|
value: string;
|
|
531
583
|
target: string;
|
|
532
584
|
}>, "many">;
|
|
533
|
-
}>, "data">, "strip", z.ZodTypeAny, {
|
|
585
|
+
}>, "data" | "configSig" | "minValidations">, "strip", z.ZodTypeAny, {
|
|
534
586
|
chainId: number;
|
|
535
587
|
op: import("../shared").OpType;
|
|
536
588
|
user: string;
|
|
@@ -541,6 +593,10 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
541
593
|
token: string;
|
|
542
594
|
amount: string;
|
|
543
595
|
}[];
|
|
596
|
+
events: {
|
|
597
|
+
data: string;
|
|
598
|
+
topic: string;
|
|
599
|
+
}[];
|
|
544
600
|
calls: {
|
|
545
601
|
data: string;
|
|
546
602
|
value: string;
|
|
@@ -557,6 +613,10 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
557
613
|
token: string;
|
|
558
614
|
amount: string;
|
|
559
615
|
}[];
|
|
616
|
+
events: {
|
|
617
|
+
data: string;
|
|
618
|
+
topic: string;
|
|
619
|
+
}[];
|
|
560
620
|
calls: {
|
|
561
621
|
data: string;
|
|
562
622
|
value: string;
|
|
@@ -634,6 +694,10 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
634
694
|
token: string;
|
|
635
695
|
amount: string;
|
|
636
696
|
}[];
|
|
697
|
+
events: {
|
|
698
|
+
data: string;
|
|
699
|
+
topic: string;
|
|
700
|
+
}[];
|
|
637
701
|
sourceChain: number;
|
|
638
702
|
destinationChain: number;
|
|
639
703
|
tokensIn: {
|
|
@@ -656,6 +720,10 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
656
720
|
token: string;
|
|
657
721
|
amount: string;
|
|
658
722
|
}[];
|
|
723
|
+
events: {
|
|
724
|
+
data: string;
|
|
725
|
+
topic: string;
|
|
726
|
+
}[];
|
|
659
727
|
transfers: {
|
|
660
728
|
token: string;
|
|
661
729
|
amount: string;
|
|
@@ -672,6 +740,10 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
672
740
|
token: string;
|
|
673
741
|
amount: string;
|
|
674
742
|
}[];
|
|
743
|
+
events: {
|
|
744
|
+
data: string;
|
|
745
|
+
topic: string;
|
|
746
|
+
}[];
|
|
675
747
|
calls: {
|
|
676
748
|
data: string;
|
|
677
749
|
value: string;
|
|
@@ -749,6 +821,10 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
749
821
|
token: string;
|
|
750
822
|
amount: string;
|
|
751
823
|
}[];
|
|
824
|
+
events: {
|
|
825
|
+
data: string;
|
|
826
|
+
topic: string;
|
|
827
|
+
}[];
|
|
752
828
|
sourceChain: number;
|
|
753
829
|
destinationChain: number;
|
|
754
830
|
tokensIn: {
|
|
@@ -771,6 +847,10 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
771
847
|
token: string;
|
|
772
848
|
amount: string;
|
|
773
849
|
}[];
|
|
850
|
+
events: {
|
|
851
|
+
data: string;
|
|
852
|
+
topic: string;
|
|
853
|
+
}[];
|
|
774
854
|
transfers: {
|
|
775
855
|
token: string;
|
|
776
856
|
amount: string;
|
|
@@ -787,6 +867,10 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
787
867
|
token: string;
|
|
788
868
|
amount: string;
|
|
789
869
|
}[];
|
|
870
|
+
events: {
|
|
871
|
+
data: string;
|
|
872
|
+
topic: string;
|
|
873
|
+
}[];
|
|
790
874
|
calls: {
|
|
791
875
|
data: string;
|
|
792
876
|
value: string;
|
|
@@ -794,8 +878,8 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
794
878
|
}[];
|
|
795
879
|
})[];
|
|
796
880
|
}>;
|
|
797
|
-
export declare const RunnerExecutionResultValidator: z.
|
|
798
|
-
status: z.
|
|
881
|
+
export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
882
|
+
status: z.ZodEnum<["success", "error"]>;
|
|
799
883
|
logs: z.ZodArray<z.ZodObject<{
|
|
800
884
|
level: z.ZodNativeEnum<typeof import("../shared").LogLevel>;
|
|
801
885
|
log: z.ZodString;
|
|
@@ -1160,6 +1244,18 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1160
1244
|
token: string;
|
|
1161
1245
|
amount: string;
|
|
1162
1246
|
}>, "many">;
|
|
1247
|
+
events: z.ZodArray<z.ZodObject<{
|
|
1248
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1249
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1250
|
+
}, "strip", z.ZodTypeAny, {
|
|
1251
|
+
data: string;
|
|
1252
|
+
topic: string;
|
|
1253
|
+
}, {
|
|
1254
|
+
data: string;
|
|
1255
|
+
topic: string;
|
|
1256
|
+
}>, "many">;
|
|
1257
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1258
|
+
minValidations: z.ZodNumber;
|
|
1163
1259
|
}, {
|
|
1164
1260
|
sourceChain: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1165
1261
|
destinationChain: z.ZodEffects<z.ZodNumber, number, number>;
|
|
@@ -1186,7 +1282,7 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1186
1282
|
minAmount: string;
|
|
1187
1283
|
recipient: string;
|
|
1188
1284
|
}>, "many">;
|
|
1189
|
-
}>, "data">, "strip", z.ZodTypeAny, {
|
|
1285
|
+
}>, "data" | "configSig" | "minValidations">, "strip", z.ZodTypeAny, {
|
|
1190
1286
|
op: import("../shared").OpType;
|
|
1191
1287
|
user: string;
|
|
1192
1288
|
settler: string;
|
|
@@ -1196,6 +1292,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1196
1292
|
token: string;
|
|
1197
1293
|
amount: string;
|
|
1198
1294
|
}[];
|
|
1295
|
+
events: {
|
|
1296
|
+
data: string;
|
|
1297
|
+
topic: string;
|
|
1298
|
+
}[];
|
|
1199
1299
|
sourceChain: number;
|
|
1200
1300
|
destinationChain: number;
|
|
1201
1301
|
tokensIn: {
|
|
@@ -1217,6 +1317,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1217
1317
|
token: string;
|
|
1218
1318
|
amount: string;
|
|
1219
1319
|
}[];
|
|
1320
|
+
events: {
|
|
1321
|
+
data: string;
|
|
1322
|
+
topic: string;
|
|
1323
|
+
}[];
|
|
1220
1324
|
sourceChain: number;
|
|
1221
1325
|
destinationChain: number;
|
|
1222
1326
|
tokensIn: {
|
|
@@ -1245,6 +1349,18 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1245
1349
|
token: string;
|
|
1246
1350
|
amount: string;
|
|
1247
1351
|
}>, "many">;
|
|
1352
|
+
events: z.ZodArray<z.ZodObject<{
|
|
1353
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1354
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1355
|
+
}, "strip", z.ZodTypeAny, {
|
|
1356
|
+
data: string;
|
|
1357
|
+
topic: string;
|
|
1358
|
+
}, {
|
|
1359
|
+
data: string;
|
|
1360
|
+
topic: string;
|
|
1361
|
+
}>, "many">;
|
|
1362
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1363
|
+
minValidations: z.ZodNumber;
|
|
1248
1364
|
}, {
|
|
1249
1365
|
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1250
1366
|
transfers: z.ZodArray<z.ZodObject<{
|
|
@@ -1260,7 +1376,7 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1260
1376
|
amount: string;
|
|
1261
1377
|
recipient: string;
|
|
1262
1378
|
}>, "many">;
|
|
1263
|
-
}>, "data">, "strip", z.ZodTypeAny, {
|
|
1379
|
+
}>, "data" | "configSig" | "minValidations">, "strip", z.ZodTypeAny, {
|
|
1264
1380
|
chainId: number;
|
|
1265
1381
|
op: import("../shared").OpType;
|
|
1266
1382
|
user: string;
|
|
@@ -1271,6 +1387,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1271
1387
|
token: string;
|
|
1272
1388
|
amount: string;
|
|
1273
1389
|
}[];
|
|
1390
|
+
events: {
|
|
1391
|
+
data: string;
|
|
1392
|
+
topic: string;
|
|
1393
|
+
}[];
|
|
1274
1394
|
transfers: {
|
|
1275
1395
|
token: string;
|
|
1276
1396
|
amount: string;
|
|
@@ -1287,6 +1407,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1287
1407
|
token: string;
|
|
1288
1408
|
amount: string;
|
|
1289
1409
|
}[];
|
|
1410
|
+
events: {
|
|
1411
|
+
data: string;
|
|
1412
|
+
topic: string;
|
|
1413
|
+
}[];
|
|
1290
1414
|
transfers: {
|
|
1291
1415
|
token: string;
|
|
1292
1416
|
amount: string;
|
|
@@ -1309,6 +1433,18 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1309
1433
|
token: string;
|
|
1310
1434
|
amount: string;
|
|
1311
1435
|
}>, "many">;
|
|
1436
|
+
events: z.ZodArray<z.ZodObject<{
|
|
1437
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1438
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1439
|
+
}, "strip", z.ZodTypeAny, {
|
|
1440
|
+
data: string;
|
|
1441
|
+
topic: string;
|
|
1442
|
+
}, {
|
|
1443
|
+
data: string;
|
|
1444
|
+
topic: string;
|
|
1445
|
+
}>, "many">;
|
|
1446
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1447
|
+
minValidations: z.ZodNumber;
|
|
1312
1448
|
}, {
|
|
1313
1449
|
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1314
1450
|
calls: z.ZodArray<z.ZodObject<{
|
|
@@ -1324,7 +1460,7 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1324
1460
|
value: string;
|
|
1325
1461
|
target: string;
|
|
1326
1462
|
}>, "many">;
|
|
1327
|
-
}>, "data">, "strip", z.ZodTypeAny, {
|
|
1463
|
+
}>, "data" | "configSig" | "minValidations">, "strip", z.ZodTypeAny, {
|
|
1328
1464
|
chainId: number;
|
|
1329
1465
|
op: import("../shared").OpType;
|
|
1330
1466
|
user: string;
|
|
@@ -1335,6 +1471,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1335
1471
|
token: string;
|
|
1336
1472
|
amount: string;
|
|
1337
1473
|
}[];
|
|
1474
|
+
events: {
|
|
1475
|
+
data: string;
|
|
1476
|
+
topic: string;
|
|
1477
|
+
}[];
|
|
1338
1478
|
calls: {
|
|
1339
1479
|
data: string;
|
|
1340
1480
|
value: string;
|
|
@@ -1351,6 +1491,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1351
1491
|
token: string;
|
|
1352
1492
|
amount: string;
|
|
1353
1493
|
}[];
|
|
1494
|
+
events: {
|
|
1495
|
+
data: string;
|
|
1496
|
+
topic: string;
|
|
1497
|
+
}[];
|
|
1354
1498
|
calls: {
|
|
1355
1499
|
data: string;
|
|
1356
1500
|
value: string;
|
|
@@ -1428,6 +1572,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1428
1572
|
token: string;
|
|
1429
1573
|
amount: string;
|
|
1430
1574
|
}[];
|
|
1575
|
+
events: {
|
|
1576
|
+
data: string;
|
|
1577
|
+
topic: string;
|
|
1578
|
+
}[];
|
|
1431
1579
|
sourceChain: number;
|
|
1432
1580
|
destinationChain: number;
|
|
1433
1581
|
tokensIn: {
|
|
@@ -1450,6 +1598,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1450
1598
|
token: string;
|
|
1451
1599
|
amount: string;
|
|
1452
1600
|
}[];
|
|
1601
|
+
events: {
|
|
1602
|
+
data: string;
|
|
1603
|
+
topic: string;
|
|
1604
|
+
}[];
|
|
1453
1605
|
transfers: {
|
|
1454
1606
|
token: string;
|
|
1455
1607
|
amount: string;
|
|
@@ -1466,6 +1618,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1466
1618
|
token: string;
|
|
1467
1619
|
amount: string;
|
|
1468
1620
|
}[];
|
|
1621
|
+
events: {
|
|
1622
|
+
data: string;
|
|
1623
|
+
topic: string;
|
|
1624
|
+
}[];
|
|
1469
1625
|
calls: {
|
|
1470
1626
|
data: string;
|
|
1471
1627
|
value: string;
|
|
@@ -1543,6 +1699,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1543
1699
|
token: string;
|
|
1544
1700
|
amount: string;
|
|
1545
1701
|
}[];
|
|
1702
|
+
events: {
|
|
1703
|
+
data: string;
|
|
1704
|
+
topic: string;
|
|
1705
|
+
}[];
|
|
1546
1706
|
sourceChain: number;
|
|
1547
1707
|
destinationChain: number;
|
|
1548
1708
|
tokensIn: {
|
|
@@ -1565,6 +1725,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1565
1725
|
token: string;
|
|
1566
1726
|
amount: string;
|
|
1567
1727
|
}[];
|
|
1728
|
+
events: {
|
|
1729
|
+
data: string;
|
|
1730
|
+
topic: string;
|
|
1731
|
+
}[];
|
|
1568
1732
|
transfers: {
|
|
1569
1733
|
token: string;
|
|
1570
1734
|
amount: string;
|
|
@@ -1581,6 +1745,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1581
1745
|
token: string;
|
|
1582
1746
|
amount: string;
|
|
1583
1747
|
}[];
|
|
1748
|
+
events: {
|
|
1749
|
+
data: string;
|
|
1750
|
+
topic: string;
|
|
1751
|
+
}[];
|
|
1584
1752
|
calls: {
|
|
1585
1753
|
data: string;
|
|
1586
1754
|
value: string;
|
|
@@ -1660,6 +1828,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1660
1828
|
token: string;
|
|
1661
1829
|
amount: string;
|
|
1662
1830
|
}[];
|
|
1831
|
+
events: {
|
|
1832
|
+
data: string;
|
|
1833
|
+
topic: string;
|
|
1834
|
+
}[];
|
|
1663
1835
|
sourceChain: number;
|
|
1664
1836
|
destinationChain: number;
|
|
1665
1837
|
tokensIn: {
|
|
@@ -1682,6 +1854,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1682
1854
|
token: string;
|
|
1683
1855
|
amount: string;
|
|
1684
1856
|
}[];
|
|
1857
|
+
events: {
|
|
1858
|
+
data: string;
|
|
1859
|
+
topic: string;
|
|
1860
|
+
}[];
|
|
1685
1861
|
transfers: {
|
|
1686
1862
|
token: string;
|
|
1687
1863
|
amount: string;
|
|
@@ -1698,6 +1874,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1698
1874
|
token: string;
|
|
1699
1875
|
amount: string;
|
|
1700
1876
|
}[];
|
|
1877
|
+
events: {
|
|
1878
|
+
data: string;
|
|
1879
|
+
topic: string;
|
|
1880
|
+
}[];
|
|
1701
1881
|
calls: {
|
|
1702
1882
|
data: string;
|
|
1703
1883
|
value: string;
|
|
@@ -1705,7 +1885,7 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1705
1885
|
}[];
|
|
1706
1886
|
})[];
|
|
1707
1887
|
};
|
|
1708
|
-
status: "success";
|
|
1888
|
+
status: "success" | "error";
|
|
1709
1889
|
logs: {
|
|
1710
1890
|
level: import("../shared").LogLevel;
|
|
1711
1891
|
log: string;
|
|
@@ -1782,6 +1962,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1782
1962
|
token: string;
|
|
1783
1963
|
amount: string;
|
|
1784
1964
|
}[];
|
|
1965
|
+
events: {
|
|
1966
|
+
data: string;
|
|
1967
|
+
topic: string;
|
|
1968
|
+
}[];
|
|
1785
1969
|
sourceChain: number;
|
|
1786
1970
|
destinationChain: number;
|
|
1787
1971
|
tokensIn: {
|
|
@@ -1804,6 +1988,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1804
1988
|
token: string;
|
|
1805
1989
|
amount: string;
|
|
1806
1990
|
}[];
|
|
1991
|
+
events: {
|
|
1992
|
+
data: string;
|
|
1993
|
+
topic: string;
|
|
1994
|
+
}[];
|
|
1807
1995
|
transfers: {
|
|
1808
1996
|
token: string;
|
|
1809
1997
|
amount: string;
|
|
@@ -1820,6 +2008,10 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1820
2008
|
token: string;
|
|
1821
2009
|
amount: string;
|
|
1822
2010
|
}[];
|
|
2011
|
+
events: {
|
|
2012
|
+
data: string;
|
|
2013
|
+
topic: string;
|
|
2014
|
+
}[];
|
|
1823
2015
|
calls: {
|
|
1824
2016
|
data: string;
|
|
1825
2017
|
value: string;
|
|
@@ -1827,36 +2019,12 @@ export declare const RunnerExecutionResultValidator: z.ZodDiscriminatedUnion<"st
|
|
|
1827
2019
|
}[];
|
|
1828
2020
|
})[];
|
|
1829
2021
|
};
|
|
1830
|
-
status: "success";
|
|
2022
|
+
status: "success" | "error";
|
|
1831
2023
|
logs: {
|
|
1832
2024
|
level: import("../shared").LogLevel;
|
|
1833
2025
|
log: string;
|
|
1834
2026
|
}[];
|
|
1835
|
-
}
|
|
1836
|
-
status: z.ZodLiteral<"error">;
|
|
1837
|
-
logs: z.ZodArray<z.ZodObject<{
|
|
1838
|
-
level: z.ZodNativeEnum<typeof import("../shared").LogLevel>;
|
|
1839
|
-
log: z.ZodString;
|
|
1840
|
-
}, "strip", z.ZodTypeAny, {
|
|
1841
|
-
level: import("../shared").LogLevel;
|
|
1842
|
-
log: string;
|
|
1843
|
-
}, {
|
|
1844
|
-
level: import("../shared").LogLevel;
|
|
1845
|
-
log: string;
|
|
1846
|
-
}>, "many">;
|
|
1847
|
-
}, "strip", z.ZodTypeAny, {
|
|
1848
|
-
status: "error";
|
|
1849
|
-
logs: {
|
|
1850
|
-
level: import("../shared").LogLevel;
|
|
1851
|
-
log: string;
|
|
1852
|
-
}[];
|
|
1853
|
-
}, {
|
|
1854
|
-
status: "error";
|
|
1855
|
-
logs: {
|
|
1856
|
-
level: import("../shared").LogLevel;
|
|
1857
|
-
log: string;
|
|
1858
|
-
}[];
|
|
1859
|
-
}>]>;
|
|
2027
|
+
}>;
|
|
1860
2028
|
export declare const RelayerExecutionResultValidator: z.ZodObject<{
|
|
1861
2029
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1862
2030
|
timestamp: z.ZodNumber;
|
|
@@ -1879,10 +2047,23 @@ export declare const RelayerExecutionResultValidator: z.ZodObject<{
|
|
|
1879
2047
|
token: string;
|
|
1880
2048
|
amount: string;
|
|
1881
2049
|
}>, "many">;
|
|
2050
|
+
events: z.ZodArray<z.ZodObject<{
|
|
2051
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2052
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2053
|
+
}, "strip", z.ZodTypeAny, {
|
|
2054
|
+
data: string;
|
|
2055
|
+
topic: string;
|
|
2056
|
+
}, {
|
|
2057
|
+
data: string;
|
|
2058
|
+
topic: string;
|
|
2059
|
+
}>, "many">;
|
|
2060
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2061
|
+
minValidations: z.ZodNumber;
|
|
1882
2062
|
}, {
|
|
1883
2063
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1884
2064
|
}>, "strip", z.ZodTypeAny, {
|
|
1885
2065
|
data: string;
|
|
2066
|
+
configSig: string;
|
|
1886
2067
|
op: import("../shared").OpType;
|
|
1887
2068
|
user: string;
|
|
1888
2069
|
settler: string;
|
|
@@ -1892,9 +2073,15 @@ export declare const RelayerExecutionResultValidator: z.ZodObject<{
|
|
|
1892
2073
|
token: string;
|
|
1893
2074
|
amount: string;
|
|
1894
2075
|
}[];
|
|
2076
|
+
events: {
|
|
2077
|
+
data: string;
|
|
2078
|
+
topic: string;
|
|
2079
|
+
}[];
|
|
2080
|
+
minValidations: number;
|
|
1895
2081
|
hash: string;
|
|
1896
2082
|
}, {
|
|
1897
2083
|
data: string;
|
|
2084
|
+
configSig: string;
|
|
1898
2085
|
op: import("../shared").OpType;
|
|
1899
2086
|
user: string;
|
|
1900
2087
|
settler: string;
|
|
@@ -1904,6 +2091,11 @@ export declare const RelayerExecutionResultValidator: z.ZodObject<{
|
|
|
1904
2091
|
token: string;
|
|
1905
2092
|
amount: string;
|
|
1906
2093
|
}[];
|
|
2094
|
+
events: {
|
|
2095
|
+
data: string;
|
|
2096
|
+
topic: string;
|
|
2097
|
+
}[];
|
|
2098
|
+
minValidations: number;
|
|
1907
2099
|
hash: string;
|
|
1908
2100
|
}>, "many">;
|
|
1909
2101
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -1915,6 +2107,7 @@ export declare const RelayerExecutionResultValidator: z.ZodObject<{
|
|
|
1915
2107
|
inputs: string[];
|
|
1916
2108
|
outputs: {
|
|
1917
2109
|
data: string;
|
|
2110
|
+
configSig: string;
|
|
1918
2111
|
op: import("../shared").OpType;
|
|
1919
2112
|
user: string;
|
|
1920
2113
|
settler: string;
|
|
@@ -1924,6 +2117,11 @@ export declare const RelayerExecutionResultValidator: z.ZodObject<{
|
|
|
1924
2117
|
token: string;
|
|
1925
2118
|
amount: string;
|
|
1926
2119
|
}[];
|
|
2120
|
+
events: {
|
|
2121
|
+
data: string;
|
|
2122
|
+
topic: string;
|
|
2123
|
+
}[];
|
|
2124
|
+
minValidations: number;
|
|
1927
2125
|
hash: string;
|
|
1928
2126
|
}[];
|
|
1929
2127
|
}, {
|
|
@@ -1934,6 +2132,7 @@ export declare const RelayerExecutionResultValidator: z.ZodObject<{
|
|
|
1934
2132
|
inputs: string[];
|
|
1935
2133
|
outputs: {
|
|
1936
2134
|
data: string;
|
|
2135
|
+
configSig: string;
|
|
1937
2136
|
op: import("../shared").OpType;
|
|
1938
2137
|
user: string;
|
|
1939
2138
|
settler: string;
|
|
@@ -1943,6 +2142,11 @@ export declare const RelayerExecutionResultValidator: z.ZodObject<{
|
|
|
1943
2142
|
token: string;
|
|
1944
2143
|
amount: string;
|
|
1945
2144
|
}[];
|
|
2145
|
+
events: {
|
|
2146
|
+
data: string;
|
|
2147
|
+
topic: string;
|
|
2148
|
+
}[];
|
|
2149
|
+
minValidations: number;
|
|
1946
2150
|
hash: string;
|
|
1947
2151
|
}[];
|
|
1948
2152
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validators.d.ts","sourceRoot":"","sources":["../../src/relayer/validators.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAcvB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;EAIlC,CAAA;AAEF,eAAO,MAAM,kCAAkC
|
|
1
|
+
{"version":3,"file":"validators.d.ts","sourceRoot":"","sources":["../../src/relayer/validators.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAcvB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;EAIlC,CAAA;AAEF,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW7C,CAAA;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIzC,CAAA;AAEF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAO1C,CAAA"}
|
|
@@ -16,24 +16,16 @@ exports.RunnerExecutionResultDataValidator = zod_1.z.object({
|
|
|
16
16
|
fuelUsed: validators_1.PositiveIntegerValidator,
|
|
17
17
|
inputs: zod_1.z.array(oracle_1.OracleResponseValidator),
|
|
18
18
|
outputs: zod_1.z.array(zod_1.z.union([
|
|
19
|
-
shared_1.SwapIntentValidator.omit({ data: true }),
|
|
20
|
-
shared_1.TransferIntentValidator.omit({ data: true }),
|
|
21
|
-
shared_1.CallIntentValidator.omit({ data: true }),
|
|
19
|
+
shared_1.SwapIntentValidator.omit({ data: true, configSig: true, minValidations: true }),
|
|
20
|
+
shared_1.TransferIntentValidator.omit({ data: true, configSig: true, minValidations: true }),
|
|
21
|
+
shared_1.CallIntentValidator.omit({ data: true, configSig: true, minValidations: true }),
|
|
22
22
|
])),
|
|
23
23
|
});
|
|
24
|
-
|
|
25
|
-
status: zod_1.z.
|
|
24
|
+
exports.RunnerExecutionResultValidator = zod_1.z.object({
|
|
25
|
+
status: zod_1.z.enum(['success', 'error']),
|
|
26
26
|
logs: zod_1.z.array(validators_1.LogValidator),
|
|
27
27
|
result: exports.RunnerExecutionResultDataValidator,
|
|
28
28
|
});
|
|
29
|
-
const ErrorRunnerExecutionResultValidator = zod_1.z.object({
|
|
30
|
-
status: zod_1.z.literal('error'),
|
|
31
|
-
logs: zod_1.z.array(validators_1.LogValidator),
|
|
32
|
-
});
|
|
33
|
-
exports.RunnerExecutionResultValidator = zod_1.z.discriminatedUnion('status', [
|
|
34
|
-
SuccessRunnerExecutionResultValidator,
|
|
35
|
-
ErrorRunnerExecutionResultValidator,
|
|
36
|
-
]);
|
|
37
29
|
exports.RelayerExecutionResultValidator = zod_1.z.object({
|
|
38
30
|
hash: shared_1.HexValidator,
|
|
39
31
|
timestamp: shared_1.TimestampValidator,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validators.js","sourceRoot":"","sources":["../../src/relayer/validators.ts"],"names":[],"mappings":";;;AAAA,6BAAuB;AAEvB,kCAAkD;AAClD,sCAAmD;AACnD,sCAOkB;AAClB,qDAA8F;AAEjF,QAAA,uBAAuB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC9C,IAAI,EAAE,qBAAY;IAClB,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,4BAAe,CAAC,CAAC,QAAQ,EAAE;IACzC,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,4BAAe,CAAC,CAAC,QAAQ,EAAE;CAC/C,CAAC,CAAA;AAEW,QAAA,kCAAkC,GAAG,OAAC,CAAC,MAAM,CAAC;IACzD,SAAS,EAAE,2BAAkB;IAC7B,QAAQ,EAAE,qCAAwB;IAClC,MAAM,EAAE,OAAC,CAAC,KAAK,CAAC,gCAAuB,CAAC;IACxC,OAAO,EAAE,OAAC,CAAC,KAAK,CACd,OAAC,CAAC,KAAK,CAAC;QACN,4BAAmB,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"validators.js","sourceRoot":"","sources":["../../src/relayer/validators.ts"],"names":[],"mappings":";;;AAAA,6BAAuB;AAEvB,kCAAkD;AAClD,sCAAmD;AACnD,sCAOkB;AAClB,qDAA8F;AAEjF,QAAA,uBAAuB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC9C,IAAI,EAAE,qBAAY;IAClB,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,4BAAe,CAAC,CAAC,QAAQ,EAAE;IACzC,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,4BAAe,CAAC,CAAC,QAAQ,EAAE;CAC/C,CAAC,CAAA;AAEW,QAAA,kCAAkC,GAAG,OAAC,CAAC,MAAM,CAAC;IACzD,SAAS,EAAE,2BAAkB;IAC7B,QAAQ,EAAE,qCAAwB;IAClC,MAAM,EAAE,OAAC,CAAC,KAAK,CAAC,gCAAuB,CAAC;IACxC,OAAO,EAAE,OAAC,CAAC,KAAK,CACd,OAAC,CAAC,KAAK,CAAC;QACN,4BAAmB,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,EAAE,CAAC;QAC/E,gCAAuB,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,EAAE,CAAC;QACnF,4BAAmB,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,EAAE,CAAC;KAChF,CAAC,CACH;CACF,CAAC,CAAA;AAEW,QAAA,8BAA8B,GAAG,OAAC,CAAC,MAAM,CAAC;IACrD,MAAM,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;IACpC,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,yBAAY,CAAC;IAC3B,MAAM,EAAE,0CAAkC;CAC3C,CAAC,CAAA;AAEW,QAAA,+BAA+B,GAAG,OAAC,CAAC,MAAM,CAAC;IACtD,IAAI,EAAE,qBAAY;IAClB,SAAS,EAAE,2BAAkB;IAC7B,QAAQ,EAAE,qCAAwB;IAClC,MAAM,EAAE,OAAC,CAAC,KAAK,CAAC,2BAAkB,CAAC;IACnC,OAAO,EAAE,OAAC,CAAC,KAAK,CAAC,+BAAwB,CAAC;IAC1C,SAAS,EAAE,2BAAkB;CAC9B,CAAC,CAAA"}
|