@taqueria/protocol 0.19.6 → 0.20.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/Config.d.ts CHANGED
@@ -60,7 +60,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
60
60
  hash: string;
61
61
  }>>>;
62
62
  }, {
63
- network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
63
+ network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
64
64
  label: string & {
65
65
  readonly __kind: any;
66
66
  };
@@ -71,14 +71,14 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
71
71
  readonly __kind: any;
72
72
  };
73
73
  faucet: Flatten<{
74
+ email?: string | undefined;
75
+ password?: string | undefined;
76
+ amount?: string | undefined;
77
+ activation_code?: string | undefined;
78
+ mnemonic: string[];
74
79
  pkh: string & {
75
80
  readonly __kind: any;
76
81
  };
77
- mnemonic: string[];
78
- email: string;
79
- password: string;
80
- amount: string;
81
- activation_code: string;
82
82
  } & {
83
83
  readonly __kind: any;
84
84
  }>;
@@ -95,21 +95,21 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
95
95
  readonly __kind: any;
96
96
  };
97
97
  faucet: Flatten<{
98
+ email?: string | undefined;
99
+ password?: string | undefined;
100
+ amount?: string | undefined;
101
+ activation_code?: string | undefined;
102
+ mnemonic: string[];
98
103
  pkh: string & {
99
104
  readonly __kind: any;
100
105
  };
101
- mnemonic: string[];
102
- email: string;
103
- password: string;
104
- amount: string;
105
- activation_code: string;
106
106
  } & {
107
107
  readonly __kind: any;
108
108
  }>;
109
109
  } & {
110
110
  readonly __kind: any;
111
- }>, any>, z.ZodString]>>>;
112
- sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
111
+ }>, any>>>;
112
+ sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
113
113
  attributes?: Record<string, string | number | boolean> | undefined;
114
114
  plugin?: (string & {
115
115
  readonly __kind: any;
@@ -169,7 +169,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
169
169
  };
170
170
  } & {
171
171
  readonly __kind: any;
172
- }, any>, z.ZodString]>>>;
172
+ }, any>>>;
173
173
  environment: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
174
174
  storage?: Record<string, any> | undefined;
175
175
  aliases?: Record<string, any> | undefined;
@@ -230,7 +230,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
230
230
  readonly __kind: any;
231
231
  };
232
232
  }> | undefined;
233
- network?: Record<string, string | Flatten<{
233
+ network?: Record<string, Flatten<{
234
234
  label: string & {
235
235
  readonly __kind: any;
236
236
  };
@@ -241,21 +241,21 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
241
241
  readonly __kind: any;
242
242
  };
243
243
  faucet: Flatten<{
244
+ email?: string | undefined;
245
+ password?: string | undefined;
246
+ amount?: string | undefined;
247
+ activation_code?: string | undefined;
248
+ mnemonic: string[];
244
249
  pkh: string & {
245
250
  readonly __kind: any;
246
251
  };
247
- mnemonic: string[];
248
- email: string;
249
- password: string;
250
- amount: string;
251
- activation_code: string;
252
252
  } & {
253
253
  readonly __kind: any;
254
254
  }>;
255
255
  } & {
256
256
  readonly __kind: any;
257
257
  }>> | undefined;
