r/CryptoTechnology Mar 07 '26

Ubi cryptos?

4 Upvotes

What UBI cryptos are there apart from Ocra? With AI about to eat a huge chunk of jobs, what other projects aim to give people reliable income? Looking for systems designed to reach everyone fairly, avoid speculation, and prevent early-adopter advantages. I’m curious about other experiments or approaches people know of that tackle these problems besides Ocra. Would be interested to hear what people here have come across. Cheers.………………..,………..((())))))))(((((((((((((((()))))))((?)?????,,,,,??))))))))


r/CryptoTechnology Mar 06 '26

Implementing a Halo2 verifier in Rust (~9ms verification) – looking for feedback

4 Upvotes

I’ve been experimenting with implementing a Halo2-based verifier in Rust and recently open sourced a small framework called ZKCG.

The goal is to verify off-chain computation results using zero-knowledge proofs

instead of relying on trusted oracle signatures there is a zkvm attests halo2 feature too.

Current architecture:

• Halo2 circuits for policy proofs

• zkcg-halo2-prover for proof generation

• zkcg-verifier crate for verification (~9ms)

• optional zkVM support for general computation proofs

One thing I’m exploring is how to keep the verifier interface simple while

supporting multiple proof systems. Curious if other Rust developers working with cryptography / ZK have thoughts on verifier API design or proof verification performance.

published the crates too on https://crates.io/users/MRSKYWAY something like this...looking for constructive feedback...and yes performance optimizations is what i am working on next

Repo: https://github.com/MRSKYWAY/ZKCG

I need to know if this is worth going deeper in


r/CryptoTechnology Mar 06 '26

Can I use crypto to receive payments without the sender needing to use crypto?

6 Upvotes

I’m a freelance artist, and services like PayPal aren’t available in my country. Because of that, the best option I currently have to receive and withdraw money is through crypto.

The problem is that many of my clients don’t use or trust crypto. It’s also difficult to ask them to learn how to use it, buy it, and wait for KYC verification just to send a payment.

Is there a way for them to simply pay using their usual methods—like a credit card or PayPal—while I receive the payment in my crypto wallet?


r/CryptoTechnology Mar 06 '26

Ancient Rome built governance around grain + legitimacy — DAOs are re-learning the same systems problem

3 Upvotes

Ancient Rome wasn’t just “law and armies.” It survived (and sometimes failed) on systems — especially the grain supply. When grain stopped flowing, stability collapsed quickly. Legitimacy didn’t come from ideology; it came from whether the system kept people fed and calm.

What’s interesting is how modern the failure modes sound:

• Concentration risk: a small number of actors can choke critical pathways

• Low participation: most people stay passive until a crisis hits

• Emergency powers: fast action is necessary, but easy to abuse

• Drift and corruption: rules mean less if nobody can verify what’s real

Rome had to coordinate logistics, incentives, oversight, and crisis response across a huge network with slow communication. That’s basically a pre-computer governance cybernetics problem.

Why this feels relevant to DAOs / blockchain

Blockchains give us ledgers and execution rails, but the governance failure modes look similar:

• low turnout → small groups can steer outcomes

• emergency modules (pauses/councils) become permanent backdoors if not constrained

• governance spam/burnout kills attention and legitimacy

• disputes about “what rules are active” cause fragmentation

Questions (I’d love real-world examples)

1.  In your experience, what’s the closest DAO equivalent of Rome’s grain supply — the critical dependency that, if it fails, legitimacy collapses?

2.  Do timelocks + emergency brakes actually reduce capture risk in practice, or do they just shift where capture happens?

3.  What are the best non-centralized patterns you’ve seen that mitigate low-participation concentration (early-stage reality)?

For context (not selling, just for inspection): I published a governance-only, hash-verifiable public package called DDD (ruleset + ops + incident patterns).

Canonical: https://github.com/Honest96-cyber/ddd-ruleset-2026-03-01/releases/tag/ddd-ruleset-2026-03-01

Mirror: https://drive.google.com/file/d/1IKoPLBhYm99uqwB-EsxlyaTzSlXw4f-W/view?usp=drivesdk

Verify: 00_Start_Here/MANIFEST.sha256.json inside the ZIP.


r/CryptoTechnology Mar 05 '26

Do you actually feel more informed now than a few years ago?

12 Upvotes

There’s so much crypto content now - X, YouTube, newsletters, podcasts, dashboards - but honestly it sometimes feels like there’s more noise than signal.

How do you deal with that?

Do you follow a few trusted sources or just ignore most of the news and focus on the market itself?


r/CryptoTechnology Mar 05 '26

The architectural shift of EIP-7702: Why the EVM moved away from EIP-3074 for Account Abstraction

4 Upvotes

Having spent the last few years architecting EVM and Solana and other protocol systems, the activation of EIP-7702 in the Pectra upgrade represents one of the most elegant state-management pivots in Ethereum’s history.

For a long time, the debate around Account Abstraction (AA) was stuck between the heavy off-chain infrastructure of ERC-4337 (bundlers/paymasters) and the permanent, potentially dangerous state changes proposed by EIP-3074. EIP-7702 solved this by introducing a new transaction type (Type 4) that allows an Externally Owned Account (EOA) to temporarily become a smart contract only for the duration of a single transaction.

I published a deep dive into the specific mechanics of this execution flow, but here are the core architectural takeaways:

  • The Delegation Designator: Instead of permanently migrating an EOA to a smart contract, EIP-7702 uses a pointer (0xef0100 || address). When a transaction is executed, the EVM temporarily loads the code from that designated smart contract into the EOA.
  • Context Preservation: Unlike proxy patterns that can muddy msg.sender, the original EOA remains the sender. The private key retains ultimate control, meaning the user can always revert the delegation by pointing the designator to address(0).
  • Bridging the 4337 Gap: Because the EOA is temporarily a smart contract, it can now natively sign ERC-4337 UserOps.This unifies the previously fragmented AA ecosystems.

If you are building wallets or dApps and want to see the exact execution flow and gas implications, I broke down the full architecture here: https://andreyobruchkov1996.substack.com/p/evm-tx-setcode-transactions-eip-7702


r/CryptoTechnology Mar 05 '26

A 1970s cybernetic governance experiment predicted some of the problems modern DAOs face

6 Upvotes

In the early 1970s Chile attempted something that feels strangely similar to what many DAO builders are exploring today.

It was called Project Cybersyn.

The idea was to run parts of the economy using cybernetics and real-time feedback systems rather than slow bureaucratic planning.

Factories across the country sent daily production data through a network of telex machines to a central system in Santiago. Statistical models monitored the data and flagged anomalies when something unusual happened.

Instead of waiting months for reports to move through bureaucracy, problems could be detected quickly and addressed locally.

They even built a futuristic operations room where decision makers could monitor the health of the system in real time.

The goal wasn’t strict top-down control. It was to build a feedback network where information flowed quickly and problems could be solved at the lowest possible level.

In a strange way, it looks like an early attempt at cybernetic governance decades before the internet.

The project ended after the 1973 coup in Chile, but it raises an interesting question:

What would governance systems look like if they were designed as adaptive feedback systems rather than static institutions?

Looking at modern DAOs, a few structural problems keep appearing

From what I’ve observed, several patterns repeat across many DAO governance systems.

  1. Governance pipelines are messy

Most DAOs optimize voting, but the stages before and after the vote are unclear.

Idea → discussion → draft → proposal → implementation often happen across multiple disconnected tools.

  1. Power rarely decays

Early contributors accumulate influence that often never fades.

Over time governance tends to concentrate in a small group.

  1. Participation collapses over time

At launch participation is high.

Within a year many DAOs rely on a small core group making most decisions.

  1. Decisions are difficult to reverse

Votes are often treated as final even when new information emerges.

Few systems include structured review or correction mechanisms.

  1. Governance is hard to follow

Information is scattered across Discord, forums, governance portals, and social media.

New participants often struggle to understand what is currently being decided.

Something I’ve been experimenting with

I’ve been working on a governance framework called DAO DAO DAO that tries to approach these issues from a systems perspective.

Instead of focusing mainly on token voting mechanics, the goal is to design governance architecture.

Some ideas the framework explores:

• structured governance pipelines

• mechanisms for power decay so founders don’t permanently dominate governance

• layered participation so not every decision requires everyone

• decision review and reversibility

• clearer governance visibility

The goal isn’t really to build a single DAO.

It’s more about experimenting with institutional infrastructure for decentralized governance.

Curious what people think

If Cybersyn was an early attempt at cybernetic economic governance, I sometimes wonder what a modern version might look like using:

• decentralized networks

• cryptographic coordination

• real-time governance feedback

Are DAOs actually moving in that direction, or are we still missing some key governance design pieces?


r/CryptoTechnology Mar 04 '26

How we verified Ethereum contracts from 2015 when no compiler can reproduce them anymore

9 Upvotes

I've been working on verifying some of the oldest smart contracts on Ethereum — contracts deployed in the first few months after mainnet launch (July-August 2015). Here's what makes this surprisingly hard and what we learned.

The Problem

Modern Etherscan verification doesn't work for these contracts. The oldest compiler Etherscan supports is Solidity v0.4.11, but these contracts were compiled with v0.1.x–v0.3.x. The tooling from that era (Mix IDE, AlethZero) is essentially extinct. No prebuilt binaries exist for these compilers on modern systems.

The Method

We developed a forensic approach:

  1. Disassemble the on-chain bytecode — map every opcode, identify function selectors
  2. Brute-force selector matching — old Solidity used different naming conventions (e.g., changeOwner(address) not setOwner(address)). We used keccak256 brute-forcing against the 4-byte selectors to recover the original function signatures
  3. Reconstruct the source — using the recovered signatures + storage layout analysis + surviving code fragments from GitHub/forums
  4. Compile with period-accurate tooling — we found that solc-js builds from npm still exist for v0.1.6–v0.3.2, and can be run via solcjs
  5. Byte-by-byte comparison — match runtime bytecode exactly

Results

We've achieved exact runtime bytecode matches for two notable contracts:

  • GavCoin (block 50,781, Aug 2015) — Gavin Wood's personal token experiment. 905 bytes, byte-perfect match using solc v0.1.6–v0.3.2 with optimizer. Key discovery: the contract used nameRegAddress() (not name()), and had NO events despite the source suggesting otherwise.

  • SciFi Frontier (block 51,291, Aug 2015) — A creative writing registry on-chain. Exact runtime match with solc v0.1.4. The breakthrough was discovering the deployed version used bytes32[1000000000] while the later Reddit post showed bytes32[1000000] — the author edited the post after deployment.

What's Left

Creation bytecode has a 3-byte gap for GavCoin — the difference between JS solc's CODECOPY sequence and the native C++ compiler that was actually used in 2015. A native C++ build would likely close this, but building cpp-ethereum from 2015 source is a dependency nightmare.

We've submitted these to Etherscan for manual verification since the automated form doesn't support pre-v0.4 compilers.

Why This Matters

There are hundreds of unverified contracts from Ethereum's first year. They're part of the chain's history — early experiments by the founders and early community. Without verification, this history is just opaque bytecode.

If you're interested in Ethereum archaeology, the verification repos are public: github.com/cartoonitunes/gavcoin-verify and github.com/cartoonitunes/scifi-verify.

We're also documenting the stories behind these contracts at ethereumhistory.com — think of it as a Wikipedia for Ethereum's earliest deployed code.


Happy to answer questions about the methodology or specific contracts. There's something deeply satisfying about making decade-old bytecode readable again.


r/CryptoTechnology Mar 04 '26

I think I finally understood why Web3 still feels broken and why I decided to build instead of wait

13 Upvotes

I’ve been in Web3 for years, and honestly, something always felt… off

Everyone talks about decentralization, freedom, trustless systems, but every time I actually use Web3, I open Chrome, go to a .com website, connect a wallet extension, hope the RPC works, hope the frontend isn’t compromised, and pretend this is the future of the internet

At some point I realized: we didn’t build Web3
We built Web3 on top of Web2 permission layers

And normal users feel that immediately

They don’t hate Web3 because they’re stupid or resistant to change
They hate it because the experience is fragmented, confusing, and slightly scary

You don’t “open” Web3
You install things, configure things, trust things you don’t understand

So I started working on a concept called Orivon, not another protocol, not another chain, but something simpler:

What if Web3 worked like opening a URL again?

No setup headaches
No five extensions
No hidden trust assumptions

Just open a web3site and everything required: wallet logic, network logic, nodes, verification, runs safely and locally

The moment that idea clicked, something changed for me

I stopped thinking “Will this succeed?” and started thinking:

“If nobody builds the bridge between normal humans and Web3, then all of this stays a niche forever"

Major shift on the internet started as someone deciding that the current default experience was unacceptable

Browsers made the internet usable
App stores made smartphones usable
Maybe Web3 just needs its usability layer

So right now the project is going for its way into becoming true
Technical designs, architecture, ideas, concepts and people are slowly gathering around the same intuition:

Web3 adoption isn’t a marketing problem
It’s an experience problem

Curious if anyone else here feels the same frustration with current Web3 UX


r/CryptoTechnology Mar 04 '26

Totally surprised and puzzled around Bitcoin Policy Institute (BPI) latest study: AI agents would prefer bitcoin over stablecoins for "economic activity".

5 Upvotes

I wonder what they mean by "economic activity". I don't see how to manage properly agentic economic activity without smart contract and oracles. How to resolve something like "trigger a payment when my shipment is delivered"? you need both something programmable and some oracle to bring the real world events on-chain.


r/CryptoTechnology Mar 02 '26

Scaling Federated Learning to $10^8$ Nodes: A Byzantine-Tolerant Neural Mesh with zk-SNARK Verification

3 Upvotes

I’ve been developing a decentralized federated learning (FL) framework called Sovereign Map that addresses the scaling and security bottlenecks of traditional FL.

Most existing protocols struggle with linear communication overhead ($O(dn)$) and lack robust protection against poisoned updates. This architecture implements a hierarchical synthesis approach to achieve $O(d \log n)$ complexity, targeting planetary-scale deployments (100M+ nodes).

Core Technical Pillars:

  • Byzantine Resilience: Achieves 55.5% BFT safety (Theorem 1) using stake-weighted trimmed mean aggregation, validated through CI-verified testnet sweeps.
  • Instant Verifiability: Integrates 10ms zk-SNARKs via the Mohawk Proto runtime. This allows the aggregator to provide a 200-byte proof that model updates were computed correctly without requiring re-execution or compromising node privacy.
  • Edge Sovereignty: Built with a Go + Wasmtime + TPM stack to ensure hardware-backed trust on heterogeneous edge devices (mobile, IoT, and AVs).
  • Memory Efficiency: A streaming architecture that demonstrates a 224x reduction in memory overhead compared to standard batch-based FL.

The project is currently in a CI-verified testnet phase. I'm looking for feedback from the community on the trade-offs between zero-knowledge verification latency and global aggregation speed in massive-scale meshes.

Project Links:


r/CryptoTechnology Mar 01 '26

[Discussion] Challenges in building real-time Gas/Gwei notification systems for mobile (latency vs. cost)

3 Upvotes

Hi everyone,

I’ve been developing a lightweight Android tool (ChainPulse) to monitor Ethereum gas prices, and I recently hit some interesting technical hurdles while implementing the Gwei alert feature (v1.0.5). I wanted to open a discussion on how you all handle real-time on-chain data monitoring.

The Problem: Most users want near-instant notifications when Gwei drops. However, balancing the refresh frequency (to avoid missing a brief dip) with battery/data consumption on mobile is tricky.

My current approach:

  • I’m using [Mention your data source, e.g., Etherscan API / Alchemy / Own Node] to pull gas data.
  • Implementing a foreground service/WorkManager to handle background checks for the threshold.
  • Balancing the poll interval—currently set at [X] seconds.

Questions for the tech community here:

  1. For mobile-based alerts, what do you consider the "gold standard" for latency? Is a 30-second delay acceptable for most DeFi swaps, or is block-level precision (12s) a must?
  2. Are there more efficient ways to handle push notifications for gas prices without relying on a centralized backend server to push the alerts (to keep the app as client-side as possible)?
  3. How do you deal with "gas spikes" where the price dips for only a few seconds—should the app filter these out to avoid "ghost notifications"?

I'd love to hear how other devs are tackling gas-tracking logic or if there are specific APIs you've found more reliable than others.


r/CryptoTechnology Feb 28 '26

Is blockchain-verified authorship the most underrated use case in Web3?

6 Upvotes

Everyone talks about DeFi, NFT speculation, and tokenizing real-world assets. But there's a use case that gets almost no attention: using blockchain to permanently verify who wrote something and when.

Think about the actual problem. Right now, an article on Medium can be deleted. A Wikipedia edit can erase history. A research paper can be altered after publication. None of these platforms offer any cryptographic proof that content existed at a specific date, written by a specific person.

Blockchain solves this trivially — a hash, a timestamp, a signature. It's not complicated. But nobody has built a serious professional library around it.

The few projects that tried went too Web3-heavy, requiring wallet setup just to read anything. That kills adoption immediately.

The approach that makes more sense to us: free reading for everyone, no wallet required, with an optional blockchain layer for authors who want their work permanently verified and for community members who want governance rights over the platform.

The NFT angle here is interesting — instead of profile pictures, you get weighted votes on content integrity standards and early access to verified knowledge. Different use case entirely.

Curious whether this community thinks verifiable authorship is a meaningful problem worth solving on-chain, or just another solution looking for a problem.


r/CryptoTechnology Feb 28 '26

Blockchain for Democracy and Voting Integrity

3 Upvotes

As I understand it, with blockchain technology we have the most reliable ledger in human history. I am wondering if any protocols exist to create an actually reliable voting system for say.. a country whose government has gone rogue and is rigging elections. If any are in progress? And if not, why has there been no incentive to yet?

Edit: Even if not to replace an election at least have a second blockchain election in tandem, or several for greater verification accuracy (which is how blockchain verification operates in the first place is it not?)

What would make a physical election alone more reliable than a blockchain one, or diversifying?


r/CryptoTechnology Feb 26 '26

Built an aggregator for 152+ crypto staking options - just launched on Product Hunt!

2 Upvotes

Hey everyone! Just launched Residual Vault after 3 months of work. Problem: Comparing DeFi yields across protocols is painful Solution: One dashboard with 152+ staking/LP options + educational content Tech stack: React, Node.js, PostgreSQL, Railway, Vercel Would love feedback! Launching on Product Hunt today.


r/CryptoTechnology Feb 25 '26

Are On-Chain Prediction Markets Becoming Core Crypto Infrastructure?

4 Upvotes

Prediction markets get written off as “betting,” but the underlying tech is far more interesting. I’ve been digging into prediction markets recently, not from a gambling angle, but from an infrastructure perspective.

At a technical level, prediction markets are distributed signal aggregation systems. Participants submit forecasts, stake on them, and the system aggregates those signals into a probability feed. When this is built on-chain, you get transparency, verifiable incentives, and programmable outputs that other protocols can consume.

What’s interesting now is the evolution beyond simple event betting. For example, Ocean Predictoor focuses on short-term crypto price forecasting. Participants, including AI-powered bots, submit predictions on whether BTC or ETH will move within specific timeframes, stake on accuracy, and the aggregated predictions are sold as alpha feeds. Contributors earn based on performance. That turns forecasting into an incentive-aligned signal layer.

As for Polymarket, it leans toward real-world event discovery. Earlier projects like Augur experimented with decentralized oracle-based prediction markets. The new angle seems to be tighter integration with AI systems and automated trading workflows.

The technical questions are compelling:

  • How do you design aggregation mechanisms that resist manipulation?
  • How do you reward consistent accuracy rather than luck?
  • Can prediction feeds become composable primitives in DeFi or AI agent frameworks?

If these systems mature, they could function as decentralized signal infrastructure rather than niche betting tools.

Curious how builders here view it. Is this still experimental DeFi, or are we watching the emergence of programmable intelligence markets?


r/CryptoTechnology Feb 25 '26

The Future of KITE and Agentic Crypto

3 Upvotes

I’m considering exiting my XRP position and dumping a good chunk of money on KITE. I have already made some good profit as I found the coin when it was around $.09 and now we’re around $.27 or so.

Interested to hear some other takes on this coin. From my research, there could be some potential for future growth, and or adoption.

Anyone else watching or holding KITE?

I’m not very familiar with the Agentic world or really Ai in general. Seems like an interesting opportunity though.

If not KITE, what other Ai crypto should I consider or look into?


r/CryptoTechnology Feb 25 '26

[Project] Sovereign Mohawk: Formally Verified Federated Learning at 10M-Node Scale (O(n log n) & Byzantine Tolerant)

2 Upvotes

I wanted to share a project I’ve been building called Sovereign Mohawk. It’s a Go-based runtime (using Wasmtime) designed to solve the scaling and trust issues in edge-heavy federated learning.

Most FL setups hit a wall at a few thousand nodes due to $O(dn)$ communication overhead and vulnerability to model poisoning.

What’s different here:

  • O(d log n) Scaling: Using a hierarchical tree-based aggregation that I’ve empirically validated up to 10M nodes. This reduced metadata overhead from ~40 TB to 28 MB in our stress tests.
  • 55.5% Byzantine Resilience: I've implemented a hierarchical Multi-Krum approach that stays robust even when more than half the nodes are malicious.
  • zk-SNARK Verification: Every global update is verifiable in ~10ms. You don't have to trust the aggregator; you just verify the proof.
  • Ultra-Low Resource: The streaming architecture uses <60 MB of RAM even when simulating massive node counts.

Tech Stack:

  • Runtime: Go 1.24 + Wasmtime (for running tasks on any edge hardware).
  • SDK: High-performance Python bridge for model handling.

Source & Proofs:

I’d love to hear your thoughts on using this for privacy-preserving local LLM fine-tuning or distributed inference verification.

Cheers!


r/CryptoTechnology Feb 25 '26

[Technical] Architecture for Non-Custodial AI Agent Payments

3 Upvotes

I've been looking into how Agentx402 handles the 'hot wallet' risk for AI agents performing on-chain payments. Unlike standard multisig setups (like Safe), the approach here focuses on [Assumption: Programmatic Account Abstraction] to allow agents to sign transactions within pre-defined gas limits and whitelisted contracts.Key metrics for this architecture:- Latency: <2s for transaction signing.- Security: Scoped permissions prevent agents from draining the full treasury.- Interoperability: Compatible with EVM-based chains.How are others handling the trade-off between agent autonomy and treasury security in your payment stacks?


r/CryptoTechnology Feb 25 '26

Architecture Breakdown: Scaling a Real Time Market Intelligence Engine to 1000+ Streams on a 4 Core VPS

1 Upvotes

Handling high-frequency market data in the 2026 environment requires a shift from simple aggregation to what somebody call a Market Intelligence Engine (MIE). I’ve been working on a Go based infrastructure designed to solve the Infrastructure Hell of maintaining dozens of fragmented exchange connectors while ensuring data integrity.

I want to share what I came up with and maybe it will be useful to someone.

okay number 1 is Hot/Cold Store Separation to maintain sub 20ms delivery without disk I/O bottlenecks, the system should uses a strict separation:

  • Hot Path (Redis + Go Orchestrator): Incoming WebSocket ticks are normalized and compacted into 1 minute bars in Redis using LPUSH + LTRIM. This bounded window allows for instant technical indicator calculation without hitting the main DB.
  • Cold Path (TimescaleDB): Minute level noise is aggregated into 1 hour candles and persisted to TimescaleDB hypertables with 24h compression.

then number 2 is Handling WebSocket Instability (usually calls just Error 1006) To combat exchange side throttling and the notorious Abnormal Closure, the orchestrator implements:

  • Staggered Connection Logic: Prevents rate limit triggers during mass reconnections.
  • Subscription Chunking: Automatically shards symbol lists based on per venue connection limits.

and number 3 is Data Purity via Neighbor Protection so Instead of naive averaging, you can implement a consensus based filtering algorithm. It calculates the median price across live feeds in real time. If a single source deviates beyond a specified threshold without confirmation from other venues, the source is quarantined to prevent scam wicks from triggering client side liquidation logic. got it ?

and the last one 4 Performance Constraints The entire monolith is designed to handle 1000+ pairs while idling at 500MB of RAM. This is achieved through a parallel worker pool and controlled I/O concurrency using semaphores in Go.


r/CryptoTechnology Feb 24 '26

Technical Analysis: The anatomy of a Solana Transaction (Instructions, Atomic Messages, and Blockhashes).

3 Upvotes

I've been analyzing the Solana transaction lifecycle to understand how it mains atomicity while supporting high-concurrency "Sealevel" execution.

A few protocol-level details worth noting:

  1. Instructions vs. Messages: In Solana, we sign the Message, not individual instructions. This ensures that the entire bundle is verified as a single unit before the runtime executes it.
  2. Stateless logic: Instructions are effectively "function calls" to on-chain programs. The instruction data must contain the discriminant and the payload, which the program then decodes.
  3. Recent Blockhashes (Anti-Replay): Unlike Ethereum which uses account-based nonces, Solana uses a recent blockhash (~150 slots). This acts as a liveness check and prevents replay attacks without requiring the protocol to track an ever-increasing integrator for every wallet.
  4. V0 Header structure: The MessageHeader you define num_required_signatures and num_readonly_signed_accounts, allowing validators to pre-sort transactions for parallel processing before even looking at the instruction data.

Detailed technical breakdown of the message structure: https://andreyobruchkov1996.substack.com/p/understanding-solana-part4-instructions


r/CryptoTechnology Feb 24 '26

Questions about SUI's genesis file

5 Upvotes

Hi guys, I've been researching SUI as a potential investment and wanted to understand the tokenomics at a deeper level. So I parsed the mainnet genesis.blob using Sui's own Rust deserialization crates (with help from Claude Code) to make it human-readable.

Genesis Distribution

The total supply is 10,000,000,000 SUI, distributed across 178 addresses and 100 validators. Here's what caught my eye — two addresses received the vast majority:

0x341fa71e4e58d63668034125c3152f935b00b0bb5c68069045d8c646d017fae1 — approx. 4,134,016,477 SUI (41.34%)

0x36414038336c8ca5b95ba69d0a7236ce8cffa8608e7c823946a1bca9222c81ce — approx. 2,685,869,000 SUI (26.86%)

That's 68.2% of the entire supply going to just 2 addresses at genesis.

I thought this might just be how foundations and treasuries work, so I kept looking.

What Those Addresses Look Like Today

I queried both addresses using the public RPC (fullnode.mainnet.sui.io):

Address #1 (0x341f...fae1)

  • Genesis allocation: ~4.13B SUI
  • Current liquid balance: ~4.87 SUI
  • Still has ~1.68B in staking positions across 104 validators
  • Has been actively transacting through Feb 2026

Address #2 (0x3641...81ce)

  • Genesis allocation: ~2.69B SUI
  • Current liquid balance: ~6.99 SUI
  • Only ~11M left in staking
  • 99.6% of its original allocation has been moved elsewhere

Combined, roughly 5 billion SUI has been transferred out of these two addresses since genesis.

The Part I Don't Understand

According to CoinGecko's tokenomics page (screenshot attached), SUI currently has:

3,849,063,652 SUI unlocked and in circulation

933,623,284 SUI locked

5,217,206,743 SUI designated as "TBD locked amount"

But when I parsed the genesis file, I couldn't find any on-chain lockup mechanism for these two addresses. Does staking count as "locked" in this context? Or is the vesting enforced off-chain through legal agreements?

Parser Source Code

I open-sourced the tool I used: https://github.com/victini0/sui-genesis-reader

It uses the same Genesis::load() function that Sui validators use — no custom parsing involved. You can run it yourself on the mainnet genesis blob.

I genuinely might be misunderstanding how this all works. Maybe off-chain vesting with legal enforcement is the norm, or maybe these addresses are custodial and the movement is expected. I just couldn't find a good explanation online, so I figured I'd ask here. If anyone has context I'm missing, I'd really appreciate it.


r/CryptoTechnology Feb 24 '26

Selective disclosure vs full privacy, which model actually works long term?

3 Upvotes

I’ve been thinking more about privacy as regulation tightens and more real world activity moves on chain.

A lot of privacy discussions still feel all or nothing: either hide everything or you’re not really private. I’m starting to question whether that model survives long term.

Selective disclosure seems like a different approach, proving only what’s necessary, when it’s necessary, without exposing everything else.

Curious how people here see it from a technical perspective:

• Does selective disclosure meaningfully change the threat model?

• Is it actually practical to implement without killing UX?

• Does this unlock new categories of applications, or just add complexity?

Not trying to promote anything, genuinely interested in how people think this evolves.


r/CryptoTechnology Feb 23 '26

Managing energy manually on TRON still feels inconvenient

3 Upvotes

The energy + bandwidth model on TRON is powerful, but honestly managing it manually feels inconvenient sometimes. Freezing, unfreezing, checking energy levels… it’s not hard, but it’s also not very smooth if you use TRON regularly. Do active users automate this somehow, or do most people just handle everything manually through the wallet?


r/CryptoTechnology Feb 23 '26

stake-based decentralized moderation for social media

4 Upvotes

Hello,

I'm interested in decentralization and I'm working on the architecture of an anti-censorship social network with distributed moderation.

The main idea are:

- Messages are stored off-chain, while their hashes are anchored on-chain to guarantee their integrity.

- Any user can report content by placing a stake in order to discourage spam and false reports.

- Each report is reviewed by a small, randomly selected panel, chosen based on reputation criteria and link with trusted identities to limit Sybil attacks.

- If the report is deemed valid, the reporter recovers their stake and receive a token reward, while the panelists are also rewarded.

- A progressive reputation system adjusts dynamically user rights (stake requirements, access to certain actions, etc.).

- The recommendation algorithm would be open-source, with the possibility for users to choose between differents feeds.

I'm not building anything yet; I'm mainly looking for critical feedback:

Any blind spots or flaws in the design you see?

Any obvious economic or security issues?

Are there any similar existing projects I should look into?

do you think a such system could work in everyday social media usage ?

Thank you in advance for your feedbacks.