MAINNET LIVE๐Ÿ” Post-QuantumAGPL-3.0

TheBlockchainThatQuantumCannotBreak.

Unauthority is a post-quantum secure, permissionless Layer 1 blockchain with DAG block-lattice architecture, aBFT consensus, Tor-native validator privacy, WASM smart contracts, and 100% fair distribution via PoW mining.

Block #โ€”โ€” Validatorsโ€” PeersMAINNET
terminalbash
# 3 commands to run a validator
$ sudo apt install -y tor
$ git clone github.com/mky-los/\
unauthority-core && ./install.sh\
--mainnet
$ export LOS_WALLET_PASSWORD='...'
./target/release/los-node --port 3030
โœ“ New wallet created: LOSW...
โœ“ Tor detected at 127.0.0.1:9050
โœ“ Connected to 4 bootstrap peers
โœ“ Syncing to mainnet...

Latest Block

โ€”

Live from API

Validators

โ€”

aBFT Consensus

Total Supply

0

LOS

Fixed, Non-Inflationary

Fair Launch

0.00%

Via PoW Mining

Live data from los.yourmoonkey.com/api โ€” public node, no auth required

CORE FEATURES

Built Different.
Built to Last.

Every architectural decision โ€” from cryptography to consensus to distribution โ€” was made for one goal: a blockchain that cannot be compromised, co-opted, or corrupted.

Post-Quantum Security

Dilithium5 (NIST FIPS 204) protects every wallet and transaction against classical AND quantum attacks. Public key: ~2.5KB. Signature: ~4.6KB. 256-bit classical security, 128-bit quantum security.

๐Ÿ” Dilithium5 ยท NIST FIPS 204

DAG Block-Lattice

Each account has its own independent chain. Transactions on different accounts process in parallel โ€” zero global block contention, no bottleneck, no mempool. Instant sender-side confirmation.

Parallel Processing

aBFT Consensus

Asynchronous Byzantine Fault Tolerance guarantees finality even under network partitions. Requires 2/3+ validator quorum. ~2โ€“3 second finality. No forks, no reorgs.

~2s Finality

Tor-Native Privacy

Validators strongly recommended to run as Tor hidden services (.onion addresses). No IP exposure, no DNS required, no central point of failure. Auto-detected SOCKS5 at 127.0.0.1:9050.

๐Ÿง… .onion Recommended

WASM Smart Contracts

The UVM (Unauthority Virtual Machine) executes any language that compiles to WASM. 16 host functions injected. USP-01 native fungible token standard. Wrapped assets (wBTC, wETH) supported.

UVM Powered

Built-in DEX AMM

Constant-product AMM (xยทy=k) is native to the protocol. 0.3% default fee. MEV protection via deadline parameter and slippage checks. LP tokens minted proportionally. 100% integer math, zero floating-point.

MEV Protected

100% Fair Launch

No ICO. No pre-mine. No VC allocation. No token sale. Mining is the ONLY way to acquire LOS from the public pool. The 4 genesis validators earn ZERO rewards. 96.45% of supply goes to public miners.

No ICO ยท No Pre-mine

Integer Math Only

Zero floating-point in any consensus-critical path. All monetary values stored as u128 CIL (atomic units). Fully deterministic across all nodes โ€” no rounding errors, no consensus failures from precision bugs.

u128 Precision

From Zero to Validator
in 3 Steps.

1

Install & Build

Install Tor. Clone the repo. Run install.sh --mainnet

bash
sudo apt install tor
git clone https://github.com/mky-los/unauthority-core.git
cd unauthority-core && ./install.sh --mainnet
2

Run Your Node

Set your wallet password. Node auto-discovers 4 bootstrap peers, generates Dilithium5 keypair, syncs to mainnet.

bash
export LOS_WALLET_PASSWORD='your-strong-password'
./target/release/los-node --port 3030
3

Start Mining

