| 
1 | 1 | = Tooling overview  | 
2 | 2 | 
 
  | 
3 |  | -To support its unique architecture, Starknet boasts its own suite of developer tools (also known as _devtools_) that aim to streamline the development process for Starknet developers. While sometimes developed in coordination with StarkWare, the majority of these tools are community-driven projects, showcasing the collaborative and innovative spirit of the Starknet ecosystem.  | 
 | 3 | +To support its unique architecture, Starknet boasts its own suite of developer tools that aim to streamline the development process for Starknet developers. While sometimes developed in coordination with StarkWare, the majority of these tools are community-driven projects, showcasing the collaborative and innovative spirit of the Starknet ecosystem.  | 
4 | 4 | 
 
  | 
5 |  | -Starknet's core tools include its build toolchain and package manager _Scarb_, smart contract development toolchain _Starknet Foundry_, local node implementation _Starknet Devnet_, and various software development kits (also known as _SDKs_). For ease of navigation, additional tools are categorized by context, including xref:coding-in-cairo.adoc[tools for coding in Cairo], xref:writing-smart-contracts.adoc[tools for writing smart contracts], xref:building-dapps.adoc[tools for building dApps], xref:interacting-with-starknet.adoc[tools for interacting with Starknet], xref:creating-ai-agents.adoc[tools for creating AI agents], and xref:running-devnets[tools for working locally].  | 
 | 5 | +Starknet's core tools include:  | 
 | 6 | + | 
 | 7 | +* https://docs.swmansion.com/scarb/[Scarb^], the build toolchain and package manager for Cairo and Starknet  | 
 | 8 | +* https://foundry-rs.github.io/starknet-foundry/[Starknet Foundry], the toolchain for developing Starknet smart contracts  | 
 | 9 | +* https://0xspaceshard.github.io/starknet-devnet/[Starknet Devnet^], a local testnet for Starknet  | 
 | 10 | +* The various Starknet software development kits:  | 
 | 11 | +https://starknetjs.com/[starknet.js^],  | 
 | 12 | +https://starknetpy.readthedocs.io/en/latest/[starknet.py^],  | 
 | 13 | +https://github.com/xJonathanLEI/starknet-rs?tab=readme-ov-file#starknet-rs[starknet-rs^],  | 
 | 14 | +https://pkg.go.dev/github.com/NethermindEth/starknet.go#section-readme[starknet.go^],  | 
 | 15 | +https://github.com/software-mansion/starknet-jvm?tab=readme-ov-file#-starknet-jvm-[starknet-jvm^],  | 
 | 16 | +https://github.com/software-mansion/starknet.swift?tab=readme-ov-file#starknetswift[starknet.swift^],  | 
 | 17 | +and https://starknetdart.dev/[starknet.dart^]  | 
 | 18 | +
  | 
 | 19 | +[TIP]  | 
 | 20 | +====  | 
 | 21 | +To keep up with the compatibility between Starknet's core tools and the different Starknet, Starknet RPC, and Cairo versions, see xref:resources:compatibility.adoc[].  | 
 | 22 | +====  | 
 | 23 | + | 
 | 24 | +For ease of navigation, additional tools are categorized by context:  | 
 | 25 | + | 
 | 26 | +[IMPORTANT]  | 
 | 27 | +====  | 
 | 28 | +The following list is dynamic and continuously updated. If a tool you are using is missing, please consider opening an issue or editing the page by yourself.  | 
 | 29 | +====  | 
 | 30 | + | 
 | 31 | +.Tools for coding in Cairo  | 
 | 32 | + | 
 | 33 | +* https://marketplace.visualstudio.com/items?itemName=starkware.cairo1[VS Code Cairo extension^] is an extension for the Microsoft Visual Studio (VS) Code IDE that provides assistance when writing Cairo smart contracts, including live diagnostic highlighting for compile errors, quick fixes with suggestions, code formatting and completion, and more.  | 
 | 34 | +
  | 
 | 35 | +* https://www.cairo-lang.org/cairovm/[Cairo Playground^] is an online tool that can be used to both experiment with Cairo without deploying a smart contract on Starknet, as well as dive deep into the Cairo virtual machine.  | 
 | 36 | +
  | 
 | 37 | +* https://github.com/FuzzingLabs/sierra-analyzer[Sierra Analyzer^] is a security toolkit for analyzing Sierra files, including decompiling a Sierra file, printing the contract's control flow graph, and running static analysis detectors.  | 
 | 38 | +
  | 
 | 39 | +* https://www.stark-utils.xyz/converter[Stark Utils^] is a simple web application that aims to be a toolbox for Cairo developers, allowing you to convert any input to a felt, string, hexadecimal value, and more.  | 
 | 40 | +
  | 
 | 41 | +* https://github.com/FuzzingLabs/thoth[Thoth^] is a Cairo security toolkit that includes analyzers, disassemblers, and decompilers, which enable the generation of call, control-flow, and data-flow graphs for Sierra and Casm files, as well as other advanced tools, such as a symbolic execution engine and a symbolic bounded model checker.  | 
 | 42 | +
  | 
 | 43 | +* https://github.com/software-mansion/universal-sierra-compiler[Universal Sierra Compiler^] is a utility tool for compiling single Sierra files (unlike Scarb, which compiles full projects) from any Sierra version into CASM.  | 
 | 44 | +
  | 
 | 45 | +* https://github.com/software-mansion/cairo-profiler[Cairo Profiler^] is a utility tool that can be used to create profiles of Cairo executions from execution traces, which can be analyzed and used to show flame graphs and other useful information.  | 
 | 46 | +
  | 
 | 47 | +* https://github.com/software-mansion/cairo-lint[Cairo Lint^] is a collection of lints that can either be used as either a library or as a standalone binary to help both detect and fix common mistakes and improve your Cairo code.  | 
