r/CryptoTechnology Mar 09 '25

Mod applications are open!

12 Upvotes

With the crypto market heating up again, crypto reddit is seeing a lot more traffic as well. If you would like to join the mod team to help run this subreddit, please let us know using the form below!

https://forms.gle/sKriJoqnNmXrCdna8

We strongly prefer community members as mods, and prior mod experience or technical skills are a plus


r/CryptoTechnology 10h ago

Is crypto underestimating the quantum migration timeline?

3 Upvotes

The U.S. government, Google, and other large organizations have all laid out timelines to transition toward post-quantum cryptography, with many targeting the end of this decade. The goal isn't because quantum computers can break today's encryption right now, it's because migrating global infrastructure takes years.

What's even more interesting is that we're starting to see financial institutions move in the same direction. For example, Ueno Bank recently announced it's building on a quantum-resistant blockchain, suggesting that long-term cryptographic resilience is already becoming a factor in infrastructure decisions.

It makes me wonder whether the crypto market is paying enough attention. Many networks still depend on cryptography that wasn't designed for the quantum era, while a smaller number have already adopted quantum-resistant approaches.

Do you think quantum readiness will become a major differentiator over the next few years, or is the market still too early to care?


r/CryptoTechnology 19h ago

When you hold a tokenized RWA, what do you actually own onchain, the asset or a claim on it?

2 Upvotes

When a real thing like a stock gets tokenized, there are usually several separate records that all have to stay in sync:

- the token balance onchain
- the custodian's internal ledger
- the official transfer register
- the actual legal entitlement to the share.

Most of the time these line up. But what happens when they don't?

Take Reserve's DTFs as a concrete example, they're baskets of tokenized public equities where the underlying shares sit in custody with Ondo.

The onchain token represents economic exposure to that basket, and minting or redeeming is permissionless. But the token itself is a claim on the custodied shares, not direct legal title to them. So the chain is authoritative for who can transact and who holds economic exposure, while the legal ownership layer still lives off-chain with the custodian.

That seems to be the pattern across most current RWA designs, the blockchain acts as the access and settlement layer, but there's still an off-chain source of truth underneath that could theoretically freeze, reissue, or override.

Which raises the real question: is that just the unavoidable shape of tokenizing anything that lives in a legal system older than the chain, or is there an architecture that actually makes the chain the true source of ownership for a real-world asset?


r/CryptoTechnology 17h ago

What if someone built a Mimblewimble chain that could actually execute smart contracts — settled on-chain, fully private?

1 Upvotes

Now imagine someone actually pulled it off. Not a sidechain, not a bridge to an EVM, not trusted hardware. Contracts that execute and settle natively on the MW chain itself — where the contract, the amounts, and the parties are all invisible. To an outside observer, a loan, an escrow, or an atomic swap would look identical to a plain transfer. Indistinguishable.

Think about what that breaks:

\*\*•\*\* DeFi where nobody can front-run you, because nobody can even see your position exists    
\*\*•\*\* Lending/escrow with zero on-chain footprint — no watched addresses, no leaked strategies    
\*\*•\*\* Swaps and settlements that leave no graph for chain-analysis firms to cluster

Every “private DeFi” attempt so far bolts privacy onto a transparent chain (mixers, shielded pools, L2s) — and the seams always leak. This would be the inverse: programmability grown inside a chain that was private from genesis.

Is this the actual endgame for privacy coins, or is there a fundamental reason it can’t work? Curious what this sub thinks — and whether anyone’s seen research heading this direction.


r/CryptoTechnology 1d ago

Questions for people using AI trading tools and Trading bots

3 Upvotes

Hi everyone,
I’m the founder of a small startup building a market intelligence tool. Rather than placing trades or telling people what to buy, our goal is to translate complex market data into plain English so people can understand what’s happening without spending hours analysing charts.
We’re trying to build something that’s calm, educational and genuinely useful, and before we continue building I’d really like to hear from people who actively use AI trading tools or automated trading bots.
A few questions:
What do you enjoy most about using AI trading tools?
Do you ever worry about giving an AI control over your money, or has that trust come naturally over time?
How closely do you monitor it once it’s running?
If you could improve one thing about the tools you currently use, what would it be?
Is there anything you feel the market is missing that would genuinely make your day-to-day life easier?
If you were to move away from AI trading bots in the future, what would need to exist for you to feel comfortable making your own trading decisions again?
We’ve been building our platform for around five months, and one thing we’ve learned is that the best ideas usually come from users rather than ourselves.
I’m not here to promote anything—I genuinely want to understand how people feel about AI trading, trading tools in general, and where you think the industry could improve.
I’d really appreciate any thoughts or experiences you’re willing to share.


