Open, content-addressed spend-authority references bound into the pinned AlgoVoi substrate (payer + cap + period + revocation state; L1 frozen)
Project description
algovoi-payment-mandate-lite
The open, lite origination layer for AlgoVoi Payment Mandate. It content-addresses the
terms of a spend authority — payer, cap, period, revocation_state — into a
deterministic, recomputable mandate_ref.
This mandate_ref is exactly the mandate_ref that Spend Guardrail (lite) binds: pin the mandate by hash, then the pre-payment decision is bound to that hash. Change the cap, the period, or the revocation state and the reference diverges, so a decision made against one authority cannot be silently re-attributed to another. Additive over the frozen substrate (Apache-2.0):
mandate_ref = "sha256:" + SHA-256(JCS({cap, payer, period, revocation_state}))
Lite vs commercial
| Lite (this package) | Payment Mandate (commercial) | |
|---|---|---|
| Licence | Apache-2.0, open | Commercial OEM |
| Authority | content-addressed mandate_ref |
Falcon-1024 PQC signed mandate |
| Enforcement | reference only | authorize-charge against the per-period cap |
| Verifier | recompute offline | maintained verifier |
Pin lite, anchor a vector hash, carry the NOTICE → free v0 key.
Install & use
pip install algovoi-payment-mandate-lite
from algovoi_payment_mandate_lite import mandate_ref, verify
ref = mandate_ref("0x…payer", "1000", "monthly", "active") # cap is a string
verify(ref, "0x…payer", "1000", "monthly", "active") # True
verify(ref, "0x…payer", "2000", "monthly", "active") # False — cap tamper
verify(ref, "0x…payer", "1000", "monthly", "revoked") # False — revocation tamper
All four fields are byte-load-bearing; an empty or missing field is rejected, not hashed.
Conformance
conformance/payment_mandate_lite_v1/ — 3 positives, 4 field-tamper negatives (payer / cap /
period / revocation), 2 rejection negatives (empty field), 2 invariants. mandate_1 and
mandate_2 equal the mandate_1 / mandate_2 references in spend_guardrail_lite_v1, so the
decision chain composes. Verifier imports only stdlib + rfc8785:
pip install rfc8785
python conformance/payment_mandate_lite_v1/verify.py
Adopters
The 4-check gate is scripts/check_v0_adoption.py (dependency + canonical hash anchor + NOTICE +
version pin → ISSUE_V0_KEY). Apply: chopmob@gmail.com.
License
Apache-2.0. Copyright 2026 AlgoVoi. Preserve the NOTICE in any distribution.
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
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 algovoi_payment_mandate_lite-0.1.0.tar.gz.
File metadata
- Download URL: algovoi_payment_mandate_lite-0.1.0.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8fee257e0241009cfe5eae52589223f62c6ad0196b4655ebdd2f03b13a2aec8
|
|
| MD5 |
cb6ba8af7a2ea50708e067be5f1b8538
|
|
| BLAKE2b-256 |
ecb81a7e0c9d169583653447acd9c51e9d7a3f6359241a205afdda60a01b5880
|
File details
Details for the file algovoi_payment_mandate_lite-0.1.0-py3-none-any.whl.
File metadata
- Download URL: algovoi_payment_mandate_lite-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03df168bac9e1ac6a434f45e189a330dba3176753c57109c98c4dc2fb022a8e1
|
|
| MD5 |
33974441198629963d65153b5c5c5103
|
|
| BLAKE2b-256 |
be17c9bd4a13189a8f307cd4d4058d9180ead718a7e80361dca641354f71a277
|