https://github.com/jitendragangwar123/learn-cairo-with-examples
This repository have the cairo language concepts from zero to advance.
https://github.com/jitendragangwar123/learn-cairo-with-examples
cairo layer2 starknet zk-rollup
Last synced: about 2 months ago
JSON representation
This repository have the cairo language concepts from zero to advance.
- Host: GitHub
- URL: https://github.com/jitendragangwar123/learn-cairo-with-examples
- Owner: jitendragangwar123
- Created: 2024-06-25T03:35:59.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-09-28T18:30:16.000Z (7 months ago)
- Last Synced: 2025-01-14T05:42:42.546Z (3 months ago)
- Topics: cairo, layer2, starknet, zk-rollup
- Language: Cairo
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Learn-Cairo-With-Examples
This repository have the cairo language concepts from zero to advance.### Installation
```shell
$ curl --proto '=https' --tlsv1.2 -sSf https://docs.swmansion.com/scarb/install.sh | sh
```
### Check Version
```shell
$ scarb --version
scarb 2.6.3 (e6f921dfd 2024-03-13)
cairo: 2.6.3 (https://crates.io/crates/cairo-lang-compiler/2.6.3)
sierra: 1.5.0
```
### To Create new Project
```shell
$ mkdir ~/cairo_examples
$ cd ~/cairo_examples
$ scarb new my_first_project
```
### Folder Structure
```shell
├── Scarb.toml
├── src
│ ├── lib.cairo
│ └── my_first_project.cairo
```
### To Build the project
```shell
$ scarb build
$ scarb cairo-run
```