Wake: A Python Framework for Secure Solidity Development and Fuzz Testing
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
Wake is a robust Python-based framework designed for secure Solidity development and comprehensive fuzz testing. It provides built-in vulnerability detectors, helping developers build more secure Ethereum dApps. With features like a VS Code extension and CI/CD integration, Wake streamlines the smart contract development workflow.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
Wake is a powerful Python-based framework for Solidity development and fuzz testing, created by Ackee Blockchain Security. Trusted auditors of major projects like Lido, Safe, and Axelar, Ackee Blockchain built Wake to help developers write safer smart contracts faster. It offers a comprehensive suite of tools for testing, analysis, and deployment of Ethereum dApps.
Installation
To get started with Wake, ensure you have Python 3.8 or higher installed. For Apple Silicon Macs, Rosetta must be enabled.
Install Wake via pip:
pip3 install eth-wake
Examples
Wake offers powerful features for testing and development.
Fuzzer Example
Wake's fuzzer is built on its testing framework, enabling efficient fuzz testing of Solidity smart contracts. Here's an example of a fuzz test for a simple counter contract:
from wake.testing import *
from wake.testing.fuzzing import *
from pytypes.contracts.Counter import Counter
class CounterTest(FuzzTest):
def pre_sequence(self) -> None:
self.counter = Counter.deploy()
self.count = 0
@flow()
def increment(self) -> None:
self.counter.increment()
self.count += 1
@flow()
def decrement(self) -> None:
with may_revert(PanicCodeEnum.UNDERFLOW_OVERFLOW) as e:
self.counter.decrement()
if e.value is not None:
assert self.count == 0
else:
self.count -= 1
@invariant(period=10)
def count(self) -> None:
assert self.counter.count() == self.count
@chain.connect()
def test_counter():
CounterTest().run(sequences_count=30, flows_count=100)
Detectors and Printers
Wake includes built-in vulnerability and code quality detectors. You can run all detectors with:
wake detect all
To run a specific detector, use:
wake detect <detector-name>
Printers can extract useful information from Solidity code:
wake print <printer-name>
For custom detectors and printers, refer to the getting started guide.
LSP Server
Wake implements a Language Server Protocol (LSP) server for Solidity, providing features like autocompletion and hints in your IDE. Run it with:
wake lsp
You can also specify a port (default is 65432):
wake lsp --port 1234
Why Use Wake
Wake stands out as a comprehensive framework for Solidity development due to its unique combination of features:
- Built-in Fuzzing: Automatically generates diverse inputs and edge cases to uncover hidden vulnerabilities, including manually-guided and property-based fuzzing.
- Vulnerability Detectors: Catches common issues like reentrancy, overflows, and logic flaws early in the development cycle.
- Seamless Developer Experience: Offers a VS Code extension, GitHub Actions for CI/CD integration, and a
solcmanager for consistent builds. - Cross-chain Testing: Compatible with popular environments such as Anvil, Hardhat, and Ganache.
- Pytest Integration: Leverages the familiar
pytestframework for writing clean and simple tests. - Static Analysis Framework: Provides a robust framework for custom detectors and printers, allowing for project-specific rules and insights.
- Language Server Protocol (LSP): Delivers autocompletion, hints, and references directly within your IDE, enhancing productivity.
Wake's ability to combine advanced fuzzing, static analysis with detectors, and a full-featured LSP server in a Python environment makes it a powerful tool for ensuring the security and quality of smart contracts.
Links
For more detailed information, contributions, and community engagement, explore the following resources:
Related repositories
Similar repositories that may be relevant next.

nanobot: An Ultra-Lightweight, Self-Hosted Personal AI Agent Framework
August 9, 2026
nanobot is an ultra-lightweight, open-source, self-hosted personal AI agent framework built in Python. It offers a WebUI, tools, memory, multi-agent workflows, and automation capabilities, making it a versatile solution for personal AI tasks. Users can deploy it across various platforms, including chat apps, for seamless integration.

ReMe: An Advanced Memory Management Kit for AI Agents
August 7, 2026
ReMe is an innovative, local-first memory layer designed for AI agents, transforming conversations and resources into file-based long-term memory. It continuously indexes, links, and consolidates this information, enabling advanced recall and supporting the development of self-evolving agents. This kit helps agents remember and refine their experiences effectively.

code-review-graph: AI-Powered Code Intelligence for Smarter Reviews
August 6, 2026
code-review-graph is a local-first code intelligence graph that optimizes AI coding tools by building a persistent map of your codebase. It significantly reduces context for AI reviews and large-repo workflows, ensuring AI assistants read only the most relevant code. This leads to more efficient and cost-effective code analysis.

Nikola: A Powerful Static Website and Blog Generator
August 6, 2026
Nikola is an open-source static website and blog generator written in Python. It transforms content into a deployable website, offering a secure and resource-efficient alternative to dynamic sites. With features like theming, fast builds, and multilingual support, Nikola is a versatile tool for web development.
Source repository
Open the original repository on GitHub.
13 counted GitHub visits