@settlemint/sdk-cli 1.1.6 → 1.1.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/README.md CHANGED
@@ -249,7 +249,7 @@ settlemint scs subgraph deploy --accept-defaults <subgraph-name>
249
249
 
250
250
  ## API Reference
251
251
 
252
- See the [documentation](https://github.com/settlemint/sdk/tree/v1.1.6/sdk/cli/docs/settlemint.md) for available commands.
252
+ See the [documentation](https://github.com/settlemint/sdk/tree/v1.1.7/sdk/cli/docs/settlemint.md) for available commands.
253
253
 
254
254
  ## Contributing
255
255
 
package/dist/cli.js CHANGED
@@ -274462,7 +274462,7 @@ function pruneCurrentEnv(currentEnv, env2) {
274462
274462
  var package_default = {
274463
274463
  name: "@settlemint/sdk-cli",
274464
274464
  description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
274465
- version: "1.1.6",
274465
+ version: "1.1.7",
274466
274466
  type: "module",
274467
274467
  private: false,
274468
274468
  license: "FSL-1.1-MIT",
@@ -274510,9 +274510,9 @@ var package_default = {
274510
274510
  "@inquirer/input": "4.1.5",
274511
274511
  "@inquirer/password": "4.0.8",
274512
274512
  "@inquirer/select": "4.0.8",
274513
- "@settlemint/sdk-js": "1.1.6",
274514
- "@settlemint/sdk-utils": "1.1.6",
274515
- "@types/node": "22.13.1",
274513
+ "@settlemint/sdk-js": "1.1.7",
274514
+ "@settlemint/sdk-utils": "1.1.7",
274515
+ "@types/node": "22.13.4",
274516
274516
  "@types/semver": "7.5.8",
274517
274517
  "@types/which": "3.0.4",
274518
274518
  "get-tsconfig": "4.10.0",
@@ -284817,7 +284817,7 @@ function hardhatDeployLocalCommand() {
284817
284817
  description: "Deploy and verify contracts on Etherscan",
284818
284818
  command: "scs hardhat deploy local --verify"
284819
284819
  }
284820
- ])).option("-m, --module <ignitionmodule>", 'The module to deploy with Ignition, defaults to "ignition/modules/main.ts"').option("-r, --reset", "Wipes the existing deployment state before deploying").option("-v, --verify", "Verify the deployment on Etherscan").action(async ({ module, reset: reset2, verify }) => {
284820
+ ])).option("-m, --module <ignitionmodule>", 'The module to deploy with Ignition, defaults to "ignition/modules/main.ts"').option("--deployment-id <deploymentId>", "Set the id of the deployment").option("-r, --reset", "Wipes the existing deployment state before deploying").option("-v, --verify", "Verify the deployment on Etherscan").action(async ({ module, reset: reset2, verify, deploymentId }) => {
284821
284821
  intro("Deploying smart contracts to local network using Hardhat/Ignition");
284822
284822
  await validateIfRequiredPackagesAreInstalled(["hardhat"]);
284823
284823
  const { command, args } = await getPackageManagerExecutable();
@@ -284828,6 +284828,7 @@ function hardhatDeployLocalCommand() {
284828
284828
  "deploy",
284829
284829
  ...reset2 ? ["--reset"] : [],
284830
284830
  ...verify ? ["--verify"] : [],
284831
+ ...deploymentId ? ["--deployment-id", deploymentId] : [],
284831
284832
  "--network",
284832
284833
  "localhost",
284833
284834
  module ?? "ignition/modules/main.ts"
@@ -285672,4 +285673,4 @@ async function sdkCliCommand(argv = process.argv) {
285672
285673
  // src/cli.ts
285673
285674
  sdkCliCommand();
285674
285675
 
285675
- //# debugId=A08655CE6B9E396064756E2164756E21
285676
+ //# debugId=4EF45FA174E1F9A564756E2164756E21