Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix public key
  • Loading branch information
rustdude authored and rustdude committed Oct 30, 2023
commit 173aa1b0889eb1a386a39e54dda53e13059a0e48
8 changes: 4 additions & 4 deletions docs/getting_started/create_account.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ You will need the keypair and public key to submit transactions.
You can check the account balance using the account address (public key).
=== "Linux / macOS"
```bash
./pchain_client query balance --address <PUBLIC_KEY>
./pchain_client query balance --address <ADDRESS>
```
=== "Windows PowerShell"
```PowerShell
./pchain_client.exe query balance --address <PUBLIC_KEY>
./pchain_client.exe query balance --address <ADDRESS>
```
<details><summary>Terminal Output</summary>
```bash
Expand Down Expand Up @@ -84,11 +84,11 @@ You will be asked to input your password to export the keypair. The keypair will
To add your keypair, type the following command below:
=== "Linux / macOS"
```bash
./pchain_client keys import --public <PUBLIC_KEY> --private <PRIVATE_KEY> --name <NAME>
./pchain_client keys import --public <PUBLIC_KEY/ADDRESS> --private <PRIVATE_KEY> --name <NAME>
```
=== "Windows PowerShell"
```PowerShell
./pchain_client.exe keys import --public <PUBLIC_KEY> --private <PRIVATE_KEY> --name <NAME>
./pchain_client.exe keys import --public <PUBLIC_KEY/ADDRESS> --private <PRIVATE_KEY> --name <NAME>
```

You will be asked to input your password to import the new keypair.
Expand Down