In-Depth Research Report on Account Abstraction (AA): Generational Leap in Ethereum’s Account System & Landscape Reshaping in the Next Five Years

HTX LearnPublicado a 2025-12-18Actualizado a 2026-07-08

Resumen

On December 3, 2025, Ethereum underwent a major upgrade named Fusaka, marking the third milestone update since The Merge and the Dencun upgrade. This upgrade aims to significantly improve network scalability, reduce transaction costs, and optimize node operation efficiency, with a key focus on enhancing and optimizing functionality related to Account Abstraction (AA). As a major evolution of Ethereum’s account system, AA is designed to address the fundamental security and experience bottlenecks of the “private key equals account” model in the EOA era, enabling on-chain accounts to possess modern capabilities such as programmability, recoverability, and permission control.

I. Historical Evolution and Capability Panorama of Account Abstraction (AA)

On December 3, 2025, Ethereum underwent a major upgrade named Fusaka, marking the third milestone update since The Merge and the Dencun upgrade. The upgrade aims to significantly improve network scalability, reduce transaction costs, and optimize node operation efficiency, with a key focus on enhancing and optimizing functionality related to Account Abstraction (AA). In the Ethereum ecosystem, the evolution of account structure has essentially shaped the core logic of on-chain user experience, asset security, and industry development. The dual account system comprised of EOA (Externally-Owned Account) and CA (Contract Account), familiar to the public nowadays, is legacy technology carried since Ethereum’s launch in 2015. However, from 2023 to 2025 when user numbers exceeded tens of millions and Web3 increasingly took on asset custody and user operation infrastructure roles, this system confronts increasingly serious structural bottlenecks. These bottlenecks constrained not only industry scalability but also user growth and real application deployment. Nevertheless, Account Abstraction (AA) is precisely designed to resolve these fundamental structural defects inherent in the Ethereum account system, enabling on-chain worlds to have modern financial-grade security, experience, and autonomy, and ultimately becoming a trusted foundational infrastructure for global users’ assets. The core reason why the current system confronts a bottleneck lies in the fact that EOA hard-codes “private key = asset ownership” at the protocol level. While technically simple, this model has become the largest barrier to scaled adoption in practice.

EOA operates like a “mechanical assembly line” rather than the intuitive “one-click execution” familiar to modern internet users. Besides, in terms of access control, EOAs cannot support fine-grained settings: they cannot set daily spending limits, define multi-signature rules, create parent-child accounts, freeze specific permissions, or activate automated strategies. EOAs function as a universal key that holds all assets and all permissions. If an EOA is ever compromised, all assets and permissions become exposed.

Therefore, the Ethereum community began rethinking “what an account should be", and AA’s vision that accounts should be code, not merely private keys directly addresses this problem. Under the AA paradigm, accounts can be programmed, verified, recovered, and upgraded. In other words, limitations resulted from the EOA hard-coded architecture can now be abstracted away. Wallets are no more mere signature containers, but instead become “smart accounts” with logic, strategies, and permission systems. Account Abstraction was not born overnight, but evolved through extensive design negotiations. Key proposals include EIP-86, EIP-2938, ERC-4337 and the latest EIP-7702. Specifically, both EIP-86 and EIP-2938 require consensus-layer changes, making them difficult to implement. The brilliance of ERC-4337 lies in its construction of AA through a parallel system. Using UserOperation and Bundler, it circumvents the need for base protocol changes, enabling AA to be activated seamlessly within the existing Ethereum ecosystem. In essence, ERC-4337 builds a new channel parallel to the transaction mempool: Users could submit UserOperation instead of transactions. Bundlers then package, simulate, and aggregate these operations, submitting them to the EntryPoint contract for execution. This enables contract accounts to proactively send transactions, execute them in batch, perform atomic actions, and validate multi-signatures. Although this increases engineering complexity, it currently offers the only practical route to fully enable AA without a hard fork. During the 2024-2025 evolution, Vitalik Buterin proposed EIP-7702, which aims to make transitions between EOAs and AA smoother, though ecosystem support is still needed. AA’s significance goes beyond fixing structural EOA flaws to bring generational upgrades in experience, security, and cost capabilities for the Ethereum. Firstly, on the security enhancement side, AA introduces a programmable permission system: Social recovery mechanisms could be activated so there is no need for users to worry about losing mnemonic phrases; multi-signature configurations are enabled for families, institutions and DAOs to manage their assets more securely; parent-child accounts, whitelists and spend limits could be created; and selective permission freezing and temporary keys are offered for more flexible usage. The single-point-of-failure model of EOAs is completely eliminated with AA, contributing to orders-of-magnitude improvements in security. In terms of cost, with the introduction of Paymasters, users can pay gas with any ERC-20 token or even have gas fees sponsored by a third party, enabling a truly “fee-agnostic” experience. Besides, AA also supports batch execution and transaction aggregation, significantly reducing the number of signatures required and lowering the cost impact of failed operations, thereby greatly reducing the total cost of complex user interactions. On the user experience side, AA brings Web3 interaction much closer to the ease of Web2 for the first time. Users can execute composite actions with a single click, eliminating the need to understand complex details such as nonces, gas settings, or signature ordering. New users can even create wallets without mnemonic phrases, completing account setup using biometric authentication, local recovery mechanisms, email verification, and other familiar methods. Complex on-chain logic such as strategy trading, automated liquidation, and scheduled execution can be embedded directly in account logic, enabling on-chain applications to deliver services as "smart products".

