You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 17, 2025. It is now read-only.
* Include command from `Step 2: Set up a baker account`
Because readers were confused, the `Set up a baker account` step was no longer clear enough.
* Place the baking with consensus key patern after the patern without
Because it seems bakers mostly have main key on their ledger
* fixup! Ajinkya's suggestions
Co-authored-by: Ajinkya <145996984+ajinkyaraj-23@users.noreply.github.com>
---------
Co-authored-by: Ajinkya <145996984+ajinkyaraj-23@users.noreply.github.com>
Copy file name to clipboardExpand all lines: docs/tutorials/bake-with-ledger/run-baker.md
+24-8Lines changed: 24 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,28 +11,44 @@ Now that the Ledger baking key is set up, you can follow the steps of [Run a Tez
11
11
12
12
Complete the [Step 1: Run an Octez node](/tutorials/join-dal-baker/run-node) of the tutorial, and make following changes in [Step 2: Set up a baker account](/tutorials/join-dal-baker/prepare-account).
13
13
14
-
- If you **want to use a consensus key**, instead of generating it, use the Ledger key. To do so, import it from the `octez-signer` remote with the following command:
14
+
You can use your Ledger key as your main baker key or you could use Ledger key as consensus key.
15
+
16
+
- To **use the Ledger key as your main baker key**, import it from the `octez-signer` remote with the following command:
Your baker account is now set up and ready to bake using the Ledger.
25
34
26
-
- If you **don't want to use a consensus key**, use your Ledger key directly as a baker. Import it from the `octez-signer` remote with the following command:
35
+
- If you **want to use your Ledger key as a consensus key**, import it from the `octez-signer` remote with the following command:
> Replace the `tz...` with the public key hash of your Ledger baking key.
33
42
34
-
In that case, to be able to sign the operations required to set up your baker, you need to use the `Tezos Wallet (XTZ)` application.
35
-
Quit the `Tezos Baking` application and open the `Tezos Wallet (XTZ)` application.
43
+
With Ledger key imported as consensus key, you will need to generate/set up your baker key separately. You can thencontinue to set up your baker account. See the following commands:
44
+
45
+
```bash
46
+
octez-client gen keys my_baker
47
+
octez-client register key my_baker as delegate with consensus key consensus_key
48
+
octez-client stake 6000 for my_baker
49
+
```
50
+
51
+
By registering your baker as a delegate with the ledger key as the consensus key, the baker daemon will sign using the Ledger.
0 commit comments