Will zkEVM be the Savior of Ethereum?

Huobi ResearchPublicado em 2022-02-18Última atualização em 2022-02-18

Resumo

This article compares the features of two mainstream Rollup solutions and points out that zkRollup has better performance but poor compatibility, thus limiting its application scope. zkRollup needs to include zkEVM's to be able to run all kinds of general-purpose smart contracts in order to address the above shortcomings. The main points of zkEVM and the characteristics of two different technical routes are then described, and the mainstream projects of zkEVM are introduced. Finally, it is envisioned that ZKEVM will act as a savior for Ethereum in the near future to help expand the capacity of Ethereum, and has the possibility to play a role on other public chains in the longer term.

No doubt that Ethereum has become the superstar public chain that runs thousands of smart contracts on it. However, the traffic is so busy that “traffic jams” could often been spotted, even a “highway” like Ethereum must confront a long queue of transactions to be packed and sent, even though the toll (gas fee) could be enormous. The network congestion was not beyond expectation. An earlier incidence dating back to 2018 , a game named Crypto Kitten, had the privilege to bring about the weakness of Ethereum in handling mass transactions, let alone the number of users and Dapps have soared to several times of those in 2018. Ethereum has bear the burden of being the avant-garde, dragging it slower and slower as time goes by ; an update to alleviate the congestion cannot wait. not dropped significantly; when denominated in US dollars, the handling fee has risen to a certain extent due to the increase in the price of ETH.

What if there is a Layer 2 solution that could offer fast and secure transaction with low gas fee, highly compatible with vast majority of smart contracts and Dapps yet private enough without the controversial week-long waiting time, would you make it in your wish list? In fact, this nearly perfect Layer 2 solution could probably be live in the market in the near future.

What could Layer 2 and Rollup Do?

The most well-known ETH 2.0 is like a massive renovation of “the highway”; the process will eventually be slow since the renovation is naturally difficult to implement and benefits of various parties are involved. If it were to exempt a direct renovation on “the highway” by implementing ETH 2.0, a Layer 2 solution is more or less an indirect solution that it creates overpasses above “the highway” in order to achieve scaling. The mainstream Layer 2 scaling technique is Rollup: it handles more transactions without taking up space by compiling data. In other words, larger data packs could commute like a bus on " the highway" instead of cars with limited capacity, thus more passengers, data, in this case, could be transported.

Rollup could be classified by whether it interacts with proofs submitted to Layer 1. There are 2 Rollup technical tracks. One is the Interactive Rollup. For short, we identify one-round interaction and multi-round interaction as Optimistic Rollup (OP Rollup), Arbitrum, Boba Network and Optimism are some outstanding projects in this category: the number of projects in the ecosystem and TVL skyrocket in this year, and the TVL of this three projects occupied almost 70% of the whole Layer 2 market. The other is Non-interactive, also know as ZK Rollup; exemplary projects in this track are dYdX, Loopring and zkSync. They have a comparatively smaller market share.

If Optimistic Rollup were the innocent and romantic Juliet girl, longing for a love fairy tale with Romeo in a perfect world, ZK Rollup would be more like a considerate office lady, tact and neat. For immature ideas from an innocent girl would consume a large amount of time to be proven, and the result would not be necessarily right. Just as how it performs in Optimistic Rollup: the fraud proof could still be flawed even after a week-long verification period. However, the neat office lady, ZK Rollup, prefers a much faster and result-driven “state proof”. As the nature of verification differs, ZK Rollup outperforms OP Rollup with better performance, lower transaction fee and unconstrained exit time.

Defects of ZK Rollup

Compatibility is the main defect of ZK Rollup compared to OP Rollup. As illustrated in the below, ZK Rollup is only compatible with payment and transaction types of applications, while OP Rollup supports a variety more, lacking appropriate development of ZK Rollup, which leads to the mere 3.6% market share of Layer 2 in the whole Ethereum in terms of TVL.

ZK Rollup submits Zero Knowledge Proof to Ethereum mainnet as an effective proof; the inherent complexity of generating Zero Knowledge Proof triggers low compatibility with most applications. In the intricate process, logic of codes must be first converted to a mathematical circuit, not only including basic calculations such as plus or minus, and also accompanied with convoluted logic such as “and”, “or”, “Not”, Hash, bit operation,and other operations on smart contracts. Moreover, this diagram could only support plus and multiplication calculations, and Ethereum opcode is not Zero Knowledge Proof friendly as it was not designed to do so. Furthermore, the most frequently deployed Hashing method, such as AEW-128 or SHA-256, consist of enormous bit operations(“and” and “or” commands); it would be extremely complicated and substantial when converted to gate constraints in the cir.

