@xyo-network/xl1-protocol-sdk 2.2.1 → 3.0.0
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/neutral/CreatableProvider/AbstractCreatableProvider.d.ts +35 -2
- package/dist/neutral/CreatableProvider/AbstractCreatableProvider.d.ts.map +1 -1
- package/dist/neutral/capabilities/Capability.d.ts +1 -8
- package/dist/neutral/capabilities/Capability.d.ts.map +1 -1
- package/dist/neutral/capabilities/Provider.d.ts +14 -23
- package/dist/neutral/capabilities/Provider.d.ts.map +1 -1
- package/dist/neutral/capabilities/connectionTypes.d.ts +9 -0
- package/dist/neutral/capabilities/connectionTypes.d.ts.map +1 -0
- package/dist/neutral/capabilities/index.d.ts +1 -0
- package/dist/neutral/capabilities/index.d.ts.map +1 -1
- package/dist/neutral/capabilities/resolveProviders.d.ts +27 -20
- package/dist/neutral/capabilities/resolveProviders.d.ts.map +1 -1
- package/dist/neutral/config/Actor.d.ts +216 -12
- package/dist/neutral/config/Actor.d.ts.map +1 -1
- package/dist/neutral/config/Actors.d.ts +41 -2
- package/dist/neutral/config/Actors.d.ts.map +1 -1
- package/dist/neutral/config/Base.d.ts +41 -2
- package/dist/neutral/config/Base.d.ts.map +1 -1
- package/dist/neutral/config/Config.d.ts +152 -8
- package/dist/neutral/config/Config.d.ts.map +1 -1
- package/dist/neutral/config/HostActor.d.ts +216 -12
- package/dist/neutral/config/HostActor.d.ts.map +1 -1
- package/dist/neutral/config/ProviderBinding.d.ts +4 -5
- package/dist/neutral/config/ProviderBinding.d.ts.map +1 -1
- package/dist/neutral/config/adaptLegacyConfig.d.ts +2 -3
- package/dist/neutral/config/adaptLegacyConfig.d.ts.map +1 -1
- package/dist/neutral/config/connections/index.d.ts +6 -0
- package/dist/neutral/config/connections/index.d.ts.map +1 -0
- package/dist/neutral/config/index.d.ts +2 -0
- package/dist/neutral/config/index.d.ts.map +1 -1
- package/dist/neutral/config/normalizeConnectionsConfig.d.ts +20 -0
- package/dist/neutral/config/normalizeConnectionsConfig.d.ts.map +1 -0
- package/dist/neutral/config/transports/Transport.d.ts +18 -3
- package/dist/neutral/config/transports/Transport.d.ts.map +1 -1
- package/dist/neutral/context/Actor.d.ts +216 -12
- package/dist/neutral/context/Actor.d.ts.map +1 -1
- package/dist/neutral/context/HostActor.d.ts +216 -12
- package/dist/neutral/context/HostActor.d.ts.map +1 -1
- package/dist/neutral/getFileConfig.d.ts +70 -4
- package/dist/neutral/getFileConfig.d.ts.map +1 -1
- package/dist/neutral/getFileConfig.mjs +204 -191
- package/dist/neutral/getFileConfig.mjs.map +4 -4
- package/dist/neutral/index.mjs +570 -393
- package/dist/neutral/index.mjs.map +4 -4
- package/dist/neutral/model/CreatableProviderContext.zod.d.ts +216 -12
- package/dist/neutral/model/CreatableProviderContext.zod.d.ts.map +1 -1
- package/dist/neutral/simple/mempool/SimpleMempoolRunner.d.ts +1 -1
- package/dist/neutral/test/index.mjs +204 -191
- package/dist/neutral/test/index.mjs.map +4 -4
- package/package.json +6 -6
|
@@ -53,8 +53,42 @@ export declare const BaseConfigContextZod: z.ZodMiniObject<{
|
|
|
53
53
|
}>>;
|
|
54
54
|
silent: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
55
55
|
}, z.core.$strip>>;
|
|
56
|
+
connections: z.ZodMiniDefault<import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
57
|
+
access: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
58
|
+
read: "read";
|
|
59
|
+
write: "write";
|
|
60
|
+
}>>;
|
|
61
|
+
root: import("zod").ZodString;
|
|
62
|
+
store: import("zod").ZodOptional<import("zod").ZodString>;
|
|
63
|
+
type: import("zod").ZodLiteral<"lmdb">;
|
|
64
|
+
}, z.core.$strip>, import("zod").ZodObject<{
|
|
65
|
+
type: import("zod").ZodLiteral<"mongo">;
|
|
66
|
+
connectionString: import("zod").ZodOptional<import("zod").ZodString>;
|
|
67
|
+
database: import("zod").ZodOptional<import("zod").ZodString>;
|
|
68
|
+
domain: import("zod").ZodOptional<import("zod").ZodString>;
|
|
69
|
+
password: import("zod").ZodOptional<import("zod").ZodString>;
|
|
70
|
+
username: import("zod").ZodOptional<import("zod").ZodString>;
|
|
71
|
+
}, z.core.$strip>, import("zod").ZodObject<{
|
|
72
|
+
protocol: import("zod").ZodDefault<import("zod").ZodString>;
|
|
73
|
+
url: import("zod").ZodString;
|
|
74
|
+
type: import("zod").ZodLiteral<"rpc">;
|
|
75
|
+
}, z.core.$strip>, import("zod").ZodObject<{
|
|
76
|
+
type: import("zod").ZodLiteral<"rest">;
|
|
77
|
+
baseUrl: import("zod").ZodString;
|
|
78
|
+
}, z.core.$strip>, import("zod").ZodObject<{
|
|
79
|
+
bucket: import("zod").ZodOptional<import("zod").ZodString>;
|
|
80
|
+
prefix: import("zod").ZodOptional<import("zod").ZodString>;
|
|
81
|
+
readUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
82
|
+
type: import("zod").ZodLiteral<"s3">;
|
|
83
|
+
accessKeyId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
84
|
+
accountId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
85
|
+
secretAccessKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
86
|
+
}, z.core.$strip>, import("zod").ZodObject<{
|
|
87
|
+
type: import("zod").ZodLiteral<"evm-rpc">;
|
|
88
|
+
url: import("zod").ZodString;
|
|
89
|
+
}, z.core.$strip>], "type">>>>;
|
|
56
90
|
providerBindings: z.ZodMiniDefault<import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
57
|
-
|
|
91
|
+
connection: import("zod").ZodOptional<import("zod").ZodString>;
|
|
58
92
|
transport: import("zod").ZodOptional<import("zod").ZodString>;
|
|
59
93
|
}, z.core.$strip>>>>;
|
|
60
94
|
providers: z.ZodMiniDefault<import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -72,8 +106,13 @@ export declare const BaseConfigContextZod: z.ZodMiniObject<{
|
|
|
72
106
|
}, z.core.$strip>]>>;
|
|
73
107
|
}, z.core.$strip>>;
|
|
74
108
|
transports: z.ZodMiniDefault<import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
75
|
-
|
|
109
|
+
access: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
110
|
+
read: "read";
|
|
111
|
+
write: "write";
|
|
112
|
+
}>>;
|
|
76
113
|
root: import("zod").ZodString;
|
|
114
|
+
store: import("zod").ZodOptional<import("zod").ZodString>;
|
|
115
|
+
type: import("zod").ZodLiteral<"lmdb">;
|
|
77
116
|
}, z.core.$strip>, import("zod").ZodObject<{
|
|
78
117
|
type: import("zod").ZodLiteral<"mongo">;
|
|
79
118
|
connectionString: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -200,8 +239,39 @@ export declare const isBaseConfigContext: <T>(value: T) => value is T & {
|
|
|
200
239
|
logLevel: "error" | "warn" | "info" | "log" | "debug" | "trace";
|
|
201
240
|
silent: boolean;
|
|
202
241
|
};
|
|
242
|
+
connections: Record<string, {
|
|
243
|
+
root: string;
|
|
244
|
+
type: "lmdb";
|
|
245
|
+
access?: "read" | "write" | undefined;
|
|
246
|
+
store?: string | undefined;
|
|
247
|
+
} | {
|
|
248
|
+
type: "mongo";
|
|
249
|
+
connectionString?: string | undefined;
|
|
250
|
+
database?: string | undefined;
|
|
251
|
+
domain?: string | undefined;
|
|
252
|
+
password?: string | undefined;
|
|
253
|
+
username?: string | undefined;
|
|
254
|
+
} | {
|
|
255
|
+
protocol: string;
|
|
256
|
+
url: string;
|
|
257
|
+
type: "rpc";
|
|
258
|
+
} | {
|
|
259
|
+
type: "rest";
|
|
260
|
+
baseUrl: string;
|
|
261
|
+
} | {
|
|
262
|
+
type: "s3";
|
|
263
|
+
bucket?: string | undefined;
|
|
264
|
+
prefix?: string | undefined;
|
|
265
|
+
readUrl?: string | undefined;
|
|
266
|
+
accessKeyId?: string | undefined;
|
|
267
|
+
accountId?: string | undefined;
|
|
268
|
+
secretAccessKey?: string | undefined;
|
|
269
|
+
} | {
|
|
270
|
+
type: "evm-rpc";
|
|
271
|
+
url: string;
|
|
272
|
+
}>;
|
|
203
273
|
providerBindings: Record<string, {
|
|
204
|
-
|
|
274
|
+
connection?: string | undefined;
|
|
205
275
|
transport?: string | undefined;
|
|
206
276
|
}>;
|
|
207
277
|
providers: {
|
|
@@ -220,8 +290,10 @@ export declare const isBaseConfigContext: <T>(value: T) => value is T & {
|
|
|
220
290
|
} | undefined;
|
|
221
291
|
};
|
|
222
292
|
transports: Record<string, {
|
|
223
|
-
type: "lmdb";
|
|
224
293
|
root: string;
|
|
294
|
+
type: "lmdb";
|
|
295
|
+
access?: "read" | "write" | undefined;
|
|
296
|
+
store?: string | undefined;
|
|
225
297
|
} | {
|
|
226
298
|
type: "mongo";
|
|
227
299
|
connectionString?: string | undefined;
|
|
@@ -350,8 +422,39 @@ export declare const asBaseConfigContext: {
|
|
|
350
422
|
logLevel: "error" | "warn" | "info" | "log" | "debug" | "trace";
|
|
351
423
|
silent: boolean;
|
|
352
424
|
};
|
|
425
|
+
connections: Record<string, {
|
|
426
|
+
root: string;
|
|
427
|
+
type: "lmdb";
|
|
428
|
+
access?: "read" | "write" | undefined;
|
|
429
|
+
store?: string | undefined;
|
|
430
|
+
} | {
|
|
431
|
+
type: "mongo";
|
|
432
|
+
connectionString?: string | undefined;
|
|
433
|
+
database?: string | undefined;
|
|
434
|
+
domain?: string | undefined;
|
|
435
|
+
password?: string | undefined;
|
|
436
|
+
username?: string | undefined;
|
|
437
|
+
} | {
|
|
438
|
+
protocol: string;
|
|
439
|
+
url: string;
|
|
440
|
+
type: "rpc";
|
|
441
|
+
} | {
|
|
442
|
+
type: "rest";
|
|
443
|
+
baseUrl: string;
|
|
444
|
+
} | {
|
|
445
|
+
type: "s3";
|
|
446
|
+
bucket?: string | undefined;
|
|
447
|
+
prefix?: string | undefined;
|
|
448
|
+
readUrl?: string | undefined;
|
|
449
|
+
accessKeyId?: string | undefined;
|
|
450
|
+
accountId?: string | undefined;
|
|
451
|
+
secretAccessKey?: string | undefined;
|
|
452
|
+
} | {
|
|
453
|
+
type: "evm-rpc";
|
|
454
|
+
url: string;
|
|
455
|
+
}>;
|
|
353
456
|
providerBindings: Record<string, {
|
|
354
|
-
|
|
457
|
+
connection?: string | undefined;
|
|
355
458
|
transport?: string | undefined;
|
|
356
459
|
}>;
|
|
357
460
|
providers: {
|
|
@@ -370,8 +473,10 @@ export declare const asBaseConfigContext: {
|
|
|
370
473
|
} | undefined;
|
|
371
474
|
};
|
|
372
475
|
transports: Record<string, {
|
|
373
|
-
type: "lmdb";
|
|
374
476
|
root: string;
|
|
477
|
+
type: "lmdb";
|
|
478
|
+
access?: "read" | "write" | undefined;
|
|
479
|
+
store?: string | undefined;
|
|
375
480
|
} | {
|
|
376
481
|
type: "mongo";
|
|
377
482
|
connectionString?: string | undefined;
|
|
@@ -498,8 +603,39 @@ export declare const asBaseConfigContext: {
|
|
|
498
603
|
logLevel: "error" | "warn" | "info" | "log" | "debug" | "trace";
|
|
499
604
|
silent: boolean;
|
|
500
605
|
};
|
|
606
|
+
connections: Record<string, {
|
|
607
|
+
root: string;
|
|
608
|
+
type: "lmdb";
|
|
609
|
+
access?: "read" | "write" | undefined;
|
|
610
|
+
store?: string | undefined;
|
|
611
|
+
} | {
|
|
612
|
+
type: "mongo";
|
|
613
|
+
connectionString?: string | undefined;
|
|
614
|
+
database?: string | undefined;
|
|
615
|
+
domain?: string | undefined;
|
|
616
|
+
password?: string | undefined;
|
|
617
|
+
username?: string | undefined;
|
|
618
|
+
} | {
|
|
619
|
+
protocol: string;
|
|
620
|
+
url: string;
|
|
621
|
+
type: "rpc";
|
|
622
|
+
} | {
|
|
623
|
+
type: "rest";
|
|
624
|
+
baseUrl: string;
|
|
625
|
+
} | {
|
|
626
|
+
type: "s3";
|
|
627
|
+
bucket?: string | undefined;
|
|
628
|
+
prefix?: string | undefined;
|
|
629
|
+
readUrl?: string | undefined;
|
|
630
|
+
accessKeyId?: string | undefined;
|
|
631
|
+
accountId?: string | undefined;
|
|
632
|
+
secretAccessKey?: string | undefined;
|
|
633
|
+
} | {
|
|
634
|
+
type: "evm-rpc";
|
|
635
|
+
url: string;
|
|
636
|
+
}>;
|
|
501
637
|
providerBindings: Record<string, {
|
|
502
|
-
|
|
638
|
+
connection?: string | undefined;
|
|
503
639
|
transport?: string | undefined;
|
|
504
640
|
}>;
|
|
505
641
|
providers: {
|
|
@@ -518,8 +654,10 @@ export declare const asBaseConfigContext: {
|
|
|
518
654
|
} | undefined;
|
|
519
655
|
};
|
|
520
656
|
transports: Record<string, {
|
|
521
|
-
type: "lmdb";
|
|
522
657
|
root: string;
|
|
658
|
+
type: "lmdb";
|
|
659
|
+
access?: "read" | "write" | undefined;
|
|
660
|
+
store?: string | undefined;
|
|
523
661
|
} | {
|
|
524
662
|
type: "mongo";
|
|
525
663
|
connectionString?: string | undefined;
|
|
@@ -649,8 +787,39 @@ export declare const toBaseConfigContext: {
|
|
|
649
787
|
logLevel: "error" | "warn" | "info" | "log" | "debug" | "trace";
|
|
650
788
|
silent: boolean;
|
|
651
789
|
};
|
|
790
|
+
connections: Record<string, {
|
|
791
|
+
root: string;
|
|
792
|
+
type: "lmdb";
|
|
793
|
+
access?: "read" | "write" | undefined;
|
|
794
|
+
store?: string | undefined;
|
|
795
|
+
} | {
|
|
796
|
+
type: "mongo";
|
|
797
|
+
connectionString?: string | undefined;
|
|
798
|
+
database?: string | undefined;
|
|
799
|
+
domain?: string | undefined;
|
|
800
|
+
password?: string | undefined;
|
|
801
|
+
username?: string | undefined;
|
|
802
|
+
} | {
|
|
803
|
+
protocol: string;
|
|
804
|
+
url: string;
|
|
805
|
+
type: "rpc";
|
|
806
|
+
} | {
|
|
807
|
+
type: "rest";
|
|
808
|
+
baseUrl: string;
|
|
809
|
+
} | {
|
|
810
|
+
type: "s3";
|
|
811
|
+
bucket?: string | undefined;
|
|
812
|
+
prefix?: string | undefined;
|
|
813
|
+
readUrl?: string | undefined;
|
|
814
|
+
accessKeyId?: string | undefined;
|
|
815
|
+
accountId?: string | undefined;
|
|
816
|
+
secretAccessKey?: string | undefined;
|
|
817
|
+
} | {
|
|
818
|
+
type: "evm-rpc";
|
|
819
|
+
url: string;
|
|
820
|
+
}>;
|
|
652
821
|
providerBindings: Record<string, {
|
|
653
|
-
|
|
822
|
+
connection?: string | undefined;
|
|
654
823
|
transport?: string | undefined;
|
|
655
824
|
}>;
|
|
656
825
|
providers: {
|
|
@@ -669,8 +838,10 @@ export declare const toBaseConfigContext: {
|
|
|
669
838
|
} | undefined;
|
|
670
839
|
};
|
|
671
840
|
transports: Record<string, {
|
|
672
|
-
type: "lmdb";
|
|
673
841
|
root: string;
|
|
842
|
+
type: "lmdb";
|
|
843
|
+
access?: "read" | "write" | undefined;
|
|
844
|
+
store?: string | undefined;
|
|
674
845
|
} | {
|
|
675
846
|
type: "mongo";
|
|
676
847
|
connectionString?: string | undefined;
|
|
@@ -797,8 +968,39 @@ export declare const toBaseConfigContext: {
|
|
|
797
968
|
logLevel: "error" | "warn" | "info" | "log" | "debug" | "trace";
|
|
798
969
|
silent: boolean;
|
|
799
970
|
};
|
|
971
|
+
connections: Record<string, {
|
|
972
|
+
root: string;
|
|
973
|
+
type: "lmdb";
|
|
974
|
+
access?: "read" | "write" | undefined;
|
|
975
|
+
store?: string | undefined;
|
|
976
|
+
} | {
|
|
977
|
+
type: "mongo";
|
|
978
|
+
connectionString?: string | undefined;
|
|
979
|
+
database?: string | undefined;
|
|
980
|
+
domain?: string | undefined;
|
|
981
|
+
password?: string | undefined;
|
|
982
|
+
username?: string | undefined;
|
|
983
|
+
} | {
|
|
984
|
+
protocol: string;
|
|
985
|
+
url: string;
|
|
986
|
+
type: "rpc";
|
|
987
|
+
} | {
|
|
988
|
+
type: "rest";
|
|
989
|
+
baseUrl: string;
|
|
990
|
+
} | {
|
|
991
|
+
type: "s3";
|
|
992
|
+
bucket?: string | undefined;
|
|
993
|
+
prefix?: string | undefined;
|
|
994
|
+
readUrl?: string | undefined;
|
|
995
|
+
accessKeyId?: string | undefined;
|
|
996
|
+
accountId?: string | undefined;
|
|
997
|
+
secretAccessKey?: string | undefined;
|
|
998
|
+
} | {
|
|
999
|
+
type: "evm-rpc";
|
|
1000
|
+
url: string;
|
|
1001
|
+
}>;
|
|
800
1002
|
providerBindings: Record<string, {
|
|
801
|
-
|
|
1003
|
+
connection?: string | undefined;
|
|
802
1004
|
transport?: string | undefined;
|
|
803
1005
|
}>;
|
|
804
1006
|
providers: {
|
|
@@ -817,8 +1019,10 @@ export declare const toBaseConfigContext: {
|
|
|
817
1019
|
} | undefined;
|
|
818
1020
|
};
|
|
819
1021
|
transports: Record<string, {
|
|
820
|
-
type: "lmdb";
|
|
821
1022
|
root: string;
|
|
1023
|
+
type: "lmdb";
|
|
1024
|
+
access?: "read" | "write" | undefined;
|
|
1025
|
+
store?: string | undefined;
|
|
822
1026
|
} | {
|
|
823
1027
|
type: "mongo";
|
|
824
1028
|
connectionString?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreatableProviderContext.zod.d.ts","sourceRoot":"","sources":["../../../src/model/CreatableProviderContext.zod.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAA;AAEnE,OAAO,EAAE,CAAC,EAAE,MAAM,UAAU,CAAA;AAE5B,OAAO,EAAE,KAAK,UAAU,EAAiB,MAAM,oBAAoB,CAAA;AACnE,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,+BAA+B,CAAA;AACnF,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAA;AAE9D,wCAAwC;AACxC,eAAO,MAAM,uBAAuB,6DAAsG,CAAA;AAE1I,0CAA0C;AAC1C,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,WAAW,CAAC,8BAA8B,CACqE,CAAA;AAEzJ,yCAAyC;AACzC,MAAM,MAAM,4BAA4B,GAAG,cAAc,GAAG;IAC1D,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,UAAU,CAAA;IAClB,OAAO,EAAE,8BAA8B,CAAA;IACvC,cAAc,CAAC,EAAE,oBAAoB,CAAA;CACtC,CAAA;AAED,qCAAqC;AACrC,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"CreatableProviderContext.zod.d.ts","sourceRoot":"","sources":["../../../src/model/CreatableProviderContext.zod.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAA;AAEnE,OAAO,EAAE,CAAC,EAAE,MAAM,UAAU,CAAA;AAE5B,OAAO,EAAE,KAAK,UAAU,EAAiB,MAAM,oBAAoB,CAAA;AACnE,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,+BAA+B,CAAA;AACnF,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAA;AAE9D,wCAAwC;AACxC,eAAO,MAAM,uBAAuB,6DAAsG,CAAA;AAE1I,0CAA0C;AAC1C,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,WAAW,CAAC,8BAA8B,CACqE,CAAA;AAEzJ,yCAAyC;AACzC,MAAM,MAAM,4BAA4B,GAAG,cAAc,GAAG;IAC1D,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,UAAU,CAAA;IAClB,OAAO,EAAE,8BAA8B,CAAA;IACvC,cAAc,CAAC,EAAE,oBAAoB,CAAA;CACtC,CAAA;AAED,qCAAqC;AACrC,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAG/B,CAAA;AACF,8BAA8B;AAC9B,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA;AAEpE,4CAA4C;AAC5C,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,WAAW,CAAC,4BAA4B,CAK/E,CAAA;AAEL,sEAAsE;AACtE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAqC,CAAA;AACrE,kEAAkE;AAClE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4D,CAAA;AAC5F,oCAAoC;AACpC,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4D,CAAA;AAE5F,6EAA6E;AAC7E,eAAO,MAAM,0BAA0B;;;;;;;;UA9B/B,MAAM;YACJ,UAAU;aACT,8BAA8B;qBACtB,oBAAoB;CA2B4C,CAAA;AACnF,yEAAyE;AACzE,eAAO,MAAM,0BAA0B;;;;;;;;;cAhC/B,MAAM;gBACJ,UAAU;iBACT,8BAA8B;yBACtB,oBAAoB;;;;;;;;;;cAH/B,MAAM;gBACJ,UAAU;iBACT,8BAA8B;yBACtB,oBAAoB;;CA6B0E,CAAA;AACjH,2CAA2C;AAC3C,eAAO,MAAM,0BAA0B;;;;;;;;;cAlC/B,MAAM;gBACJ,UAAU;iBACT,8BAA8B;yBACtB,oBAAoB;;;;;;;;;;cAH/B,MAAM;gBACJ,UAAU;iBACT,8BAA8B;yBACtB,oBAAoB;;CA+B0E,CAAA"}
|
|
@@ -33,7 +33,7 @@ export interface SimpleMempoolRunnerParams extends CreatableProviderParams {
|
|
|
33
33
|
/** SimpleMempoolRunner implementation. */
|
|
34
34
|
export declare class SimpleMempoolRunner extends AbstractCreatableProvider<SimpleMempoolRunnerParams> implements MempoolRunner {
|
|
35
35
|
static readonly defaultMoniker: "MempoolRunner";
|
|
36
|
-
static readonly dependencies: ("
|
|
36
|
+
static readonly dependencies: ("BlockValidationViewer" | "ChainContractViewer" | "FinalizationViewer" | "TransactionValidationViewer")[];
|
|
37
37
|
static readonly monikers: "MempoolRunner"[];
|
|
38
38
|
moniker: "MempoolRunner";
|
|
39
39
|
protected _blockValidationViewer: BlockValidationViewer;
|