Skip to content

Commit a6cce93

Browse files
committed
feat: update launch messages and CLI command for vault viewer
1 parent 2fbe085 commit a6cce93

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

docs/cli/commands/contracts/vault-viewer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ sidebar_position: 6
77
## Command
88

99
```bash
10-
yarn start v-v [arguments] [-options]
10+
yarn start contracts v-v [arguments] [-options]
1111
```
1212

1313
## VaultViewer commands list
1414

1515
```bash
16-
yarn start v-v -h
16+
yarn start contracts v-v -h
1717
```
1818

1919
## API

index.ts

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,19 @@ import './programs/index.js';
77
export * from './utils/index.js';
88

99
const showTestnetWarning = () => {
10-
console.info('\n⚠️ 🎉🎉 HOODI V3 is officially launched! 🎉🎉 ⚠️');
11-
// console.info(
12-
// '🌐 Web UI is updated and available at: https://vaults-hoodi-lidov3.testnet.fi/vaults',
13-
// );
10+
console.info('\n⚠️ 🎉🎉 HOODI V3 is officially launched! 🎉🎉⚠️');
11+
console.info(
12+
'🌐 Web UI is updated and available at: https://stvaults-hoodi.testnet.fi/vaults',
13+
);
14+
console.info(
15+
'📄 Contracts info: https://docs.lido.fi/deployed-contracts/hoodi',
16+
);
17+
console.info(
18+
'🔄 stVaults Doc Center: https://docs.lido.fi/run-on-lido/stvaults',
19+
);
20+
console.info('\n');
1421
console.info('🔄 Testnet-1 is available on the testnet-1 branch.');
1522
console.info('🔄 Testnet-2 is available on the testnet-2 branch.');
16-
// console.info(
17-
// '📄 Contracts info: https://docs.lido.fi/deployed-contracts/hoodi-lidov3/\n',
18-
// );
1923
};
2024

2125
program.addHelpText('afterAll', () => {

0 commit comments

Comments
 (0)