We need ZK EVM

The current ZK Rollup has constructed a parallel path above the Ethereum boulevard. However, it is more like a bike trail that could only carries out simple transactions, whereas loaded trucks like smart contracts are too heavy to pass. In this case, should ZK Rollup conquer a larger market share by running smart contracts and produce proofs on Layer 2 in order that verification on mainnet could pass faster, a special virtual machine, ZK EVM, must be in place.

There are two key requirements under this circumstance. First, ZK EVM could be compatible with current EVM that codes on Layer 1 could be executed immediately on Layer 2. Second, ZK EVM must be capable of producing proofs for various operations while consuming less computation and storage resources.

Luckily, thanks to the vast development of Zero Knowledge Proof, a new algorism, “Plonk Zero Knowledge Proof”, has come to earth that accelerates the landing of ZK EVM. “Plonk Zero Knowledge Proof” does not produce the proof by calculating the whole circuit from head to toe; instead, it only verifies constraints in the circuit. That is to say, two points make a line, and to draw a line only need two points. Just as shown in the following chart, as long as the gate constraint and the copy constraint are verified, the whole circuit could be verified. In addition, the new algorism sets a trust mark to the whole unit instead of partially trusted, the verification process thus speeds up.

Tech Tracks of zEVM

There are two mainstream tech tracks:First, EVM friendly projects which embed Zero Knowledge Proof in current EVM. It aims to provide further support to native EVM opcode that codes are still executed in EVM and completely compatible with solidity commands. Applied ZKP and Hermez draw the most attention in this track.

Second, Zero Knowledge Proof friendly projects that build EVM with the foundation on Zero Knowledge Proof friendly opcode. This track focuses on the redesign of virtual machine that codes executed here could generate Zero Knowledge Proof much easier. That is to say, the original Zero Knowledge Proof unfriendly codes would be modified, adapting EVM developer tools in order to maintain compatibility with solidity.

The appealing point of EVM friendly track is compatibility. It is completely compatible with current ecosystem and developer tools, well inherited the credited security model from Ethereum. From the overview of Ethereum ecosystem, this kind of update would be so gradual that current projects could be transferred smoothly before anyone could notice once succeeded. However, as mentioned above, Zero Knowledge Proof will also be generated for those commands deviating from the generation of proofs, which may consume enormous resource along the way. Ethereum. From the overview of Ethereum ecosystem, this kind of update would be so gradual that current projects could be transferred smoothly before anyone could notice once succeeded. However, as mentioned above, Zero Knowledge Proof will also be generated for those commands deviating from the generation of proofs, which may consume enormous resource along the way.

Zero Knowledge Proof friendly track wins over in terms of flexibility. It does not strictly generate proofs for every single command, and code to a set of commands that is more Zero Knowledge Proof friendly instead. Throughout the transformation of codes, Zero Knowledge Proofs are generated while the functions of smart contract are sustained. As a result, it could potentially prevail that avant-garde projects are more likely to be attracted to participate by the tempting benefits of considerately smaller workload and less difficulties to be encountered. However, extra workload may be conducted to transform EVM codes to intermediary codes, especially in the case of replacing the most frequently deployed Keccak Hash functions with other functions. It remains mysterious that if the process of this transformation could be flawless that comes with extra security and compatibility problems.

Table 2:Advantages, shortcoming and outstanding projects of the two zkEVM technology tracks

Typical projects

zkSync 2.0

ZkSync 2.0 is a representative project in the second track mentioned above. Which is Zero Knowledge Proof friendly. The updated version of zkSync 1.0, zkSync 2.0, would be a much better solution that is EVM compatible. Matter Lab explored various technical implementation plans, including TinyRam, Optimized Special Ops, Recursive TinyRam is a simple and traditional random browser for R1SC circuit (a commonly used circuit in Zero Knowledge Proof). It processes logic from smart contract and generate circuit for common opcodes. However, the consumption could be tremendous: The amount of gates in TinyRam could be thousand times more than that in normal fixed circuit. In other words, in a normal fixed circuit, an “add” calculation could be done via merely one gate, whereas 1000 gates must be involved in TinyRam; the more gates, the higher the gas fee. Even though TinyRam is somewhat inefficient, it has minor influence on the whole consumption structure because a rather small percentage is reserved in dealing with logic. This is a tradeoff between efficiency and compatibility, which the latter weighs more for ZKEVM.

