Consensus Proof of Time
Supply 25,228,800
Source GitHub ↗

Deterministic Ordering through Linear Iterations

A Peer-to-Peer Electronic Cash System

Based on Verifiable Time

Transactions are ordered through verifiable time. Blocks are produced at fixed intervals using a sequential delay function that cannot be parallelized. Consensus weight emerges from time rather than trust or scale.

Technical Specifications
Slot Time
10s
Epoch
1 hour
Halving
~4 years
VDF
Proof of Time
Signatures
Ed25519
Pre-mine
None
Become a Block Producer
# Install (auto-detects your OS and architecture)
curl -sSfL https://doli.network/install.sh | sh

Installs doli-node and doli from GitHub Releases

Manual Download
Linux x86_64.tar.gz
macOS Apple Silicon.tar.gz
# 1. Create wallet
doli new                              # save your 24-word seed!

# 2. Check your address and balance
doli info                             # shows your doli1... address
doli balance                          # check your balance

# 3. Start node (leave running, recommended: configure as a persistent service)
doli-node run --yes

# 4. Register as producer (in a second terminal, requires 10 DOLI per bond)
doli producer register --bonds 1      # bond 10 DOLI

# 5. Restart node as producer (Ctrl+C first, then:)
doli-node run --producer --producer-key ~/.doli/wallet.json --yes