@settlemint/sdk-cli 1.0.9-pr9688bb96 → 1.0.9-prac55277e
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 +120 -75
- package/dist/cli.js.map +20 -21
- package/package.json +10 -12
package/dist/cli.js
CHANGED
|
@@ -34802,7 +34802,7 @@ var require_cjs = __commonJS((exports) => {
|
|
|
34802
34802
|
exports.sync = impl.sync;
|
|
34803
34803
|
});
|
|
34804
34804
|
|
|
34805
|
-
// ../../node_modules/which/lib/index.js
|
|
34805
|
+
// ../../node_modules/@npmcli/promise-spawn/node_modules/which/lib/index.js
|
|
34806
34806
|
var require_lib4 = __commonJS((exports, module) => {
|
|
34807
34807
|
var { isexe, sync: isexeSync } = require_cjs();
|
|
34808
34808
|
var { join: join4, delimiter, sep: sep2, posix: posix2 } = __require("path");
|
|
@@ -35723,9 +35723,93 @@ var require_opts = __commonJS((exports, module) => {
|
|
|
35723
35723
|
module.exports.loadGitConfig = loadGitConfig;
|
|
35724
35724
|
});
|
|
35725
35725
|
|
|
35726
|
+
// ../../node_modules/@npmcli/git/node_modules/which/lib/index.js
|
|
35727
|
+
var require_lib6 = __commonJS((exports, module) => {
|
|
35728
|
+
var { isexe, sync: isexeSync } = require_cjs();
|
|
35729
|
+
var { join: join4, delimiter, sep: sep2, posix: posix2 } = __require("path");
|
|
35730
|
+
var isWindows2 = process.platform === "win32";
|
|
35731
|
+
var rSlash = new RegExp(`[${posix2.sep}${sep2 === posix2.sep ? "" : sep2}]`.replace(/(\\)/g, "\\$1"));
|
|
35732
|
+
var rRel = new RegExp(`^\\.${rSlash.source}`);
|
|
35733
|
+
var getNotFoundError = (cmd) => Object.assign(new Error(`not found: ${cmd}`), { code: "ENOENT" });
|
|
35734
|
+
var getPathInfo = (cmd, {
|
|
35735
|
+
path: optPath = process.env.PATH,
|
|
35736
|
+
pathExt: optPathExt = process.env.PATHEXT,
|
|
35737
|
+
delimiter: optDelimiter = delimiter
|
|
35738
|
+
}) => {
|
|
35739
|
+
const pathEnv = cmd.match(rSlash) ? [""] : [
|
|
35740
|
+
...isWindows2 ? [process.cwd()] : [],
|
|
35741
|
+
...(optPath || "").split(optDelimiter)
|
|
35742
|
+
];
|
|
35743
|
+
if (isWindows2) {
|
|
35744
|
+
const pathExtExe = optPathExt || [".EXE", ".CMD", ".BAT", ".COM"].join(optDelimiter);
|
|
35745
|
+
const pathExt = pathExtExe.split(optDelimiter).flatMap((item) => [item, item.toLowerCase()]);
|
|
35746
|
+
if (cmd.includes(".") && pathExt[0] !== "") {
|
|
35747
|
+
pathExt.unshift("");
|
|
35748
|
+
}
|
|
35749
|
+
return { pathEnv, pathExt, pathExtExe };
|
|
35750
|
+
}
|
|
35751
|
+
return { pathEnv, pathExt: [""] };
|
|
35752
|
+
};
|
|
35753
|
+
var getPathPart = (raw, cmd) => {
|
|
35754
|
+
const pathPart = /^".*"$/.test(raw) ? raw.slice(1, -1) : raw;
|
|
35755
|
+
const prefix = !pathPart && rRel.test(cmd) ? cmd.slice(0, 2) : "";
|
|
35756
|
+
return prefix + join4(pathPart, cmd);
|
|
35757
|
+
};
|
|
35758
|
+
var which = async (cmd, opt = {}) => {
|
|
35759
|
+
const { pathEnv, pathExt, pathExtExe } = getPathInfo(cmd, opt);
|
|
35760
|
+
const found = [];
|
|
35761
|
+
for (const envPart of pathEnv) {
|
|
35762
|
+
const p = getPathPart(envPart, cmd);
|
|
35763
|
+
for (const ext2 of pathExt) {
|
|
35764
|
+
const withExt = p + ext2;
|
|
35765
|
+
const is = await isexe(withExt, { pathExt: pathExtExe, ignoreErrors: true });
|
|
35766
|
+
if (is) {
|
|
35767
|
+
if (!opt.all) {
|
|
35768
|
+
return withExt;
|
|
35769
|
+
}
|
|
35770
|
+
found.push(withExt);
|
|
35771
|
+
}
|
|
35772
|
+
}
|
|
35773
|
+
}
|
|
35774
|
+
if (opt.all && found.length) {
|
|
35775
|
+
return found;
|
|
35776
|
+
}
|
|
35777
|
+
if (opt.nothrow) {
|
|
35778
|
+
return null;
|
|
35779
|
+
}
|
|
35780
|
+
throw getNotFoundError(cmd);
|
|
35781
|
+
};
|
|
35782
|
+
var whichSync = (cmd, opt = {}) => {
|
|
35783
|
+
const { pathEnv, pathExt, pathExtExe } = getPathInfo(cmd, opt);
|
|
35784
|
+
const found = [];
|
|
35785
|
+
for (const pathEnvPart of pathEnv) {
|
|
35786
|
+
const p = getPathPart(pathEnvPart, cmd);
|
|
35787
|
+
for (const ext2 of pathExt) {
|
|
35788
|
+
const withExt = p + ext2;
|
|
35789
|
+
const is = isexeSync(withExt, { pathExt: pathExtExe, ignoreErrors: true });
|
|
35790
|
+
if (is) {
|
|
35791
|
+
if (!opt.all) {
|
|
35792
|
+
return withExt;
|
|
35793
|
+
}
|
|
35794
|
+
found.push(withExt);
|
|
35795
|
+
}
|
|
35796
|
+
}
|
|
35797
|
+
}
|
|
35798
|
+
if (opt.all && found.length) {
|
|
35799
|
+
return found;
|
|
35800
|
+
}
|
|
35801
|
+
if (opt.nothrow) {
|
|
35802
|
+
return null;
|
|
35803
|
+
}
|
|
35804
|
+
throw getNotFoundError(cmd);
|
|
35805
|
+
};
|
|
35806
|
+
module.exports = which;
|
|
35807
|
+
which.sync = whichSync;
|
|
35808
|
+
});
|
|
35809
|
+
|
|
35726
35810
|
// ../../node_modules/@npmcli/git/lib/which.js
|
|
35727
35811
|
var require_which = __commonJS((exports, module) => {
|
|
35728
|
-
var which =
|
|
35812
|
+
var which = require_lib6();
|
|
35729
35813
|
var gitPath;
|
|
35730
35814
|
try {
|
|
35731
35815
|
gitPath = which.sync("git");
|
|
@@ -37236,7 +37320,7 @@ var require_utils7 = __commonJS((exports) => {
|
|
|
37236
37320
|
});
|
|
37237
37321
|
|
|
37238
37322
|
// ../../node_modules/npm-package-arg/node_modules/validate-npm-package-name/lib/index.js
|
|
37239
|
-
var
|
|
37323
|
+
var require_lib7 = __commonJS((exports, module) => {
|
|
37240
37324
|
var { builtinModules: builtins } = __require("module");
|
|
37241
37325
|
var scopedPackagePattern = new RegExp("^(?:@([^/]+?)[/])?([^/]+?)$");
|
|
37242
37326
|
var blacklist = [
|
|
@@ -37328,7 +37412,7 @@ var require_npa = __commonJS((exports, module) => {
|
|
|
37328
37412
|
var HostedGit = require_lib3();
|
|
37329
37413
|
var semver = require_semver2();
|
|
37330
37414
|
var path5 = global.FAKE_WINDOWS ? __require("path").win32 : __require("path");
|
|
37331
|
-
var validatePackageName =
|
|
37415
|
+
var validatePackageName = require_lib7();
|
|
37332
37416
|
var { homedir } = __require("os");
|
|
37333
37417
|
var { log } = require_lib2();
|
|
37334
37418
|
var isWindows2 = process.platform === "win32" || global.FAKE_WINDOWS;
|
|
@@ -37867,7 +37951,7 @@ var require_dev_engines = __commonJS((exports, module) => {
|
|
|
37867
37951
|
});
|
|
37868
37952
|
|
|
37869
37953
|
// ../../node_modules/npm-install-checks/lib/index.js
|
|
37870
|
-
var
|
|
37954
|
+
var require_lib8 = __commonJS((exports, module) => {
|
|
37871
37955
|
var semver = require_semver2();
|
|
37872
37956
|
var currentEnv = require_current_env();
|
|
37873
37957
|
var { checkDevEngines } = require_dev_engines();
|
|
@@ -37951,7 +38035,7 @@ var require_lib7 = __commonJS((exports, module) => {
|
|
|
37951
38035
|
});
|
|
37952
38036
|
|
|
37953
38037
|
// ../../node_modules/npm-normalize-package-bin/lib/index.js
|
|
37954
|
-
var
|
|
38038
|
+
var require_lib9 = __commonJS((exports, module) => {
|
|
37955
38039
|
var { join: join4, basename } = __require("path");
|
|
37956
38040
|
var normalize2 = (pkg) => !pkg.bin ? removeBin(pkg) : typeof pkg.bin === "string" ? normalizeString(pkg) : Array.isArray(pkg.bin) ? normalizeArray(pkg) : typeof pkg.bin === "object" ? normalizeObject(pkg) : removeBin(pkg);
|
|
37957
38041
|
var normalizeString = (pkg) => {
|
|
@@ -37999,11 +38083,11 @@ var require_lib8 = __commonJS((exports, module) => {
|
|
|
37999
38083
|
});
|
|
38000
38084
|
|
|
38001
38085
|
// ../../node_modules/npm-pick-manifest/lib/index.js
|
|
38002
|
-
var
|
|
38086
|
+
var require_lib10 = __commonJS((exports, module) => {
|
|
38003
38087
|
var npa = require_npa();
|
|
38004
38088
|
var semver = require_semver2();
|
|
38005
|
-
var { checkEngine } =
|
|
38006
|
-
var normalizeBin =
|
|
38089
|
+
var { checkEngine } = require_lib8();
|
|
38090
|
+
var normalizeBin = require_lib9();
|
|
38007
38091
|
var engineOk = (manifest, npmVersion, nodeVersion) => {
|
|
38008
38092
|
try {
|
|
38009
38093
|
checkEngine(manifest, npmVersion, nodeVersion);
|
|
@@ -38165,7 +38249,7 @@ var require_clone = __commonJS((exports, module) => {
|
|
|
38165
38249
|
var getRevs = require_revs();
|
|
38166
38250
|
var spawn2 = require_spawn();
|
|
38167
38251
|
var { isWindows: isWindows2 } = require_utils7();
|
|
38168
|
-
var pickManifest =
|
|
38252
|
+
var pickManifest = require_lib10();
|
|
38169
38253
|
var fs3 = __require("fs/promises");
|
|
38170
38254
|
module.exports = (repo, ref = "HEAD", target = null, opts = {}) => getRevs(repo, opts).then((revs) => clone(repo, revs, ref, resolveRef(revs, ref, opts), target || defaultTarget(repo, opts.cwd), opts));
|
|
38171
38255
|
var maybeShallow = (repo, opts) => {
|
|
@@ -38297,7 +38381,7 @@ var require_is_clean = __commonJS((exports, module) => {
|
|
|
38297
38381
|
});
|
|
38298
38382
|
|
|
38299
38383
|
// ../../node_modules/@npmcli/git/lib/index.js
|
|
38300
|
-
var
|
|
38384
|
+
var require_lib11 = __commonJS((exports, module) => {
|
|
38301
38385
|
module.exports = {
|
|
38302
38386
|
clone: require_clone(),
|
|
38303
38387
|
revs: require_revs(),
|
|
@@ -40194,7 +40278,7 @@ var require_normalize = __commonJS((exports, module) => {
|
|
|
40194
40278
|
normalizePackageBin(data, changes);
|
|
40195
40279
|
}
|
|
40196
40280
|
if (steps.includes("gitHead") && !data.gitHead) {
|
|
40197
|
-
const git =
|
|
40281
|
+
const git = require_lib11();
|
|
40198
40282
|
const gitRoot = await git.find({ cwd: pkg.path, root });
|
|
40199
40283
|
let head;
|
|
40200
40284
|
if (gitRoot) {
|
|
@@ -40480,7 +40564,7 @@ var require_sort2 = __commonJS((exports, module) => {
|
|
|
40480
40564
|
});
|
|
40481
40565
|
|
|
40482
40566
|
// ../../node_modules/@npmcli/package-json/lib/index.js
|
|
40483
|
-
var
|
|
40567
|
+
var require_lib12 = __commonJS((exports, module) => {
|
|
40484
40568
|
var { readFile: readFile2, writeFile: writeFile2 } = __require("node:fs/promises");
|
|
40485
40569
|
var { resolve: resolve2 } = __require("node:path");
|
|
40486
40570
|
var parseJSON = require_lib();
|
|
@@ -228072,7 +228156,7 @@ var require_wrap_ansi = __commonJS((exports, module) => {
|
|
|
228072
228156
|
});
|
|
228073
228157
|
|
|
228074
228158
|
// ../../node_modules/mute-stream/lib/index.js
|
|
228075
|
-
var
|
|
228159
|
+
var require_lib13 = __commonJS((exports, module) => {
|
|
228076
228160
|
var Stream3 = __require("stream");
|
|
228077
228161
|
|
|
228078
228162
|
class MuteStream extends Stream3 {
|
|
@@ -240982,7 +241066,7 @@ var require_dist5 = __commonJS((exports) => {
|
|
|
240982
241066
|
});
|
|
240983
241067
|
|
|
240984
241068
|
// ../../node_modules/node-fetch-native/lib/index.cjs
|
|
240985
|
-
var
|
|
241069
|
+
var require_lib14 = __commonJS((exports, module) => {
|
|
240986
241070
|
var nodeFetch = require_dist5();
|
|
240987
241071
|
function fetch2(input, options) {
|
|
240988
241072
|
return nodeFetch.fetch(input, options);
|
|
@@ -241028,7 +241112,7 @@ var require_proxy = __commonJS((exports) => {
|
|
|
241028
241112
|
var require$$3 = __require("events");
|
|
241029
241113
|
var require$$5$4 = __require("url");
|
|
241030
241114
|
var require$$2 = __require("assert");
|
|
241031
|
-
var nodeFetchNative =
|
|
241115
|
+
var nodeFetchNative = require_lib14();
|
|
241032
241116
|
function _interopDefaultCompat(A5) {
|
|
241033
241117
|
return A5 && typeof A5 == "object" && "default" in A5 ? A5.default : A5;
|
|
241034
241118
|
}
|
|
@@ -269118,7 +269202,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
|
269118
269202
|
var package_default = {
|
|
269119
269203
|
name: "@settlemint/sdk-cli",
|
|
269120
269204
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
|
269121
|
-
version: "1.0.9-
|
|
269205
|
+
version: "1.0.9-prac55277e",
|
|
269122
269206
|
type: "module",
|
|
269123
269207
|
private: false,
|
|
269124
269208
|
license: "FSL-1.1-MIT",
|
|
@@ -269161,24 +269245,22 @@ var package_default = {
|
|
|
269161
269245
|
tinyexec: "0.3.2"
|
|
269162
269246
|
},
|
|
269163
269247
|
devDependencies: {
|
|
269248
|
+
"@types/semver": "7.5.8",
|
|
269249
|
+
"@types/node": "22.10.10",
|
|
269250
|
+
"is-in-ci": "1.0.0",
|
|
269251
|
+
semver: "7.6.3",
|
|
269252
|
+
slugify: "1.6.6",
|
|
269253
|
+
yoctocolors: "2.1.1",
|
|
269164
269254
|
"@commander-js/extra-typings": "13.1.0",
|
|
269165
269255
|
"@inquirer/confirm": "5.1.3",
|
|
269166
269256
|
"@inquirer/input": "4.1.3",
|
|
269167
269257
|
"@inquirer/password": "4.0.6",
|
|
269168
269258
|
"@inquirer/select": "4.0.6",
|
|
269169
|
-
"@settlemint/sdk-js": "1.0.9-
|
|
269170
|
-
"@settlemint/sdk-utils": "1.0.9-
|
|
269171
|
-
"@types/node": "22.10.10",
|
|
269172
|
-
"@types/semver": "7.5.8",
|
|
269173
|
-
"@types/which": "3.0.4",
|
|
269259
|
+
"@settlemint/sdk-js": "1.0.9-prac55277e",
|
|
269260
|
+
"@settlemint/sdk-utils": "1.0.9-prac55277e",
|
|
269174
269261
|
"get-tsconfig": "4.10.0",
|
|
269175
269262
|
giget: "1.2.3",
|
|
269176
|
-
|
|
269177
|
-
semver: "7.6.3",
|
|
269178
|
-
slugify: "1.6.6",
|
|
269179
|
-
which: "5.0.0",
|
|
269180
|
-
yaml: "2.7.0",
|
|
269181
|
-
yoctocolors: "2.1.1"
|
|
269263
|
+
yaml: "2.7.0"
|
|
269182
269264
|
},
|
|
269183
269265
|
peerDependencies: {
|
|
269184
269266
|
hardhat: "2.22.18"
|
|
@@ -271670,8 +271752,8 @@ async function installPackage(names, options = {}) {
|
|
|
271670
271752
|
|
|
271671
271753
|
// ../utils/dist/package-manager.mjs
|
|
271672
271754
|
var import_console_table_printer3 = __toESM(require_dist2(), 1);
|
|
271673
|
-
var import_package_json = __toESM(
|
|
271674
|
-
var import_package_json2 = __toESM(
|
|
271755
|
+
var import_package_json = __toESM(require_lib12(), 1);
|
|
271756
|
+
var import_package_json2 = __toESM(require_lib12(), 1);
|
|
271675
271757
|
async function projectRoot2(fallbackToCwd = false, cwd) {
|
|
271676
271758
|
const packageJsonPath = await findUp("package.json", { cwd });
|
|
271677
271759
|
if (!packageJsonPath) {
|
|
@@ -273923,7 +274005,7 @@ function usePagination({ items, active, renderItem, pageSize, loop = true }) {
|
|
|
273923
274005
|
`);
|
|
273924
274006
|
}
|
|
273925
274007
|
// ../../node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
|
273926
|
-
var import_mute_stream = __toESM(
|
|
274008
|
+
var import_mute_stream = __toESM(require_lib13(), 1);
|
|
273927
274009
|
init_mjs();
|
|
273928
274010
|
import * as readline2 from "node:readline";
|
|
273929
274011
|
import { AsyncResource as AsyncResource3 } from "node:async_hooks";
|
|
@@ -278768,17 +278850,6 @@ function formatUseCaseName(name2) {
|
|
|
278768
278850
|
return name2;
|
|
278769
278851
|
}
|
|
278770
278852
|
|
|
278771
|
-
// src/utils/smart-contract-set/execute-foundry-command.ts
|
|
278772
|
-
var import_which = __toESM(require_lib4(), 1);
|
|
278773
|
-
async function executeFoundryCommand(command, args) {
|
|
278774
|
-
try {
|
|
278775
|
-
await import_which.default(command);
|
|
278776
|
-
} catch (error5) {
|
|
278777
|
-
cancel2("Foundry is not installed. Instructions to install Foundry can be found here: https://book.getfoundry.sh/getting-started/installation");
|
|
278778
|
-
}
|
|
278779
|
-
return executeCommand(command, args);
|
|
278780
|
-
}
|
|
278781
|
-
|
|
278782
278853
|
// src/commands/smart-contract-set/create.ts
|
|
278783
278854
|
function createCommand4() {
|
|
278784
278855
|
return new Command("create").description("Bootstrap your smart contract set").option("-n, --project-name <name>", "The name for your smart contract set project").option("--use-case <useCase>", "Use case for the smart contract set (run `settlemint platform config` to see available use cases)").option("-i, --instance <instance>", "The instance to connect to").action(async ({ projectName, useCase, instance }) => {
|
|
@@ -278811,7 +278882,7 @@ function createCommand4() {
|
|
|
278811
278882
|
await spinner({
|
|
278812
278883
|
startMessage: "Scaffolding the smart contract set",
|
|
278813
278884
|
task: async () => {
|
|
278814
|
-
await
|
|
278885
|
+
await executeCommand("forge", [
|
|
278815
278886
|
"init",
|
|
278816
278887
|
name2,
|
|
278817
278888
|
"--template",
|
|
@@ -278855,7 +278926,7 @@ function foundryBuildCommand() {
|
|
|
278855
278926
|
}
|
|
278856
278927
|
])).helpOption(false).option("-h, --help", "Get list of possible forge options").passThroughOptions().allowUnknownOption(true).action(async (passThroughOptions, cmd2) => {
|
|
278857
278928
|
const forgeOptions = mapPassthroughOptions(passThroughOptions, cmd2);
|
|
278858
|
-
await
|
|
278929
|
+
await executeCommand("forge", ["build", ...forgeOptions]);
|
|
278859
278930
|
});
|
|
278860
278931
|
}
|
|
278861
278932
|
|
|
@@ -278876,7 +278947,7 @@ function foundryFormatCommand() {
|
|
|
278876
278947
|
}
|
|
278877
278948
|
])).helpOption(false).option("-h, --help", "Get list of possible forge options").passThroughOptions().allowUnknownOption(true).action(async (passThroughOptions, cmd2) => {
|
|
278878
278949
|
const forgeOptions = mapPassthroughOptions(passThroughOptions, cmd2);
|
|
278879
|
-
await
|
|
278950
|
+
await executeCommand("forge", ["fmt", ...forgeOptions]);
|
|
278880
278951
|
note("Smart contract set formatted successfully!");
|
|
278881
278952
|
});
|
|
278882
278953
|
}
|
|
@@ -278898,7 +278969,7 @@ function foundryNetworkCommand() {
|
|
|
278898
278969
|
}
|
|
278899
278970
|
])).helpOption(false).option("-h, --help", "Get list of possible anvil options").passThroughOptions().allowUnknownOption(true).action(async (passThroughOptions, cmd2) => {
|
|
278900
278971
|
const anvilOptions = mapPassthroughOptions(passThroughOptions, cmd2);
|
|
278901
|
-
await
|
|
278972
|
+
await executeCommand("anvil", anvilOptions);
|
|
278902
278973
|
});
|
|
278903
278974
|
}
|
|
278904
278975
|
|
|
@@ -278919,26 +278990,10 @@ function foundryTestCommand() {
|
|
|
278919
278990
|
}
|
|
278920
278991
|
])).helpOption(false).option("-h, --help", "Get list of possible forge options").passThroughOptions().allowUnknownOption(true).action(async (passThroughOptions, cmd2) => {
|
|
278921
278992
|
const forgeOptions = mapPassthroughOptions(passThroughOptions, cmd2);
|
|
278922
|
-
await
|
|
278993
|
+
await executeCommand("forge", ["test", ...forgeOptions]);
|
|
278923
278994
|
});
|
|
278924
278995
|
}
|
|
278925
278996
|
|
|
278926
|
-
// src/utils/validate-required-packages.ts
|
|
278927
|
-
var validateIfRequiredPackagesAreInstalled = async (packages, cwd2) => {
|
|
278928
|
-
const results = await Promise.all(packages.map(async (pkg) => {
|
|
278929
|
-
try {
|
|
278930
|
-
const isInstalled = await isPackageInstalled(pkg, cwd2);
|
|
278931
|
-
return { packageName: pkg, isInstalled };
|
|
278932
|
-
} catch (err) {
|
|
278933
|
-
return { packageName: pkg, isInstalled: false };
|
|
278934
|
-
}
|
|
278935
|
-
}));
|
|
278936
|
-
const notInstalled = results.filter((result) => !result.isInstalled);
|
|
278937
|
-
if (notInstalled.length > 0) {
|
|
278938
|
-
cancel2(`The following required npm packages are not installed: ${notInstalled.map((pkg) => pkg.packageName).join(", ")}. Please install them and try again.`);
|
|
278939
|
-
}
|
|
278940
|
-
};
|
|
278941
|
-
|
|
278942
278997
|
// src/commands/smart-contract-set/hardhat/build.ts
|
|
278943
278998
|
function hardhatBuildCommand() {
|
|
278944
278999
|
return new Command("build").description("Build the smart contracts using Hardhat").usage(createExamples([
|
|
@@ -278955,7 +279010,6 @@ function hardhatBuildCommand() {
|
|
|
278955
279010
|
command: "scs hardhat build --concurrency 2"
|
|
278956
279011
|
}
|
|
278957
279012
|
])).helpOption(false).option("-h, --help", "Get list of possible hardhat compile options").passThroughOptions().allowUnknownOption(true).action(async (passThroughOptions, cmd2) => {
|
|
278958
|
-
await validateIfRequiredPackagesAreInstalled(["hardhat"]);
|
|
278959
279013
|
const hardhatOptions = mapPassthroughOptions(passThroughOptions, cmd2);
|
|
278960
279014
|
const { command, args } = await getPackageManagerExecutable();
|
|
278961
279015
|
await executeCommand(command, [...args, "hardhat", "compile", ...hardhatOptions]);
|
|
@@ -278982,7 +279036,6 @@ function hardhatDeployLocalCommand() {
|
|
|
278982
279036
|
command: "scs hardhat deploy local --verify"
|
|
278983
279037
|
}
|
|
278984
279038
|
])).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 }) => {
|
|
278985
|
-
await validateIfRequiredPackagesAreInstalled(["hardhat"]);
|
|
278986
279039
|
const { command, args } = await getPackageManagerExecutable();
|
|
278987
279040
|
await executeCommand(command, [
|
|
278988
279041
|
...args,
|
|
@@ -279159,7 +279212,6 @@ function hardhatDeployRemoteCommand() {
|
|
|
279159
279212
|
acceptDefaults,
|
|
279160
279213
|
blockchainNode: blockchainNodeUniqueName
|
|
279161
279214
|
}) => {
|
|
279162
|
-
await validateIfRequiredPackagesAreInstalled(["hardhat"]);
|
|
279163
279215
|
const autoAccept = !!acceptDefaults || is_in_ci_default;
|
|
279164
279216
|
const env2 = await loadEnv(false, !!prod);
|
|
279165
279217
|
const instance = await instancePrompt(env2, true);
|
|
@@ -279230,7 +279282,6 @@ function hardhatNetworkCommand() {
|
|
|
279230
279282
|
command: "scs hardhat network --port 3000"
|
|
279231
279283
|
}
|
|
279232
279284
|
])).helpOption(false).option("-h, --help", "Get list of possible hardhat node options").passThroughOptions().allowUnknownOption(true).action(async (passThroughOptions, cmd2) => {
|
|
279233
|
-
await validateIfRequiredPackagesAreInstalled(["hardhat"]);
|
|
279234
279285
|
const hardhatOptions = mapPassthroughOptions(passThroughOptions, cmd2);
|
|
279235
279286
|
const { command, args } = await getPackageManagerExecutable();
|
|
279236
279287
|
await executeCommand(command, [...args, "hardhat", "node", ...hardhatOptions]);
|
|
@@ -279240,7 +279291,6 @@ function hardhatNetworkCommand() {
|
|
|
279240
279291
|
// src/commands/smart-contract-set/hardhat/script/local.ts
|
|
279241
279292
|
function hardhatScriptLocalCommand() {
|
|
279242
279293
|
return new Command("local").description("Run a Hardhat script to deploy a contract on the platform or interact with a deployed contract.").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").action(async ({ script, compile }) => {
|
|
279243
|
-
await validateIfRequiredPackagesAreInstalled(["hardhat"]);
|
|
279244
279294
|
const { command, args } = await getPackageManagerExecutable();
|
|
279245
279295
|
await executeCommand(command, [
|
|
279246
279296
|
...args,
|
|
@@ -279258,7 +279308,6 @@ function hardhatScriptLocalCommand() {
|
|
|
279258
279308
|
function hardhatScriptRemoteCommand() {
|
|
279259
279309
|
const cmd2 = new Command("remote").description("Run a Hardhat script to deploy a contract on the platform or interact with a deployed contract.").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");
|
|
279260
279310
|
cmd2.action(async ({ script, prod, blockchainNode: blockchainNodeUniqueName, acceptDefaults, compile }) => {
|
|
279261
|
-
await validateIfRequiredPackagesAreInstalled(["hardhat"]);
|
|
279262
279311
|
const autoAccept = !!acceptDefaults || is_in_ci_default;
|
|
279263
279312
|
const env2 = await loadEnv(false, !!prod);
|
|
279264
279313
|
const instance = await instancePrompt(env2, true);
|
|
@@ -279307,7 +279356,6 @@ function hardhatTestCommand() {
|
|
|
279307
279356
|
command: "scs hardhat test test/token.test.ts"
|
|
279308
279357
|
}
|
|
279309
279358
|
])).helpOption(false).option("-h, --help", "Get list of possible hardhat test options").passThroughOptions().allowUnknownOption().action(async (options, cmd2) => {
|
|
279310
|
-
await validateIfRequiredPackagesAreInstalled(["hardhat"]);
|
|
279311
279359
|
const hardhatOptions = mapPassthroughOptions(options, cmd2);
|
|
279312
279360
|
const { command, args } = await getPackageManagerExecutable();
|
|
279313
279361
|
await executeCommand(command, [...args, "hardhat", "test", ...hardhatOptions]);
|
|
@@ -279376,7 +279424,7 @@ var SETTLEMINT_NETWORK = "settlemint";
|
|
|
279376
279424
|
async function subgraphSetup({ network }) {
|
|
279377
279425
|
const generated = await isGenerated();
|
|
279378
279426
|
if (generated) {
|
|
279379
|
-
await
|
|
279427
|
+
await executeCommand("forge", ["build"]);
|
|
279380
279428
|
}
|
|
279381
279429
|
if (await exists3("./generated")) {
|
|
279382
279430
|
await rm4("./generated", { recursive: true, force: true });
|
|
@@ -279479,7 +279527,6 @@ async function getNodeName({
|
|
|
279479
279527
|
// src/commands/smart-contract-set/subgraph/build.ts
|
|
279480
279528
|
function subgraphBuildCommand() {
|
|
279481
279529
|
return new Command("build").description("Build the subgraph").action(async () => {
|
|
279482
|
-
await validateIfRequiredPackagesAreInstalled(["@graphprotocol/graph-cli"]);
|
|
279483
279530
|
await subgraphSetup({
|
|
279484
279531
|
network: SETTLEMINT_NETWORK
|
|
279485
279532
|
});
|
|
@@ -279495,7 +279542,6 @@ function subgraphBuildCommand() {
|
|
|
279495
279542
|
import { dirname as dirname11 } from "node:path";
|
|
279496
279543
|
function subgraphCodegenCommand() {
|
|
279497
279544
|
return new Command("codegen").description("Codegen the subgraph types").action(async () => {
|
|
279498
|
-
await validateIfRequiredPackagesAreInstalled(["@graphprotocol/graph-cli"]);
|
|
279499
279545
|
await subgraphSetup({
|
|
279500
279546
|
network: SETTLEMINT_NETWORK
|
|
279501
279547
|
});
|
|
@@ -279554,7 +279600,6 @@ function subgraphDeployCommand() {
|
|
|
279554
279600
|
command: "scs subgraph deploy my-subgraph"
|
|
279555
279601
|
}
|
|
279556
279602
|
])).option("-a, --accept-defaults", "Accept the default and previously set values").option("--prod", "Connect to your production environment").argument("[subgraph-name]", "The name of the subgraph to deploy (defaults to value in .env if not provided)").action(async (subgraphName, { prod, acceptDefaults }) => {
|
|
279557
|
-
await validateIfRequiredPackagesAreInstalled(["@graphprotocol/graph-cli"]);
|
|
279558
279603
|
const autoAccept = !!acceptDefaults || is_in_ci_default;
|
|
279559
279604
|
const env2 = await loadEnv(false, !!prod);
|
|
279560
279605
|
const instance = await instancePrompt(env2, true);
|
|
@@ -279744,4 +279789,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
|
279744
279789
|
// src/cli.ts
|
|
279745
279790
|
sdkCliCommand();
|
|
279746
279791
|
|
|
279747
|
-
//# debugId=
|
|
279792
|
+
//# debugId=ED48CCEAACF575EE64756E2164756E21
|