Except, there are some longer commands in EVM, such as CALL, DATACOPY, EXP, CREATE, and so on. These commands are naturally unfriendly to circuit proof. For these special commands, zkEVM of zkSync inserted Optimized Special Ops accordingly in order to facilitate the expression of these longer commands in EVM via specially designed codes as intermediary.

To enhance verification efficiency, EVM added Recursive Aggregation. Through Recursive Aggregation, those proofs, which originally must undergo the verification process separately, only need to be transformed a binary tree as root proof and verified; it is sufficient enough to verify that all proofs from leaf nodes are correct. Thus, verification efficiency is elevated.

As mentioned above, Zero Knowledge Proof friendly tech track employs the method of recreating a set of opcode to support Zero Knowledge Proof, which is much less impracticable that ZkSync 2.0 might be the first mature product in the market. Matter Labs has already launched closed beta for zkSync 2.0 that runs Uniswap V2; a trial experience to the Testnet is recommended if more relevant information is desired. The team has not announced the official schedule for the mainnet launch; it is likely that more tests must be conducted in order to confirm the security settings for this typical zkEVM.

Hermez

Hermez devoted to obtain full compatibility to Dapps of Ethereum by exploiting nativeommand set of EVM. It enables an optimized implementation from existing tools and ecosystem on Ethereum with higher security.

However, some native EVM commands are reluctant to Zero Knowledge Proof. The team alter the tough codes to some intermediary codes, micro opcode, to express the same logic that could be accepted. This kind of intermediary codes are customized and optimized; Zero Knowledge Proof is more likely to be generated in this case. Therefore, a balance is more likely to be achieved between maximizing Zero Knowledge Proof generation and optimizing compatibility of EVM, in the middle between the two tracks.

As native opcode of EVM requires executing environment, intermediary opcode is subject to a typical environment-uVM. UVM is composed by ROM and Main SM, and Main SM consists of various SM that could handle multiple functions.

Let’s dive into how Hermez produces proofs according to the program logic. A program has to be executed step by step no matter how complicated the logic is. For instance, extracting a number, completing a calculation, responding to a condition, jumping to another string, etc, the program reiterates various execution of commands until an ending condition is encountered. Although the trace, which represents the pathway of execution and number of executions, could be random, the result would be still within a certain scope of possible outcomes. That is to say, even though the program could not determine the specific route to go through, it would proceed on one of the Hermez stores these certain intermediary opcode in ROM, and configures responding codes according to different storage locations and commands characteristics, namely rom(x). During the process of program execution, a real opcode would be generated according to each operation, namely instTrace(x). Plookup algorism could be utilized in the process of verifying instTrace(x) is a subset of rom(x).

One could not identify a song if he or she could not hear the melody that belongs to the typical song. The same thing applies when identifying a program: A program is determined to be falsely executed if codes being executed are not genetically part of the program.

An assumption was made earlier by someone anonymous: It would be irrational to consider a program is correctly executed if it follows certain paths but in misplaced order. From my perspective, it is controversial to conclude the status of program execution merely by how it is executed. ZkEVM need, and only need to verify the exact codes of smart contract to be executed on Layer 2. Other possible glitch or the order of codes execution should not be part of zkEVM verification; developers who write and deploy the smart contract should be concerned.

In terms of proving the consistency of storage, Hermez utilize the prove of correlation for key-values. Compared to Applied ZKP, Hermez introduced Hash and Merkle Tree; a considerable amount of hash computations exist. However, the consumption for generating Zero Knowledge Proof by Hashing could be enormous, Hermez has not declared any official treatments in this case. From my own perspective, and consistent with the logic mentioned earlier this article, as long as the fixed logic is executed and verified, the degree of completion is entirely beyond concern.

The next proofs from SM could be integrated as a whole to be sent and verified by the verifiers.

Last but not least, Hermez employs a large amount of polynomial promises: the proof being generated is zk-STARK instead of zk-SNARK. Zk-STARK constitute a large proportion of storage, deviating from the principle that Rollup is born to minimize the amount of data submitted to Layer 1. As a result, Hermez proposed that a proof could be synthesized for a typical proof: A STARK proof could be generated first, PLONK or Groth 16 coule then come to play the role in synthesizing a shorter proof. It is commensurate with two separated compilation that directly reduce the consumption of the verifier and save unnecessary occupation of Layer 1 storage, achieving the function of scaling.

Hermez team prepares to launch Testnet in Q4 2021, and Mainnet in Q2 2022. Stay

AppliedZKP

Except zkSync 2.0 and Hermez, the construction of the “overpass” cannot be whole without AppliedZKP. An interesting topic is first spotted on AppliedZKP: Bus Mapping.

