From 081dbd57658064c6942014af493cbc88c0f10c19 Mon Sep 17 00:00:00 2001 From: ManuelPrhyme <82534882+ManuelPrhyme@users.noreply.github.com> Date: Sat, 6 Dec 2025 00:38:52 +0300 Subject: [PATCH 1/2] Updated README with setup instructions Clarified project setup instructions and added 'forge init' command. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b0e8bb2..ad5573e 100644 --- a/README.md +++ b/README.md @@ -65,13 +65,14 @@ Build: git clone https://github.com/CodeHawks-Contests/2025-12-token-0x.git -forge install +#### The project structure already fits a Foundry project, simply initialising will integrate the Foundry library and configuration, it's much easier +forge init --force ``` Tests: ```bash -Forge test +forge test ``` [//]: # (getting-started-close) From e9fe2494e541f6a4db31d94eea0a51974b03e0cc Mon Sep 17 00:00:00 2001 From: ManuelPrhyme <82534882+ManuelPrhyme@users.noreply.github.com> Date: Sat, 6 Dec 2025 00:39:22 +0300 Subject: [PATCH 2/2] Fix typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ad5573e..fc66484 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ Build: git clone https://github.com/CodeHawks-Contests/2025-12-token-0x.git -#### The project structure already fits a Foundry project, simply initialising will integrate the Foundry library and configuration, it's much easier +#### The project structure already fits a Foundry project, simply initializing it will integrate the Foundry library and configuration, it's much easier forge init --force ```