@settlemint/sdk-cli 2.3.5-pra0b86359 → 2.3.5-pra1863462
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 +52 -38
- package/dist/cli.js.map +13 -13
- 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) {
|
@@ -238927,7 +238927,7 @@ var init_ccip2 = __esm(() => {
|
|
238927
238927
|
|
238928
238928
|
// ../../node_modules/viem/_esm/actions/public/call.js
|
238929
238929
|
async function call(client, args) {
|
238930
|
-
const { account: account_ = client.account, batch = Boolean(client.batch?.multicall), blockNumber, blockTag = "latest", accessList, blobs, blockOverrides, code: code2, data: data_, factory, factoryData, gas, gasPrice, maxFeePerBlobGas, maxFeePerGas, maxPriorityFeePerGas, nonce, to, value: value4, stateOverride, ...rest } = args;
|
238930
|
+
const { account: account_ = client.account, authorizationList, batch = Boolean(client.batch?.multicall), blockNumber, blockTag = "latest", accessList, blobs, blockOverrides, code: code2, data: data_, factory, factoryData, gas, gasPrice, maxFeePerBlobGas, maxFeePerGas, maxPriorityFeePerGas, nonce, to, value: value4, stateOverride, ...rest } = args;
|
238931
238931
|
const account = account_ ? parseAccount(account_) : undefined;
|
238932
238932
|
if (code2 && (factory || factoryData))
|
238933
238933
|
throw new BaseError2("Cannot provide both `code` & `factory`/`factoryData` as parameters.");
|
@@ -238963,6 +238963,7 @@ async function call(client, args) {
|
|
238963
238963
|
...extract2(rest, { format: chainFormat }),
|
238964
238964
|
from: account?.address,
|
238965
238965
|
accessList,
|
238966
|
+
authorizationList,
|
238966
238967
|
blobs,
|
238967
238968
|
data,
|
238968
238969
|
gas,
|
@@ -246160,7 +246161,7 @@ var isInteractive = (stream) => Boolean(stream.isTTY && process2.env.TERM !== "d
|
|
246160
246161
|
var infoSymbol = exports_base.blue(isUnicodeSupported ? "ℹ" : "i");
|
246161
246162
|
var successSymbol = exports_base.green(isUnicodeSupported ? "✔" : "√");
|
246162
246163
|
var warningSymbol = exports_base.yellow(isUnicodeSupported ? "⚠" : "‼");
|
246163
|
-
var errorSymbol = exports_base.red(isUnicodeSupported ? "
|
246164
|
+
var errorSymbol = exports_base.red(isUnicodeSupported ? "✖" : "×");
|
246164
246165
|
var defaultSpinner = {
|
246165
246166
|
frames: isUnicodeSupported ? [
|
246166
246167
|
"⠋",
|
@@ -246194,6 +246195,7 @@ class YoctoSpinner {
|
|
246194
246195
|
#exitHandlerBound;
|
246195
246196
|
#isInteractive;
|
246196
246197
|
#lastSpinnerFrameTime = 0;
|
246198
|
+
#isSpinning = false;
|
246197
246199
|
constructor(options = {}) {
|
246198
246200
|
const spinner = options.spinner ?? defaultSpinner;
|
246199
246201
|
this.#frames = spinner.frames;
|
@@ -246211,20 +246213,26 @@ class YoctoSpinner {
|
|
246211
246213
|
if (this.isSpinning) {
|
246212
246214
|
return this;
|
246213
246215
|
}
|
246216
|
+
this.#isSpinning = true;
|
246214
246217
|
this.#hideCursor();
|
246215
246218
|
this.#render();
|
246216
246219
|
this.#subscribeToProcessEvents();
|
246217
|
-
this.#
|
246218
|
-
this.#
|
246219
|
-
|
246220
|
+
if (this.#isInteractive) {
|
246221
|
+
this.#timer = setInterval(() => {
|
246222
|
+
this.#render();
|
246223
|
+
}, this.#interval);
|
246224
|
+
}
|
246220
246225
|
return this;
|
246221
246226
|
}
|
246222
246227
|
stop(finalText) {
|
246223
246228
|
if (!this.isSpinning) {
|
246224
246229
|
return this;
|
246225
246230
|
}
|
246226
|
-
|
246227
|
-
this.#timer
|
246231
|
+
this.#isSpinning = false;
|
246232
|
+
if (this.#timer) {
|
246233
|
+
clearInterval(this.#timer);
|
246234
|
+
this.#timer = undefined;
|
246235
|
+
}
|
246228
246236
|
this.#showCursor();
|
246229
246237
|
this.clear();
|
246230
246238
|
this.#unsubscribeFromProcessEvents();
|
@@ -246250,7 +246258,7 @@ class YoctoSpinner {
|
|
246250
246258
|
return this.#symbolStop(infoSymbol, text);
|
246251
246259
|
}
|
246252
246260
|
get isSpinning() {
|
246253
|
-
return this.#
|
246261
|
+
return this.#isSpinning;
|
246254
246262
|
}
|
246255
246263
|
get text() {
|
246256
246264
|
return this.#text;
|
@@ -257479,7 +257487,8 @@ var DotEnvSchema = object({
|
|
257479
257487
|
"warn",
|
257480
257488
|
"error",
|
257481
257489
|
"none"
|
257482
|
-
]).default("warn")
|
257490
|
+
]).default("warn"),
|
257491
|
+
NODE_TLS_REJECT_UNAUTHORIZED: _enum(["0", "1"]).optional()
|
257483
257492
|
});
|
257484
257493
|
var DotEnvSchemaPartial = DotEnvSchema.partial();
|
257485
257494
|
var IdSchema = union([string().uuid(), string().regex(/^[0-9a-fA-F]{24}$/)]);
|
@@ -263120,7 +263129,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
263120
263129
|
var package_default = {
|
263121
263130
|
name: "@settlemint/sdk-cli",
|
263122
263131
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
263123
|
-
version: "2.3.5-
|
263132
|
+
version: "2.3.5-pra1863462",
|
263124
263133
|
type: "module",
|
263125
263134
|
private: false,
|
263126
263135
|
license: "FSL-1.1-MIT",
|
@@ -263169,9 +263178,9 @@ var package_default = {
|
|
263169
263178
|
"@inquirer/input": "4.1.12",
|
263170
263179
|
"@inquirer/password": "4.0.15",
|
263171
263180
|
"@inquirer/select": "4.2.3",
|
263172
|
-
"@settlemint/sdk-js": "2.3.5-
|
263173
|
-
"@settlemint/sdk-utils": "2.3.5-
|
263174
|
-
"@types/node": "
|
263181
|
+
"@settlemint/sdk-js": "2.3.5-pra1863462",
|
263182
|
+
"@settlemint/sdk-utils": "2.3.5-pra1863462",
|
263183
|
+
"@types/node": "24.0.0",
|
263175
263184
|
"@types/semver": "7.7.0",
|
263176
263185
|
"@types/which": "3.0.4",
|
263177
263186
|
"get-tsconfig": "4.10.1",
|
@@ -263179,13 +263188,13 @@ var package_default = {
|
|
263179
263188
|
"is-in-ci": "1.0.0",
|
263180
263189
|
semver: "7.7.2",
|
263181
263190
|
slugify: "1.6.6",
|
263182
|
-
viem: "2.
|
263191
|
+
viem: "2.31.0",
|
263183
263192
|
which: "5.0.0",
|
263184
263193
|
yaml: "2.8.0",
|
263185
263194
|
yoctocolors: "2.1.1"
|
263186
263195
|
},
|
263187
263196
|
peerDependencies: {
|
263188
|
-
hardhat: "2.24.
|
263197
|
+
hardhat: "2.24.2"
|
263189
263198
|
},
|
263190
263199
|
peerDependenciesMeta: {
|
263191
263200
|
hardhat: {
|
@@ -275243,7 +275252,8 @@ var DotEnvSchema2 = object2({
|
|
275243
275252
|
"warn",
|
275244
275253
|
"error",
|
275245
275254
|
"none"
|
275246
|
-
]).default("warn")
|
275255
|
+
]).default("warn"),
|
275256
|
+
NODE_TLS_REJECT_UNAUTHORIZED: _enum2(["0", "1"]).optional()
|
275247
275257
|
});
|
275248
275258
|
var DotEnvSchemaPartial2 = DotEnvSchema2.partial();
|
275249
275259
|
var IdSchema2 = union2([string2().uuid(), string2().regex(/^[0-9a-fA-F]{24}$/)]);
|
@@ -302704,26 +302714,25 @@ function decodeEventLog(parameters) {
|
|
302704
302714
|
const [signature, ...argTopics] = topics;
|
302705
302715
|
if (!signature)
|
302706
302716
|
throw new AbiEventSignatureEmptyTopicsError({ docsPath: docsPath3 });
|
302707
|
-
const abiItem = (() =>
|
302708
|
-
if (abi.length === 1)
|
302709
|
-
return abi[0];
|
302710
|
-
return abi.find((x6) => x6.type === "event" && signature === toEventSelector(formatAbiItem2(x6)));
|
302711
|
-
})();
|
302717
|
+
const abiItem = abi.find((x6) => x6.type === "event" && signature === toEventSelector(formatAbiItem2(x6)));
|
302712
302718
|
if (!(abiItem && ("name" in abiItem)) || abiItem.type !== "event")
|
302713
302719
|
throw new AbiEventSignatureNotFoundError(signature, { docsPath: docsPath3 });
|
302714
302720
|
const { name: name3, inputs } = abiItem;
|
302715
302721
|
const isUnnamed = inputs?.some((x6) => !(("name" in x6) && x6.name));
|
302716
|
-
|
302717
|
-
const indexedInputs = inputs.filter((x6) => ("indexed" in x6) && x6.indexed);
|
302722
|
+
const args = isUnnamed ? [] : {};
|
302723
|
+
const indexedInputs = inputs.map((x6, i6) => [x6, i6]).filter(([x6]) => ("indexed" in x6) && x6.indexed);
|
302718
302724
|
for (let i6 = 0;i6 < indexedInputs.length; i6++) {
|
302719
|
-
const param = indexedInputs[i6];
|
302725
|
+
const [param, argIndex] = indexedInputs[i6];
|
302720
302726
|
const topic = argTopics[i6];
|
302721
302727
|
if (!topic)
|
302722
302728
|
throw new DecodeLogTopicsMismatch({
|
302723
302729
|
abiItem,
|
302724
302730
|
param
|
302725
302731
|
});
|
302726
|
-
args[isUnnamed ?
|
302732
|
+
args[isUnnamed ? argIndex : param.name || argIndex] = decodeTopic({
|
302733
|
+
param,
|
302734
|
+
value: topic
|
302735
|
+
});
|
302727
302736
|
}
|
302728
302737
|
const nonIndexedInputs = inputs.filter((x6) => !(("indexed" in x6) && x6.indexed));
|
302729
302738
|
if (nonIndexedInputs.length > 0) {
|
@@ -302732,12 +302741,11 @@ function decodeEventLog(parameters) {
|
|
302732
302741
|
const decodedData = decodeAbiParameters(nonIndexedInputs, data);
|
302733
302742
|
if (decodedData) {
|
302734
302743
|
if (isUnnamed)
|
302735
|
-
|
302736
|
-
|
302737
|
-
|
302744
|
+
for (let i6 = 0;i6 < inputs.length; i6++)
|
302745
|
+
args[i6] = args[i6] ?? decodedData.shift();
|
302746
|
+
else
|
302747
|
+
for (let i6 = 0;i6 < nonIndexedInputs.length; i6++)
|
302738
302748
|
args[nonIndexedInputs[i6].name] = decodedData[i6];
|
302739
|
-
}
|
302740
|
-
}
|
302741
302749
|
}
|
302742
302750
|
} catch (err) {
|
302743
302751
|
if (strict) {
|
@@ -303393,8 +303401,11 @@ function uid(length = 11) {
|
|
303393
303401
|
|
303394
303402
|
// ../../node_modules/viem/_esm/clients/createClient.js
|
303395
303403
|
function createClient(parameters) {
|
303396
|
-
const { batch,
|
303397
|
-
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;
|
303398
303409
|
const account = parameters.account ? parseAccount(parameters.account) : undefined;
|
303399
303410
|
const { config: config4, request: request2, value: value4 } = parameters.transport({
|
303400
303411
|
chain,
|
@@ -306719,7 +306730,7 @@ function watchBlocks(client, { blockTag = "latest", emitMissed = false, emitOnBe
|
|
306719
306730
|
return;
|
306720
306731
|
onBlock(block, undefined);
|
306721
306732
|
emitFetched = false;
|
306722
|
-
});
|
306733
|
+
}).catch(onError);
|
306723
306734
|
}
|
306724
306735
|
const transport = (() => {
|
306725
306736
|
if (client.transport.type === "fallback") {
|
@@ -318659,7 +318670,8 @@ async function writeEnvSpinner(prod, env2) {
|
|
318659
318670
|
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT: env2.SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT,
|
318660
318671
|
SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT: env2.SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT,
|
318661
318672
|
SETTLEMINT_NEW_PROJECT_NAME: env2.SETTLEMINT_NEW_PROJECT_NAME,
|
318662
|
-
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
|
318663
318675
|
};
|
318664
318676
|
await writeEnv({
|
318665
318677
|
prod,
|
@@ -319216,7 +319228,8 @@ async function connectToPlatform(env2, selectedInstance, acceptDefaults, prod) {
|
|
319216
319228
|
SETTLEMINT_CUSTOM_DEPLOYMENT: cDeployment?.uniqueName,
|
319217
319229
|
...getCustomDeploymentEnv(cDeployment),
|
319218
319230
|
SETTLEMINT_BLOCKSCOUT: blockscout?.uniqueName,
|
319219
|
-
...getBlockscoutEnv(blockscout)
|
319231
|
+
...getBlockscoutEnv(blockscout),
|
319232
|
+
NODE_TLS_REJECT_UNAUTHORIZED: "1"
|
319220
319233
|
});
|
319221
319234
|
}
|
319222
319235
|
async function connectToStandalone(env2, acceptDefaults, prod) {
|
@@ -319375,7 +319388,8 @@ async function connectToStandalone(env2, acceptDefaults, prod) {
|
|
319375
319388
|
SETTLEMINT_MINIO_ACCESS_KEY: selectedServices.minioAccessKey?.result,
|
319376
319389
|
SETTLEMINT_MINIO_SECRET_KEY: selectedServices.minioSecretKey?.result,
|
319377
319390
|
SETTLEMINT_IPFS_API_ENDPOINT: selectedServices.ipfsApiEndpoint?.result,
|
319378
|
-
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT: selectedServices.blockscoutGraphqlEndpoint?.result
|
319391
|
+
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT: selectedServices.blockscoutGraphqlEndpoint?.result,
|
319392
|
+
NODE_TLS_REJECT_UNAUTHORIZED: "0"
|
319379
319393
|
});
|
319380
319394
|
}
|
319381
319395
|
|
@@ -327374,4 +327388,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
327374
327388
|
// src/cli.ts
|
327375
327389
|
sdkCliCommand();
|
327376
327390
|
|
327377
|
-
//# debugId=
|
327391
|
+
//# debugId=D7321FB7A3BAF63564756E2164756E21
|