The inherent logic of Bus Mapping is to deal with storage and computation independently. When corresponding data is correctly read by a group of codes, executed in a preset order and intervened the account status, it would be considered as an effective execution. They categorized proof to “Status Proof” and “EVM Proof”. “Status Proof” is the final outcome that operations of status/storage/stacks are correctly executed, while EVM confirms the correct codes are executed within certain time range. With these two proofs in appearance, Ethereum Mainnet would be capable of authenticating whether programs are being executed on Layer 2.

To be more specific, “Status Proof” must match the status of operations related to storage completed in the EVM. An EVM storage is composed by 3 parts: Storage, Memory and Stack. “Status Proof” has to provide proof to each part respectively. Bus Mapping plays a role as a gateway transporting data between computation module and storage module. “Status Proof” would be the one to communicate with the computation module that data transported in Bus Mapping is consistent with that in the storage module.

The reflection of Bus Mapping includes two operations according to status. One is to read the old status, the other is to rewrite a new status. Storage status (applicable for Storage, Memory and Stack) is organized by sorts of key-values , a confirmation of receiving the correct data is equal to a confirmation that data transported by Bus Mapping match the data in storage status. Furthermore, plookup algorism would be employed to verify that the keys and values transported by Bus Mapping are inside the source being read; keys and values match each other. Thus, plookup finishes the verification process, in other words, academically, a relationship of subset between two data sets is confirmed.

Plookup first transforms the proof of bit operation to the verification that if input and output match the default setting in the lookup table, and then to the summary of whether the group of vectors is inclusive of another. By doing so, the number of Gate Constraints could be reduced, therefore efficiency levels up.

Proof of EVM need to confirm every single operation in the program, including calculation (plus, minus, multiplication and division), logic operation (“and” , “or” and “not”), program redirect (call), etc.. Each step requires to undergo an entire process of realizing opcode, defining constraints and EVM execution result, confirming elements of execution step in order to complete the EVM circuit.

Summary and Expectations

For Ethereum, the well-known “highway”, ZK Rollup has increased total transaction volume over 500 times, boosting TPS to 2000, which is on the par with current VISA payment system. After vast development of ZKEVM, ZK Rollup would be capable of handling more cases and providing comprehensive support for various applications, thus stands out to be a pioneer in the Rollup market.

Pressure of traffic on Ethereum could be enormously alleviated thanks to faster transportation of data. On one hand, in this case, Ethereum stands a better chance in the fierce competition of newly emerged public chains, such as Solana, Avalanche, Fantom, etc.. As a result, these public chains lost comparative advantage in terms of performance so that they have to differentiate from each other and employ more innovative strategies in order to attract users and grow their ecosystem. On the other hand, more newly launched projects could deploy on Ethereum with a lower cost and still benefit from the mature and powerful Ethereum ecosystem. In all, ZKEVM is the key. We believe that the development of technology would eventually make everything mentioned above true. Perhaps, the discussion of ZKEVM should not be in the scale of “whether ZKEVM would come” any more, but “when ZKEVM would come” instead.

Besides, ZKEVM is not the finish line of Rollup. The future of Rollup could way beyond our imagination rather than a temporary transition. According to Vitalik, for Ethereum, Rollups are more than likely to be the sole scalable solution without trust in the short run, or even long term. The volume of Rollup could be optimized by the reduction of gas fee for the calldata part in the block, cutting more than 5 times cost down, which is less than 1% of that in Layer 1; when Sharding is successful, scalability of Rollup could be amplified exponentially that further curtails the transaction fee to negligibly low.

Rollup could prevail among all public chains other than Ethereum. A newly developed district would be sparsely populated because very few could perceive and embrace the advanced philosophy of design; traffic jam might not be an issue at this time. So are the public chains. However, traffic would be eventually accumulated to a certain level that may cause traffic jam, an “overpass” is necessary sooner or later to sooth the situation. Rollup remains indispensable considering possible consequences that may appear in the future, and ZKEVM would play a vital role in the challenges yet to come.

Leituras Relacionadas

Cross-Chain Bridges Actively Adapt, LI.FI Leverages Intent Architecture to Become the Liquidity Hub for TradFi Institutions

