You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-7Lines changed: 5 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
## Unchained
2
2
3
-
### A post‑quantum, privacy‑preserving proof‑of‑work chain you can run today but is still in heavy development -- I tend to push to prod
3
+
### A post‑quantum safe, proof‑of‑work unchain you can run today but is still in heavy development -- I tend to push to prod
4
4
5
5
Unchained is a blockchain designed for the next decades of cryptography. It combines:
6
6
- memory‑hard Argon2id proof‑of‑work,
@@ -9,12 +9,12 @@ Unchained is a blockchain designed for the next decades of cryptography. It comb
9
9
- efficient Merkle proofs per epoch,
10
10
- and a simple, production‑oriented node you can compile and mine in minutes.
11
11
12
-
You get a straightforward UTXO‑style system with private receiving, deterministic verification, and a gossip network that favors practicality over ceremony.
12
+
You get a straightforward UTXO‑style system with private transfers, deterministic verification, and a gossip network that favors practicality over ceremony.
13
13
14
14
### Unchained
15
-
- Post‑quantum by default: Kyber768 (ML‑KEM) for private receiving, and BLAKE3 for fast hashing and domain‑separated derivations throughout.
15
+
- Post‑quantum by default: Kyber768 (ML‑KEM) for private transfers, and BLAKE3 for fast hashing and domain‑separated derivations throughout.
16
16
- Private by design: recipients get coins via stealth outputs; senders don’t reveal long‑term keys. Inclusion is proven via Merkle paths, not global scans.
17
-
- Simple consensus: memory‑hard Argon2id PoW selects coins per epoch; every epoch commits a Merkle root. No heavy scripting, no fragile dependencies.
17
+
- Simple consensus: memory‑hard Argon2id PoW selects coins per epoch; every epoch commits a Merkle root.
18
18
- Efficient verification: compact proofs; local nodes verify inclusion, nullifier uniqueness, and commitments deterministically.
19
19
20
20
---
@@ -47,9 +47,7 @@ source "$HOME/.cargo/env"
47
47
```bash
48
48
git clone https://github.com/Numi2/unchained.git
49
49
cd unchained
50
-
cargo build --release
51
-
# Start a node; it will create a wallet, sync, and can mine depending on config
52
-
target/release/unchained
50
+
cargo build --release && cargo run --release --bin unchained mine
0 commit comments