From 82f277ac53c792b8ee57f9a73438be5f85284bb1 Mon Sep 17 00:00:00 2001 From: ethanoroshiba Date: Wed, 26 Mar 2025 09:33:39 -0500 Subject: [PATCH] update init bridge account to match https://github.com/astriaorg/astria/pull/2055 --- docs/developer/astria-cli/astria-cli-commands.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/developer/astria-cli/astria-cli-commands.md b/docs/developer/astria-cli/astria-cli-commands.md index 96403e45..e0cf02c8 100644 --- a/docs/developer/astria-cli/astria-cli-commands.md +++ b/docs/developer/astria-cli/astria-cli-commands.md @@ -1,5 +1,5 @@ --- -outline: [1,2] +outline: [1,2] --- @@ -192,7 +192,7 @@ Command for initializing a bridge account. ### Usage ```bash -astria-cli sequencer init-bridge-account [OPTIONS] --private-key --rollup-name +astria-cli sequencer init-bridge-account [OPTIONS] --private-key --sequencer-url --sequencer.chain-id --rollup-name ``` ### Flags @@ -201,6 +201,7 @@ astria-cli sequencer init-bridge-account [OPTIONS] --private-key - |---|---|---| | `--prefix ` | string | The bech32m prefix that will be used for constructing addresses using the private key [default: astria] | | `--private-key ` | string | The private key of the account initializing the bridge account [env: SEQUENCER_PRIVATE_KEY=] | +| `--withdrawer-address ` | string | The authorized withdrawer address for this account. If unset, the sender address will be used | | `--sequencer-url ` | string | The url of the Sequencer node [env: SEQUENCER_URL=] | | `--sequencer.chain-id ` | string | The chain id of the sequencing chain being used [env: ROLLUP_SEQUENCER_CHAIN_ID=] | | `--rollup-name ` | string | Plaintext rollup name (to be hashed into a rollup ID) to initialize the bridge account with |