File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -139,14 +139,15 @@ This application guides you through verifying that your COLDCARD
139139correctly derives seeds and addresses from dice rolls.
140140
141141CAUTION: The very point of a COLDCARD is that the seed of a real wallet
142- is never entered outside of a coldcard . You should therefore only use
143- this application to verify the seed and address derivation of your
144- COLDCARD. Once you are convinced that your COLDCARD works correctly, you
145- should then generate the seed of your real wallet on your COLDCARD only.
142+ * never* appears on any other device . You should therefore only use this
143+ application to verify the seed and address derivation of your COLDCARD.
144+ Once you are convinced that your COLDCARD works correctly, you should
145+ then generate the seed of your real wallet on your COLDCARD only.
146146
147147Generate 24 instead of the standard 12 words [y, N]?
148148
149- Log into your COLDCARD, select ' New Seed Words' , ' 12 Word Dice Roll' .
149+ Log into your COLDCARD, select ' New Seed Words' , ' Advanced' ,
150+ ' 12 Word Dice Roll' .
150151Press any key to continue or CTRL-C to abort:
151152
152153To perform a realistic test you should enter exactly as many dice rolls
Original file line number Diff line number Diff line change 4242 const generate24WordsPrompt = "Generate 24 instead of the standard 12 words [y, N]? " ;
4343 const generate24Words = ( await waitForUser ( { stdin, stdout } , generate24WordsPrompt ) ) . toLocaleLowerCase ( ) === "y" ;
4444 const wordCount = generate24Words ? 24 : 12 ;
45- stdout . write ( `Log into your COLDCARD, select 'New Seed Words', '${ wordCount } Word Dice Roll'.\r\n` ) ;
45+ stdout . write ( "Log into your COLDCARD, select 'New Seed Words', 'Advanced',\r\n" ) ;
46+ stdout . write ( `'${ wordCount } Word Dice Roll'.\r\n` ) ;
4647 await waitForUser ( process ) ;
4748 const words = await verifyWords ( process , await readDiceRolls ( process , generate24Words ) , wordCount ) ;
4849 let currentPassphrase = "" ;
You can’t perform that action at this time.
0 commit comments