From 867382ec99a201db2bf05a061eebe6c72ef60c6b Mon Sep 17 00:00:00 2001 From: andrewshab <152420261+andrewshab3@users.noreply.github.com> Date: Wed, 1 Oct 2025 19:06:51 +0200 Subject: [PATCH 1/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 92ed60ab8f..5949bd299f 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Fortuna is an off-chain service which can be used by [Entropy](https://pyth.netw Please install the following tools in order to work in this repository: - [NVM](https://github.com/nvm-sh/nvm?tab=readme-ov-file#installing-and-updating) to manage your node version, then run `nvm use 22` to ensure you are using node version 22. -- [Foundry](https://book.getfoundry.sh/getting-started/installation) in order to use `forge` for Ethereum contract development +- [Foundry](https://getfoundry.sh/introduction/installation/) in order to use `forge` for Ethereum contract development - [Solana CLI](https://solana.com/docs/intro/installation) for working with Solana programs. - After installing, please run `solana keygen new` to generate a local private key. - [Anchor](https://www.anchor-lang.com/docs/installation) for developing Solana programs. From a794e9ac3ce10be97b33d104a091eca5b844eec7 Mon Sep 17 00:00:00 2001 From: andrewshab <152420261+andrewshab3@users.noreply.github.com> Date: Wed, 1 Oct 2025 19:08:43 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5949bd299f..9dbf8b6b82 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ Please install the following tools in order to work in this repository: ### Pull requests -Use the [Conventional Commits](https://www.conventionalcommits.org) format for your commit messages and PR titles. +Use the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) format for your commit messages and PR titles. In the PR description, please include a summary of the changes and any relevant context. Also, please make sure to update the package versions following the [Semantic Versioning](https://semver.org/) rules. @@ -84,7 +84,7 @@ the following config option to `package.json`: ### Typescript Monorepo All of the typescript / javascript packages in this repository are part of a -[turborepo](https://turbo.build/repo/docs) monorepo. +[turborepo](https://turborepo.com/docs) monorepo. #### Setting up From 4e920e5ff0c67a577bc8b103f0e66066eccb80cb Mon Sep 17 00:00:00 2001 From: andrewshab <152420261+andrewshab3@users.noreply.github.com> Date: Wed, 1 Oct 2025 19:09:42 +0200 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9dbf8b6b82..33b4bd714b 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ If you don't use nix at all, then install the required system packages: [nvm](https://github.com/nvm-sh/nvm) to manage your Node.js version. - [pnpm](https://pnpm.io/) -- match the version to the version specified in `package.json`; you can experiment with - [corepack](https://nodejs.org/api/corepack.html) to manage your pnpm version + [corepack](https://github.com/nodejs/corepack#readme) to manage your pnpm version for you. #### Common tasks From 2dd30b841679dc204010706e523409f4d39148a6 Mon Sep 17 00:00:00 2001 From: andrewshab <152420261+andrewshab3@users.noreply.github.com> Date: Wed, 1 Oct 2025 19:10:27 +0200 Subject: [PATCH 4/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 33b4bd714b..f00c58fdf0 100644 --- a/README.md +++ b/README.md @@ -105,10 +105,10 @@ If you don't use nix at all, then install the required system packages: #### Common tasks The following tasks are the most common ways to interact with the monorepo. -Thanks to [turborepo](https://turbo.build/repo/docs), these tasks will +Thanks to [turborepo](https://turborepo.com/docs), these tasks will coordinate building any needed dependencies, and task execution will be cached and will only re-run as necessary. For any of the following tasks, you can pass -[any valid `turbo run` option](https://turbo.build/repo/docs/reference/run) +[any valid `turbo run` option](https://turborepo.com/docs/reference/run) after `--`, for instance you could run `pnpm test -- --concurrency 2`. - `pnpm turbo test`: Run all unit tests, integration tests, linting, and format