Fast validation and schema extraction for GenLayer intelligent contracts
Project description
genvm-linter
Fast validation and schema extraction for GenLayer intelligent contracts.
Installation
pip install genvm-linter
Usage
# Run both lint and validate (default)
genvm-lint check contract.py
# Fast AST safety checks only (~50ms)
genvm-lint lint contract.py
# Full SDK semantic validation (~200ms cached)
genvm-lint validate contract.py
# Extract ABI schema
genvm-lint schema contract.py
genvm-lint schema contract.py --output abi.json
# Pre-download GenVM artifacts
genvm-lint download # Latest
genvm-lint download --version v0.2.12 # Specific version
genvm-lint download --list # Show cached
# Agent-friendly JSON output
genvm-lint check contract.py --json
How It Works
Layer 1: AST Lint Checks (Fast)
- Forbidden imports (
random,os,time, etc.) - Non-deterministic patterns (
float(),time.time()) - Structure validation (dependency header)
Layer 2: SDK Validation (Accurate)
- Downloads GenVM release artifacts (cached at
~/.cache/genvm-linter/) - Loads exact SDK version specified in contract header
- Validates types, decorators, storage fields
- Extracts ABI schema
Exit Codes
0- All checks passed1- Lint or validation errors2- Contract file not found3- SDK download failed
VS Code Extension
This linter is used by the GenLayer VS Code Extension for real-time contract validation.
Development
git clone https://github.com/genlayerlabs/genvm-linter.git
cd genvm-linter
pip install -e ".[dev]"
pytest
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
genvm_linter-0.5.1.tar.gz
(46.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file genvm_linter-0.5.1.tar.gz.
File metadata
- Download URL: genvm_linter-0.5.1.tar.gz
- Upload date:
- Size: 46.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a60db76d1af1601bf9924fad08ba293b3ccd2c6216fcb43caca5989475b282c
|
|
| MD5 |
bedd743f1607bcef33662c7fc4fdc695
|
|
| BLAKE2b-256 |
5c5c3074c62445e3498e672c9bbdd1c8de31404571e67ca6c4032a2ce80b08d4
|
File details
Details for the file genvm_linter-0.5.1-py3-none-any.whl.
File metadata
- Download URL: genvm_linter-0.5.1-py3-none-any.whl
- Upload date:
- Size: 26.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cefe42802cfceb42cdbb1437794f32db1ad46f053403cd067600c4ad4e284299
|
|
| MD5 |
f0eb1c402ae65c46f181a3a71b21aff8
|
|
| BLAKE2b-256 |
856a31beb14b979501f5307494c4e0d6c7f8f97bacac84aca9b3d1c59bb0f16d
|