diff --git a/docs/3.tutorials/auction/2.1-frontend.md b/docs/3.tutorials/auction/2.1-frontend.md index 580ce32e30..402da9062f 100644 --- a/docs/3.tutorials/auction/2.1-frontend.md +++ b/docs/3.tutorials/auction/2.1-frontend.md @@ -43,7 +43,7 @@ We have a config file that specifies the contract name of the auction that the f @@ -53,16 +53,16 @@ We have a config file that specifies the contract name of the auction that the f To be able to fully interact with the contract - send bids and claim the auction - you'll need a `wallet` to sign transactions. Wallets securely store your private keys and allow you to sign transactions without exposing your private key to the frontend. The wallet selector allows users to choose between a selection of wallets. -We abstract the wallet selector in our `near.js` file by exposing methods to complete various tasks. Feel free to [explore the file](https://github.com/near-examples/auctions-tutorial/blob/reorg-auction/frontends/01-frontends/01-frontend/src/wallets/near.js) to understand fully how the wallet selector is implemented. +We abstract the wallet selector in our `near.js` file by exposing methods to complete various tasks. Feel free to [explore the file](https://github.com/near-examples/auctions-tutorial/blob/reorg-auction/frontends/01-frontend/src/wallets/near.js) to understand fully how the wallet selector is implemented. The wallet object is initiated in the `app.js` file and its added to the global context along with the account that is signed in to make it easier to access anywhere in the application. @@ -78,10 +78,10 @@ We add a sign-in and sign-out button in the `navigation` component to call the r @@ -93,10 +93,10 @@ To get the highest bid from the auction and who made it we call `get_highest_bid @@ -106,7 +106,7 @@ We then pass the information about the highest bidder into the `LastBid` compone