@blockrun/franklin 3.6.15 → 3.6.16
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/commands/start.js +2 -2
- package/package.json +1 -1
package/dist/commands/start.js
CHANGED
|
@@ -73,8 +73,8 @@ export async function startCommand(options) {
|
|
|
73
73
|
printBanner(version);
|
|
74
74
|
const workDir = process.cwd();
|
|
75
75
|
// Session info — aligned, minimal. Model + balance live in the input bar below.
|
|
76
|
-
|
|
77
|
-
console.log(chalk.dim(' Wallet: ') + (walletAddress
|
|
76
|
+
// Full wallet address is shown so the user can copy-paste it to fund the wallet.
|
|
77
|
+
console.log(chalk.dim(' Wallet: ') + (walletAddress || chalk.yellow('not set')));
|
|
78
78
|
console.log(chalk.dim(' Dir: ') + workDir);
|
|
79
79
|
console.log(chalk.dim(' Dashboard: ') + chalk.cyan('franklin panel') + chalk.dim(' → http://localhost:3100'));
|
|
80
80
|
console.log(chalk.dim(' Help: ') + chalk.cyan('/help'));
|
package/package.json
CHANGED