diff --git a/website/_i18n/en/user-guides/use-wallet-cli/index.md b/website/_i18n/en/user-guides/use-wallet-cli/index.md index 9aea3b092..8ab165cff 100644 --- a/website/_i18n/en/user-guides/use-wallet-cli/index.md +++ b/website/_i18n/en/user-guides/use-wallet-cli/index.md @@ -272,14 +272,14 @@ Replace `
` with the address for which you want to retrieve its public k ### Get Private Key -You can get the public key of your address by this command: +You can get the private key of your address by this command: {% tabs address_prv ltr %} {% tab address_prv linux Linux %} ```text -./pactus-wallet --path ~/pactus/wallets/default_wallet address pub +./pactus-wallet --path ~/pactus/wallets/default_wallet address priv ``` {% endtab %} @@ -287,7 +287,7 @@ You can get the public key of your address by this command: {% tab address_prv mac macOS %} ```text -./pactus-wallet --path ~/pactus/wallets/default_wallet address pub +./pactus-wallet --path ~/pactus/wallets/default_wallet address priv ``` {% endtab %} @@ -295,7 +295,7 @@ You can get the public key of your address by this command: {% tab address_prv windows Windows %} ```text -pactus-wallet.exe c:\pactus\wallets\default_wallet address pub +pactus-wallet.exe c:\pactus\wallets\default_wallet address priv ``` {% endtab %}