Skip to main content

Native Groth16 BN254 verification primitives for the Xian stack

Project description

xian-tech-zk

Small native zero-knowledge verification and proving primitives for the Xian workspace.

Purpose

  • This package exposes the narrow verifier surface used by the Xian runtime.
  • It also now exposes the first external proving toolkit for the shielded-note-token development flow.
  • It is still intentionally small. It is not a general-purpose zk framework.

Current Scope

  • Groth16 verification
  • BN254
  • Python bindings for runtime integration
  • A pure Rust verifier core for cargo-level testing and fixtures
  • Shielded-note proving circuits and proof generation helpers
  • Deterministic dev bundle generation for local shielded-note workflows
  • Note math helpers for commitments, nullifiers, asset ids, and Merkle roots
  • Trusted local prover-service support for note, command, and relay proof generation
flowchart LR
  Wallet["Shielded wallet"] --> Request["Proof request"]
  Request --> Prover["xian-zk prover toolkit"]
  Prover --> Proof["Groth16 proof and public inputs"]
  Proof --> Contract["Shielded contract"]
  Contract --> Registry["zk_registry verifying key"]
  Contract --> Bridge["contract-side zk bridge"]
  Bridge --> Verifier["xian-zk verifier"]

API

Python module xian_zk exposes:

  • raw and prepared Groth16 BN254 verification
  • native public-input, payload-hash, tree, and command digest helpers
  • shielded note request/result/prover/wallet types
  • shielded command request/result/prover/wallet types
  • shielded relay transfer request/result/prover/wallet types
  • registry manifest helpers for note, command, and relay verifying keys
  • note encryption/decryption, discovery-tag, sync-hint, and wallet sync helpers
  • local prover service clients and ShieldedZkProverService

CLI entrypoints:

  • uv run xian-zk-shielded-bundle generate-note --output-dir ...
  • uv run xian-zk-shielded-bundle generate-command --output-dir ...
  • uv run xian-zk-shielded-bundle import-note --bundle ... --output-dir ...
  • uv run xian-zk-shielded-bundle import-command --bundle ... --output-dir ...
  • uv run xian-zk-shielded-bundle validate-note --bundle ...
  • uv run xian-zk-shielded-bundle validate-command --bundle ...
  • uv run xian-zk-prover-service --host 127.0.0.1 --port 8787 ...

The Rust crate exposes the verifier core, shielded fixture builders, and proof generation helpers used by the Python bindings and tests.

Encoding

  • Verifying keys: compressed canonical bytes as 0x-prefixed hex
  • Proofs: compressed canonical bytes as 0x-prefixed hex
  • Public inputs: 32-byte big-endian field elements as 0x-prefixed hex

Validation

  • cargo test --manifest-path packages/xian-zk/Cargo.toml --no-default-features
  • cargo run --manifest-path packages/xian-zk/Cargo.toml --no-default-features --example generate_test_vector
  • cargo run --manifest-path packages/xian-zk/Cargo.toml --no-default-features --example generate_shielded_note_fixture
  • cd packages/xian-zk && uv sync --group dev && uv run maturin develop && uv run pytest -q
  • cd packages/xian-zk && uv run pytest -q -m slow

Notes

  • The runtime-facing verifier surface is still intentionally narrow.
  • The shielded-note proving helpers are the first external proving toolkit slice, not a broad proving framework.
  • The shielded-note circuits now use Merkle auth paths instead of witnessing the whole leaf set, and the shipped dev bundle / fixture ids are v2.
  • Shielded outputs are now addressed to owner_public, not to the recipient's spending secret. That lets senders create recipient outputs without learning the recipient's private shielded spend key.
  • The Python toolkit now separates spending and viewing authority. A wallet can disclose note contents by sharing only a viewing key or by adding explicit extra viewers to an encrypted note payload without exposing the spend key.
  • The Python toolkit now also ships a first-class ShieldedWallet abstraction for seed backup, state snapshots, record sync, note selection, and request planning for deposit / transfer / withdraw flows.
  • The package now also ships a deployment CLI that generates a random shielded-note proving bundle plus a public registry manifest. Keep the bundle private; only the manifest should be used for zk_registry registration.
  • The encrypted payload format now supports owner delivery plus optional disclosed viewers inside a single on-chain payload blob.
  • The encrypted payload format uses anonymous per-viewer discovery tags and ephemeral keys for new payloads, so recipient viewing keys are no longer embedded in cleartext.
  • ShieldedWallet.sync_records(...) now prefilters candidate payloads before full decryption, and note records now expose payload_tags so indexers can persist discovery metadata for later selective queries.
  • xian-zk-prover-service is a trusted local proving companion, not a true split-prover protocol. It improves deployability and wallet ergonomics, but the service still sees witness material.
  • Exact withdraws no longer need a forced change note. A withdraw can spend a note set down to zero shielded outputs when value conservation closes exactly.
  • The proving requests separate old_root from append_state, which lets a client prove against a recent accepted root while still projecting the canonical post-state from the current append frontier.
  • Python pytest now excludes the slow proof-generation tests by default. Run pytest -m slow explicitly when you want the proving-toolkit path.
  • The contract runtime prefers registry-backed verification by vk_id; this package exposes the lower-level raw and prepared-key verifier primitives that runtime builds on.
  • ShieldedNoteProver.build_insecure_dev_bundle() is for local development and tests only. Its deterministic setup seed exposes toxic waste and must never be used for a real network.
  • ShieldedNoteProver.build_random_bundle(...) and xian-zk-shielded-bundle generate-note generate a single-party random trusted setup. That is appropriate for deployment tooling, but it is still not an MPC ceremony.
  • Proof generation uses real randomness even when the proving bundle is a deterministic dev bundle.

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

