@xyo-network/xl1-cli 1.16.7 → 1.16.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli-min.mjs +13 -13
- package/package.json +2 -2
package/dist/cli-min.mjs
CHANGED
|
@@ -215383,23 +215383,23 @@ var BlockBoundWitnessZod = UnsignedBoundWitnessZod.merge(StorageMetaZod.partial(
|
|
|
215383
215383
|
var SignedBlockBoundWitnessZod = SignedBoundWitnessZod.merge(StorageMetaZod.partial()).merge(BlockBoundWitnessFieldsZod).merge(BlockBoundWitnessMetaZod);
|
|
215384
215384
|
tuple([
|
|
215385
215385
|
BlockBoundWitnessZod,
|
|
215386
|
-
array$1(
|
|
215386
|
+
array$1(PayloadZodLoose)
|
|
215387
215387
|
]);
|
|
215388
215388
|
tuple([
|
|
215389
215389
|
WithStorageMetaZod(BlockBoundWitnessZod),
|
|
215390
|
-
array$1(WithStorageMetaZod(
|
|
215390
|
+
array$1(WithStorageMetaZod(PayloadZodLoose))
|
|
215391
215391
|
]);
|
|
215392
215392
|
var SignedHydratedBlockZod = tuple([
|
|
215393
215393
|
SignedBlockBoundWitnessZod,
|
|
215394
|
-
array$1(
|
|
215394
|
+
array$1(PayloadZodLoose)
|
|
215395
215395
|
]);
|
|
215396
215396
|
tuple([
|
|
215397
215397
|
SignedBlockBoundWitnessZod,
|
|
215398
|
-
array$1(
|
|
215398
|
+
array$1(PayloadZodLoose)
|
|
215399
215399
|
]);
|
|
215400
215400
|
tuple([
|
|
215401
215401
|
WithStorageMetaZod(SignedBlockBoundWitnessZod),
|
|
215402
|
-
array$1(WithStorageMetaZod(
|
|
215402
|
+
array$1(WithStorageMetaZod(PayloadZodLoose))
|
|
215403
215403
|
]);
|
|
215404
215404
|
var AttoZod = bigint$1();
|
|
215405
215405
|
var JsonToAttoZod = JsonToBigIntZod.transform((v) => asAttoXL1(v));
|
|
@@ -215456,15 +215456,15 @@ var SignedTransactionBoundWitnessZod = SignedBoundWitnessZod.merge(StorageMetaZo
|
|
|
215456
215456
|
// src/types/schema/common/HydratedTransaction.ts
|
|
215457
215457
|
tuple([
|
|
215458
215458
|
TransactionBoundWitnessZod,
|
|
215459
|
-
array$1(
|
|
215459
|
+
array$1(PayloadZodLoose)
|
|
215460
215460
|
]);
|
|
215461
215461
|
var UnsignedHydratedTransactionZod = tuple([
|
|
215462
215462
|
TransactionBoundWitnessZod,
|
|
215463
|
-
array$1(
|
|
215463
|
+
array$1(PayloadZodLoose)
|
|
215464
215464
|
]);
|
|
215465
215465
|
var SignedHydratedTransactionZod = tuple([
|
|
215466
215466
|
SignedTransactionBoundWitnessZod,
|
|
215467
|
-
array$1(
|
|
215467
|
+
array$1(PayloadZodLoose)
|
|
215468
215468
|
]);
|
|
215469
215469
|
SignedHydratedTransactionZod.transform(([tx, payloads]) => asSignedHydratedTransaction([
|
|
215470
215470
|
tx,
|
|
@@ -216056,12 +216056,12 @@ var XyoViewerRpcSchemas = {
|
|
|
216056
216056
|
to: array$1(tuple([
|
|
216057
216057
|
WithHashMetaZod(BlockBoundWitnessZod),
|
|
216058
216058
|
WithHashMetaZod(TransactionBoundWitnessZod).nullable(),
|
|
216059
|
-
WithHashMetaZod(
|
|
216059
|
+
WithHashMetaZod(TransferZod)
|
|
216060
216060
|
])),
|
|
216061
216061
|
from: array$1(tuple([
|
|
216062
216062
|
WithHashMetaZod(BlockBoundWitnessZod),
|
|
216063
216063
|
WithHashMetaZod(TransactionBoundWitnessZod).nullable(),
|
|
216064
|
-
WithHashMetaZod(
|
|
216064
|
+
WithHashMetaZod(TransferZod)
|
|
216065
216065
|
]))
|
|
216066
216066
|
}
|
|
216067
216067
|
},
|
|
@@ -216094,12 +216094,12 @@ var XyoViewerRpcSchemas = {
|
|
|
216094
216094
|
to: array$1(tuple([
|
|
216095
216095
|
WithHashMetaZod(BlockBoundWitnessZod),
|
|
216096
216096
|
WithHashMetaZod(TransactionBoundWitnessZod).nullable(),
|
|
216097
|
-
WithHashMetaZod(
|
|
216097
|
+
WithHashMetaZod(TransferZod)
|
|
216098
216098
|
])),
|
|
216099
216099
|
from: array$1(tuple([
|
|
216100
216100
|
WithHashMetaZod(BlockBoundWitnessZod),
|
|
216101
216101
|
WithHashMetaZod(TransactionBoundWitnessZod).nullable(),
|
|
216102
|
-
WithHashMetaZod(
|
|
216102
|
+
WithHashMetaZod(TransferZod)
|
|
216103
216103
|
]))
|
|
216104
216104
|
}
|
|
216105
216105
|
},
|
|
@@ -319630,7 +319630,7 @@ var waitForHostPort = /* @__PURE__ */ __name((host, port) => {
|
|
|
319630
319630
|
|
|
319631
319631
|
// src/runCLI.ts
|
|
319632
319632
|
var configuration;
|
|
319633
|
-
var version = isDefined("1.16.
|
|
319633
|
+
var version = isDefined("1.16.7") ? "1.16.7" : "unknown";
|
|
319634
319634
|
var getContextFromConfig = /* @__PURE__ */ __name((configuration2) => {
|
|
319635
319635
|
const logger = initLogger(configuration2);
|
|
319636
319636
|
const orchestrator = new Orchestrator(logger);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/xl1-cli",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.8",
|
|
4
4
|
"description": "XYO Layer One CLI",
|
|
5
5
|
"homepage": "https://xylabs.com",
|
|
6
6
|
"bugs": {
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"@xyo-network/payload-model": "~5.1.21",
|
|
87
87
|
"@xyo-network/wallet": "~5.1.21",
|
|
88
88
|
"@xyo-network/wallet-model": "~5.1.21",
|
|
89
|
-
"@xyo-network/xl1-cli-lib": "~1.16.
|
|
89
|
+
"@xyo-network/xl1-cli-lib": "~1.16.8",
|
|
90
90
|
"@xyo-network/xl1-protocol": "~1.13.6",
|
|
91
91
|
"async-mutex": "~0.5.0",
|
|
92
92
|
"dotenv": "~17.2.3",
|