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.
- ✅ Contract Fast Reload: Your frontend auto-adapts to your smart contracts as you deploy them.
- 🪝 Custom hooks: Collection of React hooks wrapper around starknet-react to simplify interactions with smart contracts with typescript autocompletion.
- 🧱 Components: Collection of common web3 components to quickly build your frontend.
- 🔥 Burner Wallet & Prefunded Account: Quickly test your application with a burner wallet and prefunded accounts.
- 🔐 Integration with Wallet Providers: Connect to different wallet providers and interact with Starknet network.
Before you begin, you need to install the following tools:
- Node (>= v22)
- Yarn (v1 or v2+)
- Git
You can install the developer tools natively or use Dev Containers.
Tool for installing all the Starknet essentials for development. Starkup will install the latest stable versions of:
- Scarb - Cairo package manager and build toolchain
- Starknet Foundry - Development toolchain for testing on Starknet
- asdf - Version manager to easily switch between tool versions
- Cairo 1.0 extension for VSCode - Syntax highlighting and language support
- Starknet Devnet - Starknet Devnet
To install starkup, run the following command:
curl --proto '=https' --tlsv1.2 -sSf https://sh.starkup.sh | shOpen a terminal and run the following command:
npx create-stark@latest
cd my-dapp-example
yarn installNow you have a new project with the basic structure.
- If you run into version errors after using
starkuporasdf, you can try to install the dependencies manually. Check the details below.
Using ASDF, you can install the required dependencies of Scaffold Stark 2 in a single command. You can do so by doing
asdf installYou can refer to the guide of manual installation of asdf here.
To ensure the proper functioning of scaffold-stark, your Scarb version must match the version specified in Compatible versions. To accomplish this, first check Scarb version:
scarb --versionIf your Scarb version is not the version specified in Compatible versions, you need to install it. If you already have installed Scarb via starkup, you can setup this specific version with the following command:
asdf install scarb <version> && asdf set scarb <version>Replace <version> with the exact version from Compatible versions. Otherwise, you can install Scarb following the instructions.
To ensure the proper functioning of the tests on scaffold-stark, your Starknet Foundry version must match the version specified in Compatible versions. To accomplish this, first check your Starknet Foundry version:
snforge --versionIf your Starknet Foundry version is not the version specified in Compatible versions, you need to install it. If you already have installed Starknet Foundry via starkup, you can setup this specific version with the following command:
asdf install starknet-foundry <version> && asdf set starknet-foundry <version>Replace <version> with the exact version from Compatible versions. Otherwise, you can install Starknet Foundry following the instructions.
To ensure the proper functioning of scaffold-stark, your starknet-devnet version must match the version specified in Compatible versions. To accomplish this, first check your starknet-devnet version:
starknet-devnet --versionIf your starknet-devnet version is not the version specified in Compatible versions, you need to install it.
- Install starknet-devnet via
asdf(instructions). Use the exact version from Compatible versions.
As an alternative to installing the tools locally (Scarb, Starknet Foundry, Starknet Devnet), you can use Docker, this is the recommended option for Windows users. Here's what you need to do:
- Install Docker Desktop
- Install Dev Containers
- Create a new project folder.
npx create-stark@latestcd my-dapp-example
- Check your project folder contains a
devcontainer.jsonfile. This file is used to set up the environment:
- The configuration uses the
starknetfoundation/starknet-dev:<Scarb version>image with the Scarb version specified in Compatible versions. - This includes all required tools pre-installed, such as Scarb, Starknet Foundry, Starknet Devnet and other dependencies.
To start using the Docker-based setup:
- Open the project in Visual Studio Code.
- Select "Reopen in Container".
- If you need to rebuild the container, open the Command Palette (View -> Command Palette) and choose:
- Dev Containers: Rebuild and Reopen in Container
Once inside the container, you can start working with all the tools and dependencies pre-configured.
Now you are ready!!!
- Starknet-devnet - 0.6.1
- Scarb - v2.12.2
- Snforge - v0.51.1
- Cairo - v2.12.2
- Rpc - v0.9.x
To get started with Scaffold-Stark, follow the steps below:
- Install the latest version of Scaffold-Stark
npx create-stark@latest
cd my-dapp-example
yarn install- Run a local network in the first terminal.
yarn chainTo run a fork :
yarn chain --fork-network <URL> [--fork-block <BLOCK_NUMBER>]
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.
- On a second terminal, deploy the sample contract:
yarn deployThis 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,
- On a third terminal, start your NextJS app:
yarn startVisit your app on: http://localhost:3000. You can interact with your smart contract using the Debug Contracts page.
- Check your environment variables. We have a
yarn postinstallscript that will create.envfiles based on the.env.examplefiles provided. If the environment variables don't exist, you can manually create a.envfile from the.env.exampleto get the app running!
⚠️ IMPORTANT: Never commit your private keys or sensitive environment variables to version control. The.envfiles are included in.gitignoreby default, but always double-check before pushing your changes.
-
Make sure you already cloned this repo and installed dependencies.
-
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. Find the packages/nextjs/.env file and fill the env variable related to Sepolia testnet rpc url.
- Change your default network to Sepolia testnet.
Find the packages/nextjs/scaffold.config.ts file and change the targetNetworks to [chains.sepolia].
- Get some testnet tokens.
You will need to get some STRK Sepolia tokens to deploy your contract to Sepolia testnet.
Some popular faucets are Starknet Faucet and Blastapi Starknet Sepolia STRK
- Open a terminal, deploy the sample contract to Sepolia testnet:
yarn deploy --network sepolia- On a second terminal, start your NextJS app:
yarn startVisit your app on: http://localhost:3000. You can interact with your smart contract using the Debug Contracts page.
To ensure the proper functioning of the scaffold-stark with Testnet or Mainnet, your RPC version must match the version specified in Compatible versions. This repository contains .env.example files with the default RPC URLs. Check the RPC URLs in packages/nextjs/.env.example and packages/snfoundry/.env.example for the current endpoints. Let's verify this RPC version by calling a POST request in an API platform like Postman or Insommia. Use the RPC URL from the .env.example files and the body should be:
{
"jsonrpc": "2.0",
"method": "starknet_specVersion",
"id": 1
}You have to paste the endpoint and body in the API platform and click on the Send button. If the response matches the RPC version in Compatible versions, then you are good to go. Otherwise, you have to get the correct RPC URL endpoint from the .env.example files.
By default, majority of the Network settings are centralized in scaffold.config.ts, the exception being the RPC urls which are configured from your environment variables. In the absence of the proper settings, the framework will choose a random provider for you.
In the env file also, the lines configuring the networks (devnet, sepolia or mainnet) need to be uncommented, depending on what
network you want activated for you.
How to Change Networks:
- Update the
targetNetworksarray inscaffold.config.ts(first network is the primary target)
Set these in your .env file:
NEXT_PUBLIC_DEVNET_PROVIDER_URLNEXT_PUBLIC_SEPOLIA_PROVIDER_URLNEXT_PUBLIC_MAINNET_PROVIDER_URL
Configuration uses these variables with fallbacks:
"devnet": process.env.NEXT_PUBLIC_DEVNET_PROVIDER_URL || "defaultRpcValue",
"sepolia": process.env.NEXT_PUBLIC_SEPOLIA_PROVIDER_URL || "defaultRpcValue",
"mainnet": process.env.NEXT_PUBLIC_MAINNET_PROVIDER_URL || "defaultRpcValue"yarn COMMAND
npm run COMMANDThis repo prefer yarn as package manager.
Commands:
| Command | Description |
|---|---|
| format:check | (Read only) Batch checks for format inconsistencies for the nextjs and snfoundry codebase |
| next:check-types | Compile typscript project |
| next:lint | Runs next lint |
| prepare | Install husky's git hooks |
| usage | Show this text |
| Command | Description |
|---|---|
| compile | Compiles contracts. |
| test | Runs snfoundry tests |
| chain | Starts the local blockchain network. |
| deploy | Deploys contract to the configured network discarding previous deployments. |
| deploy:no-reset | Deploys contract to the configured network without discarding previous deployments. |
| verify | Verify Smart Contracts with Walnut |
| Command | Description |
|---|---|
| start | Starts the frontend server |
| test:nextjs | Runs the nextjs tests |
| vercel | Deploys app to vercel |
| vercel:yolo | Force deploy app to vercel (ignoring errors) |
- Edit your smart contract
your_contract.cairoinpackages/snfoundry/contracts/src - Edit your frontend homepage at
packages/nextjs/app/page.tsx. For guidance on routing and configuring pages/layouts checkout the Next.js documentation. - Edit your deployment scripts in
packages/snfoundry/script-ts/deploy.ts - Edit your smart contract tests in
packages/snfoundry/contracts/src/test. To run tests useyarn test - You can write unit tests for your Next.js app! Run them with one the following scripts below.
yarn test:nextjsto run regular tests with watch modeyarn test:nextjs runto run regular tests without watch modeyarn test:nextjs run --coverageto run regular tests without watch mode with coverage
Visit our docs to learn how to start building with Scaffold-Stark.
To know more about its features, check out our website
We welcome contributions to Scaffold-Stark!
Please see CONTRIBUTING.MD for more information and guidelines for contributing to Scaffold-Stark.


