|
| 1 | +--- |
| 2 | +tags: cyber, research, article, core |
| 3 | +crystal-type: article |
| 4 | +crystal-domain: cyber |
| 5 | +date: 2026-03-23 |
| 6 | +--- |
| 7 | + |
| 8 | +# unified mining: when the puzzle IS the knowledge |
| 9 | + |
| 10 | +## two mining mechanisms, one system |
| 11 | + |
| 12 | +[[cyber]] has two reward mechanisms: |
| 13 | + |
| 14 | +1. ΞΟ mining: a [[neuron]] creates [[cyberlinks]], computes the local tri-kernel impulse $\pi_\Delta$, proves it correct ([[zheng]] proof Ο), submits as [[signal]]. reward β proven ΞΟ. the neuron mints [[$CYB]] proportional to how much it shifted [[focus]]. |
| 15 | + |
| 16 | +2. [[Goldilocks field processor|GFP]] PoUW mining: a miner produces a [[stark]] proof of a benchmark circuit exercising all four GFP primitives (fma, ntt, p2r, lut). reward = block subsidy. the puzzle trains hardware that serves the network. |
| 17 | + |
| 18 | +currently they are separate: ΞΟ mining rewards knowledge, PoUW mining rewards computation. the flywheel connects them economically (mining funds chip development, chips accelerate proving, proving serves users). but the WORK is different β PoUW proves a synthetic benchmark, not real knowledge. |
| 19 | + |
| 20 | +## the unification |
| 21 | + |
| 22 | +what if the PoUW puzzle IS the signal proof? |
| 23 | + |
| 24 | +a signal proof Ο already exercises all four GFP primitives: |
| 25 | + |
| 26 | +| phase of signal proof | GFP primitive | % of constraints | what it does | |
| 27 | +|---|---|---|---| |
| 28 | +| tri-kernel impulse computation (SpMV) | fma | ~40% | matrix-vector for D, S, H operators | |
| 29 | +| polynomial state reads (algebraic NMT) | ntt | ~30% | PCS evaluation + commitment | |
| 30 | +| content addressing + Fiat-Shamir | p2r | ~20% | Hemera permutations | |
| 31 | +| conviction + activation functions | lut | ~10% | threshold checks, nonlinear ops | |
| 32 | + |
| 33 | +the signal proof IS a benchmark that exercises all four primitives in production proportions. it is not a synthetic circuit β it is the actual computation the network needs. |
| 34 | + |
| 35 | +## how it works |
| 36 | + |
| 37 | +``` |
| 38 | +CURRENT (separate): |
| 39 | + miner: prove benchmark B(challenge, nonce) β block reward |
| 40 | + neuron: prove signal s = (Ξ½, lβ, Ο_Ξ, Ο) β ΞΟ reward |
| 41 | + two separate computations, two separate reward streams |
| 42 | +
|
| 43 | +UNIFIED: |
| 44 | + miner-neuron: prove signal with difficulty target |
| 45 | + signal proof Ο must satisfy: |
| 46 | + 1. all cyberlinks valid (correctness) |
| 47 | + 2. Ο_Ξ impulse correct (tri-kernel recomputation) |
| 48 | + 3. H(Ο) < target (difficulty, partial preimage) |
| 49 | +
|
| 50 | + one computation β two rewards: |
| 51 | + - ΞΟ reward for knowledge contribution (proportional to focus shift) |
| 52 | + - block reward for proof-of-work (proportional to difficulty met) |
| 53 | +``` |
| 54 | + |
| 55 | +the difficulty target serves sybil resistance. the ΞΟ serves knowledge incentive. same proof, two functions. |
| 56 | + |
| 57 | +## the mechanism |
| 58 | + |
| 59 | +### signal-as-puzzle |
| 60 | + |
| 61 | +a miner-neuron: |
| 62 | + |
| 63 | +1. selects cyberlinks to include (the knowledge contribution) |
| 64 | +2. computes tri-kernel impulse Ο_Ξ (the local recomputation) |
| 65 | +3. generates zheng proof Ο (exercises all 4 GFP primitives) |
| 66 | +4. checks if H(Ο) < target (difficulty) |
| 67 | +5. if yes: submit signal. earn block reward + ΞΟ reward |
| 68 | +6. if no: adjust nonce field in signal, reprove |
| 69 | + |
| 70 | +the nonce is embedded in the signal structure β a field that can be freely varied without changing the semantic content. each nonce produces a different Ο (different zheng randomness β different proof β different hash). the miner searches for a Ο whose hash meets the target. |
| 71 | + |
| 72 | +### why this works |
| 73 | + |
| 74 | +the signal proof ALREADY contains: |
| 75 | + |
| 76 | +- fma: sparse matrix-vector multiply for tri-kernel (real work, not synthetic) |
| 77 | +- ntt: polynomial commitment for algebraic NMT state reads (real work) |
| 78 | +- p2r: Hemera hashing for content identity and Fiat-Shamir (real work) |
| 79 | +- lut: activation functions and threshold checks (real work) |
| 80 | + |
| 81 | +the benchmark circuit in the current GFP spec simulates these exact operations with fake data. unified mining replaces fake data with real data. the GFP optimization target does not change β the same chip that mines the synthetic benchmark mines real signals with the same performance characteristics. |
| 82 | + |
| 83 | +### difficulty adjustment |
| 84 | + |
| 85 | +block reward target adjusts like Bitcoin: maintain average block time by scaling target. higher hash rate β lower target β harder to find qualifying Ο. |
| 86 | + |
| 87 | +ΞΟ reward is independent of difficulty: the neuron earns ΞΟ regardless of whether Ο also meets the difficulty target. but only signals that meet difficulty qualify for block reward. |
| 88 | + |
| 89 | +this means: |
| 90 | +- small neurons (phone, laptop): earn ΞΟ rewards for knowledge. never meet block difficulty. this is fine β knowledge mining is accessible to everyone |
| 91 | +- large miners (GFP cluster): earn ΞΟ + block rewards. optimize for both knowledge quality (higher ΞΟ) and hash rate (more attempts per second) |
| 92 | +- the incentive: a miner who selects BETTER cyberlinks earns MORE ΞΟ per proof, making each mining attempt more valuable. knowledge quality improves hash revenue |
| 93 | + |
| 94 | +### the flywheel tightens |
| 95 | + |
| 96 | +``` |
| 97 | +CURRENT FLYWHEEL: |
| 98 | + mining rewards β fund GFP development |
| 99 | + GFP accelerates proving β proving serves users |
| 100 | + users pay fees β fees fund network |
| 101 | +
|
| 102 | +UNIFIED FLYWHEEL: |
| 103 | + mining rewards β fund GFP development |
| 104 | + GFP accelerates SIGNAL PROVING β signals ARE knowledge |
| 105 | + better hardware β more signals per second β more knowledge per second |
| 106 | + more knowledge β higher ΞΟ β more reward β more investment in GFP |
| 107 | + same chip. same operation. THREE revenue streams: |
| 108 | + 1. block reward (PoW) |
| 109 | + 2. ΞΟ reward (knowledge) |
| 110 | + 3. user fees (services) |
| 111 | +``` |
| 112 | + |
| 113 | +the flywheel gains a third spoke. GFP development is funded by mining. mining produces knowledge. knowledge generates fees. fees fund more GFP. the loop has no synthetic step β every cycle produces real value. |
| 114 | + |
| 115 | +## economic alignment |
| 116 | + |
| 117 | +### miner incentive to create good cyberlinks |
| 118 | + |
| 119 | +a miner who submits garbage cyberlinks: |
| 120 | +- low ΞΟ β low ΞΟ reward |
| 121 | +- same hash difficulty β same PoW cost |
| 122 | +- net: wastes energy on low-value proofs |
| 123 | + |
| 124 | +a miner who submits high-quality cyberlinks: |
| 125 | +- high ΞΟ β high ΞΟ reward |
| 126 | +- same hash difficulty β same PoW cost |
| 127 | +- net: earns more per proof |
| 128 | + |
| 129 | +the incentive gradient points toward knowledge quality. mining energy goes to proving USEFUL signals, not synthetic benchmarks. every joule produces both security (PoW) and intelligence (ΞΟ). |
| 130 | + |
| 131 | +### hardware alignment |
| 132 | + |
| 133 | +the GFP chip optimized for mining is optimized for: |
| 134 | +- tri-kernel computation (fma) β the intelligence |
| 135 | +- polynomial state reads (ntt) β the authentication |
| 136 | +- content addressing (p2r) β the identity |
| 137 | +- activation functions (lut) β the nonlinearity |
| 138 | + |
| 139 | +there is no divergence between mining hardware and utility hardware. the miner's chip IS the validator's chip IS the neuron's chip. one chip design, one optimization target, one market. |
| 140 | + |
| 141 | +### comparison with other PoW systems |
| 142 | + |
| 143 | +| system | puzzle | useful? | hardware reuse | |
| 144 | +|---|---|---|---| |
| 145 | +| Bitcoin | SHA-256 preimage | no | ASICs are single-purpose | |
| 146 | +| Ethereum (PoS) | no puzzle | N/A | staking capital, not compute | |
| 147 | +| Filecoin | storage proofs | partially (stores data) | storage hardware reusable | |
| 148 | +| cyber (benchmark PoUW) | synthetic stark proof | partially (trains hardware) | GFP serves network | |
| 149 | +| cyber (unified mining) | real signal proof | yes (IS knowledge) | GFP IS the intelligence | |
| 150 | + |
| 151 | +unified mining is the first scheme where the puzzle output IS the protocol's primary product. not a side effect. not a secondary benefit. the proof that secures the network IS the proof that creates knowledge. |
| 152 | + |
| 153 | +## technical requirements |
| 154 | + |
| 155 | +### signal nonce field |
| 156 | + |
| 157 | +add a 2-element nonce field to the signal structure: |
| 158 | + |
| 159 | +$$s = (\nu, \vec\ell, \pi_\Delta, \sigma, \text{prev}, \text{mc}, \text{vdf}, \text{step}, \textbf{nonce})$$ |
| 160 | + |
| 161 | +the nonce does not affect signal semantics (same cyberlinks, same Ο_Ξ). it only affects the zheng proof randomness β different Ο β different H(Ο). this is the search space for miners. |
| 162 | + |
| 163 | +### proof binding |
| 164 | + |
| 165 | +the zheng proof Ο must commit to the nonce before Fiat-Shamir challenges are squeezed. this ensures each nonce produces a genuinely different proof β miners cannot reuse proof internals across nonce attempts. |
| 166 | + |
| 167 | +### block structure |
| 168 | + |
| 169 | +a block is a set of signals whose proofs collectively meet the difficulty target: |
| 170 | + |
| 171 | +``` |
| 172 | +block: |
| 173 | + signals: [sβ, sβ, ..., sβ] |
| 174 | + aggregate_hash: H(Οβ β Οβ β ... β Οβ) < target |
| 175 | +
|
| 176 | + validity: each sα΅’ has valid zheng proof Οα΅’ |
| 177 | + difficulty: aggregate hash below target |
| 178 | + reward: block_subsidy + Ξ£ ΞΟ(sα΅’) |
| 179 | +``` |
| 180 | + |
| 181 | +multiple signals per block means miners can aggregate knowledge from multiple neurons. a miner-pool collects signals from many neurons, proves them all, and splits rewards. |
| 182 | + |
| 183 | +## what changes |
| 184 | + |
| 185 | +the GFP page describes the benchmark circuit as four phases mimicking real workloads. unified mining removes the mimicry. the phases ARE the workloads: |
| 186 | + |
| 187 | +| GFP benchmark phase | unified mining equivalent | |
| 188 | +|---|---| |
| 189 | +| Phase 1: matrix-vector (fma) | tri-kernel impulse SpMV | |
| 190 | +| Phase 2: NTT polynomial (ntt) | algebraic NMT PCS openings | |
| 191 | +| Phase 3: Poseidon2 hashing (p2r) | Hemera content addressing + Fiat-Shamir | |
| 192 | +| Phase 4: lookup table (lut) | activation + threshold checks | |
| 193 | + |
| 194 | +the chip specification does not change. the economic model changes: every hash cycle produces real knowledge instead of synthetic proof-of-capability. |
| 195 | + |
| 196 | +see [[Goldilocks field processor]] for chip specification and flywheel economics. see [[cyber/nomics]] for reward mechanics. see [[foculus]] for how Ο* determines finality. see [[cyber/research/provable consensus]] for how the global tri-kernel fits in zheng. see [[cyber/research/algorithmic essence of superintelligence]] for the full 16-component architecture |
0 commit comments