From 4fb1b1ab02d13421a689ee38e30987ca2ddd5c58 Mon Sep 17 00:00:00 2001 From: Daniel Knopik Date: Fri, 24 Oct 2025 13:52:53 +0200 Subject: [PATCH] docs: Add warning for #712 --- docs/docs/pages/migrate_to_anchor.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/docs/pages/migrate_to_anchor.mdx b/docs/docs/pages/migrate_to_anchor.mdx index 8caa1279c..71b25f6e6 100644 --- a/docs/docs/pages/migrate_to_anchor.mdx +++ b/docs/docs/pages/migrate_to_anchor.mdx @@ -34,3 +34,7 @@ mv ~/ssv-stack/ssv-node-data/encrypted_private_key.json ~/.anchor/mainnet/encryp Once this key is moved, Anchor should be able to be run. See the [Node CLI Reference](/cli-node) for a list of CLI parameters required to fully run the Anchor node as an operator. You will need to put the password that decrypts the operator key into a file and reference it in Anchor's CLI via the `--password-file ` parameter. + +:::warning +If Anchor fails to start with the message `Unable to parse key: unknown field pubkey, expected one of pubKey (...)`, please change "pubkey" to "pubKey" in the encrypted_private_key.json file. This is a known issue and will be fixed in a future release. +:::