Skip to content

Commit e353048

Browse files
authored
chore(docs): fix reference to --sequencer.validatorPrivateKey -> s (#16812)
2 parents a2222ca + a0cfb93 commit e353048

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/docs/developers/reference/environment_reference/cli_reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ aztec start --port 8081 --pxe --pxe.nodeUrl=$BOOTNODE --pxe.proverEnabled true -
301301
#### Example Usage
302302

303303
```bash
304-
aztec start --network alpha-testnet --l1-rpc-urls https://example.com --l1-consensus-host-urls https://example.com --sequencer.blobSinkUrl http://34.82.117.158:5052 --sequencer.validatorPrivateKey 0xYourPrivateKey --sequencer.coinbase 0xYourAddress --p2p.p2pIp 999.99.999.99
304+
aztec start --network alpha-testnet --l1-rpc-urls https://example.com --l1-consensus-host-urls https://example.com --sequencer.blobSinkUrl http://34.82.117.158:5052 --sequencer.validatorPrivateKeys 0xYourPrivateKey --sequencer.coinbase 0xYourAddress --p2p.p2pIp 999.99.999.99
305305
```
306306

307307
#### Blob Sink Options

docs/docs/the_aztec_network/guides/run_nodes/how_to_run_sequencer.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ aztec start --node --archiver --sequencer \
8181
--network alpha-testnet \
8282
--l1-rpc-urls $ETHEREUM_HOSTS \
8383
--l1-consensus-host-urls $L1_CONSENSUS_HOST_URLS \
84-
--sequencer.validatorPrivateKey $VALIDATOR_PRIVATE_KEY \
84+
--sequencer.validatorPrivateKeys $VALIDATOR_PRIVATE_KEY \
8585
--sequencer.coinbase $COINBASE \
8686
--p2p.p2pIp $P2P_IP
8787
```
@@ -146,7 +146,7 @@ To use the `aztec start` command, you need to obtain the following:
146146

147147
#### Ethereum Keys
148148

149-
You will need an Ethereum private key and the corresponding public address. The private key is set via the `--sequencer.validatorPrivateKey` flag while the public address should be specified via the `--sequencer.coinbase ` flag.
149+
You will need an Ethereum private key and the corresponding public address. The private key is set via the `--sequencer.validatorPrivateKeys` flag while the public address should be specified via the `--sequencer.coinbase ` flag.
150150

151151
The private key is needed as your validator will post blocks to Ethereum, and the public address will be the recipient of any block rewards.
152152

@@ -176,7 +176,7 @@ aztec start --node --archiver --sequencer \
176176
--network alpha-testnet \
177177
--l1-rpc-urls https://example.com \
178178
--l1-consensus-host-urls https://example.com \
179-
--sequencer.validatorPrivateKey 0xYourPrivateKey \
179+
--sequencer.validatorPrivateKeys 0xYourPrivateKey \
180180
--sequencer.coinbase 0xYourAddress \
181181
--p2p.p2pIp 999.99.999.99 \
182182
--p2p.maxTxPoolSize 1000000000

docs/versioned_docs/version-v1.2.0/developers/reference/environment_reference/cli_reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ aztec start --port 8081 --pxe --pxe.nodeUrl=$BOOTNODE --pxe.proverEnabled true -
301301
#### Example Usage
302302

303303
```bash
304-
aztec start --network alpha-testnet --l1-rpc-urls https://example.com --l1-consensus-host-urls https://example.com --sequencer.blobSinkUrl http://34.82.117.158:5052 --sequencer.validatorPrivateKey 0xYourPrivateKey --sequencer.coinbase 0xYourAddress --p2p.p2pIp 999.99.999.99
304+
aztec start --network alpha-testnet --l1-rpc-urls https://example.com --l1-consensus-host-urls https://example.com --sequencer.blobSinkUrl http://34.82.117.158:5052 --sequencer.validatorPrivateKeys 0xYourPrivateKey --sequencer.coinbase 0xYourAddress --p2p.p2pIp 999.99.999.99
305305
```
306306

307307
#### Blob Sink Options

docs/versioned_docs/version-v1.2.0/the_aztec_network/guides/run_nodes/how_to_run_sequencer.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ aztec start --node --archiver --sequencer \
8181
--network alpha-testnet \
8282
--l1-rpc-urls $ETHEREUM_HOSTS \
8383
--l1-consensus-host-urls $L1_CONSENSUS_HOST_URLS \
84-
--sequencer.validatorPrivateKey $VALIDATOR_PRIVATE_KEY \
84+
--sequencer.validatorPrivateKeys $VALIDATOR_PRIVATE_KEY \
8585
--sequencer.coinbase $COINBASE \
8686
--p2p.p2pIp $P2P_IP
8787
```
@@ -146,7 +146,7 @@ To use the `aztec start` command, you need to obtain the following:
146146

147147
#### Ethereum Keys
148148

149-
You will need an Ethereum private key and the corresponding public address. The private key is set via the `--sequencer.validatorPrivateKey` flag while the public address should be specified via the `--sequencer.coinbase ` flag.
149+
You will need an Ethereum private key and the corresponding public address. The private key is set via the `--sequencer.validatorPrivateKeys` flag while the public address should be specified via the `--sequencer.coinbase ` flag.
150150

151151
The private key is needed as your validator will post blocks to Ethereum, and the public address will be the recipient of any block rewards.
152152

@@ -176,7 +176,7 @@ aztec start --node --archiver --sequencer \
176176
--network alpha-testnet \
177177
--l1-rpc-urls https://example.com \
178178
--l1-consensus-host-urls https://example.com \
179-
--sequencer.validatorPrivateKey 0xYourPrivateKey \
179+
--sequencer.validatorPrivateKeys 0xYourPrivateKey \
180180
--sequencer.coinbase 0xYourAddress \
181181
--p2p.p2pIp 999.99.999.99 \
182182
--p2p.maxTxPoolSize 1000000000

0 commit comments

Comments
 (0)