Skip to content

Commit

Permalink
Merge pull request #2 from OffchainLabs/helpstring_fix
Browse files Browse the repository at this point in the history
fix namedAccounts help
  • Loading branch information
tsahee authored Jun 27, 2023
2 parents dee2508 + 84be9ba commit 62f96e6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions scripts/accounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@ export function namedAddress(

export const namedAccountHelpString =
"Valid account names:\n" +
"funnel | sequencer | validator - known keys\n" +
"user_[Alphanumeric] - key will be generated from username\n" +
"threaduser_[Alphanumeric] - same as user_[Alphanumeric]_thread_[thread-id]\n" +
"key_0x[full private key] - user with specified private key";
"\n" +
" funnel | sequencer | validator - known keys\n" +
" user_[Alphanumeric] - key will be generated from username\n" +
" threaduser_[Alphanumeric] - same as user_[Alphanumeric]_thread_[thread-id]\n" +
" key_0x[full private key] - user with specified private key\n" +
"\n" +
"Valid addresses: any account name, or\n" +
"address_0x[full eth address]\n" +
"random";
" address_0x[full eth address]\n" +
" random";

async function handlePrintAddress(argv: any, threadId: number) {
console.log(namedAddress(argv.account, threadId));
Expand Down

0 comments on commit 62f96e6

Please sign in to comment.