@ametyst/cli 0.2.41 → 0.2.43

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +5 -5
package/dist/index.js CHANGED
@@ -113134,7 +113134,7 @@ async function startMCPServer(walletKeystoreJson, eoaAddress, config, versionNot
113134
113134
 
113135
113135
  // src/version.ts
113136
113136
  init_esm_shims();
113137
- var CLI_VERSION = true ? "0.2.41" : "0.0.0-dev";
113137
+ var CLI_VERSION = true ? "0.2.43" : "0.0.0-dev";
113138
113138
 
113139
113139
  // src/version-check.ts
113140
113140
  init_esm_shims();
@@ -113475,7 +113475,7 @@ async function statusCommand() {
113475
113475
  console.log("Not initialized");
113476
113476
  return;
113477
113477
  }
113478
- const walletJson = loadWalletFile();
113478
+ const walletJson = loadVault();
113479
113479
  if (!walletJson) {
113480
113480
  console.log("No wallet");
113481
113481
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ametyst/cli",
3
- "version": "0.2.41",
3
+ "version": "0.2.43",
4
4
  "private": false,
5
5
  "description": "Ametyst CLI — embedded MCP server, wallet ops, agent payments",
6
6
  "type": "module",
@@ -78,10 +78,10 @@
78
78
  "esbuild@>=0.27.3 <0.28.1": "0.28.1"
79
79
  },
80
80
  "optionalDependencies": {
81
- "@ametyst/cli-darwin-arm64": "0.2.41",
82
- "@ametyst/cli-darwin-x64": "0.2.41",
83
- "@ametyst/cli-linux-x64-gnu": "0.2.41",
84
- "@ametyst/cli-win32-x64-msvc": "0.2.41"
81
+ "@ametyst/cli-darwin-arm64": "0.2.43",
82
+ "@ametyst/cli-darwin-x64": "0.2.43",
83
+ "@ametyst/cli-linux-x64-gnu": "0.2.43",
84
+ "@ametyst/cli-win32-x64-msvc": "0.2.43"
85
85
  },
86
86
  "scripts": {
87
87
  "build:native": "cd native && cargo build --release && napi build --release",