Skip to content

Commit 0ab5632

Browse files
author
AztecBot
committed
Merge branch 'next' into merge-train/avm
2 parents 225fe4f + 924667b commit 0ab5632

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/docs-network/setup/sequencer_management.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ aztec validator-keys new \
127127
- Example: `--count 5` generates 5 validator identities with sequential addresses
128128
- All identities are derived from the same mnemonic using different derivation paths
129129
- Useful for operators running multiple sequencer identities or delegated staking providers
130+
- `--publisher-count` Number of publisher accounts per validator (default 0)
130131

131132

132133
**This command creates two JSON files:**
@@ -139,7 +140,7 @@ Where `N` is an auto-incrementing number (e.g., `key1.json`, `key2.json`, etc.)
139140
- Automatically generates a mnemonic for key derivation (or provide your own with `--mnemonic`)
140141
- Creates an ETH key (for your sequencer identifier) and BLS key (for signing)
141142
- Computes BLS public keys (G1 and G2) and proof of possession
142-
- Outputs your attester address and BLS public key to the console
143+
- Outputs your attester address, publisher address and BLS public keys to the console
143144

144145
**Example output (single validator):**
145146
```
@@ -256,9 +257,9 @@ Your sequencer needs ETH to pay for gas when submitting blocks to L1. Fund the a
256257

257258
```bash
258259
# Get your attester address (this will be your publisher if no separate publisher is configured)
259-
jq -r '.validators[0].attester.eth' aztec-sequencer/keys/keystore.json
260+
jq -r '.[0].attester' ~/.aztec/keystore/keyN_staker_output.json
260261

261-
# If you have a separate publisher configured:
262+
# If you have a separate publisher configured: (Note this returns the publisher private key)
262263
jq -r '.validators[0].publisher[0]' aztec-sequencer/keys/keystore.json
263264
```
264265

0 commit comments

Comments
 (0)