Skip to main content

Python NEAR contract build/deploy tool

Project description

Minimal build/deploy tool for Python NEAR smart contracts

This is a build/deploy tool for Python NEAR smart contracts for https://github.com/near/devtools/issues/2

Python source files are compiled into the WASM binary via MicroPython and Emscripten and then deployed via near-cli-rs tool.

near-py-tool CLI is modelled after cargo-near

Dependencies

near-py-tool expects the following dependencies installed:

  • Python>=3.9
  • essential build tools like make and C compiler
  • Emscripten for compiling Python into WASM via MicroPython (can be installed automatically by near-py-tool, if desired). Version 4.0.0 or above is recommended as there are issues with building some of the contracts on 3.x. Automatic installation via emsdk is offered if emcc is absent from PATH
  • near-cli-rs for deployment and other NEAR Protocol interactions

Getting started

  • install near-py-tool via pip install near-py-tool
  • run near-py-tool new test-project to create a minimal Python smart contract project
  • cd ./test-project
  • run near-py-tool build to produce a standalone WASM file
  • run near-py-tool create-dev-account to create a testnet account if you don't have one already
  • run near-py-tool deploy to deploy the smart contract to testnet or mainnet

Examples

Please see the test suite for various low-level NEAR API usage examples:

External examples:

Platform support

Currenly Linux, MacOS and Windows (native/MSYS2/WSL) platforms are supported. Native Windows support is implemented via an automatically installed MSYS2 local copy which is utilized for MicroPython/WASM contract builds

Python library support / compatibility

Most of the MicroPython standard library is included and should be functional where applicable to WASM runtime environment.

External Python package are supported as long as they don't require native compiled code to work. near-py-tool will download any packages referenced via pyproject.toml and will try to compile them into the WASM binary alongside the main contract.py file.

Unneeded modules from the MicroPython stdlib can be excluded from the build by adding the following section to pyproject.toml: [tool.near-py-tool] exclude-micropython-stdlib-packages = [...]

Please be aware that there is no full compatibility to CPython yet since we use MicroPython as a runtime

MessagePack serialization

near-py-tool provides an built-in msgpack module, which provides fast and space-efficient MessagePack serialization of arbitrary Python data, including aritrary-precision integers (implemented in C via cmp library)

Basic interface is equivalent to the Python msgpack module:

def packb(o: object) -> bytes
def unpackb(b: bytes) -> object

Arbitrary-precision integers are stored as a MessagePack extension type 81; this is not portable outside of the WASM contract runtime environment, but useful for saving large number like account balances within the contract persisten state

NEAR WASM ABI support

Everything from https://github.com/near/near-sdk-rs/blob/master/near-sys/src/lib.rs should be available via near module, for example:

  • near.input() retrieves contract input as bytes
  • near.value_return(value) returns a value (str or bytes) from the contract
  • near.log_utf8(message) logs a message (str)

Contract methods to be exported from the WASM binary should be decorated with @near.export

See the NEAR-ABI.md for a complete list of available methods and their type signatures.

Benchmarks

Here are some gas cost benchmark results which allow comparison to Rust and JS

Stats for similar Rust/JS contracts are available here

In general, gas costs for this Python implementation lie in between the Rust and JS values, which makes Python smart contracts practical for most use cases

Contributing

We are in the process of restructuring this into separate Python SDK / nearc compiler / test suite repositories as part of https://github.com/near/devtools/issues/3, so future contributions should be directed towards the new repositories as they take shape

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

near_py_tool-0.1.29.tar.gz (8.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

near_py_tool-0.1.29-py3-none-any.whl (11.8 MB view details)

Uploaded Python 3

File details

Details for the file near_py_tool-0.1.29.tar.gz.

File metadata

  • Download URL: near_py_tool-0.1.29.tar.gz
  • Upload date:
  • Size: 8.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.4

File hashes

Hashes for near_py_tool-0.1.29.tar.gz
Algorithm Hash digest
SHA256 6e7377c42b81f3f7d027a5d5690e12b900f3409e23ef8acb0b777279d14e4d99
MD5 7f0f6f6221beb02adc07e9d779e72182
BLAKE2b-256 610c0361c7f5ef0fd1e94783f430a1d5c64b24e3b1bc8d61d572ce5c7ced9bc0

See more details on using hashes here.

File details

Details for the file near_py_tool-0.1.29-py3-none-any.whl.

File metadata

File hashes

Hashes for near_py_tool-0.1.29-py3-none-any.whl
Algorithm Hash digest
SHA256 541d42162b60eb855fcd9aac5af5739f16a8e10975bdbaad044555f2bcd22d87
MD5 25cbfcf27d08792746ba6e9e8576fa03
BLAKE2b-256 022b44dc4f760d6defbc48456dcd629b05913636b79ab2749ae4de34f1befe80

See more details on using hashes here.

Supported by

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