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

fixed: changed account_id to accountId #119

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
4 changes: 2 additions & 2 deletions docs/validator/deploy-on-mainnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ grep public_key ~/.near/validator_key.json

### 4. Deploy `mainnet` Staking Pool {#deploy-staking-pool}

You can deploy the staking pool with [near-cli](https://github.com/near/near-cli),
You can deploy the staking pool with [near-cli]([https://github.com/near/near-cli](https://github.com/near/near-cli-rs),
using the `near call` command:

```bash
Expand All @@ -91,7 +91,7 @@ near call poolv1.near create_staking_pool '{
"owner_id": "<OWNER_ID>",
"stake_public_key": "<VALIDATOR_KEY>",
"reward_fee_fraction": {"numerator": <X>, "denominator": <Y>}
}' --account_id <OWNER_ID> --amount 30 --gas 300000000000000
}' --accountId <OWNER_ID> --amount 30 --gas 300000000000000
```

It will invoke the `staking-pool-factory` method from [NEAR Core
Expand Down