Close Menu
  • News
    • Bitcoin
    • Altcoins
    • DeFi
    • Market Cap
  • Blockchain
  • Web 3
    • NFT
    • Metaverse
  • Regulation
  • Analysis
  • Learn
  • Blog
What's Hot

Bitcoin – Derivatives Flash ‘Mixed Signals’, But Is $72K a Real Possibility?

2026-03-07

Ethereum Rising Wedge Warning: A disruption could send the price to $1,500

2026-03-07

Could Jane Street’s $19 Million Bitcoin Sale Create New Liquidation Risks?

2026-03-07
Facebook X (Twitter) Instagram
  • Contact
  • Terms & Conditions
  • Privacy Policy
  • DMCA
  • Advertise
Facebook X (Twitter) Instagram
Bitcoin Platform – Bitcoin | Altcoins | Blockchain | News Stories Updated Daily
  • News
    • Bitcoin
    • Altcoins
    • DeFi
    • Market Cap
  • Blockchain

    A groundbreaking leap into the consumer future of decentralized AI

    2026-03-07

    BitGo to Power SoFiUSD Stablecoin Infrastructure as SoFi Launches First Nationally Chartered Bank Token

    2026-03-07

    AINFT extends multi-chain AI services with BNB chain integration

    2026-03-07

    CMC Markets Begins 24/7 Blockchain Settlements with JP Morgan’s Kinexys

    2026-03-07

    Chainlink helped Visa, ANZ and Fidelity do what banks have been trying to do for years

    2026-03-06
  • Web 3
    • NFT
    • Metaverse
  • Regulation

    US lawmakers consider ban on prediction markets amid bets on Iran

    2026-03-06

    De volatiliteit van Bitcoin zou in april kunnen exploderen als SEC de markt achter de ETF-leverage beoordeelt

    2026-03-06

    Crypto company Kraken secures a direct link to Federal Reserve payments

    2026-03-04

    Bitcoin’s $85 billion derivatives engine may move onshore as CFTC eyes April approval

    2026-03-04

    De deadline voor stablecoins van het Witte Huis verstrijkt terwijl de CLARITY Act vastloopt

    2026-03-03
  • Analysis

    Billionaire Peter Thiel dumps a $74,400,000 stake in three assets, including one of Warren Buffett’s favorites

    2026-03-07

    Bitcoin Price Rally Slows, Consolidation Signals Possible Next Step

    2026-03-07

    XRP Price Ladder Shows What Conditions Are Needed for $18, $100, and $500

    2026-03-07

    Bitcoin’s rally from $73,000 faces a crucial test as momentum looks to change

    2026-03-06

    ‘Good Times Have Arrived’ – Trader Michaël van de Poppe Says the Bitcoin Bear Phase is Over – Here Are His Goals

    2026-03-06
  • Learn

    What Is Wrapped ETH (WETH) and Why Do You Need It in DeFi?

    2026-03-06

    What Is Crypto Protocol and Why Coins Need It

    2026-03-04

    Wat is Liquid Proof-of-Stake: uitgelegd voor beginners

    2026-03-02

    The 9 Most Common Crypto Scam Types

    2026-03-02

    Sidechains Explained: What They Are, How They Work, and Why They Matter

    2026-02-20
  • Blog
Bitcoin Platform – Bitcoin | Altcoins | Blockchain | News Stories Updated Daily
Home»Blockchain»Parallel structures can transform blockchain for users: software engineer Neon EVM
Blockchain

Parallel structures can transform blockchain for users: software engineer Neon EVM

2024-03-09No Comments9 Mins Read
Share
Facebook Twitter LinkedIn Pinterest Email

Andrei Dragnea shares insights on the challenges of building a parallel architecture blockchain and what benefits this model offers.

Scalability is one of the three components of the Blockchain Trilemma, described by Vitalik Buterin, co-founder of Ethereum, and one of the biggest challenges for blockchain-based infrastructures. Andrei Dragnea, Software Engineer at Neon Foundation, explains to Crypto Briefing how parallel structures can make blockchains more scalable, what impact they have on the decentralized ecosystem and what Neon EVM plans are for this year.

Crypto Briefing – How does a parallel structure work?

Andrej Dragnea – Okay, good question. First of all, this [parallel structure] is a concept originating from the Solana blockchain. It doesn’t necessarily relate to Neon. We just built on top of it. It refers to the fact that the first blockchains were developed with sequential behavior in mind, meaning that we shared the blockchain with all nodes in the network, and the transactions that add blocks to the chain are executed sequentially.

Only one transaction at a time can change the blockchain. This worked well in the past and it still works, let’s say very well, for Bitcoin and Ethereum, which are blockchains that perform transactions sequentially. But as we know, the transactions per second for Ethereum are on the order of, if I remember correctly, 20 transactions per second or something like that, which is not very good.