258
- sandbox?: Record<string, string | ({
258
+ sandbox?: Record<string, {
259
259
  attributes?: Record<string, string | number | boolean> | undefined;
260
260
  plugin?: (string & {
261
261
  readonly __kind: any;
@@ -285,7 +285,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
285
285
  };
286
286
  } & {
287
287
  readonly __kind: any;
288
- })> | undefined;
288
+ }> | undefined;
289
289
  environment?: Record<string, string | Flatten<{
290
290
  storage?: Record<string, any> | undefined;
291
291
  aliases?: Record<string, any> | undefined;
@@ -362,58 +362,59 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
362
362
  type: "npm" | "binary" | "deno";
363
363
  name: string;
364
364
  }[], unknown>>;
365
- network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
365
+ network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
366
366
  label: z.ZodString;
367
367
  rpcUrl: z.ZodString;
368
368
  protocol: z.ZodEffects<z.ZodString, string, string>;
369
- faucet: z.ZodObject<{
369
+ faucet: z.ZodObject<z.extendShape<{
370
+ mnemonic: z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>;
371
+ email: z.ZodOptional<z.ZodString>;
372
+ password: z.ZodOptional<z.ZodString>;
373
+ amount: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
374
+ activation_code: z.ZodOptional<z.ZodString>;
375
+ }, {
370
376
  pkh: z.ZodString;
371
- mnemonic: z.ZodArray<z.ZodString, "many">;
372
- email: z.ZodString;
373
- password: z.ZodString;
374
- amount: z.ZodString;
375
- activation_code: z.ZodString;
376
- }, "strip", z.ZodTypeAny, {
377
- pkh: string;
377
+ }>, "strip", z.ZodTypeAny, {
378
+ email?: string | undefined;
379
+ password?: string | undefined;
380
+ amount?: string | undefined;
381
+ activation_code?: string | undefined;
378
382
  mnemonic: string[];
379
- email: string;
380
- password: string;
381
- amount: string;
382
- activation_code: string;
383
+ pkh: string;
383
384
  }, {
385
+ mnemonic?: unknown;
386
+ email?: string | undefined;
387
+ password?: string | undefined;
388
+ amount?: string | undefined;
389
+ activation_code?: string | undefined;
384
390
  pkh: string;
385
- mnemonic: string[];
386
- email: string;
387
- password: string;
388
- amount: string;
389
- activation_code: string;
390
391
  }>;
391
392
  }, "strip", z.ZodTypeAny, {
392
393
  label: string;
393
394
  rpcUrl: string;
394
395
  protocol: string;
395
396
  faucet: {
396
- pkh: string;
397
+ email?: string | undefined;
398
+ password?: string | undefined;
399
+ amount?: string | undefined;
400
+ activation_code?: string | undefined;
397
401
  mnemonic: string[];
398
- email: string;
399
- password: string;
400
- amount: string;
401
- activation_code: string;
402
+ pkh: string;
402
403
  };
403
404
  }, {
404
405
  label: string;
405
406
  rpcUrl: string;
406
407
  protocol: string;
407
408
  faucet: {
409
+ mnemonic?: unknown;
410
+ email?: string | undefined;
411
+ password?: string | undefined;
412
+ amount?: string | undefined;
413
+ activation_code?: string | undefined;
408
414
  pkh: string;
409
- mnemonic: string[];
410
- email: string;
411
- password: string;
412
- amount: string;
413
- activation_code: string;
414
415
  };
415
- }>, z.ZodString]>>>;
416
- sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
416
+ }>>>;
417
+ sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
417
418
  label: z.ZodString;
418
419
  rpcUrl: z.ZodString;
419
420
  protocol: z.ZodString;
@@ -487,7 +488,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
487
488
  label: string;
488
489
  rpcUrl: string;
489
490
  protocol: string;
490
- }>, z.ZodString]>>>;
491
+ }>>>;
491
492
  environment: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
492
493
  networks: z.ZodArray<z.ZodString, "many">;
493
494
  sandboxes: z.ZodArray<z.ZodString, "many">;
@@ -535,20 +536,20 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
535
536
  sourceFile: string;
536
537
  hash: string;
537
538
  }> | undefined;
