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 deposit parameter #2401

Merged
merged 1 commit into from
Dec 31, 2024
Merged
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/3.tutorials/auction/1.3-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ We are now ready to start bidding by calling the `bid` function on the contract.

```bash
# call the contract to bid
near call <contractId> bid --accountId <bidderId> --depositYocto 1
near call <contractId> bid --accountId <bidderId> --deposit 1

# get the highest bid
near view <contractId> get_highest_bid
Expand All @@ -138,4 +138,4 @@ Do not use testnet as your **only way** to test contracts. Always test your cont

Generally, you will use the CLI only to deploy and initialize the contract. Afterward, all interactions will be made from a frontend. This is why in the [next section](./2.1-frontend.md) we'll move on to creating a frontend to interact with the contract.

:::
:::
Loading