Julio

Results 28 issues of Julio

### Description The Stone Prover is a tool for generating STARK proofs of Cairo programs. The Integrity Verifier enables the on-chain verification of proofs generated by the Stone Prover. In...

### Description In this feature, we will implement a simple ERC721 Non-Fungible Token (NFT) contract. This will allow the creation, transfer, and management of NFTs. Users will be able to...

good first issue

### Description In this example, we will implement a contract that allows for ERC20 token streaming. This means that a specific amount of tokens can be distributed gradually over a...

### Description Account Abstraction replace Externally Owned Accounts (EOA). Accounts are implemented as smart contract called smart wallet. Account Abstraction allows for validation abstraction, which means that it is possible...

### Description In Starknet, it is possible to interact with Ethereum by using the L1 L2 messaging system. In this example, we want to demonstrate the usage of this messaging...

Adds more explanations for the [Constant Product AMM](https://starknet-by-example.voyager.online/applications/constant-product-amm.html) example. Details to be Explained: - approve() the router to spend tokens from the user - How the swap function works: based...

### Problem Main `scarb.toml`: ``` [workspace.dependencies] cairo_test = "2.8.2" ``` Workspace's member `scarb.toml`: ``` [dev-dependencies] cairo_test.workspace = true ``` Result in: ``` warn: `cairo_test` plugin not found please add the...

bug