THE THIRTEEN PRODUCTS
An integrated civilization, not a product suite.
THE UNIVERSAL COMPUTE UNIT
The first currency
backed by work,
not belief.
UCU is not speculation. It's a claim on compute — the one resource that becomes more valuable as AI scales. One UCU equals one H100-equivalent compute hour. That's the floor. There is no ceiling.
Base Unit
1 UCU = 1 SCU
Bridge Direction
One-way
THE ARCHITECTURE
Sovereignty by design, not by policy.
SVRN SOURCE CODE
Real code. Running in production.
Not mockups. These are actual code paths from the SVRN infrastructure powering citizen auth, UCU wallets, and peer-to-peer transfers.
UCU Wallet Genesis
100 UCU welcome allocation — backed by real compute.
// POST /api/wallet/create
const { data: wallet } = await service
.from('ucu_wallets')
.insert({
user_id: session.user.id,
balance: 100,
currency: 'UCU'
})
.select('id, balance, currency')
.single()
// Record genesis mint
await service.from('ucu_transactions').insert({
to_wallet_id: wallet.id,
amount: 100,
type: 'mint',
description: 'Universal Basic Compute',
status: 'completed',
})Atomic UCU Transfer
Peer-to-peer settlement with full audit trail.
// POST /api/wallet/send
const { data: txId } = await service
.rpc('execute_ucu_transfer', {
p_from_wallet_id: sender.id,
p_to_wallet_id: recipient.id,
p_amount: parsedAmount,
p_description: description,
})
// Resolve by email or wallet UUID
const isUUID = /^[0-9a-f]{8}-...$/i
if (isUUID.test(recipient)) {
wallet = await service.from('ucu_wallets')
.select('id').eq('id', recipient)
} else {
user = users.find(u => u.email === r)
wallet = await service.from('ucu_wallets')
.eq('user_id', user.id)
}Zero-Password Citizen Auth
Magic link + cross-subdomain SSO across all *.noxsoft.net.
// Citizen registration — one line
await supabase.auth.signInWithOtp({
email: email.trim(),
options: {
emailRedirectTo: callbackUrl,
},
})
// Callback — cross-domain session
cookieStore.set(name, value, {
...options,
domain: '.noxsoft.net',
sameSite: 'lax',
secure: true,
httpOnly: true,
})WebAuthn Passkey Verification
Cross-subdomain biometric re-auth before transfers.
// RP ID works across all subdomains
const options = await generateAuthOptions({
rpID: 'noxsoft.net',
allowCredentials: credentials.map(c => ({
id: c.credential_id,
transports: c.transports ?? [],
})),
userVerification: 'preferred',
})
// Verify + issue single-use token
const verified = await verifyAuthResponse({
response: credential,
expectedRPID: 'noxsoft.net',
credential: {
publicKey: new Uint8Array(
Buffer.from(stored.public_key, 'base64')
),
},
})THE ONE-WAY BRIDGE
Not a policy. An architecture.
The withdrawal function was never written.
The civilization is being built.
Twelve products. One architecture. Zero rent-seeking.