Bitcoin Forum
July 14, 2026, 11:27:05 PM *
News: Latest Bitcoin Core release: 31.1 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: [ANN] LiteDAG — World's First MiniDAG | CPU-Mineable | Fair Launch | Hybrid PoW/  (Read 160 times)
LiteDAG_01 (OP)
Newbie
*
Offline

Activity: 2
Merit: 0


View Profile
April 02, 2026, 11:19:41 AM
Last edit: April 02, 2026, 12:16:25 PM by LiteDAG_01
 #1

 
  


  LiteDAG
  The Lightest DAG — DAG benefits on a linear chain

Website | Explorer | Wallet | GitHub | Discord |Telegram | Twitter/X

  ◆ What is LiteDAG?
  

  LiteDAG is the world's first MiniDAG — a novel system that simulates a Directed Acyclic Graph (DAG) on a linear blockchain. It is secured by multi-chain Proof-of-Work via Merge-Mining.

  The protocol implements a Hybrid PoW/PoS consensus where PoW miners propose blocks and PoS stakers validate the chain's history. LiteDAG is written entirely in Go with approximately 17,000 lines of audited code and no forked runtime dependencies.

  LiteDAG had a fair launch with no ICO, no VC allocation, and no insider tokens. The only way to obtain LDG is through mining or staking.

  ◆ Key Features
  

  
  • MiniDAG Consensus — World's first DAG simulated on a linear blockchain. Side blocks are included and rewarded, not discarded. Each block stores references to the last N block hashes. Chain order is established as soon as a block is found.
  • RandomLiteDAG PoW — CPU-optimized proof-of-work algorithm derived from Tevador's RandomX. Modified with reduced scratchpad (1MB vs 2MB), program count (4 vs Cool, and Argon iterations (1 vs 3). Optimized for low-end CPUs with reduced processor cache.
  • Hybrid DPoS — PoW miners propose blocks, PoS stakers validate chain history. The hash from block N is used as a random seed to select a staking pool. The delegate must include their signature by block N+3. Missing signatures result in burned rewards.
  • Merge-Mining — Mine LiteDAG and compatible fork chains simultaneously. Same hashrate, multiple rewards, zero extra hardware cost. Based on LiteDAG's Work Commitments structure.
  • Fair Launch — No ICO, no VC allocation, no insider tokens, no premine. 10% treasury fee on block rewards only.
  • 100% Original Codebase — Written in Go, ~17,000 lines of audited code, zero forked runtime dependencies.

  ◆ Specifications
  

  
AlgorithmRandomLiteDAG (based on RandomX)
ConsensusHybrid PoW/PoS with Merge-Mining
Block Time15 seconds
Block Reward20 LDG (decreases 10% every 91 days)
Reward SplitMiner 50% | Staker 40% | Treasury 10%
Tail Emission1 LDG/block perpetual (~2.1M LDG/year)
Initial Supply~196.4M LDG (Virel snapshot, 1:1 migration)
New Emission~115.3M LDG from block rewards
PremineNone
ICO/VCNone
P2P Port6310
RPC Port6311
Stratum Port6312
Address Prefixv
LanguageGo
Mainnet LaunchAugust 2025

  ◆ Emission Schedule
  

  Unlike Bitcoin's discrete halvings, LiteDAG's block reward decreases smoothly by 10% every season (91 days), with a 6-month stability period before reductions commence.

  
PeriodBlock RewardDaily Emission
Months 0–620 LDG~115,200 LDG
Months 6–918 LDG~103,680 LDG
Months 9–1216.2 LDG~93,312 LDG
Year 2~13–10 LDG~75,000–58,000 LDG
Year 3+~5–8 LDG~29,000–46,000 LDG
Tail (perpetual)1 LDG5,760 LDG

  If no staker signs a block, the 40% staker share is burned.

  ◆ Mining
  

  LiteDAG uses RandomLiteDAG, a CPU-optimized proof-of-work algorithm. Anyone with a computer can participate.

  Option 1: XMRig (Recommended)
  Uses all CPU threads, significantly faster than the built-in miner.
  
Code:
  ./xmrig -o node.litedag.com:6312 -u <your-wallet-address> -a rx/litedag
  

  Option 2: Built-in CPU Miner
  
Code:
  git clone https://github.com/litedag-chain/litedag-blockchain.git
  cd litedag-blockchain
  go build -o litedag-node ./cmd/litedag-node
  ./litedag-node --mine <your-wallet-address> --data-dir ./data
  

  Option 3: Local Node + XMRig
  For better decentralization, run your own node:
  
Code:
  ./litedag-node --data-dir ./data --public-rpc --stratum-bind-ip 0.0.0.0
  ./xmrig -o 127.0.0.1:6312 -u <your-wallet-address> -a rx/litedag
  

  Create a Wallet:
  
Code:
  go build -o litedag-wallet-cli ./cmd/litedag-wallet-cli
  ./litedag-wallet-cli
  > create
  
 Addresses start with "v".

  ◆ Staking
  

  Stakers earn 40% of block rewards (8 LDG per block at current rate).

  
  • Minimum stake: 10,000 LDG
  • Delegate registration: 1,000 LDG (burned)
  • Lock period: 2 months
  • Rewards auto-compound into your delegate's staked balance
  • If no staker signs, the 40% share is burned

  See the full staking guide: litedag.com/docs/guides/staking

  ◆ Roadmap
  

  Phase 1 — Completed
  
  • Core protocol development (Nov 2023)
  • ASIC/FPGA/GPU-resistant PoW (Jul 2024)
  • Merge-Mining network (Jul 2024)
  • MiniDAG implementation (Jan 2025)
  • Public testnet and stagenet
  • Mainnet launch (Aug 2025)
  • Hybrid PoS integration (Sep 2025)
  • GUI wallet for Linux/Windows

  Phase 2 — In Progress
  
  • Exchange listings
  • Android GUI wallet

  Phase 3 — Planned
  
  • Bounties platform
  • Smart contracts research
  • Quantum resistance

  ◆ Downloads
  

  Source Code
  Core Node + Wallet CLI (Go)
  Website, Explorer, Wallet (TypeScript/Next.js)
  PoW Algorithm Bindings (C)

  Web Tools
  Web Wallet
  Block Explorer

  ◆ Exchanges
  

  
  ◆ Community
  

  Discord
  Telegram
  Twitter/X
  Matrix
  GitHub
  Documentation

  LiteDAG is an open-source community project. There is no company behind this coin. Do your own research.
LiteDAG_01 (OP)
Newbie
*
Offline

Activity: 2
Merit: 0


View Profile
April 02, 2026, 11:29:41 AM
 #2

Reserved for updates
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!