Frontend structure
Navigate to the auction frontend.| File | Description |
|---|---|
| _app.js | Responsible for rending the page, initiates the wallet object and adds it to global context |
| index.js | The main page where the project’s components are loaded into and contains most of the logic for the application like viewing the state of the contract and logic for placing a bid |
| near.js | Contains the wallet class that has methods to interact with the wallet and blockchain |
| context.js | Holds the global context - the wallet object and the signed-in account ID - that can be accessed anywhere |
| config.js | Specifies the account ID of the auction contract |
| Navigation.jsx | A component that contains a button to sign users in and out of wallets |
| Bid.jsx | A component allowing a user to make a bid |
| LastBid.jsx | A component that displays the highest bid and when the highest bid will next refresh |
| Timer.jsx | A component that shows how long till the auction is over, or, if over, displays a button to claim the auction and then states the auction is over |
Specifying the contract
We have a config file that specifies the contract name of the auction that the frontend will interact with. There has been an example auction contract deployed and specified already but feel free to change the contract to your own auction contract you deployed.Setting up wallets
To be able to fully interact with the contract - send bids and claim the auction - you’ll need awallet 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 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.
We add a sign-in and sign-out button in the navigation component to call the respective methods in the near.js file.
Displaying the highest bid
To get the highest bid from the auction and who made it we callget_highest_bid. Since this function returns the highest bid in yoctoNEAR we divide by 10^24 to get the amount in NEAR.
In the wallet file, you’ll see that we make a query to the RPC provider, since we are not signing a transaction the wallet isn’t required here. Here we are using https://rpc.testnet.near.org but note there are many different providers available. We are querying the RPC with optimistic finality, which queries the latest block recorded on the node. Alternatively, one could use final finality where the block has been validated by at least 66% of the validators on the network but this will provide slightly delayed information (only by a couple of seconds).
We then pass the information about the highest bidder into the LastBid component to display the bid amount and the bidder’s account Id.
Updating the highest bid
We want to know the highest bid at all times, someone else could have placed a higher bid since the page was loaded. To solve this we fetch the contract information every 20 seconds usingsetInterval and update the highest bid if it has changed. In reality you would want to refresh the bid amount more requently but for the sake of saving on RPC calls we are doing it every 20 seconds.
Auction end time
The contract stores the end time of the auction in the number of nanoseconds since the Unix epoch (1 January 1970 00:00:00 UTC). In our frontend we will display the time left in days, hours, minutes, and seconds.Making a bid
To make a bid we make a call to the contract using thebid function. We specify the deposit amount in yoctoNEAR which will be the bid amount. The input box will take the bid amount in NEAR so we multiply by 10^24 to get the correct amount to send. We also specify the amount of gas to attach to the transaction, here we are attaching 30Tgas which is more than enough for the transaction to go through, we are refunded any unused gas anyway.
Here, since the user is changing the state of the contract, not just viewing it, the user needs to sign the transaction. Thus the wallet will pop up displaying the transaction details.
Claiming the auction
Once the auction is over (the current time is greater than the end time) the auction can be claimed. At this point, the timer will be hidden and a button to claim the auction will be displayed. Once clicked theclaim function will be called on the auction contract to send the highest bidder the NFT and the auctioneer the FTs.