Key architectural updates have been implemented, moving the project significantly forward. The network logic still requires refinement due to the system's complexity. Each new commit brings us closer to the goal, and the final solution is taking clear shape.
Currently working through the most challenging phase of development. The network stability issues are complex and will take time to resolve completely. Actively working to resolve these challenges while maintaining sustainable development pace. Once these core problems are solved, the testing phases can begin:
Phase One: Node activation through browser extension with real 1DEV token burning (on testnet)
Phase Two: Comprehensive mobile application testing
Final Phase: Production-ready blockchain with complete ecosystem
Development continues with steady progress toward implementing the features this project was designed for. Soon users will be able to activate nodes themselves and become part of the QNET network!
https://github.com/AIQnetLab/QNet-Blockchain/commit/e08b9b07cf496021d74bcb8e70064044b7aa7fb1
Currently working through the most challenging phase of development. The network stability issues are complex and will take time to resolve completely. Actively working to resolve these challenges while maintaining sustainable development pace. Once these core problems are solved, the testing phases can begin:
Phase One: Node activation through browser extension with real 1DEV token burning (on testnet)
Phase Two: Comprehensive mobile application testing
Final Phase: Production-ready blockchain with complete ecosystem
Development continues with steady progress toward implementing the features this project was designed for. Soon users will be able to activate nodes themselves and become part of the QNET network!
https://github.com/AIQnetLab/QNet-Blockchain/commit/e08b9b07cf496021d74bcb8e70064044b7aa7fb1
GitHub
feat: Implement lock-free P2P operations for 10M+ node scalability · AIQnetLab/QNet-Blockchain@e08b9b0
BREAKING CHANGE: P2P structure migrated from Vec to HashMap
Major improvements:
- Add DashMap for lock-free concurrent operations without blocking
- Implement dual indexing (by address and node ID...
Major improvements:
- Add DashMap for lock-free concurrent operations without blocking
- Implement dual indexing (by address and node ID...
🔥15❤2
Technical Blockchain Overview
Processing Speed QNET demonstrates 424,411 transactions per second in tests - that's 14,000x faster than Ethereum (30 TPS), 6.5x faster than Solana (65,000 TPS), 17.7x faster than Visa (~24,000 TPS), and 60,630x faster than Bitcoin (7 TPS). This is achieved through microblocks every second + macroblocks every 90 seconds for final confirmation.
Quantum Computer Protection Most modern blockchains use cryptography that may be vulnerable to future quantum computers. QNET implements quantum-resistant algorithms CRYSTALS-Dilithium + hybrid protection with Ed25519 for compatibility.
Revolutionary P2P Architecture Instead of simple gossip protocol, QNET uses regional clustering (North America, South America, Africa, Europe, Asia, Oceania) + DHT routing (distributed hash table for efficient node discovery). The system automatically enables sharding (splitting network into smaller parts) when growing to 10K+ nodes and lock-free structures (concurrent data access without blocking) at 100K+ nodes.
Commit-Reveal Consensus Unique two-phase mechanism: first validators send encrypted votes, then reveal them. This prevents vote manipulation and last-minute changes - no other blockchain does this.
Mobile Revolution QNET runs on smartphones with 2GB memory, showing 8,859 TPS on mobile devices while consuming less than 0.01% battery per hour. Most blockchains only support mobile wallets, QNET first implements full light-nodes with equal rewards.
Accessible Participation Ethereum requires locking $100,000+ for consensus participation. QNET uses a reputation system and requires only 1,500 1DEV tokens (currently ~11 cents) for unlimited mining participation.
Efficient Storage Zstd compression + column families in RocksDB (organized database storage for different data types) + distributed chunk storage. Nodes store only 3-8 fragments instead of full history, dramatically reducing space requirements.
Parallel Processing ParallelValidator with multiple threads (simultaneous processing cores) + DashMap for lock-free operations + batch processing up to 5,000 transactions simultaneously - this optimization stack hasn't been implemented by anyone else yet.
Status: Experimental All metrics from controlled tests, real production environment will show true performance. Code is open source on GitHub for study and verification.
If the technology proves viable - this opens instant micropayments and mass blockchain adoption without technical barriers.
https://github.com/AIQnetLab/QNet-Blockchain/tree/testnet
Processing Speed QNET demonstrates 424,411 transactions per second in tests - that's 14,000x faster than Ethereum (30 TPS), 6.5x faster than Solana (65,000 TPS), 17.7x faster than Visa (~24,000 TPS), and 60,630x faster than Bitcoin (7 TPS). This is achieved through microblocks every second + macroblocks every 90 seconds for final confirmation.
Quantum Computer Protection Most modern blockchains use cryptography that may be vulnerable to future quantum computers. QNET implements quantum-resistant algorithms CRYSTALS-Dilithium + hybrid protection with Ed25519 for compatibility.
Revolutionary P2P Architecture Instead of simple gossip protocol, QNET uses regional clustering (North America, South America, Africa, Europe, Asia, Oceania) + DHT routing (distributed hash table for efficient node discovery). The system automatically enables sharding (splitting network into smaller parts) when growing to 10K+ nodes and lock-free structures (concurrent data access without blocking) at 100K+ nodes.
Commit-Reveal Consensus Unique two-phase mechanism: first validators send encrypted votes, then reveal them. This prevents vote manipulation and last-minute changes - no other blockchain does this.
Mobile Revolution QNET runs on smartphones with 2GB memory, showing 8,859 TPS on mobile devices while consuming less than 0.01% battery per hour. Most blockchains only support mobile wallets, QNET first implements full light-nodes with equal rewards.
Accessible Participation Ethereum requires locking $100,000+ for consensus participation. QNET uses a reputation system and requires only 1,500 1DEV tokens (currently ~11 cents) for unlimited mining participation.
Efficient Storage Zstd compression + column families in RocksDB (organized database storage for different data types) + distributed chunk storage. Nodes store only 3-8 fragments instead of full history, dramatically reducing space requirements.
Parallel Processing ParallelValidator with multiple threads (simultaneous processing cores) + DashMap for lock-free operations + batch processing up to 5,000 transactions simultaneously - this optimization stack hasn't been implemented by anyone else yet.
Status: Experimental All metrics from controlled tests, real production environment will show true performance. Code is open source on GitHub for study and verification.
If the technology proves viable - this opens instant micropayments and mass blockchain adoption without technical barriers.
https://github.com/AIQnetLab/QNet-Blockchain/tree/testnet
GitHub
GitHub - AIQnetLab/QNet-Blockchain at testnet
Post-Quantum Decentralized Network. Contribute to AIQnetLab/QNet-Blockchain development by creating an account on GitHub.
🔥8❤4👏1
Significant progress in network consensus: managed to launch a test network of 5 nodes that processed 10,000 microblocks over 9 hours of continuous operation. This confirms the correctness of the basic consensus logic.
The identified long-term stability issue has been found and resolved through log analysis. Will run additional network tests soon to confirm the stability of the fixes.
The fact of processing 10K blocks shows that QNET's architectural core works according to specification. Continuing debugging to ensure reliable operation before moving to the next development stages.
The identified long-term stability issue has been found and resolved through log analysis. Will run additional network tests soon to confirm the stability of the fixes.
The fact of processing 10K blocks shows that QNET's architectural core works according to specification. Continuing debugging to ensure reliable operation before moving to the next development stages.
🔥14❤1👏1
Major System Update - Second Major Update Today
Now: 19 files changed, +1,635/-83 lines
Earlier: 5 files changed, +801/-3 lines
Added automatic QNC (QNET Coin) reward distribution every 4 hours and maximum supply control. Implemented reward sharding architecture to support future scaling to millions of participants.
Enhanced network reliability through additional metrics and RocksDB database. This ensures stable operation and quick recovery when needed.
Optimized reputation logic and halving mechanisms.
Significant progress toward production readiness in a single day.
https://github.com/AIQnetLab/QNet-Blockchain/commit/9cc19c5ab3e373007481c36718112a432d414830
Now: 19 files changed, +1,635/-83 lines
Earlier: 5 files changed, +801/-3 lines
Added automatic QNC (QNET Coin) reward distribution every 4 hours and maximum supply control. Implemented reward sharding architecture to support future scaling to millions of participants.
Enhanced network reliability through additional metrics and RocksDB database. This ensures stable operation and quick recovery when needed.
Optimized reputation logic and halving mechanisms.
Significant progress toward production readiness in a single day.
https://github.com/AIQnetLab/QNet-Blockchain/commit/9cc19c5ab3e373007481c36718112a432d414830
GitHub
feat: implement complete QNC tokenomics, failover monitoring, and sca… · AIQnetLab/QNet-Blockchain@9cc19c5
…lability improvements
- Fix QNC emission rate to 251,432.34 QNC per 4 hours (corrected from 245,100.67)
- Standardize QNC decimals to 9 across all modules
- Implement MAX_SUPPLY control (2^32 QNC...
- Fix QNC emission rate to 251,432.34 QNC per 4 hours (corrected from 245,100.67)
- Standardize QNC decimals to 9 across all modules
- Implement MAX_SUPPLY control (2^32 QNC...
🔥10❤1
QNET: Post-Quantum Decentralized Network
Phase 1: 1DEV Token
Built on Solana as SPL token. Users burn 1DEV to activate nodes in upcoming QNET blockchain. Current cost: 1,500 1DEV (~13cents) for unlimited mining access. Price decreases as more supply burns - creating deflationary economics.
Phase 2: QNC Native Token
Triggers when 90% of 1DEV burned OR after 5 years from genesis. QNC (QNET COIN) becomes native currency with 4,294,967,296 max supply (2^32). Features unique "Sharp Drop" halving - rewards halve every 4 years, then drop 10x at year 20, then resume halving.
Three Reward Pools:
Pool #1: Base emission (starts 251,432 QNC per 4h, halves every 4 years)
Pool #2: Transaction fees (70% to server super nodes, 30% to full nodes)
Pool #3: Node activation fees redistributed to ALL active participants (Phase 2 only)
No Staking Required
Uses reputation system instead of locking tokens. Mobile light-nodes get equal rewards as servers. Participation based on reliable behavior, not capital.
Key Innovation:
Phase 1: 1DEV tokens are burned for node activation. Phase 2: node activation requires QNC payment to Pool #3. Both phases designed for fair distribution without traditional venture capital funding or premine.
This experimental approach proves independent developers can create advanced blockchain technology using modern AI tools.
https://x.com/AIQnetLab
Phase 1: 1DEV Token
Built on Solana as SPL token. Users burn 1DEV to activate nodes in upcoming QNET blockchain. Current cost: 1,500 1DEV (~13cents) for unlimited mining access. Price decreases as more supply burns - creating deflationary economics.
Phase 2: QNC Native Token
Triggers when 90% of 1DEV burned OR after 5 years from genesis. QNC (QNET COIN) becomes native currency with 4,294,967,296 max supply (2^32). Features unique "Sharp Drop" halving - rewards halve every 4 years, then drop 10x at year 20, then resume halving.
Three Reward Pools:
Pool #1: Base emission (starts 251,432 QNC per 4h, halves every 4 years)
Pool #2: Transaction fees (70% to server super nodes, 30% to full nodes)
Pool #3: Node activation fees redistributed to ALL active participants (Phase 2 only)
No Staking Required
Uses reputation system instead of locking tokens. Mobile light-nodes get equal rewards as servers. Participation based on reliable behavior, not capital.
Key Innovation:
Phase 1: 1DEV tokens are burned for node activation. Phase 2: node activation requires QNC payment to Pool #3. Both phases designed for fair distribution without traditional venture capital funding or premine.
This experimental approach proves independent developers can create advanced blockchain technology using modern AI tools.
https://x.com/AIQnetLab
X (formerly Twitter)
QNET BLOCKCHAIN (@AIQnetLab) on X
https://t.co/Yo6S9fF27S https://t.co/FmGnpGNIYA
4R3DPW4BY97kJRfv8J5wgTtbDpoXpRv92W957tXMpump
4R3DPW4BY97kJRfv8J5wgTtbDpoXpRv92W957tXMpump
🔥14❤1
Critical Network Stability
Improvements Implemented entropy-based block producer selection using previous block hash. New microblock producer chosen every 30 seconds (microblocks aggregate into macroblocks every 90 seconds) - impossible to predict or manipulate the sequence.
Added snapshot system with LZ4 compression every 1,000 blocks. New nodes sync in minutes instead of hours. Automatic cleanup of old snapshots saves storage space.
Implemented deadlock protection with automatic recovery through timeouts and health monitoring. Nodes self-recover from any state without manual intervention.
Parallel synchronization through 4 workers accelerates block downloads 4-10x. Catching up 50,000 blocks takes 8 minutes instead of an hour.
Removed dependencies on centralized IPFS gateways. Snapshots distribute through P2P without single point of failure.
4 files changed, +939/-42 lines. https://github.com/AIQnetLab/QNet-Blockchain/commit/378d2e54f27dfa3de2458908456012bc7388668f
9 files changed, +379/-31 lines. https://github.com/AIQnetLab/QNet-Blockchain/commit/02a80420cb57e10959764e158e0b379b716810f6
Running tests now. Looking forward to recording video of the network in action - getting close and it's exciting to see everything coming together.
Improvements Implemented entropy-based block producer selection using previous block hash. New microblock producer chosen every 30 seconds (microblocks aggregate into macroblocks every 90 seconds) - impossible to predict or manipulate the sequence.
Added snapshot system with LZ4 compression every 1,000 blocks. New nodes sync in minutes instead of hours. Automatic cleanup of old snapshots saves storage space.
Implemented deadlock protection with automatic recovery through timeouts and health monitoring. Nodes self-recover from any state without manual intervention.
Parallel synchronization through 4 workers accelerates block downloads 4-10x. Catching up 50,000 blocks takes 8 minutes instead of an hour.
Removed dependencies on centralized IPFS gateways. Snapshots distribute through P2P without single point of failure.
4 files changed, +939/-42 lines. https://github.com/AIQnetLab/QNet-Blockchain/commit/378d2e54f27dfa3de2458908456012bc7388668f
9 files changed, +379/-31 lines. https://github.com/AIQnetLab/QNet-Blockchain/commit/02a80420cb57e10959764e158e0b379b716810f6
Running tests now. Looking forward to recording video of the network in action - getting close and it's exciting to see everything coming together.
GitHub
fix: improve consensus validation and network stability · AIQnetLab/QNet-Blockchain@378d2e5
- Enhanced producer selection with blockchain-based entropy
- Fixed reputation threshold validation (>=70% eligibility)
- Added state snapshot system (incremental/full snapshots)
- Implement...
- Fixed reputation threshold validation (>=70% eligibility)
- Added state snapshot system (incremental/full snapshots)
- Implement...
🔥18👏2💯1
Architecting a post-quantum blockchain ecosystem using AI collaboration
What I've orchestrated in 7 months:
• 194K+ lines of production code
• Blockchain with 400K+ TPS capability
• Enterprise wallet
• P2P network architecture (near completion)
• Post-quantum security
Traditional development would require:
• Senior Rust Developer: $140K/year × 20 months
• Frontend Engineer: $120K/year × 16 months
• DevOps Specialist: $130K/year × 18 months
• Security Engineer: $150K/year × 15 months
Total traditional cost:
• Team salaries: $1.82M
• Infrastructure & tools: $300K
• Total budget: $2.12M over 20+ months
My approach: AI-powered technical architecture
• Timeline: 7 months vs 20+ months traditional
• Cost: AI subnoscriptions, servers
• Speed advantage: 3x faster
Demonstrating the future of blockchain development
https://github.com/AIQnetLab/QNet-Blockchain/tree/testnet
What I've orchestrated in 7 months:
• 194K+ lines of production code
• Blockchain with 400K+ TPS capability
• Enterprise wallet
• P2P network architecture (near completion)
• Post-quantum security
Traditional development would require:
• Senior Rust Developer: $140K/year × 20 months
• Frontend Engineer: $120K/year × 16 months
• DevOps Specialist: $130K/year × 18 months
• Security Engineer: $150K/year × 15 months
Total traditional cost:
• Team salaries: $1.82M
• Infrastructure & tools: $300K
• Total budget: $2.12M over 20+ months
My approach: AI-powered technical architecture
• Timeline: 7 months vs 20+ months traditional
• Cost: AI subnoscriptions, servers
• Speed advantage: 3x faster
Demonstrating the future of blockchain development
https://github.com/AIQnetLab/QNet-Blockchain/tree/testnet
GitHub
GitHub - AIQnetLab/QNet-Blockchain at testnet
Post-Quantum Decentralized Network. Contribute to AIQnetLab/QNet-Blockchain development by creating an account on GitHub.
❤8🔥6👏4👍1
Today marks exactly one week since QNET launched - the first blockchain on pump fun. I want to share two important updates.
1. In a few hours, after the next unlock from the short-term vesting contract (https://app.streamflow.finance/contract/solana/mainnet/5cpMZt5xftxPoFLeoXehcoQNe2z9RKtZZ3mzrKnYn97L), I'll send another 5% of tokens into a new two-year quarterly vesting.
Together with the already locked 15% (https://app.streamflow.finance/contract/solana/mainnet/AEfkhkpTeAgVz15f5avNoE1EnyPy86RUt7wtv3Xew2x2), this will total 20% of my 25% locked for the long term.
2. Today a new, more powerful AI model for coding was released, which I've already started using. Development will move even faster now.
I want to thank every community member for your support and kindness. For every like and repost, for your faith in the project, for all your efforts. Building this together with you all means a lot. I'm confident that over time, through our collective effort, persistence, and belief, we'll create results we can all be proud of.
Thank you for being here.
1. In a few hours, after the next unlock from the short-term vesting contract (https://app.streamflow.finance/contract/solana/mainnet/5cpMZt5xftxPoFLeoXehcoQNe2z9RKtZZ3mzrKnYn97L), I'll send another 5% of tokens into a new two-year quarterly vesting.
Together with the already locked 15% (https://app.streamflow.finance/contract/solana/mainnet/AEfkhkpTeAgVz15f5avNoE1EnyPy86RUt7wtv3Xew2x2), this will total 20% of my 25% locked for the long term.
2. Today a new, more powerful AI model for coding was released, which I've already started using. Development will move even faster now.
I want to thank every community member for your support and kindness. For every like and repost, for your faith in the project, for all your efforts. Building this together with you all means a lot. I'm confident that over time, through our collective effort, persistence, and belief, we'll create results we can all be proud of.
Thank you for being here.
app.streamflow.finance
Streamflow - Token vesting, airdrops, staking & more
Streamflow is the leading multi-chain asset streaming protocol specializing in token vesting, streaming payments and treasury management solutions.
❤11🔥6👏3🤨1
Over 20% of my 25% tokens now locked in vesting
As promised, sent 5% tokens into 2-year quarterly vesting:
https://app.streamflow.finance/contract/solana/mainnet/BQZvm5cBWFnKBVHVYZf63wM96YqtQM6V5vMiCDFXUEvz
Another 15% already in 2-year vesting:
https://app.streamflow.finance/contract/solana/mainnet/AEfkhkpTeAgVz15f5avNoE1EnyPy86RUt7wtv3Xew2x2
Additional 4.5% in linear vesting until October 7:
https://app.streamflow.finance/contract/solana/mainnet/5cpMZt5xftxPoFLeoXehcoQNe2z9RKtZZ3mzrKnYn97L
As promised, sent 5% tokens into 2-year quarterly vesting:
https://app.streamflow.finance/contract/solana/mainnet/BQZvm5cBWFnKBVHVYZf63wM96YqtQM6V5vMiCDFXUEvz
Another 15% already in 2-year vesting:
https://app.streamflow.finance/contract/solana/mainnet/AEfkhkpTeAgVz15f5avNoE1EnyPy86RUt7wtv3Xew2x2
Additional 4.5% in linear vesting until October 7:
https://app.streamflow.finance/contract/solana/mainnet/5cpMZt5xftxPoFLeoXehcoQNe2z9RKtZZ3mzrKnYn97L
app.streamflow.finance
Streamflow - Token vesting, airdrops, staking & more
Streamflow is the leading multi-chain asset streaming protocol specializing in token vesting and treasury management solutions.
🔥10👏4👍3❤2
Critical Storage System Update
Implemented adaptive block compression with automatic level selection based on data age. Recent blocks remain uncompressed for fast access, older blocks compress aggressively - saving up to 95% space.
Added delta-encoding between sequential blocks - system saves only changes instead of full copies.
Fixed critical scaling issue for sharded networks (network split into parallel chains for higher throughput). Full nodes now automatically adapt storage volume based on active shard count.
Three storage modes:
Light nodes: block headers only (~50-100 MB) for mobile devices
Full nodes: sliding window (~50-100 GB) - constant size, doesn't grow
Super nodes: complete history (~1.8 TB over 50 years) instead of 1.5 PB without optimizations
Added state snapshots with SHA3-256 integrity verification for fast new node synchronization.
Results:
Super nodes: 833x less space (1.8 TB vs 1.5 PB over 50 years)
Full nodes: constant 50-100 GB size instead of infinite growth
Light nodes: optimized for mobile devices
4 files changed, +1439/-173 lines. Network ready for long-term scaling without explosive storage requirements.
https://github.com/AIQnetLab/QNet-Blockchain/commit/e1e33569e1729bc71d7cf39806b8cf3d086e90aa
Implemented adaptive block compression with automatic level selection based on data age. Recent blocks remain uncompressed for fast access, older blocks compress aggressively - saving up to 95% space.
Added delta-encoding between sequential blocks - system saves only changes instead of full copies.
Fixed critical scaling issue for sharded networks (network split into parallel chains for higher throughput). Full nodes now automatically adapt storage volume based on active shard count.
Three storage modes:
Light nodes: block headers only (~50-100 MB) for mobile devices
Full nodes: sliding window (~50-100 GB) - constant size, doesn't grow
Super nodes: complete history (~1.8 TB over 50 years) instead of 1.5 PB without optimizations
Added state snapshots with SHA3-256 integrity verification for fast new node synchronization.
Results:
Super nodes: 833x less space (1.8 TB vs 1.5 PB over 50 years)
Full nodes: constant 50-100 GB size instead of infinite growth
Light nodes: optimized for mobile devices
4 files changed, +1439/-173 lines. Network ready for long-term scaling without explosive storage requirements.
https://github.com/AIQnetLab/QNet-Blockchain/commit/e1e33569e1729bc71d7cf39806b8cf3d086e90aa
GitHub
feat: optimize storage architecture for 50-year scalability · AIQnetLab/QNet-Blockchain@e1e3356
Major storage optimization with 833x reduction (1.5 PB -> 1.8 TB):
Storage Targets Achieved:
- Super nodes: 1.8 TB / 50 years (~36 GB/year)
- Full nodes: 50-100 GB constant (sliding window)...
Storage Targets Achieved:
- Super nodes: 1.8 TB / 50 years (~36 GB/year)
- Full nodes: 50-100 GB constant (sliding window)...
❤11👏2🎉1
Development expenses this month: 1818$. Most of the spending occurred in the last 7 days after launching the 1DEV token - on AI coding tool. Progress continues steadily.
👍10🔥7❤2😡2
QNET Tokenomics
Phase 1: 1DEV on Solana
Token: 1DEV (SPL Token)
• Total Supply: 1,000,000,000 1DEV
• Contract: 4R3DPW4BY97kJRfv8J5wgTtbDpoXpRv92W957tXMpump
Burn-to-Activate Model:
• Initial cost: 1,500 1DEV per node activation
• Dynamic pricing: -10% for every 10% of supply burned
• Final cost at 90% burn: 150 1DEV
Developer Holdings:
• 20% locked in vesting contracts (verifiable on Streamflow)
• Transparent, publicly auditable
Phase 2 Transition Triggers
Activation occurs when:
• 90% of 1DEV supply is burned, OR
• 5 years pass from genesis block
• (Whichever comes first)
What happens:
• Native QNC blockchain launches
• All Phase 1 activated nodes retain status
• New activations require QNC payment to Pool #3
Phase 2: QNC Native Token
• Max Supply: 4,294,967,296 QNC (2^32)
• Why 2^32? Chosen as symbolic tribute to quantum technologies in a project featuring post-quantum cryptography.
• Initial Supply: 0 (no premine)
• Generation: Emission only through mining rewards
Reward Distribution System
Three Pools:
Pool #1 - Base Emission:
• Distributed every 4 hours to ALL active nodes equally
• Years 0-4: 251,432 QNC per period
• Halves every 4 years
• Year 20: "Sharp Drop" (÷10)
• Continues with ÷2 every 4 years after year 20
Pool #2 - Transaction Fees:
• 70% to server super nodes
• 30% to full nodes
• 0% to light nodes
Pool #3 - Activation Redistribution:
• All QNC paid for new node activations goes here
• Redistributed equally to ALL existing active nodes
• Creates shared benefit: every new participant rewards existing network
Mining Rewards by Network Size
Years 0-4 (Current Rate):
• 1,000 nodes: ~251 QNC every 4h
• 10,000 nodes: ~25 QNC every 4h
• 100,000 nodes: ~2.5 QNC every 4h
Years 4-8 (First Halving):
• 1,000 nodes: ~125 QNC every 4h
• 10,000 nodes: ~12.5 QNC every 4h
Year 20+ (After Sharp Drop):
• Rewards drop 10x, then resume standard halving
Consensus Participation
For Full and Super Nodes:
• 70+ reputation points required for consensus participation
For Light Nodes:
• Always participate in network
• No reputation scoring system for light nodes
• Focus on availability and ping responses only (just keep phone on with internet connection)
Equal Mining Rewards:
• Mobile light-nodes = Server nodes
• Based on reliability, not computing power
• Ping response every 4 hours
• Transaction fees distributed separately via Pool #2
Total Supply Evolution
Emission Schedule:
• Years 0-4: ~2.2B QNC (51% of max supply)
• Years 4-8: ~1.1B QNC
• Years 8-12: ~551M QNC
• Year 100+: Still emitting rewards (never reaches zero)
https://github.com/AIQnetLab/QNet-Blockchain/blob/testnet/Tokenomics.md
Phase 1: 1DEV on Solana
Token: 1DEV (SPL Token)
• Total Supply: 1,000,000,000 1DEV
• Contract: 4R3DPW4BY97kJRfv8J5wgTtbDpoXpRv92W957tXMpump
Burn-to-Activate Model:
• Initial cost: 1,500 1DEV per node activation
• Dynamic pricing: -10% for every 10% of supply burned
• Final cost at 90% burn: 150 1DEV
Developer Holdings:
• 20% locked in vesting contracts (verifiable on Streamflow)
• Transparent, publicly auditable
Phase 2 Transition Triggers
Activation occurs when:
• 90% of 1DEV supply is burned, OR
• 5 years pass from genesis block
• (Whichever comes first)
What happens:
• Native QNC blockchain launches
• All Phase 1 activated nodes retain status
• New activations require QNC payment to Pool #3
Phase 2: QNC Native Token
• Max Supply: 4,294,967,296 QNC (2^32)
• Why 2^32? Chosen as symbolic tribute to quantum technologies in a project featuring post-quantum cryptography.
• Initial Supply: 0 (no premine)
• Generation: Emission only through mining rewards
Reward Distribution System
Three Pools:
Pool #1 - Base Emission:
• Distributed every 4 hours to ALL active nodes equally
• Years 0-4: 251,432 QNC per period
• Halves every 4 years
• Year 20: "Sharp Drop" (÷10)
• Continues with ÷2 every 4 years after year 20
Pool #2 - Transaction Fees:
• 70% to server super nodes
• 30% to full nodes
• 0% to light nodes
Pool #3 - Activation Redistribution:
• All QNC paid for new node activations goes here
• Redistributed equally to ALL existing active nodes
• Creates shared benefit: every new participant rewards existing network
Mining Rewards by Network Size
Years 0-4 (Current Rate):
• 1,000 nodes: ~251 QNC every 4h
• 10,000 nodes: ~25 QNC every 4h
• 100,000 nodes: ~2.5 QNC every 4h
Years 4-8 (First Halving):
• 1,000 nodes: ~125 QNC every 4h
• 10,000 nodes: ~12.5 QNC every 4h
Year 20+ (After Sharp Drop):
• Rewards drop 10x, then resume standard halving
Consensus Participation
For Full and Super Nodes:
• 70+ reputation points required for consensus participation
For Light Nodes:
• Always participate in network
• No reputation scoring system for light nodes
• Focus on availability and ping responses only (just keep phone on with internet connection)
Equal Mining Rewards:
• Mobile light-nodes = Server nodes
• Based on reliability, not computing power
• Ping response every 4 hours
• Transaction fees distributed separately via Pool #2
Total Supply Evolution
Emission Schedule:
• Years 0-4: ~2.2B QNC (51% of max supply)
• Years 4-8: ~1.1B QNC
• Years 8-12: ~551M QNC
• Year 100+: Still emitting rewards (never reaches zero)
https://github.com/AIQnetLab/QNet-Blockchain/blob/testnet/Tokenomics.md
GitHub
QNet-Blockchain/Tokenomics.md at testnet · AIQnetLab/QNet-Blockchain
Post-Quantum Decentralized Network. Contribute to AIQnetLab/QNet-Blockchain development by creating an account on GitHub.
❤8👍7
Final Statement on Price
I understand price volatility affects sentiment. Let me be clear: I'm here for the long term. I already addressed this when the market cap was at $40K - my commitment hasn't changed.
Focus remains on building working technology. Price will follow if the product delivers.
Once I complete the final network fixes and move to finishing the browser extension and mobile apps, everyone interested will have the chance to test it themselves. Actions speak louder than words - the working product will be the proof.
Building something real takes time.
I understand price volatility affects sentiment. Let me be clear: I'm here for the long term. I already addressed this when the market cap was at $40K - my commitment hasn't changed.
Focus remains on building working technology. Price will follow if the product delivers.
Once I complete the final network fixes and move to finishing the browser extension and mobile apps, everyone interested will have the chance to test it themselves. Actions speak louder than words - the working product will be the proof.
Building something real takes time.
🔥16❤5
QNet Audit Results
Performance:
• 400,000 TPS achieved (40/256 shards)
• 2,560,000 TPS max capacity
• 95.9% transaction compression
• <1ms transaction lookups
Security:
• Quantum-resistant (CRYSTALS-Dilithium)
• Byzantine Fault Tolerant (66.7%)
• Progressive jail system
• NO staking - reputation based
Scale:
• Tested with 1,000,000+ nodes
• <100ms consensus at any scale
• 1 second blocks
Results:
✅ 36/36 tests passed
✅ 100% success rate
https://github.com/AIQnetLab/QNet-Blockchain/blob/testnet/audit/FINAL_AUDIT_REPORT.md
Performance:
• 400,000 TPS achieved (40/256 shards)
• 2,560,000 TPS max capacity
• 95.9% transaction compression
• <1ms transaction lookups
Security:
• Quantum-resistant (CRYSTALS-Dilithium)
• Byzantine Fault Tolerant (66.7%)
• Progressive jail system
• NO staking - reputation based
Scale:
• Tested with 1,000,000+ nodes
• <100ms consensus at any scale
• 1 second blocks
Results:
✅ 36/36 tests passed
✅ 100% success rate
https://github.com/AIQnetLab/QNet-Blockchain/blob/testnet/audit/FINAL_AUDIT_REPORT.md
GitHub
QNet-Blockchain/audit/FINAL_AUDIT_REPORT.md at testnet · AIQnetLab/QNet-Blockchain
Post-Quantum Decentralized Network. Contribute to AIQnetLab/QNet-Blockchain development by creating an account on GitHub.
🔥14❤3
QNet Development Update
While fixing P2P network stability issues, I've been working on:
• Storage encryption (AES-256-GCM)
• Enhanced security features
• AI-assisted comprehensive audit
• 52/52 tests passing ✅
Next: QNET Browser extension release in days!
You'll be able to test:
✅ Get test 1DEV tokens from faucet
✅ Burn 1DEV on Solana Devnet
✅ Receive quantum-secure activation code
How it works:
1. Get free test 1DEV from website
2. Connect QNET wallet (Devnet)
3. Burn tokens through smart contract
4. Receive your activation code
Smart Contract:
https://explorer.solana.com/address/D7g7mkL8o1YEex6ZgETJEQyyHV7uuUMvV3Fy3u83igJ7?cluster=devnet
Full guide coming soon
While fixing P2P network stability issues, I've been working on:
• Storage encryption (AES-256-GCM)
• Enhanced security features
• AI-assisted comprehensive audit
• 52/52 tests passing ✅
Next: QNET Browser extension release in days!
You'll be able to test:
✅ Get test 1DEV tokens from faucet
✅ Burn 1DEV on Solana Devnet
✅ Receive quantum-secure activation code
How it works:
1. Get free test 1DEV from website
2. Connect QNET wallet (Devnet)
3. Burn tokens through smart contract
4. Receive your activation code
Smart Contract:
https://explorer.solana.com/address/D7g7mkL8o1YEex6ZgETJEQyyHV7uuUMvV3Fy3u83igJ7?cluster=devnet
Full guide coming soon
Solana
Transaction History | D7g7mkL8o1YEex6ZgETJEQyyHV7uuUMvV3Fy3u83igJ7 | Solana
History of all transactions involving the address D7g7mkL8o1YEex6ZgETJEQyyHV7uuUMvV3Fy3u83igJ7 on Solana
🔥12👍3❤2
Successfully completed comprehensive security audit for QNet Wallet
Key achievements:
• Elevated security score from 65% to perfect 100%
• Implemented PBKDF2 with 100,000 iterations for password hashing
• Integrated AES-256-GCM encryption for all private keys
• Developed SecureKeyManager for professional key management
• Replaced all Math.random() with crypto.getRandomValues
• Achieved full CSP compliance for Chrome Extensions
• Added memory clearing with .fill(0) after sensitive operations
Technical improvements:
• No seed phrase storage - only encrypted private keys
• Origin verification for all postMessage calls
• Fixed inline noscript violations
• Enhanced lock screen for expanded mode
https://github.com/AIQnetLab/QNet-Blockchain/commit/dd4fe395a7483b3b7e30700c7d76f5f954129e15
Key achievements:
• Elevated security score from 65% to perfect 100%
• Implemented PBKDF2 with 100,000 iterations for password hashing
• Integrated AES-256-GCM encryption for all private keys
• Developed SecureKeyManager for professional key management
• Replaced all Math.random() with crypto.getRandomValues
• Achieved full CSP compliance for Chrome Extensions
• Added memory clearing with .fill(0) after sensitive operations
Technical improvements:
• No seed phrase storage - only encrypted private keys
• Origin verification for all postMessage calls
• Fixed inline noscript violations
• Enhanced lock screen for expanded mode
https://github.com/AIQnetLab/QNet-Blockchain/commit/dd4fe395a7483b3b7e30700c7d76f5f954129e15
🔥14❤7
COMPLETED TODAY:
Implemented AES-GCM-256 seed phrase encryption, real-time price fetching via CoinGecko/DexScreener APIs, and critical security fixes. Added wallet settings: seed export, password change, language selection, wallet deletion. Fixed token display and Solana address generation. Spent significant time synchronizing fullscreen/popup versions (work continues). Conducted additional security tests and system improvements.
Next:
Website connection, smart contract token burning integration, activation key display, app optimization, and UI cleanup.
Today's detailed progress:
Security Enhancements:
• Implemented military-grade AES-GCM-256 encryption for seed phrase storage
• Added SecureKeyManager module with 727 lines of security code
• Fixed critical vulnerability in address generation algorithm
• Implemented proper BIP39/BIP44/SLIP-0010 standards
• Added protection against rainbow table attacks
• Created Ed25519 cryptographic module for Solana keypair generation
Wallet Features:
• Added seed phrase export functionality with security warnings
• Implemented password change mechanism
• Added multi-language support system
• Created wallet deletion with confirmation flow
• Fixed token display for required assets only
Real-Time Price Integration:
• Integrated CoinGecko API for SOL and 1DEV prices
• Implemented Jupiter Price API as fallback
• Created 60-second smart caching system
UI/UX Improvements:
• Fixed constant popup locking issue when minimized
• Synchronized wallet state between popup and fullscreen versions
• Fixed address display truncation issues
• Implemented auto-refresh on window focus
Network & Performance:
• Added multi-RPC fallback mechanism (10+ endpoints)
• Fixed HTTP 403 errors with RPC rotation
• Optimized balance loading with Promise.all
• Implemented proper error handling and logging
• Added detailed debugging information
IN PROGRESS:
• Continuing fullscreen/popup synchronization
• Additional security testing and hardening
• Performance optimization
TODO NEXT:
• Website connection integration
• Smart contract token burning mechanism
• Activation key display in wallet
• Further app optimization
• UI cleanup and polish
3 commits, 13 files changed, +2,241/-433 lines
https://github.com/AIQnetLab/QNet-Blockchain/commits/testnet/
Implemented AES-GCM-256 seed phrase encryption, real-time price fetching via CoinGecko/DexScreener APIs, and critical security fixes. Added wallet settings: seed export, password change, language selection, wallet deletion. Fixed token display and Solana address generation. Spent significant time synchronizing fullscreen/popup versions (work continues). Conducted additional security tests and system improvements.
Next:
Website connection, smart contract token burning integration, activation key display, app optimization, and UI cleanup.
Today's detailed progress:
Security Enhancements:
• Implemented military-grade AES-GCM-256 encryption for seed phrase storage
• Added SecureKeyManager module with 727 lines of security code
• Fixed critical vulnerability in address generation algorithm
• Implemented proper BIP39/BIP44/SLIP-0010 standards
• Added protection against rainbow table attacks
• Created Ed25519 cryptographic module for Solana keypair generation
Wallet Features:
• Added seed phrase export functionality with security warnings
• Implemented password change mechanism
• Added multi-language support system
• Created wallet deletion with confirmation flow
• Fixed token display for required assets only
Real-Time Price Integration:
• Integrated CoinGecko API for SOL and 1DEV prices
• Implemented Jupiter Price API as fallback
• Created 60-second smart caching system
UI/UX Improvements:
• Fixed constant popup locking issue when minimized
• Synchronized wallet state between popup and fullscreen versions
• Fixed address display truncation issues
• Implemented auto-refresh on window focus
Network & Performance:
• Added multi-RPC fallback mechanism (10+ endpoints)
• Fixed HTTP 403 errors with RPC rotation
• Optimized balance loading with Promise.all
• Implemented proper error handling and logging
• Added detailed debugging information
IN PROGRESS:
• Continuing fullscreen/popup synchronization
• Additional security testing and hardening
• Performance optimization
TODO NEXT:
• Website connection integration
• Smart contract token burning mechanism
• Activation key display in wallet
• Further app optimization
• UI cleanup and polish
3 commits, 13 files changed, +2,241/-433 lines
https://github.com/AIQnetLab/QNet-Blockchain/commits/testnet/
🔥17
Major update for QNet Wallet!
Completely rewrote the cryptographic implementation and added real token burning. Previously, the wallet used incorrect key derivation algorithm. Now everything works perfectly!
Key achievements:
Cryptography:
• Real Ed25519 instead of placeholders
• HD derivation SLIP-0010 (m/44'/501'/0'/0')
• Fallback to tweetnacl for reliability
Token Burning & Node Activation:
• Implemented complete SPL Token burn functionality
• Direct interaction with Solana smart contracts
• Secure activation code generation with AES-GCM encryption
• Unique code storage in encrypted format
• Rule enforcement: 1 wallet = 1 node
• Full transaction lifecycle from burn to code generation
UI/UX:
• Auto-refresh balances every 5 seconds
• Balance change animations
• Optimized modal windows
Performance:
• Decrypted data caching
• Smart RPC selection with monitoring
• Blockchain request deduplication
Bug Fixes:
• Popup <-> background synchronization
• Transaction signature verification
• All data formats handling
• Mathematical errors resolved
Result: successful 1DEV token burn for node activation!
Coming soon: Publishing to Chrome Web Store for public testing.
https://github.com/AIQnetLab/QNet-Blockchain/commit/4259d9b692a491ded7569b49cd404f18106c981b
Completely rewrote the cryptographic implementation and added real token burning. Previously, the wallet used incorrect key derivation algorithm. Now everything works perfectly!
Key achievements:
Cryptography:
• Real Ed25519 instead of placeholders
• HD derivation SLIP-0010 (m/44'/501'/0'/0')
• Fallback to tweetnacl for reliability
Token Burning & Node Activation:
• Implemented complete SPL Token burn functionality
• Direct interaction with Solana smart contracts
• Secure activation code generation with AES-GCM encryption
• Unique code storage in encrypted format
• Rule enforcement: 1 wallet = 1 node
• Full transaction lifecycle from burn to code generation
UI/UX:
• Auto-refresh balances every 5 seconds
• Balance change animations
• Optimized modal windows
Performance:
• Decrypted data caching
• Smart RPC selection with monitoring
• Blockchain request deduplication
Bug Fixes:
• Popup <-> background synchronization
• Transaction signature verification
• All data formats handling
• Mathematical errors resolved
Result: successful 1DEV token burn for node activation!
Coming soon: Publishing to Chrome Web Store for public testing.
https://github.com/AIQnetLab/QNet-Blockchain/commit/4259d9b692a491ded7569b49cd404f18106c981b
❤11🔥9💯2
Media is too big
VIEW IN TELEGRAM
Tutorial
Recorded a step-by-step video guide for testnet node activation codes.
What's Next:
- Chrome Web Store release (imminent)
- iOS & Android apps in development
The mobile-first quantum blockchain is coming to all platforms.
Recorded a step-by-step video guide for testnet node activation codes.
What's Next:
- Chrome Web Store release (imminent)
- iOS & Android apps in development
The mobile-first quantum blockchain is coming to all platforms.
🔥21❤3🏆1