Skip to content

Commit

Permalink
Update Reign.md
Browse files Browse the repository at this point in the history
  • Loading branch information
taoranzhishang authored Sep 25, 2024
1 parent 0fbf2da commit ba52354
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions Reign.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,44 @@ This chapter outlines the complete workflow for developing and managing Starknet
6. **Version Changes**:
- Version 2.3.0 introduced JSON outputs for Sierra and CASM code and support for components.

### 2024.09.25

#### Installation Steps for Starknet Development Tools

This guide helps set up essential Starknet development tools.

1. **Essential Tools**:
- **Starkli**: A command-line interface (CLI) for interacting with Starknet.
- **Scarb**: Cairo’s package manager for compiling code to Sierra, the intermediary language for Starknet.
- **Katana**: A Starknet node designed for local development.

2. **Starkli Installation**:
- Install via command:
```
curl https://get.starkli.sh | sh
```
- Verify installation with `starkli --version`. Repeat the steps to upgrade.

3. **Scarb Package Manager Installation**:
- **Requirements**: Ensure a Git executable is available in your PATH.
- Install via **asdf** for version management:
```
asdf plugin add scarb
asdf install scarb 2.5.4
asdf global scarb 2.5.4
```
- Alternatively, install directly:
```
curl --proto '=https' --tlsv1.2 -sSf https://docs.swmansion.com/scarb/install.sh | sh
```
- Verify installation with `scarb --version`.

4. **Katana Node Installation**:
- Install using the Dojo engine installer:
```
curl -L https://install.dojoengine.org | bash
```
- Verify installation with `katana --version`.



Expand Down

0 comments on commit ba52354

Please sign in to comment.