solana-tui-explorer 1.0.0 → 1.0.1

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/index.js +5 -5
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -13,9 +13,9 @@ const { renderToken } = require('./panels/token');
13
13
  const { startDashboard } = require('./panels/dashboard');
14
14
 
15
15
  program
16
- .name('st')
17
- .description(chalk.hex('#00FF88').bold('Solana TUI Explorer (ST) — On-Chain Developer TUI for Solana'))
18
- .version('1.0.0');
16
+ .name('sol-tui')
17
+ .description(chalk.hex('#00FF88').bold('Solana TUI Explorer — On-Chain Developer TUI for Solana'))
18
+ .version('1.0.1');
19
19
 
20
20
  // Dashboard command (Full layout)
21
21
  program
@@ -35,7 +35,7 @@ program.hook('preAction', (thisCommand, actionCommand) => {
35
35
  console.log(chalk.hex('#00FF88')('==========================================================='));
36
36
  });
37
37
 
38
- // st wallet <ADDRESS>
38
+ // sol-tui wallet <ADDRESS>
39
39
  program
40
40
  .command('wallet [address]')
41
41
  .alias('w')
@@ -44,7 +44,7 @@ program
44
44
  renderWallet(address);
45
45
  });
46
46
 
47
- // st token <SYMBOL>
47
+ // sol-tui token <SYMBOL>
48
48
  program
49
49
  .command('token [symbol]')
50
50
  .alias('t')
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "solana-tui-explorer",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "main": "index.js",
5
5
  "bin": {
6
6
  "solana-tui-explorer": "bin/st.js",
7
- "st": "bin/st.js"
7
+ "sol-tui": "bin/st.js"
8
8
  },
9
9
  "files": [
10
10
  "bin",