From beb67c2775297f35fd981ac57d0044a61e8e3cd8 Mon Sep 17 00:00:00 2001 From: Daniel Dimitrov Date: Tue, 4 Jun 2024 15:33:49 +0200 Subject: [PATCH] fix: wrong command name --- .../advanced/cli-guides/recovery-safe-deployment.mdx | 4 ++-- pages/advanced/cli-reference/common-commands.mdx | 11 ++++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/pages/advanced/cli-guides/recovery-safe-deployment.mdx b/pages/advanced/cli-guides/recovery-safe-deployment.mdx index 9a58dd5d..e9b63284 100644 --- a/pages/advanced/cli-guides/recovery-safe-deployment.mdx +++ b/pages/advanced/cli-guides/recovery-safe-deployment.mdx @@ -41,5 +41,5 @@ The Safe should have been successfully recreated with the same address on the ta Our services cannot index if you've recreated a Safe from an L1 network (like mainnet) on an L2 network. That's because for L1, we use trace-based indexing, and for L2 events indexing, L1 Safe singleton does not emit events. -To address this, you'll need to update it to the L2 singleton with the command `update_to_l2` or consider transferring the funds to a new Safe on L2 that you control with the `drain` command. -For detailed instructions on running these commands, please refer to the [common commands](../cli-reference/common-commands.mdx) section for more information. \ No newline at end of file +To address this, you'll need to update it to the L2 singleton with the command `update_version_to_l2` or consider transferring the funds to a new Safe on L2 that you control with the `drain` command. +For detailed instructions on running these commands, please refer to the [common commands](../cli-reference/common-commands.mdx) section for more information. diff --git a/pages/advanced/cli-reference/common-commands.mdx b/pages/advanced/cli-reference/common-commands.mdx index d6c69418..44440f45 100644 --- a/pages/advanced/cli-reference/common-commands.mdx +++ b/pages/advanced/cli-reference/common-commands.mdx @@ -36,7 +36,7 @@ Updates the Safe to the latest version (if you are on a known network like Mainn ```bash update -``` +``` ## Transactions @@ -80,7 +80,7 @@ Adds a new owner `address` to the Safe. ```bash add_owner
-``` +``` ### Load owners @@ -185,7 +185,7 @@ Changes the `threshold` of the Safe. ```bash change_threshold -``` +``` ## Modules @@ -239,7 +239,7 @@ Updates the master copy to be `address`. It's used to update the Safe. ```bash change_master_copy
-``` +``` ## Update to L2 @@ -253,5 +253,6 @@ It can be found [here](https://github.com/safe-global/safe-contracts/blob/main/c The nonce for the Safe must be 0, and supported versions are `v1.1.1`, `v1.3.0`, and `v1.4.1`. ```bash -update_to_l2
+update_version_to_l2
``` +where `address` is the address of the update contract.