xian_tech_zk-0.1.5.tar.gz (68.9 kB view details)

Uploaded Source

Built Distributions

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

xian_tech_zk-0.1.5-cp314-abi3-win_amd64.whl (860.9 kB view details)

Uploaded CPython 3.14+Windows x86-64

xian_tech_zk-0.1.5-cp314-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14+manylinux: glibc 2.17+ x86-64

xian_tech_zk-0.1.5-cp314-abi3-macosx_11_0_arm64.whl (971.3 kB view details)

Uploaded CPython 3.14+macOS 11.0+ ARM64

xian_tech_zk-0.1.5-cp314-abi3-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14+macOS 10.12+ x86-64

File details

Details for the file xian_tech_zk-0.1.5.tar.gz.

File metadata

  • Download URL: xian_tech_zk-0.1.5.tar.gz
  • Upload date:
  • Size: 68.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xian_tech_zk-0.1.5.tar.gz
Algorithm Hash digest
SHA256 8e25077a0dcdd896b4cb7342de36e24c5c651bbe112c74625b02fe57c0cda3fd
MD5 0600d93d69f5096c918d954fe9a473e5
BLAKE2b-256 b05d517a1522f27f3b9124e01159b2ec1481415d31ac86abaf9cfcaf0a099520

See more details on using hashes here.

Provenance

The following attestation bundles were made for xian_tech_zk-0.1.5.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_zk-0.1.5-cp314-abi3-win_amd64.whl.

File metadata

  • Download URL: xian_tech_zk-0.1.5-cp314-abi3-win_amd64.whl
  • Upload date:
  • Size: 860.9 kB
  • Tags: CPython 3.14+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xian_tech_zk-0.1.5-cp314-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 c3a7dcaabb40de1c230889ac5d37717ec73ab99c17b06f477240691b35662ac5
MD5 ee6b13af4e65713e6e2bcb5cc087fd9e
BLAKE2b-256 1667860c1244073e0825e38e179fd7980dfb1e57e02c8fe18523d6670cbbc93d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xian_tech_zk-0.1.5-cp314-abi3-win_amd64.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.

File details

Details for the file xian_tech_zk-0.1.5-cp314-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xian_tech_zk-0.1.5-cp314-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5366525f9793d8c186f703db1817dc8c3c2dd328848bf4287c3e3ccc8875703d
MD5 6abb5ff3c72b04f08bc676b3d2f02f92
BLAKE2b-256 97985541a615dd3d912330bd93c691e28e9079e8cf125bf6031800d4604b1469

See more details on using hashes here.

Provenance

The following attestation bundles were made for xian_tech_zk-0.1.5-cp314-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.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.

File details

Details for the file xian_tech_zk-0.1.5-cp314-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xian_tech_zk-0.1.5-cp314-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e548969fdd12580a02c087f748bb5eb59ca3ef7bd05bedad5c18533904ccf0fe
MD5 f0a627b36fcd886b679d48388eed2df2
BLAKE2b-256 0cd7a20cd31d1a20678970bf265b72fcd9100af3ddbb9530c1bfb10234d7e7ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for xian_tech_zk-0.1.5-cp314-abi3-macosx_11_0_arm64.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.

File details

Details for the file xian_tech_zk-0.1.5-cp314-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for xian_tech_zk-0.1.5-cp314-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd1c0407d124e3e93fd2c86778e9cd31312494d19f506d72a54a0e874c1b73ff
MD5 0c44bbf055f384d985926bfbfe020d22
BLAKE2b-256 60a7b5963d3396a30b4163a4319ba835256dc896dc2b411e935f0edc951eb8f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xian_tech_zk-0.1.5-cp314-abi3-macosx_10_12_x86_64.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.

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