6 | 48 | 
  | 
7 | 49 | [NOTE]  | 
8 | 50 | ====  | 
9 |  | -The list of tools in this section is dynamic and continuously updated. If a tool you are using is missing, please consider opening an issue or editing the page by yourself.  | 
 | 51 | +Universal Sierra Compiler and Cairo Profiler comes bundled with Starknet Foundry and does not need to be installed separately if Starknet Foundry is installed.  | 
 | 52 | +
  | 
 | 53 | +Cairo Lint comes bundled with Scarb and does not need to be installed separately if Scarb is installed.  | 
10 | 54 | ====  | 
 | 55 | + | 
 | 56 | +.Tools for writing smart contracts  | 
 | 57 | + | 
 | 58 | +* https://github.com/NethermindEth/starknet-remix-plugin[Starknet Remix plugin^] lets you use https://remix-project.org[Remix^] — a browser-based IDE that enables learning, experimenting and finding vulnerabilities in smart contracts without installing anything — for testing Starknet smart contracts, so you can focus on learning Cairo and Starknet in the comfort of your browser.  | 
 | 59 | +
  | 
 | 60 | +* https://wizard.openzeppelin.com/cairo[Open Zeppelin Contract Wizard^] is a tool that helps you create smart contracts with Open Zeppelin libraries by easily toggling on and off features for popular smart contract patterns.  | 
 | 61 | +
  | 
 | 62 | +.Tools for interacting with Starknet  | 
 | 63 | + | 
 | 64 | +* https://scaffoldstark.com/[Scaffold Stark^] is designed to make it easier for developers to create, deploy and interact with smart contracts.  | 
 | 65 | +
  | 
 | 66 | +* https://www.starknetscaffold.xyz/[Starknet Scaffold^] is an open-source toolkit for building decentralized applications on Starknet, that help you move from prototyping to production-grade apps seamlessly.  | 
 | 67 | +
  | 
 | 68 | +* https://github.com/apibara/starknet-react[Starknet React^] is a wagmi-inspired collection of React hooks for Starknet.  | 
 | 69 | +
  | 
 | 70 | +* https://github.com/starknet-io/get-starknet[Get Starknet^] is a Starknet wallet<>dApp connection bridge, that enables easy discovery and UI for Starknet wallets, including Ready, Braavos, Metamask Snaps, and OKX.  | 
 | 71 | +
  | 
 | 72 | +* https://www.starknetkit.com/[Starknetkit] is a Starknet wallet connection kit, built by Ready using Starknet.js and starknet-react.  | 
 | 73 | +
  | 
 | 74 | +* https://docs.ready.xyz/tools/invisible-sdk[Invisible SDK^] enables users to interact with dApps using just their email address, eliminating the need for seed phrases or private keys.  | 
 | 75 | +
  | 
 | 76 | +* https://www.dojoengine.org/[Dojo^] is a developer friendly framework for building provable Games, Autonomous Worlds and other Applications that are natively composable, extensible, permissionless and persistent.  | 
 | 77 | +
  | 
 | 78 | +* https://www.starkweb.xyz/[Starkweb^] is TypeScript toolkit for Starknet development focused on developer experience, performance, comprehensive feature support, and stability, enabling developers to concentrate on building high-quality applications without the usual friction.  | 
 | 79 | +
  | 
 | 80 | +* https://sdk.chipipay.com/introduction[Chipi SDK^] is an open-source developer toolkit that enables Starknet applications to create non-custodial wallets using any social login (Google, Apple, Telegram, etc.), sponsor transactions via integration with AVNU's Paymaster, and build with their favourite auth provider with no black boxes.  | 
 | 81 | +
  | 
 | 82 | +.Tools for using AI  | 
 | 83 | + | 
 | 84 | +* https://www.starkagent.ai/[Snak^] is a toolkit for creating AI agents that can interact with the Starknet blockchain, supporting multiple AI providers (including Anthropic, OpenAI, Google Gemini, and Ollama), and available both as an NPM package and a ready-to-use NestJS server with a web interface.  | 
 | 85 | +
  | 
 | 86 | +* https://www.npmjs.com/package/@elizaos/plugin-starknet[Eliza Starknet plugin^] bridges Starknet blockchain capabilities with the https://github.com/elizaOS/eliza/tree/main[Eliza^] ecosystem, enabling both automated and user-directed interactions with the Starknet blockchain, including token operations, trading, portfolio management, and DeFi integrations.  | 
 | 87 | +
  | 
 | 88 | +* https://docs.dreams.fun/[Daydreams^] is a generative agent framework for executing tasks across any blockchain or API, enabling AI agents to go beyond simple tasks and achieve complex and long-term objectives such as onchain gaming and DeFi strategies.  | 
 | 89 | +
  | 
 | 90 | +.Tools for working locally  | 
 | 91 | + | 
 | 92 | +* https://github.com/0xSpaceShard/starknet-devnet-js[Starknet Devnet JS^] is a JavaScript package that abstracts the Starknet Devnet API, making it easier to interact with it and write end-to-end tests for L1<>L2 communications.  | 
 | 93 | +
  | 
 | 94 | +* https://book.dojoengine.org/toolchain/katana[Katana^] is an extremely fast devnet designed to support local development with the https://github.com/dojoengine/dojo[Dojo Starknet gaming engine^] but can be used as a general purpose devnet as well.  | 
0 commit comments