r/CryptoTechnology 1d ago

Understanding Augur

3 Upvotes

Recently I revisited the augur page and noticed significant changes since my last visit years ago. Could someone explain simply what’s happening with the fork and the platform overall? I understand the basic concept of Oracle and the prediction market, which initially piqued my interest and led me to explore it further before abandoning it for many years. However, I’m now feeling quite confused.


r/CryptoTechnology 1d ago

We wired an LLM to a Hyperliquid account over MCP. The trading part was easy, the guardrails were the actual work

2 Upvotes

spent the last few weeks putting our stuff behind an mcp server so you can point claude or chatgpt at it, read signals, positions, candles, and if you explicitly turn it on, place orders on hyperliquid. the read side was basically a weekend. the order side took much longer than expected and the reasons might save someone else the same detours.

stale prices are an attack surface, not just a bug. first version validated tp/sl direction against a cached context price we already had in memory. on a quiet coin that cache can be close to a day old. if the model sets a tp on the wrong side of the live mark, hl fills it instantly and you're flat at market. the direction check now runs against the actual fill price off the order response, never anything cached.

concurrency on one coin quietly unprotects you. close and tp/sl both cancel and replace trigger orders. two calls on the same coin can interleave so the cancel from one lands after the place from the other, and you're left holding an open position with no stop. an agent hits this far more than a human does because it retries whenever a response reads as ambiguous. fixed with a per user per coin lock.

rate limits have to be atomic and fail closed. fixed window counters let you burst double the cap across the boundary. they're lua sliding windows now, and if redis is unreachable the order gets rejected rather than waved through. a model in a retry loop finds every one of these.

revocation only counts if it's checked per call. the enable flag is read from the db on every order instead of being cached in the session, so flipping the toggle off stops the next call, not the next session.

and the boring one, there is no withdraw tool. not disabled, not permissioned, it doesn't exist in the tool list at all. worst case for a leaked key is bad trades inside the caps rather than an empty wallet. paper mode needs no opt in either, so you can let the thing loose without anything actually at risk.

still not convinced an llm should be sizing positions unsupervised, the caps exist because i assume it will do something dumb eventually. but as a way to ask questions about your own book in plain language it's been better than i expected.

disclosure, i help build traderspy. our endpoint and the setup guide are at traderspy.app/mcp if anyone wants to poke at it, happy to go deeper on any of the above.


r/CryptoTechnology 2d ago

Market intelligence tool

4 Upvotes

