@settlemint/sdk-cli 2.3.5-prad3d4392 → 2.3.5-prb18658ad
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 +46 -30
- package/dist/cli.js.map +12 -12
- package/package.json +6 -6
package/dist/cli.js
CHANGED
@@ -231606,7 +231606,7 @@ function size(value4) {
|
|
231606
231606
|
var init_size = () => {};
|
231607
231607
|
|
231608
231608
|
// ../../node_modules/viem/_esm/errors/version.js
|
231609
|
-
var version5 = "2.
|
231609
|
+
var version5 = "2.31.0";
|
231610
231610
|
|
231611
231611
|
// ../../node_modules/viem/_esm/errors/base.js
|
231612
231612
|
function walk(err, fn) {
|
@@ -246161,7 +246161,7 @@ var isInteractive = (stream) => Boolean(stream.isTTY && process2.env.TERM !== "d
|
|
246161
246161
|
var infoSymbol = exports_base.blue(isUnicodeSupported ? "ℹ" : "i");
|
246162
246162
|
var successSymbol = exports_base.green(isUnicodeSupported ? "✔" : "√");
|
246163
246163
|
var warningSymbol = exports_base.yellow(isUnicodeSupported ? "⚠" : "‼");
|
246164
|
-
var errorSymbol = exports_base.red(isUnicodeSupported ? "
|
246164
|
+
var errorSymbol = exports_base.red(isUnicodeSupported ? "✖" : "×");
|
246165
246165
|
var defaultSpinner = {
|
246166
246166
|
frames: isUnicodeSupported ? [
|
246167
246167
|
"⠋",
|
@@ -246195,6 +246195,7 @@ class YoctoSpinner {
|
|
246195
246195
|
#exitHandlerBound;
|
246196
246196
|
#isInteractive;
|
246197
246197
|
#lastSpinnerFrameTime = 0;
|
246198
|
+
#isSpinning = false;
|
246198
246199
|
constructor(options = {}) {
|
246199
246200
|
const spinner = options.spinner ?? defaultSpinner;
|
246200
246201
|
this.#frames = spinner.frames;
|
@@ -246212,20 +246213,26 @@ class YoctoSpinner {
|
|
246212
246213
|
if (this.isSpinning) {
|
246213
246214
|
return this;
|
246214
246215
|
}
|
246216
|
+
this.#isSpinning = true;
|
246215
246217
|
this.#hideCursor();
|
246216
246218
|
this.#render();
|
246217
246219
|
this.#subscribeToProcessEvents();
|
246218
|
-
this.#
|
246219
|
-
this.#
|
246220
|
-
|
246220
|
+
if (this.#isInteractive) {
|
246221
|
+
this.#timer = setInterval(() => {
|
246222
|
+
this.#render();
|
246223
|
+
}, this.#interval);
|
246224
|
+
}
|
246221
246225
|
return this;
|
246222
246226
|
}
|
246223
246227
|
stop(finalText) {
|
246224
246228
|
if (!this.isSpinning) {
|
246225
246229
|
return this;
|
246226
246230
|
}
|
246227
|
-
|
246228
|
-
this.#timer
|
246231
|
+
this.#isSpinning = false;
|
246232
|
+
if (this.#timer) {
|
246233
|
+
clearInterval(this.#timer);
|
246234
|
+
this.#timer = undefined;
|
246235
|
+
}
|
246229
246236
|
this.#showCursor();
|
246230
246237
|
this.clear();
|
246231
246238
|
this.#unsubscribeFromProcessEvents();
|
@@ -246251,7 +246258,7 @@ class YoctoSpinner {
|
|
246251
246258
|
return this.#symbolStop(infoSymbol, text);
|
246252
246259
|
}
|
246253
246260
|
get isSpinning() {
|
246254
|
-
return this.#
|
246261
|
+
return this.#isSpinning;
|
246255
246262
|
}
|
246256
246263
|
get text() {
|
246257
246264
|
return this.#text;
|
@@ -257480,7 +257487,8 @@ var DotEnvSchema = object({
|
|
257480
257487
|
"warn",
|
257481
257488
|
"error",
|
257482
257489
|
"none"
|
257483
|
-
]).default("warn")
|
257490
|
+
]).default("warn"),
|
257491
|
+
NODE_TLS_REJECT_UNAUTHORIZED: _enum(["0", "1"]).optional()
|
257484
257492
|
});
|
257485
257493
|
var DotEnvSchemaPartial = DotEnvSchema.partial();
|
257486
257494
|
var IdSchema = union([string().uuid(), string().regex(/^[0-9a-fA-F]{24}$/)]);
|
@@ -263121,7 +263129,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
263121
263129
|
var package_default = {
|
263122
263130
|
name: "@settlemint/sdk-cli",
|
263123
263131
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
263124
|
-
version: "2.3.5-
|
263132
|
+
version: "2.3.5-prb18658ad",
|
263125
263133
|
type: "module",
|
263126
263134
|
private: false,
|
263127
263135
|
license: "FSL-1.1-MIT",
|
@@ -263170,9 +263178,9 @@ var package_default = {
|
|
263170
263178
|
"@inquirer/input": "4.1.12",
|
263171
263179
|
"@inquirer/password": "4.0.15",
|
263172
263180
|
"@inquirer/select": "4.2.3",
|
263173
|
-
"@settlemint/sdk-js": "2.3.5-
|
263174
|
-
"@settlemint/sdk-utils": "2.3.5-
|
263175
|
-
"@types/node": "
|
263181
|
+
"@settlemint/sdk-js": "2.3.5-prb18658ad",
|
263182
|
+
"@settlemint/sdk-utils": "2.3.5-prb18658ad",
|
263183
|
+
"@types/node": "24.0.0",
|
263176
263184
|
"@types/semver": "7.7.0",
|
263177
263185
|
"@types/which": "3.0.4",
|
263178
263186
|
"get-tsconfig": "4.10.1",
|
@@ -263180,13 +263188,13 @@ var package_default = {
|
|
263180
263188
|
"is-in-ci": "1.0.0",
|
263181
263189
|
semver: "7.7.2",
|
263182
263190
|
slugify: "1.6.6",
|
263183
|
-
viem: "2.
|
263191
|
+
viem: "2.31.0",
|
263184
263192
|
which: "5.0.0",
|
263185
263193
|
yaml: "2.8.0",
|
263186
263194
|
yoctocolors: "2.1.1"
|
263187
263195
|
},
|
263188
263196
|
peerDependencies: {
|
263189
|
-
hardhat: "2.24.
|
263197
|
+
hardhat: "2.24.2"
|
263190
263198
|
},
|
263191
263199
|
peerDependenciesMeta: {
|
263192
263200
|
hardhat: {
|
@@ -275244,7 +275252,8 @@ var DotEnvSchema2 = object2({
|
|
275244
275252
|
"warn",
|
275245
275253
|
"error",
|
275246
275254
|
"none"
|
275247
|
-
]).default("warn")
|
275255
|
+
]).default("warn"),
|
275256
|
+
NODE_TLS_REJECT_UNAUTHORIZED: _enum2(["0", "1"]).optional()
|
275248
275257
|
});
|
275249
275258
|
var DotEnvSchemaPartial2 = DotEnvSchema2.partial();
|
275250
275259
|
var IdSchema2 = union2([string2().uuid(), string2().regex(/^[0-9a-fA-F]{24}$/)]);
|
@@ -302705,11 +302714,7 @@ function decodeEventLog(parameters) {
|
|
302705
302714
|
const [signature, ...argTopics] = topics;
|
302706
302715
|
if (!signature)
|
302707
302716
|
throw new AbiEventSignatureEmptyTopicsError({ docsPath: docsPath3 });
|
302708
|
-
const abiItem = (() =>
|
302709
|
-
if (abi.length === 1)
|
302710
|
-
return abi[0];
|
302711
|
-
return abi.find((x6) => x6.type === "event" && signature === toEventSelector(formatAbiItem2(x6)));
|
302712
|
-
})();
|
302717
|
+
const abiItem = abi.find((x6) => x6.type === "event" && signature === toEventSelector(formatAbiItem2(x6)));
|
302713
302718
|
if (!(abiItem && ("name" in abiItem)) || abiItem.type !== "event")
|
302714
302719
|
throw new AbiEventSignatureNotFoundError(signature, { docsPath: docsPath3 });
|
302715
302720
|
const { name: name3, inputs } = abiItem;
|
@@ -303396,8 +303401,11 @@ function uid(length = 11) {
|
|
303396
303401
|
|
303397
303402
|
// ../../node_modules/viem/_esm/clients/createClient.js
|
303398
303403
|
function createClient(parameters) {
|
303399
|
-
const { batch,
|
303400
|
-
const
|
303404
|
+
const { batch, chain, ccipRead, key: key2 = "base", name: name3 = "Base Client", type: type4 = "base" } = parameters;
|
303405
|
+
const blockTime = chain?.blockTime ?? 12000;
|
303406
|
+
const defaultPollingInterval = Math.min(Math.max(Math.floor(blockTime / 2), 500), 4000);
|
303407
|
+
const pollingInterval = parameters.pollingInterval ?? defaultPollingInterval;
|
303408
|
+
const cacheTime = parameters.cacheTime ?? pollingInterval;
|
303401
303409
|
const account = parameters.account ? parseAccount(parameters.account) : undefined;
|
303402
303410
|
const { config: config4, request: request2, value: value4 } = parameters.transport({
|
303403
303411
|
chain,
|
@@ -318662,7 +318670,8 @@ async function writeEnvSpinner(prod, env2) {
|
|
318662
318670
|
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT: env2.SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT,
|
318663
318671
|
SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT: env2.SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT,
|
318664
318672
|
SETTLEMINT_NEW_PROJECT_NAME: env2.SETTLEMINT_NEW_PROJECT_NAME,
|
318665
|
-
SETTLEMINT_LOG_LEVEL: env2.SETTLEMINT_LOG_LEVEL
|
318673
|
+
SETTLEMINT_LOG_LEVEL: env2.SETTLEMINT_LOG_LEVEL,
|
318674
|
+
NODE_TLS_REJECT_UNAUTHORIZED: env2.NODE_TLS_REJECT_UNAUTHORIZED
|
318666
318675
|
};
|
318667
318676
|
await writeEnv({
|
318668
318677
|
prod,
|
@@ -318896,9 +318905,9 @@ function getUpdatedSubgraphEndpoints({
|
|
318896
318905
|
if (!middlewareAdminUrl) {
|
318897
318906
|
throw new Error("Middleware admin URL is required to add a new subgraph");
|
318898
318907
|
}
|
318899
|
-
const baseUrl =
|
318908
|
+
const baseUrl = middlewareAdminUrl.replace(/\/admin\/?$/, "");
|
318900
318909
|
if (baseUrl) {
|
318901
|
-
const endpoint =
|
318910
|
+
const endpoint = getTheGraphSubgraphUrl(baseUrl, newSubgraphName);
|
318902
318911
|
if (!existingEndpointsWithoutRemoved.includes(endpoint)) {
|
318903
318912
|
existingEndpointsWithoutRemoved.push(endpoint);
|
318904
318913
|
}
|
@@ -318919,7 +318928,12 @@ function getTheGraphSubgraphNames(subgraphUrls) {
|
|
318919
318928
|
return [];
|
318920
318929
|
}
|
318921
318930
|
function getTheGraphSubgraphUrl(theGraphUrl, subgraphName) {
|
318922
|
-
|
318931
|
+
const url5 = new URL(theGraphUrl);
|
318932
|
+
if (!url5.pathname.endsWith("/")) {
|
318933
|
+
url5.pathname += "/";
|
318934
|
+
}
|
318935
|
+
url5.pathname += `subgraphs/name/${subgraphName}`;
|
318936
|
+
return url5.toString();
|
318923
318937
|
}
|
318924
318938
|
|
318925
318939
|
// ../utils/dist/logging.js
|
@@ -319219,7 +319233,8 @@ async function connectToPlatform(env2, selectedInstance, acceptDefaults, prod) {
|
|
319219
319233
|
SETTLEMINT_CUSTOM_DEPLOYMENT: cDeployment?.uniqueName,
|
319220
319234
|
...getCustomDeploymentEnv(cDeployment),
|
319221
319235
|
SETTLEMINT_BLOCKSCOUT: blockscout?.uniqueName,
|
319222
|
-
...getBlockscoutEnv(blockscout)
|
319236
|
+
...getBlockscoutEnv(blockscout),
|
319237
|
+
NODE_TLS_REJECT_UNAUTHORIZED: "1"
|
319223
319238
|
});
|
319224
319239
|
}
|
319225
319240
|
async function connectToStandalone(env2, acceptDefaults, prod) {
|
@@ -319378,7 +319393,8 @@ async function connectToStandalone(env2, acceptDefaults, prod) {
|
|
319378
319393
|
SETTLEMINT_MINIO_ACCESS_KEY: selectedServices.minioAccessKey?.result,
|
319379
319394
|
SETTLEMINT_MINIO_SECRET_KEY: selectedServices.minioSecretKey?.result,
|
319380
319395
|
SETTLEMINT_IPFS_API_ENDPOINT: selectedServices.ipfsApiEndpoint?.result,
|
319381
|
-
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT: selectedServices.blockscoutGraphqlEndpoint?.result
|
319396
|
+
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT: selectedServices.blockscoutGraphqlEndpoint?.result,
|
319397
|
+
NODE_TLS_REJECT_UNAUTHORIZED: "0"
|
319382
319398
|
});
|
319383
319399
|
}
|
319384
319400
|
|
@@ -327377,4 +327393,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
327377
327393
|
// src/cli.ts
|
327378
327394
|
sdkCliCommand();
|
327379
327395
|
|
327380
|
-
//# debugId=
|
327396
|
+
//# debugId=64BF27D089D1A26C64756E2164756E21
|