Scaffold-Stark / scaffold-stark-2

Open source forkable Starknet dev stack
https://www.scaffoldstark.com/
81 stars 64 forks source link
starknet

๐Ÿ— Scaffold-Stark

Documentation | Website | Demo

๐Ÿงช An open-source, up-to-date toolkit for building decentralized applications (dapps) on Starknet blockchain. It's designed to make it easier for developers to create and deploy smart contracts and build user interfaces that interact with those contracts.

โš™๏ธ Built using NextJS, Starknet.js, Scarb, Starknet-React, Starknet Foundry and Typescript.

Debug Contracts tab

Requirements

Before you begin, you need to install the following tools:

Starknet-devnet version

To ensure the proper functioning of scaffold-stark, your local starknet-devnet version must be 0.0.4. To accomplish this, first check your local starknet-devnet version:

starknet-devnet --version

If your local starknet-devnet version is not 0.0.4, you need to install it.

cargo install starknet-devnet --version 0.0.4

Scarb version

To ensure the proper functioning of scaffold-stark, your local Scarb version must be 2.6.5. To accomplish this, first check your local Scarb version:

scarb --version

If your local Scarb version is not 2.6.5, you need to install it.

Starknet Foundry version

To ensure the proper functioning of the tests on scaffold-stark, your Starknet Foundry version must be 0.27.0. To accomplish this, first check your Starknet Foundry version:

snforge --version

If your Starknet Foundry version is not 0.27.0, you need to install it.

Compatible versions

Quickstart with Starknet-Devnet

To get started with Scaffold-Stark, follow the steps below:

  1. Clone this repo and install dependencies
git clone https://github.com/Scaffold-Stark/scaffold-stark-2.git
cd scaffold-stark-2
yarn install
  1. Run a local network in the first terminal.
yarn chain

This command starts a local Starknet network using Devnet. The network runs on your local machine and can be used for testing and development. You can customize the network configuration in scaffold.config.ts for your nextjs app.

  1. On a second terminal, deploy the sample contract:
yarn deploy

This command deploys a sample smart contract to the local network. The contract is located in packages/snfoundry/contracts/src and can be modified to suit your needs. The yarn deploy command uses the deploy script located in packages/snfoundry/scripts-ts/deploy.ts to deploy the contract to the network. You can also customize the deploy script.

By default Scaffold-Stark takes the first prefunded account from starknet-devnet as a deployer address,

  1. On a third terminal, start your NextJS app:
yarn start

Visit your app on: http://localhost:3000. You can interact with your smart contract using the Debug Contracts page. You can tweak the app config in packages/nextjs/scaffold.config.ts.

Quickstart with Sepolia Testnet

1. Make sure you alredy cloned this repo and installed dependencies. 2. Prepare your environment variables. Find the `packages/snfoundry/.env` file and fill the env variables related to Sepolia testnet with your own wallet account contract address and private key. 3. Change your default network to Sepolia testnet. Find the `packages/nextjs/scaffold.config.ts` file and change the `targetNetworks` to `[chains.sepolia]`. ![chall-0-scaffold-config](./packages/nextjs/public/scaffold-config.png) 4. Get some testnet tokens You will need to get some `ETH` or `STRK` Sepolia tokens to deploy your contract to Sepolia testnet. > Some popular faucets are [Starknet Faucet](https://starknet-faucet.vercel.app/) and [Blastapi Starknet Sepolia Eth](https://blastapi.io/faucets/starknet-sepolia-eth) 4. Open a terminal, deploy the sample contract to Sepolia testnet: ```bash yarn deploy --network sepolia ``` 5. On a second terminal, start your NextJS app: ```bash yarn start ``` Visit your app on: `http://localhost:3000`. You can interact with your smart contract using the `Debug Contracts` page. You can tweak the app config in `packages/nextjs/scaffold.config.ts`. ### RPC specific version To ensure the proper functioning of the scaffold-stark with Testnet or Mainnet, your RPC version must be `0.7.0`. This repository contains a .env.example file, where we provided the default RPC URL for the Starknet Testnet: `RPC_URL_SEPOLIA=https://starknet-sepolia.public.blastapi.io/rpc/v0_7`. Let's verify this RPC version is `0.7.0` by running the following command: ```sh curl --location 'https://starknet-sepolia.public.blastapi.io/rpc/v0_7' \ --data '{ "jsonrpc":"2.0", "method":"starknet_specVersion", "id":1 }' ```

What's next

Documentation

Visit our docs to learn how to start building with Scaffold-Stark.

To know more about its features, check out our website

Contributing to Scaffold-Stark

We welcome contributions to Scaffold-Stark!

Please see CONTRIBUTING.MD for more information and guidelines for contributing to Scaffold-Stark.