@settlemint/sdk-cli 2.2.0-pr3ff07d18 → 2.2.0-pr503fed4b
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 +18 -6
- package/dist/cli.js.map +6 -6
- package/package.json +3 -3
package/dist/cli.js
CHANGED
@@ -245345,7 +245345,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
245345
245345
|
var package_default = {
|
245346
245346
|
name: "@settlemint/sdk-cli",
|
245347
245347
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
245348
|
-
version: "2.2.0-
|
245348
|
+
version: "2.2.0-pr503fed4b",
|
245349
245349
|
type: "module",
|
245350
245350
|
private: false,
|
245351
245351
|
license: "FSL-1.1-MIT",
|
@@ -245394,8 +245394,8 @@ var package_default = {
|
|
245394
245394
|
"@inquirer/input": "4.1.9",
|
245395
245395
|
"@inquirer/password": "4.0.12",
|
245396
245396
|
"@inquirer/select": "4.2.0",
|
245397
|
-
"@settlemint/sdk-js": "2.2.0-
|
245398
|
-
"@settlemint/sdk-utils": "2.2.0-
|
245397
|
+
"@settlemint/sdk-js": "2.2.0-pr503fed4b",
|
245398
|
+
"@settlemint/sdk-utils": "2.2.0-pr503fed4b",
|
245399
245399
|
"@types/node": "22.15.3",
|
245400
245400
|
"@types/semver": "7.7.0",
|
245401
245401
|
"@types/which": "3.0.4",
|
@@ -256995,6 +256995,10 @@ function logoutCommand() {
|
|
256995
256995
|
{
|
256996
256996
|
description: "Logout from your SettleMint account",
|
256997
256997
|
command: "settlemint logout"
|
256998
|
+
},
|
256999
|
+
{
|
257000
|
+
description: "Logout from all instances",
|
257001
|
+
command: "settlemint logout --all"
|
256998
257002
|
}
|
256999
257003
|
])).action(async (options) => {
|
257000
257004
|
intro("Logging out from SettleMint");
|
@@ -257052,7 +257056,7 @@ async function pincodeVerificationPrompt(verificationChallenges) {
|
|
257052
257056
|
|
257053
257057
|
// src/commands/pincode-verification-response.ts
|
257054
257058
|
function pincodeVerificationResponseCommand() {
|
257055
|
-
return new Command("pincode-verification-response").alias("pvr").description("Get pincode verification response for a blockchain node").requiredOption("--wallet-address <walletAddress>", "The
|
257059
|
+
return new Command("pincode-verification-response").alias("pvr").description("Get pincode verification response for a blockchain node").requiredOption("--wallet-address <walletAddress>", "The wallet address to get pincode verification response for").option("-i, --instance <instance>", "The instance to connect to (defaults to the instance in the .env file)").option("--blockchain-node <blockchainNode>", "Blockchain Node unique name to get pincode verification response for").usage(createExamples([
|
257056
257060
|
{
|
257057
257061
|
description: "Get pincode verification response for a wallet address",
|
257058
257062
|
command: "settlemint pincode-verification-response --wallet-address 0x1234567890123456789012345678901234567890"
|
@@ -259089,6 +259093,14 @@ function configCommand() {
|
|
259089
259093
|
{
|
259090
259094
|
description: "Get platform configuration",
|
259091
259095
|
command: "settlemint config"
|
259096
|
+
},
|
259097
|
+
{
|
259098
|
+
description: "Get platform configuration in JSON format",
|
259099
|
+
command: "settlemint config -o json"
|
259100
|
+
},
|
259101
|
+
{
|
259102
|
+
description: "Get platform configuration in YAML format",
|
259103
|
+
command: "settlemint config -o yaml"
|
259092
259104
|
}
|
259093
259105
|
])).action(async ({ prod, instance, output }) => {
|
259094
259106
|
intro("Getting platform configuration");
|
@@ -260078,7 +260090,7 @@ function hardhatNetworkCommand() {
|
|
260078
260090
|
|
260079
260091
|
// src/commands/smart-contract-set/hardhat/script/local.ts
|
260080
260092
|
function hardhatScriptLocalCommand() {
|
260081
|
-
return new Command("local").description("Run a Hardhat script
|
260093
|
+
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([
|
260082
260094
|
{
|
260083
260095
|
description: "Run a Hardhat script on a local network",
|
260084
260096
|
command: "settlemint hardhat script local --script scripts/deploy.ts"
|
@@ -260684,4 +260696,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
260684
260696
|
// src/cli.ts
|
260685
260697
|
sdkCliCommand();
|
260686
260698
|
|
260687
|
-
//# debugId=
|
260699
|
+
//# debugId=514072B03B4E8E4164756E2164756E21
|