Skip to content

Commit

Permalink
fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
PiVortex committed Oct 11, 2024
1 parent 15251af commit b811852
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/3.tutorials/auction/0-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions docs/3.tutorials/auction/4-factory.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down Expand Up @@ -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.

---

Expand Down

0 comments on commit b811852

Please sign in to comment.