@airmoney-degn/airmoney-cli 0.10.4 → 0.10.5

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.
Binary file
package/dist/cli/serve.js CHANGED
@@ -160,6 +160,10 @@ async function serveCommand(noBrowser, locationFolder, appUrl) {
160
160
  console.log('crypto service not found at ' + bin);
161
161
  }
162
162
  else {
163
- ChildProcess.exec(bin, { env: { SECURE_STORAGE: (0, env_1.configDir)() } });
163
+ console.log('execing crypto service at http://localhost:5050');
164
+ ChildProcess.exec(bin, { env: { SECURE_STORAGE: (0, env_1.configDir)(), RUST_BACKTRACE: '1' } }, (_, stdout, stderr) => {
165
+ console.log(stdout);
166
+ console.log(stderr);
167
+ });
164
168
  }
165
169
  }
package/dist/index.js CHANGED
@@ -14,7 +14,7 @@ const program = new commander_1.Command();
14
14
  program
15
15
  .name('airmoney-cli')
16
16
  .description('airmoney-cli is a command-line interface tool designed to facilitate the development and management of decentralized applications (DApps) for Airmoney.')
17
- .version("0.10.4");
17
+ .version('0.10.5');
18
18
  program
19
19
  .command('setup')
20
20
  .description('Setup env with userAddress, apiKey, rpc')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airmoney-degn/airmoney-cli",
3
- "version": "0.10.4",
3
+ "version": "0.10.5",
4
4
  "description": "airmoney-cli is a command-line interface tool designed to facilitate the development and management of decentralized applications (DApps) for Airmoney.",
5
5
  "publishConfig": {
6
6
  "access": "public"