Skip to content
Closed
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