And this is why gas prices on Ethereum are very high right now. In comparison, Solana is built around the idea of ​​being able to execute transactions that are not related to each other in parallel, or better yet, simultaneously. How that happens is that Solana is designed to make this possible by forcing you to provide the accounts involved in a transaction as input to that transaction.

For example, in Solana, if you have a transaction, you must specify all the input and output accounts and also whether an account is changed or not in that transaction. If you transfer part of the SOL from one account to another, these two accounts must be marked in that transaction. Otherwise the transaction will fail. The runtime uses this information to see if it can perform two unrelated transactions at the same time.

If I transfer a SOL to you and another friend of yours transfers a SOL to his friend, the two transactions are not related. On Solana they can run simultaneously, but not on Ethereum. This is the main idea behind why Solana has better throughput and also lower gas costs, because it can do more at the same time.

See also  What Is the Cheapest Crypto to Transfer? Send Crypto With Lowest Transaction Fees

Crypto Briefing – What are the challenges of implementing a parallel infrastructure when designing a blockchain? Are Solana’s failures a consequence of their parallel model?

Andrej Dragnea – I think it’s a general question because parallel processing in computers in general involves more complexity when it comes to actually implementing it. So there are more challenges and more places where things can go wrong.

This is also how computers have evolved from running just one program at a time to multitasking on a single processor, with the operating system switching contexts between applications very quickly. And then we get to today, where we have multiprocessor systems where applications can actually run in parallel.

The same goes for blockchain. Operating systems have become increasingly complex to handle all this complexity behind the scenes. Solana’s runtime is quite complex and contains many components responsible for handling this parallel transaction execution.

Regarding the outage on the Solana mainnet from mid-February, I read the report on what happened and while I can’t say that the bug was related to parallel processing, it was a result of the general complexity that the system brings regarding the execution of parallel transactions.

That’s because you need to make sure you don’t make invalid changes to invalid account states, for example. There are multiple threads of execution that attempt to update the status of the accounts on the blockchain and you need to ensure that that status is correct.

There are some common issues related to parallel computing or concurrent computing that further complicate matters. Furthermore, the blockchain itself, without parallel processing, is quite complicated given the cryptographic concepts at hand, but even more so when it comes to parallel processing.

So the main challenges in my opinion are the general challenges that come from parallel programming in general, and this is the complexity of the software that causes these things.

Crypto Briefing – Implementing a parallel structure is therefore like going against the standard of blockchain. Is it a challenge like trying to make the Ethereum Virtual Machine (EVM) compatible with zero-knowledge technology?

Andrej Dragnea – This is a good example. As I said, the main difference between Ethereum and Solana is that on Ethereum the transaction execution is sequential. Only one transaction can be executed at a time.

On Solana we can have multiple transactions executed simultaneously if they are not dependent on each other, and what we are trying to do with Neon EVM is bring the parallel transaction execution benefits of Solana to Ethereum users.

Neon EVM is a Solana program. Basically, it’s a smart contract on Solana that implements the Ethereum Virtual Machine, a specification that says how Ethereum smart contracts behave and should be executed. And we add our logic to that to enable these types of transfer or contract calls that I told you about. We have two unrelated entities that want to call unrelated contracts on Ethereum, and they need to execute these two transactions one after the other.

See also  How a Liquidity Protocol Marketer Mines Web3's 'Most Sacred Data'

On the Neon EVM they can be run simultaneously. And how we do that is quite interesting because of the major architectural difference between Ethereum and Solana. On Solana, as I mentioned, you must specify the input accounts for the transaction when you build the actual transaction, as required by the design of the transaction protocol in Solana.

But on Ethereum you don’t have to do that. You simply specify the smart contract you want to call, and until you execute that transaction, you don’t know what other contracts will be called, because an Ethereum smart contract can call other smart contracts on its own, like in a tree of calls. , as in a normal program.

To detect this on our side, on the EVM side we first emulate those Ethereum transactions to see what actual calls would be made if the transaction were executed. With that emulation result, we can then build the actual Solana transactions that execute the Ethereum transaction behind the scenes.

We take an Ethereum transaction, emulate it in our Neon EVM system, and then we can build the Solana transactions that form the backbone of the original Ethereum transaction.

So basically an Ethereum transaction is split into multiple Solana transactions that are fed into the Neon EVM Solana program. It then executes those Solana transactions using the Ethereum Virtual Machine’s logic, and then the Neon Virtual Machine rebuilds the results.