Cross-Chain Bridge LI.FI Transforms with Intents Architecture to Serve as Liquidity Hub for TradFi Institutions Facing declining cross-chain transaction volumes and overall crypto market liquidity, cross-chain bridge protocol LI.FI is proactively shifting its strategy. Moving beyond its role as a "liquidity transfer protocol," LI.FI is targeting new assets, clients, and operational systems. Key to this transformation is the launch of LI.FI Intents, an intent-based execution architecture. This product positions itself as a foundational layer for stablecoin payments, Real World Assets (RWA), and compliant on-chain liquidity, catering specifically to fintech companies, neobanks, wallets, and regulated financial institutions. LI.FI Intents simplifies user experience by offering a turnkey solution. It leverages a solver network for market-maker level execution, enabling precise cross-chain swaps (e.g., between USDC and USDT) without users managing gas tokens or complex blockchain steps. It lowers barriers to entry by integrating with applications like Jumper and Rabby, allowing enterprise users to bypass direct wallet interactions for transactions like payments and asset transfers. The architecture emphasizes compliance. Its network consists of verified legal entities, and enterprises can review and approve orders within their compliance frameworks before processing. All interacting wallets undergo OFAC screening. For ecosystem coverage, LI.FI Intents supports major networks including EVM chains, Solana, and Tron, mitigating risks associated with single-chain dependency. In essence, as tokenized assets like RWAs gain traction, LI.FI Intents focuses on efficiently integrating stablecoin payments and compliant liquidity into enterprise ecosystems. By automating complex execution steps—allowing users to simply declare their intent (the "destination")—it aims to enhance operational efficiency and capital utilization for institutional clients.

Odaily星球日报Há 34m

Cross-Chain Bridges Actively Adapt, LI.FI Leverages Intent Architecture to Become the Liquidity Hub for TradFi Institutions

Odaily星球日报Há 34m

Trading

Spot
Futuros

Artigos em Destaque

O que é ETH 2.0

