Introduction
All human economic activity is ultimately an exchange of energy. The calorie that powers a laborer. The barrel of oil that drives a machine. The kilowatt-hour that runs a data center. Money has always been, at its core, a ledger for energy — an abstraction that tracks who has contributed useful work to civilization and who is owed work in return.
Every monetary system in history has been a proxy for energy, and every proxy introduces distortion. Gold is scarce but arbitrary. Fiat currency is flexible but inflationary. Cryptocurrency is decentralized but untethered from physical reality. All of them fail, in different ways, to honestly represent what they claim to represent: a store of human productive capacity.
Xukti removes the proxy. We propose a system in which energy itself is the token — not a derivative of energy, not a claim on energy, but a cryptographically-verified record of energy that was actually harvested, measured, and entered the grid. The laws of physics become the monetary policy. There is no central bank. There is no inflation. There is only the sun.
The energy thesis
2.1 Why energy is the universal unit
Energy is the only quantity that is conserved across all physical processes. The first law of thermodynamics guarantees that energy cannot be created or destroyed — only transformed. This makes it uniquely suited as a monetary base: unlike gold, its supply is governed by physics, not geology. Unlike fiat, its value cannot be diluted by decree.
The Kardashev scale — proposed by Soviet astrophysicist Nikolai Kardashev in 1964 — measures civilizational advancement by a single metric: total energy consumption. It is the most honest framework we have for thinking about where a civilization is and where it is going.
A Type I civilization harnesses all energy available on its home planet — roughly 10¹⁶ watts. A Type II civilization captures the full output of its star — approximately 10²⁶ watts for a G-type star like our sun. A Type III civilization commands the energy of an entire galaxy — on the order of 10³⁶ watts. Carl Sagan later extended the scale to allow fractional values, placing current humanity at approximately 0.73 — still a Type 0 civilization, burning stored ancient sunlight rather than harvesting it in real time.
This framing has a profound implication for monetary theory. At Type 0.73, humanity can afford imprecise accounting. The proxy (money) is so disconnected from the physical reality (joules) that the distortion is invisible — we simply call it "economic growth." But as a civilization ascends the Kardashev scale, the consequences of energy accounting errors become catastrophic. A civilization attempting to coordinate the harvest of 10²⁶ watts across millions of orbital platforms, with thousands of species and billions of autonomous agents transacting — that civilization cannot afford a proxy currency. It needs the energy itself to be the ledger entry.
Every step up the Kardashev scale requires solving the same problem at larger scale: how do you honestly account for energy that was harvested, transmitted, and consumed across a distributed system with no central authority? The answer is xukti. Not because we designed it for Type II civilizations — but because the protocol that works honestly at rooftop scale also works honestly at Dyson-swarm scale. The physics are the same. The ledger is the same. The token is the same.
Humanity's current solar capture is approximately 2 terawatts — roughly 1.1% of current global energy consumption, and a fraction of a fraction of the 174,000 terawatts incident on Earth's surface. The gap between where we are and where we could be is not a technology gap. It is an incentive gap. A civilization that prices solar energy honestly — that pays prosumers in real time, in real units, with no intermediary taking a clip — will close that gap faster than any government subsidy programme ever could. That is the Phase I mission of xukti.
2.2 Solar as the primary source
Of all energy sources available to Earth-based civilization, solar photovoltaics present the most favorable properties for a currency substrate: inexhaustible on civilizational timescales, distributed across the entire planetary surface, measurable with commodity IoT hardware, and zero marginal carbon once deployed. The sun emits approximately 3.8 × 10²⁶ watts continuously. Earth intercepts roughly 1.74 × 10¹⁷ watts. We capture a fraction of a fraction — and it is already enough.
Solar energy is the only resource that simultaneously satisfies all five monetary requirements: scarcity (limited by capture technology), verifiability (measurable to milliwatt precision), portability (transmissible as electrons), divisibility (quantizable to any precision), and durability (storable as hydrogen or batteries).
2.3 The currency horizon
We do not claim that XKT will replace fiat currencies in the near term. The transition from energy-proxy money to energy-as-money will take decades and requires both technological and social maturation. What we claim is that xukti builds the necessary infrastructure — the ledger, the oracle network, the market mechanism, the governance layer — so that when humanity is ready for an honest currency, the system exists.
Protocol architecture
The xukti protocol is organized into five functional layers, each with distinct responsibilities, interfaces, and security assumptions. The layers are designed to be independently upgradeable via EnergyDAO governance proposals.
The critical design choice is the separation of the oracle layer (L2) from the protocol layer (L3). The oracle layer is responsible for translating physical reality into on-chain attestations. The protocol layer consumes those attestations as trusted inputs. This separation allows the oracle network to evolve independently — new measurement technologies, new sensor types, new ZK-proof schemes — without requiring changes to the core protocol.
The oracle network
4.1 The measurement problem
The hardest engineering challenge in xukti is not cryptography or consensus — it is the honest measurement of physical energy. Any token system is only as honest as its data inputs. A solar inverter that reports 10 kWh when only 8 kWh were produced would cause inflation. The oracle network is xukti's anti-inflation mechanism.
4.2 Hardware security modules
Every harvest node is required to run a Hardware Security Module (HSM) — a tamper-resistant chip that cryptographically signs meter readings before transmission. The HSM holds a private key that never leaves the chip. Signed readings are timestamped, sequenced, and broadcast to the oracle network. Tampering with the meter hardware destroys the signing key, making the node's readings permanently invalid.
// Oracle attestation schema { node_id: "xkt-node-punjab-003f", source_type: "solar_pv", location: { lat: 30.9010, lon: 75.8573 }, interval_start: 1709800000, interval_end: 1709803600, kwh_gross: 4.820, kwh_net: 4.614, // after transmission losses carbon_gco2: 0.000, hsm_signature: "0x7f4a2b...c91e", oracle_sigs: ["0x3a1f...", "0x8c4d...", "0x2e9b..."] // 3-of-5 }
4.3 Threshold consensus
No single oracle reading is trusted. Each harvest node reports to a pool of five independent oracle validators. A 3-of-5 threshold signature is required before XKT is minted. Oracle validators are selected by the EnergyDAO from a registered set, rotated every epoch (24 hours), and slashed for provably false attestations. This design tolerates up to two compromised validators per pool without producing fraudulent tokens.
XKT token standard
XKT (xukti energy token) is the core unit of account in the xukti protocol. It is designed to be simple, auditable, and physically grounded. Its defining property: one XKT represents exactly one kilowatt-hour of verified, attested physical energy.
| Parameter | Value | Notes |
|---|---|---|
| Ticker | XKT | |
| Peg | 1 XKT = 1 kilowatt-hour (kWh), exact, immutable | |
| Decimal precision | 6 decimal places (1 µXKT = 1 milliwatt-hour) | |
| Mint trigger | 3-of-5 oracle threshold attestation of physical output | |
| Burn mechanism | Automatic on energy delivery confirmation | |
| Provenance fields | source_type, location, timestamp, carbon_gco2, node_id | |
| Carbon metadata | Immutable gCO₂ per kWh, sourced from oracle at mint time | |
| Transferability | Fully fungible within same carbon class; cross-class via bridge | |
| Settlement finality | < 2 seconds (optimistic rollup with fraud proof window) | |
| DAO fee | 0.1% of each trade, directed to EnergyDAO infrastructure fund | |
A critical design decision is provenance fungibility. For most purposes — paying an electricity bill, buying goods, measuring GDP — a kWh from solar in Punjab is identical to a kWh from wind in Denmark. XKT is fungible across sources. However, the provenance metadata is permanently attached and queryable. Consumers who wish to pay a premium for solar-only or zero-carbon energy can specify provenance requirements in their smart contracts, and the AMM will route accordingly.
P2P energy markets
6.1 Atomic settlement
The most important property of xukti's market mechanism is atomic settlement: the delivery of energy (kWh) and the transfer of tokens (XKT) happen in a single transaction. Either both succeed, or neither does. This eliminates counterparty risk without requiring a trusted intermediary — the smart contract itself holds escrow, and the oracle confirms delivery.
6.2 The energy AMM
Spot pricing is handled by an Automated Market Maker (AMM) adapted from the constant-product model (x·y=k), with modifications for energy's physical properties. Unlike financial assets, energy has a physical location, a transmission cost, and a time-of-day value curve. The xukti AMM incorporates:
Location discount factor (LDF): transmission losses between source and sink reduce effective XKT value. Nodes price their energy at source; the AMM applies LDF automatically based on grid topology routing.
Temporal value curve (TVC): solar energy at 2pm is worth more than at midnight. The AMM weights prices by a time-of-day demand curve, updated hourly by AI supply oracles.
6.3 Prosumer micro-markets
A rooftop solar owner in Ludhiana with a 5kW panel can register as a harvest node, mint XKT in real time, and sell surplus directly to neighbors — with no utility company intermediary, no billing cycle, and settlement in under two seconds. This is the foundational use case of xukti: turning every energy producer into a sovereign micro-utility.
Energy source registry
Xukti is source-agnostic at the protocol level. Any energy source that can be physically measured and cryptographically attested is eligible for tokenization. Each source type has a registered oracle specification — the approved measurement methodology, HSM requirements, and validation rules — that defines how its output is attested.
| Source | Token class | Oracle method | Phase |
|---|---|---|---|
| Solar PV | SolarWT | Inverter telemetry + satellite irradiance cross-check | I (live) |
| Wind | WindWT | Anemometer + SCADA feed, power curve validation | I (live) |
| Hydro / tidal | HydroWT | Flow rate sensors + turbine output, tide gauge cross-check | I (live) |
| Geothermal | GeoWT | Well-head temperature + turbine output metering | I (live) |
| Biomass / biogas | BioWT | Calorimeter + combustion CO₂ sensors | II |
| Nuclear fission | NukeWT | Grid output metering + NRC regulatory attestation | II |
| Hydrogen (H₂) | H2WT | Electrolysis flow meter + spectrometer, kg or MJ unit | II |
| Wave / OTEC | MarineWT | Buoy sensors + thermocline temperature differential | II |
| Space solar (SBSP) | SpaceWT | Orbital PV telemetry + rectenna output metering | III |
| Fusion (D-T) | FusionWT | Neutron flux + thermal output, IAEA attestation layer | IV |
Carbon accounting
Every XKT token carries an immutable carbon_gco2 field set at mint time and never changed. Solar and wind tokens carry 0.000 gCO₂/kWh. Gas peaker tokens, if ever admitted, would carry their full lifecycle carbon intensity.
Separately, every clean-energy XKT mint automatically generates a Carbon Reduction Certificate NFT — a non-fungible, tradeable record of the avoided emissions. These CRC-NFTs are designed to be compatible with existing voluntary carbon markets (Verra VCS, Gold Standard) and can be used to satisfy corporate net-zero commitments. Crucially, because they are generated atomically with the energy token, there is no double-counting: the NFT and the XKT are forever linked by transaction hash.
Governance — EnergyDAO
The xukti protocol is governed by the EnergyDAO — a decentralized autonomous organization composed of all registered harvest nodes. Governance power is allocated on the principle of one verified node, one vote. This is a deliberate departure from token-weighted voting: we believe governance power should be proportional to physical contribution to the network, not to financial stake.
The EnergyDAO has authority over: protocol parameter updates, oracle validator selection and slashing, new energy source type admissions, fee structure adjustments, and treasury allocation for grid infrastructure. All proposals require a 14-day deliberation period, a 7-day voting window, and a 60% supermajority for passage.
The EnergyDAO cannot change the fundamental peg: 1 XKT = 1 kWh, always, forever. This parameter is the protocol's constitutional anchor — it may only be changed by a 90% supermajority with a 6-month implementation delay, designed to be effectively immutable.
Roadmap
Phase I — Earth grid (2026–2028)
Deploy the xukti testnet with solar, wind, and hydro harvest nodes. Launch the XKT token standard and P2P prosumer market. Build the IoT oracle network with HSM-secured meters. Establish the EnergyDAO with founding node operators. Target: 2 million harvest nodes, 10 EJ recorded.
Phase II — Storage & hydrogen (2028–2031)
Introduce battery node DAOs as storage intermediaries. Launch the H₂ carrier bridge for solar-to-hydrogen conversion with thermodynamic loss accounting. Onboard nuclear and biomass sources. Expand oracle network to satellite cross-verification. Target: 10 million nodes, 100 EJ recorded.
Phase III — Orbital harvest (2031–2036)
Partner with space-based solar power (SBSP) developers to integrate orbital PV arrays as harvest nodes. Build the microwave downlink → rectenna oracle stack. Execute first interorbital XKT settlement. Begin lunar node feasibility study. Target: first GWh-scale single node.
Phase IV — Civilizational currency (2036+)
Integrate commercial fusion reactors as baseload FusionWT nodes. Establish lunar surface nodes. Develop relativistic-delay-tolerant smart contracts for Mars settlement. Pursue XKT adoption as a reserve currency in energy-intensive sectors: data centers, industrial manufacturing, transportation. The Kardashev horizon: XKT as the honest unit of account for a Type II civilization.
Conclusion
Xukti is a bet on the long arc of history. Every monetary system that has ever worked has been, at root, a way of tracking energy — who has contributed productive capacity to civilization, and who is owed it in return. Every system that has ever failed has done so by severing that connection: inflating away value, debasing the currency, losing touch with physical reality.
The technology to restore that connection now exists. Solar panels measure their own output to milliwatt precision. Hardware security modules can sign that measurement in microseconds. Distributed ledgers can settle the transfer in under two seconds. Zero-knowledge proofs can verify the attestation without revealing private data. The engineering is solved. What remains is the will to deploy it.
We invite hardware manufacturers, solar developers, grid operators, energy cooperatives, climate scientists, and protocol engineers to join the xukti network. Register a node. Mint your first XKT. Help build the honest currency.
— xukti core team, 2026 · xukti.com