Skip to main content

Wake is a Python-based Solidity development and testing framework with built-in vulnerability detectors.

Project description

Wake, a Python-based Solidity development and testing framework with built-in vulnerability detectors

Wake cover

Features:

  • testing framework based on pytest
  • property-based fuzzer
  • deployments & mainnet interactions
  • vulnerability and code quality detectors
  • printers for extracting useful information from Solidity code
  • static analysis framework for implementing custom detectors and printers
  • Github actions for setting up Wake and running detectors
  • language server (LSP)
  • VS Code extension (Tools for Solidity)
  • solc version manager

Dependencies

  • Python (version 3.8 or higher)
  • Rosetta must be enabled on Apple Silicon Macs

⚠️ Python 3.12 is experimentally supported.

Installation

via pip

pip3 install eth-wake

Documentation & Contribution

Wake documentation can be found here.

There you can also find a section on contributing.

Discovered vulnerabilities

Vulnerability Severity Project Method Discovered by Resources
Profit & loss accounted twice Critical IPOR Fuzz test Ackee Blockchain Report, Wake tests
Console permanent denial of service High Brahma Fuzz test Ackee Blockchain Report
Swap unwinding formula error High IPOR Fuzz test Ackee Blockchain Report, Wake tests
Swap unwinding fee accounted twice High IPOR Fuzz test Ackee Blockchain Report, Wake tests
Incorrect event data High Solady Integration test Ackee Blockchain Report, Wake tests
INTEREST_FROM_STRATEGY_BELOW_ZERO reverts DoS Medium IPOR Fuzz test Ackee Blockchain Report, Wake tests
Inaccurate hypothetical interest formula Medium IPOR Fuzz test Ackee Blockchain Report, Wake tests
Swap unwinding fee normalization error Medium IPOR Fuzz test Ackee Blockchain Report, Wake tests
Liquidation deposits accounted into LP balance Medium IPOR Fuzz test Ackee Blockchain Report, Wake tests
Missing receive function Medium Axelar Fuzz test Ackee Blockchain Wake tests
SafeERC20 not used for approve Medium Lido Fuzz test Ackee Blockchain Wake tests
Non-optimistic vetting & unbonded keys bad accounting Medium Lido Fuzz test Ackee Blockchain Report, Wake tests

Features

Testing framework

See examples and documentation for more information.

Writing tests is as simple as:

from wake.testing import *
from pytypes.contracts.Counter import Counter

@chain.connect()
def test_counter():
    counter = Counter.deploy()
    assert counter.count() == 0

    counter.increment()
    assert counter.count() == 1

Fuzzer

Fuzzer builds on top of the testing framework and allows efficient fuzz testing of Solidity smart contracts.

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

All vulnerability & code quality detectors can be run using:

wake detect all

A specific detector can be run using:

wake detect <detector-name>

See the documentation for a list of all detectors.

Printers

A specific printer can be run using:

wake print <printer-name>

See the documentation for a list of all printers.

Custom detectors & printers

Refer to the getting started guide for more information. Also check out wake_detectors and wake_printers for the implementation of built-in detectors and printers.

LSP server

Wake implements an LSP server for Solidity. The only currently supported communication channel is TCP.

Wake LSP server can be run using:

wake lsp

Or with an optional --port argument (default 65432):

wake lsp --port 1234

All LSP server features can be found in the documentation.

License

This project is licensed under the ISC license.

Partners

RockawayX Coinbase

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

eth_wake-4.13.1.tar.gz (428.7 kB view details)

Uploaded Source

Built Distribution

eth_wake-4.13.1-py3-none-any.whl (589.7 kB view details)

Uploaded Python 3

File details

Details for the file eth_wake-4.13.1.tar.gz.

File metadata

  • Download URL: eth_wake-4.13.1.tar.gz
  • Upload date:
  • Size: 428.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.11.10 Linux/6.5.0-1025-azure

File hashes

Hashes for eth_wake-4.13.1.tar.gz
Algorithm Hash digest
SHA256 d5ce387e07e855903bdd5377f9868b0a8d6aacaa1c8dbfbe666ef53aeab8b9b7
MD5 ba0c9f90bf56b76a7e071bfdafc2351a
BLAKE2b-256 f1199b68bc8b5036a54a4c047b1f8aa096a07395d28804fa7ca46cdbd825597a

See more details on using hashes here.

File details

Details for the file eth_wake-4.13.1-py3-none-any.whl.

File metadata

  • Download URL: eth_wake-4.13.1-py3-none-any.whl
  • Upload date:
  • Size: 589.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.11.10 Linux/6.5.0-1025-azure

File hashes

Hashes for eth_wake-4.13.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6cd40040b5c9d1fe22a6d164e3224ec719d05691c63629543b274c1e26d9df37
MD5 e4ecb116f5c1c126153f43276d48085d
BLAKE2b-256 d553fcac2549e6b51b07e73cdf04987acc4a3db9bde37966db9746b4e3d5a33a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page