Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update deploy-on-mainnet.md #112

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
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
6 changes: 3 additions & 3 deletions docs/validator/deploy-on-mainnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ Once the daemon executable is built it’s time to initialize the node.
that at this point the `<POOL_ID>.poolv1.near` account doesn’t yet
exist. We’re going to create it in the next step.

This command will create a `~/.near/validator_key.json` file which
This command will create a `~/.near/node_key.json` file which
will contain validator’s private key. It’s a good idea to back this
file up in a secure location. For now, read the validator’s public
key from this file:

```bash
grep public_key ~/.near/validator_key.json
grep public_key ~/.near/node_key.json
```


Expand Down Expand Up @@ -105,7 +105,7 @@ following parameters:
methods](https://github.com/near/core-contracts/tree/master/staking-pool#owner-only-methods)
for more information),
- `<VALIDATOR_KEY>` is the validator node public key read in the
previous step from the `~/.near/validator_key.json` file,
previous step from the `~/.near/node_key.json` file,
- `{"numerator": <X>, "denominator": <Y>}` sets the validator fees
(for example`X=10` and `Y=100` means 10%),
- `--amount 30` attaches 30 $NEAR to the transaction to pay the
Expand Down
Loading