AA’s ultimate goal is to transform blockchain from an “experimental system for tech experts” into a "universal account infrastructure for global users". If the original bottleneck of Web3 was the primitive model of “key equals account” over the past decade, then the next breakthrough for Web3 in the coming decade will emerge from the new paradigm of “account equals program". AA is more than a wallet upgrade, instead, it has rewritten the entire logic of on-chain interaction. It not only improves user experience but also lowers development barriers, allowing DApps to implement Web2-style workflows, define permissions, and build trustless security at the account layer. With the widespread adoption of ERC-4337 from 2024 to 2025, components such as Bundlers, Paymasters, AA wallets, Modular security plugins, are forming an industrial chain and AA is shifting from a concept into infrastructure. Just as the evolution of mobile from Web1.0 to Web2.0 spawned super apps and trillion-dollar industries, the implementation of Account Abstraction may become the underlying driver of Web3’s next exponential growth. The limitations of the EOA era are being dismantled step by step, and AA is leading the industry into a safer, more flexible, and more mainstream-friendly on-chain world.

 

II. Prospects and Challenges of Account Abstraction (AA)

Account Abstraction (AA) has re-emerged as a core narrative within the Ethereum ecosystem from 2023 to 2025. However, after the initial enthusiasm and high expectations, the structural challenges it faces have progressively come into focus. The long-term prospects of AA remain highly anticipated given that it promises generational improvements in security, usability, and automation, potentially replacing the “private-key-as-account” model of the EOA era. Yet, at the implementation level, the deployment of ERC-4337 has been repeatedly questioned, often described as “big hype, few results". Viewed from four dimensions — industry structure, cost model, ecosystem collaboration, and competing protocols, AA’s future comes with both promise and challenges. It embodies the next generation of blockchain account architecture while also revealing the complexity inherent in protocol upgrades.

On the cost side, the primary resistance to AA stems from high gas fees. Compared to the 21,000 gas of an EOA transaction, the cost of a UserOperation under AA on mainnet doubles to about 42,000 gas. This overhead is not wasteful but structural: 4337 validation calls include validateUserOp, EntryPoint’s state access, wallet contract bytecode reads, log emissions, initCode deployment, and data encoding costs. Each step requires additional on-chain computation. In theory, placing complex logic inside contract wallets is the correct approach, because a true account should be programmable, verifiable, and controllable. However, Ethereum L1’s expensive resources mean that no matter how sophisticated the design, it ultimately translates into cost, which exactly has become the strongest barrier to adoption of AA. Many potential users and projects are deterred as a result. At the business model level, the Paymaster, another core component of AA faces unclear ROI. The Paymaster structure involves projects subsidizing gas on behalf of users in exchange for user growth or retention value. The problem is that there is no mechanism for projects to clearly compute the causal chain of “gas subsidy → new users → retention and monetization". Most wallets or DApps rely on subsidies early on to attract users, but once subsidies disappear, the very low switching costs for users make it difficult to build network effects. In reality, the Web3 ecosystem lacks the “advertising, retention, and traffic loop” seen in Web2 industries, leaving Paymasters’ expenditures unrewarded and preventing the formation of a sustainable business loop. Therefore, AA’s slow adoption is essentially not a technical issue, but rather a result of “lacking commercial traction". The market does not pay for notions, only for profits. Ecosystem fragmentation further exacerbates 4337’s difficulties. The full AA stack includes EntryPoint, Bundler, Paymaster, Wallet Contract, and Aggregator, and each wallet vendor and chain may implement their own variant. Because AA’s structure is complex and a user’s UserOperation is not handled directly by the chain, but via Bundler simulation and aggregation, even slight differences in implementations across ecosystems can lead to incompatibilities. Incompatibility between wallets, high integration costs for DApps, and complex on-chain testing all force project teams to re-evaluate the cost-benefit of supporting AA. Although EOA is primitive, it is extremely simple; AA is advanced, but in its early adoption phase it has confronted the problem of “ecosystem fragmentation". For the vast majority of small-to-medium DApps, supporting 4337 does not deliver obvious benefits, yet imposes extra technical costs, leading to a mindset of “using it only if necessary”.

The lack of cross-chain capability also undermines AA’s systemic value. ERC-4337 is essentially an account system upgrade for EVM Layers and it relies on EntryPoint, the UserOp pattern, and the EVM’s verification logic, making it inherently difficult to extend to non-EVM chains. Achieving a unified multichain experience would require additional intermediate layers, multiple EntryPoints, repeated verifications, and cross-chain messaging, which dramatically increases cost and complexity. The Web3 world is already fragmented across chains, and AA’s inability to form a unified account system across chains diminishes its potential to serve as the “unified standard for Web3 accounts". Users’ smart accounts on one chain cannot seamlessly map to another, significantly shrinking AA’s scalable value. Despite these structural challenges, AA remains a highly promising direction for the future. This is because the evolution of next-generation blockchain infrastructure is trending towards AA rather than away from it. In particular, the large-scale rise of L2 (Rollups) structurally alleviates AA’s cost pain points. The data compression capabilities of mainstream ZK Rollups and Optimistic Rollups can reduce 4337’s gas costs by 70%–90%, and batching UserOperations can further lower per-operation on-chain overhead. Therefore, “Rollup + AA” is highly likely to become the dominant combination in the next 35 years, easing the cost burden on the Ethereum mainnet from high-frequency AA operations. Concurrently, ERC-4337 continues to evolve, and the introduction of BLS aggregate signatures is one of the most significant advancements. By aggregating multiple user operations into a single signature and executing them in batches, the amount of data that must be published on-chain is significantly reduced, which both increases TPS and substantially cuts gas consumption. More importantly, it improves on-chain transaction throughput, turning AA into not just a “wallet upgrade solution”, but a “more efficient on-chain operations protocol". Coupled with Rollup compression capabilities, the cost bottlenecks in core performance faced by AA are being broken, and the industry is beginning to see its commercial feasibility. Additionally, Vitalik’s proposed EIP-7702 provides a “temporary conversion” path from EOAs to smart accounts, allowing users to enable AA capabilities within a transaction without migrating assets or switching wallets. EIP-7702 greatly reduces ecosystem friction by enabling wallet vendors to incrementally upgrade without fundamentally reconstructing their underlying architecture, allowing users to enter the AA world with virtually no perceptible change. This represents an important inflection point: AA no longer needs to “replace EOAs” but can instead coexist and evolve with them, guiding ecosystem migration through a gradual path.

