Skip to content

Commit fa60d82

Browse files
feat: adapt prompts and sample output
1 parent 7f3db9b commit fa60d82

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,14 +139,15 @@ This application guides you through verifying that your COLDCARD
139139
correctly derives seeds and addresses from dice rolls.
140140
141141
CAUTION: 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
147147
Generate 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'.
150151
Press any key to continue or CTRL-C to abort:
151152
152153
To perform a realistic test you should enter exactly as many dice rolls

src/package/main.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ try {
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 = "";

0 commit comments

Comments
 (0)