ETH 2.0: Uma Nova Era para o Ethereum Introdução ETH 2.0, amplamente conhecido como Ethereum 2.0, marca uma atualização monumental à blockchain do Ethereum. Esta transição não é meramente uma mudança estética; visa melhorar fundamentalmente a escalabilidade, segurança e sustentabilidade da rede. Com uma mudança do mecanismo de consenso em Proof of Work (PoW), intensivo em energia, para um Proof of Stake (PoS) mais eficiente, o ETH 2.0 promete uma abordagem transformadora ao ecossistema blockchain. O que é ETH 2.0? ETH 2.0 é um conjunto de atualizações distintas e interconectadas focadas na otimização das capacidades e desempenho do Ethereum. Esta reformulação foi projetada para abordar desafios críticos que o mecanismo atual do Ethereum enfrentou, particularmente em relação à velocidade das transações e à congestão da rede. Objetivos do ETH 2.0 Os principais objetivos do ETH 2.0 giram em torno da melhoria de três aspectos centrais: Escalabilidade: Com o objetivo de melhorar significativamente o número de transações que a rede pode manejar por segundo, o ETH 2.0 procura ultrapassar a limitação atual de aproximadamente 15 transações por segundo, alcançando potencialmente milhares. Segurança: Medidas de segurança melhoradas são integrais ao ETH 2.0, especialmente através da resistência aprimorada contra ciberataques e da preservação do ethos descentralizado do Ethereum. Sustentabilidade: O novo mecanismo PoS foi projetado não apenas para melhorar a eficiência, mas também para reduzir drasticamente o consumo de energia, alinhando a estrutura operacional do Ethereum com considerações ambientais. Quem é o Criador do ETH 2.0? A criação do ETH 2.0 pode ser atribuída à Ethereum Foundation. Esta organização sem fins lucrativos, que desempenha um papel crucial no apoio ao desenvolvimento do Ethereum, é liderada pelo co-fundador notável Vitalik Buterin. A sua visão de um Ethereum mais escalável e sustentável tem sido a força motriz por trás desta atualização, envolvendo contribuições de uma comunidade global de desenvolvedores e entusiastas dedicados a melhorar o protocolo. Quem são os Investidores do ETH 2.0? Embora os detalhes sobre os investidores do ETH 2.0 não tenham sido tornados públicos, é sabido que a Ethereum Foundation recebe apoio de várias organizações e indivíduos no espaço da blockchain e tecnologia. Esses parceiros incluem firmas de capital de risco, empresas de tecnologia e organizações filantrópicas que compartilham um interesse mútuo em apoiar o desenvolvimento de tecnologias descentralizadas e infraestrutura de blockchain. Como Funciona o ETH 2.0? ETH 2.0 é notável por introduzir uma série de características chave que o diferenciam do seu predecessor. Proof of Stake (PoS) A transição para um mecanismo de consenso PoS é uma das mudanças de destaque do ETH 2.0. Ao contrário do PoW, que depende da mineração intensiva em energia para a verificação de transações, o PoS permite que os utilizadores validem transações e criem novos blocos de acordo com a quantidade de ETH que apostam na rede. Isso leva a uma maior eficiência energética, reduzindo o consumo em aproximadamente 99,95%, tornando o Ethereum 2.0 uma alternativa consideravelmente mais ecológica. Shard Chains As shard chains são outra inovação crítica do ETH 2.0. Estas cadeias menores operam em paralelo com a cadeia principal do Ethereum, permitindo que várias transações sejam processadas simultaneamente. Esta abordagem melhora a capacidade geral da rede, abordando preocupações de escalabilidade que têm atormentado o Ethereum. Beacon Chain No coração do ETH 2.0 está a Beacon Chain, que coordena a rede e gere o protocolo PoS. Ela atua como uma espécie de organizador: supervisiona os validadores, garante que as shards permaneçam conectadas à rede e monitora a saúde geral do ecossistema blockchain. Linha do Tempo do ETH 2.0 A jornada do ETH 2.0 tem sido marcada por vários marcos chave que traçam a evolução desta atualização significativa: Dezembro de 2020: O lançamento da Beacon Chain marcou a introdução do PoS, preparando o caminho para a migração para o ETH 2.0. Setembro de 2022: A conclusão de “The Merge” representa um momento crucial em que a rede Ethereum fez a transição com sucesso de um quadro PoW para um PoS, anunciando uma nova era para o Ethereum. 2023: O lançamento esperado das shard chains visa melhorar ainda mais a escalabilidade da rede Ethereum, solidificando o ETH 2.0 como uma plataforma robusta para aplicações e serviços descentralizados. Características Chave e Benefícios Escalabilidade Melhorada Uma das vantagens mais significativas do ETH 2.0 é a sua escalabilidade melhorada. A combinação de PoS e shard chains permite que a rede expanda a sua capacidade, permitindo que acomode um volume de transações muito maior em comparação com o sistema legado. Eficiência Energética A implementação do PoS representa um enorme passo em direção à eficiência energética na tecnologia blockchain. Ao reduzir drasticamente o consumo de energia, o ETH 2.0 não só reduz os custos operacionais, mas também se alinha mais estreitamente com os objetivos globais de sustentabilidade. Segurança Aprimorada Os mecanismos atualizados do ETH 2.0 contribuem para uma segurança melhorada em toda a rede. O uso do PoS, juntamente com medidas de controle inovadoras estabelecidas através das shard chains e da Beacon Chain, assegura um maior grau de proteção contra potenciais ameaças. Custos Mais Baixos para os Utilizadores À medida que a escalabilidade melhora, os efeitos sobre os custos de transação também serão evidentes. Aumentada a capacidade e reduzida a congestão, espera-se que isso se traduza em taxas mais baixas para os utilizadores, tornando o Ethereum mais acessível para transações do dia a dia. Conclusão ETH 2.0 marca uma evolução significativa no ecossistema da blockchain do Ethereum. Ao abordar questões fundamentais como a escalabilidade, o consumo de energia, a eficiência das transações e a segurança geral, a importância desta atualização não pode ser subestimada. A transição para o Proof of Stake, a introdução das shard chains e o trabalho fundamental da Beacon Chain são indicativos de um futuro em que o Ethereum pode atender à crescente demanda do mercado descentralizado. Em uma indústria movida pela inovação e progresso, o ETH 2.0 representa um testemunho das capacidades da tecnologia blockchain em pavimentar o caminho para uma economia digital mais sustentável e eficiente.

100 Visualizações TotaisPublicado em {updateTime}Atualizado em 2024.12.03

O que é ETH 2.0

O que é ETH 3.0