The end user sees an Ethereum-compatible blockchain that looks exactly like Ethereum, but runs on top of Solana behind the scenes and has the features to make transactions generally faster and cheaper. So here are our key selling points: We perform Ethereum-like transactions in a parallel environment, powered by Solana, and also with lower gas fees, powered by Solana.

Crypto Briefing – Given the complex parallel infrastructure behind Neon EVM, what are the practical implications for end users?

Andrej Dragnea – The main impact for the end user is also the cost, but also the user experience when it comes to some types of apps that are currently not available to Ethereum users or are not very user-friendly. For example, using a decentralized exchange built on top of Ethereum can be very off-putting, especially if it is integrated with the mainnet, as it takes a lot of time to settle transactions and mine. So you don’t have real-time experience if you want to trade something.

See also  Orochi Network and Kima Network Forge a Strategic Partnership to Improve Blockchain Interoperability and Data Integrity

On Neon EVM they run immediately, so you get real feedback for any kind of app you build on top of this blockchain. We also want to expand into the gaming field, and in gaming, if you want to integrate a blockchain into a game, you need real-time feedback because in a game people don’t like to wait for transactions to be executed. organized.

It’s also about an experience closer to real-time processing, and the lower gas costs are important to the end user. I think the gas fees are the most immediate benefit, and transaction latency is secondary, but somehow they go hand in hand.

That’s why transactions are cheaper: because they can be executed faster and not everyone is waiting for other transactions to execute first before yours, and that’s because of parallel execution.

Crypto Briefing – Ethereum gas prices have been very expensive in recent days, causing some investors to turn to other blockchains such as Solana. With the bull run in full swing, do you think this could benefit projects like Neon EVM?

Andrej Dragnea – It’s a very good question. I feel like this is one of those moments where we can shine because people can see that other EVM chains can be fast and cheap, and that’s what everyone is looking for. For Bitcoin, I think there is a history behind it, which is why it is very popular.

From a technical point of view, I feel that it is limited from many points of view because it does not support smart contracts. With Bitcoin you cannot build a real application on the blockchain. We chose to port the Ethereum blockchain to Solana because Ethereum has the largest smart contract platform. It is currently the largest blockchain that supports smart contracts.

We wanted to give developers the ability to port their existing applications from Ethereum to Neon EVM with minimal to no changes. Using the same code they wrote for Ethereum, they can deploy it to Neon EVM and it works exactly the same, and you enter a new market there.

Also, all the bridging logic between our system and beyond, like Solana SPL tokens and not just ERC-20 compliant tokens, should make us shine right now with all the blockchain hype of late.

We have everything in order and ready, and we’ll see what people think.

Source link

Blockchain engineer EVM Neon Parallel Software structures Transform Users
Share. Facebook Twitter Pinterest LinkedIn Tumblr Email

Related Posts

A groundbreaking leap into the consumer future of decentralized AI

2026-03-07

BitGo to Power SoFiUSD Stablecoin Infrastructure as SoFi Launches First Nationally Chartered Bank Token

2026-03-07

AINFT extends multi-chain AI services with BNB chain integration

2026-03-07

CMC Markets Begins 24/7 Blockchain Settlements with JP Morgan’s Kinexys

2026-03-07
Add A Comment

Comments are closed.

Top Posts

Bitcoin emerges as an NFT contender with $463 million in revenue in 4 months

2023-07-05

Mercado Bitcoin Expands LatAm RWA Push With $20 Million in Private Credit from Rootstock

2026-02-06

Bitcoin is struggling under liquidity pressure as market depth decreases

2025-12-20
Editors Picks

Tokenization lowers barriers to sustainable investing

2025-07-29

Building an NFT Series Using AI (Part 4)

2023-08-14

Bitcoin’s realized cap hits record high – is a bull on the road?

2025-02-14

Powered by AI for engaging interactions

2023-08-10

Our mission is to develop a community of people who try to make financially sound decisions. The website strives to educate individuals in making wise choices about Cryptocurrencies, Defi, NFT, Metaverse and more.

We're social. Connect with us:

Facebook X (Twitter) Instagram Pinterest YouTube
Top Insights

Bitcoin – Derivatives Flash ‘Mixed Signals’, But Is $72K a Real Possibility?

Ethereum Rising Wedge Warning: A disruption could send the price to $1,500

Could Jane Street’s $19 Million Bitcoin Sale Create New Liquidation Risks?

Get Informed

Subscribe to Updates

Get the latest news and Update from Bitcoin Platform about Crypto, Metaverse, NFT and more.

  • Contact
  • Terms & Conditions
  • Privacy Policy
  • DMCA
  • Advertise
© 2026 Bitcoinplatform.com - All rights reserved.

Type above and press Enter to search. Press Esc to cancel.