From ebd5dc7a78f9ac4d1e2697d47186ad3357727d41 Mon Sep 17 00:00:00 2001 From: Nadai2010 Date: Thu, 17 Apr 2025 21:37:47 +0100 Subject: [PATCH 1/3] Update asdf set --- docs/quick-start/installation.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/quick-start/installation.mdx b/docs/quick-start/installation.mdx index 48531b8..4eac77e 100644 --- a/docs/quick-start/installation.mdx +++ b/docs/quick-start/installation.mdx @@ -100,13 +100,13 @@ asdf install starknet-devnet 0.2.3 and set it as the global or local version: ```bash -asdf set global starknet-devnet 0.2.3 +asdf set starknet-devnet 0.2.3 ``` or ```bash -asdf set local starknet-devnet 0.2.3 +asdf set starknet-devnet 0.2.3 ``` Otherwise, you can simply run the following command in your terminal and follow the on-screen instructions. @@ -147,7 +147,7 @@ asdf install starknet-foundry 0.38.2 and set a global version: ```bash -asdf set global starknet-foundry 0.38.2 +asdf set starknet-foundry 0.38.2 ``` From 67d9fdd92692798061908a86f22815ac268eb479 Mon Sep 17 00:00:00 2001 From: gianmalarcon Date: Fri, 18 Apr 2025 16:53:38 -0500 Subject: [PATCH 2/3] Feat: Remove remaminings global and locals --- docs/quick-start/installation.mdx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/quick-start/installation.mdx b/docs/quick-start/installation.mdx index 4eac77e..06a09e3 100644 --- a/docs/quick-start/installation.mdx +++ b/docs/quick-start/installation.mdx @@ -51,10 +51,10 @@ This will allow you to download specific versions. You can choose the same versi asdf install scarb 2.9.4 ``` -and set a global version: +and set a version: ```bash -asdf set global scarb 2.9.4 +asdf set scarb 2.9.4 ``` Otherwise, you can simply run the following command in your terminal, and follow the onscreen instructions. This @@ -75,7 +75,7 @@ To accomplish this, first check your local starknet-devnet version: starknet-devnet --version ``` -If your local starknet-devnet version is not `0.2.3`, you need to install it. +If your local starknet-devnet version is not `0.2.4`, you need to install it.
Starknet Devnet Installation Process @@ -94,13 +94,13 @@ asdf plugin add starknet-devnet This will allow you to download specific versions. You can install the compatible version **0.2.3** with: ```bash -asdf install starknet-devnet 0.2.3 +asdf install starknet-devnet 0.2.4 ``` -and set it as the global or local version: +and set a version: ```bash -asdf set starknet-devnet 0.2.3 +asdf set starknet-devnet 0.2.4 ``` or @@ -144,7 +144,7 @@ This will allow you to download specific versions. asdf install starknet-foundry 0.38.2 ``` -and set a global version: +and set a version: ```bash asdf set starknet-foundry 0.38.2 From 230c8b364c437cc3d4d6c6db7325ea8cac886963 Mon Sep 17 00:00:00 2001 From: gianmalarcon Date: Fri, 18 Apr 2025 16:54:35 -0500 Subject: [PATCH 3/3] Feat: Remove remaminings global and locals --- docs/quick-start/installation.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/quick-start/installation.mdx b/docs/quick-start/installation.mdx index 06a09e3..e5265fa 100644 --- a/docs/quick-start/installation.mdx +++ b/docs/quick-start/installation.mdx @@ -18,13 +18,13 @@ Before you begin, you need to install the following tools: ## Install scarb -To ensure the proper functioning of scaffold-stark, your local `Scarb` version must be `2.9.4`. To accomplish this, first check your local Scarb version: +To ensure the proper functioning of scaffold-stark, your `Scarb` version must be `2.9.4`. To accomplish this, first check your `Scarb` version: ```sh scarb --version ``` -If your local Scarb version is not `2.9.4`, you need to install it. +If your Scarb version is not `2.9.4`, you need to install it.
Scarb Installation Process @@ -68,14 +68,14 @@ curl --proto '=https' --tlsv1.2 -sSf https://docs.swmansion.com/scarb/install.sh ## Install `starknet-devnet` -To ensure the proper functioning of scaffold-stark, your local starknet-devnet version must be 0.2.3. -To accomplish this, first check your local starknet-devnet version: +To ensure the proper functioning of scaffold-stark, your starknet-devnet version must be 0.2.3. +To accomplish this, first check your starknet-devnet version: ``` starknet-devnet --version ``` -If your local starknet-devnet version is not `0.2.4`, you need to install it. +If your `starknet-devnet` version is not `0.2.4`, you need to install it.
Starknet Devnet Installation Process