Add --mine flag. SHA3-256 PoW finds valid hash. 100 LOS credited in ~2-3 seconds via aBFT consensus.

bash
./target/release/los-node --mine
# Check: curl http://localhost:3030/reward-info

ARCHITECTURE

Built in Rust.
Designed for the Long Run.

los-node
~9,000
los-core
~3,000
los-consensus
~2,500
los-crypto
~800
los-vm
~1,200
los-network
~1,800
los-contracts
~1,500

0

Tests

Across 10 crates + E2E suites

0+

REST API Endpoints

+ gRPC API

0

Crates

Rust workspace, ~20,000 lines

AGPL-3.0

Open Source

Full transparency

No ICO. No Pre-mine. No VC. No Bullshit.

Mining is the ONLY way to acquire LOS from the public pool. The 4 genesis validators don't even earn rewards. Every address is publicly disclosed and verifiable on-chain.

0.00%

Public Mining

21,158,413 LOS

SHA3-256 PoW โ€” Anyone can mine

0.00%

Dev Treasury

773,823 LOS

4 wallets, publicly disclosed

0%

ICO / VC

Pre-mine

No token sale ever.

Public Mining96.45%
Dev Treasury3.53%
Bootstrap Stake0.02%
View Genesis Transparency Report

PROOF-OF-WORK DISTRIBUTION

Mine LOS.
Any CPU. No ASIC.

Reward/Epoch

100 LOS

Epoch Duration

1 hour

Algorithm

SHA3-256

Halving

~1 year

SHA3-256 has minimal GPU/ASIC advantage over standard CPUs. A $200 laptop mines as efficiently per-watt as a data center. This was a deliberate design choice for fair distribution.

Full Mining Guide
mining-algorithm.rsrust
SHA3-256(
"LOS_MINE_V1" "cmt">// Domain separator
|| chain_id "cmt">// Prevents replay attacks
|| address "cmt">// Bound to YOUR address
|| epoch "cmt">// Current hour only
|| nonce "cmt">// Value being iterated
)

Address-bound

Proof cannot be stolen or pooled.

Epoch-bound

Valid for this hour only. No stockpiling.

Sybil-neutral

1 reward per address per epoch. Immediate finality via aBFT.

SECURITY MODEL

Layered Defense.
Post-Quantum Ready.

Layer 1

Cryptography

  • โ€บDilithium5 (NIST FIPS 204)
  • โ€บ256-bit classical, 128-bit quantum security
  • โ€บPublic key: ~2.5KB, Signature: ~4.6KB

Layer 2

Consensus

  • โ€บaBFT โ€” tolerates f < n/3 Byzantine validators
  • โ€บRequires 2/3+ quorum for finality
  • โ€บNo forks, no reorgs

Layer 3

Network

  • โ€บTor .onion strongly recommended
  • โ€บNoise Protocol for P2P encryption
  • โ€บNo DNS dependency, no IP exposure

Layer 4

Voting

  • โ€บLinear: 1 LOS = 1 vote
  • โ€บSybil-neutral stake-weighted consensus
  • โ€บNo plutocracy โ€” proportional

Layer 5

Determinism

  • โ€บu128 integer math everywhere
  • โ€บZero f32/f64 in consensus-critical path
  • โ€บIdentical results on every node

Layer 6

Accountability

  • โ€บDouble-sign: 100% stake + permanent ban
  • โ€บDowntime (<95%): 1% stake slashing
  • โ€บAnti-spam: PoW nonce + BASE_FEE_CIL (100,000 CIL flat fee)
  • โ€บSlashing stats: GET /slashing

PUBLIC REST API

50+ Endpoints.
No Auth Required.

Base URL: https://los.yourmoonkey.com/api

GET/health
GET/node-info
GET/supply
MethodPath
GET/health
GET/node-info
GET/supply
GET/bal/{address}
GET/account/{address}
GET/history/{address}
GET/validators