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