However, AA’s future faces its greatest challenge from a sudden emergence of a competitor in 2024–2025: the x402 protocol. Compared to AA, x402 resembles more of an “Internet-scale unified payments protocol”, using HTTP 402 as an entry point to unify Web2 and Web3 payment interface logic. While AA seeks to solve “on-chain account abstraction”, x402 aims to solve “Internet-wide payment abstraction". AA targets Web3 users, while x402 could reach users across the entire Internet. More importantly, x402 has a natural business closed loop: Providers and Facilitators can charge fees directly within the payment flow, giving it clear market traction. Within the x402 framework, ERC-8004 becomes a “tooling protocol” rather than foundational infrastructure to which the entire network must migrate, and therefore its adoption difficulty is far lower than that of AA. In other words, AA must convince the ecosystem to migrate to its defined system, whereas x402 chooses to adapt to existing Internet usage habits, giving it a significant advantage in commercial adoption. Therefore, the prospects for AA are clear, but the path ahead is rugged. There is a deep tension between technical sophistication and industrial reality: The future that AA defines is indeed better, but realizing it requires overcoming multiple challenges including high cost, low commercial incentives, ecosystem fragmentation, and competing protocols. With the arrival of the Rollup era, maturation of signature aggregation technologies, and the introduction of EIP-7702 to enable a compatibility path, AA’s cost and compatibility issues will be gradually resolved. Yet breakthroughs in its business model and cross-chain capabilities remain necessary. In the coming years, the key question will not be whether AA is more advanced, but whether the industry can find a path for its organic adoption across users and projects. The future of AA belongs to those ecosystems that can seamlessly bridge protocol capability, product experience and commercial value, instead of mere technical implementers. It may not be the easiest solution to promote, but it remains the one with the greatest potential to reshape on-chain account systems.

 

III. Investment Value and Future Outlook of Account Abstraction (AA)

The role of Account Abstraction (AA) in the blockchain industry is gradually shifting from a “revolutionary technological vision” to a “structural infrastructure upgrade”. Accordingly, its investment value is evolving from early-stage narrative-driven premiums into a holistic assessment encompassing engineering execution, ecosystem coordination, and commercial sustainability. Over the next five years, AA will not become a unified entry point for the entire Web3 ecosystem, nor will it replace EOAs as the standard account system. Instead, it will establish itself firmly at the higher tier of wallet and account architectures, serving as the core representative of “smart accounts” and becoming deeply embedded in on-chain interaction experiences and transaction execution in the Rollup era. Therefore, from an investment perspective, the value of AA lies not in short-term user surges, but in a classic, Internet-style long-term infrastructure investment opportunity.

From a structural trend perspective, AA’s strategic importance will increase significantly with the widespread adoption of EIP-7702. EIP-7702 allows EOAs to temporarily transform into smart accounts within a single transaction, meaning existing wallet systems do not require forced migration or asset restructuring. Users can access AA capabilities such as permission controls, social recovery, multisig logic, and automated strategies, without switching wallets, backing up mnemonic phrases, or migrating assets. This “frictionless upgrade” model makes it smoother and easier for AA’s adoption and gives wallet providers stronger incentives to integrate AA into their underlying architectures. As a result, over the next three to five years, the more likely outcome will be coexistence and convergence between EOAs and AA, rather than outright replacement.

