diff --git a/docs/content/guides/developer/app-examples/trading/frontend.mdx b/docs/content/guides/developer/app-examples/trading/frontend.mdx index a588450ff3fd6f..66d9f411fb1ff6 100644 --- a/docs/content/guides/developer/app-examples/trading/frontend.mdx +++ b/docs/content/guides/developer/app-examples/trading/frontend.mdx @@ -194,7 +194,7 @@ Use the `useSuiClient()` hook from `dApp Kit` to retrieve the Sui client instanc :::info -The full source code of the demo bear smart contract is available at [Trading Contracts Demo directory](https://github.com/MystenLabs/sui/examples/trading/contracts/demo) +The full source code of the demo bear smart contract is available at [Trading Contracts Demo directory](https://github.com/MystenLabs/sui/tree/main/examples/trading/contracts/demo) ::: diff --git a/docs/content/guides/developer/app-examples/trading/indexer-api.mdx b/docs/content/guides/developer/app-examples/trading/indexer-api.mdx index a9fe1647ef4a44..2df2f3b6b1df22 100644 --- a/docs/content/guides/developer/app-examples/trading/indexer-api.mdx +++ b/docs/content/guides/developer/app-examples/trading/indexer-api.mdx @@ -21,7 +21,7 @@ Before getting started, make sure you: - Understand [the mechanism behind the Trading backend](../trading.mdx). - Install [`pnpm` through this guide](https://pnpm.io/installation) as this example uses it as the package manager. -- Check out the [indexer's README](https://github.com/MystenLabs/sui/examples/trading/api) to setup the development environment. +- Check out the [indexer's README](https://github.com/MystenLabs/sui/tree/main/examples/trading/api) to setup the development environment. - Check out [Prisma](https://www.prisma.io/) to get an overall sense of the technology that facilitates all the database interactions. - Check out [Express](https://expressjs.com/) to learn how to set up a web server application in Node.js. This server bootstraps your API service. - Check out [Sui TypeScript SDK](https://sdk.mystenlabs.com/typescript) for basic usage on how to interact with Sui with TypeScript.