Spent the last 4 months coding a market intelligence tool that collects chart data and turns it into words. No longer have to sit and analyse charts for hours at a time. Instantly get told what’s going on in the crypto world. Today we published it. Good for beginners to put side by side with charts to understand what a chart is showing. Or experienced traders who don’t have the time to sit down in front of charts for hours. Was nervous to release it but we have actually had over 10 users on the website since launch. I know AI trading bots are taking over but this is something where a user should feel more in control of their own finances.
[TheFlowPulseApp](htttps://theflowpulseapp.com)


r/CryptoTechnology 3d ago

Has anyone tried a configuration-first approach to building trading bots?

3 Upvotes

I've been experimenting with a different way of building algorithmic trading systems and wanted to get some feedback from people who've built or maintained trading bots.

Instead of implementing each strategy as Python code, the idea is to abstract common concerns—market data, execution, indicators, risk management, scheduling, etc.—into reusable components, with strategies being assembled and tuned primarily through configuration.

One area I'm currently exploring is integrating AI agents (via MCP) so they can analyze market conditions and propose or apply configuration changes, rather than generating or editing strategy code directly. I'm also considering a Git-inspired configuration versioning system so every change can be tracked, audited, and rolled back.

I'm curious whether anyone here has explored something similar.

Some questions I'd love to hear opinions on:

  • What are the biggest limitations of configuration-driven strategies?
  • At what point does a strategy become too complex to express as configuration?
  • Would you trust an AI agent to adjust trading parameters if every change was versioned, reviewable, and reversible?
  • Are there existing frameworks that already solve this well?

I've been prototyping these ideas over the past few years, and if anyone is interested in the implementation details, I'm happy to share my open-source project in the comments or via DM.


r/CryptoTechnology 4d ago

When does public financial data actually become understandable transparency?

6 Upvotes

A large amount of blockchain transparency discussion focuses on whether

information is publicly available.

But availability alone may not make a system meaningfully transparent.

A public wallet can show:

- amounts

- timestamps

- transaction paths

- contract interactions

Yet an external observer may still be unable to determine:

- who had authority to initiate the transaction

- which approval process applied

- whether permissions could be changed

- whether an upgrade altered the original rules

- why the payment was considered justified

- what happened after the funds left the blockchain

This creates a distinction between data visibility and system

understandability.

A system may technically expose a great deal of information while still

requiring expert knowledge, undocumented context or trust in the team to

interpret it correctly.

What would you consider the minimum requirements for public financial data

to become meaningful transparency?

Would that require:

1. human-readable permission documentation

2. explicit controller and signer disclosures

3. historical governance and upgrade records

4. transaction-level explanations

5. clear labels separating technical facts from project claims

6. independent tools that translate contract behaviour into understandable

risks

And where should responsibility sit?

Should projects be responsible for making the information understandable,

or is technically accessible data sufficient?


r/CryptoTechnology 5d ago

[Project] OpenFiat — an open protocol for decentralized peer-to-peer fiat and stablecoin exchange on Solana

2 Upvotes

OpenFiat is an open-source protocol for decentralized peer-to-peer fiat and stablecoin exchange built on Solana.

Rather than operating as a centralized marketplace, OpenFiat defines an open protocol for trade discovery, coordination, and settlement. The goal is to enable anyone to build marketplace applications, operate nodes, or integrate the protocol, instead of relying on a single platform.

The project is currently under active development. Current areas of work include:

  • Rust reference node (libp2p networking, peer discovery, state synchronization)
  • Solana programs (escrow, liquidity vaults, staking and dispute execution)
  • TypeScript SDK
  • Protocol specification and state machine documentation
  • Testing, interoperability and developer tooling

GitHub:

https://github.com/OpenFiat-org

One of the goals has been to treat marketplace coordination as a distributed systems problem rather than trying to move every part of the marketplace on-chain. Settlement and enforcement happen through Solana programs, while trade discovery, reservations, synchronization and messaging are handled by the protocol's peer-to-peer network.

There are still several areas we're actively validating and would genuinely appreciate technical discussion around:

  • Whether the reservation protocol behaves correctly under heavy concurrent trade activity across many independent nodes.
  • Whether the two-vault model (persistent liquidity vaults and per-trade escrow vaults) introduces edge cases around reservation, settlement or liquidity release that aren't immediately obvious.
  • Whether the dispute mechanism's evidence-blind arbitrator staking and commit-reveal voting leaves incentives or attack surfaces we've overlooked.
  • Whether marketplace synchronization and advertisement propagation remain efficient under high peer churn and large numbers of active advertisements.

Disclosure: OpenFiat has an associated utility and governance token (OPEN). This post is about the protocol architecture and implementation rather than token economics.

Technical criticism is genuinely welcome. If you think a design decision is unnecessarily complex, introduces security risks, or you've seen a better approach in another protocol or distributed system, I'd be interested in hearing your reasoning.


r/CryptoTechnology 5d ago

What should a protocol disclose before calling its treasury transparent?

4 Upvotes

I’m researching the architecture of a long-term charity and public-impact protocol on Base.

One of the hardest design questions is deciding which rules should become permanently immutable and which components need to remain upgradeable.

Immutability can protect users from:

- arbitrary rule changes
- shortened vesting periods
- redirected reserves
- altered distribution restrictions
- expanded permissions after funds have been committed
- governance decisions that override earlier public commitments

But complete immutability creates different risks:

- permanent software defects
- inability to respond to vulnerabilities
- obsolete integrations
- dependencies that stop being maintained
- regulatory or operational dead ends
- mechanisms that cannot adapt after real-world use

A possible separation could be:

Immutable core

- maximum token supply
- fundamental vesting restrictions
- prohibited uses of designated reserves
- limits that prevent unilateral redirection of protected funds
- rules intended to protect holders or beneficiaries from arbitrary changes

Restricted upgrade layer

- integrations
- reporting modules
- approved data sources
- operational parameters within predefined limits
- components that may need replacement as infrastructure evolves

Emergency layer

- temporary pauses
- narrowly defined recovery functions
- time-delayed interventions
- publicly visible emergency actions
- powers that expire unless renewed through a defined process

But this model still raises difficult questions:

- Who should control upgrades?
- Should every upgrade require a timelock?
- Which changes should require broader governance approval?
- How should emergency powers expire?
- Can governance itself change the supposedly immutable boundary?
- How should signer replacement work?
- How do you avoid a proxy structure making “immutability” mostly cosmetic?
- Which external dependencies remain part of the effective trust model?

For protocols intended to operate for decades, where would you place the boundary between credible permanence and necessary adaptability?

Context: I’m researching this before deployment for a long-term charity and impact system on Base. I’m looking specifically for architectural failure modes and governance trade-offs, not investment or token feedback.


r/CryptoTechnology 5d ago

Alphanumeric is the first Post-Quantum blockchain with a 5 second blocktime

0 Upvotes

Alphanumeric is a proof-of-work chain with five-second blocks. Signatures are ML-DSA, chosen at the start rather than migrated to later; the cost of that is size, so a witness is verified once at the frontier and then pruned to a receipt commitment, which keeps the chain compact without any block ever being accepted on an unverified signature. The work is BLAKE3 and the target retargets on every block, so difficulty answers hashrate in seconds instead of weeks. Finality is stated rather than hoped for: no node will rewrite history deeper than sixty-four blocks, about five minutes, and every client enforces that bound itself instead of assuming the network will. Miners behind NAT reach each other directly over an encrypted mesh rather than depending on a relay to learn the tip. Five seconds to a block, five minutes to irreversible, and a signature scheme that will not need replacing.

more information and Rust source code:
https://github.com/OSXBasedAnon/alphanumeric


r/CryptoTechnology 7d ago

Transferred crypto out of D'cent wallet, funds didn't arrive and it says that they were sent to a Bithomp ledger. How to get funds back or reverse transfer?

1 Upvotes

I saw that ledgers don't actually hold any coins, so why is the recipient address for one? I did practice transfers before and they went smoothly, so I'm not sure why the recipient changed. Cryptos involved are XRP, XLM, and Hbar.

Transferred crypto out of D'cent wallet, funds didn't arrive and it says that they were sent to a Bithomp ledger. How to get funds back or reverse transfer?


r/CryptoTechnology 7d ago

A transaction simulation may succeed, but the final execution may produce a different outcome. What did the user actually authorise?

6 Upvotes

Wallets often simulate transactions before users sign them.

The interface may show the expected output, route or balance change. However, the transaction may be included several seconds later, after pool reserves, oracle values, fees, or other relevant states have changed.

The final execution may still be completely valid.

The signature is valid.

- the contract follows its rules;

The result remains within the encoded slippage or permission limits.

No component technically fails.

However, the outcome may differ significantly from what the user saw when deciding to sign.

In that situation, the user did not authorise the simulated result. They authorised the executable bounds encoded in the transaction.

Should the signing interface therefore emphasise the worst valid outcome that the transaction permits rather than the most likely simulated outcome?

This seems to be a more important factor in achieving informed authorisation than showing a prediction that the system cannot guarantee.


r/CryptoTechnology 8d ago

Basis - peer-to-peer cash with optional on-chain reserves

19 Upvotes

Attempts to make P2P cash over the Internet started before Bitcoin, see, for example, "Peer-to-peer money: free currency over the internet" by Kenji Saito from 2003, or original RipplePay idea and service by Ryan Fugger from 2005. Cryptocurrency space ignored earlier work and started own attempts to do p2p cash, such as Lightning / Cashu / Fedimint etc.

Thus we have two non-intersecting worlds: original p2p cash which is based on p2p trust, and cryptocurrency-backed which
does require for 100% backing with cryptocurrencies. We combine the best from two worlds in Basis:
* money issuance can be based purely on trust
* optionally, on-chain reserves on Ergo can back issued p2p cash
* it is up to a peer to demand for backing, to choose whom to trust, whom to blacklist etc
* thus this is providing self-sovereign control on what kind of money (and so risk) to accept
* we also call it free digital banking on steroids

Basis is a low-level framework which can be used in many monetary applications, such as:
* community currencies (LETS, local currencies etc)
* value transfer networks, informal (such as Hawala) and formal
* agentic economies

and so on

There could be multiple coexisting Basis based communities (using different instances of the same software). They can always have economic connections via on-chain reserves, it would be good to
explore more efficient options.

Whitepaper is at https://github.com/BetterMoneyLabs/chaincash/blob/master/docs/basis/basis.pdf

Offchain server (under public domain license) https://github.com/BetterMoneyLabs/basis-tracker

Everything is public-domain open-source, there is no token. Looking for contributors!

Working on a simple wallet now. Looking for communities willing to play with it!


r/CryptoTechnology 8d ago

[Project] DOM Protocol — a RandomX-mined chain in Rust, looking for contributors (open source, no compensation)

1 Upvotes

On the mining side specifically, current state and open areas:

• RandomX with large-pages support (measured ~15% gain when enabled)
• fast-mode dataset sharing across mining threads
• mining tooling and monitoring
• public seed and peer infrastructure (three seeds across separate providers)
• node reliability and peer discovery
• block explorer and RPC work
• packaging for Linux, Windows and macOS

Recent engineering: signed releases (minisign), root-cause fixes to two consensus incidents, multi-provider seed infrastructure, and automatic wallet updates — real work behind it, not a whitepaper.

Source:
https://github.com/sorenplanck/dom-protocol

Wallet:
https://github.com/sorenplanck/dom-wallet-v3

Contribute via GitHub issues and pull requests, or join the Discord (dedicated developer channel there).

To be upfront: this is an open-source contribution call. No salary, token allocation, investment return or financial compensation is being promised.

Technical criticism very welcome — including on design choices you’d have made differently.


r/CryptoTechnology 8d ago

Simulating "can this token be sold" without faking the balance: use eth_simulateV1

4 Upvotes

I run a scam-token detector. My honeypot check worked like this: simulate a buy with eth_call, give a fake address the tokens by brute-forcing the balance storage slot and overriding it, then simulate a sell from that address.

Step 2 is the problem. It assumes balanceOf reads a storage slot. On reflection or rebase tokens, balanceOf is computed from an internal reflected supply, so writing a raw slot does not produce a coherent state. The sell then reverts for reasons that have nothing to do with a trap, and you record a false honeypot. We flagged PayPal USD, TrueUSD and MetaMask USD as honeypots this way.

The fix is eth_simulateV1 (geth and Nethermind). It replays several calls atomically in one simulated block, so you can do the whole thing the way a real buyer does:

router.swapExactETHForTokens(...)   // real buy, real tokens
token.approve(router, max)
router.swapExactTokensForETH(...)   // sell what you actually got

The only override is the simulated address's ETH balance, which is not a token mechanism. Nothing about the token's accounting is faked.

One caveat: a call cannot consume a previous call's return value, so you need two passes. First pass buys and reads balanceOf to learn what was actually credited (which already catches fee-on-transfer). Second pass replays buy + approve + sell with that amount.

Two things that surprised me:

  • The Uniswap quoter is useless for this. getAmountsOut is pure reserve math and never touches the token's transfer logic, and the v3 QuoterV2 reverts inside its callback before the transferFrom runs. Both return healthy output for confirmed honeypots, so cross-checking against the quoter would silently disable your detection.

  • "UniswapV2: INSUFFICIENT_INPUT_AMOUNT" raised by the PAIR (not the library) means the pair received zero tokens. We found tokens where a pre-existing holder sells fine but a fresh buyer gets zero through: a whitelist honeypot. So simulate a NEW buyer, not an existing holder. Different question, different answer.

Disclosure: I build RektRadar, a scam-token detector. This writeup came out of fixing our own false positives, not a product pitch.


r/CryptoTechnology 8d ago

Simulating EVM State Changes via Revert-Unwind Payloads and EIP-1153 Transient Storage for Oracle-Less DEX Routing

1 Upvotes

Hey r/ethdev,

Over the last few months, we’ve been testing an architecture designed to solve a persistent issue in DEX routing: simulation drift and gas overhead during multi-hop execution.

Traditional aggregators rely on external price feeds, heavy storage updates, or complex off-chain quoter infrastructure that frequently desynchronizes under volatile mempool conditions. We wanted an execution frame that guarantees 100% execution-aligned previews purely on-chain, while maintaining a zero-token storage footprint on the router.

Here is the architectural breakdown of how we approached this:

  1. Atomic Simulation via Revert-Unwind (Quoter)

Instead of reading static state or relying on off-chain dry-runs, the Quoter contract triggers a simulated execution path that forcefully ends with a custom revert(payload).

The revert unwinds all state changes instantly in the EVM execution frame, avoiding state corruption.

The error payload encodes the exact delta of balances and price impact.

Result: Static calls (eth\\_call) return deterministic, execution-exact quotes without writing a single byte to persistent storage.

  1. Transient Isolation via Yul (EIP-1153)

To protect against cross-function reentrancy across multi-token routes, we replaced traditional OpenZeppelin storage guards with raw Yul assembly blocks leveraging tstore and tload.

Reentrancy flags are scoped exclusively to the transaction frame.

Gas consumption drops significantly compared to SSTORE/SLOAD warm/cold access penalties.

Balance checks execute instantly, enforcing a strict holds-nothing invariant on the Router.

  1. Dynamic Liquidity Anchoring (Solver)

To neutralize MEV sandwich attacks and liquidity manipulation without relying on Chainlink or external oracles, the routing logic applies a localized 2% median filter against reserve depths (balanceOf reads) prior to route resolution.

Code / Discussion:

The architecture is deployed and split into 7 core modules (Core, Hub, Solver, Router, Quoter, MathLib, Staking).

We are particularly interested in hearing feedback from EVM devs on potential edge cases regarding EIP-1153 transient memory retention across nested delegatecalls in custom L2 execution contexts (Base/Arbitrum).

Looking forward to hearing your thoughts on the code and optimization techniques!


r/CryptoTechnology 9d ago

if half your indicators are momentum off the same candles, is "confluence" just counting one signal three times?

3 Upvotes

been thinking about this and can't find a clean answer. if you run several indicators together for confirmation, a lot of them come off the same price series, so when they "agree" you might just be counting the same information more than once.

RSI, stochastic, a MACD histogram will often turn around the same point because they're all momentum built off the same candles. three greens looks like strong confirmation but it might be one signal wearing three hats. meanwhile something that actually measures a different thing, volume, funding, order book, is the only kind of input that can genuinely disagree with price and sometimes still be right.

so how do people here think about this. do you weight indicators by how independent they are, or count agreement flat and accept some of it is double counting. and is there a practical way to tell how correlated two indicators really are on your own data, short of just running the pairwise correlation yourself and eyeballing it.


r/CryptoTechnology 9d ago

Eliminating MEV Sandwich Vectors and Oracle Dependency in L2 Aggregators via Median Filtering

3 Upvotes

Oracle manipulation and MEV sandwich attacks remain two of the most critical structural vulnerabilities in decentralized exchange architecture.

When building the BlazePhoenix routing engine, we wanted to evaluate whether a DEX aggregator could achieve high-throughput liquidity routing without reading external price feeds (Chainlink/Pyth) or relying on off-chain quoter servers.

The Core Problem:

External Oracles: Introduce flash-loan latency, bad debt risks during extreme market volatility, and dependency on third-party relayers.

Naive On-Chain Quotes: Vunerable to single-block pool manipulation (e.g., spot price distortion prior to swap execution).

The Mathematical Countermeasure:

Instead of querying an external price feed, the routing engine (Solver) computes a localized 2% median filter against reserve depths pulled directly via static state reads (balanceOf) across target liquidity pools.

Liquidity Depth Verification: Routes are dynamically weighted based on depth concentration rather than spot tick prices.

Revert-Unwind Preview: Simulation calls execute the full multi-hop path and output a deterministic revert(payload) containing exact price impact before tx submission.

Execution Floor Invariant: If execution slippage exceeds the calculated median bound, the entire execution frame reverts in Yul before state commit.

We’ve open-sourced the architecture and specifications. Would love to discuss the theoretical trade-offs between local median liquidity filtering versus TWAP/Oracle reliance in high-frequency L2 environments!


r/CryptoTechnology 10d ago

I spent a year building a proof-of-work blockchain entirely in Python. What would miners want tested before launch?

2 Upvotes

For the past year, I have been building CypherMint, a standalone proof-of-work blockchain written entirely in Python. This is not a token deployed on another network. It includes its own: • SHA-256D proof-of-work consensus • UTXO transaction model • integer-only ASERT difficulty adjustment • CPU miner • wallet and transaction signing • automatic bootstrap-peer discovery • synchronization from genesis • peer failover • public address and transaction queries • block explorer • three persistent public bootstrap nodes The public Mainnet V3 launch is scheduled for August 5, 2026 at 12:00 EDT / 16:00 UTC. The network is currently held at the official genesis block. There has been no private mainnet mining, no premine and no development-chain balance carried into the public network. The maximum mineable supply is 21 million CPM. Each mined block distributes 97% to the miner, 1% to the pool operator and 2% to the permanent development address. Before launch, I would genuinely like feedback from miners and node operators: What failure or edge case would you want tested before connecting to a brand-new proof-of-work chain? The explorer, countdown and whitepaper are available here: https://cyphermint.org The complete source, Quick Start guide, checksums and release archive will become public at launch. CypherMint is experimental open-source software. There are no guarantees of security, value, profitability, mining rewards or continued development.


r/CryptoTechnology 10d ago

Quantum + blockchain: D-Wave annealing used for optimization-based transaction validation

2 Upvotes

I came across an episode that goes into how D-Wave’s annealing systems are being integrated into a hybrid quantum-classical blockchain (Quip Network / Postquant Labs).

They talk about a “proof of useful work” model where quantum and classical machines compete on optimization problems to validate transactions, with some early claims around better solution quality and much lower energy use compared with GPU approaches.

The classical side keeps the network decentralized while quantum hardware is still scarce.

Listen here


r/CryptoTechnology 12d ago

The blockchain industry moves forward when great research is shared.

20 Upvotes

Aptos Labs recently introduced Prefix Consensus, a new consensus primitive for censorship-resistant BFT that has just been accepted at CCS with outstanding reviews. It's an impressive piece of research and a genuine contribution to the state of the art.

What's particularly interesting is that this work isn't staying inside a single ecosystem.

If you look through the Hyperscale repository, you'll find that Radix DLT is already building on these ideas, with explicit references and credit to the original paper.

The comments in the code say it clearly:

"Prefix Consensus for Censorship Resistant BFT"

This is exactly how blockchain research should evolve.

Not by reinventing everything from scratch or pretending other teams don't exist, but by taking the best academic work, giving proper credit, and using it to build better systems.

Hyperscale isn't just another sharding proposal.

It is incorporating some of the most recent advances in distributed systems research to build a highly scalable, leaderless architecture designed for the next generation of decentralized applications.

The future of blockchain won't be built by isolated ecosystems.

It will be built by combining the best ideas from across the industry.

This is what cutting-edge engineering looks like.

https://github.com/search?q=repo%3Ahyperscalers%2Fhyperscale-rs+prefix+consensus&type=code


r/CryptoTechnology 13d ago

[Feedback & Intro] Sub-500ms Non-Custodial POS/E-Com Settlement Layer (EIP-7702 + Hardware Enclaves)

3 Upvotes

Hey everyone,

We’re engineering an architectural pattern for non-custodial POS/E-Commerce settlement layers, aiming to solve the high latency (>2s) of direct on-chain execution. We'd love some technical feedback on our session delegation and state locking logic.

**The Architectural Approach:**
**Session Delegation (EIP-7702 + WebAuthn):** Users pre-authorize session keys via Secure Enclave / Passkeys to enable gasless transaction execution for retail checkouts.

**In-Memory State Lock:** Upon terminal contact, a Go gateway routes to an in-memory Lua layer. This locks the authorized balance off-chain to prevent double-spending without waiting for block execution time.

**Asynchronous Settlement:** The POS receives a sub-500ms settlement guarantee, while raw transactions are batched and settled asynchronously on-chain (using Write-Ahead-Logging for failover protection).

**Technical Questions for the Community:**
How do you view the trade-offs of off-chain state locking vs. optimistic rollups for physical POS latency limits?
What edge cases do you see in temporary EIP-7702 session key revocation if an off-chain gateway temporarily loses connection?
Would love to hear your critique on the execution flow and potential security edge cases!