x402-bazaar 3.2.2 → 3.2.3
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/bin/cli.js +1 -1
- package/package.json +1 -1
- package/src/commands/init.js +13 -5
package/bin/cli.js
CHANGED
package/package.json
CHANGED
package/src/commands/init.js
CHANGED
|
@@ -505,13 +505,21 @@ export async function initCommand(options) {
|
|
|
505
505
|
log.box('What\'s next?', summaryLines.join('\n'));
|
|
506
506
|
|
|
507
507
|
// Print critical info AFTER the box so it's visible even when output is truncated
|
|
508
|
-
if (walletMode === 'generate'
|
|
508
|
+
if (walletMode === 'generate') {
|
|
509
509
|
console.log('');
|
|
510
|
-
log.
|
|
510
|
+
log.info(chalk.bold('Next steps after restarting your IDE:'));
|
|
511
511
|
console.log('');
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
512
|
+
if (network === 'skale') {
|
|
513
|
+
log.info(` ${chalk.white('1.')} Ask your agent to run ${chalk.cyan('setup_wallet')} — this auto-funds 0.1 CREDITS for gas (free!)`);
|
|
514
|
+
log.info(` ${chalk.white('2.')} Fund your wallet with USDC on SKALE on Base:`);
|
|
515
|
+
log.dim(` ${chalk.cyan('https://x402bazaar.org/fund')} — Bridge from any chain in 1 click`);
|
|
516
|
+
log.dim(` ${chalk.cyan('https://bridge.skale.space')} — Native SKALE bridge`);
|
|
517
|
+
log.info(` ${chalk.white('3.')} Start using paid APIs! Try: ${chalk.dim('"Search for weather APIs on x402 Bazaar"')}`);
|
|
518
|
+
} else {
|
|
519
|
+
log.info(` ${chalk.white('1.')} Ask your agent to run ${chalk.cyan('setup_wallet')} to verify your wallet`);
|
|
520
|
+
log.info(` ${chalk.white('2.')} Fund your wallet with USDC + ETH on Base`);
|
|
521
|
+
log.info(` ${chalk.white('3.')} Start using paid APIs! Try: ${chalk.dim('"Search for weather APIs on x402 Bazaar"')}`);
|
|
522
|
+
}
|
|
515
523
|
console.log('');
|
|
516
524
|
}
|
|
517
525
|
|