From d868218e08b404e285a6f0ac3be2ab792658feef Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 11:59:00 -0500 Subject: [PATCH] v2.0: Fix: Corrected the derivation command format (backport of #2952) (#3005) Fix: Corrected the derivation command format (#2952) (cherry picked from commit d2cc71f0d446b8fdd8052106f38c784f3757c4aa) Co-authored-by: Asten --- docs/src/cli/wallets/paper.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/cli/wallets/paper.md b/docs/src/cli/wallets/paper.md index 4e3c3c39ac8732..b90b1b9bfd3a7f 100644 --- a/docs/src/cli/wallets/paper.md +++ b/docs/src/cli/wallets/paper.md @@ -150,14 +150,14 @@ By default, `prompt:` will derive solana's base derivation path `m/44'/501'`. To derive a child key, supply the `?key=/` query string. ```bash -solana-keygen pubkey prompt://?key=0/1 +solana-keygen pubkey 'prompt://?key=0/1' ``` To use a derivation path other than solana's standard BIP44, you can supply `?full-path=m////`. ```bash -solana-keygen pubkey prompt://?full-path=m/44/2017/0/1 +solana-keygen pubkey 'prompt://?full-path=m/44/2017/0/1' ``` Because Solana uses Ed25519 keypairs, as per