Subscription / Recurring Billing
A subscription lifecycle on a cron clock. active emits invoice_due on its billing schedule (default the 1st of each month); a payment_failed event moves it to past_due, payment_ok restores it, and grace_expired suspends it. Drop-in for SaaS plans, metered billing, and memberships. (Edit the cron for your billing cadence.)
| Category | Foundations |
| Template ID | subscription-billing |
| Definition | subscription_billing v1.0 |
| States | 3 (initial: active; terminal: suspended) |
| Transitions | 4 |
| Operators composed | KO42 |
| Audit clock | on · tick rate 1 |
What it's for
- SaaS plan billing
- Metered / usage subscriptions
- Membership lifecycle
States
| State | Role |
|---|---|
active | initial |
past_due | intermediate |
suspended | terminal |
Transitions
| From | To | Operator | Fires when | Proof | Trigger / actions |
|---|---|---|---|---|---|
active | active | KO42 | — | no | recurring · cron 0 0 1 * * (UTC) · post: emit invoice_due |
active | past_due | KO42 | — | no | on_event · payment_failed · post: emit subscription_past_due |
past_due | active | KO42 | — | no | on_event · payment_ok · post: emit subscription_resumed |
past_due | suspended | KO42 | — | no | on_event · grace_expired · post: emit subscription_suspended |
Operators it composes
Each transition fires a registry operator through the master equation (compute → prove → verify). This template composes:
KO42
Browse the operators at /operators/; the building blocks a transition calls are the framework's protocols. KO42 is the always-on substrate operator; physics operators carry proof_required: true, so each fire runs the full compute → prove → verify path and lands a verifiable proof digest on your entangled state.
Deploy it
Inspect the full definition, then deploy it onto your state machine. Every fire is Zeqond-stamped onto your entangled state.
# 1. Inspect — the full definition (states, transitions, operators) as served
curl -sS https://zeqsdk.com/api/contracts/templates/subscription-billing
# 2. Deploy onto your machine (auth: session; body carries your machine slug)
curl -sS -X POST https://zeqsdk.com/api/contracts/templates/subscription-billing/deploy \
-H "Content-Type: application/json" \
-b "<your session cookie>" \
-d '{"slug":"<your-machine>"}'
# → 201 { "ok": true, "contract": { "id": "…", "currentState": "active", … },
# "template_id": "subscription-billing" }
The deploy path runs the same two-stage validation as the canonical create route (ContractDefinitionSchema.parse + validateContractDefinition against the live registry), writes the creation row onto your entangled state, and schedules the first fire. From there, drive transitions with POST /api/chain/<your-machine>/contracts/<id>/transition or let any triggers fire them autonomously.
Next
- Contract IDE — author, preview, and deploy contracts (this template is in the Templates tab).
- State Contracts — the full contract model: conditions, triggers, pre/post actions, lifecycle.
- Templates Library — every ready-to-deploy contract, grouped by category.
- Protocols — the named building blocks a transition composes.