ETH3.0 e $eth 3.0: Uma Análise Profunda do Futuro do Ethereum Introdução No ambiente em rápida evolução da criptomoeda e da tecnologia blockchain, o ETH3.0, frequentemente denotado como $eth 3.0, emergiu como um tema de considerável interesse e especulação. O termo abrange dois conceitos principais que merecem esclarecimento: Ethereum 3.0: Esta representa uma potencial atualização futura destinada a aumentar as capacidades da atual blockchain do Ethereum, focando especialmente na melhoria da escalabilidade e desempenho. ETH3.0 Meme Token: Este distinto projeto de criptomoeda procura aproveitar a blockchain do Ethereum na criação de um ecossistema centrado em memes, promovendo o envolvimento na comunidade de criptomoedas. Compreender esses aspectos do ETH3.0 é essencial não apenas para entusiastas de criptomoedas, mas também para aqueles que observam as tendências tecnológicas mais amplas no espaço digital. O que é ETH3.0? Ethereum 3.0 Ethereum 3.0 é promovido como uma atualização proposta para a rede Ethereum já estabelecida, que tem sido a espinha dorsal de muitas aplicações descentralizadas (dApps) e contratos inteligentes desde a sua criação. As melhorias vislumbradas concentram-se principalmente na escalabilidade—integrando tecnologias avançadas como sharding e provas de conhecimento zero (zk-proofs). Essas inovações tecnológicas visam facilitar um número sem precedentes de transações por segundo (TPS), potencialmente alcançando milhões, abordando assim uma das limitações mais significativas enfrentadas pela tecnologia blockchain atual. A melhoria não é meramente técnica, mas também estratégica; visa preparar a rede Ethereum para uma adoção generalizada e utilidade em um futuro marcado por uma maior demanda por soluções descentralizadas. ETH3.0 Meme Token Em contraste com o Ethereum 3.0, o ETH3.0 Meme Token aventura-se por um domínio mais leve e divertido, combinando a cultura dos memes da internet com a dinâmica das criptomoedas. Este projeto permite que os usuários comprem, vendam e negociem memes na blockchain do Ethereum, proporcionando uma plataforma que fomenta o envolvimento da comunidade através da criatividade e interesses compartilhados. O ETH3.0 Meme Token visa demonstrar como a tecnologia blockchain pode interseccionar com a cultura digital, criando casos de uso que são tanto divertidos quanto financeiramente viáveis. Quem é o Criador do ETH3.0? Ethereum 3.0 A iniciativa em direção ao Ethereum 3.0 é impulsionada principalmente por um consórcio de desenvolvedores e pesquisadores dentro da comunidade Ethereum, notavelmente incluindo Justin Drake. Conhecido por suas percepções e contribuições para a evolução do Ethereum, Drake tem sido uma figura proeminente nas discussões sobre a transição do Ethereum para uma nova camada de consenso, referida como “Beam Chain”. Esta abordagem colaborativa ao desenvolvimento significa que o Ethereum 3.0 não é fruto de um único criador, mas sim uma manifestação da engenhosidade coletiva focada no avanço da tecnologia blockchain. ETH3.0 Meme Token Os detalhes sobre o criador do ETH3.0 Meme Token são atualmente indetectáveis. A natureza dos tokens de meme frequentemente leva a uma estrutura mais descentralizada e impulsionada pela comunidade, o que poderia explicar a falta de atribuição específica. Isso alinha-se com a ethos da comunidade de criptomoedas mais ampla, onde a inovação geralmente surge de esforços colaborativos em vez de esforços individuais. Quem são os Investidores do ETH3.0? Ethereum 3.0 O apoio ao Ethereum 3.0 provém principalmente da Fundação Ethereum, juntamente com uma comunidade entusiástica de desenvolvedores e investidores. Esta associação fundacional proporciona um grau significativo de legitimidade e melhora as perspectivas de uma implementação bem-sucedida, uma vez que aproveita a confiança e credibilidade construída ao longo de anos de operações de rede. Em um clima em rápida mudança no mundo das criptomoedas, o apoio da comunidade desempenha um papel crucial no impulso ao desenvolvimento e adoção, posicionando o Ethereum 3.0 como um sério candidato a futuros avanços na blockchain. ETH3.0 Meme Token Embora as fontes atualmente disponíveis não forneçam informações explícitas sobre as fundações ou organizações de investimento que apoiam o ETH3.0 Meme Token, é indicativo do modelo típico de financiamento para tokens de meme, que frequentemente depende de apoio base e engajamento da comunidade. Os investidores em tais projetos costumam consistir em indivíduos motivados pelo potencial de inovação impulsionada pela comunidade e pelo espírito de cooperação encontrado dentro da comunidade cripto. Como Funciona o ETH3.0? Ethereum 3.0 As características distintivas do Ethereum 3.0 residem em sua proposta de implementação de sharding e tecnologia zk-proof. Sharding é um método de partição da blockchain em partes menores e gerenciáveis ou “shards”, que podem processar transações simultaneamente em vez de sequencialmente. Esta descentralização do processamento ajuda a prevenir congestionamentos e garante que a rede permaneça responsiva mesmo sob carga pesada. A tecnologia de prova de conhecimento zero (zk-proof) contribui com outra camada de sofisticação ao permitir a validação de transações sem revelar os dados subjacentes envolvidos. Este aspecto não apenas melhora a privacidade, mas também aumenta a eficiência geral da rede. Há também conversas sobre a incorporação de uma Máquina Virtual Ethereum de conhecimento zero (zkEVM) nesta atualização, amplificando ainda mais as capacidades e utilidade da rede. ETH3.0 Meme Token O ETH3.0 Meme Token distingue-se ao capitalizar sobre a popularidade da cultura dos memes. Estabelece um mercado para que os usuários participem da negociação de memes, não apenas para entretenimento, mas também para potencial ganho econômico. Ao integrar recursos como staking, provisão de liquidez e mecanismos de governança, o projeto fomenta um ambiente que incentiva a interação e participação da comunidade. Ao oferecer uma mistura única de entretenimento e oportunidade econômica, o ETH3.0 Meme Token visa atrair um público diversificado, variando de entusiastas de criptomoedas a conhecedores casuais de memes. Cronologia do ETH3.0 Ethereum 3.0 11 de novembro de 2024: Justin Drake sugere a próxima atualização do ETH 3.0, centrada nas melhorias de escalabilidade. Este anúncio sinaliza o início de discussões formais sobre a futura arquitetura do Ethereum. 12 de novembro de 2024: A proposta antecipada para Ethereum 3.0 deve ser revelada no Devcon em Bangkok, preparando o cenário para um feedback mais amplo da comunidade e potenciais próximos passos no desenvolvimento. ETH3.0 Meme Token 21 de março de 2024: O ETH3.0 Meme Token é oficialmente listado no CoinMarketCap, marcando sua entrada no domínio público das criptomoedas e aumentando a visibilidade de seu ecossistema baseado em memes. Pontos Chave Em conclusão, Ethereum 3.0 representa uma evolução significativa dentro da rede Ethereum, focando em superar limitações quanto à escalabilidade e desempenho através de tecnologias avançadas. As atualizações propostas refletem uma abordagem proativa às futuras demandas e usabilidade. Por outro lado, o ETH3.0 Meme Token encapsula a essência da cultura impulsionada pela comunidade no espaço das criptomoedas, aproveitando a cultura dos memes para criar plataformas envolventes que incentivam a criatividade e participação dos usuários. Compreender os distintos propósitos e funcionalidades do ETH3.0 e $eth 3.0 é fundamental para qualquer pessoa interessada nos desenvolvimentos contínuos dentro do espaço cripto. Com ambas as iniciativas a pavimentar caminhos únicos, elas sublinham coletivamente a natureza dinâmica e multifacetada da inovação em blockchain.

