From 927a151836cee7a1df3adb712c60d29299f83f42 Mon Sep 17 00:00:00 2001 From: Hwangjae Lee Date: Fri, 24 Jan 2025 19:36:02 +0900 Subject: [PATCH] docs: add instructions for specifying --coin-type during key restoring (#1527) Many relayer operators have struggled with restoring accounts without knowing how to set the --coin-type properly. To address this, added guidance on specifying the --coin-type for successful key restoration. Signed-off-by: Hwangjae Lee --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 88e296a93..16efca7f5 100644 --- a/README.md +++ b/README.md @@ -112,6 +112,13 @@ Additional information on how IBC works can be found [here](https://ibc.cosmos.n $ rly keys restore cosmoshub [key-name] "mnemonic words here" $ rly keys restore osmosis [key-name] "mnemonic words here" ``` + Some projects require specifying the `--coin-type` in decimal format for the key to be restored correctly. + Always ensure to verify the `--coin-type` when restoring an account. + + For example, in the case of Injective, the `--coin-type` should be set to `60`. + ```shell + $ rly keys restore injective [key-name] "mnemonic words here" --coin-type 60 + ``` 5. **Use the `key-name` created above.**