From 30760c61a6c4ae100357fd3618043625edbb7c21 Mon Sep 17 00:00:00 2001 From: metasal <54984459+metasal1@users.noreply.github.com> Date: Fri, 7 Feb 2025 10:45:15 +1100 Subject: [PATCH] fixed: changed account_id to accountId --- docs/validator/deploy-on-mainnet.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/validator/deploy-on-mainnet.md b/docs/validator/deploy-on-mainnet.md index 37bc889..864acf2 100644 --- a/docs/validator/deploy-on-mainnet.md +++ b/docs/validator/deploy-on-mainnet.md @@ -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 @@ -91,7 +91,7 @@ near call poolv1.near create_staking_pool '{ "owner_id": "", "stake_public_key": "", "reward_fee_fraction": {"numerator": , "denominator": } -}' --account_id --amount 30 --gas 300000000000000 +}' --accountId --amount 30 --gas 300000000000000 ``` It will invoke the `staking-pool-factory` method from [NEAR Core