AA’s true deployment stronghold will be the Rollup ecosystem. As L2s such as zkSync, Scroll, StarkNet and Base become mainstream execution infrastructure, AA’s cost pain points will be naturally mitigated by Rollup data compression capabilities, with gas costs dropping by 70%–90% compared to L1. At the same time, BLS signature aggregation and batched UserOperations will further reduce on-chain data footprints, transforming AA-based account operations from “advanced but expensive” into “advanced and affordable". This implies that investment value lies not in L1-based AA, but in AA wallets, Paymasters, and Bundler infrastructure deeply integrated with Rollups. This direction represents tangible engineering value: It is not a conceptual narrative, but a real adoption driver enabled by verifiable on-chain cost reductions. From an industry value-chain perspective, AA’s investment opportunities are primarily concentrated in four infrastructure categories: smart contract wallets, Paymaster service providers, Bundler infrastructure, and L2s that natively support AA. Smart wallets represent the front-end entry point of future user experience. Projects such as Safe, Argent, OKX Web3 Wallet, imToken (AA version), and Zerodev are among the most structurally certain “ecosystem assets". Through modular wallet architectures, social recovery, multisig mechanisms and automation strategies, they enable the transition from “key-based wallets” to “smart account wallets”, exhibiting strong capabilities of driving self-reinforcing user retention. Paymasters are among the most commercially promising components within the AA architecture, serving as the bridge between gas subsidies and user growth. Although Paymaster's business models are not yet fully mature, Paymaster may evolve into “on-chain growth engines” as Rollup adoption expands and on-chain use cases diversify. Projects can subsidize gas fees for high-value users, implement incentive strategies, and apply whitelist-based policies, generating marketing effects analogous to Web2 advertising exposure. As such, projects like Stackup and Pimlico warrant close attention. Bundlers, as the execution layer of AA, represent another form of infrastructure with hidden value, effectively serving as the “transaction batching and logistics layer” of the blockchain world. Providers such as Biconomy and Alchemy’s AA infrastructure are positioned to benefit structurally from the growth of the ERC-4337 ecosystem. While Bundlers do not interface directly with end users, they offer scalable and relatively deterministic revenue models, making them potential candidates for low-volatility, infrastructure-style investment exposure over the long term.

At the same time, AA must contend with both competition and complementarity introduced by the x402 protocol over the next five years. x402 does not aim to replace AA; rather, it positions itself as a unified Internet payment entry point based on HTTP 402, spanning both Web2 and Web3. It features native cross-chain compatibility and a clear commercial closed loop through its Provider + Facilitator fee model. Within the x402 framework, ERC-8004 functions as a plugin rather than foundational infrastructure, granting it significantly stronger adoption potential. From an investment standpoint, AA’s value lies in on-chain account intelligence, while x402’s value lies in unifying Internet-scale payment experiences. The two are more likely to coexist and complement each other than to produce a single dominant winner.

Taken together, over the next five years, AA will form the “middle-layer infrastructure” of the Ethereum and Rollup ecosystems: EOAs remain at the base layer (weakened but persistent), smart accounts powered by AA occupy the middle layer, and x402 enables a unified interoperability network at the top layer. AA's user growth is unlikely to be explosive, but its value will increase steadily alongside rising on-chain transaction volumes, growing demand for automated strategies, professionalized asset custody and loss-prevention requirements. In a world progressively migrating on-chain, AA represents a structural investment direction withhigh-certainty. In a Rollup-driven cost-declining environment, it represents a monetizable future; and in an Internet coexisting with x402, it stands as a central force shaping the on-chain account paradigm.

 

IV. Conclusion

The core value of Account Abstraction lies in transforming Ethereum’s account system from the primitive model of “private key equals account” to the modern paradigm of “account equals program”. It fills a critical gap in the migration from Web2 to Web3 by enabling secure, recoverable, and programmable wallet architectures. Although AA still faces structural constraints including high costs, weak commercial closed loops, and limited cross-chain interoperability, it has already become a foundational direction for enhancing on-chain user experiences. Looking ahead, AA will persist as a long-term, high-end account layer rather than the only universal standard, while x402 complements it by addressing cross-chain interoperability and payment connectivity. Together, these two paradigms will propel Web3 from its early developer-centric phase toward broader mainstream adoption, laying a critical foundation for the vision of a unified Internet account system.

Criptos en tendencia

Lecturas Relacionadas

El modelo de generación de imágenes «Mango» de Mark Zuckerberg solo pierde ante GPT Image 2, nadie le enseñó a corregir, aprendió solo

Meta ha lanzado su primer modelo de generación de imágenes avanzado, Muse Image (cuyo nombre en código es "Mango"), desarrollado por su Meta Super Lab (MSL). Aunque se posiciona segundo en el ranking de generación de imágenes por texto de Arena AI, tras GPT Image 2 de OpenAI, su enfoque innovador y sus capacidades de integración destacan. A diferencia de los modelos tradicionales, Mango actúa como un agente inteligente: investiga información en línea cuando es necesario, realiza cálculos previos e incluso aprende a autoevaluarse y autocorregirse a través del aprendizaje por refuerzo. Esta capacidad de "pensar antes de generar" mejora notablemente sus resultados. Meta aprovecha su inmensa base de usuarios de Instagram al introducir una función que permite generar imágenes personalizadas mediante el uso de @ para referenciar cuentas públicas. Esta integración social es única, pero plantea cuestiones sobre la privacidad, ya que la función está activada por defecto y no notifica a los usuarios. El modelo también se integra con Muse Spark (cuyo nombre en código es "Aguacate") para tareas más complejas. Además, Meta ha lanzado Muse Video, un modelo de generación de video que actualmente ocupa el tercer lugar en su categoría en Arena AI. Más allá de las capacidades técnicas, la ventaja clave de Meta es su escala: Mango está integrado directamente en aplicaciones como Instagram, WhatsApp, Facebook y Messenger, llegando a miles de millones de usuarios. Todas las imágenes generadas llevan una marca de agua invisible (Content Seal) para su identificación.

marsbitHace 2 min(s)

El modelo de generación de imágenes «Mango» de Mark Zuckerberg solo pierde ante GPT Image 2, nadie le enseñó a corregir, aprendió solo

marsbitHace 2 min(s)

