nucleus-substrate-core 0.1.0

Categorical core of the Nucleus substrate: Session (the agent action), Projection (the verifiable record functor — Identity, Capability, Flow, Economic, …), and Receipt (the Ed25519-signed colimit). Lightweight, no runtime deps. See docs/architecture/substrate.md.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Mechanism-design types that live inside the **Economic
//! projection**.
//!
//! Each sub-module corresponds to one published lifter crate:
//!
//!   * [`vcg`] — Pigouvian-VCG auctions
//!     (lifter: `nucleus-mechanism-vcg`).
//!
//! Future variants (Stripe-Connect settlement, x402 micropayments,
//! Shapley value attribution, etc.) get their own sibling modules
//! here. Each one defines the shape of an [`Economic`] projection
//! body — the wire payload inside
//! `Projection::Economic(serde_json::Value)`.
//!
//! [`Economic`]: super::Projection::Economic

pub mod vcg;