diff --git a/docs/3.tutorials/auction/0-intro.md b/docs/3.tutorials/auction/0-intro.md index 6915a24e7f2..af1bb2255ed 100644 --- a/docs/3.tutorials/auction/0-intro.md +++ b/docs/3.tutorials/auction/0-intro.md @@ -18,7 +18,7 @@ By the time you finish this tutorial, you will have learned several concepts and - [Deploying a contract to testnet](./1.3-deploy.md) - [Locking a contract](./1.3-deploy.md#locking-the-contract) - [Creating a frontend to interact with the contract](./2.1-frontend.md) -- [Using an indexing API to view historical bids](./6-indexing.md) +- [Using an indexing API to view historical bids](./2.2-indexing.md) - [Making cross-contract calls](./3.1-nft.md#transferring-the-nft-to-the-winner) - [Using Non-Fungible Tokens](./3.1-nft.md) - [Using Fungible Tokens](./3.2-ft.md) diff --git a/docs/3.tutorials/auction/4-factory.md b/docs/3.tutorials/auction/4-factory.md index 374dc9fd99c..fff65c842af 100644 --- a/docs/3.tutorials/auction/4-factory.md +++ b/docs/3.tutorials/auction/4-factory.md @@ -18,9 +18,9 @@ The factory example only comes in rust since, currently, the JavaScript SDK does In the current example, the factory contract deploys the donation contract example. We will change this to deploy our auction contract instead. -Firstly, we'll need the compiled auction contract WASM file. You can get this by running the following command in [part four](4-ft.md) of `contract-rs` +Firstly, we'll need the compiled auction contract WASM file. You can get this by running the following command in [03-bid-with-fts](https://github.com/near-examples/auctions-tutorial/tree/reorg-auction/contract-rs/03-bid-with-fts) of `contract-rs` -``` +```bash cargo near build ``` @@ -51,7 +51,7 @@ The method to deploy a new contract is specific to the contract being deployed ( url="https://github.com/near-examples/auctions-tutorial/blob/reorg-auction/factory/src/deploy.rs#L9-L82" start="9" end="82" /> -In this fork, we have also removed the option to add an access key to the contract account since, as discussed in [part 2](2-locking.md), we want auctions to be locked. +In this fork, we have also removed the option to add an access key to the contract account since, as discussed [earlier](./1.3-deploy.md#locking-the-contract), we want auctions to be locked. ---