538
- network?: Record<string, string | {
539
+ network?: Record<string, {
539
540
  label: string;
540
541
  rpcUrl: string;
541
542
  protocol: string;
542
543
  faucet: {
543
- pkh: string;
544
+ email?: string | undefined;
545
+ password?: string | undefined;
546
+ amount?: string | undefined;
547
+ activation_code?: string | undefined;
544
548
  mnemonic: string[];
545
- email: string;
546
- password: string;
547
- amount: string;
548
- activation_code: string;
549
+ pkh: string;
549
550
  };
550
551
  }> | undefined;
551
- sandbox?: Record<string, string | {
552
+ sandbox?: Record<string, {
552
553
  attributes?: Record<string, string | number | boolean> | undefined;
553
554
  plugin?: string | undefined;
554
555
  accounts?: {
@@ -592,20 +593,20 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
592
593
  hash: string;
593
594
  }> | undefined;
594
595
  artifactsDir?: unknown;
595
- network?: Record<string, string | {
596
+ network?: Record<string, {
596
597
  label: string;
597
598
  rpcUrl: string;
598
599
  protocol: string;
599
600
  faucet: {
601
+ mnemonic?: unknown;
602
+ email?: string | undefined;
603
+ password?: string | undefined;
604
+ amount?: string | undefined;
605
+ activation_code?: string | undefined;
600
606
  pkh: string;
601
- mnemonic: string[];
602
- email: string;
603
- password: string;
604
- amount: string;
605
- activation_code: string;
606
607
  };
607
608
  }> | undefined;
608
- sandbox?: Record<string, string | {
609
+ sandbox?: Record<string, {
609
610
  attributes?: Record<string, string | number | boolean> | undefined;
610
611
  plugin?: string | undefined;
611
612
  accounts?: {
@@ -655,7 +656,7 @@ export declare const generatedSchemas: {
655
656
  readonly __kind: any;
656
657
  };
657
658
  }> | undefined;
658
- network?: Record<string, string | Flatten<{
659
+ network?: Record<string, Flatten<{
659
660
  label: string & {
660
661
  readonly __kind: any;
661
662
  };
@@ -666,21 +667,21 @@ export declare const generatedSchemas: {
666
667
  readonly __kind: any;
667
668
  };
668
669
  faucet: Flatten<{
670
+ email?: string | undefined;
671
+ password?: string | undefined;
672
+ amount?: string | undefined;
673
+ activation_code?: string | undefined;
674
+ mnemonic: string[];
669
675
  pkh: string & {
670
676
  readonly __kind: any;
671
677
  };
672
- mnemonic: string[];
673
- email: string;
674
- password: string;
675
- amount: string;
676
- activation_code: string;
677
678
  } & {
678
679
  readonly __kind: any;
679
680
  }>;
680
681
  } & {
681
682
  readonly __kind: any;
682
683
  }>> | undefined;
683
- sandbox?: Record<string, string | ({
684
+ sandbox?: Record<string, {
684
685
  attributes?: Record<string, string | number | boolean> | undefined;
685
686
  plugin?: (string & {
686
687
  readonly __kind: any;
@@ -710,7 +711,7 @@ export declare const generatedSchemas: {
710
711
  };
711
712
  } & {
712
713
  readonly __kind: any;
713
- })> | undefined;
714
+ }> | undefined;
714
715
  environment?: Record<string, string | Flatten<{
715
716
  storage?: Record<string, any> | undefined;
716
717
  aliases?: Record<string, any> | undefined;
@@ -749,7 +750,7 @@ export declare const generatedSchemas: {
749
750
  readonly __kind: any;
750
751
  };
751
752
  }> | undefined;
752
- network?: Record<string, string | Flatten<{
753
+ network?: Record<string, Flatten<{
753
754
  label: string & {
754
755
  readonly __kind: any;
755
756
  };
@@ -760,21 +761,21 @@ export declare const generatedSchemas: {
760
761
  readonly __kind: any;
761
762
  };
762
763
  faucet: Flatten<{
764
+ email?: string | undefined;
765
+ password?: string | undefined;
766
+ amount?: string | undefined;
767
+ activation_code?: string | undefined;
768
+ mnemonic: string[];
763
769
  pkh: string & {
764
770
  readonly __kind: any;
765
771
  };
766
- mnemonic: string[];
767
- email: string;
768
- password: string;
769
- amount: string;
770
- activation_code: string;
771
772
  } & {
772
773
  readonly __kind: any;
773
774
  }>;
774
775
  } & {
775
776
  readonly __kind: any;
776
777
  }>> | undefined;
777
- sandbox?: Record<string, string | ({
778
+ sandbox?: Record<string, {
778
779
  attributes?: Record<string, string | number | boolean> | undefined;
779
780
  plugin?: (string & {
780
781
  readonly __kind: any;
@@ -804,7 +805,7 @@ export declare const generatedSchemas: {
804
805
  };
805
806
  } & {
806
807
  readonly __kind: any;
807
- })> | undefined;
808
+ }> | undefined;
808
809
  environment?: Record<string, string | Flatten<{
809
810
  storage?: Record<string, any> | undefined;
810
811
  aliases?: Record<string, any> | undefined;
@@ -839,7 +840,7 @@ export declare const generatedSchemas: {
839
840
  readonly __kind: any;
840
841
  };
841
842
  }> | undefined;
842
- network?: Record<string, string | Flatten<{
843
+ network?: Record<string, Flatten<{
843
844
  label: string & {
844
845
  readonly __kind: any;
845
846
  };
@@ -850,21 +851,21 @@ export declare const generatedSchemas: {
850
851
  readonly __kind: any;
851
852
  };
852
853
  faucet: Flatten<{
854
+ email?: string | undefined;
855
+ password?: string | undefined;
856
+ amount?: string | undefined;
857
+ activation_code?: string | undefined;
858
+ mnemonic: string[];
853
859
  pkh: string & {
854
860
  readonly __kind: any;
855
861
  };
856
- mnemonic: string[];
857
- email: string;
858
- password: string;
859
- amount: string;
860
- activation_code: string;
861
862
  } & {
862
863
  readonly __kind: any;
863
864
  }>;
864
865
  } & {
865
866
  readonly __kind: any;
866
867
  }>> | undefined;
867
- sandbox?: Record<string, string | ({
868
+ sandbox?: Record<string, {
868
869
  attributes?: Record<string, string | number | boolean> | undefined;
869
870
  plugin?: (string & {
870
871
  readonly __kind: any;
@@ -894,7 +895,7 @@ export declare const generatedSchemas: {
894
895
  };
895
896
  } & {
896
897
  readonly __kind: any;
897
- })> | undefined;
898
+ }> | undefined;
898
899
  environment?: Record<string, string | Flatten<{
899
900
  storage?: Record<string, any> | undefined;
900
901
  aliases?: Record<string, any> | undefined;
@@ -932,7 +933,7 @@ export declare const generatedSchemas: {
932
933
  readonly __kind: any;
933
934
  };
934
935
  }> | undefined;
935
- network?: Record<string, string | Flatten<{
936
+ network?: Record<string, Flatten<{
936
937
  label: string & {
937
938
  readonly __kind: any;
938
939
  };
@@ -943,21 +944,21 @@ export declare const generatedSchemas: {
943
944
  readonly __kind: any;
944
945
  };
945
946
  faucet: Flatten<{
947
+ email?: string | undefined;
948
+ password?: string | undefined;
949
+ amount?: string | undefined;
950
+ activation_code?: string | undefined;
951
+ mnemonic: string[];
946
952
  pkh: string & {
947
953
  readonly __kind: any;
948
954
  };
949
- mnemonic: string[];
950
- email: string;
951
- password: string;
952
- amount: string;
953
- activation_code: string;
954
955
  } & {
955
956
  readonly __kind: any;
956
957
  }>;
957
958
  } & {
958
959
  readonly __kind: any;
959
960
  }>> | undefined;
960
- sandbox?: Record<string, string | ({
961
+ sandbox?: Record<string, {
961
962
  attributes?: Record<string, string | number | boolean> | undefined;
962
963
  plugin?: (string & {
963
964
  readonly __kind: any;
@@ -987,7 +988,7 @@ export declare const generatedSchemas: {
987
988
  };
988
989
  } & {
989
990
  readonly __kind: any;
990
- })> | undefined;
991
+ }> | undefined;
991
992
  environment?: Record<string, string | Flatten<{
992
993
  storage?: Record<string, any> | undefined;
993
994
  aliases?: Record<string, any> | undefined;
@@ -1025,7 +1026,7 @@ export declare const generatedSchemas: {
1025
1026
  readonly __kind: any;
1026
1027
  };
1027
1028
  }> | undefined;
1028
- network?: Record<string, string | Flatten<{
1029
+ network?: Record<string, Flatten<{
1029
1030
  label: string & {
1030
1031
  readonly __kind: any;
1031
1032
  };
@@ -1036,21 +1037,21 @@ export declare const generatedSchemas: {
1036
1037
  readonly __kind: any;
1037
1038
  };
1038
1039
  faucet: Flatten<{
1040
+ email?: string | undefined;
1041
+ password?: string | undefined;
1042
+ amount?: string | undefined;
1043
+ activation_code?: string | undefined;
1044
+ mnemonic: string[];
1039
1045
  pkh: string & {
1040
1046
  readonly __kind: any;
1041
1047
  };
1042
- mnemonic: string[];
1043
- email: string;
1044
- password: string;
1045
- amount: string;
1046
- activation_code: string;
1047
1048
  } & {
1048
1049
  readonly __kind: any;
1049
1050
  }>;
1050
1051
  } & {
1051
1052
  readonly __kind: any;
1052
1053
  }>> | undefined;
1053
- sandbox?: Record<string, string | ({
1054
+ sandbox?: Record<string, {
1054
1055
  attributes?: Record<string, string | number | boolean> | undefined;
1055
1056
  plugin?: (string & {
1056
1057
  readonly __kind: any;
@@ -1080,7 +1081,7 @@ export declare const generatedSchemas: {
1080
1081
  };
1081
1082
  } & {
1082
1083
  readonly __kind: any;
1083
- })> | undefined;
1084
+ }> | undefined;
1084
1085
  environment?: Record<string, string | Flatten<{
1085
1086
  storage?: Record<string, any> | undefined;
1086
1087
  aliases?: Record<string, any> | undefined;
@@ -1112,20 +1113,20 @@ export declare const generatedSchemas: {
1112
1113
  sourceFile: string;
1113
1114
  hash: string;
1114
1115
  }> | undefined;
1115
- network?: Record<string, string | {
1116
+ network?: Record<string, {
1116
1117
  label: string;
1117
1118
  rpcUrl: string;
1118
1119
  protocol: string;
1119
1120
  faucet: {
1120
- pkh: string;
1121
+ email?: string | undefined;
1122
+ password?: string | undefined;
1123
+ amount?: string | undefined;
1124
+ activation_code?: string | undefined;
1121
1125
  mnemonic: string[];
1122
- email: string;
1123
- password: string;
1124
- amount: string;
1125
- activation_code: string;
1126
+ pkh: string;
1126
1127
  };
1127
1128
  }> | undefined;
1128
- sandbox?: Record<string, string | {
1129
+ sandbox?: Record<string, {
1129
1130
  attributes?: Record<string, string | number | boolean> | undefined;
1130
1131
  plugin?: string | undefined;
1131
1132
  accounts?: {
@@ -1173,7 +1174,7 @@ export declare const generatedSchemas: {
1173
1174
  readonly __kind: any;
1174
1175
  };
1175
1176
  }> | undefined;
1176
- network?: Record<string, string | Flatten<{
1177
+ network?: Record<string, Flatten<{
1177
1178
  label: string & {
1178
1179
  readonly __kind: any;
1179
1180
  };
@@ -1184,21 +1185,21 @@ export declare const generatedSchemas: {
1184
1185
  readonly __kind: any;
1185
1186
  };
1186
1187
  faucet: Flatten<{
1188
+ email?: string | undefined;
1189
+ password?: string | undefined;
1190
+ amount?: string | undefined;
1191
+ activation_code?: string | undefined;
1192
+ mnemonic: string[];
1187
1193
  pkh: string & {
1188
1194
  readonly __kind: any;
1189
1195
  };
1190
- mnemonic: string[];
1191
- email: string;
1192
- password: string;
1193
- amount: string;
1194
- activation_code: string;
1195
1196
  } & {
1196
1197
  readonly __kind: any;
1197
1198
  }>;
1198
1199
  } & {
1199
1200
  readonly __kind: any;
1200
1201
  }>> | undefined;
1201
- sandbox?: Record<string, string | ({
1202
+ sandbox?: Record<string, {
1202
1203
  attributes?: Record<string, string | number | boolean> | undefined;
1203
1204
  plugin?: (string & {
1204
1205
  readonly __kind: any;
@@ -1228,7 +1229,7 @@ export declare const generatedSchemas: {
1228
1229
  };
1229
1230
  } & {
1230
1231
  readonly __kind: any;
1231
- })> | undefined;
1232
+ }> | undefined;
1232
1233
  environment?: Record<string, string | Flatten<{
1233
1234
  storage?: Record<string, any> | undefined;
1234
1235
  aliases?: Record<string, any> | undefined;
@@ -1266,7 +1267,7 @@ export declare const generatedSchemas: {
1266
1267
  readonly __kind: any;
1267
1268
  };
1268
1269
  }> | undefined;
1269
- network?: Record<string, string | Flatten<{
1270
+ network?: Record<string, Flatten<{
1270
1271
  label: string & {
1271
1272
  readonly __kind: any;
1272
1273
  };
@@ -1277,21 +1278,21 @@ export declare const generatedSchemas: {
1277
1278
  readonly __kind: any;
1278
1279
  };
1279
1280
  faucet: Flatten<{
1281
+ email?: string | undefined;
1282
+ password?: string | undefined;
1283
+ amount?: string | undefined;
1284
+ activation_code?: string | undefined;
1285
+ mnemonic: string[];
1280
1286
  pkh: string & {
1281
1287
  readonly __kind: any;
1282
1288
  };
1283
- mnemonic: string[];
1284
- email: string;
1285
- password: string;
1286
- amount: string;
1287
- activation_code: string;
1288
1289
  } & {
1289
1290
  readonly __kind: any;
1290
1291
  }>;
1291
1292
  } & {
1292
1293
  readonly __kind: any;
1293
1294
  }>> | undefined;
1294
- sandbox?: Record<string, string | ({
1295
+ sandbox?: Record<string, {
1295
1296
  attributes?: Record<string, string | number | boolean> | undefined;
1296
1297
  plugin?: (string & {
1297
1298
  readonly __kind: any;
@@ -1321,7 +1322,7 @@ export declare const generatedSchemas: {
1321
1322
  };
1322
1323
  } & {
1323
1324
  readonly __kind: any;
1324
- })> | undefined;
1325
+ }> | undefined;
1325
1326
  environment?: Record<string, string | Flatten<{
1326
1327
  storage?: Record<string, any> | undefined;
1327
1328
  aliases?: Record<string, any> | undefined;
@@ -1360,7 +1361,7 @@ export declare const create: (input: {
1360
1361
  readonly __kind: any;
1361
1362
  };
1362
1363
  }> | undefined;
1363
- network?: Record<string, string | Flatten<{
1364
+ network?: Record<string, Flatten<{
1364
1365
  label: string & {
1365
1366
  readonly __kind: any;
1366
1367
  };
@@ -1371,21 +1372,21 @@ export declare const create: (input: {
1371
1372
  readonly __kind: any;
1372
1373
  };
1373
1374
  faucet: Flatten<{
1375
+ email?: string | undefined;
1376
+ password?: string | undefined;
1377
+ amount?: string | undefined;
1378
+ activation_code?: string | undefined;
1379
+ mnemonic: string[];
1374
1380
  pkh: string & {
1375
1381
  readonly __kind: any;
1376
1382
  };
1377
- mnemonic: string[];
1378
- email: string;
1379
- password: string;
1380
- amount: string;
1381
- activation_code: string;
1382
1383
  } & {
1383
1384
  readonly __kind: any;
1384
1385
  }>;
1385
1386
  } & {
1386
1387
  readonly __kind: any;
1387
1388
  }>> | undefined;
1388
- sandbox?: Record<string, string | ({
1389
+ sandbox?: Record<string, {
1389
1390
  attributes?: Record<string, string | number | boolean> | undefined;
1390
1391
  plugin?: (string & {
1391
1392
  readonly __kind: any;
@@ -1415,7 +1416,7 @@ export declare const create: (input: {
1415
1416
  };
1416
1417
  } & {
1417
1418
  readonly __kind: any;
1418
- })> | undefined;
1419
+ }> | undefined;
1419
1420
  environment?: Record<string, string | Flatten<{
1420
1421
  storage?: Record<string, any> | undefined;
1421
1422
  aliases?: Record<string, any> | undefined;
@@ -1447,20 +1448,20 @@ export declare const create: (input: {
1447
1448
  sourceFile: string;
1448
1449
  hash: string;
1449
1450
  }> | undefined;
1450
- network?: Record<string, string | {
1451
+ network?: Record<string, {
1451
1452
  label: string;
1452
1453
  rpcUrl: string;
1453
1454
  protocol: string;
1454
1455
  faucet: {
1455
- pkh: string;
1456
+ email?: string | undefined;
1457
+ password?: string | undefined;
1458
+ amount?: string | undefined;
1459
+ activation_code?: string | undefined;
1456
1460
  mnemonic: string[];
1457
- email: string;
1458
- password: string;
1459
- amount: string;
1460
- activation_code: string;
1461
+ pkh: string;
1461
1462
  };
1462
1463
  }> | undefined;
1463
- sandbox?: Record<string, string | {
1464
+ sandbox?: Record<string, {
1464
1465
  attributes?: Record<string, string | number | boolean> | undefined;
1465
1466
  plugin?: string | undefined;
1466
1467
  accounts?: {
@@ -1508,7 +1509,7 @@ export declare const create: (input: {
1508
1509
  readonly __kind: any;
1509
1510
  };
1510
1511
  }> | undefined;
1511
- network?: Record<string, string | Flatten<{
1512
+ network?: Record<string, Flatten<{
1512
1513
  label: string & {
1513
1514
  readonly __kind: any;
1514
1515
  };
@@ -1519,21 +1520,21 @@ export declare const create: (input: {
1519
1520
  readonly __kind: any;
1520
1521
  };
1521
1522
  faucet: Flatten<{
1523
+ email?: string | undefined;
1524
+ password?: string | undefined;
1525
+ amount?: string | undefined;
1526
+ activation_code?: string | undefined;
1527
+ mnemonic: string[];
1522
1528
  pkh: string & {
1523
1529
  readonly __kind: any;
1524
1530
  };
1525
- mnemonic: string[];
1526
- email: string;
1527
- password: string;
1528
- amount: string;
1529
- activation_code: string;
1530
1531
  } & {
1531
1532
  readonly __kind: any;
1532
1533
  }>;
1533
1534
  } & {
1534
1535
  readonly __kind: any;
1535
1536
  }>> | undefined;
1536
- sandbox?: Record<string, string | ({
1537
+ sandbox?: Record<string, {
1537
1538
  attributes?: Record<string, string | number | boolean> | undefined;
1538
1539
  plugin?: (string & {
1539
1540
  readonly __kind: any;
@@ -1563,7 +1564,7 @@ export declare const create: (input: {
1563
1564
  };
1564
1565
  } & {
1565
1566
  readonly __kind: any;
1566
- })> | undefined;
1567
+ }> | undefined;
1567
1568
  environment?: Record<string, string | Flatten<{
1568
1569
  storage?: Record<string, any> | undefined;
1569
1570
  aliases?: Record<string, any> | undefined;
@@ -1600,7 +1601,7 @@ export declare const create: (input: {
1600
1601
  readonly __kind: any;
1601
1602
  };
1602
1603
  }> | undefined;
1603
- network?: Record<string, string | Flatten<{
1604
+ network?: Record<string, Flatten<{
1604
1605
  label: string & {
1605
1606
  readonly __kind: any;
1606
1607
  };
@@ -1611,21 +1612,21 @@ export declare const create: (input: {
1611
1612
  readonly __kind: any;
1612
1613
  };
1613
1614
  faucet: Flatten<{
1615
+ email?: string | undefined;
1616
+ password?: string | undefined;
1617
+ amount?: string | undefined;
1618
+ activation_code?: string | undefined;
1619
+ mnemonic: string[];
1614
1620
  pkh: string & {
1615
1621
  readonly __kind: any;
1616
1622
  };
1617
- mnemonic: string[];
1618
- email: string;
1619
- password: string;
1620
- amount: string;
1621
- activation_code: string;
1622
1623
  } & {
1623
1624
  readonly __kind: any;
1624
1625
  }>;
1625
1626
  } & {
1626
1627
  readonly __kind: any;
1627
1628
  }>> | undefined;
1628
- sandbox?: Record<string, string | ({
1629
+ sandbox?: Record<string, {
1629
1630
  attributes?: Record<string, string | number | boolean> | undefined;
1630
1631
  plugin?: (string & {
1631
1632
  readonly __kind: any;
@@ -1655,7 +1656,7 @@ export declare const create: (input: {
1655
1656
  };
1656
1657
  } & {
1657
1658
  readonly __kind: any;
1658
- })> | undefined;
1659
+ }> | undefined;
1659
1660
  environment?: Record<string, string | Flatten<{
1660
1661
  storage?: Record<string, any> | undefined;
1661
1662
  aliases?: Record<string, any> | undefined;
@@ -1692,7 +1693,7 @@ export declare const create: (input: {
1692
1693
  readonly __kind: any;
1693
1694
  };
1694
1695
  }> | undefined;
1695
- network?: Record<string, string | Flatten<{
1696
+ network?: Record<string, Flatten<{
1696
1697
  label: string & {
1697
1698
  readonly __kind: any;
1698
1699
  };
@@ -1703,21 +1704,21 @@ export declare const create: (input: {
1703
1704
  readonly __kind: any;
1704
1705
  };
1705
1706
  faucet: Flatten<{
1707
+ email?: string | undefined;
1708
+ password?: string | undefined;
1709
+ amount?: string | undefined;
1710
+ activation_code?: string | undefined;
1711
+ mnemonic: string[];
1706
1712
  pkh: string & {
1707
1713
  readonly __kind: any;
1708
1714
  };
1709
- mnemonic: string[];
1710
- email: string;
1711
- password: string;
1712
- amount: string;
1713
- activation_code: string;
1714
1715
  } & {
1715
1716
  readonly __kind: any;
1716
1717
  }>;
1717
1718
  } & {
1718
1719
  readonly __kind: any;
1719
1720
  }>> | undefined;
1720
- sandbox?: Record<string, string | ({
1721
+ sandbox?: Record<string, {
1721
1722
  attributes?: Record<string, string | number | boolean> | undefined;
1722
1723
  plugin?: (string & {
1723
1724
  readonly __kind: any;
@@ -1747,7 +1748,7 @@ export declare const create: (input: {
1747
1748
  };
1748
1749
  } & {
1749
1750
  readonly __kind: any;
1750
- })> | undefined;
1751
+ }> | undefined;
1751
1752
  environment?: Record<string, string | Flatten<{
1752
1753
  storage?: Record<string, any> | undefined;
1753
1754
  aliases?: Record<string, any> | undefined;
@@ -1782,7 +1783,7 @@ export declare const create: (input: {
1782
1783
  readonly __kind: any;
1783
1784
  };
1784
1785
  }> | undefined;
1785
- network?: Record<string, string | Flatten<{
1786
+ network?: Record<string, Flatten<{
1786
1787
  label: string & {
1787
1788
  readonly __kind: any;
1788
1789
  };
@@ -1793,21 +1794,21 @@ export declare const create: (input: {
1793
1794
  readonly __kind: any;
1794
1795
  };
1795
1796
  faucet: Flatten<{
1797
+ email?: string | undefined;
1798
+ password?: string | undefined;
1799
+ amount?: string | undefined;
1800
+ activation_code?: string | undefined;
1801
+ mnemonic: string[];
1796
1802
  pkh: string & {
1797
1803
  readonly __kind: any;
1798
1804
  };
1799
- mnemonic: string[];
1800
- email: string;
1801
- password: string;
1802
- amount: string;
1803
- activation_code: string;
1804
1805
  } & {
1805
1806
  readonly __kind: any;
1806
1807
  }>;
1807
1808
  } & {
1808
1809
  readonly __kind: any;
1809
1810
  }>> | undefined;
1810
- sandbox?: Record<string, string | ({
1811
+ sandbox?: Record<string, {
1811
1812
  attributes?: Record<string, string | number | boolean> | undefined;
1812
1813
  plugin?: (string & {
1813
1814
  readonly __kind: any;
@@ -1837,7 +1838,7 @@ export declare const create: (input: {
1837
1838
  };
1838
1839
  } & {
1839
1840
  readonly __kind: any;
1840
- })> | undefined;
1841
+ }> | undefined;
1841
1842
  environment?: Record<string, string | Flatten<{
1842
1843
  storage?: Record<string, any> | undefined;
1843
1844
  aliases?: Record<string, any> | undefined;
@@ -1878,7 +1879,7 @@ export declare const schemas: {
1878
1879
  readonly __kind: any;
1879
1880
  };
1880
1881
  }> | undefined;
1881
- network?: Record<string, string | Flatten<{
1882
+ network?: Record<string, Flatten<{
1882
1883
  label: string & {
1883
1884
  readonly __kind: any;
1884
1885
  };
@@ -1889,21 +1890,21 @@ export declare const schemas: {
1889
1890
  readonly __kind: any;
1890
1891
  };
1891
1892
  faucet: Flatten<{
1893
+ email?: string | undefined;
1894
+ password?: string | undefined;
1895
+ amount?: string | undefined;
1896
+ activation_code?: string | undefined;
1897
+ mnemonic: string[];
1892
1898
  pkh: string & {
1893
1899
  readonly __kind: any;
1894
1900
  };
1895
- mnemonic: string[];
1896
- email: string;
1897
- password: string;
1898
- amount: string;
1899
- activation_code: string;
1900
1901
  } & {
1901
1902
  readonly __kind: any;
1902
1903
  }>;
1903
1904
  } & {
1904
1905
  readonly __kind: any;
1905
1906
  }>> | undefined;
1906
- sandbox?: Record<string, string | ({
1907
+ sandbox?: Record<string, {
1907
1908
  attributes?: Record<string, string | number | boolean> | undefined;
1908
1909
  plugin?: (string & {
1909
1910
  readonly __kind: any;
@@ -1933,7 +1934,7 @@ export declare const schemas: {
1933
1934
  };
1934
1935
  } & {
1935
1936
  readonly __kind: any;
1936
- })> | undefined;
1937
+ }> | undefined;
1937
1938
  environment?: Record<string, string | Flatten<{
1938
1939
  storage?: Record<string, any> | undefined;
1939
1940
  aliases?: Record<string, any> | undefined;
@@ -1970,7 +1971,7 @@ export declare const schemas: {
1970
1971
  readonly __kind: any;
1971
1972
  };
1972
1973
  }> | undefined;
1973
- network?: Record<string, string | Flatten<{
1974
+ network?: Record<string, Flatten<{
1974
1975
  label: string & {
1975
1976
  readonly __kind: any;
1976
1977
  };
@@ -1981,21 +1982,21 @@ export declare const schemas: {
1981
1982
  readonly __kind: any;
1982
1983
  };
1983
1984
  faucet: Flatten<{
1985
+ email?: string | undefined;
1986
+ password?: string | undefined;
1987
+ amount?: string | undefined;
1988
+ activation_code?: string | undefined;
1989
+ mnemonic: string[];
1984
1990
  pkh: string & {
1985
1991
  readonly __kind: any;
1986
1992
  };
1987
- mnemonic: string[];
1988
- email: string;
1989
- password: string;
1990
- amount: string;
1991
- activation_code: string;
1992
1993
  } & {
1993
1994
  readonly __kind: any;
1994
1995
  }>;
1995
1996
  } & {
1996
1997
  readonly __kind: any;
1997
1998
  }>> | undefined;
1998
- sandbox?: Record<string, string | ({
1999
+ sandbox?: Record<string, {
1999
2000
  attributes?: Record<string, string | number | boolean> | undefined;
2000
2001
  plugin?: (string & {
2001
2002
  readonly __kind: any;
@@ -2025,7 +2026,7 @@ export declare const schemas: {
2025
2026
  };
2026
2027
  } & {
2027
2028
  readonly __kind: any;
2028
- })> | undefined;
2029
+ }> | undefined;
2029
2030
  environment?: Record<string, string | Flatten<{
2030
2031
  storage?: Record<string, any> | undefined;
2031
2032
  aliases?: Record<string, any> | undefined;