@settlemint/sdk-cli 1.1.6-pr1570444a → 1.1.6-pr42a6665d
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 -9
- package/dist/cli.js.map +6 -6
- package/package.json +4 -4
package/dist/cli.js
CHANGED
@@ -274296,7 +274296,6 @@ var DotEnvSchema = z.object({
|
|
274296
274296
|
SETTLEMINT_BLOCKSCOUT: UniqueNameSchema.optional(),
|
274297
274297
|
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT: UrlSchema.optional(),
|
274298
274298
|
SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT: UrlSchema.optional(),
|
274299
|
-
NEXT_PUBLIC_SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT: UrlSchema.optional(),
|
274300
274299
|
SETTLEMINT_NEW_PROJECT_NAME: z.string().optional()
|
274301
274300
|
});
|
274302
274301
|
var DotEnvSchemaPartial = DotEnvSchema.partial();
|
@@ -274463,7 +274462,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
274463
274462
|
var package_default = {
|
274464
274463
|
name: "@settlemint/sdk-cli",
|
274465
274464
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
274466
|
-
version: "1.1.6-
|
274465
|
+
version: "1.1.6-pr42a6665d",
|
274467
274466
|
type: "module",
|
274468
274467
|
private: false,
|
274469
274468
|
license: "FSL-1.1-MIT",
|
@@ -274511,9 +274510,9 @@ var package_default = {
|
|
274511
274510
|
"@inquirer/input": "4.1.5",
|
274512
274511
|
"@inquirer/password": "4.0.8",
|
274513
274512
|
"@inquirer/select": "4.0.8",
|
274514
|
-
"@settlemint/sdk-js": "1.1.6-
|
274515
|
-
"@settlemint/sdk-utils": "1.1.6-
|
274516
|
-
"@types/node": "22.13.
|
274513
|
+
"@settlemint/sdk-js": "1.1.6-pr42a6665d",
|
274514
|
+
"@settlemint/sdk-utils": "1.1.6-pr42a6665d",
|
274515
|
+
"@types/node": "22.13.4",
|
274517
274516
|
"@types/semver": "7.5.8",
|
274518
274517
|
"@types/which": "3.0.4",
|
274519
274518
|
"get-tsconfig": "4.10.0",
|
@@ -275960,7 +275959,6 @@ var DotEnvSchema2 = z.object({
|
|
275960
275959
|
SETTLEMINT_BLOCKSCOUT: UniqueNameSchema2.optional(),
|
275961
275960
|
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT: UrlSchema2.optional(),
|
275962
275961
|
SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT: UrlSchema2.optional(),
|
275963
|
-
NEXT_PUBLIC_SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT: UrlSchema2.optional(),
|
275964
275962
|
SETTLEMINT_NEW_PROJECT_NAME: z.string().optional()
|
275965
275963
|
});
|
275966
275964
|
var DotEnvSchemaPartial2 = DotEnvSchema2.partial();
|
@@ -281037,7 +281035,6 @@ async function writeEnvSpinner(prod, env2) {
|
|
281037
281035
|
SETTLEMINT_BLOCKSCOUT: env2.SETTLEMINT_BLOCKSCOUT,
|
281038
281036
|
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT: env2.SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT,
|
281039
281037
|
SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT: env2.SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT,
|
281040
|
-
NEXT_PUBLIC_SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT: env2.SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT,
|
281041
281038
|
SETTLEMINT_NEW_PROJECT_NAME: env2.SETTLEMINT_NEW_PROJECT_NAME
|
281042
281039
|
};
|
281043
281040
|
await writeEnv({
|
@@ -284820,7 +284817,7 @@ function hardhatDeployLocalCommand() {
|
|
284820
284817
|
description: "Deploy and verify contracts on Etherscan",
|
284821
284818
|
command: "scs hardhat deploy local --verify"
|
284822
284819
|
}
|
284823
|
-
])).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 }) => {
|
284824
284821
|
intro("Deploying smart contracts to local network using Hardhat/Ignition");
|
284825
284822
|
await validateIfRequiredPackagesAreInstalled(["hardhat"]);
|
284826
284823
|
const { command, args } = await getPackageManagerExecutable();
|
@@ -284831,6 +284828,7 @@ function hardhatDeployLocalCommand() {
|
|
284831
284828
|
"deploy",
|
284832
284829
|
...reset2 ? ["--reset"] : [],
|
284833
284830
|
...verify ? ["--verify"] : [],
|
284831
|
+
...deploymentId ? ["--deployment-id", deploymentId] : [],
|
284834
284832
|
"--network",
|
284835
284833
|
"localhost",
|
284836
284834
|
module ?? "ignition/modules/main.ts"
|
@@ -285675,4 +285673,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
285675
285673
|
// src/cli.ts
|
285676
285674
|
sdkCliCommand();
|
285677
285675
|
|
285678
|
-
//# debugId=
|
285676
|
+
//# debugId=EFB72AEF7B2EC7C764756E2164756E21
|