Write smart contracts for Neo3 in Python
Made by COZ.IO
Note: The latest release (v0.14.0) has breaking changes with contracts written using previous versions. Please refer to our migration guide to update your smart contracts.
Neo3-Boa is a tool for creating Neo Smart Contracts using Python. It compiles .py
files to .nef
and .manifest.json
formats for usage in the Neo Virtual Machine which is used to execute contracts on the Neo Blockchain.
Neo3-Boa is part of the Neo Python Framework, aimed to allow the full development of dApps using Python alone.
Installation requires Python 3.10 or later.
On Linux / Mac OS:
$ python3 -m venv venv
$ source venv/bin/activate
On Windows:
$ python3 -m venv venv
$ venv\Scripts\activate.bat
$ pip install neo3-boa
If Neo3-Boa is not available via pip, you can run it from source.
$ git clone https://github.com/CityOfZion/neo3-boa.git
$ pip install wheel
$ pip install -e .
Check out our getting started documentation to learn how to use the compiler. Also check our examples below for reference.
For an extensive collection of examples:
Checkout our contributing file to see how you can contribute with our project.