Skip to main content

Woke is a Python-based development and testing framework for Solidity.

Project description

Woke

Woke is a Python-based development and testing framework for Solidity.

Features:

  • Testing framework - a testing framework for Solidity smart contracts with Python-native equivalents of Solidity types and blazing fast execution.

  • Fuzzer - a property-based fuzzer for Solidity smart contracts that allows testers to write their fuzz tests in Python.

  • Vulnerability detectors

  • LSP server

Dependencies

  • Python (version 3.7 or higher)

:warning: Python 3.11 is not supported yet.

Installation

via pip

pip3 install woke

Documentation & Contribution

Woke documentation can be found here.

There you can also find a section on contributing.

Features

Testing framework

See examples and documentation for more information.

Writing tests is as simple as:

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

@default_chain.connect()
def test_counter():
    default_chain.default_tx_account = default_chain.accounts[0]

    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 woke.testing import *
from woke.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(Panic(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

@default_chain.connect()
def test_counter():
    default_chain.default_tx_account = default_chain.accounts[0]
    CounterTest().run(sequences_count=30, flows_count=100)

Vulnerability detectors

Vulnerability detectors can be run using:

woke detect

LSP server

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

Woke LSP server can be run using:

woke lsp

Or with an optional --port argument:

woke lsp --port 1234

All LSP server features can be found in the documentation.

License

This project is licensed under the ISC license.

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

woke-2.1.0.tar.gz (251.8 kB view details)

Uploaded Source

Built Distribution

woke-2.1.0-py3-none-any.whl (356.5 kB view details)

Uploaded Python 3

File details

Details for the file woke-2.1.0.tar.gz.

File metadata

  • Download URL: woke-2.1.0.tar.gz
  • Upload date:
  • Size: 251.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.2 CPython/3.7.12 Linux/6.1.12-1-MANJARO

File hashes

Hashes for woke-2.1.0.tar.gz
Algorithm Hash digest
SHA256 bb2002954bdb98982afe6b49280184421ccd5a45153494f5aea3c2e5f69e1804
MD5 ca734f4c8bd0dd4e17b98d54550acb85
BLAKE2b-256 b2559941f44d27846f30e23aeba59fecb7aa68f127949ef94f5e8a11a27e4460

See more details on using hashes here.

File details

Details for the file woke-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: woke-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 356.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.2 CPython/3.7.12 Linux/6.1.12-1-MANJARO

File hashes

Hashes for woke-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b89d22acd1d2891997813139be81fc72cb5e0a87dfcec0914fbfd1c3b4f197b2
MD5 4123cd1d15bcfecea03d5081dfe93629
BLAKE2b-256 9368d0a5d4ecbafe4c2a3b201bfb9defac28f83eac16f1d69113d8ba0470359f

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