Weng Li propone en su nuevo blog: "La autoevolución debe comenzar con Harness", Cui Tianyi de DeepSeek lo comparte

Lilian Weng, exvicepresidenta de seguridad de OpenAI y cofundadora de Thinking Machines Lab, ha publicado un nuevo artículo en su blog donde discute una vía más realista para la autoevolución de la IA: comenzar mejorando el **Harness**, el sistema externo que gestiona cómo un modelo utiliza herramientas, administra el contexto, divide tareas y evalúa resultados, en lugar de modificar directamente los pesos del modelo desde el principio. Cui Tianyi, investigador de DeepSeek, respaldó la idea, destacando que la autoevolución en el nivel del Harness es un campo prometedor, comparable a la evolución del propio modelo. Weng estructura el avance en capas: 1. **Ingeniería de Contexto (Context Engineering):** Optimizar cómo el agente gestiona y actualiza la información en su contexto de trabajo, con enfoques como ACE y MCE. 2. **Diseño de Flujos de Trabajo (Workflow Design):** El modelo no solo sigue, sino que participa en el diseño de los flujos de acción para tareas complejas, como en AI Scientist o ADAS. 3. **Harness Automejorable (Self-Improving Harness):** Aquí el modelo analiza sus propias fallas, propone modificaciones específicas al código del Harness y las valida en un ciclo (Weakness Mining, Harness Proposal, Proposal Validation). Métodos como la **Búsqueda Evolutiva (Evolutionary Search)** o DGM (Darwin Gödel Machine) logran mejoras significativas en benchmarks de código. Weng señala que el Harness y el modelo se reforzarán mutuamente, pero también destaca límites actuales: evaluadores débiles para tareas subjetivas, el riesgo de "reward hacking", la contracción de la diversidad en ciclos evolutivos y la tensión entre éxito a corto plazo y salud del sistema a largo plazo. Concluye que la competencia futura no solo dependerá de los modelos, sino también de la sofisticación de su Harness, marcando un enfoque de ingeniería crucial para la autoevolución de la IA.

marsbitHace 14 min(s)

Weng Li propone en su nuevo blog: "La autoevolución debe comenzar con Harness", Cui Tianyi de DeepSeek lo comparte

marsbitHace 14 min(s)

Charla informal del equipo editorial de Odaily (8 de julio)

**Resumen del Coloquio Editorial de Odaily (8 de julio):** Esta es una sección informal del equipo editorial de Odaily. Los miembros comparten reflexiones y perspectivas personales sobre noticias, datos, eventos candentes e ideas de inversión aún en etapa de desarrollo. El contenido se basa en experiencias reales y no es consejo financiero; su objetivo es ampliar perspectivas y fuentes de información. **Contribuciones principales:** **Wenser (@wenser2010):** * **Mercados bursátiles:** Cree que las acciones de memoria (DRAM), tras una fuerte corrección, siguen en una fase de oferta limitada. Es proclive a vender en corto acciones de empresas relacionadas con criptomonedas (especialmente DAT), pero ve a Circle y Coinbase como posibles activos de rebote. * **Mercados de predicción (Mundial):** Advierte que apostar ciegamente por equipos favoritos es riesgoso. Cita ejemplos donde equipos más débiles tuvieron buen desempeño, sugiriendo que los intereses comerciales influyen. Reafirma su apuesta por la victoria de Francia. * **Software:** Observa un reciente buen desempeño de acciones de software (Microsoft, Salesforce, ServiceNow), pero duda si es un rebote temporal o un cambio fundamental. **Bcxiongdi (@bcxiongdi):** * **Meme coins:** Nota actividad en las cadenas SOL y BSC, pero con un carácter especulativo de bajo volumen (PVP). Recomienda observar la cadena Robinhood. * **Mundial:** Encuentra los mercados de predicción difíciles. Sugiere no comprar antes del partido, sino buscar oportunidades de "compra en mínimos" durante el desarrollo del juego. **Azuma (@azuma_eth):** * **Semiconductores:** Atribuye la corrección del sector a la incertidumbre sobre los planes de gasto de capital (capex) de los gigantes. Confía en que la demanda se mantendrá y considera comprar en caídas (especialmente DRAM). * **Rotación sectorial:** Señala que los fondos de cobertura están comprando acciones tecnológicas de forma concentrada, lo que podría ser una señal de rotación de mercado. * **RKLB (Rocket Lab):** El período de venta de acciones por parte del fundador ha terminado. Considera que la acción, en sus niveles actuales, tiene un riesgo limitado a la baja y un buen potencial alcista. Planea seguir comprando.

Odaily星球日报Hace 32 min(s)

Charla informal del equipo editorial de Odaily (8 de julio)

Odaily星球日报Hace 32 min(s)

Trading

Spot

Artículos destacados

Qué es ETH 2.0

