From 1676f86746f178b886c1e50f9d971f4c5d3e168b Mon Sep 17 00:00:00 2001 From: Derek Guenther Date: Wed, 1 Feb 2023 12:54:01 -0500 Subject: [PATCH] Clarify randomness text and add blog post (#3225) --- ironfish-cli/src/commands/ceremony.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ironfish-cli/src/commands/ceremony.ts b/ironfish-cli/src/commands/ceremony.ts index b2c80d3cd2..3d1aecaca1 100644 --- a/ironfish-cli/src/commands/ceremony.ts +++ b/ironfish-cli/src/commands/ceremony.ts @@ -46,7 +46,7 @@ export default class Ceremony extends IronfishCommand { // Prompt for randomness let randomness: string | null = await CliUx.ux.prompt( - 'Provide some randomness to contribute to the ceremony. If none is provided, it will automatically be generated for you (press enter)', + `If you'd like to contribute your own randomness to the ceremony, type it here, then press Enter. For more information on where this should come from and its importance, please read https://setup.ironfish.network. If you'd like the command to generate some randomness for you, just press Enter:`, { required: false }, ) randomness = randomness.length ? randomness : null