@settlemint/sdk-cli 1.2.3-maind06b7984 → 1.2.3-mainfcf92c13
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.js +7 -4
- package/dist/cli.js.map +3 -3
- package/package.json +3 -3
package/dist/cli.js
CHANGED
@@ -259517,7 +259517,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
259517
259517
|
var package_default = {
|
259518
259518
|
name: "@settlemint/sdk-cli",
|
259519
259519
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
259520
|
-
version: "1.2.3-
|
259520
|
+
version: "1.2.3-mainfcf92c13",
|
259521
259521
|
type: "module",
|
259522
259522
|
private: false,
|
259523
259523
|
license: "FSL-1.1-MIT",
|
@@ -259566,8 +259566,8 @@ var package_default = {
|
|
259566
259566
|
"@inquirer/input": "4.1.8",
|
259567
259567
|
"@inquirer/password": "4.0.11",
|
259568
259568
|
"@inquirer/select": "4.1.0",
|
259569
|
-
"@settlemint/sdk-js": "1.2.3-
|
259570
|
-
"@settlemint/sdk-utils": "1.2.3-
|
259569
|
+
"@settlemint/sdk-js": "1.2.3-mainfcf92c13",
|
259570
|
+
"@settlemint/sdk-utils": "1.2.3-mainfcf92c13",
|
259571
259571
|
"@types/node": "22.13.10",
|
259572
259572
|
"@types/semver": "7.5.8",
|
259573
259573
|
"@types/which": "3.0.4",
|
@@ -272651,6 +272651,9 @@ async function selectTargetNode({
|
|
272651
272651
|
}
|
272652
272652
|
const nodes = await serviceSpinner("blockchain node", () => settlemint.blockchainNode.list(env2.SETTLEMINT_APPLICATION));
|
272653
272653
|
const validNodes = nodes.filter((node2) => validateNode(node2, false));
|
272654
|
+
if (validNodes.length === 0) {
|
272655
|
+
cancel2("No valid blockchain nodes found for deployment. A valid node must be an EVM blockchain node with an activated ECDSA P256 or HSM ECDSA P256 private key, and be running.");
|
272656
|
+
}
|
272654
272657
|
const blockchainNode = await blockchainNodePrompt({
|
272655
272658
|
env: env2,
|
272656
272659
|
nodes: validNodes,
|
@@ -273426,4 +273429,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
273426
273429
|
// src/cli.ts
|
273427
273430
|
sdkCliCommand();
|
273428
273431
|
|
273429
|
-
//# debugId=
|
273432
|
+
//# debugId=A8E0DED60EBB441364756E2164756E21
|