Skip to content
This repository was archived by the owner on Apr 23, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions docs/quick-start/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<details>
<summary><b>Scarb Installation Process</b></summary>
Expand All @@ -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
Expand All @@ -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.3`, you need to install it.
If your `starknet-devnet` version is not `0.2.4`, you need to install it.

<details>
<summary><b>Starknet Devnet Installation Process</b></summary>
Expand All @@ -94,19 +94,19 @@ 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 global starknet-devnet 0.2.3
asdf set starknet-devnet 0.2.4
```

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.
Expand Down Expand Up @@ -144,10 +144,10 @@ 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 global starknet-foundry 0.38.2
asdf set starknet-foundry 0.38.2
```

</details>
Expand Down