Skip to main content

xian-contracting

xian-contracting is the contract compiler, source/artifact utility layer, local test harness, and standard-library bridge for Xian. Network execution is defined by the Xian VM (xian_vm_v1).

The published PyPI package is xian-tech-contracting. The import package remains contracting. Side packages under packages/ (deterministic runtime types, accounts, fast-path validator, VM crates, zk tooling) are released independently and consumed by xian-abci, xian-py, and the node runtime.

Package Shape

flowchart LR
  Source["Authored contract source"] --> Compiler["Compiler and linter"]
  Compiler --> Artifact["Offline artifacts"]
  Compiler --> VM["xian_vm_v1 execution target"]
  Source --> Executor["Local harness"]
  Executor --> Storage["Deterministic storage"]
  Executor --> Stdlib["Stdlib bridge"]
  Executor --> Events["LogEvent output"]
  Packages["Side packages"] --> VM
  Packages --> ZK["xian-zk"]

Quick Start

Install the package:

uv add xian-tech-contracting

Optional zk helpers are kept off the default install:

uv add 'xian-tech-contracting[zk]'

Compile source or build artifacts for offline inspection:

from contracting.artifacts import build_contract_artifacts, compile_contract_source

compiled = compile_contract_source(
    module_name="con_token",
    source=contract_source,
)
artifacts = build_contract_artifacts(
    module_name="con_token",
    source=contract_source,
)

Run a contract in the local harness:

from contracting.local import ContractingClient

client = ContractingClient()
client.submit(contract_source, name="con_token")

token = client.get_contract_proxy("con_token")
token.transfer(amount=100, to="bob")

submit(...) accepts contract source as a string or a Python function whose body is the contract.

Use the storage driver directly:

from contracting.storage.driver import Driver

driver = Driver()
driver.set("example.key", "value")
print(driver.get("example.key"))

Principles

  • Contracts use Python syntax, but are not general Python. Execution rules are consensus-sensitive and intentionally narrower than the host language.
  • Consensus parity comes first. Metering, storage encoding, import restrictions, and runtime helpers must stay version-aligned across all validators.
  • The Xian VM is the execution target. Validators accept cleartext source and derive canonical Xian VM IR themselves before persisting deployed state.
  • Compiler and harness stay distinct. SDKs and CLI deployment flows submit source. Offline artifacts are useful for diagnostics and CI, but are not the public deployment payload.
  • Compilation is bounded. The Rust compiler admits at most 128 KiB source, 50,000 syntax nodes, syntax depth 64, 100,000 tokens total, 4,096 tokens on one logical line, 1 MiB of canonical IR JSON, and 512 contract-handle inference passes. Every binding returns the same xian.limit.* diagnostic.
  • Stay scoped. Built-in helpers serve the execution model. They do not grow into a general convenience framework.
  • No node orchestration here. Operator workflow, genesis distribution, and container lifecycle belong in xian-abci, xian-cli, and xian-stack.
  • Security-sensitive. Favor small, well-tested changes. If a fix changes execution semantics, add regression tests in the same change.

Key Directories

  • src/contracting/ — compiler, artifacts, local harness, storage, and stdlib bridge.
    • artifacts/ — public source compiler, artifact builder, and validator.
    • compilation/ — parser, compiler, linter, and whitelist logic.
    • compiler/ — public compiler import surface.
    • execution/ — runtime, executor, module loading, and tracing.
    • local/ — high-level ContractingClient for local tests and tooling.
    • storage/ — drivers, ORM helpers, encoder, and LMDB-backed state.
    • contracts/ — package-local contract assets (e.g. the built-in submission contract).
    • stdlib/ — contract-side standard-library bridge.
  • packages/ — independently released sibling packages: xian-accounts, xian-compiler-core, xian-fastpath-core, xian-runtime-types, xian-vm-core, xian-zk.
  • scripts/ — audit and fixture-generation tools used by VM/runtime work.
  • tests/unit/, integration/, security/, performance/ coverage.
  • examples/ — notebook walk-throughs and a non-Jupyter validation script.
  • docs/ — architecture, backlog, current-state notes, and active design drafts.

What This Runtime Covers

  • compilation and linting of contract source
  • local harness execution, metering, and import restrictions
  • storage drivers and encoding
  • contract-side runtime helpers (stdlib bridge)
  • speculative parallel batch execution primitives
  • native zero-knowledge verifier building blocks
  • Xian VM IR generation, validation, parity fixtures, and early native VM work

Validation

Default CI path (pure-Python, no Rust extensions):

uv sync --group dev
uv run ruff check .
uv run ruff format --check .
uv run pytest --cov=contracting --cov-report=term-missing --cov-report=xml

The default pytest config deselects tests marked optional_native; those tests require heavier Rust extension packages beyond the required compiler core.

Native / release CI path:

./scripts/validate-release.sh

validate-release.sh runs the default suite plus compiler-core, zk, and VM checks, the WASM compiler package build, optional-native parity and fuzz coverage, and the Rust-side package checks used by release CI. It is the gate for tagging a release.

If you change metering, tracing, storage encoding, or import restrictions, treat the change as consensus-sensitive and run the relevant tests/security/ and tests/integration/ paths explicitly.

Related Docs

Download files

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

Source Distribution

xian_tech_contracting-1.1.2.tar.gz (87.8 kB view details)

Uploaded Source

Built Distribution

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

xian_tech_contracting-1.1.2-py3-none-any.whl (100.1 kB view details)

Uploaded Python 3

File details

Details for the file xian_tech_contracting-1.1.2.tar.gz.

File metadata

  • Download URL: xian_tech_contracting-1.1.2.tar.gz
  • Upload date:
  • Size: 87.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xian_tech_contracting-1.1.2.tar.gz
Algorithm Hash digest
SHA256 3fa7075b2ced61b753ab49e31f72229b1e09df497209525825e9eaa6c2fbfa6a
MD5 e0405041032c1065cc15542ca21983a6
BLAKE2b-256 712f00060be742e425ee6da93d5ddc87034d8d4287cea7d75408192bd0f9fe7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xian_tech_contracting-1.1.2.tar.gz:

Publisher: release.yml on xian-technology/xian-contracting

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xian_tech_contracting-1.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for xian_tech_contracting-1.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 66ec6d97f651873ec9685910a7dfc51611da81b529ba230b8851bd9d9fbfe486
MD5 9cdfb3e8e497db1ef7cea4b715ab6d38
BLAKE2b-256 379697de92a1854c00a4c0a796e007c95cdf95e76e5c9fa47240327ad2b4226d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xian_tech_contracting-1.1.2-py3-none-any.whl:

Publisher: release.yml on xian-technology/xian-contracting

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.1.3

2 files

This release

1.1.2 This release

2 files

1.1.1

2 files

1.1.0

2 files

1.0.10

2 files

1.0.9

2 files

1.0.8

2 files

1.0.7

2 files

1.0.6

2 files

1.0.5

2 files

1.0.4

2 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page