102 Visualizações TotaisPublicado em {updateTime}Atualizado em 2024.12.03

O que é ETH 3.0

Como comprar ETH

Bem-vindo à HTX.com!Tornámos a compra de Ethereum (ETH) simples e conveniente.Segue o nosso guia passo a passo para iniciar a tua jornada no mundo das criptos.Passo 1: cria a tua conta HTXUtiliza o teu e-mail ou número de telefone para te inscreveres numa conta gratuita na HTX.Desfruta de um processo de inscrição sem complicações e desbloqueia todas as funcionalidades.Obter a minha contaPasso 2: vai para Comprar Cripto e escolhe o teu método de pagamentoCartão de crédito/débito: usa o teu visa ou mastercard para comprar Ethereum (ETH) instantaneamente.Saldo: usa os fundos da tua conta HTX para transacionar sem problemas.Terceiros: adicionamos métodos de pagamento populares, como Google Pay e Apple Pay, para aumentar a conveniência.P2P: transaciona diretamente com outros utilizadores na HTX.Mercado de balcão (OTC): oferecemos serviços personalizados e taxas de câmbio competitivas para os traders.Passo 3: armazena teu Ethereum (ETH)Depois de comprar o teu Ethereum (ETH), armazena-o na tua conta HTX.Alternativamente, podes enviá-lo para outro lugar através de transferência blockchain ou usá-lo para transacionar outras criptomoedas.Passo 4: transaciona Ethereum (ETH)Transaciona facilmente Ethereum (ETH) no mercado à vista da HTX.Acede simplesmente à tua conta, seleciona o teu par de trading, executa as tuas transações e monitoriza em tempo real.Oferecemos uma experiência de fácil utilização tanto para principiantes como para traders experientes.

3.1k Visualizações TotaisPublicado em {updateTime}Atualizado em 2026.06.02

Como comprar ETH

Discussões

Bem-vindo à Comunidade HTX. Aqui, pode manter-se informado sobre os mais recentes desenvolvimentos da plataforma e obter acesso a análises profissionais de mercado. As opiniões dos utilizadores sobre o preço de ETH (ETH) são apresentadas abaixo.

活动图片