@taqueria/protocol 0.19.5 → 0.19.7
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/PluginSchema.d.ts
CHANGED
|
@@ -536,7 +536,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
536
536
|
readonly __kind: any;
|
|
537
537
|
};
|
|
538
538
|
}> | undefined;
|
|
539
|
-
network?: Record<string,
|
|
539
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
540
540
|
label: string & {
|
|
541
541
|
readonly __kind: any;
|
|
542
542
|
};
|
|
@@ -547,21 +547,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
547
547
|
readonly __kind: any;
|
|
548
548
|
};
|
|
549
549
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
550
|
+
email?: string | undefined;
|
|
551
|
+
password?: string | undefined;
|
|
552
|
+
amount?: string | undefined;
|
|
553
|
+
activation_code?: string | undefined;
|
|
554
|
+
mnemonic: string[];
|
|
550
555
|
pkh: string & {
|
|
551
556
|
readonly __kind: any;
|
|
552
557
|
};
|
|
553
|
-
mnemonic: string[];
|
|
554
|
-
email: string;
|
|
555
|
-
password: string;
|
|
556
|
-
amount: string;
|
|
557
|
-
activation_code: string;
|
|
558
558
|
} & {
|
|
559
559
|
readonly __kind: any;
|
|
560
560
|
}>;
|
|
561
561
|
} & {
|
|
562
562
|
readonly __kind: any;
|
|
563
563
|
}>> | undefined;
|
|
564
|
-
sandbox?: Record<string,
|
|
564
|
+
sandbox?: Record<string, {
|
|
565
565
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
566
566
|
plugin?: (string & {
|
|
567
567
|
readonly __kind: any;
|
|
@@ -591,7 +591,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
591
591
|
};
|
|
592
592
|
} & {
|
|
593
593
|
readonly __kind: any;
|
|
594
|
-
}
|
|
594
|
+
}> | undefined;
|
|
595
595
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
596
596
|
storage?: Record<string, any> | undefined;
|
|
597
597
|
aliases?: Record<string, any> | undefined;
|
|
@@ -717,7 +717,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
717
717
|
readonly __kind: any;
|
|
718
718
|
};
|
|
719
719
|
}> | undefined;
|
|
720
|
-
network?: Record<string,
|
|
720
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
721
721
|
label: string & {
|
|
722
722
|
readonly __kind: any;
|
|
723
723
|
};
|
|
@@ -728,21 +728,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
728
728
|
readonly __kind: any;
|
|
729
729
|
};
|
|
730
730
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
731
|
+
email?: string | undefined;
|
|
732
|
+
password?: string | undefined;
|
|
733
|
+
amount?: string | undefined;
|
|
734
|
+
activation_code?: string | undefined;
|
|
735
|
+
mnemonic: string[];
|
|
731
736
|
pkh: string & {
|
|
732
737
|
readonly __kind: any;
|
|
733
738
|
};
|
|
734
|
-
mnemonic: string[];
|
|
735
|
-
email: string;
|
|
736
|
-
password: string;
|
|
737
|
-
amount: string;
|
|
738
|
-
activation_code: string;
|
|
739
739
|
} & {
|
|
740
740
|
readonly __kind: any;
|
|
741
741
|
}>;
|
|
742
742
|
} & {
|
|
743
743
|
readonly __kind: any;
|
|
744
744
|
}>> | undefined;
|
|
745
|
-
sandbox?: Record<string,
|
|
745
|
+
sandbox?: Record<string, {
|
|
746
746
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
747
747
|
plugin?: (string & {
|
|
748
748
|
readonly __kind: any;
|
|
@@ -772,7 +772,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
772
772
|
};
|
|
773
773
|
} & {
|
|
774
774
|
readonly __kind: any;
|
|
775
|
-
}
|
|
775
|
+
}> | undefined;
|
|
776
776
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
777
777
|
storage?: Record<string, any> | undefined;
|
|
778
778
|
aliases?: Record<string, any> | undefined;
|
|
@@ -911,7 +911,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
911
911
|
readonly __kind: any;
|
|
912
912
|
};
|
|
913
913
|
}> | undefined;
|
|
914
|
-
network?: Record<string,
|
|
914
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
915
915
|
label: string & {
|
|
916
916
|
readonly __kind: any;
|
|
917
917
|
};
|
|
@@ -922,21 +922,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
922
922
|
readonly __kind: any;
|
|
923
923
|
};
|
|
924
924
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
925
|
+
email?: string | undefined;
|
|
926
|
+
password?: string | undefined;
|
|
927
|
+
amount?: string | undefined;
|
|
928
|
+
activation_code?: string | undefined;
|
|
929
|
+
mnemonic: string[];
|
|
925
930
|
pkh: string & {
|
|
926
931
|
readonly __kind: any;
|
|
927
932
|
};
|
|
928
|
-
mnemonic: string[];
|
|
929
|
-
email: string;
|
|
930
|
-
password: string;
|
|
931
|
-
amount: string;
|
|
932
|
-
activation_code: string;
|
|
933
933
|
} & {
|
|
934
934
|
readonly __kind: any;
|
|
935
935
|
}>;
|
|
936
936
|
} & {
|
|
937
937
|
readonly __kind: any;
|
|
938
938
|
}>> | undefined;
|
|
939
|
-
sandbox?: Record<string,
|
|
939
|
+
sandbox?: Record<string, {
|
|
940
940
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
941
941
|
plugin?: (string & {
|
|
942
942
|
readonly __kind: any;
|
|
@@ -966,7 +966,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
966
966
|
};
|
|
967
967
|
} & {
|
|
968
968
|
readonly __kind: any;
|
|
969
|
-
}
|
|
969
|
+
}> | undefined;
|
|
970
970
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
971
971
|
storage?: Record<string, any> | undefined;
|
|
972
972
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1165,7 +1165,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1165
1165
|
readonly __kind: any;
|
|
1166
1166
|
};
|
|
1167
1167
|
}> | undefined;
|
|
1168
|
-
network?: Record<string,
|
|
1168
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
1169
1169
|
label: string & {
|
|
1170
1170
|
readonly __kind: any;
|
|
1171
1171
|
};
|
|
@@ -1176,21 +1176,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1176
1176
|
readonly __kind: any;
|
|
1177
1177
|
};
|
|
1178
1178
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
1179
|
+
email?: string | undefined;
|
|
1180
|
+
password?: string | undefined;
|
|
1181
|
+
amount?: string | undefined;
|
|
1182
|
+
activation_code?: string | undefined;
|
|
1183
|
+
mnemonic: string[];
|
|
1179
1184
|
pkh: string & {
|
|
1180
1185
|
readonly __kind: any;
|
|
1181
1186
|
};
|
|
1182
|
-
mnemonic: string[];
|
|
1183
|
-
email: string;
|
|
1184
|
-
password: string;
|
|
1185
|
-
amount: string;
|
|
1186
|
-
activation_code: string;
|
|
1187
1187
|
} & {
|
|
1188
1188
|
readonly __kind: any;
|
|
1189
1189
|
}>;
|
|
1190
1190
|
} & {
|
|
1191
1191
|
readonly __kind: any;
|
|
1192
1192
|
}>> | undefined;
|
|
1193
|
-
sandbox?: Record<string,
|
|
1193
|
+
sandbox?: Record<string, {
|
|
1194
1194
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1195
1195
|
plugin?: (string & {
|
|
1196
1196
|
readonly __kind: any;
|
|
@@ -1220,7 +1220,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1220
1220
|
};
|
|
1221
1221
|
} & {
|
|
1222
1222
|
readonly __kind: any;
|
|
1223
|
-
}
|
|
1223
|
+
}> | undefined;
|
|
1224
1224
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
1225
1225
|
storage?: Record<string, any> | undefined;
|
|
1226
1226
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1292,7 +1292,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1292
1292
|
readonly __kind: any;
|
|
1293
1293
|
};
|
|
1294
1294
|
}> | undefined;
|
|
1295
|
-
network?: Record<string,
|
|
1295
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
1296
1296
|
label: string & {
|
|
1297
1297
|
readonly __kind: any;
|
|
1298
1298
|
};
|
|
@@ -1303,21 +1303,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1303
1303
|
readonly __kind: any;
|
|
1304
1304
|
};
|
|
1305
1305
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
1306
|
+
email?: string | undefined;
|
|
1307
|
+
password?: string | undefined;
|
|
1308
|
+
amount?: string | undefined;
|
|
1309
|
+
activation_code?: string | undefined;
|
|
1310
|
+
mnemonic: string[];
|
|
1306
1311
|
pkh: string & {
|
|
1307
1312
|
readonly __kind: any;
|
|
1308
1313
|
};
|
|
1309
|
-
mnemonic: string[];
|
|
1310
|
-
email: string;
|
|
1311
|
-
password: string;
|
|
1312
|
-
amount: string;
|
|
1313
|
-
activation_code: string;
|
|
1314
1314
|
} & {
|
|
1315
1315
|
readonly __kind: any;
|
|
1316
1316
|
}>;
|
|
1317
1317
|
} & {
|
|
1318
1318
|
readonly __kind: any;
|
|
1319
1319
|
}>> | undefined;
|
|
1320
|
-
sandbox?: Record<string,
|
|
1320
|
+
sandbox?: Record<string, {
|
|
1321
1321
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1322
1322
|
plugin?: (string & {
|
|
1323
1323
|
readonly __kind: any;
|
|
@@ -1347,7 +1347,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1347
1347
|
};
|
|
1348
1348
|
} & {
|
|
1349
1349
|
readonly __kind: any;
|
|
1350
|
-
}
|
|
1350
|
+
}> | undefined;
|
|
1351
1351
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
1352
1352
|
storage?: Record<string, any> | undefined;
|
|
1353
1353
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1417,7 +1417,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1417
1417
|
readonly __kind: any;
|
|
1418
1418
|
};
|
|
1419
1419
|
}> | undefined;
|
|
1420
|
-
network?: Record<string,
|
|
1420
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
1421
1421
|
label: string & {
|
|
1422
1422
|
readonly __kind: any;
|
|
1423
1423
|
};
|
|
@@ -1428,21 +1428,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1428
1428
|
readonly __kind: any;
|
|
1429
1429
|
};
|
|
1430
1430
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
1431
|
+
email?: string | undefined;
|
|
1432
|
+
password?: string | undefined;
|
|
1433
|
+
amount?: string | undefined;
|
|
1434
|
+
activation_code?: string | undefined;
|
|
1435
|
+
mnemonic: string[];
|
|
1431
1436
|
pkh: string & {
|
|
1432
1437
|
readonly __kind: any;
|
|
1433
1438
|
};
|
|
1434
|
-
mnemonic: string[];
|
|
1435
|
-
email: string;
|
|
1436
|
-
password: string;
|
|
1437
|
-
amount: string;
|
|
1438
|
-
activation_code: string;
|
|
1439
1439
|
} & {
|
|
1440
1440
|
readonly __kind: any;
|
|
1441
1441
|
}>;
|
|
1442
1442
|
} & {
|
|
1443
1443
|
readonly __kind: any;
|
|
1444
1444
|
}>> | undefined;
|
|
1445
|
-
sandbox?: Record<string,
|
|
1445
|
+
sandbox?: Record<string, {
|
|
1446
1446
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1447
1447
|
plugin?: (string & {
|
|
1448
1448
|
readonly __kind: any;
|
|
@@ -1472,7 +1472,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1472
1472
|
};
|
|
1473
1473
|
} & {
|
|
1474
1474
|
readonly __kind: any;
|
|
1475
|
-
}
|
|
1475
|
+
}> | undefined;
|
|
1476
1476
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
1477
1477
|
storage?: Record<string, any> | undefined;
|
|
1478
1478
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1550,7 +1550,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1550
1550
|
readonly __kind: any;
|
|
1551
1551
|
};
|
|
1552
1552
|
}> | undefined;
|
|
1553
|
-
network?: Record<string,
|
|
1553
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
1554
1554
|
label: string & {
|
|
1555
1555
|
readonly __kind: any;
|
|
1556
1556
|
};
|
|
@@ -1561,21 +1561,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1561
1561
|
readonly __kind: any;
|
|
1562
1562
|
};
|
|
1563
1563
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
1564
|
+
email?: string | undefined;
|
|
1565
|
+
password?: string | undefined;
|
|
1566
|
+
amount?: string | undefined;
|
|
1567
|
+
activation_code?: string | undefined;
|
|
1568
|
+
mnemonic: string[];
|
|
1564
1569
|
pkh: string & {
|
|
1565
1570
|
readonly __kind: any;
|
|
1566
1571
|
};
|
|
1567
|
-
mnemonic: string[];
|
|
1568
|
-
email: string;
|
|
1569
|
-
password: string;
|
|
1570
|
-
amount: string;
|
|
1571
|
-
activation_code: string;
|
|
1572
1572
|
} & {
|
|
1573
1573
|
readonly __kind: any;
|
|
1574
1574
|
}>;
|
|
1575
1575
|
} & {
|
|
1576
1576
|
readonly __kind: any;
|
|
1577
1577
|
}>> | undefined;
|
|
1578
|
-
sandbox?: Record<string,
|
|
1578
|
+
sandbox?: Record<string, {
|
|
1579
1579
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1580
1580
|
plugin?: (string & {
|
|
1581
1581
|
readonly __kind: any;
|
|
@@ -1605,7 +1605,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1605
1605
|
};
|
|
1606
1606
|
} & {
|
|
1607
1607
|
readonly __kind: any;
|
|
1608
|
-
}
|
|
1608
|
+
}> | undefined;
|
|
1609
1609
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
1610
1610
|
storage?: Record<string, any> | undefined;
|
|
1611
1611
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1675,7 +1675,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1675
1675
|
readonly __kind: any;
|
|
1676
1676
|
};
|
|
1677
1677
|
}> | undefined;
|
|
1678
|
-
network?: Record<string,
|
|
1678
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
1679
1679
|
label: string & {
|
|
1680
1680
|
readonly __kind: any;
|
|
1681
1681
|
};
|
|
@@ -1686,21 +1686,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1686
1686
|
readonly __kind: any;
|
|
1687
1687
|
};
|
|
1688
1688
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
1689
|
+
email?: string | undefined;
|
|
1690
|
+
password?: string | undefined;
|
|
1691
|
+
amount?: string | undefined;
|
|
1692
|
+
activation_code?: string | undefined;
|
|
1693
|
+
mnemonic: string[];
|
|
1689
1694
|
pkh: string & {
|
|
1690
1695
|
readonly __kind: any;
|
|
1691
1696
|
};
|
|
1692
|
-
mnemonic: string[];
|
|
1693
|
-
email: string;
|
|
1694
|
-
password: string;
|
|
1695
|
-
amount: string;
|
|
1696
|
-
activation_code: string;
|
|
1697
1697
|
} & {
|
|
1698
1698
|
readonly __kind: any;
|
|
1699
1699
|
}>;
|
|
1700
1700
|
} & {
|
|
1701
1701
|
readonly __kind: any;
|
|
1702
1702
|
}>> | undefined;
|
|
1703
|
-
sandbox?: Record<string,
|
|
1703
|
+
sandbox?: Record<string, {
|
|
1704
1704
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1705
1705
|
plugin?: (string & {
|
|
1706
1706
|
readonly __kind: any;
|
|
@@ -1730,7 +1730,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1730
1730
|
};
|
|
1731
1731
|
} & {
|
|
1732
1732
|
readonly __kind: any;
|
|
1733
|
-
}
|
|
1733
|
+
}> | undefined;
|
|
1734
1734
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
1735
1735
|
storage?: Record<string, any> | undefined;
|
|
1736
1736
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1853,7 +1853,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1853
1853
|
readonly __kind: any;
|
|
1854
1854
|
};
|
|
1855
1855
|
}> | undefined;
|
|
1856
|
-
network?: Record<string,
|
|
1856
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
1857
1857
|
label: string & {
|
|
1858
1858
|
readonly __kind: any;
|
|
1859
1859
|
};
|
|
@@ -1864,21 +1864,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1864
1864
|
readonly __kind: any;
|
|
1865
1865
|
};
|
|
1866
1866
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
1867
|
+
email?: string | undefined;
|
|
1868
|
+
password?: string | undefined;
|
|
1869
|
+
amount?: string | undefined;
|
|
1870
|
+
activation_code?: string | undefined;
|
|
1871
|
+
mnemonic: string[];
|
|
1867
1872
|
pkh: string & {
|
|
1868
1873
|
readonly __kind: any;
|
|
1869
1874
|
};
|
|
1870
|
-
mnemonic: string[];
|
|
1871
|
-
email: string;
|
|
1872
|
-
password: string;
|
|
1873
|
-
amount: string;
|
|
1874
|
-
activation_code: string;
|
|
1875
1875
|
} & {
|
|
1876
1876
|
readonly __kind: any;
|
|
1877
1877
|
}>;
|
|
1878
1878
|
} & {
|
|
1879
1879
|
readonly __kind: any;
|
|
1880
1880
|
}>> | undefined;
|
|
1881
|
-
sandbox?: Record<string,
|
|
1881
|
+
sandbox?: Record<string, {
|
|
1882
1882
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1883
1883
|
plugin?: (string & {
|
|
1884
1884
|
readonly __kind: any;
|
|
@@ -1908,7 +1908,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
1908
1908
|
};
|
|
1909
1909
|
} & {
|
|
1910
1910
|
readonly __kind: any;
|
|
1911
|
-
}
|
|
1911
|
+
}> | undefined;
|
|
1912
1912
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
1913
1913
|
storage?: Record<string, any> | undefined;
|
|
1914
1914
|
aliases?: Record<string, any> | undefined;
|
|
@@ -2094,7 +2094,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
2094
2094
|
readonly __kind: any;
|
|
2095
2095
|
};
|
|
2096
2096
|
}> | undefined;
|
|
2097
|
-
network?: Record<string,
|
|
2097
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
2098
2098
|
label: string & {
|
|
2099
2099
|
readonly __kind: any;
|
|
2100
2100
|
};
|
|
@@ -2105,21 +2105,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
2105
2105
|
readonly __kind: any;
|
|
2106
2106
|
};
|
|
2107
2107
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
2108
|
+
email?: string | undefined;
|
|
2109
|
+
password?: string | undefined;
|
|
2110
|
+
amount?: string | undefined;
|
|
2111
|
+
activation_code?: string | undefined;
|
|
2112
|
+
mnemonic: string[];
|
|
2108
2113
|
pkh: string & {
|
|
2109
2114
|
readonly __kind: any;
|
|
2110
2115
|
};
|
|
2111
|
-
mnemonic: string[];
|
|
2112
|
-
email: string;
|
|
2113
|
-
password: string;
|
|
2114
|
-
amount: string;
|
|
2115
|
-
activation_code: string;
|
|
2116
2116
|
} & {
|
|
2117
2117
|
readonly __kind: any;
|
|
2118
2118
|
}>;
|
|
2119
2119
|
} & {
|
|
2120
2120
|
readonly __kind: any;
|
|
2121
2121
|
}>> | undefined;
|
|
2122
|
-
sandbox?: Record<string,
|
|
2122
|
+
sandbox?: Record<string, {
|
|
2123
2123
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2124
2124
|
plugin?: (string & {
|
|
2125
2125
|
readonly __kind: any;
|
|
@@ -2149,7 +2149,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
2149
2149
|
};
|
|
2150
2150
|
} & {
|
|
2151
2151
|
readonly __kind: any;
|
|
2152
|
-
}
|
|
2152
|
+
}> | undefined;
|
|
2153
2153
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
2154
2154
|
storage?: Record<string, any> | undefined;
|
|
2155
2155
|
aliases?: Record<string, any> | undefined;
|
|
@@ -2221,7 +2221,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
2221
2221
|
readonly __kind: any;
|
|
2222
2222
|
};
|
|
2223
2223
|
}> | undefined;
|
|
2224
|
-
network?: Record<string,
|
|
2224
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
2225
2225
|
label: string & {
|
|
2226
2226
|
readonly __kind: any;
|
|
2227
2227
|
};
|
|
@@ -2232,21 +2232,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
2232
2232
|
readonly __kind: any;
|
|
2233
2233
|
};
|
|
2234
2234
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
2235
|
+
email?: string | undefined;
|
|
2236
|
+
password?: string | undefined;
|
|
2237
|
+
amount?: string | undefined;
|
|
2238
|
+
activation_code?: string | undefined;
|
|
2239
|
+
mnemonic: string[];
|
|
2235
2240
|
pkh: string & {
|
|
2236
2241
|
readonly __kind: any;
|
|
2237
2242
|
};
|
|
2238
|
-
mnemonic: string[];
|
|
2239
|
-
email: string;
|
|
2240
|
-
password: string;
|
|
2241
|
-
amount: string;
|
|
2242
|
-
activation_code: string;
|
|
2243
2243
|
} & {
|
|
2244
2244
|
readonly __kind: any;
|
|
2245
2245
|
}>;
|
|
2246
2246
|
} & {
|
|
2247
2247
|
readonly __kind: any;
|
|
2248
2248
|
}>> | undefined;
|
|
2249
|
-
sandbox?: Record<string,
|
|
2249
|
+
sandbox?: Record<string, {
|
|
2250
2250
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2251
2251
|
plugin?: (string & {
|
|
2252
2252
|
readonly __kind: any;
|
|
@@ -2276,7 +2276,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
2276
2276
|
};
|
|
2277
2277
|
} & {
|
|
2278
2278
|
readonly __kind: any;
|
|
2279
|
-
}
|
|
2279
|
+
}> | undefined;
|
|
2280
2280
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
2281
2281
|
storage?: Record<string, any> | undefined;
|
|
2282
2282
|
aliases?: Record<string, any> | undefined;
|
|
@@ -2347,7 +2347,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
2347
2347
|
readonly __kind: any;
|
|
2348
2348
|
};
|
|
2349
2349
|
}> | undefined;
|
|
2350
|
-
network?: Record<string,
|
|
2350
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
2351
2351
|
label: string & {
|
|
2352
2352
|
readonly __kind: any;
|
|
2353
2353
|
};
|
|
@@ -2358,21 +2358,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
2358
2358
|
readonly __kind: any;
|
|
2359
2359
|
};
|
|
2360
2360
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
2361
|
+
email?: string | undefined;
|
|
2362
|
+
password?: string | undefined;
|
|
2363
|
+
amount?: string | undefined;
|
|
2364
|
+
activation_code?: string | undefined;
|
|
2365
|
+
mnemonic: string[];
|
|
2361
2366
|
pkh: string & {
|
|
2362
2367
|
readonly __kind: any;
|
|
2363
2368
|
};
|
|
2364
|
-
mnemonic: string[];
|
|
2365
|
-
email: string;
|
|
2366
|
-
password: string;
|
|
2367
|
-
amount: string;
|
|
2368
|
-
activation_code: string;
|
|
2369
2369
|
} & {
|
|
2370
2370
|
readonly __kind: any;
|
|
2371
2371
|
}>;
|
|
2372
2372
|
} & {
|
|
2373
2373
|
readonly __kind: any;
|
|
2374
2374
|
}>> | undefined;
|
|
2375
|
-
sandbox?: Record<string,
|
|
2375
|
+
sandbox?: Record<string, {
|
|
2376
2376
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2377
2377
|
plugin?: (string & {
|
|
2378
2378
|
readonly __kind: any;
|
|
@@ -2402,7 +2402,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
2402
2402
|
};
|
|
2403
2403
|
} & {
|
|
2404
2404
|
readonly __kind: any;
|
|
2405
|
-
}
|
|
2405
|
+
}> | undefined;
|
|
2406
2406
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
2407
2407
|
storage?: Record<string, any> | undefined;
|
|
2408
2408
|
aliases?: Record<string, any> | undefined;
|
|
@@ -2540,7 +2540,7 @@ export declare const generatedSchemas: {
|
|
|
2540
2540
|
readonly __kind: any;
|
|
2541
2541
|
};
|
|
2542
2542
|
}> | undefined;
|
|
2543
|
-
network?: Record<string,
|
|
2543
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
2544
2544
|
label: string & {
|
|
2545
2545
|
readonly __kind: any;
|
|
2546
2546
|
};
|
|
@@ -2551,21 +2551,21 @@ export declare const generatedSchemas: {
|
|
|
2551
2551
|
readonly __kind: any;
|
|
2552
2552
|
};
|
|
2553
2553
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
2554
|
+
email?: string | undefined;
|
|
2555
|
+
password?: string | undefined;
|
|
2556
|
+
amount?: string | undefined;
|
|
2557
|
+
activation_code?: string | undefined;
|
|
2558
|
+
mnemonic: string[];
|
|
2554
2559
|
pkh: string & {
|
|
2555
2560
|
readonly __kind: any;
|
|
2556
2561
|
};
|
|
2557
|
-
mnemonic: string[];
|
|
2558
|
-
email: string;
|
|
2559
|
-
password: string;
|
|
2560
|
-
amount: string;
|
|
2561
|
-
activation_code: string;
|
|
2562
2562
|
} & {
|
|
2563
2563
|
readonly __kind: any;
|
|
2564
2564
|
}>;
|
|
2565
2565
|
} & {
|
|
2566
2566
|
readonly __kind: any;
|
|
2567
2567
|
}>> | undefined;
|
|
2568
|
-
sandbox?: Record<string,
|
|
2568
|
+
sandbox?: Record<string, {
|
|
2569
2569
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2570
2570
|
plugin?: (string & {
|
|
2571
2571
|
readonly __kind: any;
|
|
@@ -2595,7 +2595,7 @@ export declare const generatedSchemas: {
|
|
|
2595
2595
|
};
|
|
2596
2596
|
} & {
|
|
2597
2597
|
readonly __kind: any;
|
|
2598
|
-
}
|
|
2598
|
+
}> | undefined;
|
|
2599
2599
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
2600
2600
|
storage?: Record<string, any> | undefined;
|
|
2601
2601
|
aliases?: Record<string, any> | undefined;
|
|
@@ -2848,7 +2848,7 @@ export declare const generatedSchemas: {
|
|
|
2848
2848
|
readonly __kind: any;
|
|
2849
2849
|
};
|
|
2850
2850
|
}> | undefined;
|
|
2851
|
-
network?: Record<string,
|
|
2851
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
2852
2852
|
label: string & {
|
|
2853
2853
|
readonly __kind: any;
|
|
2854
2854
|
};
|
|
@@ -2859,21 +2859,21 @@ export declare const generatedSchemas: {
|
|
|
2859
2859
|
readonly __kind: any;
|
|
2860
2860
|
};
|
|
2861
2861
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
2862
|
+
email?: string | undefined;
|
|
2863
|
+
password?: string | undefined;
|
|
2864
|
+
amount?: string | undefined;
|
|
2865
|
+
activation_code?: string | undefined;
|
|
2866
|
+
mnemonic: string[];
|
|
2862
2867
|
pkh: string & {
|
|
2863
2868
|
readonly __kind: any;
|
|
2864
2869
|
};
|
|
2865
|
-
mnemonic: string[];
|
|
2866
|
-
email: string;
|
|
2867
|
-
password: string;
|
|
2868
|
-
amount: string;
|
|
2869
|
-
activation_code: string;
|
|
2870
2870
|
} & {
|
|
2871
2871
|
readonly __kind: any;
|
|
2872
2872
|
}>;
|
|
2873
2873
|
} & {
|
|
2874
2874
|
readonly __kind: any;
|
|
2875
2875
|
}>> | undefined;
|
|
2876
|
-
sandbox?: Record<string,
|
|
2876
|
+
sandbox?: Record<string, {
|
|
2877
2877
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2878
2878
|
plugin?: (string & {
|
|
2879
2879
|
readonly __kind: any;
|
|
@@ -2903,7 +2903,7 @@ export declare const generatedSchemas: {
|
|
|
2903
2903
|
};
|
|
2904
2904
|
} & {
|
|
2905
2905
|
readonly __kind: any;
|
|
2906
|
-
}
|
|
2906
|
+
}> | undefined;
|
|
2907
2907
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
2908
2908
|
storage?: Record<string, any> | undefined;
|
|
2909
2909
|
aliases?: Record<string, any> | undefined;
|
|
@@ -3152,7 +3152,7 @@ export declare const generatedSchemas: {
|
|
|
3152
3152
|
readonly __kind: any;
|
|
3153
3153
|
};
|
|
3154
3154
|
}> | undefined;
|
|
3155
|
-
network?: Record<string,
|
|
3155
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
3156
3156
|
label: string & {
|
|
3157
3157
|
readonly __kind: any;
|
|
3158
3158
|
};
|
|
@@ -3163,21 +3163,21 @@ export declare const generatedSchemas: {
|
|
|
3163
3163
|
readonly __kind: any;
|
|
3164
3164
|
};
|
|
3165
3165
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
3166
|
+
email?: string | undefined;
|
|
3167
|
+
password?: string | undefined;
|
|
3168
|
+
amount?: string | undefined;
|
|
3169
|
+
activation_code?: string | undefined;
|
|
3170
|
+
mnemonic: string[];
|
|
3166
3171
|
pkh: string & {
|
|
3167
3172
|
readonly __kind: any;
|
|
3168
3173
|
};
|
|
3169
|
-
mnemonic: string[];
|
|
3170
|
-
email: string;
|
|
3171
|
-
password: string;
|
|
3172
|
-
amount: string;
|
|
3173
|
-
activation_code: string;
|
|
3174
3174
|
} & {
|
|
3175
3175
|
readonly __kind: any;
|
|
3176
3176
|
}>;
|
|
3177
3177
|
} & {
|
|
3178
3178
|
readonly __kind: any;
|
|
3179
3179
|
}>> | undefined;
|
|
3180
|
-
sandbox?: Record<string,
|
|
3180
|
+
sandbox?: Record<string, {
|
|
3181
3181
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3182
3182
|
plugin?: (string & {
|
|
3183
3183
|
readonly __kind: any;
|
|
@@ -3207,7 +3207,7 @@ export declare const generatedSchemas: {
|
|
|
3207
3207
|
};
|
|
3208
3208
|
} & {
|
|
3209
3209
|
readonly __kind: any;
|
|
3210
|
-
}
|
|
3210
|
+
}> | undefined;
|
|
3211
3211
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
3212
3212
|
storage?: Record<string, any> | undefined;
|
|
3213
3213
|
aliases?: Record<string, any> | undefined;
|
|
@@ -3459,7 +3459,7 @@ export declare const generatedSchemas: {
|
|
|
3459
3459
|
readonly __kind: any;
|
|
3460
3460
|
};
|
|
3461
3461
|
}> | undefined;
|
|
3462
|
-
network?: Record<string,
|
|
3462
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
3463
3463
|
label: string & {
|
|
3464
3464
|
readonly __kind: any;
|
|
3465
3465
|
};
|
|
@@ -3470,21 +3470,21 @@ export declare const generatedSchemas: {
|
|
|
3470
3470
|
readonly __kind: any;
|
|
3471
3471
|
};
|
|
3472
3472
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
3473
|
+
email?: string | undefined;
|
|
3474
|
+
password?: string | undefined;
|
|
3475
|
+
amount?: string | undefined;
|
|
3476
|
+
activation_code?: string | undefined;
|
|
3477
|
+
mnemonic: string[];
|
|
3473
3478
|
pkh: string & {
|
|
3474
3479
|
readonly __kind: any;
|
|
3475
3480
|
};
|
|
3476
|
-
mnemonic: string[];
|
|
3477
|
-
email: string;
|
|
3478
|
-
password: string;
|
|
3479
|
-
amount: string;
|
|
3480
|
-
activation_code: string;
|
|
3481
3481
|
} & {
|
|
3482
3482
|
readonly __kind: any;
|
|
3483
3483
|
}>;
|
|
3484
3484
|
} & {
|
|
3485
3485
|
readonly __kind: any;
|
|
3486
3486
|
}>> | undefined;
|
|
3487
|
-
sandbox?: Record<string,
|
|
3487
|
+
sandbox?: Record<string, {
|
|
3488
3488
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3489
3489
|
plugin?: (string & {
|
|
3490
3490
|
readonly __kind: any;
|
|
@@ -3514,7 +3514,7 @@ export declare const generatedSchemas: {
|
|
|
3514
3514
|
};
|
|
3515
3515
|
} & {
|
|
3516
3516
|
readonly __kind: any;
|
|
3517
|
-
}
|
|
3517
|
+
}> | undefined;
|
|
3518
3518
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
3519
3519
|
storage?: Record<string, any> | undefined;
|
|
3520
3520
|
aliases?: Record<string, any> | undefined;
|
|
@@ -3766,7 +3766,7 @@ export declare const generatedSchemas: {
|
|
|
3766
3766
|
readonly __kind: any;
|
|
3767
3767
|
};
|
|
3768
3768
|
}> | undefined;
|
|
3769
|
-
network?: Record<string,
|
|
3769
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
3770
3770
|
label: string & {
|
|
3771
3771
|
readonly __kind: any;
|
|
3772
3772
|
};
|
|
@@ -3777,21 +3777,21 @@ export declare const generatedSchemas: {
|
|
|
3777
3777
|
readonly __kind: any;
|
|
3778
3778
|
};
|
|
3779
3779
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
3780
|
+
email?: string | undefined;
|
|
3781
|
+
password?: string | undefined;
|
|
3782
|
+
amount?: string | undefined;
|
|
3783
|
+
activation_code?: string | undefined;
|
|
3784
|
+
mnemonic: string[];
|
|
3780
3785
|
pkh: string & {
|
|
3781
3786
|
readonly __kind: any;
|
|
3782
3787
|
};
|
|
3783
|
-
mnemonic: string[];
|
|
3784
|
-
email: string;
|
|
3785
|
-
password: string;
|
|
3786
|
-
amount: string;
|
|
3787
|
-
activation_code: string;
|
|
3788
3788
|
} & {
|
|
3789
3789
|
readonly __kind: any;
|
|
3790
3790
|
}>;
|
|
3791
3791
|
} & {
|
|
3792
3792
|
readonly __kind: any;
|
|
3793
3793
|
}>> | undefined;
|
|
3794
|
-
sandbox?: Record<string,
|
|
3794
|
+
sandbox?: Record<string, {
|
|
3795
3795
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
3796
3796
|
plugin?: (string & {
|
|
3797
3797
|
readonly __kind: any;
|
|
@@ -3821,7 +3821,7 @@ export declare const generatedSchemas: {
|
|
|
3821
3821
|
};
|
|
3822
3822
|
} & {
|
|
3823
3823
|
readonly __kind: any;
|
|
3824
|
-
}
|
|
3824
|
+
}> | undefined;
|
|
3825
3825
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
3826
3826
|
storage?: Record<string, any> | undefined;
|
|
3827
3827
|
aliases?: Record<string, any> | undefined;
|
|
@@ -4057,7 +4057,7 @@ export declare const generatedSchemas: {
|
|
|
4057
4057
|
readonly __kind: any;
|
|
4058
4058
|
};
|
|
4059
4059
|
}> | undefined;
|
|
4060
|
-
network?: Record<string,
|
|
4060
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
4061
4061
|
label: string & {
|
|
4062
4062
|
readonly __kind: any;
|
|
4063
4063
|
};
|
|
@@ -4068,21 +4068,21 @@ export declare const generatedSchemas: {
|
|
|
4068
4068
|
readonly __kind: any;
|
|
4069
4069
|
};
|
|
4070
4070
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
4071
|
+
email?: string | undefined;
|
|
4072
|
+
password?: string | undefined;
|
|
4073
|
+
amount?: string | undefined;
|
|
4074
|
+
activation_code?: string | undefined;
|
|
4075
|
+
mnemonic: string[];
|
|
4071
4076
|
pkh: string & {
|
|
4072
4077
|
readonly __kind: any;
|
|
4073
4078
|
};
|
|
4074
|
-
mnemonic: string[];
|
|
4075
|
-
email: string;
|
|
4076
|
-
password: string;
|
|
4077
|
-
amount: string;
|
|
4078
|
-
activation_code: string;
|
|
4079
4079
|
} & {
|
|
4080
4080
|
readonly __kind: any;
|
|
4081
4081
|
}>;
|
|
4082
4082
|
} & {
|
|
4083
4083
|
readonly __kind: any;
|
|
4084
4084
|
}>> | undefined;
|
|
4085
|
-
sandbox?: Record<string,
|
|
4085
|
+
sandbox?: Record<string, {
|
|
4086
4086
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4087
4087
|
plugin?: (string & {
|
|
4088
4088
|
readonly __kind: any;
|
|
@@ -4112,7 +4112,7 @@ export declare const generatedSchemas: {
|
|
|
4112
4112
|
};
|
|
4113
4113
|
} & {
|
|
4114
4114
|
readonly __kind: any;
|
|
4115
|
-
}
|
|
4115
|
+
}> | undefined;
|
|
4116
4116
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
4117
4117
|
storage?: Record<string, any> | undefined;
|
|
4118
4118
|
aliases?: Record<string, any> | undefined;
|
|
@@ -4352,7 +4352,7 @@ export declare const generatedSchemas: {
|
|
|
4352
4352
|
readonly __kind: any;
|
|
4353
4353
|
};
|
|
4354
4354
|
}> | undefined;
|
|
4355
|
-
network?: Record<string,
|
|
4355
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
4356
4356
|
label: string & {
|
|
4357
4357
|
readonly __kind: any;
|
|
4358
4358
|
};
|
|
@@ -4363,21 +4363,21 @@ export declare const generatedSchemas: {
|
|
|
4363
4363
|
readonly __kind: any;
|
|
4364
4364
|
};
|
|
4365
4365
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
4366
|
+
email?: string | undefined;
|
|
4367
|
+
password?: string | undefined;
|
|
4368
|
+
amount?: string | undefined;
|
|
4369
|
+
activation_code?: string | undefined;
|
|
4370
|
+
mnemonic: string[];
|
|
4366
4371
|
pkh: string & {
|
|
4367
4372
|
readonly __kind: any;
|
|
4368
4373
|
};
|
|
4369
|
-
mnemonic: string[];
|
|
4370
|
-
email: string;
|
|
4371
|
-
password: string;
|
|
4372
|
-
amount: string;
|
|
4373
|
-
activation_code: string;
|
|
4374
4374
|
} & {
|
|
4375
4375
|
readonly __kind: any;
|
|
4376
4376
|
}>;
|
|
4377
4377
|
} & {
|
|
4378
4378
|
readonly __kind: any;
|
|
4379
4379
|
}>> | undefined;
|
|
4380
|
-
sandbox?: Record<string,
|
|
4380
|
+
sandbox?: Record<string, {
|
|
4381
4381
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4382
4382
|
plugin?: (string & {
|
|
4383
4383
|
readonly __kind: any;
|
|
@@ -4407,7 +4407,7 @@ export declare const generatedSchemas: {
|
|
|
4407
4407
|
};
|
|
4408
4408
|
} & {
|
|
4409
4409
|
readonly __kind: any;
|
|
4410
|
-
}
|
|
4410
|
+
}> | undefined;
|
|
4411
4411
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
4412
4412
|
storage?: Record<string, any> | undefined;
|
|
4413
4413
|
aliases?: Record<string, any> | undefined;
|
|
@@ -4659,7 +4659,7 @@ export declare const generatedSchemas: {
|
|
|
4659
4659
|
readonly __kind: any;
|
|
4660
4660
|
};
|
|
4661
4661
|
}> | undefined;
|
|
4662
|
-
network?: Record<string,
|
|
4662
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
4663
4663
|
label: string & {
|
|
4664
4664
|
readonly __kind: any;
|
|
4665
4665
|
};
|
|
@@ -4670,21 +4670,21 @@ export declare const generatedSchemas: {
|
|
|
4670
4670
|
readonly __kind: any;
|
|
4671
4671
|
};
|
|
4672
4672
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
4673
|
+
email?: string | undefined;
|
|
4674
|
+
password?: string | undefined;
|
|
4675
|
+
amount?: string | undefined;
|
|
4676
|
+
activation_code?: string | undefined;
|
|
4677
|
+
mnemonic: string[];
|
|
4673
4678
|
pkh: string & {
|
|
4674
4679
|
readonly __kind: any;
|
|
4675
4680
|
};
|
|
4676
|
-
mnemonic: string[];
|
|
4677
|
-
email: string;
|
|
4678
|
-
password: string;
|
|
4679
|
-
amount: string;
|
|
4680
|
-
activation_code: string;
|
|
4681
4681
|
} & {
|
|
4682
4682
|
readonly __kind: any;
|
|
4683
4683
|
}>;
|
|
4684
4684
|
} & {
|
|
4685
4685
|
readonly __kind: any;
|
|
4686
4686
|
}>> | undefined;
|
|
4687
|
-
sandbox?: Record<string,
|
|
4687
|
+
sandbox?: Record<string, {
|
|
4688
4688
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4689
4689
|
plugin?: (string & {
|
|
4690
4690
|
readonly __kind: any;
|
|
@@ -4714,7 +4714,7 @@ export declare const generatedSchemas: {
|
|
|
4714
4714
|
};
|
|
4715
4715
|
} & {
|
|
4716
4716
|
readonly __kind: any;
|
|
4717
|
-
}
|
|
4717
|
+
}> | undefined;
|
|
4718
4718
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
4719
4719
|
storage?: Record<string, any> | undefined;
|
|
4720
4720
|
aliases?: Record<string, any> | undefined;
|
|
@@ -4969,7 +4969,7 @@ export declare const create: (input: {
|
|
|
4969
4969
|
readonly __kind: any;
|
|
4970
4970
|
};
|
|
4971
4971
|
}> | undefined;
|
|
4972
|
-
network?: Record<string,
|
|
4972
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
4973
4973
|
label: string & {
|
|
4974
4974
|
readonly __kind: any;
|
|
4975
4975
|
};
|
|
@@ -4980,21 +4980,21 @@ export declare const create: (input: {
|
|
|
4980
4980
|
readonly __kind: any;
|
|
4981
4981
|
};
|
|
4982
4982
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
4983
|
+
email?: string | undefined;
|
|
4984
|
+
password?: string | undefined;
|
|
4985
|
+
amount?: string | undefined;
|
|
4986
|
+
activation_code?: string | undefined;
|
|
4987
|
+
mnemonic: string[];
|
|
4983
4988
|
pkh: string & {
|
|
4984
4989
|
readonly __kind: any;
|
|
4985
4990
|
};
|
|
4986
|
-
mnemonic: string[];
|
|
4987
|
-
email: string;
|
|
4988
|
-
password: string;
|
|
4989
|
-
amount: string;
|
|
4990
|
-
activation_code: string;
|
|
4991
4991
|
} & {
|
|
4992
4992
|
readonly __kind: any;
|
|
4993
4993
|
}>;
|
|
4994
4994
|
} & {
|
|
4995
4995
|
readonly __kind: any;
|
|
4996
4996
|
}>> | undefined;
|
|
4997
|
-
sandbox?: Record<string,
|
|
4997
|
+
sandbox?: Record<string, {
|
|
4998
4998
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
4999
4999
|
plugin?: (string & {
|
|
5000
5000
|
readonly __kind: any;
|
|
@@ -5024,7 +5024,7 @@ export declare const create: (input: {
|
|
|
5024
5024
|
};
|
|
5025
5025
|
} & {
|
|
5026
5026
|
readonly __kind: any;
|
|
5027
|
-
}
|
|
5027
|
+
}> | undefined;
|
|
5028
5028
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
5029
5029
|
storage?: Record<string, any> | undefined;
|
|
5030
5030
|
aliases?: Record<string, any> | undefined;
|
|
@@ -5260,7 +5260,7 @@ export declare const create: (input: {
|
|
|
5260
5260
|
readonly __kind: any;
|
|
5261
5261
|
};
|
|
5262
5262
|
}> | undefined;
|
|
5263
|
-
network?: Record<string,
|
|
5263
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
5264
5264
|
label: string & {
|
|
5265
5265
|
readonly __kind: any;
|
|
5266
5266
|
};
|
|
@@ -5271,21 +5271,21 @@ export declare const create: (input: {
|
|
|
5271
5271
|
readonly __kind: any;
|
|
5272
5272
|
};
|
|
5273
5273
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
5274
|
+
email?: string | undefined;
|
|
5275
|
+
password?: string | undefined;
|
|
5276
|
+
amount?: string | undefined;
|
|
5277
|
+
activation_code?: string | undefined;
|
|
5278
|
+
mnemonic: string[];
|
|
5274
5279
|
pkh: string & {
|
|
5275
5280
|
readonly __kind: any;
|
|
5276
5281
|
};
|
|
5277
|
-
mnemonic: string[];
|
|
5278
|
-
email: string;
|
|
5279
|
-
password: string;
|
|
5280
|
-
amount: string;
|
|
5281
|
-
activation_code: string;
|
|
5282
5282
|
} & {
|
|
5283
5283
|
readonly __kind: any;
|
|
5284
5284
|
}>;
|
|
5285
5285
|
} & {
|
|
5286
5286
|
readonly __kind: any;
|
|
5287
5287
|
}>> | undefined;
|
|
5288
|
-
sandbox?: Record<string,
|
|
5288
|
+
sandbox?: Record<string, {
|
|
5289
5289
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
5290
5290
|
plugin?: (string & {
|
|
5291
5291
|
readonly __kind: any;
|
|
@@ -5315,7 +5315,7 @@ export declare const create: (input: {
|
|
|
5315
5315
|
};
|
|
5316
5316
|
} & {
|
|
5317
5317
|
readonly __kind: any;
|
|
5318
|
-
}
|
|
5318
|
+
}> | undefined;
|
|
5319
5319
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
5320
5320
|
storage?: Record<string, any> | undefined;
|
|
5321
5321
|
aliases?: Record<string, any> | undefined;
|
|
@@ -5555,7 +5555,7 @@ export declare const create: (input: {
|
|
|
5555
5555
|
readonly __kind: any;
|
|
5556
5556
|
};
|
|
5557
5557
|
}> | undefined;
|
|
5558
|
-
network?: Record<string,
|
|
5558
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
5559
5559
|
label: string & {
|
|
5560
5560
|
readonly __kind: any;
|
|
5561
5561
|
};
|
|
@@ -5566,21 +5566,21 @@ export declare const create: (input: {
|
|
|
5566
5566
|
readonly __kind: any;
|
|
5567
5567
|
};
|
|
5568
5568
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
5569
|
+
email?: string | undefined;
|
|
5570
|
+
password?: string | undefined;
|
|
5571
|
+
amount?: string | undefined;
|
|
5572
|
+
activation_code?: string | undefined;
|
|
5573
|
+
mnemonic: string[];
|
|
5569
5574
|
pkh: string & {
|
|
5570
5575
|
readonly __kind: any;
|
|
5571
5576
|
};
|
|
5572
|
-
mnemonic: string[];
|
|
5573
|
-
email: string;
|
|
5574
|
-
password: string;
|
|
5575
|
-
amount: string;
|
|
5576
|
-
activation_code: string;
|
|
5577
5577
|
} & {
|
|
5578
5578
|
readonly __kind: any;
|
|
5579
5579
|
}>;
|
|
5580
5580
|
} & {
|
|
5581
5581
|
readonly __kind: any;
|
|
5582
5582
|
}>> | undefined;
|
|
5583
|
-
sandbox?: Record<string,
|
|
5583
|
+
sandbox?: Record<string, {
|
|
5584
5584
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
5585
5585
|
plugin?: (string & {
|
|
5586
5586
|
readonly __kind: any;
|
|
@@ -5610,7 +5610,7 @@ export declare const create: (input: {
|
|
|
5610
5610
|
};
|
|
5611
5611
|
} & {
|
|
5612
5612
|
readonly __kind: any;
|
|
5613
|
-
}
|
|
5613
|
+
}> | undefined;
|
|
5614
5614
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
5615
5615
|
storage?: Record<string, any> | undefined;
|
|
5616
5616
|
aliases?: Record<string, any> | undefined;
|
|
@@ -5861,7 +5861,7 @@ export declare const create: (input: {
|
|
|
5861
5861
|
readonly __kind: any;
|
|
5862
5862
|
};
|
|
5863
5863
|
}> | undefined;
|
|
5864
|
-
network?: Record<string,
|
|
5864
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
5865
5865
|
label: string & {
|
|
5866
5866
|
readonly __kind: any;
|
|
5867
5867
|
};
|
|
@@ -5872,21 +5872,21 @@ export declare const create: (input: {
|
|
|
5872
5872
|
readonly __kind: any;
|
|
5873
5873
|
};
|
|
5874
5874
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
5875
|
+
email?: string | undefined;
|
|
5876
|
+
password?: string | undefined;
|
|
5877
|
+
amount?: string | undefined;
|
|
5878
|
+
activation_code?: string | undefined;
|
|
5879
|
+
mnemonic: string[];
|
|
5875
5880
|
pkh: string & {
|
|
5876
5881
|
readonly __kind: any;
|
|
5877
5882
|
};
|
|
5878
|
-
mnemonic: string[];
|
|
5879
|
-
email: string;
|
|
5880
|
-
password: string;
|
|
5881
|
-
amount: string;
|
|
5882
|
-
activation_code: string;
|
|
5883
5883
|
} & {
|
|
5884
5884
|
readonly __kind: any;
|
|
5885
5885
|
}>;
|
|
5886
5886
|
} & {
|
|
5887
5887
|
readonly __kind: any;
|
|
5888
5888
|
}>> | undefined;
|
|
5889
|
-
sandbox?: Record<string,
|
|
5889
|
+
sandbox?: Record<string, {
|
|
5890
5890
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
5891
5891
|
plugin?: (string & {
|
|
5892
5892
|
readonly __kind: any;
|
|
@@ -5916,7 +5916,7 @@ export declare const create: (input: {
|
|
|
5916
5916
|
};
|
|
5917
5917
|
} & {
|
|
5918
5918
|
readonly __kind: any;
|
|
5919
|
-
}
|
|
5919
|
+
}> | undefined;
|
|
5920
5920
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
5921
5921
|
storage?: Record<string, any> | undefined;
|
|
5922
5922
|
aliases?: Record<string, any> | undefined;
|
|
@@ -6167,7 +6167,7 @@ export declare const create: (input: {
|
|
|
6167
6167
|
readonly __kind: any;
|
|
6168
6168
|
};
|
|
6169
6169
|
}> | undefined;
|
|
6170
|
-
network?: Record<string,
|
|
6170
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
6171
6171
|
label: string & {
|
|
6172
6172
|
readonly __kind: any;
|
|
6173
6173
|
};
|
|
@@ -6178,21 +6178,21 @@ export declare const create: (input: {
|
|
|
6178
6178
|
readonly __kind: any;
|
|
6179
6179
|
};
|
|
6180
6180
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
6181
|
+
email?: string | undefined;
|
|
6182
|
+
password?: string | undefined;
|
|
6183
|
+
amount?: string | undefined;
|
|
6184
|
+
activation_code?: string | undefined;
|
|
6185
|
+
mnemonic: string[];
|
|
6181
6186
|
pkh: string & {
|
|
6182
6187
|
readonly __kind: any;
|
|
6183
6188
|
};
|
|
6184
|
-
mnemonic: string[];
|
|
6185
|
-
email: string;
|
|
6186
|
-
password: string;
|
|
6187
|
-
amount: string;
|
|
6188
|
-
activation_code: string;
|
|
6189
6189
|
} & {
|
|
6190
6190
|
readonly __kind: any;
|
|
6191
6191
|
}>;
|
|
6192
6192
|
} & {
|
|
6193
6193
|
readonly __kind: any;
|
|
6194
6194
|
}>> | undefined;
|
|
6195
|
-
sandbox?: Record<string,
|
|
6195
|
+
sandbox?: Record<string, {
|
|
6196
6196
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
6197
6197
|
plugin?: (string & {
|
|
6198
6198
|
readonly __kind: any;
|
|
@@ -6222,7 +6222,7 @@ export declare const create: (input: {
|
|
|
6222
6222
|
};
|
|
6223
6223
|
} & {
|
|
6224
6224
|
readonly __kind: any;
|
|
6225
|
-
}
|
|
6225
|
+
}> | undefined;
|
|
6226
6226
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
6227
6227
|
storage?: Record<string, any> | undefined;
|
|
6228
6228
|
aliases?: Record<string, any> | undefined;
|
|
@@ -6471,7 +6471,7 @@ export declare const create: (input: {
|
|
|
6471
6471
|
readonly __kind: any;
|
|
6472
6472
|
};
|
|
6473
6473
|
}> | undefined;
|
|
6474
|
-
network?: Record<string,
|
|
6474
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
6475
6475
|
label: string & {
|
|
6476
6476
|
readonly __kind: any;
|
|
6477
6477
|
};
|
|
@@ -6482,21 +6482,21 @@ export declare const create: (input: {
|
|
|
6482
6482
|
readonly __kind: any;
|
|
6483
6483
|
};
|
|
6484
6484
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
6485
|
+
email?: string | undefined;
|
|
6486
|
+
password?: string | undefined;
|
|
6487
|
+
amount?: string | undefined;
|
|
6488
|
+
activation_code?: string | undefined;
|
|
6489
|
+
mnemonic: string[];
|
|
6485
6490
|
pkh: string & {
|
|
6486
6491
|
readonly __kind: any;
|
|
6487
6492
|
};
|
|
6488
|
-
mnemonic: string[];
|
|
6489
|
-
email: string;
|
|
6490
|
-
password: string;
|
|
6491
|
-
amount: string;
|
|
6492
|
-
activation_code: string;
|
|
6493
6493
|
} & {
|
|
6494
6494
|
readonly __kind: any;
|
|
6495
6495
|
}>;
|
|
6496
6496
|
} & {
|
|
6497
6497
|
readonly __kind: any;
|
|
6498
6498
|
}>> | undefined;
|
|
6499
|
-
sandbox?: Record<string,
|
|
6499
|
+
sandbox?: Record<string, {
|
|
6500
6500
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
6501
6501
|
plugin?: (string & {
|
|
6502
6502
|
readonly __kind: any;
|
|
@@ -6526,7 +6526,7 @@ export declare const create: (input: {
|
|
|
6526
6526
|
};
|
|
6527
6527
|
} & {
|
|
6528
6528
|
readonly __kind: any;
|
|
6529
|
-
}
|
|
6529
|
+
}> | undefined;
|
|
6530
6530
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
6531
6531
|
storage?: Record<string, any> | undefined;
|
|
6532
6532
|
aliases?: Record<string, any> | undefined;
|
|
@@ -6779,7 +6779,7 @@ export declare const schemas: {
|
|
|
6779
6779
|
readonly __kind: any;
|
|
6780
6780
|
};
|
|
6781
6781
|
}> | undefined;
|
|
6782
|
-
network?: Record<string,
|
|
6782
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
6783
6783
|
label: string & {
|
|
6784
6784
|
readonly __kind: any;
|
|
6785
6785
|
};
|
|
@@ -6790,21 +6790,21 @@ export declare const schemas: {
|
|
|
6790
6790
|
readonly __kind: any;
|
|
6791
6791
|
};
|
|
6792
6792
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
6793
|
+
email?: string | undefined;
|
|
6794
|
+
password?: string | undefined;
|
|
6795
|
+
amount?: string | undefined;
|
|
6796
|
+
activation_code?: string | undefined;
|
|
6797
|
+
mnemonic: string[];
|
|
6793
6798
|
pkh: string & {
|
|
6794
6799
|
readonly __kind: any;
|
|
6795
6800
|
};
|
|
6796
|
-
mnemonic: string[];
|
|
6797
|
-
email: string;
|
|
6798
|
-
password: string;
|
|
6799
|
-
amount: string;
|
|
6800
|
-
activation_code: string;
|
|
6801
6801
|
} & {
|
|
6802
6802
|
readonly __kind: any;
|
|
6803
6803
|
}>;
|
|
6804
6804
|
} & {
|
|
6805
6805
|
readonly __kind: any;
|
|
6806
6806
|
}>> | undefined;
|
|
6807
|
-
sandbox?: Record<string,
|
|
6807
|
+
sandbox?: Record<string, {
|
|
6808
6808
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
6809
6809
|
plugin?: (string & {
|
|
6810
6810
|
readonly __kind: any;
|
|
@@ -6834,7 +6834,7 @@ export declare const schemas: {
|
|
|
6834
6834
|
};
|
|
6835
6835
|
} & {
|
|
6836
6836
|
readonly __kind: any;
|
|
6837
|
-
}
|
|
6837
|
+
}> | undefined;
|
|
6838
6838
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
6839
6839
|
storage?: Record<string, any> | undefined;
|
|
6840
6840
|
aliases?: Record<string, any> | undefined;
|
|
@@ -7085,7 +7085,7 @@ export declare const schemas: {
|
|
|
7085
7085
|
readonly __kind: any;
|
|
7086
7086
|
};
|
|
7087
7087
|
}> | undefined;
|
|
7088
|
-
network?: Record<string,
|
|
7088
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
7089
7089
|
label: string & {
|
|
7090
7090
|
readonly __kind: any;
|
|
7091
7091
|
};
|
|
@@ -7096,21 +7096,21 @@ export declare const schemas: {
|
|
|
7096
7096
|
readonly __kind: any;
|
|
7097
7097
|
};
|
|
7098
7098
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
7099
|
+
email?: string | undefined;
|
|
7100
|
+
password?: string | undefined;
|
|
7101
|
+
amount?: string | undefined;
|
|
7102
|
+
activation_code?: string | undefined;
|
|
7103
|
+
mnemonic: string[];
|
|
7099
7104
|
pkh: string & {
|
|
7100
7105
|
readonly __kind: any;
|
|
7101
7106
|
};
|
|
7102
|
-
mnemonic: string[];
|
|
7103
|
-
email: string;
|
|
7104
|
-
password: string;
|
|
7105
|
-
amount: string;
|
|
7106
|
-
activation_code: string;
|
|
7107
7107
|
} & {
|
|
7108
7108
|
readonly __kind: any;
|
|
7109
7109
|
}>;
|
|
7110
7110
|
} & {
|
|
7111
7111
|
readonly __kind: any;
|
|
7112
7112
|
}>> | undefined;
|
|
7113
|
-
sandbox?: Record<string,
|
|
7113
|
+
sandbox?: Record<string, {
|
|
7114
7114
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
7115
7115
|
plugin?: (string & {
|
|
7116
7116
|
readonly __kind: any;
|
|
@@ -7140,7 +7140,7 @@ export declare const schemas: {
|
|
|
7140
7140
|
};
|
|
7141
7141
|
} & {
|
|
7142
7142
|
readonly __kind: any;
|
|
7143
|
-
}
|
|
7143
|
+
}> | undefined;
|
|
7144
7144
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
7145
7145
|
storage?: Record<string, any> | undefined;
|
|
7146
7146
|
aliases?: Record<string, any> | undefined;
|