| Crates.io | quantom_value |
| lib.rs | quantom_value |
| version | 0.1.0 |
| created_at | 2026-01-11 03:56:20.545068+00 |
| updated_at | 2026-01-11 03:56:20.545068+00 |
| description | Deterministic, observer-relative post-quantum value and cryptographic primitives beyond classical consensus |
| homepage | |
| repository | https://github.com/QuantPerm-Labs/Quantom-VALUE |
| max_upload_size | |
| id | 2035166 |
| size | 41,307 |
A deterministic, memoryless computation framework independent of time, consensus, and coordination.
quantom_value is a Rust library that implements a deterministic state-evolution system based on Observer-Relative Interpretation.
Standard systems rely on a single, global "source of truth." quantom_value shifts this paradigm. It allows a system to evolve publicly and predictably, while enabling different observers to derive unique, consistent interpretations of that same state. In this manifold, the public "truth" never changes, but the private "meaning" is personal.
The framework is built on four primary primitives:
Perm: The deterministic foundation. A permutation used to construct stable, reproducible state spaces.
QuantPerm: The stateful engine. It tracks dimensions, transitions, and Structural Value ($\Sigma$).
Euclid: The seed-provider. It distinguishes between Genesis (Public) and Fork (Private/Seeded) contexts.
Mirror: The collapse function. It projects public state into an observer-relative representation (the "reflection").
The system is Memoryless by Construction. It does not reference wall-clock time, block heights, or epochs. It is a pure mapping of structure to interpretation. If all computers on Earth were powered off for a century and restarted, the same inputs would produce the identical 128-bit dimensions.
An optional seed acts as a lens. It doesn't change the "object" (the public state), only the "reflection" (the Mirror). This allows for private semantic layers to exist on top of public infrastructure.
\Sigma$ is an orthogonal metric of work. It represents the actual computational or physical work performed. Unlike traditional tokens, \Sigma$ is a measurable quantity of "structural weight" that can be spent or transferred within the manifold.
Traditional consensus (like blockchains) fails at the scale of the solar system due to light-speed delays.
quantom_value supports decentralized accounting without the need for a central ledger, bank, or blockchain.
Existing blockchains can integrate quantom_value as a deterministic execution layer.
Consensus Efficiency: Blockchains can use observer-independent mirrors to validate transitions more quickly.
Hybrid Privacy: Public/static validate the movement, while private nodes(seeds) calculate the "Forked" meaning of the transaction. Intrinsic Structural Value
Pin-Point Measurement: Retained Mass is measured at the lowest level—bits and bytes of external truth. This provides a granular, indisputable foundation for value. ✅ retained mass Defined as exact bits/bytes ✅ Measured structurally, not symbolically ✅ Use hashes only as integrity commitments Retained mass increases by the exact number of bytes irreversibly committed during a transition. mass is measured in bytes of irreversibly retained external truth.
Unit of Measurement: Within quantum_value, value is expressed in qp (QuantPerm units) for system-wide state, and in dp (DegreePerm units) for the underlying permutation foundation.
Independent of External Currency: No external currency is required; the system’s value is entirely intrinsic and reproducible.
Retained Mass Dependency: External interactions - including communication, file sharing, or access validation — can depend on an agent’s retained Σ value, linking privacy and influence to demonstrated structural work.
Universal Meaning: These units ensure that measurements, transfers, or observer-relative projections are consistent across any machine, location, or era, independent of local monetary systems.
// The system evolves publicly and deterministically
let dimension = quantperm.dimension();
// A Public Observer (Genesis) sees the universal reflection
let public_mirror = Mirror::collapse(Euclid::genesis(), dimension);
// A Private Observer (Fork) sees a unique reflection based on their seed
let private_mirror = Mirror::collapse(Euclid::from_seed(my_seed), dimension);
// The state is the same; the meaning is different.
assert_ne!(public_mirror, private_mirror);