ETH 2.0: Una Nueva Era para Ethereum Introducción ETH 2.0, conocido ampliamente como Ethereum 2.0, marca una actualización monumental de la blockchain de Ethereum. Esta transición no es solo un cambio de imagen; busca mejorar fundamentalmente la escalabilidad, seguridad y sostenibilidad de la red. Con un cambio del mecanismo de consenso intensivo en energía Prueba de Trabajo (PoW) a una Prueba de Participación (PoS) más eficiente, ETH 2.0 promete un enfoque transformador para el ecosistema de blockchain. ¿Qué es ETH 2.0? ETH 2.0 es un conjunto de actualizaciones distintivas e interconectadas centradas en optimizar las capacidades y el rendimiento de Ethereum. La remodelación está diseñada para abordar desafíos críticos que el mecanismo de Ethereum existente ha enfrentado, particularmente en relación con la velocidad de transacción y la congestión de la red. Objetivos de ETH 2.0 Los objetivos principales de ETH 2.0 giran en torno a mejorar tres aspectos fundamentales: Escalabilidad: Con el objetivo de mejorar significativamente la cantidad de transacciones que la red puede manejar por segundo, ETH 2.0 busca superar la actual limitación de aproximadamente 15 transacciones por segundo, potencialmente alcanzando miles. Seguridad: Las medidas de seguridad mejoradas son fundamentales para ETH 2.0, particularmente a través de una mayor resistencia contra ciberataques y la preservación del ethos descentralizado de Ethereum. Sostenibilidad: El nuevo mecanismo de PoS está diseñado no solo para mejorar la eficiencia, sino también para reducir drásticamente el consumo de energía, alineando el marco operativo de Ethereum con consideraciones medioambientales. ¿Quién es el Creador de ETH 2.0? La creación de ETH 2.0 se puede atribuir a la Fundación Ethereum. Esta organización sin fines de lucro, que desempeña un papel crucial en el apoyo al desarrollo de Ethereum, está liderada por el notable cofundador Vitalik Buterin. Su visión de un Ethereum más escalable y sostenible ha sido la fuerza impulsora detrás de esta actualización, involucrando contribuciones de una comunidad global de desarrolladores y entusiastas dedicados a mejorar el protocolo. ¿Quiénes son los Inversores de ETH 2.0? Aunque los detalles sobre los inversores de ETH 2.0 no se han hecho públicos, se sabe que la Fundación Ethereum recibe apoyo de varias organizaciones e individuos en el ámbito de blockchain y tecnología. Estos socios incluyen firmas de capital de riesgo, empresas tecnológicas y organizaciones filantrópicas que comparten un interés mutuo en apoyar el desarrollo de tecnologías descentralizadas e infraestructura de blockchain. ¿Cómo Funciona ETH 2.0? ETH 2.0 es notable por introducir una serie de características clave que lo diferencian de su predecesor. Prueba de Participación (PoS) La transición a un mecanismo de consenso PoS es uno de los cambios más destacados de ETH 2.0. A diferencia de PoW, que depende de la minería intensiva en energía para la verificación de transacciones, PoS permite a los usuarios validar transacciones y crear nuevos bloques de acuerdo con la cantidad de ETH que apuestan en la red. Esto conduce a una mayor eficiencia energética, reduciendo el consumo en aproximadamente un 99.95%, convirtiendo Ethereum 2.0 en una alternativa considerablemente más ecológica. Cadenas Shard Las cadenas shard son otra innovación crítica de ETH 2.0. Estas cadenas más pequeñas operan en paralelo con la cadena principal de Ethereum, lo que permite procesar múltiples transacciones simultáneamente. Este enfoque mejora la capacidad general de la red, abordando las preocupaciones de escalabilidad que han plagado a Ethereum. Cadena Beacon En el núcleo de ETH 2.0 se encuentra la Cadena Beacon, que coordina la red y gestiona el protocolo PoS. Actúa como una especie de organizador: supervisa a los validadores, asegura que los shards permanezcan conectados a la red y monitorea la salud general del ecosistema blockchain. Cronología de ETH 2.0 El viaje de ETH 2.0 ha estado marcado por varios hitos clave que trazan la evolución de esta significativa actualización: Diciembre 2020: El lanzamiento de la Cadena Beacon marcó la introducción de PoS, preparando el escenario para la migración a ETH 2.0. Septiembre 2022: La finalización de “La Fusión” representa un momento pivotal donde la red Ethereum transicionó exitosamente de un marco PoW a un marco PoS, anunciando una nueva era para Ethereum. 2023: Se espera el lanzamiento de cadenas shard con el fin de mejorar aún más la escalabilidad de la red Ethereum, consolidando ETH 2.0 como una plataforma robusta para aplicaciones y servicios descentralizados. Características Clave y Beneficios Escalabilidad Mejorada Una de las ventajas más significativas de ETH 2.0 es su escalabilidad mejorada. La combinación de PoS y cadenas shard permite a la red expandir su capacidad, permitiendo acomodar un volumen de transacciones muy mayor en comparación con el sistema legado. Eficiencia Energética La implementación de PoS representa un gran paso hacia la eficiencia energética en la tecnología blockchain. Al reducir drásticamente el consumo de energía, ETH 2.0 no solo reduce los costos operativos, sino que también se alinea más estrechamente con los objetivos globales de sostenibilidad. Seguridad Mejorada Los mecanismos actualizados de ETH 2.0 contribuyen a una mayor seguridad en toda la red. El despliegue de PoS, junto con medidas de control innovadoras establecidas a través de las cadenas shard y la Cadena Beacon, asegura un mayor grado de protección contra posibles amenazas. Costos Más Bajos para los Usuarios A medida que la escalabilidad mejora, los efectos sobre los costos de transacción también serán evidentes. Se espera que la mayor capacidad y la reducción de la congestión se traduzcan en tarifas más bajas para los usuarios, haciendo de Ethereum una opción más accesible para transacciones diarias. Conclusión ETH 2.0 marca una evolución significativa en el ecosistema de la blockchain de Ethereum. Al abordar cuestiones clave como la escalabilidad, el consumo de energía, la eficiencia en las transacciones y la seguridad en general, la importancia de esta actualización no puede subestimarse. El cambio a Prueba de Participación, la introducción de cadenas shard y el trabajo fundamental de la Cadena Beacon son indicativos de un futuro donde Ethereum puede satisfacer las crecientes demandas del mercado descentralizado. En una industria impulsada por la innovación y el progreso, ETH 2.0 se erige como un testimonio de las capacidades de la tecnología blockchain para allanar el camino hacia una economía digital más sostenible y eficiente.

