@settlemint/sdk-cli 2.3.4-pr04a3860a → 2.3.4-pr180d73dc
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 +12 -12
- package/dist/cli.js.map +7 -7
- package/package.json +4 -4
package/dist/cli.js
CHANGED
@@ -263120,7 +263120,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
263120
263120
|
var package_default = {
|
263121
263121
|
name: "@settlemint/sdk-cli",
|
263122
263122
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
263123
|
-
version: "2.3.4-
|
263123
|
+
version: "2.3.4-pr180d73dc",
|
263124
263124
|
type: "module",
|
263125
263125
|
private: false,
|
263126
263126
|
license: "FSL-1.1-MIT",
|
@@ -263169,8 +263169,8 @@ var package_default = {
|
|
263169
263169
|
"@inquirer/input": "4.1.12",
|
263170
263170
|
"@inquirer/password": "4.0.15",
|
263171
263171
|
"@inquirer/select": "4.2.3",
|
263172
|
-
"@settlemint/sdk-js": "2.3.4-
|
263173
|
-
"@settlemint/sdk-utils": "2.3.4-
|
263172
|
+
"@settlemint/sdk-js": "2.3.4-pr180d73dc",
|
263173
|
+
"@settlemint/sdk-utils": "2.3.4-pr180d73dc",
|
263174
263174
|
"@types/node": "22.15.21",
|
263175
263175
|
"@types/semver": "7.7.0",
|
263176
263176
|
"@types/which": "3.0.4",
|
@@ -263185,7 +263185,7 @@ var package_default = {
|
|
263185
263185
|
yoctocolors: "2.1.1"
|
263186
263186
|
},
|
263187
263187
|
peerDependencies: {
|
263188
|
-
hardhat: "2.24.
|
263188
|
+
hardhat: "2.24.1"
|
263189
263189
|
},
|
263190
263190
|
peerDependenciesMeta: {
|
263191
263191
|
hardhat: {
|
@@ -323469,7 +323469,7 @@ function loginCommand() {
|
|
323469
323469
|
const timeoutPromise = new Promise((_6, reject) => {
|
323470
323470
|
timeout = setTimeout(() => {
|
323471
323471
|
reject(new Error("Timeout reading from STDIN after 30 seconds"));
|
323472
|
-
},
|
323472
|
+
}, 1000);
|
323473
323473
|
});
|
323474
323474
|
try {
|
323475
323475
|
const readPromise = (async () => {
|
@@ -326708,7 +326708,7 @@ function hardhatScriptLocalCommand() {
|
|
326708
326708
|
return new Command("local").description("Run a Hardhat script on a local development network.").requiredOption("-s, --script <script>", 'The script to run with Hardhat , e.g. "scripts/deploy.ts"').option("--no-compile", "Don't compile before running this task").usage(createExamples([
|
326709
326709
|
{
|
326710
326710
|
description: "Run a Hardhat script on a local network",
|
326711
|
-
command: "hardhat script local --script scripts/deploy.ts"
|
326711
|
+
command: "scs hardhat script local --script scripts/deploy.ts"
|
326712
326712
|
}
|
326713
326713
|
])).action(async ({ script, compile }) => {
|
326714
326714
|
intro("Running Hardhat script on local network");
|
@@ -326732,15 +326732,15 @@ function hardhatScriptRemoteCommand() {
|
|
326732
326732
|
const cmd2 = new Command("remote").description("Run a Hardhat script on a remote network on the platform.").requiredOption("-s, --script <script>", 'The script to run with Hardhat , e.g. "scripts/deploy.ts"').option("--blockchain-node <blockchainNode>", "Blockchain Node unique name (optional, defaults to the blockchain node in the environment)").option("--prod", "Connect to your production environment").option("-a, --accept-defaults", "Accept the default and previously set values").option("--no-compile", "Don't compile before running this task").usage(createExamples([
|
326733
326733
|
{
|
326734
326734
|
description: "Run a Hardhat script on a remote network",
|
326735
|
-
command: "hardhat script remote --script scripts/deploy.ts"
|
326735
|
+
command: "scs hardhat script remote --script scripts/deploy.ts"
|
326736
326736
|
},
|
326737
326737
|
{
|
326738
326738
|
description: "Run a Hardhat script on a remote network with a specific blockchain node",
|
326739
|
-
command: "hardhat script remote --script scripts/deploy.ts --blockchain-node my-blockchain-node"
|
326739
|
+
command: "scs hardhat script remote --script scripts/deploy.ts --blockchain-node my-blockchain-node"
|
326740
326740
|
},
|
326741
326741
|
{
|
326742
326742
|
description: "Run a Hardhat script on a remote network without compiling",
|
326743
|
-
command: "hardhat script remote --script scripts/deploy.ts --no-compile"
|
326743
|
+
command: "scs hardhat script remote --script scripts/deploy.ts --no-compile"
|
326744
326744
|
}
|
326745
326745
|
]));
|
326746
326746
|
cmd2.action(async ({ script, prod, blockchainNode: blockchainNodeUniqueName, acceptDefaults, compile }) => {
|
@@ -326968,7 +326968,7 @@ function subgraphBuildCommand() {
|
|
326968
326968
|
return new Command("build").description("Build the subgraph").usage(createExamples([
|
326969
326969
|
{
|
326970
326970
|
description: "Build the subgraph",
|
326971
|
-
command: "subgraph build"
|
326971
|
+
command: "scs subgraph build"
|
326972
326972
|
}
|
326973
326973
|
])).action(async () => {
|
326974
326974
|
intro("Building subgraph");
|
@@ -326989,7 +326989,7 @@ function subgraphCodegenCommand() {
|
|
326989
326989
|
return new Command("codegen").description("Codegen the subgraph types").usage(createExamples([
|
326990
326990
|
{
|
326991
326991
|
description: "Generate subgraph types",
|
326992
|
-
command: "subgraph codegen"
|
326992
|
+
command: "scs subgraph codegen"
|
326993
326993
|
}
|
326994
326994
|
])).action(async () => {
|
326995
326995
|
intro("Generating subgraph types");
|
@@ -327374,4 +327374,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
327374
327374
|
// src/cli.ts
|
327375
327375
|
sdkCliCommand();
|
327376
327376
|
|
327377
|
-
//# debugId=
|
327377
|
+
//# debugId=07AC50CE535A42AA64756E2164756E21
|