@taqueria/protocol 0.19.3 → 0.19.5
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/Base.d.ts +1 -1
- package/Base.d.ts.map +1 -1
- package/Base.js +1 -1
- package/Base.js.map +1 -1
- package/Base.mjs +1 -1
- package/Base.mjs.map +1 -1
- package/Config.d.ts +193 -194
- package/Config.d.ts.map +1 -1
- package/Config.js +21 -18
- package/Config.js.map +1 -1
- package/Config.mjs +22 -19
- package/Config.mjs.map +1 -1
- package/EphemeralState.d.ts +3 -1
- package/EphemeralState.d.ts.map +1 -1
- package/Faucet.d.ts +97 -98
- package/Faucet.d.ts.map +1 -1
- package/Faucet.js +20 -32
- package/Faucet.js.map +1 -1
- package/Faucet.mjs +20 -32
- package/Faucet.mjs.map +1 -1
- package/LoadedConfig.d.ts +201 -202
- package/LoadedConfig.d.ts.map +1 -1
- package/NetworkConfig.d.ts +107 -108
- package/NetworkConfig.d.ts.map +1 -1
- package/Operation.d.ts +32 -32
- package/ParsedOperation.d.ts +8 -8
- package/ParsedTemplate.d.ts +16 -16
- package/PluginSchema.d.ts +224 -224
- package/RequestArgs.d.ts +376 -376
- package/Template.d.ts +48 -48
- package/package.json +1 -1
package/LoadedConfig.d.ts
CHANGED
|
@@ -44,59 +44,58 @@ export declare const rawSchema: z.ZodObject<z.extendShape<Omit<z.extendShape<{
|
|
|
44
44
|
type: "npm" | "binary" | "deno";
|
|
45
45
|
name: string;
|
|
46
46
|
}[], unknown>>;
|
|
47
|
-
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
47
|
+
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
48
48
|
label: z.ZodString;
|
|
49
49
|
rpcUrl: z.ZodString;
|
|
50
50
|
protocol: z.ZodEffects<z.ZodString, string, string>;
|
|
51
|
-
faucet: z.ZodObject<
|
|
52
|
-
mnemonic: z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>;
|
|
53
|
-
email: z.ZodOptional<z.ZodString>;
|
|
54
|
-
password: z.ZodOptional<z.ZodString>;
|
|
55
|
-
amount: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
56
|
-
activation_code: z.ZodOptional<z.ZodString>;
|
|
57
|
-
}, {
|
|
51
|
+
faucet: z.ZodObject<{
|
|
58
52
|
pkh: z.ZodString;
|
|
59
|
-
|
|
60
|
-
email
|
|
61
|
-
password
|
|
62
|
-
amount
|
|
63
|
-
activation_code
|
|
64
|
-
|
|
53
|
+
mnemonic: z.ZodArray<z.ZodString, "many">;
|
|
54
|
+
email: z.ZodString;
|
|
55
|
+
password: z.ZodString;
|
|
56
|
+
amount: z.ZodString;
|
|
57
|
+
activation_code: z.ZodString;
|
|
58
|
+
}, "strip", z.ZodTypeAny, {
|
|
65
59
|
pkh: string;
|
|
60
|
+
mnemonic: string[];
|
|
61
|
+
email: string;
|
|
62
|
+
password: string;
|
|
63
|
+
amount: string;
|
|
64
|
+
activation_code: string;
|
|
66
65
|
}, {
|
|
67
|
-
mnemonic?: unknown;
|
|
68
|
-
email?: string | undefined;
|
|
69
|
-
password?: string | undefined;
|
|
70
|
-
amount?: string | undefined;
|
|
71
|
-
activation_code?: string | undefined;
|
|
72
66
|
pkh: string;
|
|
67
|
+
mnemonic: string[];
|
|
68
|
+
email: string;
|
|
69
|
+
password: string;
|
|
70
|
+
amount: string;
|
|
71
|
+
activation_code: string;
|
|
73
72
|
}>;
|
|
74
73
|
}, "strip", z.ZodTypeAny, {
|
|
75
74
|
label: string;
|
|
76
75
|
rpcUrl: string;
|
|
77
76
|
protocol: string;
|
|
78
77
|
faucet: {
|
|
79
|
-
email?: string | undefined;
|
|
80
|
-
password?: string | undefined;
|
|
81
|
-
amount?: string | undefined;
|
|
82
|
-
activation_code?: string | undefined;
|
|
83
|
-
mnemonic: string[];
|
|
84
78
|
pkh: string;
|
|
79
|
+
mnemonic: string[];
|
|
80
|
+
email: string;
|
|
81
|
+
password: string;
|
|
82
|
+
amount: string;
|
|
83
|
+
activation_code: string;
|
|
85
84
|
};
|
|
86
85
|
}, {
|
|
87
86
|
label: string;
|
|
88
87
|
rpcUrl: string;
|
|
89
88
|
protocol: string;
|
|
90
89
|
faucet: {
|
|
91
|
-
mnemonic?: unknown;
|
|
92
|
-
email?: string | undefined;
|
|
93
|
-
password?: string | undefined;
|
|
94
|
-
amount?: string | undefined;
|
|
95
|
-
activation_code?: string | undefined;
|
|
96
90
|
pkh: string;
|
|
91
|
+
mnemonic: string[];
|
|
92
|
+
email: string;
|
|
93
|
+
password: string;
|
|
94
|
+
amount: string;
|
|
95
|
+
activation_code: string;
|
|
97
96
|
};
|
|
98
|
-
}>>>;
|
|
99
|
-
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
97
|
+
}>, z.ZodString]>>>;
|
|
98
|
+
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
100
99
|
label: z.ZodString;
|
|
101
100
|
rpcUrl: z.ZodString;
|
|
102
101
|
protocol: z.ZodString;
|
|
@@ -170,7 +169,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<Omit<z.extendShape<{
|
|
|
170
169
|
label: string;
|
|
171
170
|
rpcUrl: string;
|
|
172
171
|
protocol: string;
|
|
173
|
-
}>>>;
|
|
172
|
+
}>, z.ZodString]>>>;
|
|
174
173
|
environment: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
175
174
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
176
175
|
sandboxes: z.ZodArray<z.ZodString, "many">;
|
|
@@ -231,20 +230,20 @@ export declare const rawSchema: z.ZodObject<z.extendShape<Omit<z.extendShape<{
|
|
|
231
230
|
sourceFile: string;
|
|
232
231
|
hash: string;
|
|
233
232
|
}> | undefined;
|
|
234
|
-
network?: Record<string, {
|
|
233
|
+
network?: Record<string, string | {
|
|
235
234
|
label: string;
|
|
236
235
|
rpcUrl: string;
|
|
237
236
|
protocol: string;
|
|
238
237
|
faucet: {
|
|
239
|
-
email?: string | undefined;
|
|
240
|
-
password?: string | undefined;
|
|
241
|
-
amount?: string | undefined;
|
|
242
|
-
activation_code?: string | undefined;
|
|
243
|
-
mnemonic: string[];
|
|
244
238
|
pkh: string;
|
|
239
|
+
mnemonic: string[];
|
|
240
|
+
email: string;
|
|
241
|
+
password: string;
|
|
242
|
+
amount: string;
|
|
243
|
+
activation_code: string;
|
|
245
244
|
};
|
|
246
245
|
}> | undefined;
|
|
247
|
-
sandbox?: Record<string, {
|
|
246
|
+
sandbox?: Record<string, string | {
|
|
248
247
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
249
248
|
plugin?: string | undefined;
|
|
250
249
|
accounts?: {
|
|
@@ -295,20 +294,20 @@ export declare const rawSchema: z.ZodObject<z.extendShape<Omit<z.extendShape<{
|
|
|
295
294
|
hash: string;
|
|
296
295
|
}> | undefined;
|
|
297
296
|
artifactsDir?: unknown;
|
|
298
|
-
network?: Record<string, {
|
|
297
|
+
network?: Record<string, string | {
|
|
299
298
|
label: string;
|
|
300
299
|
rpcUrl: string;
|
|
301
300
|
protocol: string;
|
|
302
301
|
faucet: {
|
|
303
|
-
mnemonic?: unknown;
|
|
304
|
-
email?: string | undefined;
|
|
305
|
-
password?: string | undefined;
|
|
306
|
-
amount?: string | undefined;
|
|
307
|
-
activation_code?: string | undefined;
|
|
308
302
|
pkh: string;
|
|
303
|
+
mnemonic: string[];
|
|
304
|
+
email: string;
|
|
305
|
+
password: string;
|
|
306
|
+
amount: string;
|
|
307
|
+
activation_code: string;
|
|
309
308
|
};
|
|
310
309
|
}> | undefined;
|
|
311
|
-
sandbox?: Record<string, {
|
|
310
|
+
sandbox?: Record<string, string | {
|
|
312
311
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
313
312
|
plugin?: string | undefined;
|
|
314
313
|
accounts?: {
|
|
@@ -375,7 +374,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
375
374
|
hash: string;
|
|
376
375
|
}>>>;
|
|
377
376
|
}, {
|
|
378
|
-
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
377
|
+
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
379
378
|
label: string & {
|
|
380
379
|
readonly __kind: any;
|
|
381
380
|
};
|
|
@@ -386,14 +385,14 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
386
385
|
readonly __kind: any;
|
|
387
386
|
};
|
|
388
387
|
faucet: Flatten<{
|
|
389
|
-
email?: string | undefined;
|
|
390
|
-
password?: string | undefined;
|
|
391
|
-
amount?: string | undefined;
|
|
392
|
-
activation_code?: string | undefined;
|
|
393
|
-
mnemonic: string[];
|
|
394
388
|
pkh: string & {
|
|
395
389
|
readonly __kind: any;
|
|
396
390
|
};
|
|
391
|
+
mnemonic: string[];
|
|
392
|
+
email: string;
|
|
393
|
+
password: string;
|
|
394
|
+
amount: string;
|
|
395
|
+
activation_code: string;
|
|
397
396
|
} & {
|
|
398
397
|
readonly __kind: any;
|
|
399
398
|
}>;
|
|
@@ -410,21 +409,21 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
410
409
|
readonly __kind: any;
|
|
411
410
|
};
|
|
412
411
|
faucet: Flatten<{
|
|
413
|
-
email?: string | undefined;
|
|
414
|
-
password?: string | undefined;
|
|
415
|
-
amount?: string | undefined;
|
|
416
|
-
activation_code?: string | undefined;
|
|
417
|
-
mnemonic: string[];
|
|
418
412
|
pkh: string & {
|
|
419
413
|
readonly __kind: any;
|
|
420
414
|
};
|
|
415
|
+
mnemonic: string[];
|
|
416
|
+
email: string;
|
|
417
|
+
password: string;
|
|
418
|
+
amount: string;
|
|
419
|
+
activation_code: string;
|
|
421
420
|
} & {
|
|
422
421
|
readonly __kind: any;
|
|
423
422
|
}>;
|
|
424
423
|
} & {
|
|
425
424
|
readonly __kind: any;
|
|
426
|
-
}>, any>>>;
|
|
427
|
-
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
425
|
+
}>, any>, z.ZodString]>>>;
|
|
426
|
+
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
428
427
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
429
428
|
plugin?: (string & {
|
|
430
429
|
readonly __kind: any;
|
|
@@ -484,7 +483,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
484
483
|
};
|
|
485
484
|
} & {
|
|
486
485
|
readonly __kind: any;
|
|
487
|
-
}, any>>>;
|
|
486
|
+
}, any>, z.ZodString]>>>;
|
|
488
487
|
environment: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
489
488
|
storage?: Record<string, any> | undefined;
|
|
490
489
|
aliases?: Record<string, any> | undefined;
|
|
@@ -571,7 +570,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
571
570
|
readonly __kind: any;
|
|
572
571
|
};
|
|
573
572
|
}> | undefined;
|
|
574
|
-
network?: Record<string, Flatten<{
|
|
573
|
+
network?: Record<string, string | Flatten<{
|
|
575
574
|
label: string & {
|
|
576
575
|
readonly __kind: any;
|
|
577
576
|
};
|
|
@@ -582,21 +581,21 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
582
581
|
readonly __kind: any;
|
|
583
582
|
};
|
|
584
583
|
faucet: Flatten<{
|
|
585
|
-
email?: string | undefined;
|
|
586
|
-
password?: string | undefined;
|
|
587
|
-
amount?: string | undefined;
|
|
588
|
-
activation_code?: string | undefined;
|
|
589
|
-
mnemonic: string[];
|
|
590
584
|
pkh: string & {
|
|
591
585
|
readonly __kind: any;
|
|
592
586
|
};
|
|
587
|
+
mnemonic: string[];
|
|
588
|
+
email: string;
|
|
589
|
+
password: string;
|
|
590
|
+
amount: string;
|
|
591
|
+
activation_code: string;
|
|
593
592
|
} & {
|
|
594
593
|
readonly __kind: any;
|
|
595
594
|
}>;
|
|
596
595
|
} & {
|
|
597
596
|
readonly __kind: any;
|
|
598
597
|
}>> | undefined;
|
|
599
|
-
sandbox?: Record<string, {
|
|
598
|
+
sandbox?: Record<string, string | ({
|
|
600
599
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
601
600
|
plugin?: (string & {
|
|
602
601
|
readonly __kind: any;
|
|
@@ -626,7 +625,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
626
625
|
};
|
|
627
626
|
} & {
|
|
628
627
|
readonly __kind: any;
|
|
629
|
-
}> | undefined;
|
|
628
|
+
})> | undefined;
|
|
630
629
|
environment?: Record<string, string | Flatten<{
|
|
631
630
|
storage?: Record<string, any> | undefined;
|
|
632
631
|
aliases?: Record<string, any> | undefined;
|
|
@@ -688,7 +687,7 @@ export declare const generatedSchemas: {
|
|
|
688
687
|
readonly __kind: any;
|
|
689
688
|
};
|
|
690
689
|
}> | undefined;
|
|
691
|
-
network?: Record<string, Flatten<{
|
|
690
|
+
network?: Record<string, string | Flatten<{
|
|
692
691
|
label: string & {
|
|
693
692
|
readonly __kind: any;
|
|
694
693
|
};
|
|
@@ -699,21 +698,21 @@ export declare const generatedSchemas: {
|
|
|
699
698
|
readonly __kind: any;
|
|
700
699
|
};
|
|
701
700
|
faucet: Flatten<{
|
|
702
|
-
email?: string | undefined;
|
|
703
|
-
password?: string | undefined;
|
|
704
|
-
amount?: string | undefined;
|
|
705
|
-
activation_code?: string | undefined;
|
|
706
|
-
mnemonic: string[];
|
|
707
701
|
pkh: string & {
|
|
708
702
|
readonly __kind: any;
|
|
709
703
|
};
|
|
704
|
+
mnemonic: string[];
|
|
705
|
+
email: string;
|
|
706
|
+
password: string;
|
|
707
|
+
amount: string;
|
|
708
|
+
activation_code: string;
|
|
710
709
|
} & {
|
|
711
710
|
readonly __kind: any;
|
|
712
711
|
}>;
|
|
713
712
|
} & {
|
|
714
713
|
readonly __kind: any;
|
|
715
714
|
}>> | undefined;
|
|
716
|
-
sandbox?: Record<string, {
|
|
715
|
+
sandbox?: Record<string, string | ({
|
|
717
716
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
718
717
|
plugin?: (string & {
|
|
719
718
|
readonly __kind: any;
|
|
@@ -743,7 +742,7 @@ export declare const generatedSchemas: {
|
|
|
743
742
|
};
|
|
744
743
|
} & {
|
|
745
744
|
readonly __kind: any;
|
|
746
|
-
}> | undefined;
|
|
745
|
+
})> | undefined;
|
|
747
746
|
environment?: Record<string, string | Flatten<{
|
|
748
747
|
storage?: Record<string, any> | undefined;
|
|
749
748
|
aliases?: Record<string, any> | undefined;
|
|
@@ -791,7 +790,7 @@ export declare const generatedSchemas: {
|
|
|
791
790
|
readonly __kind: any;
|
|
792
791
|
};
|
|
793
792
|
}> | undefined;
|
|
794
|
-
network?: Record<string, Flatten<{
|
|
793
|
+
network?: Record<string, string | Flatten<{
|
|
795
794
|
label: string & {
|
|
796
795
|
readonly __kind: any;
|
|
797
796
|
};
|
|
@@ -802,21 +801,21 @@ export declare const generatedSchemas: {
|
|
|
802
801
|
readonly __kind: any;
|
|
803
802
|
};
|
|
804
803
|
faucet: Flatten<{
|
|
805
|
-
email?: string | undefined;
|
|
806
|
-
password?: string | undefined;
|
|
807
|
-
amount?: string | undefined;
|
|
808
|
-
activation_code?: string | undefined;
|
|
809
|
-
mnemonic: string[];
|
|
810
804
|
pkh: string & {
|
|
811
805
|
readonly __kind: any;
|
|
812
806
|
};
|
|
807
|
+
mnemonic: string[];
|
|
808
|
+
email: string;
|
|
809
|
+
password: string;
|
|
810
|
+
amount: string;
|
|
811
|
+
activation_code: string;
|
|
813
812
|
} & {
|
|
814
813
|
readonly __kind: any;
|
|
815
814
|
}>;
|
|
816
815
|
} & {
|
|
817
816
|
readonly __kind: any;
|
|
818
817
|
}>> | undefined;
|
|
819
|
-
sandbox?: Record<string, {
|
|
818
|
+
sandbox?: Record<string, string | ({
|
|
820
819
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
821
820
|
plugin?: (string & {
|
|
822
821
|
readonly __kind: any;
|
|
@@ -846,7 +845,7 @@ export declare const generatedSchemas: {
|
|
|
846
845
|
};
|
|
847
846
|
} & {
|
|
848
847
|
readonly __kind: any;
|
|
849
|
-
}> | undefined;
|
|
848
|
+
})> | undefined;
|
|
850
849
|
environment?: Record<string, string | Flatten<{
|
|
851
850
|
storage?: Record<string, any> | undefined;
|
|
852
851
|
aliases?: Record<string, any> | undefined;
|
|
@@ -890,7 +889,7 @@ export declare const generatedSchemas: {
|
|
|
890
889
|
readonly __kind: any;
|
|
891
890
|
};
|
|
892
891
|
}> | undefined;
|
|
893
|
-
network?: Record<string, Flatten<{
|
|
892
|
+
network?: Record<string, string | Flatten<{
|
|
894
893
|
label: string & {
|
|
895
894
|
readonly __kind: any;
|
|
896
895
|
};
|
|
@@ -901,21 +900,21 @@ export declare const generatedSchemas: {
|
|
|
901
900
|
readonly __kind: any;
|
|
902
901
|
};
|
|
903
902
|
faucet: Flatten<{
|
|
904
|
-
email?: string | undefined;
|
|
905
|
-
password?: string | undefined;
|
|
906
|
-
amount?: string | undefined;
|
|
907
|
-
activation_code?: string | undefined;
|
|
908
|
-
mnemonic: string[];
|
|
909
903
|
pkh: string & {
|
|
910
904
|
readonly __kind: any;
|
|
911
905
|
};
|
|
906
|
+
mnemonic: string[];
|
|
907
|
+
email: string;
|
|
908
|
+
password: string;
|
|
909
|
+
amount: string;
|
|
910
|
+
activation_code: string;
|
|
912
911
|
} & {
|
|
913
912
|
readonly __kind: any;
|
|
914
913
|
}>;
|
|
915
914
|
} & {
|
|
916
915
|
readonly __kind: any;
|
|
917
916
|
}>> | undefined;
|
|
918
|
-
sandbox?: Record<string, {
|
|
917
|
+
sandbox?: Record<string, string | ({
|
|
919
918
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
920
919
|
plugin?: (string & {
|
|
921
920
|
readonly __kind: any;
|
|
@@ -945,7 +944,7 @@ export declare const generatedSchemas: {
|
|
|
945
944
|
};
|
|
946
945
|
} & {
|
|
947
946
|
readonly __kind: any;
|
|
948
|
-
}> | undefined;
|
|
947
|
+
})> | undefined;
|
|
949
948
|
environment?: Record<string, string | Flatten<{
|
|
950
949
|
storage?: Record<string, any> | undefined;
|
|
951
950
|
aliases?: Record<string, any> | undefined;
|
|
@@ -992,7 +991,7 @@ export declare const generatedSchemas: {
|
|
|
992
991
|
readonly __kind: any;
|
|
993
992
|
};
|
|
994
993
|
}> | undefined;
|
|
995
|
-
network?: Record<string, Flatten<{
|
|
994
|
+
network?: Record<string, string | Flatten<{
|
|
996
995
|
label: string & {
|
|
997
996
|
readonly __kind: any;
|
|
998
997
|
};
|
|
@@ -1003,21 +1002,21 @@ export declare const generatedSchemas: {
|
|
|
1003
1002
|
readonly __kind: any;
|
|
1004
1003
|
};
|
|
1005
1004
|
faucet: Flatten<{
|
|
1006
|
-
email?: string | undefined;
|
|
1007
|
-
password?: string | undefined;
|
|
1008
|
-
amount?: string | undefined;
|
|
1009
|
-
activation_code?: string | undefined;
|
|
1010
|
-
mnemonic: string[];
|
|
1011
1005
|
pkh: string & {
|
|
1012
1006
|
readonly __kind: any;
|
|
1013
1007
|
};
|
|
1008
|
+
mnemonic: string[];
|
|
1009
|
+
email: string;
|
|
1010
|
+
password: string;
|
|
1011
|
+
amount: string;
|
|
1012
|
+
activation_code: string;
|
|
1014
1013
|
} & {
|
|
1015
1014
|
readonly __kind: any;
|
|
1016
1015
|
}>;
|
|
1017
1016
|
} & {
|
|
1018
1017
|
readonly __kind: any;
|
|
1019
1018
|
}>> | undefined;
|
|
1020
|
-
sandbox?: Record<string, {
|
|
1019
|
+
sandbox?: Record<string, string | ({
|
|
1021
1020
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1022
1021
|
plugin?: (string & {
|
|
1023
1022
|
readonly __kind: any;
|
|
@@ -1047,7 +1046,7 @@ export declare const generatedSchemas: {
|
|
|
1047
1046
|
};
|
|
1048
1047
|
} & {
|
|
1049
1048
|
readonly __kind: any;
|
|
1050
|
-
}> | undefined;
|
|
1049
|
+
})> | undefined;
|
|
1051
1050
|
environment?: Record<string, string | Flatten<{
|
|
1052
1051
|
storage?: Record<string, any> | undefined;
|
|
1053
1052
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1093,20 +1092,20 @@ export declare const generatedSchemas: {
|
|
|
1093
1092
|
sourceFile: string;
|
|
1094
1093
|
hash: string;
|
|
1095
1094
|
}> | undefined;
|
|
1096
|
-
network?: Record<string, {
|
|
1095
|
+
network?: Record<string, string | {
|
|
1097
1096
|
label: string;
|
|
1098
1097
|
rpcUrl: string;
|
|
1099
1098
|
protocol: string;
|
|
1100
1099
|
faucet: {
|
|
1101
|
-
email?: string | undefined;
|
|
1102
|
-
password?: string | undefined;
|
|
1103
|
-
amount?: string | undefined;
|
|
1104
|
-
activation_code?: string | undefined;
|
|
1105
|
-
mnemonic: string[];
|
|
1106
1100
|
pkh: string;
|
|
1101
|
+
mnemonic: string[];
|
|
1102
|
+
email: string;
|
|
1103
|
+
password: string;
|
|
1104
|
+
amount: string;
|
|
1105
|
+
activation_code: string;
|
|
1107
1106
|
};
|
|
1108
1107
|
}> | undefined;
|
|
1109
|
-
sandbox?: Record<string, {
|
|
1108
|
+
sandbox?: Record<string, string | {
|
|
1110
1109
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1111
1110
|
plugin?: string | undefined;
|
|
1112
1111
|
accounts?: {
|
|
@@ -1155,7 +1154,7 @@ export declare const generatedSchemas: {
|
|
|
1155
1154
|
readonly __kind: any;
|
|
1156
1155
|
};
|
|
1157
1156
|
}> | undefined;
|
|
1158
|
-
network?: Record<string, Flatten<{
|
|
1157
|
+
network?: Record<string, string | Flatten<{
|
|
1159
1158
|
label: string & {
|
|
1160
1159
|
readonly __kind: any;
|
|
1161
1160
|
};
|
|
@@ -1166,21 +1165,21 @@ export declare const generatedSchemas: {
|
|
|
1166
1165
|
readonly __kind: any;
|
|
1167
1166
|
};
|
|
1168
1167
|
faucet: Flatten<{
|
|
1169
|
-
email?: string | undefined;
|
|
1170
|
-
password?: string | undefined;
|
|
1171
|
-
amount?: string | undefined;
|
|
1172
|
-
activation_code?: string | undefined;
|
|
1173
|
-
mnemonic: string[];
|
|
1174
1168
|
pkh: string & {
|
|
1175
1169
|
readonly __kind: any;
|
|
1176
1170
|
};
|
|
1171
|
+
mnemonic: string[];
|
|
1172
|
+
email: string;
|
|
1173
|
+
password: string;
|
|
1174
|
+
amount: string;
|
|
1175
|
+
activation_code: string;
|
|
1177
1176
|
} & {
|
|
1178
1177
|
readonly __kind: any;
|
|
1179
1178
|
}>;
|
|
1180
1179
|
} & {
|
|
1181
1180
|
readonly __kind: any;
|
|
1182
1181
|
}>> | undefined;
|
|
1183
|
-
sandbox?: Record<string, {
|
|
1182
|
+
sandbox?: Record<string, string | ({
|
|
1184
1183
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1185
1184
|
plugin?: (string & {
|
|
1186
1185
|
readonly __kind: any;
|
|
@@ -1210,7 +1209,7 @@ export declare const generatedSchemas: {
|
|
|
1210
1209
|
};
|
|
1211
1210
|
} & {
|
|
1212
1211
|
readonly __kind: any;
|
|
1213
|
-
}> | undefined;
|
|
1212
|
+
})> | undefined;
|
|
1214
1213
|
environment?: Record<string, string | Flatten<{
|
|
1215
1214
|
storage?: Record<string, any> | undefined;
|
|
1216
1215
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1254,7 +1253,7 @@ export declare const generatedSchemas: {
|
|
|
1254
1253
|
readonly __kind: any;
|
|
1255
1254
|
};
|
|
1256
1255
|
}> | undefined;
|
|
1257
|
-
network?: Record<string, Flatten<{
|
|
1256
|
+
network?: Record<string, string | Flatten<{
|
|
1258
1257
|
label: string & {
|
|
1259
1258
|
readonly __kind: any;
|
|
1260
1259
|
};
|
|
@@ -1265,21 +1264,21 @@ export declare const generatedSchemas: {
|
|
|
1265
1264
|
readonly __kind: any;
|
|
1266
1265
|
};
|
|
1267
1266
|
faucet: Flatten<{
|
|
1268
|
-
email?: string | undefined;
|
|
1269
|
-
password?: string | undefined;
|
|
1270
|
-
amount?: string | undefined;
|
|
1271
|
-
activation_code?: string | undefined;
|
|
1272
|
-
mnemonic: string[];
|
|
1273
1267
|
pkh: string & {
|
|
1274
1268
|
readonly __kind: any;
|
|
1275
1269
|
};
|
|
1270
|
+
mnemonic: string[];
|
|
1271
|
+
email: string;
|
|
1272
|
+
password: string;
|
|
1273
|
+
amount: string;
|
|
1274
|
+
activation_code: string;
|
|
1276
1275
|
} & {
|
|
1277
1276
|
readonly __kind: any;
|
|
1278
1277
|
}>;
|
|
1279
1278
|
} & {
|
|
1280
1279
|
readonly __kind: any;
|
|
1281
1280
|
}>> | undefined;
|
|
1282
|
-
sandbox?: Record<string, {
|
|
1281
|
+
sandbox?: Record<string, string | ({
|
|
1283
1282
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1284
1283
|
plugin?: (string & {
|
|
1285
1284
|
readonly __kind: any;
|
|
@@ -1309,7 +1308,7 @@ export declare const generatedSchemas: {
|
|
|
1309
1308
|
};
|
|
1310
1309
|
} & {
|
|
1311
1310
|
readonly __kind: any;
|
|
1312
|
-
}> | undefined;
|
|
1311
|
+
})> | undefined;
|
|
1313
1312
|
environment?: Record<string, string | Flatten<{
|
|
1314
1313
|
storage?: Record<string, any> | undefined;
|
|
1315
1314
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1356,7 +1355,7 @@ export declare const generatedSchemas: {
|
|
|
1356
1355
|
readonly __kind: any;
|
|
1357
1356
|
};
|
|
1358
1357
|
}> | undefined;
|
|
1359
|
-
network?: Record<string, Flatten<{
|
|
1358
|
+
network?: Record<string, string | Flatten<{
|
|
1360
1359
|
label: string & {
|
|
1361
1360
|
readonly __kind: any;
|
|
1362
1361
|
};
|
|
@@ -1367,21 +1366,21 @@ export declare const generatedSchemas: {
|
|
|
1367
1366
|
readonly __kind: any;
|
|
1368
1367
|
};
|
|
1369
1368
|
faucet: Flatten<{
|
|
1370
|
-
email?: string | undefined;
|
|
1371
|
-
password?: string | undefined;
|
|
1372
|
-
amount?: string | undefined;
|
|
1373
|
-
activation_code?: string | undefined;
|
|
1374
|
-
mnemonic: string[];
|
|
1375
1369
|
pkh: string & {
|
|
1376
1370
|
readonly __kind: any;
|
|
1377
1371
|
};
|
|
1372
|
+
mnemonic: string[];
|
|
1373
|
+
email: string;
|
|
1374
|
+
password: string;
|
|
1375
|
+
amount: string;
|
|
1376
|
+
activation_code: string;
|
|
1378
1377
|
} & {
|
|
1379
1378
|
readonly __kind: any;
|
|
1380
1379
|
}>;
|
|
1381
1380
|
} & {
|
|
1382
1381
|
readonly __kind: any;
|
|
1383
1382
|
}>> | undefined;
|
|
1384
|
-
sandbox?: Record<string, {
|
|
1383
|
+
sandbox?: Record<string, string | ({
|
|
1385
1384
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1386
1385
|
plugin?: (string & {
|
|
1387
1386
|
readonly __kind: any;
|
|
@@ -1411,7 +1410,7 @@ export declare const generatedSchemas: {
|
|
|
1411
1410
|
};
|
|
1412
1411
|
} & {
|
|
1413
1412
|
readonly __kind: any;
|
|
1414
|
-
}> | undefined;
|
|
1413
|
+
})> | undefined;
|
|
1415
1414
|
environment?: Record<string, string | Flatten<{
|
|
1416
1415
|
storage?: Record<string, any> | undefined;
|
|
1417
1416
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1460,20 +1459,20 @@ export declare const create: (input: {
|
|
|
1460
1459
|
sourceFile: string;
|
|
1461
1460
|
hash: string;
|
|
1462
1461
|
}> | undefined;
|
|
1463
|
-
network?: Record<string, {
|
|
1462
|
+
network?: Record<string, string | {
|
|
1464
1463
|
label: string;
|
|
1465
1464
|
rpcUrl: string;
|
|
1466
1465
|
protocol: string;
|
|
1467
1466
|
faucet: {
|
|
1468
|
-
email?: string | undefined;
|
|
1469
|
-
password?: string | undefined;
|
|
1470
|
-
amount?: string | undefined;
|
|
1471
|
-
activation_code?: string | undefined;
|
|
1472
|
-
mnemonic: string[];
|
|
1473
1467
|
pkh: string;
|
|
1468
|
+
mnemonic: string[];
|
|
1469
|
+
email: string;
|
|
1470
|
+
password: string;
|
|
1471
|
+
amount: string;
|
|
1472
|
+
activation_code: string;
|
|
1474
1473
|
};
|
|
1475
1474
|
}> | undefined;
|
|
1476
|
-
sandbox?: Record<string, {
|
|
1475
|
+
sandbox?: Record<string, string | {
|
|
1477
1476
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1478
1477
|
plugin?: string | undefined;
|
|
1479
1478
|
accounts?: {
|
|
@@ -1522,7 +1521,7 @@ export declare const create: (input: {
|
|
|
1522
1521
|
readonly __kind: any;
|
|
1523
1522
|
};
|
|
1524
1523
|
}> | undefined;
|
|
1525
|
-
network?: Record<string, Flatten<{
|
|
1524
|
+
network?: Record<string, string | Flatten<{
|
|
1526
1525
|
label: string & {
|
|
1527
1526
|
readonly __kind: any;
|
|
1528
1527
|
};
|
|
@@ -1533,21 +1532,21 @@ export declare const create: (input: {
|
|
|
1533
1532
|
readonly __kind: any;
|
|
1534
1533
|
};
|
|
1535
1534
|
faucet: Flatten<{
|
|
1536
|
-
email?: string | undefined;
|
|
1537
|
-
password?: string | undefined;
|
|
1538
|
-
amount?: string | undefined;
|
|
1539
|
-
activation_code?: string | undefined;
|
|
1540
|
-
mnemonic: string[];
|
|
1541
1535
|
pkh: string & {
|
|
1542
1536
|
readonly __kind: any;
|
|
1543
1537
|
};
|
|
1538
|
+
mnemonic: string[];
|
|
1539
|
+
email: string;
|
|
1540
|
+
password: string;
|
|
1541
|
+
amount: string;
|
|
1542
|
+
activation_code: string;
|
|
1544
1543
|
} & {
|
|
1545
1544
|
readonly __kind: any;
|
|
1546
1545
|
}>;
|
|
1547
1546
|
} & {
|
|
1548
1547
|
readonly __kind: any;
|
|
1549
1548
|
}>> | undefined;
|
|
1550
|
-
sandbox?: Record<string, {
|
|
1549
|
+
sandbox?: Record<string, string | ({
|
|
1551
1550
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1552
1551
|
plugin?: (string & {
|
|
1553
1552
|
readonly __kind: any;
|
|
@@ -1577,7 +1576,7 @@ export declare const create: (input: {
|
|
|
1577
1576
|
};
|
|
1578
1577
|
} & {
|
|
1579
1578
|
readonly __kind: any;
|
|
1580
|
-
}> | undefined;
|
|
1579
|
+
})> | undefined;
|
|
1581
1580
|
environment?: Record<string, string | Flatten<{
|
|
1582
1581
|
storage?: Record<string, any> | undefined;
|
|
1583
1582
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1621,7 +1620,7 @@ export declare const create: (input: {
|
|
|
1621
1620
|
readonly __kind: any;
|
|
1622
1621
|
};
|
|
1623
1622
|
}> | undefined;
|
|
1624
|
-
network?: Record<string, Flatten<{
|
|
1623
|
+
network?: Record<string, string | Flatten<{
|
|
1625
1624
|
label: string & {
|
|
1626
1625
|
readonly __kind: any;
|
|
1627
1626
|
};
|
|
@@ -1632,21 +1631,21 @@ export declare const create: (input: {
|
|
|
1632
1631
|
readonly __kind: any;
|
|
1633
1632
|
};
|
|
1634
1633
|
faucet: Flatten<{
|
|
1635
|
-
email?: string | undefined;
|
|
1636
|
-
password?: string | undefined;
|
|
1637
|
-
amount?: string | undefined;
|
|
1638
|
-
activation_code?: string | undefined;
|
|
1639
|
-
mnemonic: string[];
|
|
1640
1634
|
pkh: string & {
|
|
1641
1635
|
readonly __kind: any;
|
|
1642
1636
|
};
|
|
1637
|
+
mnemonic: string[];
|
|
1638
|
+
email: string;
|
|
1639
|
+
password: string;
|
|
1640
|
+
amount: string;
|
|
1641
|
+
activation_code: string;
|
|
1643
1642
|
} & {
|
|
1644
1643
|
readonly __kind: any;
|
|
1645
1644
|
}>;
|
|
1646
1645
|
} & {
|
|
1647
1646
|
readonly __kind: any;
|
|
1648
1647
|
}>> | undefined;
|
|
1649
|
-
sandbox?: Record<string, {
|
|
1648
|
+
sandbox?: Record<string, string | ({
|
|
1650
1649
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1651
1650
|
plugin?: (string & {
|
|
1652
1651
|
readonly __kind: any;
|
|
@@ -1676,7 +1675,7 @@ export declare const create: (input: {
|
|
|
1676
1675
|
};
|
|
1677
1676
|
} & {
|
|
1678
1677
|
readonly __kind: any;
|
|
1679
|
-
}> | undefined;
|
|
1678
|
+
})> | undefined;
|
|
1680
1679
|
environment?: Record<string, string | Flatten<{
|
|
1681
1680
|
storage?: Record<string, any> | undefined;
|
|
1682
1681
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1722,7 +1721,7 @@ export declare const create: (input: {
|
|
|
1722
1721
|
readonly __kind: any;
|
|
1723
1722
|
};
|
|
1724
1723
|
}> | undefined;
|
|
1725
|
-
network?: Record<string, Flatten<{
|
|
1724
|
+
network?: Record<string, string | Flatten<{
|
|
1726
1725
|
label: string & {
|
|
1727
1726
|
readonly __kind: any;
|
|
1728
1727
|
};
|
|
@@ -1733,21 +1732,21 @@ export declare const create: (input: {
|
|
|
1733
1732
|
readonly __kind: any;
|
|
1734
1733
|
};
|
|
1735
1734
|
faucet: Flatten<{
|
|
1736
|
-
email?: string | undefined;
|
|
1737
|
-
password?: string | undefined;
|
|
1738
|
-
amount?: string | undefined;
|
|
1739
|
-
activation_code?: string | undefined;
|
|
1740
|
-
mnemonic: string[];
|
|
1741
1735
|
pkh: string & {
|
|
1742
1736
|
readonly __kind: any;
|
|
1743
1737
|
};
|
|
1738
|
+
mnemonic: string[];
|
|
1739
|
+
email: string;
|
|
1740
|
+
password: string;
|
|
1741
|
+
amount: string;
|
|
1742
|
+
activation_code: string;
|
|
1744
1743
|
} & {
|
|
1745
1744
|
readonly __kind: any;
|
|
1746
1745
|
}>;
|
|
1747
1746
|
} & {
|
|
1748
1747
|
readonly __kind: any;
|
|
1749
1748
|
}>> | undefined;
|
|
1750
|
-
sandbox?: Record<string, {
|
|
1749
|
+
sandbox?: Record<string, string | ({
|
|
1751
1750
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1752
1751
|
plugin?: (string & {
|
|
1753
1752
|
readonly __kind: any;
|
|
@@ -1777,7 +1776,7 @@ export declare const create: (input: {
|
|
|
1777
1776
|
};
|
|
1778
1777
|
} & {
|
|
1779
1778
|
readonly __kind: any;
|
|
1780
|
-
}> | undefined;
|
|
1779
|
+
})> | undefined;
|
|
1781
1780
|
environment?: Record<string, string | Flatten<{
|
|
1782
1781
|
storage?: Record<string, any> | undefined;
|
|
1783
1782
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1823,7 +1822,7 @@ export declare const create: (input: {
|
|
|
1823
1822
|
readonly __kind: any;
|
|
1824
1823
|
};
|
|
1825
1824
|
}> | undefined;
|
|
1826
|
-
network?: Record<string, Flatten<{
|
|
1825
|
+
network?: Record<string, string | Flatten<{
|
|
1827
1826
|
label: string & {
|
|
1828
1827
|
readonly __kind: any;
|
|
1829
1828
|
};
|
|
@@ -1834,21 +1833,21 @@ export declare const create: (input: {
|
|
|
1834
1833
|
readonly __kind: any;
|
|
1835
1834
|
};
|
|
1836
1835
|
faucet: Flatten<{
|
|
1837
|
-
email?: string | undefined;
|
|
1838
|
-
password?: string | undefined;
|
|
1839
|
-
amount?: string | undefined;
|
|
1840
|
-
activation_code?: string | undefined;
|
|
1841
|
-
mnemonic: string[];
|
|
1842
1836
|
pkh: string & {
|
|
1843
1837
|
readonly __kind: any;
|
|
1844
1838
|
};
|
|
1839
|
+
mnemonic: string[];
|
|
1840
|
+
email: string;
|
|
1841
|
+
password: string;
|
|
1842
|
+
amount: string;
|
|
1843
|
+
activation_code: string;
|
|
1845
1844
|
} & {
|
|
1846
1845
|
readonly __kind: any;
|
|
1847
1846
|
}>;
|
|
1848
1847
|
} & {
|
|
1849
1848
|
readonly __kind: any;
|
|
1850
1849
|
}>> | undefined;
|
|
1851
|
-
sandbox?: Record<string, {
|
|
1850
|
+
sandbox?: Record<string, string | ({
|
|
1852
1851
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1853
1852
|
plugin?: (string & {
|
|
1854
1853
|
readonly __kind: any;
|
|
@@ -1878,7 +1877,7 @@ export declare const create: (input: {
|
|
|
1878
1877
|
};
|
|
1879
1878
|
} & {
|
|
1880
1879
|
readonly __kind: any;
|
|
1881
|
-
}> | undefined;
|
|
1880
|
+
})> | undefined;
|
|
1882
1881
|
environment?: Record<string, string | Flatten<{
|
|
1883
1882
|
storage?: Record<string, any> | undefined;
|
|
1884
1883
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1922,7 +1921,7 @@ export declare const create: (input: {
|
|
|
1922
1921
|
readonly __kind: any;
|
|
1923
1922
|
};
|
|
1924
1923
|
}> | undefined;
|
|
1925
|
-
network?: Record<string, Flatten<{
|
|
1924
|
+
network?: Record<string, string | Flatten<{
|
|
1926
1925
|
label: string & {
|
|
1927
1926
|
readonly __kind: any;
|
|
1928
1927
|
};
|
|
@@ -1933,21 +1932,21 @@ export declare const create: (input: {
|
|
|
1933
1932
|
readonly __kind: any;
|
|
1934
1933
|
};
|
|
1935
1934
|
faucet: Flatten<{
|
|
1936
|
-
email?: string | undefined;
|
|
1937
|
-
password?: string | undefined;
|
|
1938
|
-
amount?: string | undefined;
|
|
1939
|
-
activation_code?: string | undefined;
|
|
1940
|
-
mnemonic: string[];
|
|
1941
1935
|
pkh: string & {
|
|
1942
1936
|
readonly __kind: any;
|
|
1943
1937
|
};
|
|
1938
|
+
mnemonic: string[];
|
|
1939
|
+
email: string;
|
|
1940
|
+
password: string;
|
|
1941
|
+
amount: string;
|
|
1942
|
+
activation_code: string;
|
|
1944
1943
|
} & {
|
|
1945
1944
|
readonly __kind: any;
|
|
1946
1945
|
}>;
|
|
1947
1946
|
} & {
|
|
1948
1947
|
readonly __kind: any;
|
|
1949
1948
|
}>> | undefined;
|
|
1950
|
-
sandbox?: Record<string, {
|
|
1949
|
+
sandbox?: Record<string, string | ({
|
|
1951
1950
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1952
1951
|
plugin?: (string & {
|
|
1953
1952
|
readonly __kind: any;
|
|
@@ -1977,7 +1976,7 @@ export declare const create: (input: {
|
|
|
1977
1976
|
};
|
|
1978
1977
|
} & {
|
|
1979
1978
|
readonly __kind: any;
|
|
1980
|
-
}> | undefined;
|
|
1979
|
+
})> | undefined;
|
|
1981
1980
|
environment?: Record<string, string | Flatten<{
|
|
1982
1981
|
storage?: Record<string, any> | undefined;
|
|
1983
1982
|
aliases?: Record<string, any> | undefined;
|
|
@@ -2025,7 +2024,7 @@ export declare const schemas: {
|
|
|
2025
2024
|
readonly __kind: any;
|
|
2026
2025
|
};
|
|
2027
2026
|
}> | undefined;
|
|
2028
|
-
network?: Record<string, Flatten<{
|
|
2027
|
+
network?: Record<string, string | Flatten<{
|
|
2029
2028
|
label: string & {
|
|
2030
2029
|
readonly __kind: any;
|
|
2031
2030
|
};
|
|
@@ -2036,21 +2035,21 @@ export declare const schemas: {
|
|
|
2036
2035
|
readonly __kind: any;
|
|
2037
2036
|
};
|
|
2038
2037
|
faucet: Flatten<{
|
|
2039
|
-
email?: string | undefined;
|
|
2040
|
-
password?: string | undefined;
|
|
2041
|
-
amount?: string | undefined;
|
|
2042
|
-
activation_code?: string | undefined;
|
|
2043
|
-
mnemonic: string[];
|
|
2044
2038
|
pkh: string & {
|
|
2045
2039
|
readonly __kind: any;
|
|
2046
2040
|
};
|
|
2041
|
+
mnemonic: string[];
|
|
2042
|
+
email: string;
|
|
2043
|
+
password: string;
|
|
2044
|
+
amount: string;
|
|
2045
|
+
activation_code: string;
|
|
2047
2046
|
} & {
|
|
2048
2047
|
readonly __kind: any;
|
|
2049
2048
|
}>;
|
|
2050
2049
|
} & {
|
|
2051
2050
|
readonly __kind: any;
|
|
2052
2051
|
}>> | undefined;
|
|
2053
|
-
sandbox?: Record<string, {
|
|
2052
|
+
sandbox?: Record<string, string | ({
|
|
2054
2053
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2055
2054
|
plugin?: (string & {
|
|
2056
2055
|
readonly __kind: any;
|
|
@@ -2080,7 +2079,7 @@ export declare const schemas: {
|
|
|
2080
2079
|
};
|
|
2081
2080
|
} & {
|
|
2082
2081
|
readonly __kind: any;
|
|
2083
|
-
}> | undefined;
|
|
2082
|
+
})> | undefined;
|
|
2084
2083
|
environment?: Record<string, string | Flatten<{
|
|
2085
2084
|
storage?: Record<string, any> | undefined;
|
|
2086
2085
|
aliases?: Record<string, any> | undefined;
|
|
@@ -2126,7 +2125,7 @@ export declare const schemas: {
|
|
|
2126
2125
|
readonly __kind: any;
|
|
2127
2126
|
};
|
|
2128
2127
|
}> | undefined;
|
|
2129
|
-
network?: Record<string, Flatten<{
|
|
2128
|
+
network?: Record<string, string | Flatten<{
|
|
2130
2129
|
label: string & {
|
|
2131
2130
|
readonly __kind: any;
|
|
2132
2131
|
};
|
|
@@ -2137,21 +2136,21 @@ export declare const schemas: {
|
|
|
2137
2136
|
readonly __kind: any;
|
|
2138
2137
|
};
|
|
2139
2138
|
faucet: Flatten<{
|
|
2140
|
-
email?: string | undefined;
|
|
2141
|
-
password?: string | undefined;
|
|
2142
|
-
amount?: string | undefined;
|
|
2143
|
-
activation_code?: string | undefined;
|
|
2144
|
-
mnemonic: string[];
|
|
2145
2139
|
pkh: string & {
|
|
2146
2140
|
readonly __kind: any;
|
|
2147
2141
|
};
|
|
2142
|
+
mnemonic: string[];
|
|
2143
|
+
email: string;
|
|
2144
|
+
password: string;
|
|
2145
|
+
amount: string;
|
|
2146
|
+
activation_code: string;
|
|
2148
2147
|
} & {
|
|
2149
2148
|
readonly __kind: any;
|
|
2150
2149
|
}>;
|
|
2151
2150
|
} & {
|
|
2152
2151
|
readonly __kind: any;
|
|
2153
2152
|
}>> | undefined;
|
|
2154
|
-
sandbox?: Record<string, {
|
|
2153
|
+
sandbox?: Record<string, string | ({
|
|
2155
2154
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2156
2155
|
plugin?: (string & {
|
|
2157
2156
|
readonly __kind: any;
|
|
@@ -2181,7 +2180,7 @@ export declare const schemas: {
|
|
|
2181
2180
|
};
|
|
2182
2181
|
} & {
|
|
2183
2182
|
readonly __kind: any;
|
|
2184
|
-
}> | undefined;
|
|
2183
|
+
})> | undefined;
|
|
2185
2184
|
environment?: Record<string, string | Flatten<{
|
|
2186
2185
|
storage?: Record<string, any> | undefined;
|
|
2187
2186
|
aliases?: Record<string, any> | undefined;
|
|
@@ -2237,7 +2236,7 @@ export declare const toConfig: (config: LoadedConfig) => import("fluture").Futur
|
|
|
2237
2236
|
readonly __kind: any;
|
|
2238
2237
|
};
|
|
2239
2238
|
}> | undefined;
|
|
2240
|
-
network?: Record<string, Flatten<{
|
|
2239
|
+
network?: Record<string, string | Flatten<{
|
|
2241
2240
|
label: string & {
|
|
2242
2241
|
readonly __kind: any;
|
|
2243
2242
|
};
|
|
@@ -2248,21 +2247,21 @@ export declare const toConfig: (config: LoadedConfig) => import("fluture").Futur
|
|
|
2248
2247
|
readonly __kind: any;
|
|
2249
2248
|
};
|
|
2250
2249
|
faucet: Flatten<{
|
|
2251
|
-
email?: string | undefined;
|
|
2252
|
-
password?: string | undefined;
|
|
2253
|
-
amount?: string | undefined;
|
|
2254
|
-
activation_code?: string | undefined;
|
|
2255
|
-
mnemonic: string[];
|
|
2256
2250
|
pkh: string & {
|
|
2257
2251
|
readonly __kind: any;
|
|
2258
2252
|
};
|
|
2253
|
+
mnemonic: string[];
|
|
2254
|
+
email: string;
|
|
2255
|
+
password: string;
|
|
2256
|
+
amount: string;
|
|
2257
|
+
activation_code: string;
|
|
2259
2258
|
} & {
|
|
2260
2259
|
readonly __kind: any;
|
|
2261
2260
|
}>;
|
|
2262
2261
|
} & {
|
|
2263
2262
|
readonly __kind: any;
|
|
2264
2263
|
}>> | undefined;
|
|
2265
|
-
sandbox?: Record<string, {
|
|
2264
|
+
sandbox?: Record<string, string | ({
|
|
2266
2265
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2267
2266
|
plugin?: (string & {
|
|
2268
2267
|
readonly __kind: any;
|
|
@@ -2292,7 +2291,7 @@ export declare const toConfig: (config: LoadedConfig) => import("fluture").Futur
|
|
|
2292
2291
|
};
|
|
2293
2292
|
} & {
|
|
2294
2293
|
readonly __kind: any;
|
|
2295
|
-
}> | undefined;
|
|
2294
|
+
})> | undefined;
|
|
2296
2295
|
environment?: Record<string, string | Flatten<{
|
|
2297
2296
|
storage?: Record<string, any> | undefined;
|
|
2298
2297
|
aliases?: Record<string, any> | undefined;
|