261 Vistas totalesPublicado en 2024.04.04Actualizado en 2024.12.03

Qué es ETH 2.0

Qué es ETH 3.0

ETH3.0 y $eth 3.0: Un Examen en Profundidad del Futuro de Ethereum Introducción En el paisaje en rápida evolución de las criptomonedas y la tecnología blockchain, ETH3.0, a menudo denotado como $eth 3.0, ha emergido como un tema de considerable interés y especulación. El término abarca dos conceptos principales que merecen clarificación: Ethereum 3.0: Esto representa una posible actualización futura destinada a aumentar las capacidades de la blockchain de Ethereum existente, centrándose particularmente en mejorar la escalabilidad y el rendimiento. ETH3.0 Meme Token: Este proyecto de criptomoneda distinto busca aprovechar la blockchain de Ethereum para crear un ecosistema centrado en memes, promoviendo la participación dentro de la comunidad de criptomonedas. Entender estos aspectos de ETH3.0 es esencial no solo para los entusiastas de las criptomonedas, sino también para aquellos que observan tendencias tecnológicas más amplias en el espacio digital. ¿Qué es ETH3.0? Ethereum 3.0 Ethereum 3.0 se presenta como una actualización propuesta a la red Ethereum ya establecida, que ha sido la columna vertebral de muchas aplicaciones descentralizadas (dApps) y contratos inteligentes desde su inicio. Las mejoras previstas se concentran principalmente en la escalabilidad, integrando tecnologías avanzadas como el sharding y las pruebas de conocimiento cero (zk-proofs). Estas innovaciones tecnológicas tienen como objetivo facilitar un número sin precedentes de transacciones por segundo (TPS), que podría alcanzar millones, abordando así una de las limitaciones más significativas que enfrenta la tecnología blockchain actual. La mejora no es meramente técnica, sino también estratégica; está destinada a preparar la red Ethereum para una adopción y utilidad generalizada en un futuro marcado por una mayor demanda de soluciones descentralizadas. ETH3.0 Meme Token En contraste con Ethereum 3.0, el ETH3.0 Meme Token se aventura en un dominio más ligero y juguetón al combinar la cultura de memes de internet con la dinámica de las criptomonedas. Este proyecto permite a los usuarios comprar, vender e intercambiar memes en la blockchain de Ethereum, proporcionando una plataforma que fomenta la participación comunitaria a través de la creatividad y los intereses compartidos. El ETH3.0 Meme Token tiene como objetivo demostrar cómo la tecnología blockchain puede intersecarse con la cultura digital, creando casos de uso que son tanto entretenidos como financieramente viables. ¿Quién es el Creador de ETH3.0? Ethereum 3.0 La iniciativa hacia Ethereum 3.0 es impulsada principalmente por un consorcio de desarrolladores e investigadores dentro de la comunidad Ethereum, destacando a Justin Drake. Conocido por sus ideas y contribuciones a la evolución de Ethereum, Drake ha sido una figura prominente en las discusiones sobre la transición de Ethereum a una nueva capa de consenso, conocida como la “Beam Chain.” Este enfoque colaborativo en el desarrollo significa que Ethereum 3.0 no es el producto de un creador singular, sino más bien una manifestación de la ingenio colectivo centrado en avanzar en la tecnología blockchain. ETH3.0 Meme Token Los detalles sobre el creador del ETH3.0 Meme Token son actualmente indetectables. La naturaleza de los tokens de memes a menudo conduce a una estructura más descentralizada y guiada por la comunidad, lo que podría explicar la falta de atribución específica. Esto se alinea con la ética de la mayor comunidad cripto, donde la innovación a menudo surge de esfuerzos colaborativos en lugar de individuales. ¿Quiénes son los Inversores de ETH3.0? Ethereum 3.0 El apoyo a Ethereum 3.0 proviene principalmente de la Fundación Ethereum junto a una entusiasta comunidad de desarrolladores e inversores. Esta asociación fundacional proporciona un grado significativo de legitimidad y mejora la perspectiva de implementación exitosa, ya que aprovecha la confianza y la credibilidad construidas a lo largo de años de operaciones de la red. En el clima cambiante de las criptomonedas, el apoyo de la comunidad juega un papel crucial en impulsar el desarrollo y la adopción, posicionando a Ethereum 3.0 como un serio competidor para los futuros avances en blockchain. ETH3.0 Meme Token Si bien las fuentes actualmente disponibles no brindan información explícita sobre las fundaciones de inversión u organizaciones que respaldan el ETH3.0 Meme Token, es indicativo del modelo de financiamiento típico para los tokens de memes, que a menudo se basa en el apoyo de base y la participación comunitaria. Los inversores en tales proyectos suelen consistir en individuos motivados por el potencial de innovación impulsada por la comunidad y el espíritu de cooperación que se encuentra en la comunidad cripto. ¿Cómo Funciona ETH3.0? Ethereum 3.0 Las características distintivas de Ethereum 3.0 radican en su propuesta implementación de la tecnología de sharding y zk-proof. El sharding es un método de particionamiento de la blockchain en partes más pequeñas y manejables o “shards,” que pueden procesar transacciones de manera concurrente en lugar de secuencial. Esta descentralización del procesamiento ayuda a prevenir la congestión y asegura que la red se mantenga receptiva incluso bajo una carga pesada. La tecnología de prueba de conocimiento cero (zk-proof) añade otra capa de sofisticación al permitir la validación de transacciones sin revelar los datos subyacentes involucrados. Este aspecto no solo mejora la privacidad, sino que también aumenta la eficiencia general de la red. También se habla de incorporar una Máquina Virtual de Ethereum de conocimiento cero (zkEVM) en esta actualización, ampliando aún más las capacidades y la utilidad de la red. ETH3.0 Meme Token El ETH3.0 Meme Token se distingue al capitalizar sobre la popularidad de la cultura de memes. Establece un mercado para que los usuarios participen en el intercambio de memes, no solo por entretenimiento sino también por el potencial de ganancia económica. Al integrar características como staking, provisión de liquidez y mecanismos de gobernanza, el proyecto fomenta un entorno que incentiva la interacción y participación de la comunidad. Al ofrecer una mezcla única de entretenimiento y oportunidad económica, el ETH3.0 Meme Token tiene como objetivo atraer a una audiencia diversa, desde entusiastas de las criptomonedas hasta conocedores de memes casuales. Cronología de ETH3.0 Ethereum 3.0 11 de noviembre de 2024: Justin Drake insinúa la próxima actualización ETH 3.0, centrada en las mejoras de escalabilidad. Este anuncio significa el inicio de discusiones formales sobre la futura arquitectura de Ethereum. 12 de noviembre de 2024: Se espera que la propuesta anticipada para Ethereum 3.0 sea revelada en Devcon en Bangkok, estableciendo el escenario para comentarios más amplios de la comunidad y potenciales próximos pasos en el desarrollo. ETH3.0 Meme Token 21 de marzo de 2024: El ETH3.0 Meme Token se lista oficialmente en CoinMarketCap, marcando su incursión en el dominio público de las criptomonedas y aumentando la visibilidad de su ecosistema basado en memes. Puntos Clave En conclusión, Ethereum 3.0 representa una evolución significativa dentro de la red Ethereum, enfocándose en superar limitaciones relacionadas con la escalabilidad y el rendimiento a través de tecnologías avanzadas. Sus actualizaciones propuestas reflejan un enfoque proactivo hacia las futuras demandas y la usabilidad. Por otro lado, el ETH3.0 Meme Token encapsula la esencia de la cultura impulsada por la comunidad en el espacio de las criptomonedas, aprovechando la cultura de memes para crear plataformas atractivas que fomenten la creatividad y participación de los usuarios. Entender los distintos propósitos y funcionalidades de ETH3.0 y $eth 3.0 es fundamental para cualquier persona interesada en los desarrollos en curso dentro del espacio cripto. Con ambas iniciativas abriendo caminos únicos, subrayan colectivamente la naturaleza dinámica y multifacética de la innovación blockchain.

264 Vistas totalesPublicado en 2024.04.04Actualizado en 2024.12.03

Qué es ETH 3.0

Cómo comprar ETH

¡Bienvenido a HTX.com! Hemos hecho que comprar Ethereum (ETH) sea simple y conveniente. Sigue nuestra guía paso a paso para iniciar tu viaje de criptos.Paso 1: crea tu cuenta HTXUtiliza tu correo electrónico o número de teléfono para registrarte y obtener una cuenta gratuita en HTX. Experimenta un proceso de registro sin complicaciones y desbloquea todas las funciones.Obtener mi cuentaPaso 2: ve a Comprar cripto y elige tu método de pagoTarjeta de crédito/débito: usa tu Visa o Mastercard para comprar Ethereum (ETH) al instante.Saldo: utiliza fondos del saldo de tu cuenta HTX para tradear sin problemas.Terceros: hemos agregado métodos de pago populares como Google Pay y Apple Pay para mejorar la comodidad.P2P: tradear directamente con otros usuarios en HTX.Over-the-Counter (OTC): ofrecemos servicios personalizados y tipos de cambio competitivos para los traders.Paso 3: guarda tu Ethereum (ETH)Después de comprar tu Ethereum (ETH), guárdalo en tu cuenta HTX. Alternativamente, puedes enviarlo a otro lugar mediante transferencia blockchain o utilizarlo para tradear otras criptomonedas.Paso 4: tradear Ethereum (ETH)Tradear fácilmente con Ethereum (ETH) en HTX's mercado spot. Simplemente accede a tu cuenta, selecciona tu par de trading, ejecuta tus trades y monitorea en tiempo real. Ofrecemos una experiencia fácil de usar tanto para principiantes como para traders experimentados.

5.0k Vistas totalesPublicado en 2024.12.10Actualizado en 2026.06.02

Cómo comprar ETH

Discusiones

Bienvenido a la comunidad de HTX. Aquí puedes mantenerte informado sobre los últimos desarrollos de la plataforma y acceder a análisis profesionales del mercado. A continuación se presentan las opiniones de los usuarios sobre el precio de ETH (ETH).

活动图片